@databutton/firebase-types 1.69.61 → 1.69.63

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.
@@ -625,6 +625,10 @@ export interface ProjectGuidelines {
625
625
  * Rules or constraints for the app
626
626
  */
627
627
  rules: string;
628
+ /**
629
+ * Generated design guidelines from the AI
630
+ */
631
+ generated?: string;
628
632
  }
629
633
  export interface Project {
630
634
  createdAt: Timestamp;
@@ -705,11 +709,14 @@ export interface ProjectTemplate {
705
709
  markedForDeletionBy: PerformedBy | null;
706
710
  description: string | null;
707
711
  tags?: string[];
712
+ /** @deprecated streamlit templates are all deleted */
708
713
  multipageAppPages?: ProjectTemplatePage[];
714
+ /** @deprecated streamlit templates are all deleted */
709
715
  jobs: {
710
716
  name: string;
711
717
  code: string;
712
718
  }[];
719
+ /** @deprecated streamlit templates are all deleted */
713
720
  modules: {
714
721
  name: string;
715
722
  code: string;
@@ -744,8 +751,9 @@ export interface ProjectTemplate {
744
751
  targetPoolSize?: number;
745
752
  variant?: "streamlit" | "beyond-streamlit";
746
753
  isExample?: boolean;
747
- deployedToUrl?: string;
748
- screenshotUrl?: string;
754
+ deployedToUrl?: string | null;
755
+ initialPromptInstructions?: string;
756
+ secretNames?: string[];
749
757
  }
750
758
  export interface Requirements {
751
759
  createdBy: PerformedBy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.69.61",
3
+ "version": "1.69.63",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {