@triveria/wallet 0.0.178 → 0.0.180
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 +8 -2
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -1212,6 +1212,12 @@ export interface OfferReceivedNotification {
|
|
|
1212
1212
|
* @memberof OfferReceivedNotification
|
|
1213
1213
|
*/
|
|
1214
1214
|
'holderDid': string;
|
|
1215
|
+
/**
|
|
1216
|
+
*
|
|
1217
|
+
* @type {string}
|
|
1218
|
+
* @memberof OfferReceivedNotification
|
|
1219
|
+
*/
|
|
1220
|
+
'credentialId'?: string;
|
|
1215
1221
|
}
|
|
1216
1222
|
/**
|
|
1217
1223
|
* On successful EBSI-onboarding result contains \"did:ebsi\" decentralized identifier
|
|
@@ -1276,11 +1282,11 @@ export interface PrepareToAccreditRequest {
|
|
|
1276
1282
|
*/
|
|
1277
1283
|
'type': PrepareToAccreditRequestTypeEnum;
|
|
1278
1284
|
/**
|
|
1279
|
-
*
|
|
1285
|
+
* Base64 encoded json to be used for the `accreditedFor` property of the credential
|
|
1280
1286
|
* @type {string}
|
|
1281
1287
|
* @memberof PrepareToAccreditRequest
|
|
1282
1288
|
*/
|
|
1283
|
-
'
|
|
1289
|
+
'accreditedFor': string;
|
|
1284
1290
|
}
|
|
1285
1291
|
export declare const PrepareToAccreditRequestTypeEnum: {
|
|
1286
1292
|
readonly TrustedIssuer: "TrustedIssuer";
|