@databutton/firebase-types 1.15.15 → 1.15.17
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.
|
@@ -185,7 +185,7 @@ export interface CodeBlockVersion {
|
|
|
185
185
|
version: string;
|
|
186
186
|
description: string;
|
|
187
187
|
}
|
|
188
|
-
interface ModuleRef {
|
|
188
|
+
export interface ModuleRef {
|
|
189
189
|
moduleRef: string;
|
|
190
190
|
lastCodeBlockVersionRef: string;
|
|
191
191
|
}
|
|
@@ -202,6 +202,19 @@ export interface Deployment {
|
|
|
202
202
|
requirementsRef?: string | null;
|
|
203
203
|
projectEventRef?: string | null;
|
|
204
204
|
}
|
|
205
|
+
export interface PageRef {
|
|
206
|
+
pageRef: string;
|
|
207
|
+
lastCodeBlockVersionRef: string;
|
|
208
|
+
}
|
|
209
|
+
export interface MultipageAppDeployment {
|
|
210
|
+
createdBy: PerformedBy;
|
|
211
|
+
deployFinishedAt: Timestamp | null;
|
|
212
|
+
deployFailedAt: Timestamp | null;
|
|
213
|
+
pages: PageRef[];
|
|
214
|
+
modules: ModuleRef[];
|
|
215
|
+
requirementsRef: string | null;
|
|
216
|
+
projectEventRef: string | null;
|
|
217
|
+
}
|
|
205
218
|
interface DeploymentRequestBase {
|
|
206
219
|
createdBy: PerformedBy;
|
|
207
220
|
deploymentRef: string | null;
|
|
@@ -215,6 +228,7 @@ export interface JobDeploymentRequest extends DeploymentRequestBase {
|
|
|
215
228
|
cronTimezone: string;
|
|
216
229
|
scheduleForm: "Weekly" | "Custom";
|
|
217
230
|
}
|
|
231
|
+
export type MultipageAppDeploymentRequest = DeploymentRequestBase;
|
|
218
232
|
export interface Schedule {
|
|
219
233
|
createdAt: Timestamp;
|
|
220
234
|
updatedAt: Timestamp;
|