@databutton/firebase-types 1.73.17 → 1.73.18
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.
|
@@ -137,4 +137,14 @@ export type EnableFirebaseExtensionRequest = {
|
|
|
137
137
|
export type EnableFirebaseExtensionResponse = {
|
|
138
138
|
success: boolean;
|
|
139
139
|
};
|
|
140
|
+
export type TroubleshootDnsRecordRequest = {
|
|
141
|
+
domainName: string;
|
|
142
|
+
name: string;
|
|
143
|
+
type: string;
|
|
144
|
+
value: string;
|
|
145
|
+
};
|
|
146
|
+
export type TroubleshootDnsRecordResponse = {
|
|
147
|
+
result: "skipped" | "success" | "failure";
|
|
148
|
+
message: string;
|
|
149
|
+
};
|
|
140
150
|
export {};
|