Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Commit

Permalink
Merge 0fc890e into bcd322c
Browse files Browse the repository at this point in the history
  • Loading branch information
grsoares21 committed Apr 27, 2022
2 parents bcd322c + 0fc890e commit 644f2b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,10 @@ export const FreshAddressIndexInvalid = createCustomErrorClass(
"FreshAddressIndexInvalid"
);

export const BluetoothNotSupportedError = createCustomErrorClass(
"FwUpdateBluetoothNotSupported"
);

export const UnsupportedDerivation = createCustomErrorClass(
"UnsupportedDerivation"
);
Expand Down
6 changes: 5 additions & 1 deletion src/featureFlags/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// Add others with union (e.g. "learn" | "market" | "foo")
export type FeatureId = "learn" | "pushNotifications";
export type FeatureId =
| "learn"
| "pushNotifications"
| "llmUsbFirmwareUpdate"
| string;

// We use objects instead of direct booleans for potential future improvements
// like feature versioning etc
Expand Down

0 comments on commit 644f2b1

Please sign in to comment.