@databutton/firebase-types 1.56.21 → 1.56.23
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.
|
@@ -58,6 +58,7 @@ export interface Profile {
|
|
|
58
58
|
discoveryPopupReadAt?: Timestamp | null;
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
|
+
utm?: Record<string, string>;
|
|
61
62
|
/**
|
|
62
63
|
* Timestamp when the profile was created
|
|
63
64
|
*/
|
|
@@ -480,11 +481,16 @@ export interface ProjectLifeStageChangeRequest {
|
|
|
480
481
|
targetLifeStage: ProjectLifeStage;
|
|
481
482
|
requestedBy: PerformedBy;
|
|
482
483
|
}
|
|
484
|
+
export declare enum ProjectBuildStage {
|
|
485
|
+
IDEATE = "ideate",
|
|
486
|
+
BUILD = "build"
|
|
487
|
+
}
|
|
483
488
|
export interface Project {
|
|
484
489
|
createdAt: Timestamp;
|
|
485
490
|
createdBy?: PerformedBy;
|
|
486
491
|
createdFromProjectTemplateId?: string | null;
|
|
487
492
|
variant?: "beyond-streamlit" | "streamlit";
|
|
493
|
+
buildingStage?: ProjectBuildStage;
|
|
488
494
|
lifeStage: ProjectLifeStage;
|
|
489
495
|
lifeStageUpdatedBy: PerformedBy;
|
|
490
496
|
/**
|
|
@@ -15,4 +15,9 @@ export var ProjectLifeStage;
|
|
|
15
15
|
ProjectLifeStage["Deleting"] = "deleting";
|
|
16
16
|
ProjectLifeStage["Deleted"] = "deleted";
|
|
17
17
|
})(ProjectLifeStage = ProjectLifeStage || (ProjectLifeStage = {}));
|
|
18
|
+
export var ProjectBuildStage;
|
|
19
|
+
(function (ProjectBuildStage) {
|
|
20
|
+
ProjectBuildStage["IDEATE"] = "ideate";
|
|
21
|
+
ProjectBuildStage["BUILD"] = "build";
|
|
22
|
+
})(ProjectBuildStage = ProjectBuildStage || (ProjectBuildStage = {}));
|
|
18
23
|
//# sourceMappingURL=persisted.js.map
|