snaptrade-typescript-sdk 6.0.0 → 6.2.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 -5
- package/api/account-information-api.ts +25 -25
- package/api/api-disclaimer-api.ts +4 -4
- package/api/api-status-api.ts +1 -1
- package/api/authentication-api.ts +16 -16
- package/api/connections-api.ts +10 -10
- package/api/error-logs-api.ts +4 -4
- package/api/options-api.ts +16 -16
- package/api/portfolio-management-api.ts +100 -100
- package/api/reference-data-api.ts +34 -34
- package/api/trading-api.ts +31 -31
- package/api/transactions-and-reporting-api.ts +7 -7
- package/common.ts +30 -15
- package/configuration.ts +1 -1
- package/dist/api/account-information-api.js +24 -24
- package/dist/api/api-disclaimer-api.js +3 -3
- package/dist/api/authentication-api.js +15 -15
- package/dist/api/connections-api.js +9 -9
- package/dist/api/error-logs-api.js +3 -3
- package/dist/api/options-api.js +15 -15
- package/dist/api/portfolio-management-api.js +99 -99
- package/dist/api/reference-data-api.js +33 -33
- package/dist/api/trading-api.js +30 -30
- package/dist/api/transactions-and-reporting-api.js +6 -6
- package/dist/common.d.ts +7 -1
- package/dist/common.js +19 -14
- package/dist/configuration.js +1 -1
- package/dist/models/account-order-record.d.ts +7 -0
- package/models/account-order-record.ts +9 -0
- package/package.json +1 -1
|
@@ -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,13 +80,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
80
80
|
const localVarQueryParameter = {} as any;
|
|
81
81
|
|
|
82
82
|
// authentication PartnerClientId required
|
|
83
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
83
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
84
84
|
|
|
85
85
|
// authentication PartnerSignature required
|
|
86
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
86
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
87
87
|
|
|
88
88
|
// authentication PartnerTimestamp required
|
|
89
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
89
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
|
|
@@ -138,13 +138,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
138
138
|
const localVarQueryParameter = {} as any;
|
|
139
139
|
|
|
140
140
|
// authentication PartnerClientId required
|
|
141
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
141
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
142
142
|
|
|
143
143
|
// authentication PartnerSignature required
|
|
144
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
144
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
145
145
|
|
|
146
146
|
// authentication PartnerTimestamp required
|
|
147
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
147
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
148
148
|
|
|
149
149
|
if (userId !== undefined) {
|
|
150
150
|
localVarQueryParameter['userId'] = userId;
|
|
@@ -195,13 +195,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
195
195
|
const localVarQueryParameter = {} as any;
|
|
196
196
|
|
|
197
197
|
// authentication PartnerClientId required
|
|
198
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
198
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
199
199
|
|
|
200
200
|
// authentication PartnerSignature required
|
|
201
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
201
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
202
202
|
|
|
203
203
|
// authentication PartnerTimestamp required
|
|
204
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
204
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
205
205
|
|
|
206
206
|
|
|
207
207
|
|
|
@@ -241,13 +241,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
241
241
|
const localVarQueryParameter = {} as any;
|
|
242
242
|
|
|
243
243
|
// authentication PartnerClientId required
|
|
244
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
244
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
245
245
|
|
|
246
246
|
// authentication PartnerSignature required
|
|
247
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
247
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
248
248
|
|
|
249
249
|
// authentication PartnerTimestamp required
|
|
250
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
250
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
251
251
|
|
|
252
252
|
|
|
253
253
|
|
|
@@ -291,13 +291,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
291
291
|
const localVarQueryParameter = {} as any;
|
|
292
292
|
|
|
293
293
|
// authentication PartnerClientId required
|
|
294
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
294
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
295
295
|
|
|
296
296
|
// authentication PartnerSignature required
|
|
297
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
297
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
298
298
|
|
|
299
299
|
// authentication PartnerTimestamp required
|
|
300
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
300
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
301
301
|
|
|
302
302
|
|
|
303
303
|
|
|
@@ -345,13 +345,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
345
345
|
const localVarQueryParameter = {} as any;
|
|
346
346
|
|
|
347
347
|
// authentication PartnerClientId required
|
|
348
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
348
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
349
349
|
|
|
350
350
|
// authentication PartnerSignature required
|
|
351
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
351
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
352
352
|
|
|
353
353
|
// authentication PartnerTimestamp required
|
|
354
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
354
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
355
355
|
|
|
356
356
|
|
|
357
357
|
|
|
@@ -395,13 +395,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
395
395
|
const localVarQueryParameter = {} as any;
|
|
396
396
|
|
|
397
397
|
// authentication PartnerClientId required
|
|
398
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
398
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
399
399
|
|
|
400
400
|
// authentication PartnerSignature required
|
|
401
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
401
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
402
402
|
|
|
403
403
|
// authentication PartnerTimestamp required
|
|
404
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
404
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
405
405
|
|
|
406
406
|
|
|
407
407
|
|
|
@@ -445,13 +445,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
445
445
|
const localVarQueryParameter = {} as any;
|
|
446
446
|
|
|
447
447
|
// authentication PartnerClientId required
|
|
448
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
448
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
449
449
|
|
|
450
450
|
// authentication PartnerSignature required
|
|
451
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
451
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
452
452
|
|
|
453
453
|
// authentication PartnerTimestamp required
|
|
454
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
454
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
455
455
|
|
|
456
456
|
|
|
457
457
|
|
|
@@ -499,13 +499,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
499
499
|
const localVarQueryParameter = {} as any;
|
|
500
500
|
|
|
501
501
|
// authentication PartnerClientId required
|
|
502
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
502
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
503
503
|
|
|
504
504
|
// authentication PartnerSignature required
|
|
505
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
505
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
506
506
|
|
|
507
507
|
// authentication PartnerTimestamp required
|
|
508
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
508
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
509
509
|
|
|
510
510
|
|
|
511
511
|
|
|
@@ -549,13 +549,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
549
549
|
const localVarQueryParameter = {} as any;
|
|
550
550
|
|
|
551
551
|
// authentication PartnerClientId required
|
|
552
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
552
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
553
553
|
|
|
554
554
|
// authentication PartnerSignature required
|
|
555
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
555
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
556
556
|
|
|
557
557
|
// authentication PartnerTimestamp required
|
|
558
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
558
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
559
559
|
|
|
560
560
|
|
|
561
561
|
|
|
@@ -607,13 +607,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
607
607
|
const localVarQueryParameter = {} as any;
|
|
608
608
|
|
|
609
609
|
// authentication PartnerClientId required
|
|
610
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
610
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
611
611
|
|
|
612
612
|
// authentication PartnerSignature required
|
|
613
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
613
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
614
614
|
|
|
615
615
|
// authentication PartnerTimestamp required
|
|
616
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
616
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
617
617
|
|
|
618
618
|
|
|
619
619
|
|
|
@@ -657,13 +657,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
657
657
|
const localVarQueryParameter = {} as any;
|
|
658
658
|
|
|
659
659
|
// authentication PartnerClientId required
|
|
660
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
660
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
661
661
|
|
|
662
662
|
// authentication PartnerSignature required
|
|
663
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
663
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
664
664
|
|
|
665
665
|
// authentication PartnerTimestamp required
|
|
666
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
666
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
667
667
|
|
|
668
668
|
|
|
669
669
|
|
|
@@ -707,13 +707,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
707
707
|
const localVarQueryParameter = {} as any;
|
|
708
708
|
|
|
709
709
|
// authentication PartnerClientId required
|
|
710
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
710
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
711
711
|
|
|
712
712
|
// authentication PartnerSignature required
|
|
713
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
713
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
714
714
|
|
|
715
715
|
// authentication PartnerTimestamp required
|
|
716
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
716
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
717
717
|
|
|
718
718
|
|
|
719
719
|
|
|
@@ -757,13 +757,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
757
757
|
const localVarQueryParameter = {} as any;
|
|
758
758
|
|
|
759
759
|
// authentication PartnerClientId required
|
|
760
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
760
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
761
761
|
|
|
762
762
|
// authentication PartnerSignature required
|
|
763
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
763
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
764
764
|
|
|
765
765
|
// authentication PartnerTimestamp required
|
|
766
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
766
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
767
767
|
|
|
768
768
|
|
|
769
769
|
|
|
@@ -807,13 +807,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
807
807
|
const localVarQueryParameter = {} as any;
|
|
808
808
|
|
|
809
809
|
// authentication PartnerClientId required
|
|
810
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
810
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
811
811
|
|
|
812
812
|
// authentication PartnerSignature required
|
|
813
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
813
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
814
814
|
|
|
815
815
|
// authentication PartnerTimestamp required
|
|
816
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
816
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
817
817
|
|
|
818
818
|
|
|
819
819
|
|
|
@@ -857,13 +857,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
857
857
|
const localVarQueryParameter = {} as any;
|
|
858
858
|
|
|
859
859
|
// authentication PartnerClientId required
|
|
860
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
860
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
861
861
|
|
|
862
862
|
// authentication PartnerSignature required
|
|
863
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
863
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
864
864
|
|
|
865
865
|
// authentication PartnerTimestamp required
|
|
866
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
866
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
867
867
|
|
|
868
868
|
|
|
869
869
|
|
|
@@ -907,13 +907,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
907
907
|
const localVarQueryParameter = {} as any;
|
|
908
908
|
|
|
909
909
|
// authentication PartnerClientId required
|
|
910
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
910
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
911
911
|
|
|
912
912
|
// authentication PartnerSignature required
|
|
913
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
913
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
914
914
|
|
|
915
915
|
// authentication PartnerTimestamp required
|
|
916
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
916
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
917
917
|
|
|
918
918
|
|
|
919
919
|
|
|
@@ -961,13 +961,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
961
961
|
const localVarQueryParameter = {} as any;
|
|
962
962
|
|
|
963
963
|
// authentication PartnerClientId required
|
|
964
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
964
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
965
965
|
|
|
966
966
|
// authentication PartnerSignature required
|
|
967
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
967
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
968
968
|
|
|
969
969
|
// authentication PartnerTimestamp required
|
|
970
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
970
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
971
971
|
|
|
972
972
|
|
|
973
973
|
|
|
@@ -1011,13 +1011,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1011
1011
|
const localVarQueryParameter = {} as any;
|
|
1012
1012
|
|
|
1013
1013
|
// authentication PartnerClientId required
|
|
1014
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1014
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1015
1015
|
|
|
1016
1016
|
// authentication PartnerSignature required
|
|
1017
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1017
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1018
1018
|
|
|
1019
1019
|
// authentication PartnerTimestamp required
|
|
1020
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1020
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1021
1021
|
|
|
1022
1022
|
|
|
1023
1023
|
|
|
@@ -1061,13 +1061,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1061
1061
|
const localVarQueryParameter = {} as any;
|
|
1062
1062
|
|
|
1063
1063
|
// authentication PartnerClientId required
|
|
1064
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1064
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1065
1065
|
|
|
1066
1066
|
// authentication PartnerSignature required
|
|
1067
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1067
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1068
1068
|
|
|
1069
1069
|
// authentication PartnerTimestamp required
|
|
1070
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1070
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1071
1071
|
|
|
1072
1072
|
|
|
1073
1073
|
|
|
@@ -1111,13 +1111,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1111
1111
|
const localVarQueryParameter = {} as any;
|
|
1112
1112
|
|
|
1113
1113
|
// authentication PartnerClientId required
|
|
1114
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1114
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1115
1115
|
|
|
1116
1116
|
// authentication PartnerSignature required
|
|
1117
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1117
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1118
1118
|
|
|
1119
1119
|
// authentication PartnerTimestamp required
|
|
1120
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1120
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1121
1121
|
|
|
1122
1122
|
|
|
1123
1123
|
|
|
@@ -1163,13 +1163,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1163
1163
|
const localVarQueryParameter = {} as any;
|
|
1164
1164
|
|
|
1165
1165
|
// authentication PartnerClientId required
|
|
1166
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1166
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1167
1167
|
|
|
1168
1168
|
// authentication PartnerSignature required
|
|
1169
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1169
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1170
1170
|
|
|
1171
1171
|
// authentication PartnerTimestamp required
|
|
1172
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1172
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1173
1173
|
|
|
1174
1174
|
if (userId !== undefined) {
|
|
1175
1175
|
localVarQueryParameter['userId'] = userId;
|
|
@@ -1217,13 +1217,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1217
1217
|
const localVarQueryParameter = {} as any;
|
|
1218
1218
|
|
|
1219
1219
|
// authentication PartnerClientId required
|
|
1220
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1220
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1221
1221
|
|
|
1222
1222
|
// authentication PartnerSignature required
|
|
1223
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1223
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1224
1224
|
|
|
1225
1225
|
// authentication PartnerTimestamp required
|
|
1226
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1226
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1227
1227
|
|
|
1228
1228
|
|
|
1229
1229
|
|
|
@@ -1267,13 +1267,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1267
1267
|
const localVarQueryParameter = {} as any;
|
|
1268
1268
|
|
|
1269
1269
|
// authentication PartnerClientId required
|
|
1270
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1270
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1271
1271
|
|
|
1272
1272
|
// authentication PartnerSignature required
|
|
1273
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1273
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1274
1274
|
|
|
1275
1275
|
// authentication PartnerTimestamp required
|
|
1276
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1276
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1277
1277
|
|
|
1278
1278
|
|
|
1279
1279
|
|
|
@@ -1313,13 +1313,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1313
1313
|
const localVarQueryParameter = {} as any;
|
|
1314
1314
|
|
|
1315
1315
|
// authentication PartnerClientId required
|
|
1316
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1316
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1317
1317
|
|
|
1318
1318
|
// authentication PartnerSignature required
|
|
1319
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1319
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1320
1320
|
|
|
1321
1321
|
// authentication PartnerTimestamp required
|
|
1322
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1322
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1323
1323
|
|
|
1324
1324
|
|
|
1325
1325
|
|
|
@@ -1363,13 +1363,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1363
1363
|
const localVarQueryParameter = {} as any;
|
|
1364
1364
|
|
|
1365
1365
|
// authentication PartnerClientId required
|
|
1366
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1366
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1367
1367
|
|
|
1368
1368
|
// authentication PartnerSignature required
|
|
1369
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1369
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1370
1370
|
|
|
1371
1371
|
// authentication PartnerTimestamp required
|
|
1372
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1372
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1373
1373
|
|
|
1374
1374
|
|
|
1375
1375
|
|
|
@@ -1416,13 +1416,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1416
1416
|
const localVarQueryParameter = {} as any;
|
|
1417
1417
|
|
|
1418
1418
|
// authentication PartnerClientId required
|
|
1419
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1419
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1420
1420
|
|
|
1421
1421
|
// authentication PartnerSignature required
|
|
1422
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1422
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1423
1423
|
|
|
1424
1424
|
// authentication PartnerTimestamp required
|
|
1425
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1425
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1426
1426
|
|
|
1427
1427
|
|
|
1428
1428
|
|
|
@@ -1472,13 +1472,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1472
1472
|
const localVarQueryParameter = {} as any;
|
|
1473
1473
|
|
|
1474
1474
|
// authentication PartnerClientId required
|
|
1475
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1475
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1476
1476
|
|
|
1477
1477
|
// authentication PartnerSignature required
|
|
1478
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1478
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1479
1479
|
|
|
1480
1480
|
// authentication PartnerTimestamp required
|
|
1481
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1481
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1482
1482
|
|
|
1483
1483
|
|
|
1484
1484
|
|
|
@@ -1526,13 +1526,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1526
1526
|
const localVarQueryParameter = {} as any;
|
|
1527
1527
|
|
|
1528
1528
|
// authentication PartnerClientId required
|
|
1529
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1529
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1530
1530
|
|
|
1531
1531
|
// authentication PartnerSignature required
|
|
1532
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1532
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1533
1533
|
|
|
1534
1534
|
// authentication PartnerTimestamp required
|
|
1535
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1535
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1536
1536
|
|
|
1537
1537
|
|
|
1538
1538
|
|
|
@@ -1580,13 +1580,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1580
1580
|
const localVarQueryParameter = {} as any;
|
|
1581
1581
|
|
|
1582
1582
|
// authentication PartnerClientId required
|
|
1583
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1583
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1584
1584
|
|
|
1585
1585
|
// authentication PartnerSignature required
|
|
1586
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1586
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1587
1587
|
|
|
1588
1588
|
// authentication PartnerTimestamp required
|
|
1589
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1589
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1590
1590
|
|
|
1591
1591
|
|
|
1592
1592
|
|
|
@@ -1636,13 +1636,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1636
1636
|
const localVarQueryParameter = {} as any;
|
|
1637
1637
|
|
|
1638
1638
|
// authentication PartnerClientId required
|
|
1639
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1639
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1640
1640
|
|
|
1641
1641
|
// authentication PartnerSignature required
|
|
1642
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1642
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1643
1643
|
|
|
1644
1644
|
// authentication PartnerTimestamp required
|
|
1645
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1645
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1646
1646
|
|
|
1647
1647
|
|
|
1648
1648
|
|
|
@@ -1689,13 +1689,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1689
1689
|
const localVarQueryParameter = {} as any;
|
|
1690
1690
|
|
|
1691
1691
|
// authentication PartnerClientId required
|
|
1692
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1692
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1693
1693
|
|
|
1694
1694
|
// authentication PartnerSignature required
|
|
1695
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1695
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1696
1696
|
|
|
1697
1697
|
// authentication PartnerTimestamp required
|
|
1698
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1698
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1699
1699
|
|
|
1700
1700
|
|
|
1701
1701
|
|
|
@@ -1746,13 +1746,13 @@ export const PortfolioManagementApiAxiosParamCreator = function (configuration?:
|
|
|
1746
1746
|
const localVarQueryParameter = {} as any;
|
|
1747
1747
|
|
|
1748
1748
|
// authentication PartnerClientId required
|
|
1749
|
-
await setApiKeyToObject(localVarQueryParameter, "clientId", configuration)
|
|
1749
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
1750
1750
|
|
|
1751
1751
|
// authentication PartnerSignature required
|
|
1752
|
-
await setApiKeyToObject(localVarHeaderParameter, "Signature", configuration)
|
|
1752
|
+
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
1753
1753
|
|
|
1754
1754
|
// authentication PartnerTimestamp required
|
|
1755
|
-
await setApiKeyToObject(localVarQueryParameter, "timestamp", configuration)
|
|
1755
|
+
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
1756
1756
|
|
|
1757
1757
|
|
|
1758
1758
|
|