@databutton/firebase-types 1.72.78 → 1.72.79
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;
|
|
912
914
|
devxVersion?: string;
|
|
913
915
|
workspaceVersion?: string;
|
|
914
916
|
image?: string | null;
|
|
915
|
-
devxImage?: string;
|
|
916
|
-
prodxImage?: string;
|
|
917
917
|
}
|
|
918
918
|
export interface ProjectTemplate {
|
|
919
919
|
createdBy: PerformedBy;
|
|
@@ -1098,16 +1098,10 @@ 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;
|
|
1105
1101
|
devxVersion?: string;
|
|
1106
1102
|
devxRequirementsId: string;
|
|
1107
1103
|
requirementsSnapshots: RequirementsSnapshot[];
|
|
1108
|
-
|
|
1109
|
-
devxImage?: string | null;
|
|
1110
|
-
prodxImage?: string | null;
|
|
1104
|
+
createdBy: PerformedBy;
|
|
1111
1105
|
resolveStartedAt?: Timestamp | null;
|
|
1112
1106
|
resolveFailedAt?: Timestamp | null;
|
|
1113
1107
|
resolveSucceededAt?: Timestamp | null;
|
|
@@ -1117,6 +1111,12 @@ export type Build = {
|
|
|
1117
1111
|
devxDeployStartedAt: Timestamp | null;
|
|
1118
1112
|
devxDeploySucceededAt: Timestamp | null;
|
|
1119
1113
|
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>[];
|
|
1178
1177
|
backends?: BackendSnapshot<T>[];
|
|
1178
|
+
jobs: JobSnapshot<T>[];
|
|
1179
1179
|
uiFiles?: UiFileSnapshot<T>[];
|
|
1180
1180
|
uiComponents?: UiComponentSnapshot<T>[];
|
|
1181
1181
|
frontends?: FrontendSnapshot<T>[];
|
|
@@ -1188,16 +1188,12 @@ export interface ProjectDeploymentBase<T = ComponentSnapshotBase> extends AppSna
|
|
|
1188
1188
|
};
|
|
1189
1189
|
};
|
|
1190
1190
|
deploymentUrl?: string | null;
|
|
1191
|
-
prodxAppImage?: string | null;
|
|
1192
1191
|
deployStartedAt?: Timestamp | null;
|
|
1193
1192
|
deploySucceededAt?: Timestamp | null;
|
|
1194
1193
|
deployFailedAt?: Timestamp | null;
|
|
1195
1194
|
uploadStartedAt?: Timestamp | null;
|
|
1196
1195
|
uploadSucceededAt?: Timestamp | null;
|
|
1197
1196
|
uploadFailedAt?: Timestamp | null;
|
|
1198
|
-
imageBuildStartedAt?: Timestamp | null;
|
|
1199
|
-
imageBuildSucceededAt?: Timestamp | null;
|
|
1200
|
-
imageBuildFailedAt?: Timestamp | null;
|
|
1201
1197
|
}
|
|
1202
1198
|
export type ProjectDeployment = ProjectDeploymentBase;
|
|
1203
1199
|
export type AdminRequirementsConfig = {
|
|
@@ -1280,8 +1276,8 @@ export type Appbutler = {
|
|
|
1280
1276
|
customDomain?: string;
|
|
1281
1277
|
};
|
|
1282
1278
|
export type ProjectAppbutlers = {
|
|
1283
|
-
devxAppbutlerId
|
|
1284
|
-
prodxAppbutlerId
|
|
1279
|
+
devxAppbutlerId: string;
|
|
1280
|
+
prodxAppbutlerId: string | null;
|
|
1285
1281
|
region?: string;
|
|
1286
1282
|
};
|
|
1287
1283
|
export interface InitialDevxConfig {
|