summaryrefslogtreecommitdiff
path: root/src/types/dbTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/dbTypes.ts')
-rw-r--r--src/types/dbTypes.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/types/dbTypes.ts b/src/types/dbTypes.ts
index 82649d9f6..6693e22a2 100644
--- a/src/types/dbTypes.ts
+++ b/src/types/dbTypes.ts
@@ -556,6 +556,16 @@ export interface ExchangeRecord {
baseUrl: string;
/**
+ * Did we finish adding the exchange?
+ */
+ addComplete: boolean;
+
+ /**
+ * Is this a permanent or temporary exchange record?
+ */
+ permanent: boolean;
+
+ /**
* Was the exchange added as a built-in exchange?
*/
builtIn: boolean;
@@ -601,6 +611,9 @@ export interface ExchangeRecord {
*/
updateStarted: Timestamp | undefined;
+ /**
+ * Status of updating the info about the exchange.
+ */
updateStatus: ExchangeUpdateStatus;
updateReason?: ExchangeUpdateReason;