@databutton/firebase-types 1.72.19 → 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;
|
|
@@ -1286,6 +1301,8 @@ export interface DbtnControllerRequirements {
|
|
|
1286
1301
|
fastapi?: string;
|
|
1287
1302
|
"uvicorn[standard]"?: string;
|
|
1288
1303
|
[key: string]: string | undefined;
|
|
1304
|
+
cryptography?: string;
|
|
1305
|
+
pyjwt?: string;
|
|
1289
1306
|
}
|
|
1290
1307
|
export interface WorkspaceConfigVersion {
|
|
1291
1308
|
devxVersion: string;
|