@idunion/tl-sdk 0.0.63 → 0.0.65

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.
Files changed (3) hide show
  1. package/api.d.ts +16 -44
  2. package/api.js +22 -87
  3. package/package.json +1 -1
package/api.d.ts CHANGED
@@ -406,19 +406,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
406
406
  */
407
407
  didVerificationMethodPatch: (tlId: string, tlrId: string, verificationMethodPatchPayload?: VerificationMethodPatchPayload, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
408
408
  /**
409
- * Returns the Trust List in ETSI TS 119-602 XML format, which defines the standard for trust frameworks of identity wallet ecosystems (e.g. EUDI Wallet). The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
409
+ * Returns the Trust List in either ETSI TS 119-612 or ETSI TS 119-602 XML format, Depending on the trust list type. The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
410
410
  * @param {string} tlId
411
411
  * @param {*} [options] Override http request option.
412
412
  * @throws {RequiredError}
413
413
  */
414
- etsiTl602Get: (tlId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
415
- /**
416
- * Returns the Trust List in ETSI TS 119-612 XML format, which defines the standard for Trusted Lists of Trust Service Providers (TSPs) in the context of electronic signatures and qualified trust services. The XML document includes all active, onboarded, and revoked Trust List Records with their x509 certificates and service status information, suitable for consumption by conformant trust service validators.
417
- * @param {string} tlId
418
- * @param {*} [options] Override http request option.
419
- * @throws {RequiredError}
420
- */
421
- etsiTl612Get: (tlId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
414
+ etsiTlGet: (tlId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
422
415
  /**
423
416
  * Returns the operational health status of the Trust List API service. Useful for monitoring, load balancer checks, and readiness probes.
424
417
  * @param {*} [options] Override http request option.
@@ -515,11 +508,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
515
508
  tlrGet: (tlId: string, tlrId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
516
509
  /**
517
510
  * Searches for Trust List Records across all Trust Lists by organization name. No authentication is required. Used by public-facing directory or search features to find entities registered under a given organization name.
518
- * @param {string} orgName
511
+ * @param {string} [orgName]
519
512
  * @param {*} [options] Override http request option.
520
513
  * @throws {RequiredError}
521
514
  */
522
- tlrSearch: (orgName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
515
+ tlrSearch: (orgName?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
523
516
  /**
524
517
  * Returns the full chain of Trust List Records from the root trust anchor down to the specified record. Each element in the array represents one step in the chain of trust, showing which entities issued or accredited the next. Used to visualize and verify the complete trust path for a given organization.
525
518
  * @param {string} tlId Trust List Identifier
@@ -583,19 +576,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
583
576
  */
584
577
  didVerificationMethodPatch(tlId: string, tlrId: string, verificationMethodPatchPayload?: VerificationMethodPatchPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
585
578
  /**
586
- * Returns the Trust List in ETSI TS 119-602 XML format, which defines the standard for trust frameworks of identity wallet ecosystems (e.g. EUDI Wallet). The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
587
- * @param {string} tlId
588
- * @param {*} [options] Override http request option.
589
- * @throws {RequiredError}
590
- */
591
- etsiTl602Get(tlId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
592
- /**
593
- * Returns the Trust List in ETSI TS 119-612 XML format, which defines the standard for Trusted Lists of Trust Service Providers (TSPs) in the context of electronic signatures and qualified trust services. The XML document includes all active, onboarded, and revoked Trust List Records with their x509 certificates and service status information, suitable for consumption by conformant trust service validators.
579
+ * Returns the Trust List in either ETSI TS 119-612 or ETSI TS 119-602 XML format, Depending on the trust list type. The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
594
580
  * @param {string} tlId
595
581
  * @param {*} [options] Override http request option.
596
582
  * @throws {RequiredError}
597
583
  */
598
- etsiTl612Get(tlId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
584
+ etsiTlGet(tlId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
599
585
  /**
600
586
  * Returns the operational health status of the Trust List API service. Useful for monitoring, load balancer checks, and readiness probes.
601
587
  * @param {*} [options] Override http request option.
@@ -692,11 +678,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
692
678
  tlrGet(tlId: string, tlrId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Tlr>>;
693
679
  /**
694
680
  * Searches for Trust List Records across all Trust Lists by organization name. No authentication is required. Used by public-facing directory or search features to find entities registered under a given organization name.
695
- * @param {string} orgName
681
+ * @param {string} [orgName]
696
682
  * @param {*} [options] Override http request option.
697
683
  * @throws {RequiredError}
698
684
  */
699
- tlrSearch(orgName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TlrList>>;
685
+ tlrSearch(orgName?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TlrList>>;
700
686
  /**
701
687
  * Returns the full chain of Trust List Records from the root trust anchor down to the specified record. Each element in the array represents one step in the chain of trust, showing which entities issued or accredited the next. Used to visualize and verify the complete trust path for a given organization.
702
688
  * @param {string} tlId Trust List Identifier
@@ -760,19 +746,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
760
746
  */
761
747
  didVerificationMethodPatch(tlId: string, tlrId: string, verificationMethodPatchPayload?: VerificationMethodPatchPayload, options?: RawAxiosRequestConfig): AxiosPromise<void>;
762
748
  /**
763
- * Returns the Trust List in ETSI TS 119-602 XML format, which defines the standard for trust frameworks of identity wallet ecosystems (e.g. EUDI Wallet). The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
749
+ * Returns the Trust List in either ETSI TS 119-612 or ETSI TS 119-602 XML format, Depending on the trust list type. The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
764
750
  * @param {string} tlId
765
751
  * @param {*} [options] Override http request option.
766
752
  * @throws {RequiredError}
767
753
  */
768
- etsiTl602Get(tlId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
769
- /**
770
- * Returns the Trust List in ETSI TS 119-612 XML format, which defines the standard for Trusted Lists of Trust Service Providers (TSPs) in the context of electronic signatures and qualified trust services. The XML document includes all active, onboarded, and revoked Trust List Records with their x509 certificates and service status information, suitable for consumption by conformant trust service validators.
771
- * @param {string} tlId
772
- * @param {*} [options] Override http request option.
773
- * @throws {RequiredError}
774
- */
775
- etsiTl612Get(tlId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
754
+ etsiTlGet(tlId: string, options?: RawAxiosRequestConfig): AxiosPromise<object>;
776
755
  /**
777
756
  * Returns the operational health status of the Trust List API service. Useful for monitoring, load balancer checks, and readiness probes.
778
757
  * @param {*} [options] Override http request option.
@@ -869,11 +848,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
869
848
  tlrGet(tlId: string, tlrId: string, options?: RawAxiosRequestConfig): AxiosPromise<Tlr>;
870
849
  /**
871
850
  * Searches for Trust List Records across all Trust Lists by organization name. No authentication is required. Used by public-facing directory or search features to find entities registered under a given organization name.
872
- * @param {string} orgName
851
+ * @param {string} [orgName]
873
852
  * @param {*} [options] Override http request option.
874
853
  * @throws {RequiredError}
875
854
  */
876
- tlrSearch(orgName: string, options?: RawAxiosRequestConfig): AxiosPromise<TlrList>;
855
+ tlrSearch(orgName?: string, options?: RawAxiosRequestConfig): AxiosPromise<TlrList>;
877
856
  /**
878
857
  * Returns the full chain of Trust List Records from the root trust anchor down to the specified record. Each element in the array represents one step in the chain of trust, showing which entities issued or accredited the next. Used to visualize and verify the complete trust path for a given organization.
879
858
  * @param {string} tlId Trust List Identifier
@@ -937,19 +916,12 @@ export declare class DefaultApi extends BaseAPI {
937
916
  */
938
917
  didVerificationMethodPatch(tlId: string, tlrId: string, verificationMethodPatchPayload?: VerificationMethodPatchPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
939
918
  /**
940
- * Returns the Trust List in ETSI TS 119-602 XML format, which defines the standard for trust frameworks of identity wallet ecosystems (e.g. EUDI Wallet). The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
941
- * @param {string} tlId
942
- * @param {*} [options] Override http request option.
943
- * @throws {RequiredError}
944
- */
945
- etsiTl602Get(tlId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
946
- /**
947
- * Returns the Trust List in ETSI TS 119-612 XML format, which defines the standard for Trusted Lists of Trust Service Providers (TSPs) in the context of electronic signatures and qualified trust services. The XML document includes all active, onboarded, and revoked Trust List Records with their x509 certificates and service status information, suitable for consumption by conformant trust service validators.
919
+ * Returns the Trust List in either ETSI TS 119-612 or ETSI TS 119-602 XML format, Depending on the trust list type. The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
948
920
  * @param {string} tlId
949
921
  * @param {*} [options] Override http request option.
950
922
  * @throws {RequiredError}
951
923
  */
952
- etsiTl612Get(tlId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
924
+ etsiTlGet(tlId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
953
925
  /**
954
926
  * Returns the operational health status of the Trust List API service. Useful for monitoring, load balancer checks, and readiness probes.
955
927
  * @param {*} [options] Override http request option.
@@ -1046,11 +1018,11 @@ export declare class DefaultApi extends BaseAPI {
1046
1018
  tlrGet(tlId: string, tlrId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Tlr, any>>;
1047
1019
  /**
1048
1020
  * Searches for Trust List Records across all Trust Lists by organization name. No authentication is required. Used by public-facing directory or search features to find entities registered under a given organization name.
1049
- * @param {string} orgName
1021
+ * @param {string} [orgName]
1050
1022
  * @param {*} [options] Override http request option.
1051
1023
  * @throws {RequiredError}
1052
1024
  */
1053
- tlrSearch(orgName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TlrList, any>>;
1025
+ tlrSearch(orgName?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TlrList, any>>;
1054
1026
  /**
1055
1027
  * Returns the full chain of Trust List Records from the root trust anchor down to the specified record. Each element in the array represents one step in the chain of trust, showing which entities issued or accredited the next. Used to visualize and verify the complete trust path for a given organization.
1056
1028
  * @param {string} tlId Trust List Identifier
package/api.js CHANGED
@@ -209,47 +209,15 @@ const DefaultApiAxiosParamCreator = function (configuration) {
209
209
  };
210
210
  }),
211
211
  /**
212
- * Returns the Trust List in ETSI TS 119-602 XML format, which defines the standard for trust frameworks of identity wallet ecosystems (e.g. EUDI Wallet). The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
212
+ * Returns the Trust List in either ETSI TS 119-612 or ETSI TS 119-602 XML format, Depending on the trust list type. The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
213
213
  * @param {string} tlId
214
214
  * @param {*} [options] Override http request option.
215
215
  * @throws {RequiredError}
216
216
  */
217
- etsiTl602Get: (tlId_1, ...args_1) => __awaiter(this, [tlId_1, ...args_1], void 0, function* (tlId, options = {}) {
217
+ etsiTlGet: (tlId_1, ...args_1) => __awaiter(this, [tlId_1, ...args_1], void 0, function* (tlId, options = {}) {
218
218
  // verify required parameter 'tlId' is not null or undefined
219
- (0, common_1.assertParamExists)('etsiTl602Get', 'tlId', tlId);
220
- const localVarPath = `/{tl_id}/etsi/119_602_tl.xml`
221
- .replace(`{${"tl_id"}}`, encodeURIComponent(String(tlId)));
222
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
223
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
224
- let baseOptions;
225
- if (configuration) {
226
- baseOptions = configuration.baseOptions;
227
- }
228
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
229
- const localVarHeaderParameter = {};
230
- const localVarQueryParameter = {};
231
- // authentication accessToken required
232
- // http bearer authentication required
233
- yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
234
- localVarHeaderParameter['Accept'] = 'application/xml,application/json';
235
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
236
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
237
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
238
- return {
239
- url: (0, common_1.toPathString)(localVarUrlObj),
240
- options: localVarRequestOptions,
241
- };
242
- }),
243
- /**
244
- * Returns the Trust List in ETSI TS 119-612 XML format, which defines the standard for Trusted Lists of Trust Service Providers (TSPs) in the context of electronic signatures and qualified trust services. The XML document includes all active, onboarded, and revoked Trust List Records with their x509 certificates and service status information, suitable for consumption by conformant trust service validators.
245
- * @param {string} tlId
246
- * @param {*} [options] Override http request option.
247
- * @throws {RequiredError}
248
- */
249
- etsiTl612Get: (tlId_1, ...args_1) => __awaiter(this, [tlId_1, ...args_1], void 0, function* (tlId, options = {}) {
250
- // verify required parameter 'tlId' is not null or undefined
251
- (0, common_1.assertParamExists)('etsiTl612Get', 'tlId', tlId);
252
- const localVarPath = `/{tl_id}/etsi/119_612_tl.xml`
219
+ (0, common_1.assertParamExists)('etsiTlGet', 'tlId', tlId);
220
+ const localVarPath = `/{tl_id}/etsi/tl.xml`
253
221
  .replace(`{${"tl_id"}}`, encodeURIComponent(String(tlId)));
254
222
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
255
223
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -680,15 +648,12 @@ const DefaultApiAxiosParamCreator = function (configuration) {
680
648
  }),
681
649
  /**
682
650
  * Searches for Trust List Records across all Trust Lists by organization name. No authentication is required. Used by public-facing directory or search features to find entities registered under a given organization name.
683
- * @param {string} orgName
651
+ * @param {string} [orgName]
684
652
  * @param {*} [options] Override http request option.
685
653
  * @throws {RequiredError}
686
654
  */
687
655
  tlrSearch: (orgName_1, ...args_1) => __awaiter(this, [orgName_1, ...args_1], void 0, function* (orgName, options = {}) {
688
- // verify required parameter 'orgName' is not null or undefined
689
- (0, common_1.assertParamExists)('tlrSearch', 'orgName', orgName);
690
- const localVarPath = `/tlrs/{org_name}`
691
- .replace(`{${"org_name"}}`, encodeURIComponent(String(orgName)));
656
+ const localVarPath = `/tlrs`;
692
657
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
693
658
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
694
659
  let baseOptions;
@@ -698,6 +663,9 @@ const DefaultApiAxiosParamCreator = function (configuration) {
698
663
  const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
699
664
  const localVarHeaderParameter = {};
700
665
  const localVarQueryParameter = {};
666
+ if (orgName !== undefined) {
667
+ localVarQueryParameter['org_name'] = orgName;
668
+ }
701
669
  localVarHeaderParameter['Accept'] = 'application/json';
702
670
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
703
671
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -887,32 +855,17 @@ const DefaultApiFp = function (configuration) {
887
855
  });
888
856
  },
889
857
  /**
890
- * Returns the Trust List in ETSI TS 119-602 XML format, which defines the standard for trust frameworks of identity wallet ecosystems (e.g. EUDI Wallet). The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
891
- * @param {string} tlId
892
- * @param {*} [options] Override http request option.
893
- * @throws {RequiredError}
894
- */
895
- etsiTl602Get(tlId, options) {
896
- return __awaiter(this, void 0, void 0, function* () {
897
- var _a, _b, _c;
898
- const localVarAxiosArgs = yield localVarAxiosParamCreator.etsiTl602Get(tlId, options);
899
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
900
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DefaultApi.etsiTl602Get']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
901
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
902
- });
903
- },
904
- /**
905
- * Returns the Trust List in ETSI TS 119-612 XML format, which defines the standard for Trusted Lists of Trust Service Providers (TSPs) in the context of electronic signatures and qualified trust services. The XML document includes all active, onboarded, and revoked Trust List Records with their x509 certificates and service status information, suitable for consumption by conformant trust service validators.
858
+ * Returns the Trust List in either ETSI TS 119-612 or ETSI TS 119-602 XML format, Depending on the trust list type. The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
906
859
  * @param {string} tlId
907
860
  * @param {*} [options] Override http request option.
908
861
  * @throws {RequiredError}
909
862
  */
910
- etsiTl612Get(tlId, options) {
863
+ etsiTlGet(tlId, options) {
911
864
  return __awaiter(this, void 0, void 0, function* () {
912
865
  var _a, _b, _c;
913
- const localVarAxiosArgs = yield localVarAxiosParamCreator.etsiTl612Get(tlId, options);
866
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.etsiTlGet(tlId, options);
914
867
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
915
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DefaultApi.etsiTl612Get']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
868
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DefaultApi.etsiTlGet']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
916
869
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
917
870
  });
918
871
  },
@@ -1116,7 +1069,7 @@ const DefaultApiFp = function (configuration) {
1116
1069
  },
1117
1070
  /**
1118
1071
  * Searches for Trust List Records across all Trust Lists by organization name. No authentication is required. Used by public-facing directory or search features to find entities registered under a given organization name.
1119
- * @param {string} orgName
1072
+ * @param {string} [orgName]
1120
1073
  * @param {*} [options] Override http request option.
1121
1074
  * @throws {RequiredError}
1122
1075
  */
@@ -1228,22 +1181,13 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1228
1181
  return localVarFp.didVerificationMethodPatch(tlId, tlrId, verificationMethodPatchPayload, options).then((request) => request(axios, basePath));
1229
1182
  },
1230
1183
  /**
1231
- * Returns the Trust List in ETSI TS 119-602 XML format, which defines the standard for trust frameworks of identity wallet ecosystems (e.g. EUDI Wallet). The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
1232
- * @param {string} tlId
1233
- * @param {*} [options] Override http request option.
1234
- * @throws {RequiredError}
1235
- */
1236
- etsiTl602Get(tlId, options) {
1237
- return localVarFp.etsiTl602Get(tlId, options).then((request) => request(axios, basePath));
1238
- },
1239
- /**
1240
- * Returns the Trust List in ETSI TS 119-612 XML format, which defines the standard for Trusted Lists of Trust Service Providers (TSPs) in the context of electronic signatures and qualified trust services. The XML document includes all active, onboarded, and revoked Trust List Records with their x509 certificates and service status information, suitable for consumption by conformant trust service validators.
1184
+ * Returns the Trust List in either ETSI TS 119-612 or ETSI TS 119-602 XML format, Depending on the trust list type. The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
1241
1185
  * @param {string} tlId
1242
1186
  * @param {*} [options] Override http request option.
1243
1187
  * @throws {RequiredError}
1244
1188
  */
1245
- etsiTl612Get(tlId, options) {
1246
- return localVarFp.etsiTl612Get(tlId, options).then((request) => request(axios, basePath));
1189
+ etsiTlGet(tlId, options) {
1190
+ return localVarFp.etsiTlGet(tlId, options).then((request) => request(axios, basePath));
1247
1191
  },
1248
1192
  /**
1249
1193
  * Returns the operational health status of the Trust List API service. Useful for monitoring, load balancer checks, and readiness probes.
@@ -1367,7 +1311,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1367
1311
  },
1368
1312
  /**
1369
1313
  * Searches for Trust List Records across all Trust Lists by organization name. No authentication is required. Used by public-facing directory or search features to find entities registered under a given organization name.
1370
- * @param {string} orgName
1314
+ * @param {string} [orgName]
1371
1315
  * @param {*} [options] Override http request option.
1372
1316
  * @throws {RequiredError}
1373
1317
  */
@@ -1453,22 +1397,13 @@ class DefaultApi extends base_1.BaseAPI {
1453
1397
  return (0, exports.DefaultApiFp)(this.configuration).didVerificationMethodPatch(tlId, tlrId, verificationMethodPatchPayload, options).then((request) => request(this.axios, this.basePath));
1454
1398
  }
1455
1399
  /**
1456
- * Returns the Trust List in ETSI TS 119-602 XML format, which defines the standard for trust frameworks of identity wallet ecosystems (e.g. EUDI Wallet). The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
1457
- * @param {string} tlId
1458
- * @param {*} [options] Override http request option.
1459
- * @throws {RequiredError}
1460
- */
1461
- etsiTl602Get(tlId, options) {
1462
- return (0, exports.DefaultApiFp)(this.configuration).etsiTl602Get(tlId, options).then((request) => request(this.axios, this.basePath));
1463
- }
1464
- /**
1465
- * Returns the Trust List in ETSI TS 119-612 XML format, which defines the standard for Trusted Lists of Trust Service Providers (TSPs) in the context of electronic signatures and qualified trust services. The XML document includes all active, onboarded, and revoked Trust List Records with their x509 certificates and service status information, suitable for consumption by conformant trust service validators.
1400
+ * Returns the Trust List in either ETSI TS 119-612 or ETSI TS 119-602 XML format, Depending on the trust list type. The XML document includes Trust List Records with their DID-based cryptographic material and accreditation information, suitable for consumption by wallet verifiers and trust framework participants.
1466
1401
  * @param {string} tlId
1467
1402
  * @param {*} [options] Override http request option.
1468
1403
  * @throws {RequiredError}
1469
1404
  */
1470
- etsiTl612Get(tlId, options) {
1471
- return (0, exports.DefaultApiFp)(this.configuration).etsiTl612Get(tlId, options).then((request) => request(this.axios, this.basePath));
1405
+ etsiTlGet(tlId, options) {
1406
+ return (0, exports.DefaultApiFp)(this.configuration).etsiTlGet(tlId, options).then((request) => request(this.axios, this.basePath));
1472
1407
  }
1473
1408
  /**
1474
1409
  * Returns the operational health status of the Trust List API service. Useful for monitoring, load balancer checks, and readiness probes.
@@ -1592,7 +1527,7 @@ class DefaultApi extends base_1.BaseAPI {
1592
1527
  }
1593
1528
  /**
1594
1529
  * Searches for Trust List Records across all Trust Lists by organization name. No authentication is required. Used by public-facing directory or search features to find entities registered under a given organization name.
1595
- * @param {string} orgName
1530
+ * @param {string} [orgName]
1596
1531
  * @param {*} [options] Override http request option.
1597
1532
  * @throws {RequiredError}
1598
1533
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@idunion/tl-sdk",
3
3
  "private": false,
4
- "version": "0.0.63",
4
+ "version": "0.0.65",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {