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 d946481 commit ed12c62Copy full SHA for ed12c62
2 files changed
modeling-cmds/openapi/api.json
@@ -10001,6 +10001,11 @@
10001
}
10002
]
10003
},
10004
+ "request_id": {
10005
+ "description": "ID for this request.",
10006
+ "type": "string",
10007
+ "format": "uuid"
10008
+ },
10009
"type": {
10010
"type": "string",
10011
"enum": [
@@ -10010,6 +10015,7 @@
10015
10016
"required": [
10012
10017
"project",
10018
+ "request_id",
10013
10019
"type"
10014
10020
10021
modeling-cmds/src/websocket.rs
@@ -113,6 +113,8 @@ pub enum WebSocketRequest {
113
114
/// Execute a KCL project.
115
ExecKclProject {
116
+ /// ID for this request.
117
+ request_id: Uuid,
118
/// The KCL project to execute.
119
project: crate::exec_kcl::KclProject,
120
0 commit comments