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
|
@@ -117,34 +117,35 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
117
117
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
118
118
|
localVarQueryParameter = {};
|
|
119
119
|
// authentication PartnerClientId required
|
|
120
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
120
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
121
121
|
// authentication PartnerSignature required
|
|
122
122
|
];
|
|
123
123
|
case 1:
|
|
124
124
|
// authentication PartnerClientId required
|
|
125
125
|
_a.sent();
|
|
126
126
|
// authentication PartnerSignature required
|
|
127
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
127
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
128
128
|
// authentication PartnerTimestamp required
|
|
129
129
|
];
|
|
130
130
|
case 2:
|
|
131
131
|
// authentication PartnerSignature required
|
|
132
132
|
_a.sent();
|
|
133
133
|
// authentication PartnerTimestamp required
|
|
134
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
134
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
135
135
|
case 3:
|
|
136
136
|
// authentication PartnerTimestamp required
|
|
137
137
|
_a.sent();
|
|
138
138
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
139
139
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
140
140
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
141
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(universalSymbol, localVarRequestOptions, configuration);
|
|
142
141
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
142
|
+
requestBody: universalSymbol,
|
|
143
143
|
queryParameters: localVarQueryParameter,
|
|
144
144
|
requestConfig: localVarRequestOptions,
|
|
145
145
|
path: localVarPath,
|
|
146
146
|
configuration: configuration
|
|
147
147
|
});
|
|
148
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(universalSymbol, localVarRequestOptions, configuration);
|
|
148
149
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
149
150
|
return [2 /*return*/, {
|
|
150
151
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
@@ -185,21 +186,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
185
186
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
186
187
|
localVarQueryParameter = {};
|
|
187
188
|
// authentication PartnerClientId required
|
|
188
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
189
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
189
190
|
// authentication PartnerSignature required
|
|
190
191
|
];
|
|
191
192
|
case 1:
|
|
192
193
|
// authentication PartnerClientId required
|
|
193
194
|
_a.sent();
|
|
194
195
|
// authentication PartnerSignature required
|
|
195
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
196
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
196
197
|
// authentication PartnerTimestamp required
|
|
197
198
|
];
|
|
198
199
|
case 2:
|
|
199
200
|
// authentication PartnerSignature required
|
|
200
201
|
_a.sent();
|
|
201
202
|
// authentication PartnerTimestamp required
|
|
202
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
203
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
203
204
|
case 3:
|
|
204
205
|
// authentication PartnerTimestamp required
|
|
205
206
|
_a.sent();
|
|
@@ -212,13 +213,14 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
212
213
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
213
214
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
214
215
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
215
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(requestBody, localVarRequestOptions, configuration);
|
|
216
216
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
217
|
+
requestBody: requestBody,
|
|
217
218
|
queryParameters: localVarQueryParameter,
|
|
218
219
|
requestConfig: localVarRequestOptions,
|
|
219
220
|
path: localVarPath,
|
|
220
221
|
configuration: configuration
|
|
221
222
|
});
|
|
223
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(requestBody, localVarRequestOptions, configuration);
|
|
222
224
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
223
225
|
return [2 /*return*/, {
|
|
224
226
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
@@ -250,21 +252,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
250
252
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
251
253
|
localVarQueryParameter = {};
|
|
252
254
|
// authentication PartnerClientId required
|
|
253
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
255
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
254
256
|
// authentication PartnerSignature required
|
|
255
257
|
];
|
|
256
258
|
case 1:
|
|
257
259
|
// authentication PartnerClientId required
|
|
258
260
|
_a.sent();
|
|
259
261
|
// authentication PartnerSignature required
|
|
260
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
262
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
261
263
|
// authentication PartnerTimestamp required
|
|
262
264
|
];
|
|
263
265
|
case 2:
|
|
264
266
|
// authentication PartnerSignature required
|
|
265
267
|
_a.sent();
|
|
266
268
|
// authentication PartnerTimestamp required
|
|
267
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
269
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
268
270
|
case 3:
|
|
269
271
|
// authentication PartnerTimestamp required
|
|
270
272
|
_a.sent();
|
|
@@ -307,21 +309,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
307
309
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
308
310
|
localVarQueryParameter = {};
|
|
309
311
|
// authentication PartnerClientId required
|
|
310
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
312
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
311
313
|
// authentication PartnerSignature required
|
|
312
314
|
];
|
|
313
315
|
case 1:
|
|
314
316
|
// authentication PartnerClientId required
|
|
315
317
|
_a.sent();
|
|
316
318
|
// authentication PartnerSignature required
|
|
317
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
319
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
318
320
|
// authentication PartnerTimestamp required
|
|
319
321
|
];
|
|
320
322
|
case 2:
|
|
321
323
|
// authentication PartnerSignature required
|
|
322
324
|
_a.sent();
|
|
323
325
|
// authentication PartnerTimestamp required
|
|
324
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
326
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
325
327
|
case 3:
|
|
326
328
|
// authentication PartnerTimestamp required
|
|
327
329
|
_a.sent();
|
|
@@ -368,21 +370,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
368
370
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
369
371
|
localVarQueryParameter = {};
|
|
370
372
|
// authentication PartnerClientId required
|
|
371
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
373
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
372
374
|
// authentication PartnerSignature required
|
|
373
375
|
];
|
|
374
376
|
case 1:
|
|
375
377
|
// authentication PartnerClientId required
|
|
376
378
|
_a.sent();
|
|
377
379
|
// authentication PartnerSignature required
|
|
378
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
380
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
379
381
|
// authentication PartnerTimestamp required
|
|
380
382
|
];
|
|
381
383
|
case 2:
|
|
382
384
|
// authentication PartnerSignature required
|
|
383
385
|
_a.sent();
|
|
384
386
|
// authentication PartnerTimestamp required
|
|
385
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
387
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
386
388
|
case 3:
|
|
387
389
|
// authentication PartnerTimestamp required
|
|
388
390
|
_a.sent();
|
|
@@ -433,21 +435,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
433
435
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
434
436
|
localVarQueryParameter = {};
|
|
435
437
|
// authentication PartnerClientId required
|
|
436
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
438
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
437
439
|
// authentication PartnerSignature required
|
|
438
440
|
];
|
|
439
441
|
case 1:
|
|
440
442
|
// authentication PartnerClientId required
|
|
441
443
|
_a.sent();
|
|
442
444
|
// authentication PartnerSignature required
|
|
443
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
445
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
444
446
|
// authentication PartnerTimestamp required
|
|
445
447
|
];
|
|
446
448
|
case 2:
|
|
447
449
|
// authentication PartnerSignature required
|
|
448
450
|
_a.sent();
|
|
449
451
|
// authentication PartnerTimestamp required
|
|
450
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
452
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
451
453
|
case 3:
|
|
452
454
|
// authentication PartnerTimestamp required
|
|
453
455
|
_a.sent();
|
|
@@ -494,21 +496,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
494
496
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
495
497
|
localVarQueryParameter = {};
|
|
496
498
|
// authentication PartnerClientId required
|
|
497
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
499
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
498
500
|
// authentication PartnerSignature required
|
|
499
501
|
];
|
|
500
502
|
case 1:
|
|
501
503
|
// authentication PartnerClientId required
|
|
502
504
|
_a.sent();
|
|
503
505
|
// authentication PartnerSignature required
|
|
504
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
506
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
505
507
|
// authentication PartnerTimestamp required
|
|
506
508
|
];
|
|
507
509
|
case 2:
|
|
508
510
|
// authentication PartnerSignature required
|
|
509
511
|
_a.sent();
|
|
510
512
|
// authentication PartnerTimestamp required
|
|
511
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
513
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
512
514
|
case 3:
|
|
513
515
|
// authentication PartnerTimestamp required
|
|
514
516
|
_a.sent();
|
|
@@ -555,21 +557,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
555
557
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
556
558
|
localVarQueryParameter = {};
|
|
557
559
|
// authentication PartnerClientId required
|
|
558
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
560
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
559
561
|
// authentication PartnerSignature required
|
|
560
562
|
];
|
|
561
563
|
case 1:
|
|
562
564
|
// authentication PartnerClientId required
|
|
563
565
|
_a.sent();
|
|
564
566
|
// authentication PartnerSignature required
|
|
565
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
567
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
566
568
|
// authentication PartnerTimestamp required
|
|
567
569
|
];
|
|
568
570
|
case 2:
|
|
569
571
|
// authentication PartnerSignature required
|
|
570
572
|
_a.sent();
|
|
571
573
|
// authentication PartnerTimestamp required
|
|
572
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
574
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
573
575
|
case 3:
|
|
574
576
|
// authentication PartnerTimestamp required
|
|
575
577
|
_a.sent();
|
|
@@ -620,21 +622,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
620
622
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
621
623
|
localVarQueryParameter = {};
|
|
622
624
|
// authentication PartnerClientId required
|
|
623
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
625
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
624
626
|
// authentication PartnerSignature required
|
|
625
627
|
];
|
|
626
628
|
case 1:
|
|
627
629
|
// authentication PartnerClientId required
|
|
628
630
|
_a.sent();
|
|
629
631
|
// authentication PartnerSignature required
|
|
630
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
632
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
631
633
|
// authentication PartnerTimestamp required
|
|
632
634
|
];
|
|
633
635
|
case 2:
|
|
634
636
|
// authentication PartnerSignature required
|
|
635
637
|
_a.sent();
|
|
636
638
|
// authentication PartnerTimestamp required
|
|
637
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
639
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
638
640
|
case 3:
|
|
639
641
|
// authentication PartnerTimestamp required
|
|
640
642
|
_a.sent();
|
|
@@ -681,21 +683,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
681
683
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
682
684
|
localVarQueryParameter = {};
|
|
683
685
|
// authentication PartnerClientId required
|
|
684
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
686
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
685
687
|
// authentication PartnerSignature required
|
|
686
688
|
];
|
|
687
689
|
case 1:
|
|
688
690
|
// authentication PartnerClientId required
|
|
689
691
|
_a.sent();
|
|
690
692
|
// authentication PartnerSignature required
|
|
691
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
693
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
692
694
|
// authentication PartnerTimestamp required
|
|
693
695
|
];
|
|
694
696
|
case 2:
|
|
695
697
|
// authentication PartnerSignature required
|
|
696
698
|
_a.sent();
|
|
697
699
|
// authentication PartnerTimestamp required
|
|
698
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
700
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
699
701
|
case 3:
|
|
700
702
|
// authentication PartnerTimestamp required
|
|
701
703
|
_a.sent();
|
|
@@ -750,21 +752,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
750
752
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
751
753
|
localVarQueryParameter = {};
|
|
752
754
|
// authentication PartnerClientId required
|
|
753
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
755
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
754
756
|
// authentication PartnerSignature required
|
|
755
757
|
];
|
|
756
758
|
case 1:
|
|
757
759
|
// authentication PartnerClientId required
|
|
758
760
|
_a.sent();
|
|
759
761
|
// authentication PartnerSignature required
|
|
760
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
762
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
761
763
|
// authentication PartnerTimestamp required
|
|
762
764
|
];
|
|
763
765
|
case 2:
|
|
764
766
|
// authentication PartnerSignature required
|
|
765
767
|
_a.sent();
|
|
766
768
|
// authentication PartnerTimestamp required
|
|
767
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
769
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
768
770
|
case 3:
|
|
769
771
|
// authentication PartnerTimestamp required
|
|
770
772
|
_a.sent();
|
|
@@ -811,21 +813,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
811
813
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
812
814
|
localVarQueryParameter = {};
|
|
813
815
|
// authentication PartnerClientId required
|
|
814
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
816
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
815
817
|
// authentication PartnerSignature required
|
|
816
818
|
];
|
|
817
819
|
case 1:
|
|
818
820
|
// authentication PartnerClientId required
|
|
819
821
|
_a.sent();
|
|
820
822
|
// authentication PartnerSignature required
|
|
821
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
823
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
822
824
|
// authentication PartnerTimestamp required
|
|
823
825
|
];
|
|
824
826
|
case 2:
|
|
825
827
|
// authentication PartnerSignature required
|
|
826
828
|
_a.sent();
|
|
827
829
|
// authentication PartnerTimestamp required
|
|
828
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
830
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
829
831
|
case 3:
|
|
830
832
|
// authentication PartnerTimestamp required
|
|
831
833
|
_a.sent();
|
|
@@ -872,21 +874,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
872
874
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
873
875
|
localVarQueryParameter = {};
|
|
874
876
|
// authentication PartnerClientId required
|
|
875
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
877
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
876
878
|
// authentication PartnerSignature required
|
|
877
879
|
];
|
|
878
880
|
case 1:
|
|
879
881
|
// authentication PartnerClientId required
|
|
880
882
|
_a.sent();
|
|
881
883
|
// authentication PartnerSignature required
|
|
882
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
884
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
883
885
|
// authentication PartnerTimestamp required
|
|
884
886
|
];
|
|
885
887
|
case 2:
|
|
886
888
|
// authentication PartnerSignature required
|
|
887
889
|
_a.sent();
|
|
888
890
|
// authentication PartnerTimestamp required
|
|
889
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
891
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
890
892
|
case 3:
|
|
891
893
|
// authentication PartnerTimestamp required
|
|
892
894
|
_a.sent();
|
|
@@ -933,21 +935,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
933
935
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
934
936
|
localVarQueryParameter = {};
|
|
935
937
|
// authentication PartnerClientId required
|
|
936
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
938
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
937
939
|
// authentication PartnerSignature required
|
|
938
940
|
];
|
|
939
941
|
case 1:
|
|
940
942
|
// authentication PartnerClientId required
|
|
941
943
|
_a.sent();
|
|
942
944
|
// authentication PartnerSignature required
|
|
943
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
945
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
944
946
|
// authentication PartnerTimestamp required
|
|
945
947
|
];
|
|
946
948
|
case 2:
|
|
947
949
|
// authentication PartnerSignature required
|
|
948
950
|
_a.sent();
|
|
949
951
|
// authentication PartnerTimestamp required
|
|
950
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
952
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
951
953
|
case 3:
|
|
952
954
|
// authentication PartnerTimestamp required
|
|
953
955
|
_a.sent();
|
|
@@ -994,21 +996,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
994
996
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
995
997
|
localVarQueryParameter = {};
|
|
996
998
|
// authentication PartnerClientId required
|
|
997
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
999
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
998
1000
|
// authentication PartnerSignature required
|
|
999
1001
|
];
|
|
1000
1002
|
case 1:
|
|
1001
1003
|
// authentication PartnerClientId required
|
|
1002
1004
|
_a.sent();
|
|
1003
1005
|
// authentication PartnerSignature required
|
|
1004
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1006
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1005
1007
|
// authentication PartnerTimestamp required
|
|
1006
1008
|
];
|
|
1007
1009
|
case 2:
|
|
1008
1010
|
// authentication PartnerSignature required
|
|
1009
1011
|
_a.sent();
|
|
1010
1012
|
// authentication PartnerTimestamp required
|
|
1011
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1013
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1012
1014
|
case 3:
|
|
1013
1015
|
// authentication PartnerTimestamp required
|
|
1014
1016
|
_a.sent();
|
|
@@ -1055,21 +1057,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1055
1057
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1056
1058
|
localVarQueryParameter = {};
|
|
1057
1059
|
// authentication PartnerClientId required
|
|
1058
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1060
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1059
1061
|
// authentication PartnerSignature required
|
|
1060
1062
|
];
|
|
1061
1063
|
case 1:
|
|
1062
1064
|
// authentication PartnerClientId required
|
|
1063
1065
|
_a.sent();
|
|
1064
1066
|
// authentication PartnerSignature required
|
|
1065
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1067
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1066
1068
|
// authentication PartnerTimestamp required
|
|
1067
1069
|
];
|
|
1068
1070
|
case 2:
|
|
1069
1071
|
// authentication PartnerSignature required
|
|
1070
1072
|
_a.sent();
|
|
1071
1073
|
// authentication PartnerTimestamp required
|
|
1072
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1074
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1073
1075
|
case 3:
|
|
1074
1076
|
// authentication PartnerTimestamp required
|
|
1075
1077
|
_a.sent();
|
|
@@ -1116,21 +1118,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1116
1118
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1117
1119
|
localVarQueryParameter = {};
|
|
1118
1120
|
// authentication PartnerClientId required
|
|
1119
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1121
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1120
1122
|
// authentication PartnerSignature required
|
|
1121
1123
|
];
|
|
1122
1124
|
case 1:
|
|
1123
1125
|
// authentication PartnerClientId required
|
|
1124
1126
|
_a.sent();
|
|
1125
1127
|
// authentication PartnerSignature required
|
|
1126
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1128
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1127
1129
|
// authentication PartnerTimestamp required
|
|
1128
1130
|
];
|
|
1129
1131
|
case 2:
|
|
1130
1132
|
// authentication PartnerSignature required
|
|
1131
1133
|
_a.sent();
|
|
1132
1134
|
// authentication PartnerTimestamp required
|
|
1133
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1135
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1134
1136
|
case 3:
|
|
1135
1137
|
// authentication PartnerTimestamp required
|
|
1136
1138
|
_a.sent();
|
|
@@ -1181,21 +1183,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1181
1183
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1182
1184
|
localVarQueryParameter = {};
|
|
1183
1185
|
// authentication PartnerClientId required
|
|
1184
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1186
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1185
1187
|
// authentication PartnerSignature required
|
|
1186
1188
|
];
|
|
1187
1189
|
case 1:
|
|
1188
1190
|
// authentication PartnerClientId required
|
|
1189
1191
|
_a.sent();
|
|
1190
1192
|
// authentication PartnerSignature required
|
|
1191
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1193
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1192
1194
|
// authentication PartnerTimestamp required
|
|
1193
1195
|
];
|
|
1194
1196
|
case 2:
|
|
1195
1197
|
// authentication PartnerSignature required
|
|
1196
1198
|
_a.sent();
|
|
1197
1199
|
// authentication PartnerTimestamp required
|
|
1198
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1200
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1199
1201
|
case 3:
|
|
1200
1202
|
// authentication PartnerTimestamp required
|
|
1201
1203
|
_a.sent();
|
|
@@ -1242,21 +1244,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1242
1244
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1243
1245
|
localVarQueryParameter = {};
|
|
1244
1246
|
// authentication PartnerClientId required
|
|
1245
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1247
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1246
1248
|
// authentication PartnerSignature required
|
|
1247
1249
|
];
|
|
1248
1250
|
case 1:
|
|
1249
1251
|
// authentication PartnerClientId required
|
|
1250
1252
|
_a.sent();
|
|
1251
1253
|
// authentication PartnerSignature required
|
|
1252
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1254
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1253
1255
|
// authentication PartnerTimestamp required
|
|
1254
1256
|
];
|
|
1255
1257
|
case 2:
|
|
1256
1258
|
// authentication PartnerSignature required
|
|
1257
1259
|
_a.sent();
|
|
1258
1260
|
// authentication PartnerTimestamp required
|
|
1259
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1261
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1260
1262
|
case 3:
|
|
1261
1263
|
// authentication PartnerTimestamp required
|
|
1262
1264
|
_a.sent();
|
|
@@ -1303,21 +1305,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1303
1305
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1304
1306
|
localVarQueryParameter = {};
|
|
1305
1307
|
// authentication PartnerClientId required
|
|
1306
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1308
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1307
1309
|
// authentication PartnerSignature required
|
|
1308
1310
|
];
|
|
1309
1311
|
case 1:
|
|
1310
1312
|
// authentication PartnerClientId required
|
|
1311
1313
|
_a.sent();
|
|
1312
1314
|
// authentication PartnerSignature required
|
|
1313
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1315
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1314
1316
|
// authentication PartnerTimestamp required
|
|
1315
1317
|
];
|
|
1316
1318
|
case 2:
|
|
1317
1319
|
// authentication PartnerSignature required
|
|
1318
1320
|
_a.sent();
|
|
1319
1321
|
// authentication PartnerTimestamp required
|
|
1320
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1322
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1321
1323
|
case 3:
|
|
1322
1324
|
// authentication PartnerTimestamp required
|
|
1323
1325
|
_a.sent();
|
|
@@ -1364,21 +1366,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1364
1366
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1365
1367
|
localVarQueryParameter = {};
|
|
1366
1368
|
// authentication PartnerClientId required
|
|
1367
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1369
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1368
1370
|
// authentication PartnerSignature required
|
|
1369
1371
|
];
|
|
1370
1372
|
case 1:
|
|
1371
1373
|
// authentication PartnerClientId required
|
|
1372
1374
|
_a.sent();
|
|
1373
1375
|
// authentication PartnerSignature required
|
|
1374
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1376
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1375
1377
|
// authentication PartnerTimestamp required
|
|
1376
1378
|
];
|
|
1377
1379
|
case 2:
|
|
1378
1380
|
// authentication PartnerSignature required
|
|
1379
1381
|
_a.sent();
|
|
1380
1382
|
// authentication PartnerTimestamp required
|
|
1381
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1383
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1382
1384
|
case 3:
|
|
1383
1385
|
// authentication PartnerTimestamp required
|
|
1384
1386
|
_a.sent();
|
|
@@ -1427,21 +1429,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1427
1429
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1428
1430
|
localVarQueryParameter = {};
|
|
1429
1431
|
// authentication PartnerClientId required
|
|
1430
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1432
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1431
1433
|
// authentication PartnerSignature required
|
|
1432
1434
|
];
|
|
1433
1435
|
case 1:
|
|
1434
1436
|
// authentication PartnerClientId required
|
|
1435
1437
|
_a.sent();
|
|
1436
1438
|
// authentication PartnerSignature required
|
|
1437
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1439
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1438
1440
|
// authentication PartnerTimestamp required
|
|
1439
1441
|
];
|
|
1440
1442
|
case 2:
|
|
1441
1443
|
// authentication PartnerSignature required
|
|
1442
1444
|
_a.sent();
|
|
1443
1445
|
// authentication PartnerTimestamp required
|
|
1444
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1446
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1445
1447
|
case 3:
|
|
1446
1448
|
// authentication PartnerTimestamp required
|
|
1447
1449
|
_a.sent();
|
|
@@ -1490,21 +1492,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1490
1492
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1491
1493
|
localVarQueryParameter = {};
|
|
1492
1494
|
// authentication PartnerClientId required
|
|
1493
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1495
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1494
1496
|
// authentication PartnerSignature required
|
|
1495
1497
|
];
|
|
1496
1498
|
case 1:
|
|
1497
1499
|
// authentication PartnerClientId required
|
|
1498
1500
|
_a.sent();
|
|
1499
1501
|
// authentication PartnerSignature required
|
|
1500
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1502
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1501
1503
|
// authentication PartnerTimestamp required
|
|
1502
1504
|
];
|
|
1503
1505
|
case 2:
|
|
1504
1506
|
// authentication PartnerSignature required
|
|
1505
1507
|
_a.sent();
|
|
1506
1508
|
// authentication PartnerTimestamp required
|
|
1507
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1509
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1508
1510
|
case 3:
|
|
1509
1511
|
// authentication PartnerTimestamp required
|
|
1510
1512
|
_a.sent();
|
|
@@ -1551,21 +1553,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1551
1553
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1552
1554
|
localVarQueryParameter = {};
|
|
1553
1555
|
// authentication PartnerClientId required
|
|
1554
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1556
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1555
1557
|
// authentication PartnerSignature required
|
|
1556
1558
|
];
|
|
1557
1559
|
case 1:
|
|
1558
1560
|
// authentication PartnerClientId required
|
|
1559
1561
|
_a.sent();
|
|
1560
1562
|
// authentication PartnerSignature required
|
|
1561
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1563
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1562
1564
|
// authentication PartnerTimestamp required
|
|
1563
1565
|
];
|
|
1564
1566
|
case 2:
|
|
1565
1567
|
// authentication PartnerSignature required
|
|
1566
1568
|
_a.sent();
|
|
1567
1569
|
// authentication PartnerTimestamp required
|
|
1568
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1570
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1569
1571
|
case 3:
|
|
1570
1572
|
// authentication PartnerTimestamp required
|
|
1571
1573
|
_a.sent();
|
|
@@ -1608,21 +1610,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1608
1610
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1609
1611
|
localVarQueryParameter = {};
|
|
1610
1612
|
// authentication PartnerClientId required
|
|
1611
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1613
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1612
1614
|
// authentication PartnerSignature required
|
|
1613
1615
|
];
|
|
1614
1616
|
case 1:
|
|
1615
1617
|
// authentication PartnerClientId required
|
|
1616
1618
|
_a.sent();
|
|
1617
1619
|
// authentication PartnerSignature required
|
|
1618
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1620
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1619
1621
|
// authentication PartnerTimestamp required
|
|
1620
1622
|
];
|
|
1621
1623
|
case 2:
|
|
1622
1624
|
// authentication PartnerSignature required
|
|
1623
1625
|
_a.sent();
|
|
1624
1626
|
// authentication PartnerTimestamp required
|
|
1625
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1627
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1626
1628
|
case 3:
|
|
1627
1629
|
// authentication PartnerTimestamp required
|
|
1628
1630
|
_a.sent();
|
|
@@ -1669,21 +1671,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1669
1671
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1670
1672
|
localVarQueryParameter = {};
|
|
1671
1673
|
// authentication PartnerClientId required
|
|
1672
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1674
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1673
1675
|
// authentication PartnerSignature required
|
|
1674
1676
|
];
|
|
1675
1677
|
case 1:
|
|
1676
1678
|
// authentication PartnerClientId required
|
|
1677
1679
|
_a.sent();
|
|
1678
1680
|
// authentication PartnerSignature required
|
|
1679
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1681
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1680
1682
|
// authentication PartnerTimestamp required
|
|
1681
1683
|
];
|
|
1682
1684
|
case 2:
|
|
1683
1685
|
// authentication PartnerSignature required
|
|
1684
1686
|
_a.sent();
|
|
1685
1687
|
// authentication PartnerTimestamp required
|
|
1686
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1688
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1687
1689
|
case 3:
|
|
1688
1690
|
// authentication PartnerTimestamp required
|
|
1689
1691
|
_a.sent();
|
|
@@ -1733,34 +1735,35 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1733
1735
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1734
1736
|
localVarQueryParameter = {};
|
|
1735
1737
|
// authentication PartnerClientId required
|
|
1736
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1738
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1737
1739
|
// authentication PartnerSignature required
|
|
1738
1740
|
];
|
|
1739
1741
|
case 1:
|
|
1740
1742
|
// authentication PartnerClientId required
|
|
1741
1743
|
_a.sent();
|
|
1742
1744
|
// authentication PartnerSignature required
|
|
1743
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1745
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1744
1746
|
// authentication PartnerTimestamp required
|
|
1745
1747
|
];
|
|
1746
1748
|
case 2:
|
|
1747
1749
|
// authentication PartnerSignature required
|
|
1748
1750
|
_a.sent();
|
|
1749
1751
|
// authentication PartnerTimestamp required
|
|
1750
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1752
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1751
1753
|
case 3:
|
|
1752
1754
|
// authentication PartnerTimestamp required
|
|
1753
1755
|
_a.sent();
|
|
1754
1756
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1755
1757
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1756
1758
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1757
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(modelPortfolioDetails, localVarRequestOptions, configuration);
|
|
1758
1759
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
1760
|
+
requestBody: modelPortfolioDetails,
|
|
1759
1761
|
queryParameters: localVarQueryParameter,
|
|
1760
1762
|
requestConfig: localVarRequestOptions,
|
|
1761
1763
|
path: localVarPath,
|
|
1762
1764
|
configuration: configuration
|
|
1763
1765
|
});
|
|
1766
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(modelPortfolioDetails, localVarRequestOptions, configuration);
|
|
1764
1767
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1765
1768
|
return [2 /*return*/, {
|
|
1766
1769
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
@@ -1799,34 +1802,35 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1799
1802
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1800
1803
|
localVarQueryParameter = {};
|
|
1801
1804
|
// authentication PartnerClientId required
|
|
1802
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1805
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1803
1806
|
// authentication PartnerSignature required
|
|
1804
1807
|
];
|
|
1805
1808
|
case 1:
|
|
1806
1809
|
// authentication PartnerClientId required
|
|
1807
1810
|
_a.sent();
|
|
1808
1811
|
// authentication PartnerSignature required
|
|
1809
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1812
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1810
1813
|
// authentication PartnerTimestamp required
|
|
1811
1814
|
];
|
|
1812
1815
|
case 2:
|
|
1813
1816
|
// authentication PartnerSignature required
|
|
1814
1817
|
_a.sent();
|
|
1815
1818
|
// authentication PartnerTimestamp required
|
|
1816
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1819
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1817
1820
|
case 3:
|
|
1818
1821
|
// authentication PartnerTimestamp required
|
|
1819
1822
|
_a.sent();
|
|
1820
1823
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1821
1824
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1822
1825
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1823
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(requestBody, localVarRequestOptions, configuration);
|
|
1824
1826
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
1827
|
+
requestBody: requestBody,
|
|
1825
1828
|
queryParameters: localVarQueryParameter,
|
|
1826
1829
|
requestConfig: localVarRequestOptions,
|
|
1827
1830
|
path: localVarPath,
|
|
1828
1831
|
configuration: configuration
|
|
1829
1832
|
});
|
|
1833
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(requestBody, localVarRequestOptions, configuration);
|
|
1830
1834
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1831
1835
|
return [2 /*return*/, {
|
|
1832
1836
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
@@ -1863,34 +1867,35 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1863
1867
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1864
1868
|
localVarQueryParameter = {};
|
|
1865
1869
|
// authentication PartnerClientId required
|
|
1866
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1870
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1867
1871
|
// authentication PartnerSignature required
|
|
1868
1872
|
];
|
|
1869
1873
|
case 1:
|
|
1870
1874
|
// authentication PartnerClientId required
|
|
1871
1875
|
_a.sent();
|
|
1872
1876
|
// authentication PartnerSignature required
|
|
1873
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1877
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1874
1878
|
// authentication PartnerTimestamp required
|
|
1875
1879
|
];
|
|
1876
1880
|
case 2:
|
|
1877
1881
|
// authentication PartnerSignature required
|
|
1878
1882
|
_a.sent();
|
|
1879
1883
|
// authentication PartnerTimestamp required
|
|
1880
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1884
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1881
1885
|
case 3:
|
|
1882
1886
|
// authentication PartnerTimestamp required
|
|
1883
1887
|
_a.sent();
|
|
1884
1888
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1885
1889
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1886
1890
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1887
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(symbolQuery, localVarRequestOptions, configuration);
|
|
1888
1891
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
1892
|
+
requestBody: symbolQuery,
|
|
1889
1893
|
queryParameters: localVarQueryParameter,
|
|
1890
1894
|
requestConfig: localVarRequestOptions,
|
|
1891
1895
|
path: localVarPath,
|
|
1892
1896
|
configuration: configuration
|
|
1893
1897
|
});
|
|
1898
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(symbolQuery, localVarRequestOptions, configuration);
|
|
1894
1899
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1895
1900
|
return [2 /*return*/, {
|
|
1896
1901
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
@@ -1927,34 +1932,35 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1927
1932
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1928
1933
|
localVarQueryParameter = {};
|
|
1929
1934
|
// authentication PartnerClientId required
|
|
1930
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
1935
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1931
1936
|
// authentication PartnerSignature required
|
|
1932
1937
|
];
|
|
1933
1938
|
case 1:
|
|
1934
1939
|
// authentication PartnerClientId required
|
|
1935
1940
|
_a.sent();
|
|
1936
1941
|
// authentication PartnerSignature required
|
|
1937
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
1942
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
1938
1943
|
// authentication PartnerTimestamp required
|
|
1939
1944
|
];
|
|
1940
1945
|
case 2:
|
|
1941
1946
|
// authentication PartnerSignature required
|
|
1942
1947
|
_a.sent();
|
|
1943
1948
|
// authentication PartnerTimestamp required
|
|
1944
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
1949
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
1945
1950
|
case 3:
|
|
1946
1951
|
// authentication PartnerTimestamp required
|
|
1947
1952
|
_a.sent();
|
|
1948
1953
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
1949
1954
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1950
1955
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1951
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(targetAsset, localVarRequestOptions, configuration);
|
|
1952
1956
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
1957
|
+
requestBody: targetAsset,
|
|
1953
1958
|
queryParameters: localVarQueryParameter,
|
|
1954
1959
|
requestConfig: localVarRequestOptions,
|
|
1955
1960
|
path: localVarPath,
|
|
1956
1961
|
configuration: configuration
|
|
1957
1962
|
});
|
|
1963
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(targetAsset, localVarRequestOptions, configuration);
|
|
1958
1964
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1959
1965
|
return [2 /*return*/, {
|
|
1960
1966
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
@@ -1993,34 +1999,35 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
1993
1999
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
1994
2000
|
localVarQueryParameter = {};
|
|
1995
2001
|
// authentication PartnerClientId required
|
|
1996
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
2002
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
1997
2003
|
// authentication PartnerSignature required
|
|
1998
2004
|
];
|
|
1999
2005
|
case 1:
|
|
2000
2006
|
// authentication PartnerClientId required
|
|
2001
2007
|
_a.sent();
|
|
2002
2008
|
// authentication PartnerSignature required
|
|
2003
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
2009
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
2004
2010
|
// authentication PartnerTimestamp required
|
|
2005
2011
|
];
|
|
2006
2012
|
case 2:
|
|
2007
2013
|
// authentication PartnerSignature required
|
|
2008
2014
|
_a.sent();
|
|
2009
2015
|
// authentication PartnerTimestamp required
|
|
2010
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
2016
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
2011
2017
|
case 3:
|
|
2012
2018
|
// authentication PartnerTimestamp required
|
|
2013
2019
|
_a.sent();
|
|
2014
2020
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2015
2021
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2016
2022
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2017
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(modelAssetClassDetails, localVarRequestOptions, configuration);
|
|
2018
2023
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
2024
|
+
requestBody: modelAssetClassDetails,
|
|
2019
2025
|
queryParameters: localVarQueryParameter,
|
|
2020
2026
|
requestConfig: localVarRequestOptions,
|
|
2021
2027
|
path: localVarPath,
|
|
2022
2028
|
configuration: configuration
|
|
2023
2029
|
});
|
|
2030
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(modelAssetClassDetails, localVarRequestOptions, configuration);
|
|
2024
2031
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2025
2032
|
return [2 /*return*/, {
|
|
2026
2033
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
@@ -2056,21 +2063,21 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
2056
2063
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
2057
2064
|
localVarQueryParameter = {};
|
|
2058
2065
|
// authentication PartnerClientId required
|
|
2059
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
2066
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
2060
2067
|
// authentication PartnerSignature required
|
|
2061
2068
|
];
|
|
2062
2069
|
case 1:
|
|
2063
2070
|
// authentication PartnerClientId required
|
|
2064
2071
|
_a.sent();
|
|
2065
2072
|
// authentication PartnerSignature required
|
|
2066
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
2073
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
2067
2074
|
// authentication PartnerTimestamp required
|
|
2068
2075
|
];
|
|
2069
2076
|
case 2:
|
|
2070
2077
|
// authentication PartnerSignature required
|
|
2071
2078
|
_a.sent();
|
|
2072
2079
|
// authentication PartnerTimestamp required
|
|
2073
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
2080
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
2074
2081
|
case 3:
|
|
2075
2082
|
// authentication PartnerTimestamp required
|
|
2076
2083
|
_a.sent();
|
|
@@ -2124,34 +2131,35 @@ var PortfolioManagementApiAxiosParamCreator = function (configuration) {
|
|
|
2124
2131
|
localVarHeaderParameter = configuration ? { "User-Agent": configuration.userAgent } : {};
|
|
2125
2132
|
localVarQueryParameter = {};
|
|
2126
2133
|
// authentication PartnerClientId required
|
|
2127
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "clientId", configuration)
|
|
2134
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration: configuration })
|
|
2128
2135
|
// authentication PartnerSignature required
|
|
2129
2136
|
];
|
|
2130
2137
|
case 1:
|
|
2131
2138
|
// authentication PartnerClientId required
|
|
2132
2139
|
_a.sent();
|
|
2133
2140
|
// authentication PartnerSignature required
|
|
2134
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Signature", configuration)
|
|
2141
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, keyParamName: "Signature", configuration: configuration })
|
|
2135
2142
|
// authentication PartnerTimestamp required
|
|
2136
2143
|
];
|
|
2137
2144
|
case 2:
|
|
2138
2145
|
// authentication PartnerSignature required
|
|
2139
2146
|
_a.sent();
|
|
2140
2147
|
// authentication PartnerTimestamp required
|
|
2141
|
-
return [4 /*yield*/, (0, common_1.setApiKeyToObject)(localVarQueryParameter, "timestamp", configuration)];
|
|
2148
|
+
return [4 /*yield*/, (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration: configuration })];
|
|
2142
2149
|
case 3:
|
|
2143
2150
|
// authentication PartnerTimestamp required
|
|
2144
2151
|
_a.sent();
|
|
2145
2152
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2146
2153
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2147
2154
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2148
|
-
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(targetAsset, localVarRequestOptions, configuration);
|
|
2149
2155
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
2156
|
+
requestBody: targetAsset,
|
|
2150
2157
|
queryParameters: localVarQueryParameter,
|
|
2151
2158
|
requestConfig: localVarRequestOptions,
|
|
2152
2159
|
path: localVarPath,
|
|
2153
2160
|
configuration: configuration
|
|
2154
2161
|
});
|
|
2162
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(targetAsset, localVarRequestOptions, configuration);
|
|
2155
2163
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2156
2164
|
return [2 /*return*/, {
|
|
2157
2165
|
url: (0, common_1.toPathString)(localVarUrlObj),
|