@databutton/firebase-types 1.53.8 → 1.53.10
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.
|
@@ -315,7 +315,15 @@ interface DeploymentRequestBase {
|
|
|
315
315
|
createdBy: PerformedBy;
|
|
316
316
|
deploymentRef: string | null;
|
|
317
317
|
}
|
|
318
|
-
|
|
318
|
+
/**
|
|
319
|
+
* Document created by the web app to signal that a component should be deployed.
|
|
320
|
+
*/
|
|
321
|
+
export type AppDeploymentRequest = DeploymentRequestBase;
|
|
322
|
+
export interface JobDeploymentRequest extends DeploymentRequestBase {
|
|
323
|
+
cronExpression: string;
|
|
324
|
+
cronTimezone: string;
|
|
325
|
+
scheduleForm: "Weekly" | "Custom";
|
|
326
|
+
}
|
|
319
327
|
export type MultipageAppDeploymentRequest = DeploymentRequestBase;
|
|
320
328
|
export declare enum ScheduleState {
|
|
321
329
|
ACTIVE = "ACTIVE",
|