@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
- streamlit: string;
869
- ipykernel: string;
870
- watchdog: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.56.17",
3
+ "version": "1.56.18",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {