@databutton/firebase-types 1.42.14 → 1.42.16

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.
@@ -301,13 +301,19 @@ export interface JobDeploymentRequest extends DeploymentRequestBase {
301
301
  scheduleForm: "Weekly" | "Custom";
302
302
  }
303
303
  export type MultipageAppDeploymentRequest = DeploymentRequestBase;
304
+ export declare enum ScheduleState {
305
+ ACTIVE = "ACTIVE",
306
+ PAUSED = "PAUSED",
307
+ DELETED = "DELETED"
308
+ }
304
309
  export interface Schedule {
305
310
  createdAt: Timestamp;
306
311
  updatedAt: Timestamp;
312
+ markedForDeletionAt?: Timestamp;
307
313
  cronExpressionUtc: string;
308
314
  cronExpression: string;
309
315
  cronTimezone: string;
310
- state: "ACTIVE" | "PAUSED";
316
+ state: ScheduleState;
311
317
  id?: string;
312
318
  scheduleForm?: "Weekly" | "Custom";
313
319
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.42.14",
3
+ "version": "1.42.16",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {