@triveria/wallet 0.0.204 → 0.0.206
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 +24 -6
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -226,6 +226,12 @@ export interface CredentialImport {
|
|
|
226
226
|
* @interface CredentialIssuanceInit
|
|
227
227
|
*/
|
|
228
228
|
export interface CredentialIssuanceInit {
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* @type {string}
|
|
232
|
+
* @memberof CredentialIssuanceInit
|
|
233
|
+
*/
|
|
234
|
+
'issuerId': string;
|
|
229
235
|
/**
|
|
230
236
|
*
|
|
231
237
|
* @type {string}
|
|
@@ -257,6 +263,12 @@ export interface CredentialIssuerDefinition {
|
|
|
257
263
|
* @memberof CredentialIssuerDefinition
|
|
258
264
|
*/
|
|
259
265
|
'name': string;
|
|
266
|
+
/**
|
|
267
|
+
* Unique identifier of the issuer
|
|
268
|
+
* @type {string}
|
|
269
|
+
* @memberof CredentialIssuerDefinition
|
|
270
|
+
*/
|
|
271
|
+
'id': string;
|
|
260
272
|
/**
|
|
261
273
|
* Type of credentials for which the specified credential issuer will be used.
|
|
262
274
|
* @type {Array<string>}
|
|
@@ -1027,11 +1039,11 @@ export interface IdTokenSendRequest {
|
|
|
1027
1039
|
*/
|
|
1028
1040
|
export interface InitAuthOffer {
|
|
1029
1041
|
/**
|
|
1030
|
-
*
|
|
1031
|
-
* @type {
|
|
1042
|
+
* ID of the issuer used to issue the credential.
|
|
1043
|
+
* @type {string}
|
|
1032
1044
|
* @memberof InitAuthOffer
|
|
1033
1045
|
*/
|
|
1034
|
-
'
|
|
1046
|
+
'issuerId': string;
|
|
1035
1047
|
/**
|
|
1036
1048
|
*
|
|
1037
1049
|
* @type {CredentialFormat}
|
|
@@ -1070,11 +1082,11 @@ export interface InitPreAuthOffer {
|
|
|
1070
1082
|
*/
|
|
1071
1083
|
'idTokenRequestId'?: string;
|
|
1072
1084
|
/**
|
|
1073
|
-
*
|
|
1074
|
-
* @type {
|
|
1085
|
+
* ID of the issuer used to issue the credential.
|
|
1086
|
+
* @type {string}
|
|
1075
1087
|
* @memberof InitPreAuthOffer
|
|
1076
1088
|
*/
|
|
1077
|
-
'
|
|
1089
|
+
'issuerId': string;
|
|
1078
1090
|
/**
|
|
1079
1091
|
*
|
|
1080
1092
|
* @type {CredentialFormat}
|
|
@@ -1529,6 +1541,12 @@ export interface PrepareToOnboardRequest {
|
|
|
1529
1541
|
* @memberof PrepareToOnboardRequest
|
|
1530
1542
|
*/
|
|
1531
1543
|
'did': string;
|
|
1544
|
+
/**
|
|
1545
|
+
* Specifies when the authorization to onboard credential will expire
|
|
1546
|
+
* @type {string}
|
|
1547
|
+
* @memberof PrepareToOnboardRequest
|
|
1548
|
+
*/
|
|
1549
|
+
'validUntil': string;
|
|
1532
1550
|
}
|
|
1533
1551
|
/**
|
|
1534
1552
|
*
|