@databutton/firebase-types 1.53.6 → 1.53.7

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.
@@ -334,13 +334,15 @@ export interface Schedule {
334
334
  createdAt: Timestamp;
335
335
  updatedAt: Timestamp;
336
336
  markedForDeletionAt?: Timestamp;
337
+ id?: string;
338
+ scheduleForm?: "Weekly" | "Custom";
337
339
  cronExpressionUtc: string;
338
340
  cronExpression: string;
339
341
  cronTimezone: string;
340
- state: ScheduleState;
342
+ state?: ScheduleState;
341
343
  previousState?: ScheduleState | null;
342
- id?: string;
343
- scheduleForm?: "Weekly" | "Custom";
344
+ pending?: boolean;
345
+ paused?: boolean;
344
346
  }
345
347
  export interface Property {
346
348
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.53.6",
3
+ "version": "1.53.7",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {