Skip to content

Commit

Permalink
feat: add feature flag for app data backup
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyuzhuang committed Jun 12, 2024
1 parent 68f0946 commit 9551536
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changeset/cool-hornets-join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@ledgerhq/types-live": patch
"@ledgerhq/live-common": patch
---

Create feature flag for preparation of next feature
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,7 @@ export const DEFAULT_FEATURES: Features = {
lldWalletSync: DEFAULT_FEATURE,
llmWalletSync: DEFAULT_FEATURE,
lldNftsGalleryNewArch: DEFAULT_FEATURE,
enableAppsBackup: DEFAULT_FEATURE,
};

// Firebase SDK treat JSON values as strings
Expand Down
2 changes: 2 additions & 0 deletions libs/ledgerjs/packages/types-live/src/feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ export type Features = CurrencyFeatures & {
lldWalletSync: Feature_LldWalletSync;
llmWalletSync: Feature_LlmWalletSync;
lldNftsGalleryNewArch: DefaultFeature;
enableAppsBackup: Feature_EnableAppsBackup;
};

/**
Expand Down Expand Up @@ -500,6 +501,7 @@ export type Feature_LlmChatbotSupport = DefaultFeature;
export type Feature_LldWalletSync = DefaultFeature;
export type Feature_LlmWalletSync = DefaultFeature;
export type Feature_SpamReportNfts = DefaultFeature;
export type Feature_EnableAppsBackup = DefaultFeature;

/**
* Utils types.
Expand Down

0 comments on commit 9551536

Please sign in to comment.