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