@databutton/firebase-types 1.18.2 → 1.18.3

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.
@@ -536,7 +536,7 @@ export type RequirementsV2 = {
536
536
  pdmLock?: string | null;
537
537
  venvHash?: string | null;
538
538
  };
539
- export type BuildRequest = {
539
+ export type Build = {
540
540
  projectId: string;
541
541
  region: string;
542
542
  buildId: string;
@@ -552,4 +552,7 @@ export type BuildRequest = {
552
552
  buildFailedAt?: Timestamp;
553
553
  image?: string;
554
554
  };
555
+ export type BuildRequest = Omit<Build, "resolveFailedAt" | "resolveSucceededAt" | "buildStartedAt" | "buildSucceededAt" | "buildFailedAt"> & {
556
+ deployToDevx: boolean;
557
+ };
555
558
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.18.2",
3
+ "version": "1.18.3",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {