@databutton/firebase-types 1.69.52 → 1.69.53
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.
|
@@ -599,6 +599,33 @@ export declare enum ProjectBuildStage {
|
|
|
599
599
|
IDEATE = "ideate",
|
|
600
600
|
BUILD = "build"
|
|
601
601
|
}
|
|
602
|
+
export interface ProjectGuidelines {
|
|
603
|
+
initialGenerationAt: Timestamp | null;
|
|
604
|
+
/**
|
|
605
|
+
* The primary goal for the app
|
|
606
|
+
*/
|
|
607
|
+
primaryGoal: string;
|
|
608
|
+
/**
|
|
609
|
+
* Description of the app
|
|
610
|
+
*/
|
|
611
|
+
description: string;
|
|
612
|
+
/**
|
|
613
|
+
* The target audience for the app
|
|
614
|
+
*/
|
|
615
|
+
targetAudience: string;
|
|
616
|
+
/**
|
|
617
|
+
* Preferred platform for the app
|
|
618
|
+
*/
|
|
619
|
+
preferredPlatform: "desktop" | "tablet" | "mobile";
|
|
620
|
+
/**
|
|
621
|
+
* Design style like glassmorphism, neumorphism, etc, including color schemes etc
|
|
622
|
+
*/
|
|
623
|
+
design: string;
|
|
624
|
+
/**
|
|
625
|
+
* Important features of the app
|
|
626
|
+
*/
|
|
627
|
+
modules: string;
|
|
628
|
+
}
|
|
602
629
|
export interface Project {
|
|
603
630
|
createdAt: Timestamp;
|
|
604
631
|
createdBy?: PerformedBy;
|
|
@@ -607,6 +634,7 @@ export interface Project {
|
|
|
607
634
|
buildingStage?: ProjectBuildStage;
|
|
608
635
|
lifeStage: ProjectLifeStage;
|
|
609
636
|
lifeStageUpdatedBy: PerformedBy;
|
|
637
|
+
guidelines?: ProjectGuidelines;
|
|
610
638
|
aiGeneratedSummary?: string;
|
|
611
639
|
/**
|
|
612
640
|
* @deprecated No longer in use
|