@idunion/tl-sdk 0.0.47 → 0.0.49
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 +12 -8
- package/api.js +40 -15
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -380,11 +380,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
380
380
|
*/
|
|
381
381
|
tlGet: (tlId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
382
382
|
/**
|
|
383
|
-
* Provides a list of Trusted Lists
|
|
383
|
+
* Provides a list of public 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.
|
|
@@ -542,11 +543,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
542
543
|
*/
|
|
543
544
|
tlGet(tlId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tl>>;
|
|
544
545
|
/**
|
|
545
|
-
* Provides a list of Trusted Lists
|
|
546
|
+
* Provides a list of public 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.
|
|
@@ -704,11 +706,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
704
706
|
*/
|
|
705
707
|
tlGet(tlId: string, options?: RawAxiosRequestConfig): AxiosPromise<Tl>;
|
|
706
708
|
/**
|
|
707
|
-
* Provides a list of Trusted Lists
|
|
709
|
+
* Provides a list of public 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.
|
|
@@ -866,11 +869,12 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
866
869
|
*/
|
|
867
870
|
tlGet(tlId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tl, any>>;
|
|
868
871
|
/**
|
|
869
|
-
* Provides a list of Trusted Lists
|
|
872
|
+
* Provides a list of public 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);
|
|
@@ -433,12 +445,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
433
445
|
};
|
|
434
446
|
}),
|
|
435
447
|
/**
|
|
436
|
-
* Provides a list of Trusted Lists
|
|
448
|
+
* Provides a list of public 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 = {}) {
|
|
441
|
-
const localVarPath = `/tl`;
|
|
453
|
+
tlList: (search_1, ...args_1) => __awaiter(this, [search_1, ...args_1], void 0, function* (search, options = {}) {
|
|
454
|
+
const localVarPath = `/tl/directory`;
|
|
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);
|
|
444
457
|
let baseOptions;
|
|
@@ -448,9 +461,10 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
448
461
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
449
462
|
const localVarHeaderParameter = {};
|
|
450
463
|
const localVarQueryParameter = {};
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
464
|
+
if (search !== undefined) {
|
|
465
|
+
localVarQueryParameter['search'] = search;
|
|
466
|
+
}
|
|
467
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
454
468
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
455
469
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
456
470
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -478,6 +492,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
478
492
|
// authentication accessToken required
|
|
479
493
|
// http bearer authentication required
|
|
480
494
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
495
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
481
496
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
482
497
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
483
498
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -511,6 +526,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
511
526
|
// http bearer authentication required
|
|
512
527
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
513
528
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
529
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
514
530
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
515
531
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
516
532
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -547,6 +563,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
547
563
|
// authentication accessToken required
|
|
548
564
|
// http bearer authentication required
|
|
549
565
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
566
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
550
567
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
551
568
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
552
569
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -579,6 +596,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
579
596
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
580
597
|
const localVarHeaderParameter = {};
|
|
581
598
|
const localVarQueryParameter = {};
|
|
599
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
582
600
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
583
601
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
584
602
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -607,6 +625,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
607
625
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
608
626
|
const localVarHeaderParameter = {};
|
|
609
627
|
const localVarQueryParameter = {};
|
|
628
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
610
629
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
611
630
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
612
631
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -639,6 +658,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
639
658
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
640
659
|
const localVarHeaderParameter = {};
|
|
641
660
|
const localVarQueryParameter = {};
|
|
661
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
642
662
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
643
663
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
644
664
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -670,6 +690,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
670
690
|
// authentication accessToken required
|
|
671
691
|
// http bearer authentication required
|
|
672
692
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
693
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
673
694
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
674
695
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
675
696
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -709,6 +730,7 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
709
730
|
// authentication accessToken required
|
|
710
731
|
// http bearer authentication required
|
|
711
732
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
733
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
712
734
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
713
735
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
714
736
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -913,14 +935,15 @@ const DefaultApiFp = function (configuration) {
|
|
|
913
935
|
});
|
|
914
936
|
},
|
|
915
937
|
/**
|
|
916
|
-
* Provides a list of Trusted Lists
|
|
938
|
+
* Provides a list of public Trusted Lists
|
|
939
|
+
* @param {string} [search]
|
|
917
940
|
* @param {*} [options] Override http request option.
|
|
918
941
|
* @throws {RequiredError}
|
|
919
942
|
*/
|
|
920
|
-
tlList(options) {
|
|
943
|
+
tlList(search, options) {
|
|
921
944
|
return __awaiter(this, void 0, void 0, function* () {
|
|
922
945
|
var _a, _b, _c;
|
|
923
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.tlList(options);
|
|
946
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.tlList(search, options);
|
|
924
947
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
925
948
|
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
949
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1175,12 +1198,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
1175
1198
|
return localVarFp.tlGet(tlId, options).then((request) => request(axios, basePath));
|
|
1176
1199
|
},
|
|
1177
1200
|
/**
|
|
1178
|
-
* Provides a list of Trusted Lists
|
|
1201
|
+
* Provides a list of public Trusted Lists
|
|
1202
|
+
* @param {string} [search]
|
|
1179
1203
|
* @param {*} [options] Override http request option.
|
|
1180
1204
|
* @throws {RequiredError}
|
|
1181
1205
|
*/
|
|
1182
|
-
tlList(options) {
|
|
1183
|
-
return localVarFp.tlList(options).then((request) => request(axios, basePath));
|
|
1206
|
+
tlList(search, options) {
|
|
1207
|
+
return localVarFp.tlList(search, options).then((request) => request(axios, basePath));
|
|
1184
1208
|
},
|
|
1185
1209
|
/**
|
|
1186
1210
|
* Provides a list of Trusted Lists for an authenticated owner
|
|
@@ -1381,12 +1405,13 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
1381
1405
|
return (0, exports.DefaultApiFp)(this.configuration).tlGet(tlId, options).then((request) => request(this.axios, this.basePath));
|
|
1382
1406
|
}
|
|
1383
1407
|
/**
|
|
1384
|
-
* Provides a list of Trusted Lists
|
|
1408
|
+
* Provides a list of public Trusted Lists
|
|
1409
|
+
* @param {string} [search]
|
|
1385
1410
|
* @param {*} [options] Override http request option.
|
|
1386
1411
|
* @throws {RequiredError}
|
|
1387
1412
|
*/
|
|
1388
|
-
tlList(options) {
|
|
1389
|
-
return (0, exports.DefaultApiFp)(this.configuration).tlList(options).then((request) => request(this.axios, this.basePath));
|
|
1413
|
+
tlList(search, options) {
|
|
1414
|
+
return (0, exports.DefaultApiFp)(this.configuration).tlList(search, options).then((request) => request(this.axios, this.basePath));
|
|
1390
1415
|
}
|
|
1391
1416
|
/**
|
|
1392
1417
|
* Provides a list of Trusted Lists for an authenticated owner
|