@databutton/firebase-types 1.72.88 → 1.72.90

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.
@@ -31,6 +31,7 @@ export declare enum CollectionName {
31
31
  PAGES = "pages",
32
32
  PATCH_ATTEMPTS = "patch-attempts",
33
33
  PROFILES = "profiles",
34
+ PROJECT_ACCESS = "project-access",
34
35
  PROJECT_APPBUTLERS = "project-appbutlers",
35
36
  PROJECT_DEPLOYMENTS = "deployments",
36
37
  PROJECT_INVITES = "project-invites",
@@ -32,6 +32,7 @@ export var CollectionName;
32
32
  CollectionName["PAGES"] = "pages";
33
33
  CollectionName["PATCH_ATTEMPTS"] = "patch-attempts";
34
34
  CollectionName["PROFILES"] = "profiles";
35
+ CollectionName["PROJECT_ACCESS"] = "project-access";
35
36
  CollectionName["PROJECT_APPBUTLERS"] = "project-appbutlers";
36
37
  CollectionName["PROJECT_DEPLOYMENTS"] = "deployments";
37
38
  CollectionName["PROJECT_INVITES"] = "project-invites";
@@ -874,6 +874,14 @@ export interface Project {
874
874
  alwaysOn?: boolean;
875
875
  };
876
876
  }
877
+ export interface ProjectAccess {
878
+ updatedAt?: Timestamp;
879
+ active: boolean;
880
+ owner: string;
881
+ members: string[] | null;
882
+ devxAppbutlerId?: string | null;
883
+ prodxAppbutlerId?: string | null;
884
+ }
877
885
  export type DnsRecord = {
878
886
  name: string;
879
887
  type: "CNAME" | "ALIAS" | "CAA" | "ANAME";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.72.88",
3
+ "version": "1.72.90",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {