@idunion/tl-sdk 0.0.50 → 0.0.52
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/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -158,7 +158,7 @@ export interface OnboardingVcSubject {
|
|
|
158
158
|
/**
|
|
159
159
|
* If not provided, one will be automatically generated.
|
|
160
160
|
*/
|
|
161
|
-
'
|
|
161
|
+
'onboardingDid'?: string;
|
|
162
162
|
'accreditedFor': string;
|
|
163
163
|
'orgAddress': OrgAddress;
|
|
164
164
|
'orgWebsite': string;
|
|
@@ -239,6 +239,10 @@ export interface TlPublicInfo {
|
|
|
239
239
|
*/
|
|
240
240
|
'description': string;
|
|
241
241
|
'didBase': string;
|
|
242
|
+
'governanceWalletId': string;
|
|
243
|
+
}
|
|
244
|
+
export interface TlPublicInfoList {
|
|
245
|
+
'items'?: Array<TlPublicInfo>;
|
|
242
246
|
}
|
|
243
247
|
export interface Tlr {
|
|
244
248
|
'orgName': string;
|
|
@@ -577,7 +581,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
577
581
|
* @param {*} [options] Override http request option.
|
|
578
582
|
* @throws {RequiredError}
|
|
579
583
|
*/
|
|
580
|
-
tlList(search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
584
|
+
tlList(search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TlPublicInfoList>>;
|
|
581
585
|
/**
|
|
582
586
|
* Provides a list of Trusted Lists for an authenticated owner
|
|
583
587
|
* @param {*} [options] Override http request option.
|
|
@@ -747,7 +751,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
747
751
|
* @param {*} [options] Override http request option.
|
|
748
752
|
* @throws {RequiredError}
|
|
749
753
|
*/
|
|
750
|
-
tlList(search?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
754
|
+
tlList(search?: string, options?: RawAxiosRequestConfig): AxiosPromise<TlPublicInfoList>;
|
|
751
755
|
/**
|
|
752
756
|
* Provides a list of Trusted Lists for an authenticated owner
|
|
753
757
|
* @param {*} [options] Override http request option.
|
|
@@ -917,7 +921,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
917
921
|
* @param {*} [options] Override http request option.
|
|
918
922
|
* @throws {RequiredError}
|
|
919
923
|
*/
|
|
920
|
-
tlList(search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
924
|
+
tlList(search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TlPublicInfoList, any>>;
|
|
921
925
|
/**
|
|
922
926
|
* Provides a list of Trusted Lists for an authenticated owner
|
|
923
927
|
* @param {*} [options] Override http request option.
|