snaptrade-typescript-sdk 6.2.0 → 6.4.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 +12 -24
- package/api/account-information-api-custom.ts +3 -0
- package/api/account-information-api.ts +42 -73
- package/api/api-disclaimer-api-custom.ts +3 -0
- package/api/api-disclaimer-api.ts +9 -11
- package/api/api-status-api-custom.ts +3 -0
- package/api/api-status-api.ts +6 -6
- package/api/authentication-api-custom.ts +3 -0
- package/api/authentication-api.ts +31 -48
- package/api/connections-api-custom.ts +3 -0
- package/api/connections-api.ts +128 -27
- package/api/error-logs-api-custom.ts +3 -0
- package/api/error-logs-api.ts +7 -10
- package/api/options-api-custom.ts +3 -0
- package/api/options-api.ts +31 -48
- package/api/portfolio-management-api-custom.ts +3 -0
- package/api/portfolio-management-api.ts +183 -306
- package/api/reference-data-api-custom.ts +3 -0
- package/api/reference-data-api.ts +61 -102
- package/api/trading-api-custom.ts +3 -0
- package/api/trading-api.ts +62 -96
- package/api/transactions-and-reporting-api-custom.ts +3 -0
- package/api/transactions-and-reporting-api.ts +26 -21
- package/client-custom.ts +5 -0
- package/client.ts +3 -1
- package/common.ts +9 -4
- package/configuration.ts +3 -2
- package/dist/api/account-information-api-custom.d.ts +3 -0
- package/dist/api/account-information-api-custom.js +27 -0
- package/dist/api/account-information-api.d.ts +3 -2
- package/dist/api/account-information-api.js +2 -1
- package/dist/api/api-disclaimer-api-custom.d.ts +3 -0
- package/dist/api/api-disclaimer-api-custom.js +27 -0
- package/dist/api/api-disclaimer-api.d.ts +3 -2
- package/dist/api/api-disclaimer-api.js +4 -2
- package/dist/api/api-status-api-custom.d.ts +3 -0
- package/dist/api/api-status-api-custom.js +27 -0
- package/dist/api/api-status-api.d.ts +3 -2
- package/dist/api/api-status-api.js +2 -1
- package/dist/api/authentication-api-custom.d.ts +3 -0
- package/dist/api/authentication-api-custom.js +27 -0
- package/dist/api/authentication-api.d.ts +3 -2
- package/dist/api/authentication-api.js +6 -3
- package/dist/api/connections-api-custom.d.ts +3 -0
- package/dist/api/connections-api-custom.js +27 -0
- package/dist/api/connections-api.d.ts +57 -2
- package/dist/api/connections-api.js +111 -1
- package/dist/api/error-logs-api-custom.d.ts +3 -0
- package/dist/api/error-logs-api-custom.js +27 -0
- package/dist/api/error-logs-api.d.ts +3 -2
- package/dist/api/error-logs-api.js +2 -1
- package/dist/api/options-api-custom.d.ts +3 -0
- package/dist/api/options-api-custom.js +27 -0
- package/dist/api/options-api.d.ts +3 -2
- package/dist/api/options-api.js +6 -3
- package/dist/api/portfolio-management-api-custom.d.ts +3 -0
- package/dist/api/portfolio-management-api-custom.js +27 -0
- package/dist/api/portfolio-management-api.d.ts +3 -2
- package/dist/api/portfolio-management-api.js +18 -9
- package/dist/api/reference-data-api-custom.d.ts +3 -0
- package/dist/api/reference-data-api-custom.js +27 -0
- package/dist/api/reference-data-api.d.ts +3 -2
- package/dist/api/reference-data-api.js +6 -3
- package/dist/api/trading-api-custom.d.ts +3 -0
- package/dist/api/trading-api-custom.js +27 -0
- package/dist/api/trading-api.d.ts +3 -2
- package/dist/api/trading-api.js +12 -6
- package/dist/api/transactions-and-reporting-api-custom.d.ts +3 -0
- package/dist/api/transactions-and-reporting-api-custom.js +27 -0
- package/dist/api/transactions-and-reporting-api.d.ts +11 -3
- package/dist/api/transactions-and-reporting-api.js +8 -3
- package/dist/client-custom.d.ts +4 -0
- package/dist/client-custom.js +9 -0
- package/dist/client.d.ts +2 -1
- package/dist/client.js +32 -13
- package/dist/common.d.ts +2 -1
- package/dist/common.js +12 -10
- package/dist/configuration.js +3 -2
- 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/models/symbol.d.ts +6 -0
- package/dist/requestBeforeHook.d.ts +1 -0
- package/docs/ConnectionsApi.md +55 -0
- package/docs/TransactionsAndReportingApi.md +2 -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/models/symbol.ts +6 -0
- package/package.json +1 -1
- package/requestBeforeHook.ts +1 -0
|
@@ -45,6 +45,7 @@ import { SymbolQuery } from '../models';
|
|
|
45
45
|
import { UniversalSymbol } from '../models';
|
|
46
46
|
import { paginate } from "../pagination/paginate";
|
|
47
47
|
import { requestBeforeHook } from '../requestBeforeHook';
|
|
48
|
+
import { ReferenceDataApiCustom } from "./reference-data-api-custom";
|
|
48
49
|
/**
|
|
49
50
|
* ReferenceDataApi - axios parameter creator
|
|
50
51
|
* @export
|
|
@@ -76,23 +77,19 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
76
77
|
|
|
77
78
|
// authentication PartnerClientId required
|
|
78
79
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
79
|
-
|
|
80
80
|
// authentication PartnerSignature required
|
|
81
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
82
|
-
|
|
81
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
83
82
|
// authentication PartnerTimestamp required
|
|
84
83
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
85
84
|
|
|
86
|
-
|
|
87
85
|
|
|
88
86
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
89
87
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
90
|
-
|
|
91
88
|
requestBeforeHook({
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
89
|
+
queryParameters: localVarQueryParameter,
|
|
90
|
+
requestConfig: localVarRequestOptions,
|
|
91
|
+
path: localVarPath,
|
|
92
|
+
configuration
|
|
96
93
|
});
|
|
97
94
|
|
|
98
95
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -122,23 +119,19 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
122
119
|
|
|
123
120
|
// authentication PartnerClientId required
|
|
124
121
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
125
|
-
|
|
126
122
|
// authentication PartnerSignature required
|
|
127
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
128
|
-
|
|
123
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
129
124
|
// authentication PartnerTimestamp required
|
|
130
125
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
131
126
|
|
|
132
|
-
|
|
133
127
|
|
|
134
128
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
135
129
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
136
|
-
|
|
137
130
|
requestBeforeHook({
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
131
|
+
queryParameters: localVarQueryParameter,
|
|
132
|
+
requestConfig: localVarRequestOptions,
|
|
133
|
+
path: localVarPath,
|
|
134
|
+
configuration
|
|
142
135
|
});
|
|
143
136
|
|
|
144
137
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -168,23 +161,19 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
168
161
|
|
|
169
162
|
// authentication PartnerClientId required
|
|
170
163
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
171
|
-
|
|
172
164
|
// authentication PartnerSignature required
|
|
173
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
174
|
-
|
|
165
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
175
166
|
// authentication PartnerTimestamp required
|
|
176
167
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
177
168
|
|
|
178
|
-
|
|
179
169
|
|
|
180
170
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
181
171
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
182
|
-
|
|
183
172
|
requestBeforeHook({
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
173
|
+
queryParameters: localVarQueryParameter,
|
|
174
|
+
requestConfig: localVarRequestOptions,
|
|
175
|
+
path: localVarPath,
|
|
176
|
+
configuration
|
|
188
177
|
});
|
|
189
178
|
|
|
190
179
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -214,23 +203,19 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
214
203
|
|
|
215
204
|
// authentication PartnerClientId required
|
|
216
205
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
217
|
-
|
|
218
206
|
// authentication PartnerSignature required
|
|
219
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
220
|
-
|
|
207
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
221
208
|
// authentication PartnerTimestamp required
|
|
222
209
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
223
210
|
|
|
224
|
-
|
|
225
211
|
|
|
226
212
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
227
213
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
228
|
-
|
|
229
214
|
requestBeforeHook({
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
215
|
+
queryParameters: localVarQueryParameter,
|
|
216
|
+
requestConfig: localVarRequestOptions,
|
|
217
|
+
path: localVarPath,
|
|
218
|
+
configuration
|
|
234
219
|
});
|
|
235
220
|
|
|
236
221
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -261,27 +246,24 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
261
246
|
|
|
262
247
|
// authentication PartnerClientId required
|
|
263
248
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
264
|
-
|
|
265
249
|
// authentication PartnerSignature required
|
|
266
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
267
|
-
|
|
250
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
268
251
|
// authentication PartnerTimestamp required
|
|
269
252
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
270
253
|
|
|
271
|
-
|
|
272
254
|
|
|
273
255
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
274
256
|
|
|
275
257
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
276
258
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
277
|
-
localVarRequestOptions.data = serializeDataIfNeeded(symbolQuery, localVarRequestOptions, configuration)
|
|
278
|
-
|
|
279
259
|
requestBeforeHook({
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
260
|
+
requestBody: symbolQuery,
|
|
261
|
+
queryParameters: localVarQueryParameter,
|
|
262
|
+
requestConfig: localVarRequestOptions,
|
|
263
|
+
path: localVarPath,
|
|
264
|
+
configuration
|
|
284
265
|
});
|
|
266
|
+
localVarRequestOptions.data = serializeDataIfNeeded(symbolQuery, localVarRequestOptions, configuration)
|
|
285
267
|
|
|
286
268
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
287
269
|
return {
|
|
@@ -315,13 +297,10 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
315
297
|
|
|
316
298
|
// authentication PartnerClientId required
|
|
317
299
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
318
|
-
|
|
319
300
|
// authentication PartnerSignature required
|
|
320
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
321
|
-
|
|
301
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
322
302
|
// authentication PartnerTimestamp required
|
|
323
303
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
324
|
-
|
|
325
304
|
if (symbolId !== undefined) {
|
|
326
305
|
localVarQueryParameter['symbolId'] = symbolId;
|
|
327
306
|
}
|
|
@@ -330,12 +309,11 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
330
309
|
|
|
331
310
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
332
311
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
333
|
-
|
|
334
312
|
requestBeforeHook({
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
313
|
+
queryParameters: localVarQueryParameter,
|
|
314
|
+
requestConfig: localVarRequestOptions,
|
|
315
|
+
path: localVarPath,
|
|
316
|
+
configuration
|
|
339
317
|
});
|
|
340
318
|
|
|
341
319
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -366,13 +344,10 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
366
344
|
|
|
367
345
|
// authentication PartnerClientId required
|
|
368
346
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
369
|
-
|
|
370
347
|
// authentication PartnerSignature required
|
|
371
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
372
|
-
|
|
348
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
373
349
|
// authentication PartnerTimestamp required
|
|
374
350
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
375
|
-
|
|
376
351
|
if (brokerage !== undefined) {
|
|
377
352
|
localVarQueryParameter['brokerage'] = brokerage;
|
|
378
353
|
}
|
|
@@ -381,12 +356,11 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
381
356
|
|
|
382
357
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
383
358
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
384
|
-
|
|
385
359
|
requestBeforeHook({
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
360
|
+
queryParameters: localVarQueryParameter,
|
|
361
|
+
requestConfig: localVarRequestOptions,
|
|
362
|
+
path: localVarPath,
|
|
363
|
+
configuration
|
|
390
364
|
});
|
|
391
365
|
|
|
392
366
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -416,23 +390,19 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
416
390
|
|
|
417
391
|
// authentication PartnerClientId required
|
|
418
392
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
419
|
-
|
|
420
393
|
// authentication PartnerSignature required
|
|
421
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
422
|
-
|
|
394
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
423
395
|
// authentication PartnerTimestamp required
|
|
424
396
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
425
397
|
|
|
426
|
-
|
|
427
398
|
|
|
428
399
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
429
400
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
430
|
-
|
|
431
401
|
requestBeforeHook({
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
402
|
+
queryParameters: localVarQueryParameter,
|
|
403
|
+
requestConfig: localVarRequestOptions,
|
|
404
|
+
path: localVarPath,
|
|
405
|
+
configuration
|
|
436
406
|
});
|
|
437
407
|
|
|
438
408
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -462,23 +432,19 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
462
432
|
|
|
463
433
|
// authentication PartnerClientId required
|
|
464
434
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
465
|
-
|
|
466
435
|
// authentication PartnerSignature required
|
|
467
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
468
|
-
|
|
436
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
469
437
|
// authentication PartnerTimestamp required
|
|
470
438
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
471
439
|
|
|
472
|
-
|
|
473
440
|
|
|
474
441
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
475
442
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
476
|
-
|
|
477
443
|
requestBeforeHook({
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
444
|
+
queryParameters: localVarQueryParameter,
|
|
445
|
+
requestConfig: localVarRequestOptions,
|
|
446
|
+
path: localVarPath,
|
|
447
|
+
configuration
|
|
482
448
|
});
|
|
483
449
|
|
|
484
450
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -508,23 +474,19 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
508
474
|
|
|
509
475
|
// authentication PartnerClientId required
|
|
510
476
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
511
|
-
|
|
512
477
|
// authentication PartnerSignature required
|
|
513
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
514
|
-
|
|
478
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
515
479
|
// authentication PartnerTimestamp required
|
|
516
480
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
517
481
|
|
|
518
|
-
|
|
519
482
|
|
|
520
483
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
521
484
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
522
|
-
|
|
523
485
|
requestBeforeHook({
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
486
|
+
queryParameters: localVarQueryParameter,
|
|
487
|
+
requestConfig: localVarRequestOptions,
|
|
488
|
+
path: localVarPath,
|
|
489
|
+
configuration
|
|
528
490
|
});
|
|
529
491
|
|
|
530
492
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -565,13 +527,10 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
565
527
|
|
|
566
528
|
// authentication PartnerClientId required
|
|
567
529
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "clientId", configuration})
|
|
568
|
-
|
|
569
530
|
// authentication PartnerSignature required
|
|
570
|
-
await setApiKeyToObject({object: localVarHeaderParameter, keyParamName: "Signature", configuration})
|
|
571
|
-
|
|
531
|
+
await setApiKeyToObject({ object: localVarHeaderParameter, keyParamName: "Signature", configuration })
|
|
572
532
|
// authentication PartnerTimestamp required
|
|
573
533
|
await setApiKeyToObject({object: localVarQueryParameter, keyParamName: "timestamp", configuration})
|
|
574
|
-
|
|
575
534
|
if (userId !== undefined) {
|
|
576
535
|
localVarQueryParameter['userId'] = userId;
|
|
577
536
|
}
|
|
@@ -586,14 +545,14 @@ export const ReferenceDataApiAxiosParamCreator = function (configuration?: Confi
|
|
|
586
545
|
|
|
587
546
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
588
547
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
589
|
-
localVarRequestOptions.data = serializeDataIfNeeded(symbolQuery, localVarRequestOptions, configuration)
|
|
590
|
-
|
|
591
548
|
requestBeforeHook({
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
549
|
+
requestBody: symbolQuery,
|
|
550
|
+
queryParameters: localVarQueryParameter,
|
|
551
|
+
requestConfig: localVarRequestOptions,
|
|
552
|
+
path: localVarPath,
|
|
553
|
+
configuration
|
|
596
554
|
});
|
|
555
|
+
localVarRequestOptions.data = serializeDataIfNeeded(symbolQuery, localVarRequestOptions, configuration)
|
|
597
556
|
|
|
598
557
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
599
558
|
return {
|
|
@@ -943,7 +902,7 @@ export type ReferenceDataApiSymbolSearchUserAccountRequest = {
|
|
|
943
902
|
* @class ReferenceDataApi
|
|
944
903
|
* @extends {BaseAPI}
|
|
945
904
|
*/
|
|
946
|
-
export class ReferenceDataApi extends
|
|
905
|
+
export class ReferenceDataApi extends ReferenceDataApiCustom {
|
|
947
906
|
/**
|
|
948
907
|
*
|
|
949
908
|
* @summary Return the exchange rate of a currency pair
|