@idunion/tl-sdk 0.0.35 → 0.0.36

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 +3 -3
  2. package/package.json +1 -1
package/api.d.ts CHANGED
@@ -226,7 +226,7 @@ export interface VerificationMethod {
226
226
  /**
227
227
  * DateTimeStamp string specifying when the verification method MUST NOT be used.
228
228
  */
229
- 'revoked': string;
229
+ 'revoked'?: string;
230
230
  }
231
231
  export interface VerificationMethodCreatePayload {
232
232
  [key: string]: any;
@@ -238,12 +238,12 @@ export interface VerificationMethodCreatePayload {
238
238
  'type': string;
239
239
  }
240
240
  export interface VerificationMethodPatchPayload {
241
- 'controller': string;
241
+ 'controller'?: string;
242
242
  'id': string;
243
243
  /**
244
244
  * DateTimeStamp string specifying when the verification method MUST NOT be used.
245
245
  */
246
- 'revoked': string;
246
+ 'revoked'?: string;
247
247
  }
248
248
  export interface VpResponse {
249
249
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@idunion/tl-sdk",
3
3
  "private": false,
4
- "version": "0.0.35",
4
+ "version": "0.0.36",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "scripts": {