@idunion/tl-sdk 0.0.66 → 0.0.67

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 (2) hide show
  1. package/api.d.ts +16 -0
  2. package/package.json +1 -1
package/api.d.ts CHANGED
@@ -204,6 +204,14 @@ 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;
207
215
  }
208
216
  export interface TlList {
209
217
  'items'?: Array<Tl>;
@@ -293,6 +301,14 @@ export interface Tlr {
293
301
  'accreditedFor'?: Array<AccreditedFor>;
294
302
  'onboardingCredentials': Array<OnboardingCredential>;
295
303
  'isRoot': boolean;
304
+ /**
305
+ * Unix timestamp in microseconds when the record was first created.
306
+ */
307
+ 'createdTs': number;
308
+ /**
309
+ * Unix timestamp in microseconds when the record was last updated.
310
+ */
311
+ 'updatedTs': number;
296
312
  }
297
313
  export declare const TlrStatusEnum: {
298
314
  readonly Onboarded: "onboarded";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@idunion/tl-sdk",
3
3
  "private": false,
4
- "version": "0.0.66",
4
+ "version": "0.0.67",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {