@databutton/firebase-types 1.72.21 → 1.72.22
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.
|
@@ -862,14 +862,14 @@ export interface Project {
|
|
|
862
862
|
};
|
|
863
863
|
devxConfig?: {
|
|
864
864
|
provider: "fly" | "cloudrun";
|
|
865
|
-
cpuCount
|
|
866
|
-
memoryInGb
|
|
865
|
+
cpuCount?: number;
|
|
866
|
+
memoryInGb?: number;
|
|
867
867
|
};
|
|
868
868
|
prodxConfig?: {
|
|
869
869
|
provider: "cloudrun";
|
|
870
|
-
cpuCount
|
|
871
|
-
memoryInGb
|
|
872
|
-
alwaysOn
|
|
870
|
+
cpuCount?: number;
|
|
871
|
+
memoryInGb?: number;
|
|
872
|
+
alwaysOn?: boolean;
|
|
873
873
|
};
|
|
874
874
|
}
|
|
875
875
|
export type DnsRecord = {
|