@idunion/tl-sdk 0.0.61 → 0.0.63
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 +16 -0
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -200,6 +200,10 @@ export interface Tl {
|
|
|
200
200
|
* Contact email address for the Trust List owner. Only returned by the authenticated owner-facing TlGet endpoint, not exposed in public directory responses.
|
|
201
201
|
*/
|
|
202
202
|
'email'?: string;
|
|
203
|
+
/**
|
|
204
|
+
* Name of the organization operating the Trust List.
|
|
205
|
+
*/
|
|
206
|
+
'organization'?: string;
|
|
203
207
|
}
|
|
204
208
|
export interface TlList {
|
|
205
209
|
'items'?: Array<Tl>;
|
|
@@ -230,6 +234,10 @@ export interface TlPayload {
|
|
|
230
234
|
* Contact email address for the Trust List owner.
|
|
231
235
|
*/
|
|
232
236
|
'email'?: string;
|
|
237
|
+
/**
|
|
238
|
+
* Name of the organization operating the Trust List.
|
|
239
|
+
*/
|
|
240
|
+
'organization'?: string;
|
|
233
241
|
}
|
|
234
242
|
/**
|
|
235
243
|
* Trust List meta info
|
|
@@ -247,6 +255,14 @@ export interface TlPublicInfo {
|
|
|
247
255
|
'description': string;
|
|
248
256
|
'didBase': string;
|
|
249
257
|
'governanceWalletId': string;
|
|
258
|
+
/**
|
|
259
|
+
* Contact email address for the Trust List owner.
|
|
260
|
+
*/
|
|
261
|
+
'email'?: string;
|
|
262
|
+
/**
|
|
263
|
+
* Name of the organization operating the Trust List.
|
|
264
|
+
*/
|
|
265
|
+
'organization'?: string;
|
|
250
266
|
}
|
|
251
267
|
export interface TlPublicInfoList {
|
|
252
268
|
'items'?: Array<TlPublicInfo>;
|