Skip to content

Commit b3e197f

Browse files
committed
chore: update openapi
1 parent 2e74796 commit b3e197f

File tree

2 files changed

+214
-58
lines changed

2 files changed

+214
-58
lines changed

src/api/generated/types.gen.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type Alert = {
3737
}
3838
| null;
3939
trigger_type: string;
40-
trigger_category: string | null;
40+
trigger_category: AlertSeverity;
4141
timestamp: string;
4242
};
4343

@@ -59,6 +59,11 @@ export type AlertConversation = {
5959
timestamp: string;
6060
};
6161

62+
export enum AlertSeverity {
63+
INFO = "info",
64+
CRITICAL = "critical",
65+
}
66+
6267
/**
6368
* Represents a chat message.
6469
*/
@@ -141,6 +146,8 @@ export type ModelByProvider = {
141146
*/
142147
export enum MuxMatcherType {
143148
CATCH_ALL = "catch_all",
149+
FILENAME_MATCH = "filename_match",
150+
REQUEST_TYPE_MATCH = "request_type_match",
144151
}
145152

146153
/**

0 commit comments

Comments
 (0)