@databutton/firebase-types 1.72.49 → 1.72.51
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.
|
@@ -799,6 +799,7 @@ export interface Project {
|
|
|
799
799
|
startingPrompt?: string | null;
|
|
800
800
|
startingPointGeneratedBy?: PerformedBy | null;
|
|
801
801
|
extensions?: ProjectExtensions;
|
|
802
|
+
annotations?: Record<string, string>;
|
|
802
803
|
taskConfig?: {
|
|
803
804
|
idPrefix: string;
|
|
804
805
|
lastTaskNumber: number;
|
|
@@ -899,6 +900,18 @@ export interface ProjectTemplatePage {
|
|
|
899
900
|
hidden?: boolean;
|
|
900
901
|
screenshot: string | null;
|
|
901
902
|
}
|
|
903
|
+
export interface ProjectTemplateRequirementsSnapshot {
|
|
904
|
+
dbtnControlledRequirementsTxt: string;
|
|
905
|
+
requirementsTxt: string;
|
|
906
|
+
venvHash: string;
|
|
907
|
+
}
|
|
908
|
+
export interface ProjectTemplateBuildSnapshot {
|
|
909
|
+
devxImage?: string;
|
|
910
|
+
prodxImage?: string;
|
|
911
|
+
devxVersion?: string;
|
|
912
|
+
workspaceVersion?: string;
|
|
913
|
+
image?: string | null;
|
|
914
|
+
}
|
|
902
915
|
export interface ProjectTemplate {
|
|
903
916
|
createdBy: PerformedBy;
|
|
904
917
|
hasDeletionProtection?: boolean;
|
|
@@ -914,12 +927,12 @@ export interface ProjectTemplate {
|
|
|
914
927
|
/** @deprecated streamlit templates are all deleted */
|
|
915
928
|
multipageAppPages?: ProjectTemplatePage[];
|
|
916
929
|
/** @deprecated streamlit templates are all deleted */
|
|
917
|
-
jobs
|
|
930
|
+
jobs?: {
|
|
918
931
|
name: string;
|
|
919
932
|
code: string;
|
|
920
933
|
}[];
|
|
921
934
|
/** @deprecated streamlit templates are all deleted */
|
|
922
|
-
modules
|
|
935
|
+
modules?: {
|
|
923
936
|
name: string;
|
|
924
937
|
code: string;
|
|
925
938
|
}[];
|
|
@@ -940,29 +953,16 @@ export interface ProjectTemplate {
|
|
|
940
953
|
name: string;
|
|
941
954
|
code: string;
|
|
942
955
|
}[];
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
requirements: {
|
|
946
|
-
dbtnControlledRequirementsTxt: string;
|
|
947
|
-
requirementsTxt: string;
|
|
948
|
-
venvHash: string;
|
|
949
|
-
};
|
|
950
|
-
/** @deprecated Use build */
|
|
951
|
-
buildRef?: string | null;
|
|
952
|
-
build?: {
|
|
953
|
-
image?: string | null;
|
|
954
|
-
devxImage?: string | null;
|
|
955
|
-
prodxImage?: string | null;
|
|
956
|
-
requirementsSnapshots: RequirementsSnapshot[];
|
|
957
|
-
devxRequirementsId: string;
|
|
958
|
-
} | null;
|
|
956
|
+
requirements: ProjectTemplateRequirementsSnapshot;
|
|
957
|
+
build: ProjectTemplateBuildSnapshot;
|
|
959
958
|
targetPoolSize?: number;
|
|
960
959
|
variant?: "streamlit" | "beyond-streamlit";
|
|
961
|
-
isExample?: boolean;
|
|
962
|
-
deployedToUrl?: string | null;
|
|
963
960
|
initialPromptInstructions?: string;
|
|
964
961
|
secretNames?: string[];
|
|
965
962
|
extensions?: ProjectExtensions;
|
|
963
|
+
annotations?: Record<string, string>;
|
|
964
|
+
isExample?: boolean;
|
|
965
|
+
deployedToUrl?: string | null;
|
|
966
966
|
}
|
|
967
967
|
export interface Requirements {
|
|
968
968
|
createdBy: PerformedBy;
|