We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e74796 commit b3e197fCopy full SHA for b3e197f
src/api/generated/types.gen.ts
@@ -37,7 +37,7 @@ export type Alert = {
37
}
38
| null;
39
trigger_type: string;
40
- trigger_category: string | null;
+ trigger_category: AlertSeverity;
41
timestamp: string;
42
};
43
@@ -59,6 +59,11 @@ export type AlertConversation = {
59
60
61
62
+export enum AlertSeverity {
63
+ INFO = "info",
64
+ CRITICAL = "critical",
65
+}
66
+
67
/**
68
* Represents a chat message.
69
*/
@@ -141,6 +146,8 @@ export type ModelByProvider = {
141
146
142
147
export enum MuxMatcherType {
143
148
CATCH_ALL = "catch_all",
149
+ FILENAME_MATCH = "filename_match",
150
+ REQUEST_TYPE_MATCH = "request_type_match",
144
151
145
152
153
0 commit comments