@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.
- package/api.d.ts +3 -3
- 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'
|
|
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'
|
|
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'
|
|
246
|
+
'revoked'?: string;
|
|
247
247
|
}
|
|
248
248
|
export interface VpResponse {
|
|
249
249
|
/**
|