@databutton/firebase-types 1.69.85 → 1.69.87
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.
|
@@ -610,27 +610,27 @@ export interface ProjectGuidelines {
|
|
|
610
610
|
/**
|
|
611
611
|
* The pitch for the app
|
|
612
612
|
*/
|
|
613
|
-
pitch
|
|
613
|
+
pitch?: string;
|
|
614
614
|
/**
|
|
615
615
|
* Description of the app
|
|
616
616
|
*/
|
|
617
|
-
description
|
|
617
|
+
description?: string;
|
|
618
618
|
/**
|
|
619
619
|
* The target audience for the app
|
|
620
620
|
*/
|
|
621
|
-
targetAudience
|
|
621
|
+
targetAudience?: string;
|
|
622
622
|
/**
|
|
623
623
|
* Preferred platform for the app
|
|
624
624
|
*/
|
|
625
|
-
preferredPlatform
|
|
625
|
+
preferredPlatform?: "desktop" | "tablet" | "mobile";
|
|
626
626
|
/**
|
|
627
|
-
*
|
|
627
|
+
* Preferred theme for the app
|
|
628
628
|
*/
|
|
629
|
-
|
|
629
|
+
preferredTheme?: "light" | "dark" | "system";
|
|
630
630
|
/**
|
|
631
|
-
*
|
|
631
|
+
* Design style like glassmorphism, neumorphism, etc, including color schemes etc
|
|
632
632
|
*/
|
|
633
|
-
|
|
633
|
+
design?: string;
|
|
634
634
|
/**
|
|
635
635
|
* Generated design guidelines from the AI
|
|
636
636
|
*/
|