aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/talerTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-util/src/talerTypes.ts')
-rw-r--r--packages/taler-util/src/talerTypes.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/taler-util/src/talerTypes.ts b/packages/taler-util/src/talerTypes.ts
index 41aa53fd4..2f2576d82 100644
--- a/packages/taler-util/src/talerTypes.ts
+++ b/packages/taler-util/src/talerTypes.ts
@@ -1654,3 +1654,14 @@ export enum ExchangeProtocolVersion {
V9 = 9,
V12 = 12,
}
+
+export enum MerchantProtocolVersion {
+ /**
+ * Legacy version that is still supported.
+ */
+ V1 = 1,
+ /**
+ * Current version supported by the wallet.
+ */
+ V3 = 3,
+}