@databutton/firebase-types 1.12.56 → 1.12.57
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.
|
@@ -105,14 +105,15 @@ export interface Deployment {
|
|
|
105
105
|
requirementsRef?: string | null;
|
|
106
106
|
projectEventRef?: string | null;
|
|
107
107
|
}
|
|
108
|
+
interface DeploymentRequestBase {
|
|
109
|
+
createdBy: PerformedBy;
|
|
110
|
+
deploymentRef: string | null;
|
|
111
|
+
}
|
|
108
112
|
/**
|
|
109
113
|
* Document created by the web app to signal that a component should be deployed.
|
|
110
114
|
*/
|
|
111
|
-
export
|
|
112
|
-
|
|
113
|
-
}
|
|
114
|
-
export interface JobDeploymentRequest {
|
|
115
|
-
createdBy: PerformedBy;
|
|
115
|
+
export type AppDeploymentRequest = DeploymentRequestBase;
|
|
116
|
+
export interface JobDeploymentRequest extends DeploymentRequestBase {
|
|
116
117
|
cronExpression: string;
|
|
117
118
|
cronTimezone: string;
|
|
118
119
|
scheduleForm: "Weekly" | "Custom";
|