@databutton/firebase-types 1.84.7 → 1.84.9
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.
|
@@ -68,9 +68,13 @@ export interface AccountMemberRole {
|
|
|
68
68
|
createdBy: PerformedBy;
|
|
69
69
|
}
|
|
70
70
|
export type ToSVersion = "2024-02-13";
|
|
71
|
+
export interface ProfilePreferences {
|
|
72
|
+
chatStyle: "clean" | "detailed";
|
|
73
|
+
}
|
|
71
74
|
export interface Profile {
|
|
72
75
|
displayName: string;
|
|
73
76
|
agentPersonality?: AgentPersonality;
|
|
77
|
+
preferences?: ProfilePreferences;
|
|
74
78
|
experimentalFeatures?: boolean;
|
|
75
79
|
publicUsername?: PublicUsername | null;
|
|
76
80
|
displayPreference?: "dark" | "system" | "light";
|
|
@@ -788,6 +792,9 @@ export type AgentStatus = {
|
|
|
788
792
|
reason: "insufficient-funds" | "other";
|
|
789
793
|
};
|
|
790
794
|
export type ModelString = `openai/${string}` | `anthropic/${string}` | `google/${string}`;
|
|
795
|
+
/**
|
|
796
|
+
* This should probably have been called AgentPreferences
|
|
797
|
+
*/
|
|
791
798
|
export interface AgentPersonality {
|
|
792
799
|
mainModel?: ModelString;
|
|
793
800
|
modelAtSignUp?: ModelString;
|
|
@@ -1897,4 +1904,19 @@ export interface Database<P, C> {
|
|
|
1897
1904
|
config: C;
|
|
1898
1905
|
}
|
|
1899
1906
|
export type NeonDatabase = Database<"neon", NeonConfig>;
|
|
1907
|
+
export interface ProjectPlan {
|
|
1908
|
+
version: "2025-10-07";
|
|
1909
|
+
owner: string;
|
|
1910
|
+
createdBy: PerformedBy;
|
|
1911
|
+
updatedBy: PerformedBy;
|
|
1912
|
+
markedForDeletionBy: PerformedBy | null;
|
|
1913
|
+
visibility: "public" | "private";
|
|
1914
|
+
title: string;
|
|
1915
|
+
description: string;
|
|
1916
|
+
features: string[];
|
|
1917
|
+
integrations: string[];
|
|
1918
|
+
domains: string[];
|
|
1919
|
+
previewComponentCode: string | null;
|
|
1920
|
+
projectTemplateId: string;
|
|
1921
|
+
}
|
|
1900
1922
|
export {};
|