@databutton/firebase-types 1.69.68 → 1.69.69

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.
@@ -689,6 +689,7 @@ export interface ProjectCustomDomain {
689
689
  type: "CNAME" | "ALIAS";
690
690
  value: string;
691
691
  }[];
692
+ validationRecords?: DomainValidationRecord[];
692
693
  }
693
694
  export interface ProjectTemplatePage {
694
695
  name: string;
@@ -1125,18 +1126,19 @@ export interface Domain {
1125
1126
  type: "CNAME" | "ALIAS";
1126
1127
  value: string;
1127
1128
  }[];
1128
- validationRecords?: {
1129
- domainName: string;
1130
- resourceRecord?: {
1131
- name?: string;
1132
- type?: "CNAME";
1133
- value?: string;
1134
- };
1135
- validationEmails?: string[];
1136
- validationDomain?: string;
1137
- validationMethod?: "DNS" | "EMAIL";
1138
- validationStatus?: "FAILED" | "PENDING_VALIDATION" | "SUCCESS";
1139
- }[];
1129
+ validationRecords?: DomainValidationRecord[];
1130
+ }
1131
+ export interface DomainValidationRecord {
1132
+ domainName: string;
1133
+ resourceRecord?: {
1134
+ name?: string;
1135
+ type?: "CNAME";
1136
+ value?: string;
1137
+ };
1138
+ validationEmails?: string[];
1139
+ validationDomain?: string;
1140
+ validationMethod?: "DNS" | "EMAIL";
1141
+ validationStatus?: "FAILED" | "PENDING_VALIDATION" | "SUCCESS";
1140
1142
  }
1141
1143
  export interface TokenUsageEntry {
1142
1144
  userId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.69.68",
3
+ "version": "1.69.69",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {