@databutton/firebase-types 1.72.10 → 1.72.12
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.
|
@@ -74,6 +74,7 @@ export var DatabuttonIdPrefix;
|
|
|
74
74
|
DatabuttonIdPrefix["CODE_BLOCK_VERSION"] = "cbv";
|
|
75
75
|
DatabuttonIdPrefix["CODE_BLOCK_CHECKPOINT"] = "cp";
|
|
76
76
|
DatabuttonIdPrefix["COMMIT"] = "cm";
|
|
77
|
+
DatabuttonIdPrefix["COMMIT_REQUEST"] = "cmr";
|
|
77
78
|
DatabuttonIdPrefix["FRONTEND"] = "fe";
|
|
78
79
|
DatabuttonIdPrefix["JOB"] = "jb";
|
|
79
80
|
DatabuttonIdPrefix["JOB_DEPLOY"] = "jd";
|
|
@@ -796,6 +796,7 @@ export interface Project {
|
|
|
796
796
|
createdBy?: PerformedBy;
|
|
797
797
|
createdFromProjectTemplateId?: string | null;
|
|
798
798
|
variant?: "beyond-streamlit" | "streamlit";
|
|
799
|
+
startingPrompt?: string | null;
|
|
799
800
|
extensions?: ProjectExtensions;
|
|
800
801
|
taskConfig?: {
|
|
801
802
|
idPrefix: string;
|
|
@@ -839,6 +840,7 @@ export interface Project {
|
|
|
839
840
|
deployFinishedAt?: Timestamp;
|
|
840
841
|
deployCurrentDeployedId?: string;
|
|
841
842
|
deployLastDeploymentSuccess?: boolean;
|
|
843
|
+
commitCounter?: number;
|
|
842
844
|
currentBuildId?: string | null;
|
|
843
845
|
currentBuildCommitId?: string | null;
|
|
844
846
|
currentDeploymentId?: string | null;
|
|
@@ -1535,6 +1537,7 @@ export interface Commit {
|
|
|
1535
1537
|
tags: string[];
|
|
1536
1538
|
parentIds: string[];
|
|
1537
1539
|
versionRefs: string[];
|
|
1540
|
+
commitRequestId?: string;
|
|
1538
1541
|
}
|
|
1539
1542
|
export interface Branch {
|
|
1540
1543
|
createdBy: PerformedBy;
|