@databutton/firebase-types 1.26.5 → 1.26.7

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.
@@ -428,6 +428,7 @@ export interface Requirements {
428
428
  requirementsTxt: string;
429
429
  requirementsLock: string | null;
430
430
  requirementsHash: string | null;
431
+ venvHash?: string | null;
431
432
  }
432
433
  export interface ProdxConfig {
433
434
  views?: {
@@ -545,9 +546,7 @@ export type RequirementsSnapshot = {
545
546
  venvHash?: string | null;
546
547
  };
547
548
  export type Build = {
548
- projectId: string;
549
- eventRef: string;
550
- devxVersion: "@default" | string;
549
+ devxVersion?: string;
551
550
  devxRequirementsId: string;
552
551
  requirementsSnapshots: RequirementsSnapshot[];
553
552
  createdBy: PerformedBy;
@@ -592,7 +591,7 @@ export type PageSnapshot<T = ComponentSnapshotBase> = T & {
592
591
  slug: string;
593
592
  };
594
593
  export type MultipageAppSnapshot<T = ComponentSnapshotBase> = {
595
- id: "main";
594
+ id: "main" | string;
596
595
  pages: PageSnapshot<T>[];
597
596
  dependencies: ComponentDependenciesSnapshot<T>;
598
597
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.26.5",
3
+ "version": "1.26.7",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {