@idunion/tl-sdk 0.0.60 → 0.0.62

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 +12 -0
  2. package/package.json +1 -1
package/api.d.ts CHANGED
@@ -196,6 +196,10 @@ export interface Tl {
196
196
  'didBase': string;
197
197
  'governanceWalletId': string;
198
198
  'verifierId': string;
199
+ /**
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
+ */
202
+ 'email'?: string;
199
203
  }
200
204
  export interface TlList {
201
205
  'items'?: Array<Tl>;
@@ -222,6 +226,10 @@ export interface TlPayload {
222
226
  * The Verifier used to verify onboarding credentials
223
227
  */
224
228
  'verifierId': string;
229
+ /**
230
+ * Contact email address for the Trust List owner.
231
+ */
232
+ 'email'?: string;
225
233
  }
226
234
  /**
227
235
  * Trust List meta info
@@ -239,6 +247,10 @@ export interface TlPublicInfo {
239
247
  'description': string;
240
248
  'didBase': string;
241
249
  'governanceWalletId': string;
250
+ /**
251
+ * Contact email address for the Trust List owner.
252
+ */
253
+ 'email'?: string;
242
254
  }
243
255
  export interface TlPublicInfoList {
244
256
  'items'?: Array<TlPublicInfo>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@idunion/tl-sdk",
3
3
  "private": false,
4
- "version": "0.0.60",
4
+ "version": "0.0.62",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {