@databutton/firebase-types 1.144.1 → 1.146.0
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.
|
@@ -1129,11 +1129,16 @@ export type ThirdPartyService = {
|
|
|
1129
1129
|
category: ThirdPartyServiceCategory.STORAGE;
|
|
1130
1130
|
name: ThirdPartyStorageName;
|
|
1131
1131
|
};
|
|
1132
|
+
export interface DemoEmailConfig {
|
|
1133
|
+
enabled?: boolean;
|
|
1134
|
+
allowedSenders?: string[];
|
|
1135
|
+
}
|
|
1132
1136
|
export interface AgentConfig {
|
|
1133
1137
|
customInstructions: string;
|
|
1134
1138
|
strictMode?: boolean | null;
|
|
1135
1139
|
status?: AgentStatus;
|
|
1136
1140
|
primaryModel?: string;
|
|
1141
|
+
demoEmailConfig?: DemoEmailConfig;
|
|
1137
1142
|
}
|
|
1138
1143
|
export type AgentStatus = {
|
|
1139
1144
|
available: true;
|
|
@@ -2744,7 +2749,7 @@ export interface ProjectToolConfig {
|
|
|
2744
2749
|
export interface PerformanceMetricConfig {
|
|
2745
2750
|
toolName: string;
|
|
2746
2751
|
displayName: string;
|
|
2747
|
-
metricType: "call_count" | "success_rate" | "approval_rate";
|
|
2752
|
+
metricType: "call_count" | "success_rate" | "approval_rate" | "success_count";
|
|
2748
2753
|
createdBy: PerformedBy;
|
|
2749
2754
|
lastUpdatedBy: PerformedBy;
|
|
2750
2755
|
}
|