Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ledgerhq/types-live

Package Overview
Dependencies
Maintainers
20
Versions
248
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ledgerhq/types-live - npm Package Compare versions

Comparing version 6.25.0-next.0 to 6.25.1-next.0

32

CHANGELOG.md
# @ledgerhq/types-live
## 6.25.1-next.0
### Patch Changes
- [#1372](https://github.com/LedgerHQ/ledger-live/pull/1372) [`b53d648424`](https://github.com/LedgerHQ/ledger-live/commit/b53d64842471eb2382066aecfc9f2b3b15ef7aed) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Add FEATURE_FLAGS env variable to override feature flags
## 6.25.0
### Minor Changes
- [#1366](https://github.com/LedgerHQ/ledger-live/pull/1366) [`955b045459`](https://github.com/LedgerHQ/ledger-live/commit/955b045459cf568fb3c96a732bc5ec0d8d831b19) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Added a desktop_version param to the feature flags with the semver format to only enable a feature flag for specific versions of the desktop app
### Patch Changes
- [#1447](https://github.com/LedgerHQ/ledger-live/pull/1447) [`777ccf8774`](https://github.com/LedgerHQ/ledger-live/commit/777ccf8774302cb17995a044f23972e2a9fc4045) Thanks [@LFBarreto](https://github.com/LFBarreto)! - Types - Add Referral Program Desktop Banner FeatureId Flag
* [#1474](https://github.com/LedgerHQ/ledger-live/pull/1474) [`2802e2d684`](https://github.com/LedgerHQ/ledger-live/commit/2802e2d6844a7e17127ea7d103fe0d1a45afa032) Thanks [@juan-cortes](https://github.com/juan-cortes)! - Introduce new feature flag for installSetOfApps
- [#1439](https://github.com/LedgerHQ/ledger-live/pull/1439) [`c33c82cd32`](https://github.com/LedgerHQ/ledger-live/commit/c33c82cd3291b651238659a8b9eababe6f953ece) Thanks [@LFBarreto](https://github.com/LFBarreto)! - Types - Add new feature flag FeatureId type
## 6.25.0-next.0

@@ -17,2 +37,14 @@

## 6.24.3
### Patch Changes
- [#1518](https://github.com/LedgerHQ/ledger-live/pull/1518) [`f255b258a9`](https://github.com/LedgerHQ/ledger-live/commit/f255b258a9c79c5eb89ec65d6647e52b90a9c52c) Thanks [@desirendr](https://github.com/desirendr)! - Types - Add new feature flag FeatureId type
## 6.24.3-hotfix.0
### Patch Changes
- [#1518](https://github.com/LedgerHQ/ledger-live/pull/1518) [`f255b258a9`](https://github.com/LedgerHQ/ledger-live/commit/f255b258a9c79c5eb89ec65d6647e52b90a9c52c) Thanks [@desirendr](https://github.com/desirendr)! - Types - Add new feature flag FeatureId type
## 6.24.2

@@ -19,0 +51,0 @@

4

lib-es/feature.d.ts
/** Add others with union (e.g. "learn" | "market" | "foo") */
export declare type FeatureId = "learn" | "pushNotifications" | "llmUsbFirmwareUpdate" | "ratings" | "counterValue" | "deviceLocalization" | "deviceInitialApps" | "buyDeviceFromLive" | "ptxSmartRouting" | "currencyOsmosis" | "currencyOsmosisMobile" | "currencyFantom" | "currencyMoonbeam" | "currencyCronos" | "currencySongbird" | "currencyFlare" | "currencyFantomMobile" | "currencyMoonbeamMobile" | "currencyCronosMobile" | "currencySongbirdMobile" | "currencyFlareMobile" | "ptxSmartRoutingMobile" | "mockFeature" | "walletConnectLiveApp" | "customImage" | "referralProgramDiscoverCard" | "referralProgramDesktopBanner";
export declare type FeatureId = "learn" | "pushNotifications" | "llmNewDeviceSelection" | "llmUsbFirmwareUpdate" | "ratings" | "counterValue" | "deviceLocalization" | "deviceInitialApps" | "buyDeviceFromLive" | "ptxSmartRouting" | "currencyOsmosis" | "currencyOsmosisMobile" | "currencyFantom" | "currencyMoonbeam" | "currencyCronos" | "currencySongbird" | "currencyFlare" | "currencyFantomMobile" | "currencyMoonbeamMobile" | "currencyCronosMobile" | "currencySongbirdMobile" | "currencyFlareMobile" | "ptxSmartRoutingMobile" | "mockFeature" | "syncOnboarding" | "walletConnectLiveApp" | "customImage" | "referralProgramDiscoverCard" | "referralProgramDesktopBanner";
/** We use objects instead of direct booleans for potential future improvements

@@ -23,2 +23,4 @@ like feature versioning etc */

overridesRemote?: boolean;
/** Whether the remote value of this object was overriden by an environment variable */
overriddenByEnv?: boolean;
/** Additional params */

@@ -25,0 +27,0 @@ params?: any;

@@ -9,3 +9,4 @@ import { DeviceModelId } from "@ledgerhq/types-devices";

migrateAssetsMock = "migrateAssetsMock",
personalizeMock = "personalizeMock"
personalizeMock = "personalizeMock",
customImage = "customImage"
}

@@ -12,0 +13,0 @@ /**

@@ -9,3 +9,4 @@ /**

PostOnboardingActionId["personalizeMock"] = "personalizeMock";
PostOnboardingActionId["customImage"] = "customImage";
})(PostOnboardingActionId || (PostOnboardingActionId = {}));
//# sourceMappingURL=postOnboarding.js.map
/** Add others with union (e.g. "learn" | "market" | "foo") */
export declare type FeatureId = "learn" | "pushNotifications" | "llmUsbFirmwareUpdate" | "ratings" | "counterValue" | "deviceLocalization" | "deviceInitialApps" | "buyDeviceFromLive" | "ptxSmartRouting" | "currencyOsmosis" | "currencyOsmosisMobile" | "currencyFantom" | "currencyMoonbeam" | "currencyCronos" | "currencySongbird" | "currencyFlare" | "currencyFantomMobile" | "currencyMoonbeamMobile" | "currencyCronosMobile" | "currencySongbirdMobile" | "currencyFlareMobile" | "ptxSmartRoutingMobile" | "mockFeature" | "walletConnectLiveApp" | "customImage" | "referralProgramDiscoverCard" | "referralProgramDesktopBanner";
export declare type FeatureId = "learn" | "pushNotifications" | "llmNewDeviceSelection" | "llmUsbFirmwareUpdate" | "ratings" | "counterValue" | "deviceLocalization" | "deviceInitialApps" | "buyDeviceFromLive" | "ptxSmartRouting" | "currencyOsmosis" | "currencyOsmosisMobile" | "currencyFantom" | "currencyMoonbeam" | "currencyCronos" | "currencySongbird" | "currencyFlare" | "currencyFantomMobile" | "currencyMoonbeamMobile" | "currencyCronosMobile" | "currencySongbirdMobile" | "currencyFlareMobile" | "ptxSmartRoutingMobile" | "mockFeature" | "syncOnboarding" | "walletConnectLiveApp" | "customImage" | "referralProgramDiscoverCard" | "referralProgramDesktopBanner";
/** We use objects instead of direct booleans for potential future improvements

@@ -23,2 +23,4 @@ like feature versioning etc */

overridesRemote?: boolean;
/** Whether the remote value of this object was overriden by an environment variable */
overriddenByEnv?: boolean;
/** Additional params */

@@ -25,0 +27,0 @@ params?: any;

@@ -9,3 +9,4 @@ import { DeviceModelId } from "@ledgerhq/types-devices";

migrateAssetsMock = "migrateAssetsMock",
personalizeMock = "personalizeMock"
personalizeMock = "personalizeMock",
customImage = "customImage"
}

@@ -12,0 +13,0 @@ /**

@@ -12,3 +12,4 @@ "use strict";

PostOnboardingActionId["personalizeMock"] = "personalizeMock";
PostOnboardingActionId["customImage"] = "customImage";
})(PostOnboardingActionId = exports.PostOnboardingActionId || (exports.PostOnboardingActionId = {}));
//# sourceMappingURL=postOnboarding.js.map
{
"name": "@ledgerhq/types-live",
"version": "6.25.0-next.0",
"version": "6.25.1-next.0",
"description": "Ledger Live main types.",

@@ -29,3 +29,3 @@ "keywords": [

"@ledgerhq/types-cryptoassets": "^6.23.2",
"@ledgerhq/types-devices": "^6.22.2"
"@ledgerhq/types-devices": "^6.22.3-next.0"
},

@@ -32,0 +32,0 @@ "scripts": {

@@ -5,2 +5,3 @@ /** Add others with union (e.g. "learn" | "market" | "foo") */

| "pushNotifications"
| "llmNewDeviceSelection"
| "llmUsbFirmwareUpdate"

@@ -27,2 +28,3 @@ | "ratings"

| "mockFeature"
| "syncOnboarding"
| "walletConnectLiveApp"

@@ -53,2 +55,4 @@ | "customImage"

overridesRemote?: boolean;
/** Whether the remote value of this object was overriden by an environment variable */
overriddenByEnv?: boolean;
/** Additional params */

@@ -55,0 +59,0 @@ params?: any;

@@ -11,2 +11,3 @@ import { DeviceModelId } from "@ledgerhq/types-devices";

personalizeMock = "personalizeMock",
customImage = "customImage",
}

@@ -13,0 +14,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc