@databutton/firebase-types 1.78.110 → 1.78.112
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?:
|
|
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?:
|
|
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?:
|
|
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
|
|
1589
|
+
databutton?: string;
|
|
1589
1590
|
ipykernel?: string;
|
|
1590
1591
|
streamlit?: string;
|
|
1591
1592
|
watchdog?: string;
|