@databutton/firebase-types 1.98.6 → 1.99.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -61,6 +61,10 @@ export interface Account {
|
|
|
61
61
|
* Default project template ID for new projects (leave blank for using product default)
|
|
62
62
|
*/
|
|
63
63
|
defaultProjectTemplateId?: string;
|
|
64
|
+
/**
|
|
65
|
+
* List of keys (feature flags) enabled for this account.
|
|
66
|
+
*/
|
|
67
|
+
enabledFeatures: string[];
|
|
64
68
|
}
|
|
65
69
|
interface AccountConfigBase {
|
|
66
70
|
enabledBy: PerformedBy;
|
|
@@ -216,6 +216,14 @@ export type ToggleExperimentalFeaturesResponse = {
|
|
|
216
216
|
featureFlagKey: string;
|
|
217
217
|
enabled: boolean;
|
|
218
218
|
};
|
|
219
|
+
export type ToggleAccountFeatureFlagRequest = {
|
|
220
|
+
accountId: string;
|
|
221
|
+
featureFlagKey: string;
|
|
222
|
+
};
|
|
223
|
+
export type ToggleAccountFeatureFlagResponse = {
|
|
224
|
+
featureFlagKey: string;
|
|
225
|
+
enabled: boolean;
|
|
226
|
+
};
|
|
219
227
|
export type RestartDevxRequest = {
|
|
220
228
|
projectId: string;
|
|
221
229
|
};
|