@databutton/firebase-types 1.12.47 → 1.12.49

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.
@@ -108,11 +108,14 @@ export interface Deployment {
108
108
  /**
109
109
  * Document created by the web app to signal that a component should be deployed.
110
110
  */
111
- export interface DeploymentRequest {
111
+ export interface AppDeploymentRequest {
112
112
  createdBy: PerformedBy;
113
- projectId: string;
114
- componentType: "app" | "job" | "module";
115
- componentId: string;
113
+ }
114
+ export interface JobDeploymentRequest {
115
+ createdBy: PerformedBy;
116
+ cronExpression: string;
117
+ cronTimezone: string;
118
+ scheduleForm: "Weekly" | "Custom";
116
119
  }
117
120
  export interface Schedule {
118
121
  createdAt: Timestamp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.12.47",
3
+ "version": "1.12.49",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {