@databutton/firebase-types 1.53.7 → 1.53.8
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,15 +315,7 @@ interface DeploymentRequestBase {
|
|
|
315
315
|
createdBy: PerformedBy;
|
|
316
316
|
deploymentRef: string | null;
|
|
317
317
|
}
|
|
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
|
-
}
|
|
318
|
+
export type JobDeploymentRequest = DeploymentRequestBase;
|
|
327
319
|
export type MultipageAppDeploymentRequest = DeploymentRequestBase;
|
|
328
320
|
export declare enum ScheduleState {
|
|
329
321
|
ACTIVE = "ACTIVE",
|
|
@@ -30,6 +30,14 @@ export type WakeProjectResponse = {};
|
|
|
30
30
|
export type DeleteProjectRequest = {
|
|
31
31
|
projectId: string;
|
|
32
32
|
};
|
|
33
|
+
export type CustomDomainRequest = {
|
|
34
|
+
domain: string;
|
|
35
|
+
projectId: string;
|
|
36
|
+
};
|
|
37
|
+
export type CustomDomainResponse = {
|
|
38
|
+
status: string;
|
|
39
|
+
domain: string;
|
|
40
|
+
};
|
|
33
41
|
export type DeleteProjectResponse = {};
|
|
34
42
|
export type AdminCommandsForPalleteRequest = {
|
|
35
43
|
projectId: string;
|