@databutton/firebase-types 1.53.11 → 1.53.13
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;
|