@triveria/wallet 0.0.272 → 0.0.274
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 -0
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -1015,6 +1015,10 @@ export interface WalletNotification {
|
|
|
1015
1015
|
'subjectDid': string;
|
|
1016
1016
|
'eventType': WalletNotificationEventType;
|
|
1017
1017
|
'eventDetails'?: WalletNotificationEventDetails;
|
|
1018
|
+
/**
|
|
1019
|
+
* Timestamp in milliseconds
|
|
1020
|
+
*/
|
|
1021
|
+
'createdTs': string;
|
|
1018
1022
|
'time': string;
|
|
1019
1023
|
}
|
|
1020
1024
|
/**
|
|
@@ -1065,6 +1069,10 @@ export interface WmpCreateInvitationResponse {
|
|
|
1065
1069
|
* URL at which the invitation can be downloaded
|
|
1066
1070
|
*/
|
|
1067
1071
|
'invitationUrl': string;
|
|
1072
|
+
/**
|
|
1073
|
+
* ID of the invitation
|
|
1074
|
+
*/
|
|
1075
|
+
'invitationId': string;
|
|
1068
1076
|
}
|
|
1069
1077
|
export interface WmpEntityConnectionStatus {
|
|
1070
1078
|
'connected': boolean;
|