aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/walletTypes.ts')
-rw-r--r--src/walletTypes.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/walletTypes.ts b/src/walletTypes.ts
index 45a795873..c98717ac2 100644
--- a/src/walletTypes.ts
+++ b/src/walletTypes.ts
@@ -302,6 +302,7 @@ export interface QueryPaymentFound {
contractTermsHash: string;
contractTerms: ContractTerms;
lastSessionSig?: string;
+ lastSessionId?: string;
payReq: PayReq;
}
@@ -603,3 +604,12 @@ export interface Badge {
*/
clearNotification(): void;
}
+
+
+/**
+ * Cached next URL for a particular session id.
+ */
+export interface NextUrlResult {
+ nextUrl: string;
+ lastSessionId: string | undefined;
+}