@databutton/firebase-types 1.98.6 → 1.99.1

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,14 @@ 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[];
68
+ /**
69
+ * Account level custom instructions. Will be applied to system prompt in all projects created in this account.
70
+ */
71
+ customInstructions?: string;
64
72
  }
65
73
  interface AccountConfigBase {
66
74
  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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.98.6",
3
+ "version": "1.99.1",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {