@databutton/firebase-types 1.69.88 → 1.69.90
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.
|
@@ -639,15 +639,16 @@ export interface ProjectGuidelines {
|
|
|
639
639
|
export declare enum ProjectExtension {
|
|
640
640
|
SHADCN = "shadcn"
|
|
641
641
|
}
|
|
642
|
+
export type ProjectExtensions = {
|
|
643
|
+
name: ProjectExtension;
|
|
644
|
+
version: string;
|
|
645
|
+
}[];
|
|
642
646
|
export interface Project {
|
|
643
647
|
createdAt: Timestamp;
|
|
644
648
|
createdBy?: PerformedBy;
|
|
645
649
|
createdFromProjectTemplateId?: string | null;
|
|
646
650
|
variant?: "beyond-streamlit" | "streamlit";
|
|
647
|
-
extensions?:
|
|
648
|
-
name: ProjectExtension;
|
|
649
|
-
version: string;
|
|
650
|
-
}[];
|
|
651
|
+
extensions?: ProjectExtensions;
|
|
651
652
|
buildingStage?: ProjectBuildStage;
|
|
652
653
|
lifeStage: ProjectLifeStage;
|
|
653
654
|
lifeStageUpdatedBy: PerformedBy;
|
|
@@ -772,6 +773,7 @@ export interface ProjectTemplate {
|
|
|
772
773
|
deployedToUrl?: string | null;
|
|
773
774
|
initialPromptInstructions?: string;
|
|
774
775
|
secretNames?: string[];
|
|
776
|
+
extensions?: ProjectExtensions;
|
|
775
777
|
}
|
|
776
778
|
export interface Requirements {
|
|
777
779
|
createdBy: PerformedBy;
|