@ancplua/qyl-api-schema 6.0.0 → 7.1.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.
- package/api/workflow.tsp +85 -9
- package/generated/json-schema/qyl-api-schema.json +971 -37
- package/generated/openapi/qyl.openapi.json +1259 -71
- package/generated/otel-keys.gen.tsp +5 -1
- package/generated/ts-runtime/api.d.ts +250 -23
- package/generated/ts-runtime/api.js +54 -1
- package/index.tsp +1 -0
- package/models/diagnostics.tsp +204 -0
- package/models/mcp-tools.tsp +112 -9
- package/models/workflow.tsp +99 -14
- package/package.json +6 -4
|
@@ -1021,6 +1021,376 @@
|
|
|
1021
1021
|
"maxLength": 256,
|
|
1022
1022
|
"description": "User identifier (pseudonymized for privacy)"
|
|
1023
1023
|
},
|
|
1024
|
+
"Diagnostics.AgentDiagnosticCheckId": {
|
|
1025
|
+
"type": "string",
|
|
1026
|
+
"minLength": 1,
|
|
1027
|
+
"maxLength": 128,
|
|
1028
|
+
"pattern": "^[A-Za-z0-9_][A-Za-z0-9._:/\\[\\]-]{0,127}$",
|
|
1029
|
+
"description": "Stable machine identifier of one diagnostic check. This identifier is a value and must never be promoted to a telemetry key."
|
|
1030
|
+
},
|
|
1031
|
+
"Diagnostics.AgentDiagnosticCheckOutcome": {
|
|
1032
|
+
"type": "string",
|
|
1033
|
+
"enum": [
|
|
1034
|
+
"pass",
|
|
1035
|
+
"fail",
|
|
1036
|
+
"unknown"
|
|
1037
|
+
],
|
|
1038
|
+
"description": "Machine-computed result of one diagnostic check. For exists, an absent or null actual variable produces fail. For every other operator, missing required operands produce unknown; incompatible operand types also produce unknown. not_evaluated is deliberately not a check outcome."
|
|
1039
|
+
},
|
|
1040
|
+
"Diagnostics.AgentDiagnosticCheckResult": {
|
|
1041
|
+
"type": "object",
|
|
1042
|
+
"required": [
|
|
1043
|
+
"check_id",
|
|
1044
|
+
"operator",
|
|
1045
|
+
"actual",
|
|
1046
|
+
"outcome"
|
|
1047
|
+
],
|
|
1048
|
+
"properties": {
|
|
1049
|
+
"check_id": {
|
|
1050
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticCheckId"
|
|
1051
|
+
},
|
|
1052
|
+
"operator": {
|
|
1053
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticOperator"
|
|
1054
|
+
},
|
|
1055
|
+
"actual": {
|
|
1056
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
|
|
1057
|
+
},
|
|
1058
|
+
"expected": {
|
|
1059
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
|
|
1060
|
+
},
|
|
1061
|
+
"expected_type": {
|
|
1062
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticValueType"
|
|
1063
|
+
},
|
|
1064
|
+
"outcome": {
|
|
1065
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticCheckOutcome"
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1068
|
+
"unevaluatedProperties": {
|
|
1069
|
+
"not": {}
|
|
1070
|
+
},
|
|
1071
|
+
"description": "One structural, machine-computed check result. actual and expected reference variable names only. For equal, not_equal, contains, less_than, and greater_than, expected is required and expected_type is omitted. For exists, both are omitted and an absent or null actual variable produces fail. For type_is, expected is omitted and expected_type is required. For operators other than exists, missing required operands produce unknown; incompatible operand types also produce unknown. not_evaluated is reserved for the snapshot aggregate when checks is empty and is not emitted for an individual check."
|
|
1072
|
+
},
|
|
1073
|
+
"Diagnostics.AgentDiagnosticClassification": {
|
|
1074
|
+
"type": "string",
|
|
1075
|
+
"enum": [
|
|
1076
|
+
"public",
|
|
1077
|
+
"internal",
|
|
1078
|
+
"sensitive",
|
|
1079
|
+
"secret"
|
|
1080
|
+
],
|
|
1081
|
+
"description": "Data-handling classification assigned before a diagnostic variable is captured."
|
|
1082
|
+
},
|
|
1083
|
+
"Diagnostics.AgentDiagnosticExtensionId": {
|
|
1084
|
+
"type": "string",
|
|
1085
|
+
"enum": [
|
|
1086
|
+
"qyl.agent.diagnostic.snapshot"
|
|
1087
|
+
],
|
|
1088
|
+
"description": "The versioned extension discriminator for a protected agent diagnostic snapshot."
|
|
1089
|
+
},
|
|
1090
|
+
"Diagnostics.AgentDiagnosticFormatVersion": {
|
|
1091
|
+
"type": "integer",
|
|
1092
|
+
"format": "int32",
|
|
1093
|
+
"minimum": 1,
|
|
1094
|
+
"maximum": 1,
|
|
1095
|
+
"description": "Wire-format version of an agent diagnostic snapshot. Version 1 is the only accepted format."
|
|
1096
|
+
},
|
|
1097
|
+
"Diagnostics.AgentDiagnosticOperator": {
|
|
1098
|
+
"type": "string",
|
|
1099
|
+
"enum": [
|
|
1100
|
+
"equal",
|
|
1101
|
+
"not_equal",
|
|
1102
|
+
"exists",
|
|
1103
|
+
"type_is",
|
|
1104
|
+
"contains",
|
|
1105
|
+
"less_than",
|
|
1106
|
+
"greater_than"
|
|
1107
|
+
],
|
|
1108
|
+
"description": "Closed operation evaluated by a diagnostic check. Checks are structural and never carry expression strings."
|
|
1109
|
+
},
|
|
1110
|
+
"Diagnostics.AgentDiagnosticOutcome": {
|
|
1111
|
+
"type": "string",
|
|
1112
|
+
"enum": [
|
|
1113
|
+
"pass",
|
|
1114
|
+
"fail",
|
|
1115
|
+
"unknown",
|
|
1116
|
+
"not_evaluated"
|
|
1117
|
+
],
|
|
1118
|
+
"description": "Machine-computed aggregate result of a diagnostic snapshot. unknown reports one or more unknown check outcomes. not_evaluated is reserved for a snapshot whose checks array is empty."
|
|
1119
|
+
},
|
|
1120
|
+
"Diagnostics.AgentDiagnosticPhase": {
|
|
1121
|
+
"type": "string",
|
|
1122
|
+
"enum": [
|
|
1123
|
+
"input",
|
|
1124
|
+
"output",
|
|
1125
|
+
"error",
|
|
1126
|
+
"checkpoint"
|
|
1127
|
+
],
|
|
1128
|
+
"description": "Execution boundary at which the state frame was captured."
|
|
1129
|
+
},
|
|
1130
|
+
"Diagnostics.AgentDiagnosticProbeId": {
|
|
1131
|
+
"type": "string",
|
|
1132
|
+
"minLength": 1,
|
|
1133
|
+
"maxLength": 128,
|
|
1134
|
+
"pattern": "^[A-Za-z0-9_][A-Za-z0-9._:/\\[\\]-]{0,127}$",
|
|
1135
|
+
"description": "Stable machine identifier of the probe that captured a diagnostic snapshot. This identifier is a value and must never be promoted to a telemetry key."
|
|
1136
|
+
},
|
|
1137
|
+
"Diagnostics.AgentDiagnosticSnapshot": {
|
|
1138
|
+
"type": "object",
|
|
1139
|
+
"required": [
|
|
1140
|
+
"extension_id",
|
|
1141
|
+
"format_version",
|
|
1142
|
+
"snapshot_id",
|
|
1143
|
+
"capture_nonce",
|
|
1144
|
+
"probe_id",
|
|
1145
|
+
"phase",
|
|
1146
|
+
"variables",
|
|
1147
|
+
"checks",
|
|
1148
|
+
"outcome"
|
|
1149
|
+
],
|
|
1150
|
+
"properties": {
|
|
1151
|
+
"extension_id": {
|
|
1152
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticExtensionId"
|
|
1153
|
+
},
|
|
1154
|
+
"format_version": {
|
|
1155
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticFormatVersion"
|
|
1156
|
+
},
|
|
1157
|
+
"snapshot_id": {
|
|
1158
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticSnapshotId"
|
|
1159
|
+
},
|
|
1160
|
+
"capture_nonce": {
|
|
1161
|
+
"type": "string",
|
|
1162
|
+
"minLength": 32,
|
|
1163
|
+
"maxLength": 32,
|
|
1164
|
+
"pattern": "^[0-9a-f]{32}$",
|
|
1165
|
+
"description": "Fresh 128-bit random nonce encoded as exactly 32 lowercase hexadecimal characters. It prevents equality inference across otherwise identical protected captures and must not be used as an identity key."
|
|
1166
|
+
},
|
|
1167
|
+
"probe_id": {
|
|
1168
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticProbeId"
|
|
1169
|
+
},
|
|
1170
|
+
"phase": {
|
|
1171
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticPhase"
|
|
1172
|
+
},
|
|
1173
|
+
"variables": {
|
|
1174
|
+
"type": "array",
|
|
1175
|
+
"items": {
|
|
1176
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariable"
|
|
1177
|
+
},
|
|
1178
|
+
"maxItems": 64
|
|
1179
|
+
},
|
|
1180
|
+
"checks": {
|
|
1181
|
+
"type": "array",
|
|
1182
|
+
"items": {
|
|
1183
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticCheckResult"
|
|
1184
|
+
},
|
|
1185
|
+
"maxItems": 64
|
|
1186
|
+
},
|
|
1187
|
+
"outcome": {
|
|
1188
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticOutcome"
|
|
1189
|
+
}
|
|
1190
|
+
},
|
|
1191
|
+
"unevaluatedProperties": {
|
|
1192
|
+
"not": {}
|
|
1193
|
+
},
|
|
1194
|
+
"description": "Version 1 protected JSON state frame captured for an artificial-intelligence agent. extension_id and format_version are its schema identity. capture_nonce is fresh entropy and is not a stable identifier. Variables and checks are bounded, dynamic names remain values, and no human-oriented message or expression text is part of the contract. Overall outcome is not_evaluated only when checks is empty. For a non-empty checks array it is fail if any check fails, otherwise unknown if any check is unknown, otherwise pass."
|
|
1195
|
+
},
|
|
1196
|
+
"Diagnostics.AgentDiagnosticSnapshotId": {
|
|
1197
|
+
"type": "string",
|
|
1198
|
+
"minLength": 1,
|
|
1199
|
+
"maxLength": 128,
|
|
1200
|
+
"pattern": "^[A-Za-z0-9_][A-Za-z0-9._:/\\[\\]-]{0,127}$",
|
|
1201
|
+
"description": "Stable machine identifier of one diagnostic snapshot. This identifier is a value and must never be promoted to a telemetry key."
|
|
1202
|
+
},
|
|
1203
|
+
"Diagnostics.AgentDiagnosticSnapshotSummary": {
|
|
1204
|
+
"type": "object",
|
|
1205
|
+
"required": [
|
|
1206
|
+
"extension_id",
|
|
1207
|
+
"format_version",
|
|
1208
|
+
"snapshot_id",
|
|
1209
|
+
"probe_id",
|
|
1210
|
+
"phase",
|
|
1211
|
+
"outcome",
|
|
1212
|
+
"variable_count",
|
|
1213
|
+
"check_count",
|
|
1214
|
+
"failed_check_count",
|
|
1215
|
+
"content_ref"
|
|
1216
|
+
],
|
|
1217
|
+
"properties": {
|
|
1218
|
+
"extension_id": {
|
|
1219
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticExtensionId"
|
|
1220
|
+
},
|
|
1221
|
+
"format_version": {
|
|
1222
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticFormatVersion"
|
|
1223
|
+
},
|
|
1224
|
+
"snapshot_id": {
|
|
1225
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticSnapshotId"
|
|
1226
|
+
},
|
|
1227
|
+
"probe_id": {
|
|
1228
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticProbeId"
|
|
1229
|
+
},
|
|
1230
|
+
"phase": {
|
|
1231
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticPhase"
|
|
1232
|
+
},
|
|
1233
|
+
"outcome": {
|
|
1234
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticOutcome"
|
|
1235
|
+
},
|
|
1236
|
+
"variable_count": {
|
|
1237
|
+
"type": "integer",
|
|
1238
|
+
"format": "int32",
|
|
1239
|
+
"minimum": 0,
|
|
1240
|
+
"maximum": 64
|
|
1241
|
+
},
|
|
1242
|
+
"check_count": {
|
|
1243
|
+
"type": "integer",
|
|
1244
|
+
"format": "int32",
|
|
1245
|
+
"minimum": 0,
|
|
1246
|
+
"maximum": 64
|
|
1247
|
+
},
|
|
1248
|
+
"failed_check_count": {
|
|
1249
|
+
"type": "integer",
|
|
1250
|
+
"format": "int32",
|
|
1251
|
+
"minimum": 0,
|
|
1252
|
+
"maximum": 64
|
|
1253
|
+
},
|
|
1254
|
+
"content_ref": {
|
|
1255
|
+
"$ref": "#/$defs/Workflow.WorkflowContentRef"
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
"unevaluatedProperties": {
|
|
1259
|
+
"not": {}
|
|
1260
|
+
},
|
|
1261
|
+
"description": "Value-free event-data projection for a protected agent diagnostic snapshot. Encode this shape in WorkflowEventAppend.data on the existing content_captured event kind. content_ref must also occur in that event's content_refs and identifies UTF-8 JSON conforming to AgentDiagnosticSnapshot. Counts are computed from the referenced snapshot; failed_check_count counts checks whose outcome is fail. No variable names, values, human messages, expressions, nonce, or classifications may appear in this summary."
|
|
1262
|
+
},
|
|
1263
|
+
"Diagnostics.AgentDiagnosticValueType": {
|
|
1264
|
+
"type": "string",
|
|
1265
|
+
"enum": [
|
|
1266
|
+
"null",
|
|
1267
|
+
"boolean",
|
|
1268
|
+
"integer",
|
|
1269
|
+
"number",
|
|
1270
|
+
"string",
|
|
1271
|
+
"json"
|
|
1272
|
+
],
|
|
1273
|
+
"description": "Declared JSON-level type of a diagnostic variable."
|
|
1274
|
+
},
|
|
1275
|
+
"Diagnostics.AgentDiagnosticVariable": {
|
|
1276
|
+
"anyOf": [
|
|
1277
|
+
{
|
|
1278
|
+
"$ref": "#/$defs/Diagnostics.CapturedAgentDiagnosticVariable"
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"$ref": "#/$defs/Diagnostics.RedactedAgentDiagnosticVariable"
|
|
1282
|
+
},
|
|
1283
|
+
{
|
|
1284
|
+
"$ref": "#/$defs/Diagnostics.OmittedAgentDiagnosticVariable"
|
|
1285
|
+
}
|
|
1286
|
+
],
|
|
1287
|
+
"description": "One dynamically named variable in a protected diagnostic snapshot. Capture is the discriminator and makes value presence unambiguous."
|
|
1288
|
+
},
|
|
1289
|
+
"Diagnostics.AgentDiagnosticVariableBase": {
|
|
1290
|
+
"type": "object",
|
|
1291
|
+
"required": [
|
|
1292
|
+
"name",
|
|
1293
|
+
"type",
|
|
1294
|
+
"classification"
|
|
1295
|
+
],
|
|
1296
|
+
"properties": {
|
|
1297
|
+
"name": {
|
|
1298
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
|
|
1299
|
+
},
|
|
1300
|
+
"type": {
|
|
1301
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticValueType"
|
|
1302
|
+
},
|
|
1303
|
+
"classification": {
|
|
1304
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticClassification"
|
|
1305
|
+
}
|
|
1306
|
+
},
|
|
1307
|
+
"description": "Common identity and policy fields for one dynamic diagnostic variable."
|
|
1308
|
+
},
|
|
1309
|
+
"Diagnostics.AgentDiagnosticVariableName": {
|
|
1310
|
+
"type": "string",
|
|
1311
|
+
"minLength": 1,
|
|
1312
|
+
"maxLength": 128,
|
|
1313
|
+
"pattern": "^[A-Za-z0-9_][A-Za-z0-9._:/\\[\\]-]{0,127}$",
|
|
1314
|
+
"description": "Stable machine name of one dynamically captured variable. Names are data values, never telemetry attribute keys, event names, or span names."
|
|
1315
|
+
},
|
|
1316
|
+
"Diagnostics.CapturedAgentDiagnosticVariable": {
|
|
1317
|
+
"type": "object",
|
|
1318
|
+
"required": [
|
|
1319
|
+
"capture",
|
|
1320
|
+
"value"
|
|
1321
|
+
],
|
|
1322
|
+
"properties": {
|
|
1323
|
+
"capture": {
|
|
1324
|
+
"type": "string",
|
|
1325
|
+
"enum": [
|
|
1326
|
+
"value"
|
|
1327
|
+
]
|
|
1328
|
+
},
|
|
1329
|
+
"value": {
|
|
1330
|
+
"anyOf": [
|
|
1331
|
+
{},
|
|
1332
|
+
{
|
|
1333
|
+
"type": "null"
|
|
1334
|
+
}
|
|
1335
|
+
]
|
|
1336
|
+
}
|
|
1337
|
+
},
|
|
1338
|
+
"unevaluatedProperties": {
|
|
1339
|
+
"not": {}
|
|
1340
|
+
},
|
|
1341
|
+
"allOf": [
|
|
1342
|
+
{
|
|
1343
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableBase"
|
|
1344
|
+
}
|
|
1345
|
+
],
|
|
1346
|
+
"description": "A variable whose typed JSON value is present in protected snapshot content. The value is required and must match type: null is JSON null; boolean is a JSON boolean; integer is a signed 64-bit JSON integer; number is a finite JSON number; string is a JSON string; json is a JSON object or array. The protected content boundary, not this model, controls access to all captured values."
|
|
1347
|
+
},
|
|
1348
|
+
"Diagnostics.OmittedAgentDiagnosticVariable": {
|
|
1349
|
+
"type": "object",
|
|
1350
|
+
"required": [
|
|
1351
|
+
"capture"
|
|
1352
|
+
],
|
|
1353
|
+
"properties": {
|
|
1354
|
+
"capture": {
|
|
1355
|
+
"type": "string",
|
|
1356
|
+
"enum": [
|
|
1357
|
+
"omitted"
|
|
1358
|
+
]
|
|
1359
|
+
}
|
|
1360
|
+
},
|
|
1361
|
+
"unevaluatedProperties": {
|
|
1362
|
+
"not": {}
|
|
1363
|
+
},
|
|
1364
|
+
"allOf": [
|
|
1365
|
+
{
|
|
1366
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableBase"
|
|
1367
|
+
}
|
|
1368
|
+
],
|
|
1369
|
+
"description": "A variable whose value was unavailable or deliberately not captured. A value field is forbidden."
|
|
1370
|
+
},
|
|
1371
|
+
"Diagnostics.RedactedAgentDiagnosticVariable": {
|
|
1372
|
+
"type": "object",
|
|
1373
|
+
"required": [
|
|
1374
|
+
"capture"
|
|
1375
|
+
],
|
|
1376
|
+
"properties": {
|
|
1377
|
+
"capture": {
|
|
1378
|
+
"type": "string",
|
|
1379
|
+
"enum": [
|
|
1380
|
+
"redacted"
|
|
1381
|
+
]
|
|
1382
|
+
}
|
|
1383
|
+
},
|
|
1384
|
+
"unevaluatedProperties": {
|
|
1385
|
+
"not": {}
|
|
1386
|
+
},
|
|
1387
|
+
"allOf": [
|
|
1388
|
+
{
|
|
1389
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableBase"
|
|
1390
|
+
}
|
|
1391
|
+
],
|
|
1392
|
+
"description": "A variable observed by the probe whose value was replaced by policy. A value field is forbidden."
|
|
1393
|
+
},
|
|
1024
1394
|
"Domains.Observe.Session.DeviceType": {
|
|
1025
1395
|
"type": "string",
|
|
1026
1396
|
"enum": [
|
|
@@ -1672,7 +2042,8 @@
|
|
|
1672
2042
|
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
1673
2043
|
},
|
|
1674
2044
|
"node_cursor": {
|
|
1675
|
-
"
|
|
2045
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeCursor",
|
|
2046
|
+
"description": "Opaque node continuation. Reuse it unchanged from the preceding snapshot's next_node_cursor; do not parse, construct, or modify it."
|
|
1676
2047
|
},
|
|
1677
2048
|
"node_limit": {
|
|
1678
2049
|
"type": "integer",
|
|
@@ -1682,7 +2053,8 @@
|
|
|
1682
2053
|
"default": 250
|
|
1683
2054
|
},
|
|
1684
2055
|
"edge_cursor": {
|
|
1685
|
-
"
|
|
2056
|
+
"$ref": "#/$defs/Workflow.WorkflowEdgeCursor",
|
|
2057
|
+
"description": "Opaque edge continuation. Reuse it unchanged from the preceding snapshot's next_edge_cursor; do not parse, construct, or modify it."
|
|
1686
2058
|
},
|
|
1687
2059
|
"edge_limit": {
|
|
1688
2060
|
"type": "integer",
|
|
@@ -1816,7 +2188,7 @@
|
|
|
1816
2188
|
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
1817
2189
|
},
|
|
1818
2190
|
"after_sequence": {
|
|
1819
|
-
"$ref": "#/$defs/Workflow.
|
|
2191
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
1820
2192
|
},
|
|
1821
2193
|
"limit": {
|
|
1822
2194
|
"type": "integer",
|
|
@@ -1833,7 +2205,8 @@
|
|
|
1833
2205
|
"default": 20000
|
|
1834
2206
|
},
|
|
1835
2207
|
"node_cursor": {
|
|
1836
|
-
"
|
|
2208
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeCursor",
|
|
2209
|
+
"description": "Opaque node continuation. Reuse it unchanged from the preceding snapshot's next_node_cursor; do not parse, construct, or modify it."
|
|
1837
2210
|
},
|
|
1838
2211
|
"node_limit": {
|
|
1839
2212
|
"type": "integer",
|
|
@@ -1843,7 +2216,8 @@
|
|
|
1843
2216
|
"default": 250
|
|
1844
2217
|
},
|
|
1845
2218
|
"edge_cursor": {
|
|
1846
|
-
"
|
|
2219
|
+
"$ref": "#/$defs/Workflow.WorkflowEdgeCursor",
|
|
2220
|
+
"description": "Opaque edge continuation. Reuse it unchanged from the preceding snapshot's next_edge_cursor; do not parse, construct, or modify it."
|
|
1847
2221
|
},
|
|
1848
2222
|
"edge_limit": {
|
|
1849
2223
|
"type": "integer",
|
|
@@ -1887,6 +2261,42 @@
|
|
|
1887
2261
|
},
|
|
1888
2262
|
"description": "Structured output for the app-only fetch_workflow_graph_updates tool."
|
|
1889
2263
|
},
|
|
2264
|
+
"Mcp.Tools.GetActiveWorkflowRunInput": {
|
|
2265
|
+
"type": "object",
|
|
2266
|
+
"unevaluatedProperties": {
|
|
2267
|
+
"not": {}
|
|
2268
|
+
},
|
|
2269
|
+
"description": "Input for get_active_workflow_run."
|
|
2270
|
+
},
|
|
2271
|
+
"Mcp.Tools.GetActiveWorkflowRunOutput": {
|
|
2272
|
+
"type": "object",
|
|
2273
|
+
"required": [
|
|
2274
|
+
"active",
|
|
2275
|
+
"live_controls_available"
|
|
2276
|
+
],
|
|
2277
|
+
"properties": {
|
|
2278
|
+
"active": {
|
|
2279
|
+
"type": "boolean"
|
|
2280
|
+
},
|
|
2281
|
+
"live_controls_available": {
|
|
2282
|
+
"type": "boolean"
|
|
2283
|
+
},
|
|
2284
|
+
"run_id": {
|
|
2285
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
2286
|
+
},
|
|
2287
|
+
"thread_id": {
|
|
2288
|
+
"type": "string"
|
|
2289
|
+
},
|
|
2290
|
+
"started_at": {
|
|
2291
|
+
"type": "string",
|
|
2292
|
+
"format": "date-time"
|
|
2293
|
+
}
|
|
2294
|
+
},
|
|
2295
|
+
"unevaluatedProperties": {
|
|
2296
|
+
"not": {}
|
|
2297
|
+
},
|
|
2298
|
+
"description": "Structured output for get_active_workflow_run."
|
|
2299
|
+
},
|
|
1890
2300
|
"Mcp.Tools.GetTraceInput": {
|
|
1891
2301
|
"type": "object",
|
|
1892
2302
|
"required": [
|
|
@@ -1931,7 +2341,8 @@
|
|
|
1931
2341
|
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
1932
2342
|
},
|
|
1933
2343
|
"node_cursor": {
|
|
1934
|
-
"
|
|
2344
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeCursor",
|
|
2345
|
+
"description": "Opaque node continuation. Reuse it unchanged from the preceding snapshot's next_node_cursor; do not parse, construct, or modify it."
|
|
1935
2346
|
},
|
|
1936
2347
|
"node_limit": {
|
|
1937
2348
|
"type": "integer",
|
|
@@ -1941,7 +2352,8 @@
|
|
|
1941
2352
|
"default": 250
|
|
1942
2353
|
},
|
|
1943
2354
|
"edge_cursor": {
|
|
1944
|
-
"
|
|
2355
|
+
"$ref": "#/$defs/Workflow.WorkflowEdgeCursor",
|
|
2356
|
+
"description": "Opaque edge continuation. Reuse it unchanged from the preceding snapshot's next_edge_cursor; do not parse, construct, or modify it."
|
|
1945
2357
|
},
|
|
1946
2358
|
"edge_limit": {
|
|
1947
2359
|
"type": "integer",
|
|
@@ -1975,6 +2387,58 @@
|
|
|
1975
2387
|
},
|
|
1976
2388
|
"description": "Structured output for get_workflow_graph."
|
|
1977
2389
|
},
|
|
2390
|
+
"Mcp.Tools.InspectWorkflowEventsInput": {
|
|
2391
|
+
"type": "object",
|
|
2392
|
+
"required": [
|
|
2393
|
+
"run_id",
|
|
2394
|
+
"after_sequence"
|
|
2395
|
+
],
|
|
2396
|
+
"properties": {
|
|
2397
|
+
"run_id": {
|
|
2398
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
2399
|
+
},
|
|
2400
|
+
"after_sequence": {
|
|
2401
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
2402
|
+
},
|
|
2403
|
+
"limit": {
|
|
2404
|
+
"type": "integer",
|
|
2405
|
+
"format": "int32",
|
|
2406
|
+
"minimum": 1,
|
|
2407
|
+
"maximum": 1000,
|
|
2408
|
+
"default": 250
|
|
2409
|
+
},
|
|
2410
|
+
"content_ref": {
|
|
2411
|
+
"$ref": "#/$defs/Workflow.WorkflowContentRef",
|
|
2412
|
+
"description": "Optional captured payload to retrieve lazily for the selected run."
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2415
|
+
"unevaluatedProperties": {
|
|
2416
|
+
"not": {}
|
|
2417
|
+
},
|
|
2418
|
+
"description": "Input for inspect_workflow_events."
|
|
2419
|
+
},
|
|
2420
|
+
"Mcp.Tools.InspectWorkflowEventsOutput": {
|
|
2421
|
+
"type": "object",
|
|
2422
|
+
"required": [
|
|
2423
|
+
"page",
|
|
2424
|
+
"mode"
|
|
2425
|
+
],
|
|
2426
|
+
"properties": {
|
|
2427
|
+
"page": {
|
|
2428
|
+
"$ref": "#/$defs/Workflow.WorkflowEventPage"
|
|
2429
|
+
},
|
|
2430
|
+
"content": {
|
|
2431
|
+
"$ref": "#/$defs/Workflow.WorkflowContent"
|
|
2432
|
+
},
|
|
2433
|
+
"mode": {
|
|
2434
|
+
"$ref": "#/$defs/Mcp.Tools.McpDataMode"
|
|
2435
|
+
}
|
|
2436
|
+
},
|
|
2437
|
+
"unevaluatedProperties": {
|
|
2438
|
+
"not": {}
|
|
2439
|
+
},
|
|
2440
|
+
"description": "Structured output for inspect_workflow_events."
|
|
2441
|
+
},
|
|
1978
2442
|
"Mcp.Tools.ListSessionsInput": {
|
|
1979
2443
|
"type": "object",
|
|
1980
2444
|
"properties": {
|
|
@@ -2061,7 +2525,7 @@
|
|
|
2061
2525
|
"$ref": "#/$defs/Workflow.WorkflowRunStatus"
|
|
2062
2526
|
},
|
|
2063
2527
|
"cursor": {
|
|
2064
|
-
"
|
|
2528
|
+
"$ref": "#/$defs/Workflow.WorkflowRunCursor"
|
|
2065
2529
|
},
|
|
2066
2530
|
"limit": {
|
|
2067
2531
|
"type": "integer",
|
|
@@ -2091,7 +2555,7 @@
|
|
|
2091
2555
|
}
|
|
2092
2556
|
},
|
|
2093
2557
|
"next_cursor": {
|
|
2094
|
-
"
|
|
2558
|
+
"$ref": "#/$defs/Workflow.WorkflowRunCursor"
|
|
2095
2559
|
},
|
|
2096
2560
|
"has_more": {
|
|
2097
2561
|
"type": "boolean"
|
|
@@ -2313,20 +2777,145 @@
|
|
|
2313
2777
|
"minimum": 0,
|
|
2314
2778
|
"maximum": 1
|
|
2315
2779
|
},
|
|
2316
|
-
"avg_ms": {
|
|
2317
|
-
"type": "number",
|
|
2318
|
-
"format": "double",
|
|
2319
|
-
"minimum": 0
|
|
2780
|
+
"avg_ms": {
|
|
2781
|
+
"type": "number",
|
|
2782
|
+
"format": "double",
|
|
2783
|
+
"minimum": 0
|
|
2784
|
+
},
|
|
2785
|
+
"p95_ms": {
|
|
2786
|
+
"type": "number",
|
|
2787
|
+
"format": "double",
|
|
2788
|
+
"minimum": 0
|
|
2789
|
+
}
|
|
2790
|
+
},
|
|
2791
|
+
"unevaluatedProperties": {
|
|
2792
|
+
"not": {}
|
|
2793
|
+
}
|
|
2794
|
+
},
|
|
2795
|
+
"Mcp.Tools.RecordDiagnosticSnapshotCheckInput": {
|
|
2796
|
+
"type": "object",
|
|
2797
|
+
"required": [
|
|
2798
|
+
"check_id",
|
|
2799
|
+
"operator",
|
|
2800
|
+
"actual"
|
|
2801
|
+
],
|
|
2802
|
+
"properties": {
|
|
2803
|
+
"check_id": {
|
|
2804
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticCheckId"
|
|
2805
|
+
},
|
|
2806
|
+
"operator": {
|
|
2807
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticOperator"
|
|
2808
|
+
},
|
|
2809
|
+
"actual": {
|
|
2810
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
|
|
2811
|
+
},
|
|
2812
|
+
"expected": {
|
|
2813
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
|
|
2814
|
+
},
|
|
2815
|
+
"expected_type": {
|
|
2816
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticValueType"
|
|
2817
|
+
}
|
|
2818
|
+
},
|
|
2819
|
+
"unevaluatedProperties": {
|
|
2820
|
+
"not": {}
|
|
2821
|
+
},
|
|
2822
|
+
"description": "One structural diagnostic check submitted for evaluation. equal, not_equal, contains, less_than, and greater_than require expected and forbid expected_type; type_is requires expected_type and forbids expected; exists forbids both."
|
|
2823
|
+
},
|
|
2824
|
+
"Mcp.Tools.RecordDiagnosticSnapshotInput": {
|
|
2825
|
+
"type": "object",
|
|
2826
|
+
"required": [
|
|
2827
|
+
"snapshot_id",
|
|
2828
|
+
"probe_id",
|
|
2829
|
+
"phase",
|
|
2830
|
+
"variables"
|
|
2831
|
+
],
|
|
2832
|
+
"properties": {
|
|
2833
|
+
"snapshot_id": {
|
|
2834
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticSnapshotId"
|
|
2835
|
+
},
|
|
2836
|
+
"probe_id": {
|
|
2837
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticProbeId"
|
|
2838
|
+
},
|
|
2839
|
+
"phase": {
|
|
2840
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticPhase"
|
|
2841
|
+
},
|
|
2842
|
+
"variables": {
|
|
2843
|
+
"type": "array",
|
|
2844
|
+
"items": {
|
|
2845
|
+
"$ref": "#/$defs/Mcp.Tools.RecordDiagnosticSnapshotVariableInput"
|
|
2846
|
+
},
|
|
2847
|
+
"maxItems": 64
|
|
2848
|
+
},
|
|
2849
|
+
"checks": {
|
|
2850
|
+
"type": "array",
|
|
2851
|
+
"items": {
|
|
2852
|
+
"$ref": "#/$defs/Mcp.Tools.RecordDiagnosticSnapshotCheckInput"
|
|
2853
|
+
},
|
|
2854
|
+
"maxItems": 64,
|
|
2855
|
+
"default": []
|
|
2856
|
+
}
|
|
2857
|
+
},
|
|
2858
|
+
"unevaluatedProperties": {
|
|
2859
|
+
"not": {}
|
|
2860
|
+
},
|
|
2861
|
+
"description": "Input for record_diagnostic_snapshot. Reuse the same snapshot_id and semantic payload when retrying; changing the payload under an existing snapshot_id is a conflict."
|
|
2862
|
+
},
|
|
2863
|
+
"Mcp.Tools.RecordDiagnosticSnapshotOutput": {
|
|
2864
|
+
"type": "object",
|
|
2865
|
+
"required": [
|
|
2866
|
+
"recorded",
|
|
2867
|
+
"code",
|
|
2868
|
+
"snapshot_id"
|
|
2869
|
+
],
|
|
2870
|
+
"properties": {
|
|
2871
|
+
"recorded": {
|
|
2872
|
+
"type": "boolean"
|
|
2873
|
+
},
|
|
2874
|
+
"code": {
|
|
2875
|
+
"type": "string"
|
|
2876
|
+
},
|
|
2877
|
+
"snapshot_id": {
|
|
2878
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticSnapshotId"
|
|
2879
|
+
},
|
|
2880
|
+
"event_id": {
|
|
2881
|
+
"$ref": "#/$defs/Workflow.WorkflowEventId"
|
|
2882
|
+
},
|
|
2883
|
+
"field": {
|
|
2884
|
+
"type": "string"
|
|
2885
|
+
}
|
|
2886
|
+
},
|
|
2887
|
+
"unevaluatedProperties": {
|
|
2888
|
+
"not": {}
|
|
2889
|
+
},
|
|
2890
|
+
"description": "Structured output for record_diagnostic_snapshot."
|
|
2891
|
+
},
|
|
2892
|
+
"Mcp.Tools.RecordDiagnosticSnapshotVariableInput": {
|
|
2893
|
+
"type": "object",
|
|
2894
|
+
"required": [
|
|
2895
|
+
"name",
|
|
2896
|
+
"classification",
|
|
2897
|
+
"value"
|
|
2898
|
+
],
|
|
2899
|
+
"properties": {
|
|
2900
|
+
"name": {
|
|
2901
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticVariableName"
|
|
2902
|
+
},
|
|
2903
|
+
"classification": {
|
|
2904
|
+
"$ref": "#/$defs/Diagnostics.AgentDiagnosticClassification"
|
|
2320
2905
|
},
|
|
2321
|
-
"
|
|
2322
|
-
"
|
|
2323
|
-
|
|
2324
|
-
|
|
2906
|
+
"value": {
|
|
2907
|
+
"anyOf": [
|
|
2908
|
+
{},
|
|
2909
|
+
{
|
|
2910
|
+
"type": "null"
|
|
2911
|
+
}
|
|
2912
|
+
]
|
|
2325
2913
|
}
|
|
2326
2914
|
},
|
|
2327
2915
|
"unevaluatedProperties": {
|
|
2328
2916
|
"not": {}
|
|
2329
|
-
}
|
|
2917
|
+
},
|
|
2918
|
+
"description": "One dynamically named JSON value submitted for protected diagnostic capture. Classification is applied before the frame leaves the observer bridge."
|
|
2330
2919
|
},
|
|
2331
2920
|
"Mcp.Tools.SearchLogsInput": {
|
|
2332
2921
|
"type": "object",
|
|
@@ -6139,6 +6728,61 @@
|
|
|
6139
6728
|
},
|
|
6140
6729
|
"description": "Request to update mutable MCP workbench workspace metadata."
|
|
6141
6730
|
},
|
|
6731
|
+
"Workflow.CommittedWorkflowProjectionStatus": {
|
|
6732
|
+
"type": "object",
|
|
6733
|
+
"required": [
|
|
6734
|
+
"state",
|
|
6735
|
+
"generation",
|
|
6736
|
+
"journal_position"
|
|
6737
|
+
],
|
|
6738
|
+
"properties": {
|
|
6739
|
+
"state": {
|
|
6740
|
+
"type": "string",
|
|
6741
|
+
"enum": [
|
|
6742
|
+
"committed"
|
|
6743
|
+
]
|
|
6744
|
+
},
|
|
6745
|
+
"generation": {
|
|
6746
|
+
"$ref": "#/$defs/Workflow.WorkflowGeneration"
|
|
6747
|
+
},
|
|
6748
|
+
"journal_position": {
|
|
6749
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6750
|
+
}
|
|
6751
|
+
},
|
|
6752
|
+
"unevaluatedProperties": {
|
|
6753
|
+
"not": {}
|
|
6754
|
+
},
|
|
6755
|
+
"description": "A valid committed projection that can be served to readers."
|
|
6756
|
+
},
|
|
6757
|
+
"Workflow.CorruptWorkflowProjectionStatus": {
|
|
6758
|
+
"type": "object",
|
|
6759
|
+
"required": [
|
|
6760
|
+
"state",
|
|
6761
|
+
"reason"
|
|
6762
|
+
],
|
|
6763
|
+
"properties": {
|
|
6764
|
+
"state": {
|
|
6765
|
+
"type": "string",
|
|
6766
|
+
"enum": [
|
|
6767
|
+
"corrupt"
|
|
6768
|
+
]
|
|
6769
|
+
},
|
|
6770
|
+
"generation": {
|
|
6771
|
+
"$ref": "#/$defs/Workflow.WorkflowGeneration"
|
|
6772
|
+
},
|
|
6773
|
+
"reason": {
|
|
6774
|
+
"type": "string",
|
|
6775
|
+
"enum": [
|
|
6776
|
+
"corrupt_derived_state",
|
|
6777
|
+
"incompatible_derived_state"
|
|
6778
|
+
]
|
|
6779
|
+
}
|
|
6780
|
+
},
|
|
6781
|
+
"unevaluatedProperties": {
|
|
6782
|
+
"not": {}
|
|
6783
|
+
},
|
|
6784
|
+
"description": "Derived projection state is corrupt or incompatible and cannot currently be served."
|
|
6785
|
+
},
|
|
6142
6786
|
"Workflow.DerivedWorkflowEdgeProvenance": {
|
|
6143
6787
|
"type": "object",
|
|
6144
6788
|
"required": [
|
|
@@ -6173,6 +6817,38 @@
|
|
|
6173
6817
|
},
|
|
6174
6818
|
"description": "Derived edge provenance with explicit evidence and confidence."
|
|
6175
6819
|
},
|
|
6820
|
+
"Workflow.RebuildingWorkflowProjectionStatus": {
|
|
6821
|
+
"type": "object",
|
|
6822
|
+
"required": [
|
|
6823
|
+
"state",
|
|
6824
|
+
"generation",
|
|
6825
|
+
"target_journal_position",
|
|
6826
|
+
"retry_after_ms"
|
|
6827
|
+
],
|
|
6828
|
+
"properties": {
|
|
6829
|
+
"state": {
|
|
6830
|
+
"type": "string",
|
|
6831
|
+
"enum": [
|
|
6832
|
+
"rebuilding"
|
|
6833
|
+
]
|
|
6834
|
+
},
|
|
6835
|
+
"generation": {
|
|
6836
|
+
"$ref": "#/$defs/Workflow.WorkflowGeneration"
|
|
6837
|
+
},
|
|
6838
|
+
"target_journal_position": {
|
|
6839
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6840
|
+
},
|
|
6841
|
+
"retry_after_ms": {
|
|
6842
|
+
"type": "integer",
|
|
6843
|
+
"format": "int32",
|
|
6844
|
+
"minimum": 1
|
|
6845
|
+
}
|
|
6846
|
+
},
|
|
6847
|
+
"unevaluatedProperties": {
|
|
6848
|
+
"not": {}
|
|
6849
|
+
},
|
|
6850
|
+
"description": "The requested generation is being reconstructed from its authoritative journal."
|
|
6851
|
+
},
|
|
6176
6852
|
"Workflow.RecordedWorkflowEdgeProvenance": {
|
|
6177
6853
|
"type": "object",
|
|
6178
6854
|
"required": [
|
|
@@ -6199,6 +6875,33 @@
|
|
|
6199
6875
|
},
|
|
6200
6876
|
"description": "Recorded edge provenance directly observed from Codex."
|
|
6201
6877
|
},
|
|
6878
|
+
"Workflow.UnavailableWorkflowProjectionStatus": {
|
|
6879
|
+
"type": "object",
|
|
6880
|
+
"required": [
|
|
6881
|
+
"state",
|
|
6882
|
+
"retry_after_ms"
|
|
6883
|
+
],
|
|
6884
|
+
"properties": {
|
|
6885
|
+
"state": {
|
|
6886
|
+
"type": "string",
|
|
6887
|
+
"enum": [
|
|
6888
|
+
"unavailable"
|
|
6889
|
+
]
|
|
6890
|
+
},
|
|
6891
|
+
"generation": {
|
|
6892
|
+
"$ref": "#/$defs/Workflow.WorkflowGeneration"
|
|
6893
|
+
},
|
|
6894
|
+
"retry_after_ms": {
|
|
6895
|
+
"type": "integer",
|
|
6896
|
+
"format": "int32",
|
|
6897
|
+
"minimum": 1
|
|
6898
|
+
}
|
|
6899
|
+
},
|
|
6900
|
+
"unevaluatedProperties": {
|
|
6901
|
+
"not": {}
|
|
6902
|
+
},
|
|
6903
|
+
"description": "Projection work is temporarily unavailable after a retryable storage failure."
|
|
6904
|
+
},
|
|
6202
6905
|
"Workflow.WorkflowAgentId": {
|
|
6203
6906
|
"type": "string",
|
|
6204
6907
|
"minLength": 1,
|
|
@@ -6457,6 +7160,50 @@
|
|
|
6457
7160
|
},
|
|
6458
7161
|
"description": "Adapter acknowledgement or terminal result for one control command."
|
|
6459
7162
|
},
|
|
7163
|
+
"Workflow.WorkflowCursorError": {
|
|
7164
|
+
"type": "object",
|
|
7165
|
+
"required": [
|
|
7166
|
+
"title",
|
|
7167
|
+
"cursor_kind",
|
|
7168
|
+
"reason"
|
|
7169
|
+
],
|
|
7170
|
+
"properties": {
|
|
7171
|
+
"title": {
|
|
7172
|
+
"type": "string",
|
|
7173
|
+
"enum": [
|
|
7174
|
+
"Invalid Workflow Cursor"
|
|
7175
|
+
]
|
|
7176
|
+
},
|
|
7177
|
+
"cursor_kind": {
|
|
7178
|
+
"$ref": "#/$defs/Workflow.WorkflowCursorKind"
|
|
7179
|
+
},
|
|
7180
|
+
"reason": {
|
|
7181
|
+
"$ref": "#/$defs/Workflow.WorkflowCursorFailureReason"
|
|
7182
|
+
},
|
|
7183
|
+
"current_generation": {
|
|
7184
|
+
"$ref": "#/$defs/Workflow.WorkflowGeneration"
|
|
7185
|
+
}
|
|
7186
|
+
},
|
|
7187
|
+
"unevaluatedProperties": {
|
|
7188
|
+
"not": {}
|
|
7189
|
+
},
|
|
7190
|
+
"allOf": [
|
|
7191
|
+
{
|
|
7192
|
+
"$ref": "#/$defs/Common.Errors.ProblemDetails"
|
|
7193
|
+
}
|
|
7194
|
+
],
|
|
7195
|
+
"description": "Opaque graph cursor is malformed, belongs to another run, or targets a stale generation."
|
|
7196
|
+
},
|
|
7197
|
+
"Workflow.WorkflowCursorFailureReason": {
|
|
7198
|
+
"type": "string",
|
|
7199
|
+
"enum": [
|
|
7200
|
+
"invalid",
|
|
7201
|
+
"wrong_run",
|
|
7202
|
+
"wrong_generation",
|
|
7203
|
+
"stale"
|
|
7204
|
+
],
|
|
7205
|
+
"description": "Why an opaque graph cursor cannot be reused for this request."
|
|
7206
|
+
},
|
|
6460
7207
|
"Workflow.WorkflowCursorGapEvent": {
|
|
6461
7208
|
"type": "object",
|
|
6462
7209
|
"required": [
|
|
@@ -6473,10 +7220,10 @@
|
|
|
6473
7220
|
]
|
|
6474
7221
|
},
|
|
6475
7222
|
"oldest_available_sequence": {
|
|
6476
|
-
"$ref": "#/$defs/Workflow.
|
|
7223
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6477
7224
|
},
|
|
6478
7225
|
"high_water_mark": {
|
|
6479
|
-
"$ref": "#/$defs/Workflow.
|
|
7226
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6480
7227
|
},
|
|
6481
7228
|
"timestamp": {
|
|
6482
7229
|
"type": "string",
|
|
@@ -6488,6 +7235,26 @@
|
|
|
6488
7235
|
},
|
|
6489
7236
|
"description": "Signals that the requested cursor predates retained workflow history."
|
|
6490
7237
|
},
|
|
7238
|
+
"Workflow.WorkflowCursorKind": {
|
|
7239
|
+
"type": "string",
|
|
7240
|
+
"enum": [
|
|
7241
|
+
"node",
|
|
7242
|
+
"edge"
|
|
7243
|
+
],
|
|
7244
|
+
"description": "Which opaque graph cursor was rejected."
|
|
7245
|
+
},
|
|
7246
|
+
"Workflow.WorkflowEdgeCursor": {
|
|
7247
|
+
"type": "string",
|
|
7248
|
+
"minLength": 1,
|
|
7249
|
+
"maxLength": 1536,
|
|
7250
|
+
"description": "Opaque edge-page continuation scoped to one workflow run and generation. Reuse it unchanged; clients must not parse or construct it."
|
|
7251
|
+
},
|
|
7252
|
+
"Workflow.WorkflowEdgeId": {
|
|
7253
|
+
"type": "string",
|
|
7254
|
+
"minLength": 1,
|
|
7255
|
+
"maxLength": 192,
|
|
7256
|
+
"description": "Stable identifier of one graph edge. Endpoint tuples preserve the nodes' structural run-versus-attempt scope and ordinal component boundaries, escape colon as \\c and backslash as \\\\, and never infer scope from a literal component value. A canonical identifier over 192 Unicode scalar values is replaced by its edge kind, a tilde, and the full lowercase 64-hex SHA-256 of the length-prefixed canonical tuple."
|
|
7257
|
+
},
|
|
6491
7258
|
"Workflow.WorkflowEdgeKind": {
|
|
6492
7259
|
"type": "string",
|
|
6493
7260
|
"enum": [
|
|
@@ -6623,10 +7390,10 @@
|
|
|
6623
7390
|
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6624
7391
|
},
|
|
6625
7392
|
"first_journal_sequence": {
|
|
6626
|
-
"$ref": "#/$defs/Workflow.
|
|
7393
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6627
7394
|
},
|
|
6628
7395
|
"last_journal_sequence": {
|
|
6629
|
-
"$ref": "#/$defs/Workflow.
|
|
7396
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6630
7397
|
}
|
|
6631
7398
|
},
|
|
6632
7399
|
"unevaluatedProperties": {
|
|
@@ -6656,10 +7423,10 @@
|
|
|
6656
7423
|
}
|
|
6657
7424
|
},
|
|
6658
7425
|
"next_sequence": {
|
|
6659
|
-
"$ref": "#/$defs/Workflow.
|
|
7426
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6660
7427
|
},
|
|
6661
7428
|
"high_water_mark": {
|
|
6662
|
-
"$ref": "#/$defs/Workflow.
|
|
7429
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6663
7430
|
},
|
|
6664
7431
|
"cursor_gap": {
|
|
6665
7432
|
"type": "boolean"
|
|
@@ -6670,6 +7437,13 @@
|
|
|
6670
7437
|
},
|
|
6671
7438
|
"description": "A bounded page of workflow journal events."
|
|
6672
7439
|
},
|
|
7440
|
+
"Workflow.WorkflowGeneration": {
|
|
7441
|
+
"type": "string",
|
|
7442
|
+
"minLength": 32,
|
|
7443
|
+
"maxLength": 32,
|
|
7444
|
+
"pattern": "^[0-9a-f]{12}4[0-9a-f]{3}[89ab][0-9a-f]{15}$",
|
|
7445
|
+
"description": "Opaque incarnation identifier for one workflow run's projected state."
|
|
7446
|
+
},
|
|
6673
7447
|
"Workflow.WorkflowGraphEdge": {
|
|
6674
7448
|
"type": "object",
|
|
6675
7449
|
"required": [
|
|
@@ -6681,7 +7455,7 @@
|
|
|
6681
7455
|
],
|
|
6682
7456
|
"properties": {
|
|
6683
7457
|
"edge_id": {
|
|
6684
|
-
"
|
|
7458
|
+
"$ref": "#/$defs/Workflow.WorkflowEdgeId"
|
|
6685
7459
|
},
|
|
6686
7460
|
"source_node_id": {
|
|
6687
7461
|
"$ref": "#/$defs/Workflow.WorkflowNodeId"
|
|
@@ -6699,7 +7473,7 @@
|
|
|
6699
7473
|
"unevaluatedProperties": {
|
|
6700
7474
|
"not": {}
|
|
6701
7475
|
},
|
|
6702
|
-
"description": "One typed edge in the deterministic workflow graph projection."
|
|
7476
|
+
"description": "One typed edge in the deterministic workflow graph projection. Data, Control, and Gate edges are causal dependencies. Temporal edges describe observed order, Resource edges describe resource use, and Conflict edges describe contention; Temporal, Resource, and Conflict edges are excluded from critical-path causality."
|
|
6703
7477
|
},
|
|
6704
7478
|
"Workflow.WorkflowGraphNode": {
|
|
6705
7479
|
"type": "object",
|
|
@@ -6759,6 +7533,7 @@
|
|
|
6759
7533
|
"type": "object",
|
|
6760
7534
|
"required": [
|
|
6761
7535
|
"run",
|
|
7536
|
+
"projection_status",
|
|
6762
7537
|
"nodes",
|
|
6763
7538
|
"edges",
|
|
6764
7539
|
"statistics",
|
|
@@ -6772,6 +7547,9 @@
|
|
|
6772
7547
|
"run": {
|
|
6773
7548
|
"$ref": "#/$defs/Workflow.WorkflowRun"
|
|
6774
7549
|
},
|
|
7550
|
+
"projection_status": {
|
|
7551
|
+
"$ref": "#/$defs/Workflow.WorkflowProjectionStatus"
|
|
7552
|
+
},
|
|
6775
7553
|
"nodes": {
|
|
6776
7554
|
"type": "array",
|
|
6777
7555
|
"items": {
|
|
@@ -6788,13 +7566,15 @@
|
|
|
6788
7566
|
"$ref": "#/$defs/Workflow.WorkflowGraphStatistics"
|
|
6789
7567
|
},
|
|
6790
7568
|
"journal_sequence": {
|
|
6791
|
-
"$ref": "#/$defs/Workflow.
|
|
7569
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6792
7570
|
},
|
|
6793
7571
|
"next_node_cursor": {
|
|
6794
|
-
"
|
|
7572
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeCursor",
|
|
7573
|
+
"description": "Opaque node continuation for the next page. Reuse it unchanged as node_cursor on the next graph request; do not parse, construct, or modify it."
|
|
6795
7574
|
},
|
|
6796
7575
|
"next_edge_cursor": {
|
|
6797
|
-
"
|
|
7576
|
+
"$ref": "#/$defs/Workflow.WorkflowEdgeCursor",
|
|
7577
|
+
"description": "Opaque edge continuation for the next page. Reuse it unchanged as edge_cursor on the next graph request; do not parse, construct, or modify it."
|
|
6798
7578
|
},
|
|
6799
7579
|
"has_more_nodes": {
|
|
6800
7580
|
"type": "boolean"
|
|
@@ -6862,7 +7642,7 @@
|
|
|
6862
7642
|
"unevaluatedProperties": {
|
|
6863
7643
|
"not": {}
|
|
6864
7644
|
},
|
|
6865
|
-
"description": "Work and critical-path statistics for a workflow graph."
|
|
7645
|
+
"description": "Work and critical-path statistics for a workflow graph. Every ToolCall, Wait, Gate, and duration-bearing Message or Item contributes an independently weighted interval even when it has no Agent owner. An Agent contributes its own-work fragments: its interval minus the union of precisely owned child intervals clipped to the Agent interval. Precisely owned children are Control-linked Agent and ToolCall nodes, Temporal-linked Wait nodes, Gate-linked Gate nodes, and Data-linked duration-bearing Message or Item nodes. Peak concurrency sweeps every positive independently weighted or Agent own-work fragment. Critical-path analysis uses only Data, Control, and Gate edges, condenses each causal strongly connected component, charges every component member exactly once, and expands selected component members in ordinal node-id order."
|
|
6866
7646
|
},
|
|
6867
7647
|
"Workflow.WorkflowHeartbeatEvent": {
|
|
6868
7648
|
"type": "object",
|
|
@@ -6879,7 +7659,7 @@
|
|
|
6879
7659
|
]
|
|
6880
7660
|
},
|
|
6881
7661
|
"high_water_mark": {
|
|
6882
|
-
"$ref": "#/$defs/Workflow.
|
|
7662
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6883
7663
|
},
|
|
6884
7664
|
"timestamp": {
|
|
6885
7665
|
"type": "string",
|
|
@@ -6906,7 +7686,7 @@
|
|
|
6906
7686
|
"type": "string"
|
|
6907
7687
|
},
|
|
6908
7688
|
"journal_sequence": {
|
|
6909
|
-
"$ref": "#/$defs/Workflow.
|
|
7689
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
6910
7690
|
}
|
|
6911
7691
|
},
|
|
6912
7692
|
"unevaluatedProperties": {
|
|
@@ -6955,11 +7735,24 @@
|
|
|
6955
7735
|
],
|
|
6956
7736
|
"description": "Immutable journal event kinds accepted from a Codex observer."
|
|
6957
7737
|
},
|
|
7738
|
+
"Workflow.WorkflowJournalPosition": {
|
|
7739
|
+
"type": "string",
|
|
7740
|
+
"format": "uint64",
|
|
7741
|
+
"description": "Collector-assigned position in the authoritative workflow journal, encoded without JavaScript precision loss.",
|
|
7742
|
+
"pattern": "^(0|[1-9][0-9]*)$",
|
|
7743
|
+
"maxLength": 20
|
|
7744
|
+
},
|
|
7745
|
+
"Workflow.WorkflowNodeCursor": {
|
|
7746
|
+
"type": "string",
|
|
7747
|
+
"minLength": 1,
|
|
7748
|
+
"maxLength": 1536,
|
|
7749
|
+
"description": "Opaque node-page continuation scoped to one workflow run and generation. Reuse it unchanged; clients must not parse or construct it."
|
|
7750
|
+
},
|
|
6958
7751
|
"Workflow.WorkflowNodeId": {
|
|
6959
7752
|
"type": "string",
|
|
6960
7753
|
"minLength": 1,
|
|
6961
7754
|
"maxLength": 192,
|
|
6962
|
-
"description": "Stable identifier of one graph node."
|
|
7755
|
+
"description": "Stable identifier of one graph node. Canonical tuples structurally distinguish run scope from attempt scope, escape colon as \\c and backslash as \\\\, and never infer scope from a literal component value. A canonical identifier over 192 Unicode scalar values is replaced by its kind, a tilde, and the full lowercase 64-hex SHA-256 of the length-prefixed canonical tuple."
|
|
6963
7756
|
},
|
|
6964
7757
|
"Workflow.WorkflowNodeKind": {
|
|
6965
7758
|
"type": "string",
|
|
@@ -6976,10 +7769,82 @@
|
|
|
6976
7769
|
],
|
|
6977
7770
|
"description": "Kinds of execution node in the deterministic workflow graph."
|
|
6978
7771
|
},
|
|
7772
|
+
"Workflow.WorkflowProjectionCorruptError": {
|
|
7773
|
+
"type": "object",
|
|
7774
|
+
"required": [
|
|
7775
|
+
"title",
|
|
7776
|
+
"projection_status"
|
|
7777
|
+
],
|
|
7778
|
+
"properties": {
|
|
7779
|
+
"title": {
|
|
7780
|
+
"type": "string",
|
|
7781
|
+
"enum": [
|
|
7782
|
+
"Workflow Projection Corrupt"
|
|
7783
|
+
]
|
|
7784
|
+
},
|
|
7785
|
+
"projection_status": {
|
|
7786
|
+
"$ref": "#/$defs/Workflow.WorkflowProjectionStatus"
|
|
7787
|
+
}
|
|
7788
|
+
},
|
|
7789
|
+
"unevaluatedProperties": {
|
|
7790
|
+
"not": {}
|
|
7791
|
+
},
|
|
7792
|
+
"allOf": [
|
|
7793
|
+
{
|
|
7794
|
+
"$ref": "#/$defs/Common.Errors.ProblemDetails"
|
|
7795
|
+
}
|
|
7796
|
+
],
|
|
7797
|
+
"description": "Workflow projection is non-retryably corrupt or incompatible. Internal storage details are intentionally omitted."
|
|
7798
|
+
},
|
|
7799
|
+
"Workflow.WorkflowProjectionStatus": {
|
|
7800
|
+
"anyOf": [
|
|
7801
|
+
{
|
|
7802
|
+
"$ref": "#/$defs/Workflow.CommittedWorkflowProjectionStatus"
|
|
7803
|
+
},
|
|
7804
|
+
{
|
|
7805
|
+
"$ref": "#/$defs/Workflow.RebuildingWorkflowProjectionStatus"
|
|
7806
|
+
},
|
|
7807
|
+
{
|
|
7808
|
+
"$ref": "#/$defs/Workflow.UnavailableWorkflowProjectionStatus"
|
|
7809
|
+
},
|
|
7810
|
+
{
|
|
7811
|
+
"$ref": "#/$defs/Workflow.CorruptWorkflowProjectionStatus"
|
|
7812
|
+
}
|
|
7813
|
+
],
|
|
7814
|
+
"description": "Closed public availability state for one workflow projection. Storage paths, hashes, fingerprints, and database errors remain private."
|
|
7815
|
+
},
|
|
7816
|
+
"Workflow.WorkflowProjectionUnavailableError": {
|
|
7817
|
+
"type": "object",
|
|
7818
|
+
"required": [
|
|
7819
|
+
"title",
|
|
7820
|
+
"projection_status"
|
|
7821
|
+
],
|
|
7822
|
+
"properties": {
|
|
7823
|
+
"title": {
|
|
7824
|
+
"type": "string",
|
|
7825
|
+
"enum": [
|
|
7826
|
+
"Workflow Projection Unavailable"
|
|
7827
|
+
]
|
|
7828
|
+
},
|
|
7829
|
+
"projection_status": {
|
|
7830
|
+
"$ref": "#/$defs/Workflow.WorkflowProjectionStatus"
|
|
7831
|
+
}
|
|
7832
|
+
},
|
|
7833
|
+
"unevaluatedProperties": {
|
|
7834
|
+
"not": {}
|
|
7835
|
+
},
|
|
7836
|
+
"allOf": [
|
|
7837
|
+
{
|
|
7838
|
+
"$ref": "#/$defs/Common.Errors.ProblemDetails"
|
|
7839
|
+
}
|
|
7840
|
+
],
|
|
7841
|
+
"description": "Workflow projection is rebuilding or temporarily unavailable after a retryable storage failure."
|
|
7842
|
+
},
|
|
6979
7843
|
"Workflow.WorkflowRun": {
|
|
6980
7844
|
"type": "object",
|
|
6981
7845
|
"required": [
|
|
6982
7846
|
"run_id",
|
|
7847
|
+
"generation",
|
|
6983
7848
|
"status",
|
|
6984
7849
|
"started_at",
|
|
6985
7850
|
"latest_journal_sequence"
|
|
@@ -6988,6 +7853,9 @@
|
|
|
6988
7853
|
"run_id": {
|
|
6989
7854
|
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
6990
7855
|
},
|
|
7856
|
+
"generation": {
|
|
7857
|
+
"$ref": "#/$defs/Workflow.WorkflowGeneration"
|
|
7858
|
+
},
|
|
6991
7859
|
"thread_id": {
|
|
6992
7860
|
"type": "string"
|
|
6993
7861
|
},
|
|
@@ -7006,7 +7874,7 @@
|
|
|
7006
7874
|
"format": "date-time"
|
|
7007
7875
|
},
|
|
7008
7876
|
"latest_journal_sequence": {
|
|
7009
|
-
"$ref": "#/$defs/Workflow.
|
|
7877
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalPosition"
|
|
7010
7878
|
},
|
|
7011
7879
|
"active_attempt_id": {
|
|
7012
7880
|
"$ref": "#/$defs/Workflow.WorkflowAttemptId"
|
|
@@ -7051,6 +7919,39 @@
|
|
|
7051
7919
|
},
|
|
7052
7920
|
"description": "Request to create an observed workflow run before appending journal events."
|
|
7053
7921
|
},
|
|
7922
|
+
"Workflow.WorkflowRunCursor": {
|
|
7923
|
+
"type": "string",
|
|
7924
|
+
"minLength": 1,
|
|
7925
|
+
"maxLength": 512,
|
|
7926
|
+
"description": "Opaque workflow-run list continuation scoped to the project and status filter. Reuse it unchanged; clients must not parse or construct it."
|
|
7927
|
+
},
|
|
7928
|
+
"Workflow.WorkflowRunDeletedError": {
|
|
7929
|
+
"type": "object",
|
|
7930
|
+
"required": [
|
|
7931
|
+
"title",
|
|
7932
|
+
"run_id"
|
|
7933
|
+
],
|
|
7934
|
+
"properties": {
|
|
7935
|
+
"title": {
|
|
7936
|
+
"type": "string",
|
|
7937
|
+
"enum": [
|
|
7938
|
+
"Workflow Run Deleted"
|
|
7939
|
+
]
|
|
7940
|
+
},
|
|
7941
|
+
"run_id": {
|
|
7942
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
7943
|
+
}
|
|
7944
|
+
},
|
|
7945
|
+
"unevaluatedProperties": {
|
|
7946
|
+
"not": {}
|
|
7947
|
+
},
|
|
7948
|
+
"allOf": [
|
|
7949
|
+
{
|
|
7950
|
+
"$ref": "#/$defs/Common.Errors.ProblemDetails"
|
|
7951
|
+
}
|
|
7952
|
+
],
|
|
7953
|
+
"description": "Workflow run was durably deleted and can no longer accept events or publish projections."
|
|
7954
|
+
},
|
|
7054
7955
|
"Workflow.WorkflowRunId": {
|
|
7055
7956
|
"type": "string",
|
|
7056
7957
|
"minLength": 1,
|
|
@@ -7071,7 +7972,7 @@
|
|
|
7071
7972
|
}
|
|
7072
7973
|
},
|
|
7073
7974
|
"next_cursor": {
|
|
7074
|
-
"
|
|
7975
|
+
"$ref": "#/$defs/Workflow.WorkflowRunCursor"
|
|
7075
7976
|
},
|
|
7076
7977
|
"has_more": {
|
|
7077
7978
|
"type": "boolean"
|
|
@@ -8459,6 +9360,9 @@
|
|
|
8459
9360
|
"Operations.WorkflowRunsApi_appendEvents.Response.409": {
|
|
8460
9361
|
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
8461
9362
|
},
|
|
9363
|
+
"Operations.WorkflowRunsApi_appendEvents.Response.410": {
|
|
9364
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9365
|
+
},
|
|
8462
9366
|
"Operations.WorkflowRunsApi_appendEvents.Response.500": {
|
|
8463
9367
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8464
9368
|
},
|
|
@@ -8480,6 +9384,9 @@
|
|
|
8480
9384
|
"Operations.WorkflowRunsApi_create.Response.409": {
|
|
8481
9385
|
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
8482
9386
|
},
|
|
9387
|
+
"Operations.WorkflowRunsApi_create.Response.410": {
|
|
9388
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9389
|
+
},
|
|
8483
9390
|
"Operations.WorkflowRunsApi_create.Response.500": {
|
|
8484
9391
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8485
9392
|
},
|
|
@@ -8495,6 +9402,9 @@
|
|
|
8495
9402
|
"Operations.WorkflowRunsApi_get.Response.404": {
|
|
8496
9403
|
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8497
9404
|
},
|
|
9405
|
+
"Operations.WorkflowRunsApi_get.Response.410": {
|
|
9406
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9407
|
+
},
|
|
8498
9408
|
"Operations.WorkflowRunsApi_get.Response.500": {
|
|
8499
9409
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8500
9410
|
},
|
|
@@ -8510,6 +9420,9 @@
|
|
|
8510
9420
|
"Operations.WorkflowRunsApi_getContent.Response.404": {
|
|
8511
9421
|
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8512
9422
|
},
|
|
9423
|
+
"Operations.WorkflowRunsApi_getContent.Response.410": {
|
|
9424
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9425
|
+
},
|
|
8513
9426
|
"Operations.WorkflowRunsApi_getContent.Response.500": {
|
|
8514
9427
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8515
9428
|
},
|
|
@@ -8528,11 +9441,17 @@
|
|
|
8528
9441
|
"Operations.WorkflowRunsApi_getGraph.Response.404": {
|
|
8529
9442
|
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8530
9443
|
},
|
|
9444
|
+
"Operations.WorkflowRunsApi_getGraph.Response.409": {
|
|
9445
|
+
"$ref": "#/$defs/Workflow.WorkflowCursorError"
|
|
9446
|
+
},
|
|
9447
|
+
"Operations.WorkflowRunsApi_getGraph.Response.410": {
|
|
9448
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9449
|
+
},
|
|
8531
9450
|
"Operations.WorkflowRunsApi_getGraph.Response.500": {
|
|
8532
|
-
"$ref": "#/$defs/
|
|
9451
|
+
"$ref": "#/$defs/Workflow.WorkflowProjectionCorruptError"
|
|
8533
9452
|
},
|
|
8534
9453
|
"Operations.WorkflowRunsApi_getGraph.Response.503": {
|
|
8535
|
-
"$ref": "#/$defs/
|
|
9454
|
+
"$ref": "#/$defs/Workflow.WorkflowProjectionUnavailableError"
|
|
8536
9455
|
},
|
|
8537
9456
|
"Operations.WorkflowRunsApi_list.Response.200": {
|
|
8538
9457
|
"$ref": "#/$defs/Workflow.WorkflowRunPage"
|
|
@@ -8561,6 +9480,9 @@
|
|
|
8561
9480
|
"Operations.WorkflowRunsApi_pollControls.Response.404": {
|
|
8562
9481
|
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8563
9482
|
},
|
|
9483
|
+
"Operations.WorkflowRunsApi_pollControls.Response.410": {
|
|
9484
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9485
|
+
},
|
|
8564
9486
|
"Operations.WorkflowRunsApi_pollControls.Response.500": {
|
|
8565
9487
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8566
9488
|
},
|
|
@@ -8579,6 +9501,9 @@
|
|
|
8579
9501
|
"Operations.WorkflowRunsApi_readEvents.Response.404": {
|
|
8580
9502
|
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8581
9503
|
},
|
|
9504
|
+
"Operations.WorkflowRunsApi_readEvents.Response.410": {
|
|
9505
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9506
|
+
},
|
|
8582
9507
|
"Operations.WorkflowRunsApi_readEvents.Response.500": {
|
|
8583
9508
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8584
9509
|
},
|
|
@@ -8594,6 +9519,9 @@
|
|
|
8594
9519
|
"Operations.WorkflowRunsApi_stream.Response.404": {
|
|
8595
9520
|
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8596
9521
|
},
|
|
9522
|
+
"Operations.WorkflowRunsApi_stream.Response.410": {
|
|
9523
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9524
|
+
},
|
|
8597
9525
|
"Operations.WorkflowRunsApi_stream.Response.500": {
|
|
8598
9526
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8599
9527
|
},
|
|
@@ -8618,6 +9546,9 @@
|
|
|
8618
9546
|
"Operations.WorkflowRunsApi_submitControl.Response.409": {
|
|
8619
9547
|
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
8620
9548
|
},
|
|
9549
|
+
"Operations.WorkflowRunsApi_submitControl.Response.410": {
|
|
9550
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9551
|
+
},
|
|
8621
9552
|
"Operations.WorkflowRunsApi_submitControl.Response.500": {
|
|
8622
9553
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8623
9554
|
},
|
|
@@ -8642,6 +9573,9 @@
|
|
|
8642
9573
|
"Operations.WorkflowRunsApi_updateControl.Response.409": {
|
|
8643
9574
|
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
8644
9575
|
},
|
|
9576
|
+
"Operations.WorkflowRunsApi_updateControl.Response.410": {
|
|
9577
|
+
"$ref": "#/$defs/Workflow.WorkflowRunDeletedError"
|
|
9578
|
+
},
|
|
8645
9579
|
"Operations.WorkflowRunsApi_updateControl.Response.500": {
|
|
8646
9580
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8647
9581
|
},
|