@databutton/firebase-types 1.69.60 → 1.69.62

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.
@@ -705,11 +705,14 @@ export interface ProjectTemplate {
705
705
  markedForDeletionBy: PerformedBy | null;
706
706
  description: string | null;
707
707
  tags?: string[];
708
+ /** @deprecated streamlit templates are all deleted */
708
709
  multipageAppPages?: ProjectTemplatePage[];
710
+ /** @deprecated streamlit templates are all deleted */
709
711
  jobs: {
710
712
  name: string;
711
713
  code: string;
712
714
  }[];
715
+ /** @deprecated streamlit templates are all deleted */
713
716
  modules: {
714
717
  name: string;
715
718
  code: string;
@@ -744,8 +747,9 @@ export interface ProjectTemplate {
744
747
  targetPoolSize?: number;
745
748
  variant?: "streamlit" | "beyond-streamlit";
746
749
  isExample?: boolean;
747
- deployedToUrl?: string;
748
- screenshotUrl?: string;
750
+ deployedToUrl?: string | null;
751
+ initialPromptInstructions?: string;
752
+ secretNames?: string[];
749
753
  }
750
754
  export interface Requirements {
751
755
  createdBy: PerformedBy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.69.60",
3
+ "version": "1.69.62",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {