@databutton/firebase-types 1.17.44 → 1.17.46
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.
|
@@ -191,6 +191,7 @@ export interface CodeBlockVersion {
|
|
|
191
191
|
createdAtUtc: Timestamp;
|
|
192
192
|
version: string;
|
|
193
193
|
description: string;
|
|
194
|
+
hash?: number;
|
|
194
195
|
}
|
|
195
196
|
export interface ModuleRef {
|
|
196
197
|
moduleRef: string;
|
|
@@ -223,6 +224,7 @@ export interface MultipageAppDeployment {
|
|
|
223
224
|
modules: ModuleRef[];
|
|
224
225
|
requirementsRef: string | null;
|
|
225
226
|
projectEventRef: string | null;
|
|
227
|
+
isInitialDeployment?: boolean;
|
|
226
228
|
}
|
|
227
229
|
interface DeploymentRequestBase {
|
|
228
230
|
createdBy: PerformedBy;
|
|
@@ -491,4 +493,38 @@ export type Pulse = {
|
|
|
491
493
|
eventName: string;
|
|
492
494
|
properties: Record<string, string | number | boolean | null>;
|
|
493
495
|
};
|
|
496
|
+
export interface ModuleSnapshot {
|
|
497
|
+
id: string;
|
|
498
|
+
codeBlockId: string;
|
|
499
|
+
version: string;
|
|
500
|
+
name: string;
|
|
501
|
+
codeHash: number;
|
|
502
|
+
}
|
|
503
|
+
export interface ComponentSnapshot {
|
|
504
|
+
id: string;
|
|
505
|
+
codeBlockId: string;
|
|
506
|
+
version: string;
|
|
507
|
+
name: string;
|
|
508
|
+
codeHash: number;
|
|
509
|
+
}
|
|
510
|
+
export interface PageSnapshot extends ComponentSnapshot {
|
|
511
|
+
hidden: boolean;
|
|
512
|
+
sequence: number;
|
|
513
|
+
}
|
|
514
|
+
export interface JobSnapshot extends ComponentSnapshot {
|
|
515
|
+
requirementsHash: string;
|
|
516
|
+
modules: ModuleSnapshot[];
|
|
517
|
+
}
|
|
518
|
+
export interface MultipageAppSnapshot {
|
|
519
|
+
id: string;
|
|
520
|
+
requirementsHash: string;
|
|
521
|
+
modules: ModuleSnapshot[];
|
|
522
|
+
pages: PageSnapshot[];
|
|
523
|
+
}
|
|
524
|
+
export interface AppConfigSnapshot {
|
|
525
|
+
deploymentId: string | null;
|
|
526
|
+
createdBy: PerformedBy;
|
|
527
|
+
multipageApps: MultipageAppSnapshot[];
|
|
528
|
+
jobs: JobSnapshot[];
|
|
529
|
+
}
|
|
494
530
|
export {};
|