@databutton/firebase-types 1.78.111 → 1.78.113

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.
@@ -924,11 +924,12 @@ export interface Integration {
924
924
  codeSnippet: string;
925
925
  } | null;
926
926
  }
927
+ export type ProjectVariant = "streamlit" | "beyond-streamlit" | "riff";
927
928
  export interface Project {
928
929
  createdAt: Timestamp;
929
930
  createdBy?: PerformedBy;
930
931
  createdFromProjectTemplateId?: string | null;
931
- variant?: "beyond-streamlit" | "streamlit";
932
+ variant?: ProjectVariant;
932
933
  startingPrompt?: string | null;
933
934
  startingPointGeneratedBy?: PerformedBy | null;
934
935
  extensions?: ProjectExtensions;
@@ -1144,7 +1145,7 @@ export interface ProjectTemplate {
1144
1145
  requirements?: ProjectTemplateRequirementsSnapshot | null;
1145
1146
  build: ProjectTemplateBuildSnapshot;
1146
1147
  targetPoolSize?: number;
1147
- variant?: "streamlit" | "beyond-streamlit";
1148
+ variant?: ProjectVariant;
1148
1149
  initialPromptInstructions?: string;
1149
1150
  secretNames?: string[];
1150
1151
  agentConfig?: Project["agentConfig"];
@@ -1539,7 +1540,7 @@ export type Appbutler = {
1539
1540
  updatedBy?: PerformedBy;
1540
1541
  routingChangedAt?: Timestamp;
1541
1542
  markedForDeletionAt: Timestamp | null;
1542
- variant?: string;
1543
+ variant?: ProjectVariant;
1543
1544
  provider?: string;
1544
1545
  serviceType: string;
1545
1546
  resources: AppbutlerResources;
@@ -1585,7 +1586,7 @@ export interface WorkspaceConfig {
1585
1586
  [key: string]: string | undefined;
1586
1587
  }
1587
1588
  export interface DbtnControllerRequirements {
1588
- databutton: string;
1589
+ databutton?: string;
1589
1590
  ipykernel?: string;
1590
1591
  streamlit?: string;
1591
1592
  watchdog?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.78.111",
3
+ "version": "1.78.113",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {