@triveria/wallet 0.0.187 → 0.0.189
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 +1 -12
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export interface AuthOffer {
|
|
|
62
62
|
* @interface Credential
|
|
63
63
|
*/
|
|
64
64
|
export interface Credential {
|
|
65
|
+
[key: string]: any;
|
|
65
66
|
/**
|
|
66
67
|
* The value of the @context property MUST be an ordered set where the first item is a URL with the value https://www.w3.org/ns/credentials/v2. Subsequent items in the array MUST express context information and be composed of any combination of URLs or objects. It is RECOMMENDED that each URL in the @context be one which, if dereferenced, results in a document containing machine-readable information about the @context. https://www.w3.org/TR/vc-data-model-2.0/#contexts
|
|
67
68
|
* @type {Array<string>}
|
|
@@ -405,12 +406,6 @@ export interface CredentialRequest {
|
|
|
405
406
|
* @memberof CredentialRequest
|
|
406
407
|
*/
|
|
407
408
|
'state'?: string;
|
|
408
|
-
/**
|
|
409
|
-
*
|
|
410
|
-
* @type {boolean}
|
|
411
|
-
* @memberof CredentialRequest
|
|
412
|
-
*/
|
|
413
|
-
'legalEntity': boolean;
|
|
414
409
|
}
|
|
415
410
|
/**
|
|
416
411
|
*
|
|
@@ -1690,12 +1685,6 @@ export interface VcOffer {
|
|
|
1690
1685
|
* @memberof VcOffer
|
|
1691
1686
|
*/
|
|
1692
1687
|
'Url': string;
|
|
1693
|
-
/**
|
|
1694
|
-
*
|
|
1695
|
-
* @type {boolean}
|
|
1696
|
-
* @memberof VcOffer
|
|
1697
|
-
*/
|
|
1698
|
-
'LegalEntity'?: boolean;
|
|
1699
1688
|
}
|
|
1700
1689
|
/**
|
|
1701
1690
|
* Request for the creation of URL used by holder to present credentials to a verifier. Either clientId or idTokenRequestId MUST be present.
|