@databutton/firebase-types 1.72.20 → 1.72.21

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.
@@ -860,6 +860,17 @@ export interface Project {
860
860
  readAt?: Timestamp | null;
861
861
  };
862
862
  };
863
+ devxConfig?: {
864
+ provider: "fly" | "cloudrun";
865
+ cpuCount: number;
866
+ memoryInGb: number;
867
+ };
868
+ prodxConfig?: {
869
+ provider: "cloudrun";
870
+ cpuCount: number;
871
+ memoryInGb: number;
872
+ alwaysOn: boolean;
873
+ };
863
874
  }
864
875
  export type DnsRecord = {
865
876
  name: string;
@@ -931,7 +942,9 @@ export interface ProjectTemplate {
931
942
  /** @deprecated Use build */
932
943
  buildRef?: string | null;
933
944
  build?: {
934
- image?: string;
945
+ image?: string | null;
946
+ devxImage?: string | null;
947
+ prodxImage?: string | null;
935
948
  requirementsSnapshots: RequirementsSnapshot[];
936
949
  devxRequirementsId: string;
937
950
  } | null;
@@ -1087,7 +1100,9 @@ export type Build = {
1087
1100
  devxDeployStartedAt: Timestamp | null;
1088
1101
  devxDeploySucceededAt: Timestamp | null;
1089
1102
  devxDeployFailedAt: Timestamp | null;
1090
- image?: string;
1103
+ image?: string | null;
1104
+ devxImage?: string | null;
1105
+ prodxImage?: string | null;
1091
1106
  eventRef?: string | null;
1092
1107
  triggeredByRequirementsRef?: string | null;
1093
1108
  workspaceVersion?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.72.20",
3
+ "version": "1.72.21",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {