@databutton/firebase-types 1.72.48 → 1.72.50

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,16 @@ 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
+ image?: string | null;
912
+ }
902
913
  export interface ProjectTemplate {
903
914
  createdBy: PerformedBy;
904
915
  hasDeletionProtection?: boolean;
@@ -914,12 +925,12 @@ export interface ProjectTemplate {
914
925
  /** @deprecated streamlit templates are all deleted */
915
926
  multipageAppPages?: ProjectTemplatePage[];
916
927
  /** @deprecated streamlit templates are all deleted */
917
- jobs: {
928
+ jobs?: {
918
929
  name: string;
919
930
  code: string;
920
931
  }[];
921
932
  /** @deprecated streamlit templates are all deleted */
922
- modules: {
933
+ modules?: {
923
934
  name: string;
924
935
  code: string;
925
936
  }[];
@@ -940,29 +951,16 @@ export interface ProjectTemplate {
940
951
  name: string;
941
952
  code: string;
942
953
  }[];
943
- /** @deprecated Use requirements */
944
- requirementsRef: string;
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;
954
+ requirements: ProjectTemplateRequirementsSnapshot;
955
+ build: ProjectTemplateBuildSnapshot;
959
956
  targetPoolSize?: number;
960
957
  variant?: "streamlit" | "beyond-streamlit";
961
- isExample?: boolean;
962
- deployedToUrl?: string | null;
963
958
  initialPromptInstructions?: string;
964
959
  secretNames?: string[];
965
960
  extensions?: ProjectExtensions;
961
+ annotations?: Record<string, string>;
962
+ isExample?: boolean;
963
+ deployedToUrl?: string | null;
966
964
  }
967
965
  export interface Requirements {
968
966
  createdBy: PerformedBy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.72.48",
3
+ "version": "1.72.50",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {