@databutton/firebase-types 1.74.8 → 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.
|
@@ -33,6 +33,7 @@ export interface PublicUsername {
|
|
|
33
33
|
username: string;
|
|
34
34
|
slug: string;
|
|
35
35
|
claimedAt: Timestamp;
|
|
36
|
+
changedTo?: string;
|
|
36
37
|
}
|
|
37
38
|
export type ToSVersion = "2024-02-13";
|
|
38
39
|
export interface Profile {
|
|
@@ -724,13 +725,20 @@ export interface ProjectGuidelinesV1 {
|
|
|
724
725
|
}
|
|
725
726
|
export declare enum ProjectExtension {
|
|
726
727
|
SHADCN = "shadcn",
|
|
727
|
-
FIREBASE_AUTH = "firebase-auth"
|
|
728
|
+
FIREBASE_AUTH = "firebase-auth",
|
|
729
|
+
MCP = "mcp"
|
|
728
730
|
}
|
|
729
731
|
export type ProjectExtensionConfig<T = object> = {
|
|
730
732
|
name: ProjectExtension;
|
|
731
733
|
version: string;
|
|
732
734
|
config?: T;
|
|
733
735
|
};
|
|
736
|
+
export interface McpExtensionConfig {
|
|
737
|
+
public?: boolean;
|
|
738
|
+
keys: {
|
|
739
|
+
authCode: string;
|
|
740
|
+
}[];
|
|
741
|
+
}
|
|
734
742
|
export interface FirebaseAuthExtensionConfig {
|
|
735
743
|
firebaseConfig: {
|
|
736
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
|