@databutton/firebase-types 1.74.21 → 1.74.22

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,6 +737,8 @@ export type ProjectExtensionConfig<T = object> = {
737
737
  export interface McpExtensionConfig {
738
738
  public?: boolean;
739
739
  keys: {
740
+ schema: "2025-03-25";
741
+ apiKeyId: string;
740
742
  authCode: string;
741
743
  }[];
742
744
  }
@@ -145,6 +145,14 @@ export type EnableFirebaseExtensionRequest = {
145
145
  export type EnableFirebaseExtensionResponse = {
146
146
  success: boolean;
147
147
  };
148
+ export type EnableMcpExtensionRequest = {
149
+ projectId: string;
150
+ };
151
+ export type EnableMcpExtensionResponse = {
152
+ success: boolean;
153
+ apiKeyId: string;
154
+ apiKey: string;
155
+ };
148
156
  export type TroubleshootDnsRecordRequest = {
149
157
  domainName: string;
150
158
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.74.21",
3
+ "version": "1.74.22",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {