@databutton/firebase-types 1.17.43 → 1.17.45

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;
@@ -491,4 +492,38 @@ export type Pulse = {
491
492
  eventName: string;
492
493
  properties: Record<string, string | number | boolean | null>;
493
494
  };
495
+ export interface ModuleSnapshot {
496
+ id: string;
497
+ codeBlockId: string;
498
+ version: string;
499
+ name: string;
500
+ codeHash: number;
501
+ }
502
+ export interface ComponentSnapshot {
503
+ id: string;
504
+ codeBlockId: string;
505
+ version: string;
506
+ name: string;
507
+ codeHash: number;
508
+ }
509
+ export interface PageSnapshot extends ComponentSnapshot {
510
+ hidden: boolean;
511
+ sequence: number;
512
+ }
513
+ export interface JobSnapshot extends ComponentSnapshot {
514
+ requirementsHash: string;
515
+ modules: ModuleSnapshot[];
516
+ }
517
+ export interface MultipageAppSnapshot {
518
+ id: string;
519
+ requirementsHash: string;
520
+ modules: ModuleSnapshot[];
521
+ pages: PageSnapshot[];
522
+ }
523
+ export interface AppConfigSnapshot {
524
+ deploymentId: string | null;
525
+ createdBy: PerformedBy;
526
+ multipageApps: MultipageAppSnapshot[];
527
+ jobs: JobSnapshot[];
528
+ }
494
529
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.17.43",
3
+ "version": "1.17.45",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {
@@ -46,8 +46,8 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@sendgrid/mail": "7.7.0",
49
- "@sentry/node": "7.31.0",
50
- "@sentry/tracing": "7.31.0",
49
+ "@sentry/node": "7.38.0",
50
+ "@sentry/tracing": "7.38.0",
51
51
  "@slack/web-api": "6.8.1",
52
52
  "analytics-node": "6.2.0",
53
53
  "capture-website": "3.2.0",
@@ -65,7 +65,7 @@
65
65
  },
66
66
  "devDependencies": {
67
67
  "@firebase/rules-unit-testing": "2.0.7",
68
- "@sentry/types": "7.31.0",
68
+ "@sentry/types": "7.38.0",
69
69
  "@types/analytics-node": "3.1.10",
70
70
  "@types/inquirer": "9.0.3",
71
71
  "@types/jest": "29.4.0",