@idunion/tl-sdk 0.0.66 → 0.0.68
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 +20 -0
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -204,6 +204,18 @@ export interface Tl {
|
|
|
204
204
|
* Name of the organization operating the Trust List.
|
|
205
205
|
*/
|
|
206
206
|
'organization'?: string;
|
|
207
|
+
/**
|
|
208
|
+
* Unix timestamp in microseconds when the record was first created.
|
|
209
|
+
*/
|
|
210
|
+
'createdTs': number;
|
|
211
|
+
/**
|
|
212
|
+
* Unix timestamp in microseconds when the record was last updated.
|
|
213
|
+
*/
|
|
214
|
+
'updatedTs': number;
|
|
215
|
+
/**
|
|
216
|
+
* Unix timestamp in microseconds of the last onboarding to the trust list.
|
|
217
|
+
*/
|
|
218
|
+
'lastOnboardedTs'?: number;
|
|
207
219
|
}
|
|
208
220
|
export interface TlList {
|
|
209
221
|
'items'?: Array<Tl>;
|
|
@@ -293,6 +305,14 @@ export interface Tlr {
|
|
|
293
305
|
'accreditedFor'?: Array<AccreditedFor>;
|
|
294
306
|
'onboardingCredentials': Array<OnboardingCredential>;
|
|
295
307
|
'isRoot': boolean;
|
|
308
|
+
/**
|
|
309
|
+
* Unix timestamp in microseconds when the record was first created.
|
|
310
|
+
*/
|
|
311
|
+
'createdTs': number;
|
|
312
|
+
/**
|
|
313
|
+
* Unix timestamp in microseconds when the record was last updated.
|
|
314
|
+
*/
|
|
315
|
+
'updatedTs': number;
|
|
296
316
|
}
|
|
297
317
|
export declare const TlrStatusEnum: {
|
|
298
318
|
readonly Onboarded: "onboarded";
|