snaptrade-typescript-sdk 6.1.0 → 6.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.konfig/generate-id.txt +1 -1
- package/README.md +3 -2
- package/api/account-information-api.ts +57 -89
- package/api/api-disclaimer-api.ts +10 -13
- package/api/api-status-api.ts +5 -6
- package/api/authentication-api.ts +40 -58
- package/api/connections-api.ts +133 -33
- package/api/error-logs-api.ts +8 -12
- package/api/options-api.ts +40 -58
- package/api/portfolio-management-api.ts +248 -372
- package/api/reference-data-api.ts +82 -124
- package/api/trading-api.ts +81 -116
- package/api/transactions-and-reporting-api.ts +29 -25
- package/common.ts +35 -15
- package/configuration.ts +3 -2
- package/dist/api/account-information-api.js +24 -24
- package/dist/api/api-disclaimer-api.js +5 -4
- package/dist/api/authentication-api.js +19 -17
- package/dist/api/connections-api.d.ts +54 -0
- package/dist/api/connections-api.js +118 -9
- package/dist/api/error-logs-api.js +3 -3
- package/dist/api/options-api.js +19 -17
- package/dist/api/portfolio-management-api.js +115 -107
- package/dist/api/reference-data-api.js +37 -35
- package/dist/api/trading-api.js +40 -35
- package/dist/api/transactions-and-reporting-api.d.ts +8 -1
- package/dist/api/transactions-and-reporting-api.js +12 -8
- package/dist/common.d.ts +8 -1
- package/dist/common.js +21 -14
- package/dist/configuration.js +3 -2
- package/dist/models/account-order-record.d.ts +7 -0
- package/dist/models/connections-session-events200-response-inner.d.ts +17 -0
- package/dist/models/connections-session-events200-response-inner.js +15 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/session-event.d.ts +59 -0
- package/dist/models/session-event.js +25 -0
- package/dist/requestBeforeHook.d.ts +1 -0
- package/docs/ConnectionsApi.md +55 -0
- package/docs/TransactionsAndReportingApi.md +2 -0
- package/models/account-order-record.ts +9 -0
- package/models/connections-session-events200-response-inner.ts +25 -0
- package/models/index.ts +2 -0
- package/models/session-event.ts +68 -0
- package/package.json +1 -1
- package/requestBeforeHook.ts +1 -0
|
@@ -16,7 +16,7 @@ import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'ax
|
|
|
16
16
|
import { Configuration } from '../configuration';
|
|
17
17
|
// Some imports not used depending on template conditions
|
|
18
18
|
// @ts-ignore
|
|
19
|
-
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject,
|
|
19
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
20
20
|
// @ts-ignore
|
|
21
21
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
22
22
|
// @ts-ignore
|
|
@@ -80,28 +80,25 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
80
80
|
const localVarQueryParameter = {} as any;
|
|
81
81
|
|
|
82
82
|
// authentication PartnerClientId required
|
|
83
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
84
|
-
|
|
83
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
85
84
|
// authentication PartnerSignature required
|
|
86
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
87
|
-
|
|
85
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
88
86
|
// authentication PartnerTimestamp required
|
|
89
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
90
|
-
|
|
87
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
91
88
|
|
|
92
89
|
|
|
93
90
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
94
91
|
|
|
95
92
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
96
93
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
97
|
-
localVarRequestOptions.data = serializeDataIfNeeded(universalSymbol, localVarRequestOptions, configuration)
|
|
98
|
-
|
|
99
94
|
requestBeforeHook({
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
95
|
+
requestBody: universalSymbol,
|
|
96
|
+
queryParameters: localVarQueryParameter,
|
|
97
|
+
requestConfig: localVarRequestOptions,
|
|
98
|
+
path: localVarPath,
|
|
99
|
+
configuration
|
|
104
100
|
});
|
|
101
|
+
localVarRequestOptions.data = serializeDataIfNeeded(universalSymbol, localVarRequestOptions, configuration)
|
|
105
102
|
|
|
106
103
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
107
104
|
return {
|
|
@@ -138,14 +135,11 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
138
135
|
const localVarQueryParameter = {} as any;
|
|
139
136
|
|
|
140
137
|
// authentication PartnerClientId required
|
|
141
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
142
|
-
|
|
138
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
143
139
|
// authentication PartnerSignature required
|
|
144
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
145
|
-
|
|
140
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
146
141
|
// authentication PartnerTimestamp required
|
|
147
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
148
|
-
|
|
142
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
149
143
|
if (userId !== undefined) {
|
|
150
144
|
localVarQueryParameter['userId'] = userId;
|
|
151
145
|
}
|
|
@@ -160,14 +154,14 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
160
154
|
|
|
161
155
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
162
156
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
163
|
-
localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
|
|
164
|
-
|
|
165
157
|
requestBeforeHook({
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
158
|
+
requestBody: requestBody,
|
|
159
|
+
queryParameters: localVarQueryParameter,
|
|
160
|
+
requestConfig: localVarRequestOptions,
|
|
161
|
+
path: localVarPath,
|
|
162
|
+
configuration
|
|
170
163
|
});
|
|
164
|
+
localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
|
|
171
165
|
|
|
172
166
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
173
167
|
return {
|
|
@@ -195,24 +189,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
195
189
|
const localVarQueryParameter = {} as any;
|
|
196
190
|
|
|
197
191
|
// authentication PartnerClientId required
|
|
198
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
199
|
-
|
|
192
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
200
193
|
// authentication PartnerSignature required
|
|
201
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
202
|
-
|
|
194
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
203
195
|
// authentication PartnerTimestamp required
|
|
204
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
205
|
-
|
|
196
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
206
197
|
|
|
207
198
|
|
|
208
199
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
209
200
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
210
|
-
|
|
211
201
|
requestBeforeHook({
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
202
|
+
queryParameters: localVarQueryParameter,
|
|
203
|
+
requestConfig: localVarRequestOptions,
|
|
204
|
+
path: localVarPath,
|
|
205
|
+
configuration
|
|
216
206
|
});
|
|
217
207
|
|
|
218
208
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -241,24 +231,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
241
231
|
const localVarQueryParameter = {} as any;
|
|
242
232
|
|
|
243
233
|
// authentication PartnerClientId required
|
|
244
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
245
|
-
|
|
234
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
246
235
|
// authentication PartnerSignature required
|
|
247
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
248
|
-
|
|
236
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
249
237
|
// authentication PartnerTimestamp required
|
|
250
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
251
|
-
|
|
238
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
252
239
|
|
|
253
240
|
|
|
254
241
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
255
242
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
256
|
-
|
|
257
243
|
requestBeforeHook({
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
244
|
+
queryParameters: localVarQueryParameter,
|
|
245
|
+
requestConfig: localVarRequestOptions,
|
|
246
|
+
path: localVarPath,
|
|
247
|
+
configuration
|
|
262
248
|
});
|
|
263
249
|
|
|
264
250
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -291,24 +277,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
291
277
|
const localVarQueryParameter = {} as any;
|
|
292
278
|
|
|
293
279
|
// authentication PartnerClientId required
|
|
294
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
295
|
-
|
|
280
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
296
281
|
// authentication PartnerSignature required
|
|
297
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
298
|
-
|
|
282
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
299
283
|
// authentication PartnerTimestamp required
|
|
300
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
301
|
-
|
|
284
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
302
285
|
|
|
303
286
|
|
|
304
287
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
305
288
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
306
|
-
|
|
307
289
|
requestBeforeHook({
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
290
|
+
queryParameters: localVarQueryParameter,
|
|
291
|
+
requestConfig: localVarRequestOptions,
|
|
292
|
+
path: localVarPath,
|
|
293
|
+
configuration
|
|
312
294
|
});
|
|
313
295
|
|
|
314
296
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -345,24 +327,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
345
327
|
const localVarQueryParameter = {} as any;
|
|
346
328
|
|
|
347
329
|
// authentication PartnerClientId required
|
|
348
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
349
|
-
|
|
330
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
350
331
|
// authentication PartnerSignature required
|
|
351
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
352
|
-
|
|
332
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
353
333
|
// authentication PartnerTimestamp required
|
|
354
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
355
|
-
|
|
334
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
356
335
|
|
|
357
336
|
|
|
358
337
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
359
338
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
360
|
-
|
|
361
339
|
requestBeforeHook({
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
340
|
+
queryParameters: localVarQueryParameter,
|
|
341
|
+
requestConfig: localVarRequestOptions,
|
|
342
|
+
path: localVarPath,
|
|
343
|
+
configuration
|
|
366
344
|
});
|
|
367
345
|
|
|
368
346
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -395,24 +373,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
395
373
|
const localVarQueryParameter = {} as any;
|
|
396
374
|
|
|
397
375
|
// authentication PartnerClientId required
|
|
398
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
399
|
-
|
|
376
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
400
377
|
// authentication PartnerSignature required
|
|
401
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
402
|
-
|
|
378
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
403
379
|
// authentication PartnerTimestamp required
|
|
404
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
405
|
-
|
|
380
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
406
381
|
|
|
407
382
|
|
|
408
383
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
409
384
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
410
|
-
|
|
411
385
|
requestBeforeHook({
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
386
|
+
queryParameters: localVarQueryParameter,
|
|
387
|
+
requestConfig: localVarRequestOptions,
|
|
388
|
+
path: localVarPath,
|
|
389
|
+
configuration
|
|
416
390
|
});
|
|
417
391
|
|
|
418
392
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -445,24 +419,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
445
419
|
const localVarQueryParameter = {} as any;
|
|
446
420
|
|
|
447
421
|
// authentication PartnerClientId required
|
|
448
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
449
|
-
|
|
422
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
450
423
|
// authentication PartnerSignature required
|
|
451
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
452
|
-
|
|
424
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
453
425
|
// authentication PartnerTimestamp required
|
|
454
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
455
|
-
|
|
426
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
456
427
|
|
|
457
428
|
|
|
458
429
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
459
430
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
460
|
-
|
|
461
431
|
requestBeforeHook({
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
432
|
+
queryParameters: localVarQueryParameter,
|
|
433
|
+
requestConfig: localVarRequestOptions,
|
|
434
|
+
path: localVarPath,
|
|
435
|
+
configuration
|
|
466
436
|
});
|
|
467
437
|
|
|
468
438
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -499,24 +469,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
499
469
|
const localVarQueryParameter = {} as any;
|
|
500
470
|
|
|
501
471
|
// authentication PartnerClientId required
|
|
502
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
503
|
-
|
|
472
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
504
473
|
// authentication PartnerSignature required
|
|
505
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
506
|
-
|
|
474
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
507
475
|
// authentication PartnerTimestamp required
|
|
508
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
509
|
-
|
|
476
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
510
477
|
|
|
511
478
|
|
|
512
479
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
513
480
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
514
|
-
|
|
515
481
|
requestBeforeHook({
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
482
|
+
queryParameters: localVarQueryParameter,
|
|
483
|
+
requestConfig: localVarRequestOptions,
|
|
484
|
+
path: localVarPath,
|
|
485
|
+
configuration
|
|
520
486
|
});
|
|
521
487
|
|
|
522
488
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -549,24 +515,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
549
515
|
const localVarQueryParameter = {} as any;
|
|
550
516
|
|
|
551
517
|
// authentication PartnerClientId required
|
|
552
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
553
|
-
|
|
518
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
554
519
|
// authentication PartnerSignature required
|
|
555
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
556
|
-
|
|
520
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
557
521
|
// authentication PartnerTimestamp required
|
|
558
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
559
|
-
|
|
522
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
560
523
|
|
|
561
524
|
|
|
562
525
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
563
526
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
564
|
-
|
|
565
527
|
requestBeforeHook({
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
528
|
+
queryParameters: localVarQueryParameter,
|
|
529
|
+
requestConfig: localVarRequestOptions,
|
|
530
|
+
path: localVarPath,
|
|
531
|
+
configuration
|
|
570
532
|
});
|
|
571
533
|
|
|
572
534
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -607,24 +569,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
607
569
|
const localVarQueryParameter = {} as any;
|
|
608
570
|
|
|
609
571
|
// authentication PartnerClientId required
|
|
610
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
611
|
-
|
|
572
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
612
573
|
// authentication PartnerSignature required
|
|
613
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
614
|
-
|
|
574
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
615
575
|
// authentication PartnerTimestamp required
|
|
616
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
617
|
-
|
|
576
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
618
577
|
|
|
619
578
|
|
|
620
579
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
621
580
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
622
|
-
|
|
623
581
|
requestBeforeHook({
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
582
|
+
queryParameters: localVarQueryParameter,
|
|
583
|
+
requestConfig: localVarRequestOptions,
|
|
584
|
+
path: localVarPath,
|
|
585
|
+
configuration
|
|
628
586
|
});
|
|
629
587
|
|
|
630
588
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -657,24 +615,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
657
615
|
const localVarQueryParameter = {} as any;
|
|
658
616
|
|
|
659
617
|
// authentication PartnerClientId required
|
|
660
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
661
|
-
|
|
618
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
662
619
|
// authentication PartnerSignature required
|
|
663
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
664
|
-
|
|
620
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
665
621
|
// authentication PartnerTimestamp required
|
|
666
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
667
|
-
|
|
622
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
668
623
|
|
|
669
624
|
|
|
670
625
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
671
626
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
672
|
-
|
|
673
627
|
requestBeforeHook({
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
628
|
+
queryParameters: localVarQueryParameter,
|
|
629
|
+
requestConfig: localVarRequestOptions,
|
|
630
|
+
path: localVarPath,
|
|
631
|
+
configuration
|
|
678
632
|
});
|
|
679
633
|
|
|
680
634
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -707,24 +661,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
707
661
|
const localVarQueryParameter = {} as any;
|
|
708
662
|
|
|
709
663
|
// authentication PartnerClientId required
|
|
710
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
711
|
-
|
|
664
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
712
665
|
// authentication PartnerSignature required
|
|
713
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
714
|
-
|
|
666
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
715
667
|
// authentication PartnerTimestamp required
|
|
716
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
717
|
-
|
|
668
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
718
669
|
|
|
719
670
|
|
|
720
671
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
721
672
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
722
|
-
|
|
723
673
|
requestBeforeHook({
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
674
|
+
queryParameters: localVarQueryParameter,
|
|
675
|
+
requestConfig: localVarRequestOptions,
|
|
676
|
+
path: localVarPath,
|
|
677
|
+
configuration
|
|
728
678
|
});
|
|
729
679
|
|
|
730
680
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -757,24 +707,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
757
707
|
const localVarQueryParameter = {} as any;
|
|
758
708
|
|
|
759
709
|
// authentication PartnerClientId required
|
|
760
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
761
|
-
|
|
710
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
762
711
|
// authentication PartnerSignature required
|
|
763
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
764
|
-
|
|
712
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
765
713
|
// authentication PartnerTimestamp required
|
|
766
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
767
|
-
|
|
714
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
768
715
|
|
|
769
716
|
|
|
770
717
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
771
718
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
772
|
-
|
|
773
719
|
requestBeforeHook({
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
720
|
+
queryParameters: localVarQueryParameter,
|
|
721
|
+
requestConfig: localVarRequestOptions,
|
|
722
|
+
path: localVarPath,
|
|
723
|
+
configuration
|
|
778
724
|
});
|
|
779
725
|
|
|
780
726
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -807,24 +753,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
807
753
|
const localVarQueryParameter = {} as any;
|
|
808
754
|
|
|
809
755
|
// authentication PartnerClientId required
|
|
810
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
811
|
-
|
|
756
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
812
757
|
// authentication PartnerSignature required
|
|
813
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
814
|
-
|
|
758
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
815
759
|
// authentication PartnerTimestamp required
|
|
816
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
817
|
-
|
|
760
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
818
761
|
|
|
819
762
|
|
|
820
763
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
821
764
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
822
|
-
|
|
823
765
|
requestBeforeHook({
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
766
|
+
queryParameters: localVarQueryParameter,
|
|
767
|
+
requestConfig: localVarRequestOptions,
|
|
768
|
+
path: localVarPath,
|
|
769
|
+
configuration
|
|
828
770
|
});
|
|
829
771
|
|
|
830
772
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -857,24 +799,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
857
799
|
const localVarQueryParameter = {} as any;
|
|
858
800
|
|
|
859
801
|
// authentication PartnerClientId required
|
|
860
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
861
|
-
|
|
802
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
862
803
|
// authentication PartnerSignature required
|
|
863
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
864
|
-
|
|
804
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
865
805
|
// authentication PartnerTimestamp required
|
|
866
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
867
|
-
|
|
806
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
868
807
|
|
|
869
808
|
|
|
870
809
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
871
810
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
872
|
-
|
|
873
811
|
requestBeforeHook({
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
812
|
+
queryParameters: localVarQueryParameter,
|
|
813
|
+
requestConfig: localVarRequestOptions,
|
|
814
|
+
path: localVarPath,
|
|
815
|
+
configuration
|
|
878
816
|
});
|
|
879
817
|
|
|
880
818
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -907,24 +845,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
907
845
|
const localVarQueryParameter = {} as any;
|
|
908
846
|
|
|
909
847
|
// authentication PartnerClientId required
|
|
910
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
911
|
-
|
|
848
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
912
849
|
// authentication PartnerSignature required
|
|
913
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
914
|
-
|
|
850
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
915
851
|
// authentication PartnerTimestamp required
|
|
916
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
917
|
-
|
|
852
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
918
853
|
|
|
919
854
|
|
|
920
855
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
921
856
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
922
|
-
|
|
923
857
|
requestBeforeHook({
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
858
|
+
queryParameters: localVarQueryParameter,
|
|
859
|
+
requestConfig: localVarRequestOptions,
|
|
860
|
+
path: localVarPath,
|
|
861
|
+
configuration
|
|
928
862
|
});
|
|
929
863
|
|
|
930
864
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -961,24 +895,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
961
895
|
const localVarQueryParameter = {} as any;
|
|
962
896
|
|
|
963
897
|
// authentication PartnerClientId required
|
|
964
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
965
|
-
|
|
898
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
966
899
|
// authentication PartnerSignature required
|
|
967
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
968
|
-
|
|
900
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
969
901
|
// authentication PartnerTimestamp required
|
|
970
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
971
|
-
|
|
902
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
972
903
|
|
|
973
904
|
|
|
974
905
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
975
906
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
976
|
-
|
|
977
907
|
requestBeforeHook({
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
908
|
+
queryParameters: localVarQueryParameter,
|
|
909
|
+
requestConfig: localVarRequestOptions,
|
|
910
|
+
path: localVarPath,
|
|
911
|
+
configuration
|
|
982
912
|
});
|
|
983
913
|
|
|
984
914
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1011,24 +941,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1011
941
|
const localVarQueryParameter = {} as any;
|
|
1012
942
|
|
|
1013
943
|
// authentication PartnerClientId required
|
|
1014
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1015
|
-
|
|
944
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1016
945
|
// authentication PartnerSignature required
|
|
1017
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1018
|
-
|
|
946
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1019
947
|
// authentication PartnerTimestamp required
|
|
1020
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1021
|
-
|
|
948
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1022
949
|
|
|
1023
950
|
|
|
1024
951
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1025
952
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1026
|
-
|
|
1027
953
|
requestBeforeHook({
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
954
|
+
queryParameters: localVarQueryParameter,
|
|
955
|
+
requestConfig: localVarRequestOptions,
|
|
956
|
+
path: localVarPath,
|
|
957
|
+
configuration
|
|
1032
958
|
});
|
|
1033
959
|
|
|
1034
960
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1061,24 +987,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1061
987
|
const localVarQueryParameter = {} as any;
|
|
1062
988
|
|
|
1063
989
|
// authentication PartnerClientId required
|
|
1064
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1065
|
-
|
|
990
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1066
991
|
// authentication PartnerSignature required
|
|
1067
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1068
|
-
|
|
992
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1069
993
|
// authentication PartnerTimestamp required
|
|
1070
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1071
|
-
|
|
994
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1072
995
|
|
|
1073
996
|
|
|
1074
997
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1075
998
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1076
|
-
|
|
1077
999
|
requestBeforeHook({
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1000
|
+
queryParameters: localVarQueryParameter,
|
|
1001
|
+
requestConfig: localVarRequestOptions,
|
|
1002
|
+
path: localVarPath,
|
|
1003
|
+
configuration
|
|
1082
1004
|
});
|
|
1083
1005
|
|
|
1084
1006
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1111,24 +1033,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1111
1033
|
const localVarQueryParameter = {} as any;
|
|
1112
1034
|
|
|
1113
1035
|
// authentication PartnerClientId required
|
|
1114
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1115
|
-
|
|
1036
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1116
1037
|
// authentication PartnerSignature required
|
|
1117
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1118
|
-
|
|
1038
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1119
1039
|
// authentication PartnerTimestamp required
|
|
1120
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1121
|
-
|
|
1040
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1122
1041
|
|
|
1123
1042
|
|
|
1124
1043
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1125
1044
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1126
|
-
|
|
1127
1045
|
requestBeforeHook({
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1046
|
+
queryParameters: localVarQueryParameter,
|
|
1047
|
+
requestConfig: localVarRequestOptions,
|
|
1048
|
+
path: localVarPath,
|
|
1049
|
+
configuration
|
|
1132
1050
|
});
|
|
1133
1051
|
|
|
1134
1052
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1163,14 +1081,11 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1163
1081
|
const localVarQueryParameter = {} as any;
|
|
1164
1082
|
|
|
1165
1083
|
// authentication PartnerClientId required
|
|
1166
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1167
|
-
|
|
1084
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1168
1085
|
// authentication PartnerSignature required
|
|
1169
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1170
|
-
|
|
1086
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1171
1087
|
// authentication PartnerTimestamp required
|
|
1172
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1173
|
-
|
|
1088
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1174
1089
|
if (userId !== undefined) {
|
|
1175
1090
|
localVarQueryParameter['userId'] = userId;
|
|
1176
1091
|
}
|
|
@@ -1183,12 +1098,11 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1183
1098
|
|
|
1184
1099
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1185
1100
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1186
|
-
|
|
1187
1101
|
requestBeforeHook({
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1102
|
+
queryParameters: localVarQueryParameter,
|
|
1103
|
+
requestConfig: localVarRequestOptions,
|
|
1104
|
+
path: localVarPath,
|
|
1105
|
+
configuration
|
|
1192
1106
|
});
|
|
1193
1107
|
|
|
1194
1108
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1217,24 +1131,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1217
1131
|
const localVarQueryParameter = {} as any;
|
|
1218
1132
|
|
|
1219
1133
|
// authentication PartnerClientId required
|
|
1220
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1221
|
-
|
|
1134
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1222
1135
|
// authentication PartnerSignature required
|
|
1223
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1224
|
-
|
|
1136
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1225
1137
|
// authentication PartnerTimestamp required
|
|
1226
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1227
|
-
|
|
1138
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1228
1139
|
|
|
1229
1140
|
|
|
1230
1141
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1231
1142
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1232
|
-
|
|
1233
1143
|
requestBeforeHook({
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1144
|
+
queryParameters: localVarQueryParameter,
|
|
1145
|
+
requestConfig: localVarRequestOptions,
|
|
1146
|
+
path: localVarPath,
|
|
1147
|
+
configuration
|
|
1238
1148
|
});
|
|
1239
1149
|
|
|
1240
1150
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1267,24 +1177,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1267
1177
|
const localVarQueryParameter = {} as any;
|
|
1268
1178
|
|
|
1269
1179
|
// authentication PartnerClientId required
|
|
1270
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1271
|
-
|
|
1180
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1272
1181
|
// authentication PartnerSignature required
|
|
1273
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1274
|
-
|
|
1182
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1275
1183
|
// authentication PartnerTimestamp required
|
|
1276
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1277
|
-
|
|
1184
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1278
1185
|
|
|
1279
1186
|
|
|
1280
1187
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1281
1188
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1282
|
-
|
|
1283
1189
|
requestBeforeHook({
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1190
|
+
queryParameters: localVarQueryParameter,
|
|
1191
|
+
requestConfig: localVarRequestOptions,
|
|
1192
|
+
path: localVarPath,
|
|
1193
|
+
configuration
|
|
1288
1194
|
});
|
|
1289
1195
|
|
|
1290
1196
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1313,24 +1219,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1313
1219
|
const localVarQueryParameter = {} as any;
|
|
1314
1220
|
|
|
1315
1221
|
// authentication PartnerClientId required
|
|
1316
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1317
|
-
|
|
1222
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1318
1223
|
// authentication PartnerSignature required
|
|
1319
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1320
|
-
|
|
1224
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1321
1225
|
// authentication PartnerTimestamp required
|
|
1322
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1323
|
-
|
|
1226
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1324
1227
|
|
|
1325
1228
|
|
|
1326
1229
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1327
1230
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1328
|
-
|
|
1329
1231
|
requestBeforeHook({
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1232
|
+
queryParameters: localVarQueryParameter,
|
|
1233
|
+
requestConfig: localVarRequestOptions,
|
|
1234
|
+
path: localVarPath,
|
|
1235
|
+
configuration
|
|
1334
1236
|
});
|
|
1335
1237
|
|
|
1336
1238
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1363,24 +1265,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1363
1265
|
const localVarQueryParameter = {} as any;
|
|
1364
1266
|
|
|
1365
1267
|
// authentication PartnerClientId required
|
|
1366
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1367
|
-
|
|
1268
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1368
1269
|
// authentication PartnerSignature required
|
|
1369
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1370
|
-
|
|
1270
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1371
1271
|
// authentication PartnerTimestamp required
|
|
1372
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1373
|
-
|
|
1272
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1374
1273
|
|
|
1375
1274
|
|
|
1376
1275
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1377
1276
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1378
|
-
|
|
1379
1277
|
requestBeforeHook({
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1278
|
+
queryParameters: localVarQueryParameter,
|
|
1279
|
+
requestConfig: localVarRequestOptions,
|
|
1280
|
+
path: localVarPath,
|
|
1281
|
+
configuration
|
|
1384
1282
|
});
|
|
1385
1283
|
|
|
1386
1284
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1416,28 +1314,25 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1416
1314
|
const localVarQueryParameter = {} as any;
|
|
1417
1315
|
|
|
1418
1316
|
// authentication PartnerClientId required
|
|
1419
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1420
|
-
|
|
1317
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1421
1318
|
// authentication PartnerSignature required
|
|
1422
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1423
|
-
|
|
1319
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1424
1320
|
// authentication PartnerTimestamp required
|
|
1425
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1426
|
-
|
|
1321
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1427
1322
|
|
|
1428
1323
|
|
|
1429
1324
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1430
1325
|
|
|
1431
1326
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1432
1327
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1433
|
-
localVarRequestOptions.data = serializeDataIfNeeded(modelPortfolioDetails, localVarRequestOptions, configuration)
|
|
1434
|
-
|
|
1435
1328
|
requestBeforeHook({
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1329
|
+
requestBody: modelPortfolioDetails,
|
|
1330
|
+
queryParameters: localVarQueryParameter,
|
|
1331
|
+
requestConfig: localVarRequestOptions,
|
|
1332
|
+
path: localVarPath,
|
|
1333
|
+
configuration
|
|
1440
1334
|
});
|
|
1335
|
+
localVarRequestOptions.data = serializeDataIfNeeded(modelPortfolioDetails, localVarRequestOptions, configuration)
|
|
1441
1336
|
|
|
1442
1337
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1443
1338
|
return {
|
|
@@ -1472,28 +1367,25 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1472
1367
|
const localVarQueryParameter = {} as any;
|
|
1473
1368
|
|
|
1474
1369
|
// authentication PartnerClientId required
|
|
1475
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1476
|
-
|
|
1370
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1477
1371
|
// authentication PartnerSignature required
|
|
1478
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1479
|
-
|
|
1372
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1480
1373
|
// authentication PartnerTimestamp required
|
|
1481
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1482
|
-
|
|
1374
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1483
1375
|
|
|
1484
1376
|
|
|
1485
1377
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1486
1378
|
|
|
1487
1379
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1488
1380
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1489
|
-
localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
|
|
1490
|
-
|
|
1491
1381
|
requestBeforeHook({
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1382
|
+
requestBody: requestBody,
|
|
1383
|
+
queryParameters: localVarQueryParameter,
|
|
1384
|
+
requestConfig: localVarRequestOptions,
|
|
1385
|
+
path: localVarPath,
|
|
1386
|
+
configuration
|
|
1496
1387
|
});
|
|
1388
|
+
localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
|
|
1497
1389
|
|
|
1498
1390
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1499
1391
|
return {
|
|
@@ -1526,28 +1418,25 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1526
1418
|
const localVarQueryParameter = {} as any;
|
|
1527
1419
|
|
|
1528
1420
|
// authentication PartnerClientId required
|
|
1529
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1530
|
-
|
|
1421
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1531
1422
|
// authentication PartnerSignature required
|
|
1532
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1533
|
-
|
|
1423
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1534
1424
|
// authentication PartnerTimestamp required
|
|
1535
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1536
|
-
|
|
1425
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1537
1426
|
|
|
1538
1427
|
|
|
1539
1428
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1540
1429
|
|
|
1541
1430
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1542
1431
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1543
|
-
localVarRequestOptions.data = serializeDataIfNeeded(symbolQuery, localVarRequestOptions, configuration)
|
|
1544
|
-
|
|
1545
1432
|
requestBeforeHook({
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1433
|
+
requestBody: symbolQuery,
|
|
1434
|
+
queryParameters: localVarQueryParameter,
|
|
1435
|
+
requestConfig: localVarRequestOptions,
|
|
1436
|
+
path: localVarPath,
|
|
1437
|
+
configuration
|
|
1550
1438
|
});
|
|
1439
|
+
localVarRequestOptions.data = serializeDataIfNeeded(symbolQuery, localVarRequestOptions, configuration)
|
|
1551
1440
|
|
|
1552
1441
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1553
1442
|
return {
|
|
@@ -1580,28 +1469,25 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1580
1469
|
const localVarQueryParameter = {} as any;
|
|
1581
1470
|
|
|
1582
1471
|
// authentication PartnerClientId required
|
|
1583
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1584
|
-
|
|
1472
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1585
1473
|
// authentication PartnerSignature required
|
|
1586
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1587
|
-
|
|
1474
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1588
1475
|
// authentication PartnerTimestamp required
|
|
1589
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1590
|
-
|
|
1476
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1591
1477
|
|
|
1592
1478
|
|
|
1593
1479
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1594
1480
|
|
|
1595
1481
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1596
1482
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1597
|
-
localVarRequestOptions.data = serializeDataIfNeeded(targetAsset, localVarRequestOptions, configuration)
|
|
1598
|
-
|
|
1599
1483
|
requestBeforeHook({
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1484
|
+
requestBody: targetAsset,
|
|
1485
|
+
queryParameters: localVarQueryParameter,
|
|
1486
|
+
requestConfig: localVarRequestOptions,
|
|
1487
|
+
path: localVarPath,
|
|
1488
|
+
configuration
|
|
1604
1489
|
});
|
|
1490
|
+
localVarRequestOptions.data = serializeDataIfNeeded(targetAsset, localVarRequestOptions, configuration)
|
|
1605
1491
|
|
|
1606
1492
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1607
1493
|
return {
|
|
@@ -1636,28 +1522,25 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1636
1522
|
const localVarQueryParameter = {} as any;
|
|
1637
1523
|
|
|
1638
1524
|
// authentication PartnerClientId required
|
|
1639
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1640
|
-
|
|
1525
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1641
1526
|
// authentication PartnerSignature required
|
|
1642
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1643
|
-
|
|
1527
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1644
1528
|
// authentication PartnerTimestamp required
|
|
1645
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1646
|
-
|
|
1529
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1647
1530
|
|
|
1648
1531
|
|
|
1649
1532
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1650
1533
|
|
|
1651
1534
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1652
1535
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1653
|
-
localVarRequestOptions.data = serializeDataIfNeeded(modelAssetClassDetails, localVarRequestOptions, configuration)
|
|
1654
|
-
|
|
1655
1536
|
requestBeforeHook({
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1537
|
+
requestBody: modelAssetClassDetails,
|
|
1538
|
+
queryParameters: localVarQueryParameter,
|
|
1539
|
+
requestConfig: localVarRequestOptions,
|
|
1540
|
+
path: localVarPath,
|
|
1541
|
+
configuration
|
|
1660
1542
|
});
|
|
1543
|
+
localVarRequestOptions.data = serializeDataIfNeeded(modelAssetClassDetails, localVarRequestOptions, configuration)
|
|
1661
1544
|
|
|
1662
1545
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1663
1546
|
return {
|
|
@@ -1689,24 +1572,20 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1689
1572
|
const localVarQueryParameter = {} as any;
|
|
1690
1573
|
|
|
1691
1574
|
// authentication PartnerClientId required
|
|
1692
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1693
|
-
|
|
1575
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1694
1576
|
// authentication PartnerSignature required
|
|
1695
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1696
|
-
|
|
1577
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1697
1578
|
// authentication PartnerTimestamp required
|
|
1698
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1699
|
-
|
|
1579
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1700
1580
|
|
|
1701
1581
|
|
|
1702
1582
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1703
1583
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1704
|
-
|
|
1705
1584
|
requestBeforeHook({
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1585
|
+
queryParameters: localVarQueryParameter,
|
|
1586
|
+
requestConfig: localVarRequestOptions,
|
|
1587
|
+
path: localVarPath,
|
|
1588
|
+
configuration
|
|
1710
1589
|
});
|
|
1711
1590
|
|
|
1712
1591
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1746,28 +1625,25 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1746
1625
|
const localVarQueryParameter = {} as any;
|
|
1747
1626
|
|
|
1748
1627
|
// authentication PartnerClientId required
|
|
1749
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1750
|
-
|
|
1628
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1751
1629
|
// authentication PartnerSignature required
|
|
1752
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1753
|
-
|
|
1630
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
1754
1631
|
// authentication PartnerTimestamp required
|
|
1755
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1756
|
-
|
|
1632
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1757
1633
|
|
|
1758
1634
|
|
|
1759
1635
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1760
1636
|
|
|
1761
1637
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1762
1638
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
1763
|
-
localVarRequestOptions.data = serializeDataIfNeeded(targetAsset, localVarRequestOptions, configuration)
|
|
1764
|
-
|
|
1765
1639
|
requestBeforeHook({
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1640
|
+
requestBody: targetAsset,
|
|
1641
|
+
queryParameters: localVarQueryParameter,
|
|
1642
|
+
requestConfig: localVarRequestOptions,
|
|
1643
|
+
path: localVarPath,
|
|
1644
|
+
configuration
|
|
1770
1645
|
});
|
|
1646
|
+
localVarRequestOptions.data = serializeDataIfNeeded(targetAsset, localVarRequestOptions, configuration)
|
|
1771
1647
|
|
|
1772
1648
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1773
1649
|
return {
|