@databutton/firebase-types 1.69.101 → 1.69.103
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.
|
@@ -605,7 +605,28 @@ export declare enum ProjectBuildStage {
|
|
|
605
605
|
IDEATE = "ideate",
|
|
606
606
|
BUILD = "build"
|
|
607
607
|
}
|
|
608
|
-
export
|
|
608
|
+
export type ProjectGuidelines = ProjectGuidelinesV1 | ProjectGuidelinesV2;
|
|
609
|
+
export interface ProjectGuidelinesV2 {
|
|
610
|
+
version: "2";
|
|
611
|
+
pitch: string;
|
|
612
|
+
description: string;
|
|
613
|
+
targetAudience: string;
|
|
614
|
+
preferredPlatform: "desktop" | "tablet" | "mobile";
|
|
615
|
+
preferredTheme: "light" | "dark" | "system";
|
|
616
|
+
design: string;
|
|
617
|
+
aiGenerated?: {
|
|
618
|
+
design: {
|
|
619
|
+
approach: string;
|
|
620
|
+
keyFeatures: string;
|
|
621
|
+
shapes: string;
|
|
622
|
+
typography: string;
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* @deprecated Use ProjectGuidelinesV2 instead
|
|
628
|
+
*/
|
|
629
|
+
export interface ProjectGuidelinesV1 {
|
|
609
630
|
initialGenerationAt: Timestamp | null;
|
|
610
631
|
/**
|
|
611
632
|
* The pitch for the app
|
|
@@ -645,6 +666,7 @@ export type ProjectExtensions = {
|
|
|
645
666
|
}[];
|
|
646
667
|
export interface BaseTheme {
|
|
647
668
|
defaultFontFamily: string;
|
|
669
|
+
extraFontFamilies: string[];
|
|
648
670
|
}
|
|
649
671
|
export interface ShadcnColors {
|
|
650
672
|
background: string;
|