@databutton/firebase-types 1.53.8 → 1.53.9

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.
@@ -315,7 +315,15 @@ interface DeploymentRequestBase {
315
315
  createdBy: PerformedBy;
316
316
  deploymentRef: string | null;
317
317
  }
318
- export type JobDeploymentRequest = DeploymentRequestBase;
318
+ /**
319
+ * Document created by the web app to signal that a component should be deployed.
320
+ */
321
+ export type AppDeploymentRequest = DeploymentRequestBase;
322
+ export interface JobDeploymentRequest extends DeploymentRequestBase {
323
+ cronExpression: string;
324
+ cronTimezone: string;
325
+ scheduleForm: "Weekly" | "Custom";
326
+ }
319
327
  export type MultipageAppDeploymentRequest = DeploymentRequestBase;
320
328
  export declare enum ScheduleState {
321
329
  ACTIVE = "ACTIVE",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.53.8",
3
+ "version": "1.53.9",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {