@databutton/firebase-types 1.51.0 → 1.51.2

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.
@@ -470,6 +470,17 @@ export interface Project {
470
470
  serviceCreationSucceededAt?: Timestamp;
471
471
  serviceCreationFailedAt?: Timestamp;
472
472
  checkpointsGeneratedAt?: Timestamp;
473
+ customDomain?: ProjectCustomDomain | null;
474
+ }
475
+ export interface ProjectCustomDomain {
476
+ domainName: string;
477
+ validationStatus: "pending" | "validated" | "failed";
478
+ active: boolean;
479
+ dnsRecords: {
480
+ name: string;
481
+ type: "CNAME";
482
+ value: string;
483
+ }[];
473
484
  }
474
485
  export interface ProjectTemplateApp {
475
486
  name: string;
@@ -847,4 +858,17 @@ export interface Customer {
847
858
  export interface Sequence {
848
859
  current: number;
849
860
  }
861
+ export interface Domain {
862
+ createdBy: PerformedBy;
863
+ lastUpdatedBy: PerformedBy;
864
+ projectId: string | null;
865
+ owner: string;
866
+ validationStatus: "pending" | "validated" | "failed";
867
+ active: boolean;
868
+ dnsRecords: {
869
+ name: string;
870
+ type: "CNAME";
871
+ value: string;
872
+ }[];
873
+ }
850
874
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.51.0",
3
+ "version": "1.51.2",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {