@idunion/tl-sdk 0.0.62 → 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 +12 -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
|
|
@@ -251,6 +259,10 @@ export interface TlPublicInfo {
|
|
|
251
259
|
* Contact email address for the Trust List owner.
|
|
252
260
|
*/
|
|
253
261
|
'email'?: string;
|
|
262
|
+
/**
|
|
263
|
+
* Name of the organization operating the Trust List.
|
|
264
|
+
*/
|
|
265
|
+
'organization'?: string;
|
|
254
266
|
}
|
|
255
267
|
export interface TlPublicInfoList {
|
|
256
268
|
'items'?: Array<TlPublicInfo>;
|