aboutsummaryrefslogtreecommitdiff
path: root/src/types/history.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/history.ts')
-rw-r--r--src/types/history.ts15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/types/history.ts b/src/types/history.ts
index ad7d98df0..52148cb04 100644
--- a/src/types/history.ts
+++ b/src/types/history.ts
@@ -509,7 +509,7 @@ export interface HistoryPaymentSent {
*/
sessionId: string | undefined;
- verboseDetails: VerbosePayCoinDetails;
+ verboseDetails?: VerbosePayCoinDetails;
}
/**
@@ -590,7 +590,7 @@ export interface HistoryRefreshedEvent {
*/
refreshGroupId: string;
- verboseDetails: VerboseRefreshDetails;
+ verboseDetails?: VerboseRefreshDetails;
}
export interface VerboseWithdrawDetails {
@@ -630,7 +630,10 @@ export interface HistoryWithdrawnEvent {
*/
amountWithdrawnEffective: string;
- verboseDetails: VerboseWithdrawDetails;
+ /**
+ * Verbose details of the operations, only generated when requested.
+ */
+ verboseDetails?: VerboseWithdrawDetails;
}
/**
@@ -684,5 +687,9 @@ export type HistoryEvent = HistoryEventBase &
);
export interface HistoryQuery {
- // TBD
+ /**
+ * Output extra verbose details, intended for debugging
+ * and not for end users.
+ */
+ verboseDetails?: boolean;
}