@triveria/wallet 0.0.79 → 0.0.80
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 +22 -1
- package/api.js +3 -1
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -795,6 +795,25 @@ export interface ModelError {
|
|
|
795
795
|
*/
|
|
796
796
|
'Message': string;
|
|
797
797
|
}
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @export
|
|
801
|
+
* @interface OfferReceivedNotification
|
|
802
|
+
*/
|
|
803
|
+
export interface OfferReceivedNotification {
|
|
804
|
+
/**
|
|
805
|
+
*
|
|
806
|
+
* @type {string}
|
|
807
|
+
* @memberof OfferReceivedNotification
|
|
808
|
+
*/
|
|
809
|
+
'credentialType': string;
|
|
810
|
+
/**
|
|
811
|
+
*
|
|
812
|
+
* @type {string}
|
|
813
|
+
* @memberof OfferReceivedNotification
|
|
814
|
+
*/
|
|
815
|
+
'holderDid': string;
|
|
816
|
+
}
|
|
798
817
|
/**
|
|
799
818
|
* On successful EBSI-onboarding result contains \"did:ebsi\" decentralized identifier
|
|
800
819
|
* @export
|
|
@@ -1291,13 +1310,15 @@ export declare const WalletNotificationEventTypeEnum: {
|
|
|
1291
1310
|
readonly VpVerified: "vp.verified";
|
|
1292
1311
|
readonly VpInvalid: "vp.invalid";
|
|
1293
1312
|
readonly IdTokenReceived: "idToken.received";
|
|
1313
|
+
readonly OfferProcessed: "offer.processed";
|
|
1314
|
+
readonly OfferInitiated: "offer.initiated";
|
|
1294
1315
|
};
|
|
1295
1316
|
export type WalletNotificationEventTypeEnum = typeof WalletNotificationEventTypeEnum[keyof typeof WalletNotificationEventTypeEnum];
|
|
1296
1317
|
/**
|
|
1297
1318
|
* @type WalletNotificationEventDetails
|
|
1298
1319
|
* @export
|
|
1299
1320
|
*/
|
|
1300
|
-
export type WalletNotificationEventDetails = IdTokenReceivedNotification | VpVerifiedNotification;
|
|
1321
|
+
export type WalletNotificationEventDetails = IdTokenReceivedNotification | OfferReceivedNotification | VpVerifiedNotification;
|
|
1301
1322
|
/**
|
|
1302
1323
|
* DefaultApi - axios parameter creator
|
|
1303
1324
|
* @export
|
package/api.js
CHANGED
|
@@ -71,7 +71,9 @@ exports.SystemImpactStatusEnum = {
|
|
|
71
71
|
exports.WalletNotificationEventTypeEnum = {
|
|
72
72
|
VpVerified: 'vp.verified',
|
|
73
73
|
VpInvalid: 'vp.invalid',
|
|
74
|
-
IdTokenReceived: 'idToken.received'
|
|
74
|
+
IdTokenReceived: 'idToken.received',
|
|
75
|
+
OfferProcessed: 'offer.processed',
|
|
76
|
+
OfferInitiated: 'offer.initiated'
|
|
75
77
|
};
|
|
76
78
|
/**
|
|
77
79
|
* DefaultApi - axios parameter creator
|