@databutton/firebase-types 1.73.17 → 1.73.19
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.
|
@@ -811,7 +811,14 @@ export type ThirdPartyService = {
|
|
|
811
811
|
export interface AgentConfig {
|
|
812
812
|
customInstructions: string;
|
|
813
813
|
strictMode?: boolean | null;
|
|
814
|
+
status?: AgentStatus;
|
|
814
815
|
}
|
|
816
|
+
export type AgentStatus = {
|
|
817
|
+
available: true;
|
|
818
|
+
} | {
|
|
819
|
+
available: false;
|
|
820
|
+
reason: "insufficient-funds" | "other";
|
|
821
|
+
};
|
|
815
822
|
export interface AgentPersonality {
|
|
816
823
|
toneOfVoice?: {
|
|
817
824
|
responseStyle?: string | null;
|
|
@@ -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 {};
|