@databutton/firebase-types 1.74.43 → 1.74.44

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.
@@ -737,11 +737,14 @@ export type ProjectExtensionConfig<T = object> = {
737
737
  };
738
738
  export interface McpExtensionConfig {
739
739
  public?: boolean;
740
- keys: {
740
+ keys: ({
741
741
  schema: "2025-03-25";
742
742
  apiKeyId: string;
743
743
  authCode: string;
744
- }[];
744
+ } | {
745
+ schema: "2025-04-02";
746
+ apiKeyId: string;
747
+ })[];
745
748
  }
746
749
  export interface FirebaseAuthExtensionConfig {
747
750
  firebaseConfig: {
@@ -147,6 +147,8 @@ export type EnableFirebaseExtensionResponse = {
147
147
  };
148
148
  export type EnableMcpExtensionRequest = {
149
149
  projectId: string;
150
+ version?: "0" | "1";
151
+ environment?: "dev" | "prod";
150
152
  };
151
153
  export type EnableMcpExtensionResponse = {
152
154
  success: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.74.43",
3
+ "version": "1.74.44",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {