@databutton/firebase-types 1.26.8 → 1.26.10
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.
|
@@ -378,8 +378,11 @@ export interface Project {
|
|
|
378
378
|
deployCurrentDeployedId?: string;
|
|
379
379
|
deployLastDeploymentSuccess?: boolean;
|
|
380
380
|
region?: string;
|
|
381
|
-
currentDeploymentId?: string | null;
|
|
382
381
|
currentBuildId?: string | null;
|
|
382
|
+
currentDeploymentId?: string | null;
|
|
383
|
+
serviceCreationStartedAt?: Timestamp;
|
|
384
|
+
serviceCreationSucceededAt?: Timestamp;
|
|
385
|
+
serviceCreationFailedAt?: Timestamp;
|
|
383
386
|
}
|
|
384
387
|
export interface ProjectTemplateApp {
|
|
385
388
|
name: string;
|
|
@@ -420,15 +423,19 @@ export interface ProjectTemplate {
|
|
|
420
423
|
export interface Requirements {
|
|
421
424
|
createdBy: PerformedBy;
|
|
422
425
|
prevRequirementsId: string | null;
|
|
423
|
-
installStartedAt: Timestamp | null;
|
|
424
|
-
installSuccessAt: Timestamp | null;
|
|
425
|
-
installFailedAt: Timestamp | null;
|
|
426
|
-
logs: string | null;
|
|
427
426
|
dbtnControlledRequirementsTxt?: string | null;
|
|
428
427
|
requirementsTxt: string;
|
|
428
|
+
resolveStartedAt?: Timestamp;
|
|
429
|
+
resolveFailedAt?: Timestamp;
|
|
430
|
+
resolveSucceededAt?: Timestamp;
|
|
431
|
+
pyprojectToml?: string;
|
|
432
|
+
venvHash?: string;
|
|
433
|
+
installStartedAt?: Timestamp | null;
|
|
434
|
+
installSuccessAt?: Timestamp | null;
|
|
435
|
+
installFailedAt?: Timestamp | null;
|
|
429
436
|
requirementsLock: string | null;
|
|
430
437
|
requirementsHash: string | null;
|
|
431
|
-
|
|
438
|
+
logs: string | null;
|
|
432
439
|
}
|
|
433
440
|
export interface ProdxConfig {
|
|
434
441
|
views?: {
|