@databutton/firebase-types 1.74.9 → 1.74.10
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.
|
@@ -725,13 +725,20 @@ export interface ProjectGuidelinesV1 {
|
|
|
725
725
|
}
|
|
726
726
|
export declare enum ProjectExtension {
|
|
727
727
|
SHADCN = "shadcn",
|
|
728
|
-
FIREBASE_AUTH = "firebase-auth"
|
|
728
|
+
FIREBASE_AUTH = "firebase-auth",
|
|
729
|
+
MCP = "mcp"
|
|
729
730
|
}
|
|
730
731
|
export type ProjectExtensionConfig<T = object> = {
|
|
731
732
|
name: ProjectExtension;
|
|
732
733
|
version: string;
|
|
733
734
|
config?: T;
|
|
734
735
|
};
|
|
736
|
+
export interface McpExtensionConfig {
|
|
737
|
+
public?: boolean;
|
|
738
|
+
keys: {
|
|
739
|
+
authCode: string;
|
|
740
|
+
}[];
|
|
741
|
+
}
|
|
735
742
|
export interface FirebaseAuthExtensionConfig {
|
|
736
743
|
firebaseConfig: {
|
|
737
744
|
apiKey: string;
|
|
@@ -61,6 +61,7 @@ export var ProjectExtension;
|
|
|
61
61
|
(function (ProjectExtension) {
|
|
62
62
|
ProjectExtension["SHADCN"] = "shadcn";
|
|
63
63
|
ProjectExtension["FIREBASE_AUTH"] = "firebase-auth";
|
|
64
|
+
ProjectExtension["MCP"] = "mcp";
|
|
64
65
|
})(ProjectExtension = ProjectExtension || (ProjectExtension = {}));
|
|
65
66
|
/**
|
|
66
67
|
* Taken from AWS types
|