@databutton/firebase-types 1.69.106 → 1.69.108
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.
|
@@ -298,20 +298,6 @@ export interface UiFile {
|
|
|
298
298
|
markedForDeletionBy: PerformedBy | null;
|
|
299
299
|
codeBlockRef: string;
|
|
300
300
|
}
|
|
301
|
-
export interface StaticAsset {
|
|
302
|
-
createdBy?: PerformedBy;
|
|
303
|
-
lastUpdatedBy?: PerformedBy;
|
|
304
|
-
markedForDeletionAt?: Timestamp | null;
|
|
305
|
-
markedForDeletionBy?: PerformedBy | null;
|
|
306
|
-
contentType?: string;
|
|
307
|
-
blobGeneration?: string;
|
|
308
|
-
etag: string;
|
|
309
|
-
md5: string;
|
|
310
|
-
size: string;
|
|
311
|
-
href: string;
|
|
312
|
-
name?: string | null;
|
|
313
|
-
slug?: string | null;
|
|
314
|
-
}
|
|
315
301
|
export declare enum StepState {
|
|
316
302
|
TODO = "todo",
|
|
317
303
|
IN_PROGRESS = "in-progress",
|
|
@@ -619,7 +605,7 @@ export declare enum ProjectBuildStage {
|
|
|
619
605
|
IDEATE = "ideate",
|
|
620
606
|
BUILD = "build"
|
|
621
607
|
}
|
|
622
|
-
export type ProjectGuidelines =
|
|
608
|
+
export type ProjectGuidelines = ProjectGuidelinesV2;
|
|
623
609
|
export interface ProjectGuidelinesV2 {
|
|
624
610
|
version: "2";
|
|
625
611
|
pitch: string;
|
|
@@ -750,6 +736,9 @@ export interface Project {
|
|
|
750
736
|
favIconLight?: string;
|
|
751
737
|
favIconDark?: string;
|
|
752
738
|
shouldShowStartGuide?: boolean;
|
|
739
|
+
/**
|
|
740
|
+
* @deprecated
|
|
741
|
+
*/
|
|
753
742
|
about?: string;
|
|
754
743
|
githubUrl?: string;
|
|
755
744
|
isShowcase?: boolean;
|
|
@@ -766,6 +755,9 @@ export interface Project {
|
|
|
766
755
|
serviceCreationFailedAt?: Timestamp;
|
|
767
756
|
checkpointsGeneratedAt?: Timestamp;
|
|
768
757
|
customDomain?: ProjectCustomDomain | null;
|
|
758
|
+
/**
|
|
759
|
+
* @deprecated
|
|
760
|
+
*/
|
|
769
761
|
initialAppIdea?: string | null;
|
|
770
762
|
educationalContent?: {
|
|
771
763
|
coreIdea?: {
|