@databutton/firebase-types 1.69.107 → 1.69.109
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,7 @@ export declare enum ProjectBuildStage {
|
|
|
605
605
|
IDEATE = "ideate",
|
|
606
606
|
BUILD = "build"
|
|
607
607
|
}
|
|
608
|
-
export type ProjectGuidelines =
|
|
608
|
+
export type ProjectGuidelines = ProjectGuidelinesV2;
|
|
609
609
|
export interface ProjectGuidelinesV2 {
|
|
610
610
|
version: "2";
|
|
611
611
|
pitch: string;
|
|
@@ -736,6 +736,9 @@ export interface Project {
|
|
|
736
736
|
favIconLight?: string;
|
|
737
737
|
favIconDark?: string;
|
|
738
738
|
shouldShowStartGuide?: boolean;
|
|
739
|
+
/**
|
|
740
|
+
* @deprecated
|
|
741
|
+
*/
|
|
739
742
|
about?: string;
|
|
740
743
|
githubUrl?: string;
|
|
741
744
|
isShowcase?: boolean;
|
|
@@ -752,6 +755,9 @@ export interface Project {
|
|
|
752
755
|
serviceCreationFailedAt?: Timestamp;
|
|
753
756
|
checkpointsGeneratedAt?: Timestamp;
|
|
754
757
|
customDomain?: ProjectCustomDomain | null;
|
|
758
|
+
/**
|
|
759
|
+
* @deprecated
|
|
760
|
+
*/
|
|
755
761
|
initialAppIdea?: string | null;
|
|
756
762
|
educationalContent?: {
|
|
757
763
|
coreIdea?: {
|