@triveria/wallet 0.0.206 → 0.0.208
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 +18 -0
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -55,6 +55,12 @@ export interface AuthOffer {
|
|
|
55
55
|
* @memberof AuthOffer
|
|
56
56
|
*/
|
|
57
57
|
'offer': string;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof AuthOffer
|
|
62
|
+
*/
|
|
63
|
+
'validUntil': string;
|
|
58
64
|
}
|
|
59
65
|
/**
|
|
60
66
|
*
|
|
@@ -1174,6 +1180,12 @@ export interface InteractionAuthorizationRequirements {
|
|
|
1174
1180
|
* @memberof InteractionAuthorizationRequirements
|
|
1175
1181
|
*/
|
|
1176
1182
|
'interactionId': string;
|
|
1183
|
+
/**
|
|
1184
|
+
*
|
|
1185
|
+
* @type {Array<string>}
|
|
1186
|
+
* @memberof InteractionAuthorizationRequirements
|
|
1187
|
+
*/
|
|
1188
|
+
'offeredCredentialsTypes'?: Array<string>;
|
|
1177
1189
|
}
|
|
1178
1190
|
export declare const InteractionAuthorizationRequirementsRequirementTypeEnum: {
|
|
1179
1191
|
readonly IdToken: "id_token";
|
|
@@ -1492,6 +1504,12 @@ export interface PreAuthOffer {
|
|
|
1492
1504
|
* @memberof PreAuthOffer
|
|
1493
1505
|
*/
|
|
1494
1506
|
'offer': string;
|
|
1507
|
+
/**
|
|
1508
|
+
*
|
|
1509
|
+
* @type {string}
|
|
1510
|
+
* @memberof PreAuthOffer
|
|
1511
|
+
*/
|
|
1512
|
+
'validUntil': string;
|
|
1495
1513
|
}
|
|
1496
1514
|
/**
|
|
1497
1515
|
* Prepares to accredit legal entity\'s DID
|