commit 27ffa807c38fa41145d9036fe3b9adbf83d4b493
parent e256276effc7df369add3ca463c4d36921a5820e
Author: Iván Ávalos <avalos@disroot.org>
Date: Wed, 12 Nov 2025 08:17:57 +0100
wallet-core: add missing versionAdded fields to new stores
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/packages/taler-wallet-core/src/db.ts b/packages/taler-wallet-core/src/db.ts
@@ -171,7 +171,7 @@ export const CURRENT_DB_CONFIG_KEY = "currentMainDbName";
* backwards-compatible way or object stores and indices
* are added.
*/
-export const WALLET_DB_MINOR_VERSION = 23;
+export const WALLET_DB_MINOR_VERSION = 24;
declare const symDbProtocolTimestamp: unique symbol;
@@ -3190,18 +3190,21 @@ export const WalletStoresV1 = {
storeName: "contacts",
keyPath: ["alias", "aliasType"],
indexes: {},
+ versionAdded: 24,
}),
mailboxMessages: describeStoreV2({
recordCodec: passthroughCodec<MailboxMessageRecord>(),
storeName: "mailboxMessages",
keyPath: ["originMailboxBaseUrl", "talerUri"],
indexes: {},
+ versionAdded: 24,
}),
mailboxConfigurations: describeStoreV2({
recordCodec: passthroughCodec<MailboxConfiguration>(),
storeName: "mailboxConfigurations",
keyPath: "mailboxBaseUrl",
indexes: {},
+ versionAdded: 24,
}),
refreshGroups: describeStore(
"refreshGroups",