@idunion/tl-sdk 0.0.46 → 0.0.48
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/api.d.ts +8 -4
- package/api.js +35 -7
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -381,10 +381,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
381
381
|
tlGet: (tlId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
382
382
|
/**
|
|
383
383
|
* Provides a list of Trusted Lists
|
|
384
|
+
* @param {string} [search]
|
|
384
385
|
* @param {*} [options] Override http request option.
|
|
385
386
|
* @throws {RequiredError}
|
|
386
387
|
*/
|
|
387
|
-
tlList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
388
|
+
tlList: (search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
388
389
|
/**
|
|
389
390
|
* Provides a list of Trusted Lists for an authenticated owner
|
|
390
391
|
* @param {*} [options] Override http request option.
|
|
@@ -543,10 +544,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
543
544
|
tlGet(tlId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tl>>;
|
|
544
545
|
/**
|
|
545
546
|
* Provides a list of Trusted Lists
|
|
547
|
+
* @param {string} [search]
|
|
546
548
|
* @param {*} [options] Override http request option.
|
|
547
549
|
* @throws {RequiredError}
|
|
548
550
|
*/
|
|
549
|
-
tlList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TlList>>;
|
|
551
|
+
tlList(search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TlList>>;
|
|
550
552
|
/**
|
|
551
553
|
* Provides a list of Trusted Lists for an authenticated owner
|
|
552
554
|
* @param {*} [options] Override http request option.
|
|
@@ -705,10 +707,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
705
707
|
tlGet(tlId: string, options?: RawAxiosRequestConfig): AxiosPromise<Tl>;
|
|
706
708
|
/**
|
|
707
709
|
* Provides a list of Trusted Lists
|
|
710
|
+
* @param {string} [search]
|
|
708
711
|
* @param {*} [options] Override http request option.
|
|
709
712
|
* @throws {RequiredError}
|
|
710
713
|
*/
|
|
711
|
-
tlList(options?: RawAxiosRequestConfig): AxiosPromise<TlList>;
|
|
714
|
+
tlList(search?: string, options?: RawAxiosRequestConfig): AxiosPromise<TlList>;
|
|
712
715
|
/**
|
|
713
716
|
* Provides a list of Trusted Lists for an authenticated owner
|
|
714
717
|
* @param {*} [options] Override http request option.
|
|
@@ -867,10 +870,11 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
867
870
|
tlGet(tlId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tl, any>>;
|
|
868
871
|
/**
|
|
869
872
|
* Provides a list of Trusted Lists
|
|
873
|
+
* @param {string} [search]
|
|
870
874
|
* @param {*} [options] Override http request option.
|
|
871
875
|
* @throws {RequiredError}
|
|
872
876
|
*/
|
|
873
|
-
tlList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TlList, any>>;
|
|
877
|
+
tlList(search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TlList, any>>;
|
|
874
878
|
/**
|
|
875
879
|
* Provides a list of Trusted Lists for an authenticated owner
|
|
876
880
|
* @param {*} [options] Override http request option.
|
package/api.js
CHANGED
|
@@ -78,6 +78,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
78
78
|
// http bearer authentication required
|
|
79
79
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
80
80
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
81
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
81
82
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
82
83
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
83
84
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -111,6 +112,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
111
112
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
112
113
|
const localVarHeaderParameter = {};
|
|
113
114
|
const localVarQueryParameter = {};
|
|
115
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
114
116
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
115
117
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
116
118
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -142,6 +144,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
142
144
|
// authentication accessToken required
|
|
143
145
|
// http bearer authentication required
|
|
144
146
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
147
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
145
148
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
146
149
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
147
150
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -179,6 +182,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
179
182
|
// http bearer authentication required
|
|
180
183
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
181
184
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
185
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
182
186
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
183
187
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
184
188
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -217,6 +221,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
217
221
|
// http bearer authentication required
|
|
218
222
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
219
223
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
224
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
220
225
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
221
226
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
222
227
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -249,6 +254,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
249
254
|
// authentication accessToken required
|
|
250
255
|
// http bearer authentication required
|
|
251
256
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
257
|
+
localVarHeaderParameter['Accept'] = 'application/xml,application/json';
|
|
252
258
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
253
259
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
254
260
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -273,6 +279,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
273
279
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
274
280
|
const localVarHeaderParameter = {};
|
|
275
281
|
const localVarQueryParameter = {};
|
|
282
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
276
283
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
277
284
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
278
285
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -303,6 +310,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
303
310
|
const localVarHeaderParameter = {};
|
|
304
311
|
const localVarQueryParameter = {};
|
|
305
312
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
313
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
306
314
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
307
315
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
308
316
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -332,6 +340,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
332
340
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
333
341
|
const localVarHeaderParameter = {};
|
|
334
342
|
const localVarQueryParameter = {};
|
|
343
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
335
344
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
336
345
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
337
346
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -361,6 +370,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
361
370
|
// http bearer authentication required
|
|
362
371
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
363
372
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
373
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
364
374
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
365
375
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
366
376
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -393,6 +403,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
393
403
|
// authentication accessToken required
|
|
394
404
|
// http bearer authentication required
|
|
395
405
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
406
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
396
407
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
397
408
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
398
409
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -424,6 +435,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
424
435
|
// authentication accessToken required
|
|
425
436
|
// http bearer authentication required
|
|
426
437
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
438
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
427
439
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
428
440
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
429
441
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -434,10 +446,11 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
434
446
|
}),
|
|
435
447
|
/**
|
|
436
448
|
* Provides a list of Trusted Lists
|
|
449
|
+
* @param {string} [search]
|
|
437
450
|
* @param {*} [options] Override http request option.
|
|
438
451
|
* @throws {RequiredError}
|
|
439
452
|
*/
|
|
440
|
-
tlList: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
453
|
+
tlList: (search_1, ...args_1) => __awaiter(this, [search_1, ...args_1], void 0, function* (search, options = {}) {
|
|
441
454
|
const localVarPath = `/tl`;
|
|
442
455
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
443
456
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -451,6 +464,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
451
464
|
// authentication accessToken required
|
|
452
465
|
// http bearer authentication required
|
|
453
466
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
467
|
+
if (search !== undefined) {
|
|
468
|
+
localVarQueryParameter['search'] = search;
|
|
469
|
+
}
|
|
470
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
454
471
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
455
472
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
456
473
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -478,6 +495,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
478
495
|
// authentication accessToken required
|
|
479
496
|
// http bearer authentication required
|
|
480
497
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
498
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
481
499
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
482
500
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
483
501
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -511,6 +529,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
511
529
|
// http bearer authentication required
|
|
512
530
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
513
531
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
532
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
514
533
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
515
534
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
516
535
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -547,6 +566,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
547
566
|
// authentication accessToken required
|
|
548
567
|
// http bearer authentication required
|
|
549
568
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
569
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
550
570
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
551
571
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
552
572
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -579,6 +599,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
579
599
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
580
600
|
const localVarHeaderParameter = {};
|
|
581
601
|
const localVarQueryParameter = {};
|
|
602
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
582
603
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
583
604
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
584
605
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -607,6 +628,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
607
628
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
608
629
|
const localVarHeaderParameter = {};
|
|
609
630
|
const localVarQueryParameter = {};
|
|
631
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
610
632
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
611
633
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
612
634
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -639,6 +661,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
639
661
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
640
662
|
const localVarHeaderParameter = {};
|
|
641
663
|
const localVarQueryParameter = {};
|
|
664
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
642
665
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
643
666
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
644
667
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -670,6 +693,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
670
693
|
// authentication accessToken required
|
|
671
694
|
// http bearer authentication required
|
|
672
695
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
696
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
673
697
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
674
698
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
675
699
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -709,6 +733,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
709
733
|
// authentication accessToken required
|
|
710
734
|
// http bearer authentication required
|
|
711
735
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
736
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
712
737
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
713
738
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
714
739
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -914,13 +939,14 @@ const DefaultApiFp = function (configuration) {
|
|
|
914
939
|
},
|
|
915
940
|
/**
|
|
916
941
|
* Provides a list of Trusted Lists
|
|
942
|
+
* @param {string} [search]
|
|
917
943
|
* @param {*} [options] Override http request option.
|
|
918
944
|
* @throws {RequiredError}
|
|
919
945
|
*/
|
|
920
|
-
tlList(options) {
|
|
946
|
+
tlList(search, options) {
|
|
921
947
|
return __awaiter(this, void 0, void 0, function* () {
|
|
922
948
|
var _a, _b, _c;
|
|
923
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.tlList(options);
|
|
949
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.tlList(search, options);
|
|
924
950
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
925
951
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DefaultApi.tlList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
926
952
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1176,11 +1202,12 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1176
1202
|
},
|
|
1177
1203
|
/**
|
|
1178
1204
|
* Provides a list of Trusted Lists
|
|
1205
|
+
* @param {string} [search]
|
|
1179
1206
|
* @param {*} [options] Override http request option.
|
|
1180
1207
|
* @throws {RequiredError}
|
|
1181
1208
|
*/
|
|
1182
|
-
tlList(options) {
|
|
1183
|
-
return localVarFp.tlList(options).then((request) => request(axios, basePath));
|
|
1209
|
+
tlList(search, options) {
|
|
1210
|
+
return localVarFp.tlList(search, options).then((request) => request(axios, basePath));
|
|
1184
1211
|
},
|
|
1185
1212
|
/**
|
|
1186
1213
|
* Provides a list of Trusted Lists for an authenticated owner
|
|
@@ -1382,11 +1409,12 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1382
1409
|
}
|
|
1383
1410
|
/**
|
|
1384
1411
|
* Provides a list of Trusted Lists
|
|
1412
|
+
* @param {string} [search]
|
|
1385
1413
|
* @param {*} [options] Override http request option.
|
|
1386
1414
|
* @throws {RequiredError}
|
|
1387
1415
|
*/
|
|
1388
|
-
tlList(options) {
|
|
1389
|
-
return (0, exports.DefaultApiFp)(this.configuration).tlList(options).then((request) => request(this.axios, this.basePath));
|
|
1416
|
+
tlList(search, options) {
|
|
1417
|
+
return (0, exports.DefaultApiFp)(this.configuration).tlList(search, options).then((request) => request(this.axios, this.basePath));
|
|
1390
1418
|
}
|
|
1391
1419
|
/**
|
|
1392
1420
|
* Provides a list of Trusted Lists for an authenticated owner
|