@databutton/firebase-types 1.53.6 → 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",
|
|
@@ -334,13 +326,15 @@ export interface Schedule {
|
|
|
334
326
|
createdAt: Timestamp;
|
|
335
327
|
updatedAt: Timestamp;
|
|
336
328
|
markedForDeletionAt?: Timestamp;
|
|
329
|
+
id?: string;
|
|
330
|
+
scheduleForm?: "Weekly" | "Custom";
|
|
337
331
|
cronExpressionUtc: string;
|
|
338
332
|
cronExpression: string;
|
|
339
333
|
cronTimezone: string;
|
|
340
|
-
state
|
|
334
|
+
state?: ScheduleState;
|
|
341
335
|
previousState?: ScheduleState | null;
|
|
342
|
-
|
|
343
|
-
|
|
336
|
+
pending?: boolean;
|
|
337
|
+
paused?: boolean;
|
|
344
338
|
}
|
|
345
339
|
export interface Property {
|
|
346
340
|
name: string;
|
|
@@ -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;
|