@databutton/firebase-types 1.78.46 → 1.78.47
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.
|
@@ -975,15 +975,15 @@ export interface Project {
|
|
|
975
975
|
isShowcase?: boolean;
|
|
976
976
|
last_deployed?: Timestamp;
|
|
977
977
|
schema?: "2022-12-07" | "2022-08-22" | null;
|
|
978
|
-
deployIsInProgress?: boolean;
|
|
979
|
-
deployFinishedAt?: Timestamp;
|
|
980
|
-
deployCurrentDeployedId?: string;
|
|
981
|
-
deployLastDeploymentSuccess?: boolean;
|
|
982
978
|
commitCounter?: number;
|
|
983
979
|
currentBuildId?: string | null;
|
|
984
980
|
currentBuildCommitId?: string | null;
|
|
985
981
|
currentDeploymentId?: string | null;
|
|
986
982
|
currentDeploymentCommitId?: string | null;
|
|
983
|
+
ongoingBuildId?: string | null;
|
|
984
|
+
ongoingDeploymentId?: string | null;
|
|
985
|
+
lastFailedBuildId?: string | null;
|
|
986
|
+
lastFailedDeploymentId?: string | null;
|
|
987
987
|
serviceCreationStartedAt?: Timestamp;
|
|
988
988
|
serviceCreationSucceededAt?: Timestamp;
|
|
989
989
|
serviceCreationFailedAt?: Timestamp;
|
|
@@ -1150,8 +1150,6 @@ export interface ProjectTemplate {
|
|
|
1150
1150
|
extensions?: ProjectExtensions;
|
|
1151
1151
|
annotations?: Record<string, string>;
|
|
1152
1152
|
guidelines?: ProjectGuidelines;
|
|
1153
|
-
isExample?: boolean;
|
|
1154
|
-
deployedToUrl?: string | null;
|
|
1155
1153
|
clonableBy?: "all" | "selected" | "owner";
|
|
1156
1154
|
selectedUsersAllowedToClone?: string[];
|
|
1157
1155
|
}
|