snaptrade-typescript-sdk 9.0.2 → 9.0.4
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/README.md +4 -4
- package/dist/api/account-information-api-generated.js +24 -24
- package/dist/api/authentication-api-generated.js +18 -18
- package/dist/api/connections-api-generated.js +12 -12
- package/dist/api/error-logs-api-generated.js +3 -3
- package/dist/api/options-api-generated.js +15 -15
- package/dist/api/reference-data-api-generated.js +33 -33
- package/dist/api/trading-api-generated.d.ts +4 -0
- package/dist/api/trading-api-generated.js +22 -18
- package/dist/api/transactions-and-reporting-api-generated.js +6 -6
- package/dist/browser.js +1 -1
- package/dist/common.d.ts +4 -4
- package/dist/configuration.js +2 -2
- package/dist/error.d.ts +5 -5
- package/dist/error.js +5 -5
- package/dist/requestAfterHook.js +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
Connect brokerage accounts to your app for live positions and trading
|
|
8
8
|
|
|
9
|
-
[](https://www.npmjs.com/package/snaptrade-typescript-sdk/v/9.0.4)
|
|
10
10
|
[](https://snaptrade.com/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
@@ -294,7 +294,7 @@ The ID of the account to get detail of.
|
|
|
294
294
|
|
|
295
295
|
### `snaptrade.accountInformation.getUserAccountOrders`<a id="snaptradeaccountinformationgetuseraccountorders"></a>
|
|
296
296
|
|
|
297
|
-
Fetch all recent orders from a user
|
|
297
|
+
Fetch all recent orders from a user's account.
|
|
298
298
|
|
|
299
299
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
300
300
|
|
|
@@ -512,7 +512,7 @@ const checkResponse = await snaptrade.apiStatus.check();
|
|
|
512
512
|
|
|
513
513
|
### `snaptrade.authentication.deleteSnapTradeUser`<a id="snaptradeauthenticationdeletesnaptradeuser"></a>
|
|
514
514
|
|
|
515
|
-
Deletes a user you
|
|
515
|
+
Deletes a user you've registered over the SnapTrade API, and any data associated with them or their investment accounts.
|
|
516
516
|
|
|
517
517
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
518
518
|
|
|
@@ -574,7 +574,7 @@ const getUserJWTResponse = await snaptrade.authentication.getUserJWT({
|
|
|
574
574
|
|
|
575
575
|
### `snaptrade.authentication.listSnapTradeUsers`<a id="snaptradeauthenticationlistsnaptradeusers"></a>
|
|
576
576
|
|
|
577
|
-
Returns a list of users you
|
|
577
|
+
Returns a list of users you've registered over the SnapTrade API.
|
|
578
578
|
|
|
579
579
|
#### 🛠️ Usage<a id="🛠️-usage"></a>
|
|
580
580
|
|
|
@@ -61,11 +61,11 @@ const AccountInformationApiAxiosParamCreator = function (configuration) {
|
|
|
61
61
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
62
62
|
const localVarQueryParameter = {};
|
|
63
63
|
// authentication PartnerClientId required
|
|
64
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
64
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
65
65
|
// authentication PartnerSignature required
|
|
66
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
66
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
67
67
|
// authentication PartnerTimestamp required
|
|
68
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
68
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
69
69
|
if (userId !== undefined) {
|
|
70
70
|
localVarQueryParameter['userId'] = userId;
|
|
71
71
|
}
|
|
@@ -117,11 +117,11 @@ const AccountInformationApiAxiosParamCreator = function (configuration) {
|
|
|
117
117
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
118
118
|
const localVarQueryParameter = {};
|
|
119
119
|
// authentication PartnerClientId required
|
|
120
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
120
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
121
121
|
// authentication PartnerSignature required
|
|
122
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
122
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
123
123
|
// authentication PartnerTimestamp required
|
|
124
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
124
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
125
125
|
if (userId !== undefined) {
|
|
126
126
|
localVarQueryParameter['userId'] = userId;
|
|
127
127
|
}
|
|
@@ -170,11 +170,11 @@ const AccountInformationApiAxiosParamCreator = function (configuration) {
|
|
|
170
170
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
171
171
|
const localVarQueryParameter = {};
|
|
172
172
|
// authentication PartnerClientId required
|
|
173
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
173
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
174
174
|
// authentication PartnerSignature required
|
|
175
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
175
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
176
176
|
// authentication PartnerTimestamp required
|
|
177
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
177
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
178
178
|
if (userId !== undefined) {
|
|
179
179
|
localVarQueryParameter['userId'] = userId;
|
|
180
180
|
}
|
|
@@ -225,11 +225,11 @@ const AccountInformationApiAxiosParamCreator = function (configuration) {
|
|
|
225
225
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
226
226
|
const localVarQueryParameter = {};
|
|
227
227
|
// authentication PartnerClientId required
|
|
228
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
228
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
229
229
|
// authentication PartnerSignature required
|
|
230
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
230
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
231
231
|
// authentication PartnerTimestamp required
|
|
232
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
232
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
233
233
|
if (userId !== undefined) {
|
|
234
234
|
localVarQueryParameter['userId'] = userId;
|
|
235
235
|
}
|
|
@@ -284,11 +284,11 @@ const AccountInformationApiAxiosParamCreator = function (configuration) {
|
|
|
284
284
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
285
285
|
const localVarQueryParameter = {};
|
|
286
286
|
// authentication PartnerClientId required
|
|
287
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
287
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
288
288
|
// authentication PartnerSignature required
|
|
289
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
289
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
290
290
|
// authentication PartnerTimestamp required
|
|
291
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
291
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
292
292
|
if (userId !== undefined) {
|
|
293
293
|
localVarQueryParameter['userId'] = userId;
|
|
294
294
|
}
|
|
@@ -337,11 +337,11 @@ const AccountInformationApiAxiosParamCreator = function (configuration) {
|
|
|
337
337
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
338
338
|
const localVarQueryParameter = {};
|
|
339
339
|
// authentication PartnerClientId required
|
|
340
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
340
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
341
341
|
// authentication PartnerSignature required
|
|
342
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
342
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
343
343
|
// authentication PartnerTimestamp required
|
|
344
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
344
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
345
345
|
if (userId !== undefined) {
|
|
346
346
|
localVarQueryParameter['userId'] = userId;
|
|
347
347
|
}
|
|
@@ -386,11 +386,11 @@ const AccountInformationApiAxiosParamCreator = function (configuration) {
|
|
|
386
386
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
387
387
|
const localVarQueryParameter = {};
|
|
388
388
|
// authentication PartnerClientId required
|
|
389
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
389
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
390
390
|
// authentication PartnerSignature required
|
|
391
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
391
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
392
392
|
// authentication PartnerTimestamp required
|
|
393
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
393
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
394
394
|
if (userId !== undefined) {
|
|
395
395
|
localVarQueryParameter['userId'] = userId;
|
|
396
396
|
}
|
|
@@ -439,11 +439,11 @@ const AccountInformationApiAxiosParamCreator = function (configuration) {
|
|
|
439
439
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
440
440
|
const localVarQueryParameter = {};
|
|
441
441
|
// authentication PartnerClientId required
|
|
442
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
442
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
443
443
|
// authentication PartnerSignature required
|
|
444
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
444
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
445
445
|
// authentication PartnerTimestamp required
|
|
446
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
446
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
447
447
|
if (userId !== undefined) {
|
|
448
448
|
localVarQueryParameter['userId'] = userId;
|
|
449
449
|
}
|
|
@@ -56,11 +56,11 @@ const AuthenticationApiAxiosParamCreator = function (configuration) {
|
|
|
56
56
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
57
57
|
const localVarQueryParameter = {};
|
|
58
58
|
// authentication PartnerClientId required
|
|
59
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
59
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
60
60
|
// authentication PartnerSignature required
|
|
61
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
61
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
62
62
|
// authentication PartnerTimestamp required
|
|
63
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
63
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
64
64
|
if (userId !== undefined) {
|
|
65
65
|
localVarQueryParameter['userId'] = userId;
|
|
66
66
|
}
|
|
@@ -102,11 +102,11 @@ const AuthenticationApiAxiosParamCreator = function (configuration) {
|
|
|
102
102
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
103
103
|
const localVarQueryParameter = {};
|
|
104
104
|
// authentication PartnerClientId required
|
|
105
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
105
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
106
106
|
// authentication PartnerSignature required
|
|
107
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
107
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
108
108
|
// authentication PartnerTimestamp required
|
|
109
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
109
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
110
110
|
if (userId !== undefined) {
|
|
111
111
|
localVarQueryParameter['userId'] = userId;
|
|
112
112
|
}
|
|
@@ -145,11 +145,11 @@ const AuthenticationApiAxiosParamCreator = function (configuration) {
|
|
|
145
145
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
146
146
|
const localVarQueryParameter = {};
|
|
147
147
|
// authentication PartnerClientId required
|
|
148
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
148
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
149
149
|
// authentication PartnerSignature required
|
|
150
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
150
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
151
151
|
// authentication PartnerTimestamp required
|
|
152
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
152
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
153
153
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
154
154
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
155
155
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
@@ -189,11 +189,11 @@ const AuthenticationApiAxiosParamCreator = function (configuration) {
|
|
|
189
189
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
190
190
|
const localVarQueryParameter = {};
|
|
191
191
|
// authentication PartnerClientId required
|
|
192
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
192
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
193
193
|
// authentication PartnerSignature required
|
|
194
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
194
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
195
195
|
// authentication PartnerTimestamp required
|
|
196
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
196
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
197
197
|
if (userId !== undefined) {
|
|
198
198
|
localVarQueryParameter['userId'] = userId;
|
|
199
199
|
}
|
|
@@ -238,11 +238,11 @@ const AuthenticationApiAxiosParamCreator = function (configuration) {
|
|
|
238
238
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
239
239
|
const localVarQueryParameter = {};
|
|
240
240
|
// authentication PartnerClientId required
|
|
241
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
241
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
242
242
|
// authentication PartnerSignature required
|
|
243
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
243
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
244
244
|
// authentication PartnerTimestamp required
|
|
245
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
245
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
246
246
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
247
247
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
248
248
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -281,11 +281,11 @@ const AuthenticationApiAxiosParamCreator = function (configuration) {
|
|
|
281
281
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
282
282
|
const localVarQueryParameter = {};
|
|
283
283
|
// authentication PartnerClientId required
|
|
284
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
284
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
285
285
|
// authentication PartnerSignature required
|
|
286
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
286
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
287
287
|
// authentication PartnerTimestamp required
|
|
288
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
288
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
289
289
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
290
290
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
291
291
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -63,11 +63,11 @@ const ConnectionsApiAxiosParamCreator = function (configuration) {
|
|
|
63
63
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
64
64
|
const localVarQueryParameter = {};
|
|
65
65
|
// authentication PartnerClientId required
|
|
66
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
66
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
67
67
|
// authentication PartnerSignature required
|
|
68
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
68
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
69
69
|
// authentication PartnerTimestamp required
|
|
70
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
70
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
71
71
|
if (userId !== undefined) {
|
|
72
72
|
localVarQueryParameter['userId'] = userId;
|
|
73
73
|
}
|
|
@@ -112,11 +112,11 @@ const ConnectionsApiAxiosParamCreator = function (configuration) {
|
|
|
112
112
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
113
113
|
const localVarQueryParameter = {};
|
|
114
114
|
// authentication PartnerClientId required
|
|
115
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
115
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
116
116
|
// authentication PartnerSignature required
|
|
117
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
117
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
118
118
|
// authentication PartnerTimestamp required
|
|
119
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
119
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
120
120
|
if (userId !== undefined) {
|
|
121
121
|
localVarQueryParameter['userId'] = userId;
|
|
122
122
|
}
|
|
@@ -165,11 +165,11 @@ const ConnectionsApiAxiosParamCreator = function (configuration) {
|
|
|
165
165
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
166
166
|
const localVarQueryParameter = {};
|
|
167
167
|
// authentication PartnerClientId required
|
|
168
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
168
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
169
169
|
// authentication PartnerSignature required
|
|
170
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
170
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
171
171
|
// authentication PartnerTimestamp required
|
|
172
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
172
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
173
173
|
if (userId !== undefined) {
|
|
174
174
|
localVarQueryParameter['userId'] = userId;
|
|
175
175
|
}
|
|
@@ -213,11 +213,11 @@ const ConnectionsApiAxiosParamCreator = function (configuration) {
|
|
|
213
213
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
214
214
|
const localVarQueryParameter = {};
|
|
215
215
|
// authentication PartnerClientId required
|
|
216
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
216
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
217
217
|
// authentication PartnerSignature required
|
|
218
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
218
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
219
219
|
// authentication PartnerTimestamp required
|
|
220
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
220
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
221
221
|
if (partnerClientId !== undefined) {
|
|
222
222
|
localVarQueryParameter['PartnerClientId'] = partnerClientId;
|
|
223
223
|
}
|
|
@@ -59,11 +59,11 @@ const ErrorLogsApiAxiosParamCreator = function (configuration) {
|
|
|
59
59
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
60
60
|
const localVarQueryParameter = {};
|
|
61
61
|
// authentication PartnerClientId required
|
|
62
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
62
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
63
63
|
// authentication PartnerSignature required
|
|
64
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
64
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
65
65
|
// authentication PartnerTimestamp required
|
|
66
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
66
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
67
67
|
if (userId !== undefined) {
|
|
68
68
|
localVarQueryParameter['userId'] = userId;
|
|
69
69
|
}
|
|
@@ -66,11 +66,11 @@ const OptionsApiAxiosParamCreator = function (configuration) {
|
|
|
66
66
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
67
67
|
const localVarQueryParameter = {};
|
|
68
68
|
// authentication PartnerClientId required
|
|
69
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
69
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
70
70
|
// authentication PartnerSignature required
|
|
71
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
71
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
72
72
|
// authentication PartnerTimestamp required
|
|
73
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
73
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
74
74
|
if (userId !== undefined) {
|
|
75
75
|
localVarQueryParameter['userId'] = userId;
|
|
76
76
|
}
|
|
@@ -125,11 +125,11 @@ const OptionsApiAxiosParamCreator = function (configuration) {
|
|
|
125
125
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
126
126
|
const localVarQueryParameter = {};
|
|
127
127
|
// authentication PartnerClientId required
|
|
128
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
128
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
129
129
|
// authentication PartnerSignature required
|
|
130
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
130
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
131
131
|
// authentication PartnerTimestamp required
|
|
132
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
132
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
133
133
|
if (userId !== undefined) {
|
|
134
134
|
localVarQueryParameter['userId'] = userId;
|
|
135
135
|
}
|
|
@@ -185,11 +185,11 @@ const OptionsApiAxiosParamCreator = function (configuration) {
|
|
|
185
185
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
186
186
|
const localVarQueryParameter = {};
|
|
187
187
|
// authentication PartnerClientId required
|
|
188
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
188
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
189
189
|
// authentication PartnerSignature required
|
|
190
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
190
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
191
191
|
// authentication PartnerTimestamp required
|
|
192
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
192
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
193
193
|
if (userId !== undefined) {
|
|
194
194
|
localVarQueryParameter['userId'] = userId;
|
|
195
195
|
}
|
|
@@ -238,11 +238,11 @@ const OptionsApiAxiosParamCreator = function (configuration) {
|
|
|
238
238
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
239
239
|
const localVarQueryParameter = {};
|
|
240
240
|
// authentication PartnerClientId required
|
|
241
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
241
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
242
242
|
// authentication PartnerSignature required
|
|
243
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
243
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
244
244
|
// authentication PartnerTimestamp required
|
|
245
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
245
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
246
246
|
if (userId !== undefined) {
|
|
247
247
|
localVarQueryParameter['userId'] = userId;
|
|
248
248
|
}
|
|
@@ -298,11 +298,11 @@ const OptionsApiAxiosParamCreator = function (configuration) {
|
|
|
298
298
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
299
299
|
const localVarQueryParameter = {};
|
|
300
300
|
// authentication PartnerClientId required
|
|
301
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
301
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
302
302
|
// authentication PartnerSignature required
|
|
303
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
303
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
304
304
|
// authentication PartnerTimestamp required
|
|
305
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
305
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
306
306
|
if (userId !== undefined) {
|
|
307
307
|
localVarQueryParameter['userId'] = userId;
|
|
308
308
|
}
|
|
@@ -57,11 +57,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
57
57
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
58
58
|
const localVarQueryParameter = {};
|
|
59
59
|
// authentication PartnerClientId required
|
|
60
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
60
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
61
61
|
// authentication PartnerSignature required
|
|
62
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
62
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
63
63
|
// authentication PartnerTimestamp required
|
|
64
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
64
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
65
65
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
66
66
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
67
67
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
@@ -94,11 +94,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
94
94
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
95
95
|
const localVarQueryParameter = {};
|
|
96
96
|
// authentication PartnerClientId required
|
|
97
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
97
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
98
98
|
// authentication PartnerSignature required
|
|
99
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
99
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
100
100
|
// authentication PartnerTimestamp required
|
|
101
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
101
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
102
102
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103
103
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
104
104
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
@@ -131,11 +131,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
131
131
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
132
132
|
const localVarQueryParameter = {};
|
|
133
133
|
// authentication PartnerClientId required
|
|
134
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
134
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
135
135
|
// authentication PartnerSignature required
|
|
136
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
136
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
137
137
|
// authentication PartnerTimestamp required
|
|
138
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
138
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
139
139
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
140
140
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
141
141
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
@@ -168,11 +168,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
168
168
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
169
169
|
const localVarQueryParameter = {};
|
|
170
170
|
// authentication PartnerClientId required
|
|
171
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
171
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
172
172
|
// authentication PartnerSignature required
|
|
173
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
173
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
174
174
|
// authentication PartnerTimestamp required
|
|
175
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
175
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
176
176
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
177
177
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
178
178
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
@@ -206,11 +206,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
206
206
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
207
207
|
const localVarQueryParameter = {};
|
|
208
208
|
// authentication PartnerClientId required
|
|
209
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
209
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
210
210
|
// authentication PartnerSignature required
|
|
211
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
211
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
212
212
|
// authentication PartnerTimestamp required
|
|
213
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
213
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
214
214
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
215
215
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
216
216
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -250,11 +250,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
250
250
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
251
251
|
const localVarQueryParameter = {};
|
|
252
252
|
// authentication PartnerClientId required
|
|
253
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
253
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
254
254
|
// authentication PartnerSignature required
|
|
255
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
255
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
256
256
|
// authentication PartnerTimestamp required
|
|
257
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
257
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
258
258
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
259
259
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
260
260
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
@@ -288,11 +288,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
288
288
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
289
289
|
const localVarQueryParameter = {};
|
|
290
290
|
// authentication PartnerClientId required
|
|
291
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
291
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
292
292
|
// authentication PartnerSignature required
|
|
293
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
293
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
294
294
|
// authentication PartnerTimestamp required
|
|
295
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
295
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
296
296
|
if (brokerage !== undefined) {
|
|
297
297
|
localVarQueryParameter['brokerage'] = brokerage;
|
|
298
298
|
}
|
|
@@ -328,11 +328,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
328
328
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
329
329
|
const localVarQueryParameter = {};
|
|
330
330
|
// authentication PartnerClientId required
|
|
331
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
331
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
332
332
|
// authentication PartnerSignature required
|
|
333
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
333
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
334
334
|
// authentication PartnerTimestamp required
|
|
335
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
335
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
336
336
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
337
337
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
338
338
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
@@ -365,11 +365,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
365
365
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
366
366
|
const localVarQueryParameter = {};
|
|
367
367
|
// authentication PartnerClientId required
|
|
368
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
368
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
369
369
|
// authentication PartnerSignature required
|
|
370
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
370
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
371
371
|
// authentication PartnerTimestamp required
|
|
372
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
372
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
373
373
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
374
374
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
375
375
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
@@ -402,11 +402,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
402
402
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
403
403
|
const localVarQueryParameter = {};
|
|
404
404
|
// authentication PartnerClientId required
|
|
405
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
405
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
406
406
|
// authentication PartnerSignature required
|
|
407
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
407
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
408
408
|
// authentication PartnerTimestamp required
|
|
409
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
409
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
410
410
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
411
411
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
412
412
|
(0, requestBeforeHook_1.requestBeforeHook)({
|
|
@@ -450,11 +450,11 @@ const ReferenceDataApiAxiosParamCreator = function (configuration) {
|
|
|
450
450
|
const localVarHeaderParameter = configuration && !(0, common_1.isBrowser)() ? { "User-Agent": configuration.userAgent } : {};
|
|
451
451
|
const localVarQueryParameter = {};
|
|
452
452
|
// authentication PartnerClientId required
|
|
453
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "clientId", configuration });
|
|
453
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "clientId", keyParamName: "clientId", configuration });
|
|
454
454
|
// authentication PartnerSignature required
|
|
455
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter,
|
|
455
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarHeaderParameter, key: "Signature", keyParamName: "signature", configuration });
|
|
456
456
|
// authentication PartnerTimestamp required
|
|
457
|
-
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, keyParamName: "timestamp", configuration });
|
|
457
|
+
yield (0, common_1.setApiKeyToObject)({ object: localVarQueryParameter, key: "timestamp", keyParamName: "timestamp", configuration });
|
|
458
458
|
if (userId !== undefined) {
|
|
459
459
|
localVarQueryParameter['userId'] = userId;
|
|
460
460
|
}
|