@databutton/firebase-types 1.42.14 → 1.42.15
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:
|
|
316
|
+
state: ScheduleState;
|
|
311
317
|
id?: string;
|
|
312
318
|
scheduleForm?: "Weekly" | "Custom";
|
|
313
319
|
}
|