@databutton/firebase-types 1.99.0 → 1.99.2

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.
@@ -3,6 +3,7 @@ export declare enum CollectionName {
3
3
  ACCOUNT_LISTS = "account-lists",
4
4
  AGENT_SKILLS = "agent-skills",
5
5
  API_KEYS = "api-keys",
6
+ API_VERSIONS = "api-versions",
6
7
  ADMIN_CONFIG = "admin-config",
7
8
  AUDIT_LOGS = "audit-logs",
8
9
  APPBUTLERS = "appbutlers",
@@ -4,6 +4,7 @@ export var CollectionName;
4
4
  CollectionName["ACCOUNT_LISTS"] = "account-lists";
5
5
  CollectionName["AGENT_SKILLS"] = "agent-skills";
6
6
  CollectionName["API_KEYS"] = "api-keys";
7
+ CollectionName["API_VERSIONS"] = "api-versions";
7
8
  CollectionName["ADMIN_CONFIG"] = "admin-config";
8
9
  CollectionName["AUDIT_LOGS"] = "audit-logs";
9
10
  CollectionName["APPBUTLERS"] = "appbutlers";
@@ -65,6 +65,10 @@ export interface Account {
65
65
  * List of keys (feature flags) enabled for this account.
66
66
  */
67
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;
68
72
  }
69
73
  interface AccountConfigBase {
70
74
  enabledBy: PerformedBy;
@@ -1138,7 +1142,10 @@ export interface Integration {
1138
1142
  gatewayMetadata?: GatewayIntegrationMetadata;
1139
1143
  }
1140
1144
  export interface ApiVersion {
1145
+ createdBy: PerformedBy;
1141
1146
  openApiArtifactRef: string;
1147
+ projectId: string | null;
1148
+ deploymentId: string | null;
1142
1149
  }
1143
1150
  /**
1144
1151
  * Integration learnings (account or project level)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.99.0",
3
+ "version": "1.99.2",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {