@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
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
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;
|