@databutton/firebase-types 1.69.85 → 1.69.86

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,31 @@ export interface ProjectGuidelines {
610
610
  /**
611
611
  * The pitch for the app
612
612
  */
613
- pitch: string;
613
+ pitch?: string;
614
614
  /**
615
615
  * Description of the app
616
616
  */
617
- description: string;
617
+ description?: string;
618
618
  /**
619
619
  * The target audience for the app
620
620
  */
621
- targetAudience: string;
621
+ targetAudience?: string;
622
622
  /**
623
623
  * Preferred platform for the app
624
624
  */
625
- preferredPlatform: "desktop" | "tablet" | "mobile";
625
+ preferredPlatform?: "desktop" | "tablet" | "mobile";
626
+ /**
627
+ * Preferred theme for the app
628
+ */
629
+ preferredTheme?: "light" | "dark";
626
630
  /**
627
631
  * Design style like glassmorphism, neumorphism, etc, including color schemes etc
628
632
  */
629
- design: string;
633
+ design?: string;
630
634
  /**
631
635
  * Rules or constraints for the app
632
636
  */
633
- rules: string;
637
+ rules?: string;
634
638
  /**
635
639
  * Generated design guidelines from the AI
636
640
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.69.85",
3
+ "version": "1.69.86",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {