@databutton/firebase-types 1.56.17 → 1.56.18
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.
|
@@ -571,6 +571,7 @@ export interface ProjectTemplate {
|
|
|
571
571
|
devxRequirementsId: string;
|
|
572
572
|
} | null;
|
|
573
573
|
targetPoolSize?: number;
|
|
574
|
+
variant?: "streamlit" | "beyond-streamlit";
|
|
574
575
|
}
|
|
575
576
|
export interface Requirements {
|
|
576
577
|
createdBy: PerformedBy;
|
|
@@ -862,16 +863,21 @@ export interface WorkspaceConfig {
|
|
|
862
863
|
active: string;
|
|
863
864
|
latest: string;
|
|
864
865
|
minimum: string;
|
|
866
|
+
beyond?: string;
|
|
867
|
+
[key: string]: string | undefined;
|
|
865
868
|
}
|
|
866
869
|
export interface DbtnControllerRequirements {
|
|
867
870
|
databutton: string;
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
watchdog
|
|
871
|
+
ipykernel?: string;
|
|
872
|
+
streamlit?: string;
|
|
873
|
+
watchdog?: string;
|
|
874
|
+
fastapi?: string;
|
|
875
|
+
"uvicorn[standard]"?: string;
|
|
871
876
|
}
|
|
872
877
|
export interface WorkspaceConfigVersion {
|
|
873
878
|
devxVersion: string;
|
|
874
879
|
dbtnControlledRequirements: DbtnControllerRequirements;
|
|
880
|
+
dbtnControlledRequirementsTxt?: string;
|
|
875
881
|
}
|
|
876
882
|
export interface UsageRecordBase {
|
|
877
883
|
customerId: string;
|