@databutton/firebase-types 1.17.65 → 1.18.1

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.
@@ -377,6 +377,7 @@ export interface Project {
377
377
  deployFinishedAt?: Timestamp;
378
378
  deployCurrentDeployedId?: string;
379
379
  deployLastDeploymentSuccess?: boolean;
380
+ region?: string;
380
381
  }
381
382
  export interface ProjectTemplateApp {
382
383
  name: string;
@@ -528,4 +529,27 @@ export interface AppConfigSnapshot {
528
529
  multipageApps: MultipageAppSnapshot[];
529
530
  jobs: JobSnapshot[];
530
531
  }
532
+ export type RequirementsV2 = {
533
+ baseRequirementsTxt: string;
534
+ userRequirementsTxt: string;
535
+ pyprojectToml?: string | null;
536
+ pdmLock?: string | null;
537
+ venvHash?: string | null;
538
+ };
539
+ export type BuildRequest = {
540
+ projectId: string;
541
+ region: string;
542
+ buildId: string;
543
+ eventRef: string;
544
+ devxVersion: "@default" | string;
545
+ currentRequirements: RequirementsV2;
546
+ liveRequirements?: RequirementsV2[];
547
+ createdBy: PerformedBy;
548
+ resolveFailedAt?: Timestamp;
549
+ resolveSucceededAt?: Timestamp;
550
+ buildStartedAt?: Timestamp;
551
+ buildSucceededAt?: Timestamp;
552
+ buildFailedAt?: Timestamp;
553
+ image?: string;
554
+ };
531
555
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.17.65",
3
+ "version": "1.18.1",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {
@@ -77,7 +77,7 @@
77
77
  "firebase-functions-test": "2.4.0",
78
78
  "firebase-tools": "11.24.0",
79
79
  "inquirer": "9.1.4",
80
- "jest": "29.4.3",
80
+ "jest": "29.5.0",
81
81
  "rome": "11.0.0",
82
82
  "semantic-release": "19.0.5",
83
83
  "ts-jest": "29.0.5",