@databutton/firebase-types 1.69.102 → 1.69.104
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,29 @@ 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
|
+
guidelinesAnalysis: string;
|
|
625
|
+
};
|
|
626
|
+
}
|
|
627
|
+
/**
|
|
628
|
+
* @deprecated Use ProjectGuidelinesV2 instead
|
|
629
|
+
*/
|
|
630
|
+
export interface ProjectGuidelinesV1 {
|
|
609
631
|
initialGenerationAt: Timestamp | null;
|
|
610
632
|
/**
|
|
611
633
|
* The pitch for the app
|