@databutton/firebase-types 1.72.76 → 1.72.78
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.
|
@@ -906,14 +906,14 @@ export interface ProjectTemplatePage {
|
|
|
906
906
|
export interface ProjectTemplateRequirementsSnapshot {
|
|
907
907
|
dbtnControlledRequirementsTxt: string;
|
|
908
908
|
requirementsTxt: string;
|
|
909
|
-
venvHash
|
|
909
|
+
venvHash?: string;
|
|
910
910
|
}
|
|
911
911
|
export interface ProjectTemplateBuildSnapshot {
|
|
912
|
-
devxImage?: string;
|
|
913
|
-
prodxImage?: string;
|
|
914
912
|
devxVersion?: string;
|
|
915
913
|
workspaceVersion?: string;
|
|
916
914
|
image?: string | null;
|
|
915
|
+
devxImage?: string;
|
|
916
|
+
prodxImage?: string;
|
|
917
917
|
}
|
|
918
918
|
export interface ProjectTemplate {
|
|
919
919
|
createdBy: PerformedBy;
|
|
@@ -1098,10 +1098,16 @@ export type RequirementsSnapshot = {
|
|
|
1098
1098
|
venvHash?: string | null;
|
|
1099
1099
|
};
|
|
1100
1100
|
export type Build = {
|
|
1101
|
+
createdBy: PerformedBy;
|
|
1102
|
+
eventRef?: string | null;
|
|
1103
|
+
triggeredByRequirementsRef?: string | null;
|
|
1104
|
+
workspaceVersion?: string | null;
|
|
1101
1105
|
devxVersion?: string;
|
|
1102
1106
|
devxRequirementsId: string;
|
|
1103
1107
|
requirementsSnapshots: RequirementsSnapshot[];
|
|
1104
|
-
|
|
1108
|
+
image?: string | null;
|
|
1109
|
+
devxImage?: string | null;
|
|
1110
|
+
prodxImage?: string | null;
|
|
1105
1111
|
resolveStartedAt?: Timestamp | null;
|
|
1106
1112
|
resolveFailedAt?: Timestamp | null;
|
|
1107
1113
|
resolveSucceededAt?: Timestamp | null;
|
|
@@ -1111,12 +1117,6 @@ export type Build = {
|
|
|
1111
1117
|
devxDeployStartedAt: Timestamp | null;
|
|
1112
1118
|
devxDeploySucceededAt: Timestamp | null;
|
|
1113
1119
|
devxDeployFailedAt: Timestamp | null;
|
|
1114
|
-
image?: string | null;
|
|
1115
|
-
devxImage?: string | null;
|
|
1116
|
-
prodxImage?: string | null;
|
|
1117
|
-
eventRef?: string | null;
|
|
1118
|
-
triggeredByRequirementsRef?: string | null;
|
|
1119
|
-
workspaceVersion?: string | null;
|
|
1120
1120
|
};
|
|
1121
1121
|
type WithDocRef<T> = T & {
|
|
1122
1122
|
id: string;
|
|
@@ -1172,10 +1172,10 @@ export type JobSnapshot<T = ComponentSnapshotBase> = T & {
|
|
|
1172
1172
|
};
|
|
1173
1173
|
export type AppSnapshot<T = ComponentSnapshotBase> = {
|
|
1174
1174
|
deployedBy: PerformedBy;
|
|
1175
|
-
multipageApps
|
|
1175
|
+
multipageApps?: MultipageAppSnapshot<T>[];
|
|
1176
1176
|
modules?: ModuleSnapshot<T>[];
|
|
1177
|
+
jobs?: JobSnapshot<T>[];
|
|
1177
1178
|
backends?: BackendSnapshot<T>[];
|
|
1178
|
-
jobs: JobSnapshot<T>[];
|
|
1179
1179
|
uiFiles?: UiFileSnapshot<T>[];
|
|
1180
1180
|
uiComponents?: UiComponentSnapshot<T>[];
|
|
1181
1181
|
frontends?: FrontendSnapshot<T>[];
|
|
@@ -1188,12 +1188,16 @@ export interface ProjectDeploymentBase<T = ComponentSnapshotBase> extends AppSna
|
|
|
1188
1188
|
};
|
|
1189
1189
|
};
|
|
1190
1190
|
deploymentUrl?: string | null;
|
|
1191
|
+
prodxAppImage?: string | null;
|
|
1191
1192
|
deployStartedAt?: Timestamp | null;
|
|
1192
1193
|
deploySucceededAt?: Timestamp | null;
|
|
1193
1194
|
deployFailedAt?: Timestamp | null;
|
|
1194
1195
|
uploadStartedAt?: Timestamp | null;
|
|
1195
1196
|
uploadSucceededAt?: Timestamp | null;
|
|
1196
1197
|
uploadFailedAt?: Timestamp | null;
|
|
1198
|
+
imageBuildStartedAt?: Timestamp | null;
|
|
1199
|
+
imageBuildSucceededAt?: Timestamp | null;
|
|
1200
|
+
imageBuildFailedAt?: Timestamp | null;
|
|
1197
1201
|
}
|
|
1198
1202
|
export type ProjectDeployment = ProjectDeploymentBase;
|
|
1199
1203
|
export type AdminRequirementsConfig = {
|
|
@@ -1276,8 +1280,8 @@ export type Appbutler = {
|
|
|
1276
1280
|
customDomain?: string;
|
|
1277
1281
|
};
|
|
1278
1282
|
export type ProjectAppbutlers = {
|
|
1279
|
-
devxAppbutlerId
|
|
1280
|
-
prodxAppbutlerId
|
|
1283
|
+
devxAppbutlerId?: string | null;
|
|
1284
|
+
prodxAppbutlerId?: string | null;
|
|
1281
1285
|
region?: string;
|
|
1282
1286
|
};
|
|
1283
1287
|
export interface InitialDevxConfig {
|
|
@@ -1585,7 +1589,7 @@ export interface Commit {
|
|
|
1585
1589
|
parentIds: string[];
|
|
1586
1590
|
versionRefs: string[];
|
|
1587
1591
|
commitRequestId?: string;
|
|
1588
|
-
taskId?: string;
|
|
1592
|
+
taskId?: string | null;
|
|
1589
1593
|
}
|
|
1590
1594
|
export interface Branch {
|
|
1591
1595
|
createdBy: PerformedBy;
|