mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
* initial commit * add changes from running prettier * resolve the linx issue * resolve the lint issue * resolving lint error * correct the redirect issue * resolve pr commit * Add a feature flag * move the new component to adminconsole * resolve some pr comments * move the endpoint from ApiService to providerApiService * move provider endpoints to the provider-api class * change the header * resolve some pr comments
18 lines
883 B
TypeScript
18 lines
883 B
TypeScript
export enum FeatureFlag {
|
|
BrowserFilelessImport = "browser-fileless-import",
|
|
ItemShare = "item-share",
|
|
FlexibleCollectionsV1 = "flexible-collections-v-1", // v-1 is intentional
|
|
VaultOnboarding = "vault-onboarding",
|
|
GeneratorToolsModernization = "generator-tools-modernization",
|
|
KeyRotationImprovements = "key-rotation-improvements",
|
|
FlexibleCollectionsMigration = "flexible-collections-migration",
|
|
ShowPaymentMethodWarningBanners = "show-payment-method-warning-banners",
|
|
EnableConsolidatedBilling = "enable-consolidated-billing",
|
|
AC1795_UpdatedSubscriptionStatusSection = "AC-1795_updated-subscription-status-section",
|
|
UnassignedItemsBanner = "unassigned-items-banner",
|
|
EnableDeleteProvider = "AC-1218-delete-provider",
|
|
}
|
|
|
|
// Replace this with a type safe lookup of the feature flag values in PM-2282
|
|
export type FeatureFlagValue = number | string | boolean;
|