@databutton/firebase-types 1.72.10 → 1.72.12

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.
@@ -72,6 +72,7 @@ export declare enum DatabuttonIdPrefix {
72
72
  CODE_BLOCK_VERSION = "cbv",
73
73
  CODE_BLOCK_CHECKPOINT = "cp",
74
74
  COMMIT = "cm",
75
+ COMMIT_REQUEST = "cmr",
75
76
  FRONTEND = "fe",
76
77
  JOB = "jb",
77
78
  JOB_DEPLOY = "jd",
@@ -74,6 +74,7 @@ export var DatabuttonIdPrefix;
74
74
  DatabuttonIdPrefix["CODE_BLOCK_VERSION"] = "cbv";
75
75
  DatabuttonIdPrefix["CODE_BLOCK_CHECKPOINT"] = "cp";
76
76
  DatabuttonIdPrefix["COMMIT"] = "cm";
77
+ DatabuttonIdPrefix["COMMIT_REQUEST"] = "cmr";
77
78
  DatabuttonIdPrefix["FRONTEND"] = "fe";
78
79
  DatabuttonIdPrefix["JOB"] = "jb";
79
80
  DatabuttonIdPrefix["JOB_DEPLOY"] = "jd";
@@ -796,6 +796,7 @@ export interface Project {
796
796
  createdBy?: PerformedBy;
797
797
  createdFromProjectTemplateId?: string | null;
798
798
  variant?: "beyond-streamlit" | "streamlit";
799
+ startingPrompt?: string | null;
799
800
  extensions?: ProjectExtensions;
800
801
  taskConfig?: {
801
802
  idPrefix: string;
@@ -839,6 +840,7 @@ export interface Project {
839
840
  deployFinishedAt?: Timestamp;
840
841
  deployCurrentDeployedId?: string;
841
842
  deployLastDeploymentSuccess?: boolean;
843
+ commitCounter?: number;
842
844
  currentBuildId?: string | null;
843
845
  currentBuildCommitId?: string | null;
844
846
  currentDeploymentId?: string | null;
@@ -1535,6 +1537,7 @@ export interface Commit {
1535
1537
  tags: string[];
1536
1538
  parentIds: string[];
1537
1539
  versionRefs: string[];
1540
+ commitRequestId?: string;
1538
1541
  }
1539
1542
  export interface Branch {
1540
1543
  createdBy: PerformedBy;
@@ -12,6 +12,7 @@ export type CreateOrUpdateProjectTemplateRequest = {
12
12
  };
13
13
  export type CreateProjectRequest = {
14
14
  name: string;
15
+ startingPrompt?: string;
15
16
  description?: string;
16
17
  initialAppIdea?: string | null;
17
18
  projectTemplateId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.72.10",
3
+ "version": "1.72.12",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {