@ancplua/qyl-api-schema 3.0.0 → 5.0.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 +231 -0
- package/common/types.tsp +11 -0
- package/generated/json-schema/qyl-api-schema.json +1800 -169
- package/generated/openapi/qyl.openapi.json +9301 -5623
- package/generated/otel-keys.gen.tsp +92 -92
- package/generated/ts-runtime/api.d.ts +388 -0
- package/generated/ts-runtime/api.js +103 -0
- package/index.tsp +2 -0
- package/models/health.tsp +12 -0
- package/models/mcp-tools.tsp +223 -0
- package/models/workflow.tsp +537 -0
- package/package.json +6 -4
|
@@ -207,6 +207,16 @@
|
|
|
207
207
|
"application/json"
|
|
208
208
|
]
|
|
209
209
|
},
|
|
210
|
+
"Common.ContractRevision": {
|
|
211
|
+
"type": "string",
|
|
212
|
+
"minLength": 23,
|
|
213
|
+
"maxLength": 23,
|
|
214
|
+
"pattern": "^sha256:[a-f0-9]{16}$",
|
|
215
|
+
"description": "Deterministic revision of the generated API contract: 'sha256:' followed by the first 16 hex characters of its canonical semantic digest.",
|
|
216
|
+
"examples": [
|
|
217
|
+
"sha256:0f1e2d3c4b5a6978"
|
|
218
|
+
]
|
|
219
|
+
},
|
|
210
220
|
"Common.CostUsd": {
|
|
211
221
|
"type": "number",
|
|
212
222
|
"format": "double",
|
|
@@ -1362,7 +1372,8 @@
|
|
|
1362
1372
|
"required": [
|
|
1363
1373
|
"status",
|
|
1364
1374
|
"total_duration_ms",
|
|
1365
|
-
"entries"
|
|
1375
|
+
"entries",
|
|
1376
|
+
"contract_revision"
|
|
1366
1377
|
],
|
|
1367
1378
|
"properties": {
|
|
1368
1379
|
"status": {
|
|
@@ -1377,6 +1388,10 @@
|
|
|
1377
1388
|
"unevaluatedProperties": {
|
|
1378
1389
|
"$ref": "#/$defs/Health.HealthCheckEntry"
|
|
1379
1390
|
}
|
|
1391
|
+
},
|
|
1392
|
+
"contract_revision": {
|
|
1393
|
+
"$ref": "#/$defs/Common.ContractRevision",
|
|
1394
|
+
"description": "Revision of the API contract this process serves, for the client-side startup handshake."
|
|
1380
1395
|
}
|
|
1381
1396
|
},
|
|
1382
1397
|
"unevaluatedProperties": {
|
|
@@ -1393,6 +1408,185 @@
|
|
|
1393
1408
|
],
|
|
1394
1409
|
"description": "Health state reported by a qyl-managed process."
|
|
1395
1410
|
},
|
|
1411
|
+
"Mcp.Tools.CiLogInput": {
|
|
1412
|
+
"type": "object",
|
|
1413
|
+
"properties": {
|
|
1414
|
+
"run_id": {
|
|
1415
|
+
"$ref": "#/$defs/Common.SessionId",
|
|
1416
|
+
"description": "Session id of one CI run for a per-leg phase breakdown; omit to list recent runs."
|
|
1417
|
+
},
|
|
1418
|
+
"limit": {
|
|
1419
|
+
"type": "integer",
|
|
1420
|
+
"format": "int32",
|
|
1421
|
+
"minimum": 1,
|
|
1422
|
+
"maximum": 50,
|
|
1423
|
+
"description": "Maximum CI runs to list.",
|
|
1424
|
+
"default": 10
|
|
1425
|
+
}
|
|
1426
|
+
},
|
|
1427
|
+
"unevaluatedProperties": {
|
|
1428
|
+
"not": {}
|
|
1429
|
+
},
|
|
1430
|
+
"description": "Input for ci_log."
|
|
1431
|
+
},
|
|
1432
|
+
"Mcp.Tools.CiLogOutput": {
|
|
1433
|
+
"type": "object",
|
|
1434
|
+
"required": [
|
|
1435
|
+
"mode"
|
|
1436
|
+
],
|
|
1437
|
+
"properties": {
|
|
1438
|
+
"runs": {
|
|
1439
|
+
"type": "array",
|
|
1440
|
+
"items": {
|
|
1441
|
+
"$ref": "#/$defs/Mcp.Tools.CiRunSummary"
|
|
1442
|
+
}
|
|
1443
|
+
},
|
|
1444
|
+
"run_id": {
|
|
1445
|
+
"$ref": "#/$defs/Common.SessionId"
|
|
1446
|
+
},
|
|
1447
|
+
"phases": {
|
|
1448
|
+
"type": "array",
|
|
1449
|
+
"items": {
|
|
1450
|
+
"$ref": "#/$defs/Mcp.Tools.CiPhase"
|
|
1451
|
+
}
|
|
1452
|
+
},
|
|
1453
|
+
"mode": {
|
|
1454
|
+
"$ref": "#/$defs/Mcp.Tools.McpDataMode"
|
|
1455
|
+
}
|
|
1456
|
+
},
|
|
1457
|
+
"unevaluatedProperties": {
|
|
1458
|
+
"not": {}
|
|
1459
|
+
},
|
|
1460
|
+
"description": "Structured output for ci_log: recent runs, or one run's phases."
|
|
1461
|
+
},
|
|
1462
|
+
"Mcp.Tools.CiPhase": {
|
|
1463
|
+
"type": "object",
|
|
1464
|
+
"required": [
|
|
1465
|
+
"leg",
|
|
1466
|
+
"phase",
|
|
1467
|
+
"status",
|
|
1468
|
+
"duration_ms"
|
|
1469
|
+
],
|
|
1470
|
+
"properties": {
|
|
1471
|
+
"leg": {
|
|
1472
|
+
"type": "string",
|
|
1473
|
+
"description": "Value of the span's ci.leg attribute, falling back to its service name."
|
|
1474
|
+
},
|
|
1475
|
+
"phase": {
|
|
1476
|
+
"type": "string",
|
|
1477
|
+
"description": "Span name, which the CI emitter convention sets to the phase name."
|
|
1478
|
+
},
|
|
1479
|
+
"status": {
|
|
1480
|
+
"$ref": "#/$defs/Mcp.Tools.CiPhaseStatus"
|
|
1481
|
+
},
|
|
1482
|
+
"duration_ms": {
|
|
1483
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
1484
|
+
},
|
|
1485
|
+
"message": {
|
|
1486
|
+
"type": "string",
|
|
1487
|
+
"description": "Span status message, present on a failed phase."
|
|
1488
|
+
}
|
|
1489
|
+
},
|
|
1490
|
+
"unevaluatedProperties": {
|
|
1491
|
+
"not": {}
|
|
1492
|
+
},
|
|
1493
|
+
"description": "One phase span of a CI run, attributed to the leg that executed it."
|
|
1494
|
+
},
|
|
1495
|
+
"Mcp.Tools.CiPhaseStatus": {
|
|
1496
|
+
"type": "string",
|
|
1497
|
+
"enum": [
|
|
1498
|
+
"ok",
|
|
1499
|
+
"error",
|
|
1500
|
+
"unset"
|
|
1501
|
+
],
|
|
1502
|
+
"description": "Outcome of one CI phase span, projected from its OpenTelemetry span status."
|
|
1503
|
+
},
|
|
1504
|
+
"Mcp.Tools.CiRunSummary": {
|
|
1505
|
+
"type": "object",
|
|
1506
|
+
"required": [
|
|
1507
|
+
"run_id",
|
|
1508
|
+
"state",
|
|
1509
|
+
"start_time",
|
|
1510
|
+
"error_count",
|
|
1511
|
+
"services"
|
|
1512
|
+
],
|
|
1513
|
+
"properties": {
|
|
1514
|
+
"run_id": {
|
|
1515
|
+
"$ref": "#/$defs/Common.SessionId"
|
|
1516
|
+
},
|
|
1517
|
+
"state": {
|
|
1518
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionState"
|
|
1519
|
+
},
|
|
1520
|
+
"start_time": {
|
|
1521
|
+
"type": "string",
|
|
1522
|
+
"format": "date-time"
|
|
1523
|
+
},
|
|
1524
|
+
"duration_ms": {
|
|
1525
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
1526
|
+
},
|
|
1527
|
+
"error_count": {
|
|
1528
|
+
"type": "integer",
|
|
1529
|
+
"format": "int32",
|
|
1530
|
+
"minimum": 0,
|
|
1531
|
+
"description": "Spans in the run that ended with an error status."
|
|
1532
|
+
},
|
|
1533
|
+
"services": {
|
|
1534
|
+
"type": "array",
|
|
1535
|
+
"items": {
|
|
1536
|
+
"type": "string"
|
|
1537
|
+
},
|
|
1538
|
+
"description": "Service names observed in the run, at least one of which is CI-emitted."
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
"unevaluatedProperties": {
|
|
1542
|
+
"not": {}
|
|
1543
|
+
},
|
|
1544
|
+
"description": "One CI run, summarized from the session its telemetry is grouped under."
|
|
1545
|
+
},
|
|
1546
|
+
"Mcp.Tools.ControlWorkflowRunInput": {
|
|
1547
|
+
"type": "object",
|
|
1548
|
+
"required": [
|
|
1549
|
+
"run_id",
|
|
1550
|
+
"action",
|
|
1551
|
+
"idempotency_key"
|
|
1552
|
+
],
|
|
1553
|
+
"properties": {
|
|
1554
|
+
"run_id": {
|
|
1555
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
1556
|
+
},
|
|
1557
|
+
"action": {
|
|
1558
|
+
"$ref": "#/$defs/Workflow.WorkflowControlAction"
|
|
1559
|
+
},
|
|
1560
|
+
"idempotency_key": {
|
|
1561
|
+
"type": "string",
|
|
1562
|
+
"minLength": 1,
|
|
1563
|
+
"maxLength": 160
|
|
1564
|
+
},
|
|
1565
|
+
"input": {
|
|
1566
|
+
"type": "string",
|
|
1567
|
+
"maxLength": 32768
|
|
1568
|
+
}
|
|
1569
|
+
},
|
|
1570
|
+
"unevaluatedProperties": {
|
|
1571
|
+
"not": {}
|
|
1572
|
+
},
|
|
1573
|
+
"description": "Input for control_workflow_run."
|
|
1574
|
+
},
|
|
1575
|
+
"Mcp.Tools.ControlWorkflowRunOutput": {
|
|
1576
|
+
"type": "object",
|
|
1577
|
+
"required": [
|
|
1578
|
+
"command"
|
|
1579
|
+
],
|
|
1580
|
+
"properties": {
|
|
1581
|
+
"command": {
|
|
1582
|
+
"$ref": "#/$defs/Workflow.WorkflowControlCommand"
|
|
1583
|
+
}
|
|
1584
|
+
},
|
|
1585
|
+
"unevaluatedProperties": {
|
|
1586
|
+
"not": {}
|
|
1587
|
+
},
|
|
1588
|
+
"description": "Structured output for control_workflow_run."
|
|
1589
|
+
},
|
|
1396
1590
|
"Mcp.Tools.DisplayMcpDashboardInput": {
|
|
1397
1591
|
"type": "object",
|
|
1398
1592
|
"properties": {
|
|
@@ -1471,6 +1665,61 @@
|
|
|
1471
1665
|
},
|
|
1472
1666
|
"description": "Structured output for display_traces."
|
|
1473
1667
|
},
|
|
1668
|
+
"Mcp.Tools.DisplayWorkflowGraphInput": {
|
|
1669
|
+
"type": "object",
|
|
1670
|
+
"properties": {
|
|
1671
|
+
"run_id": {
|
|
1672
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
1673
|
+
},
|
|
1674
|
+
"node_cursor": {
|
|
1675
|
+
"type": "string"
|
|
1676
|
+
},
|
|
1677
|
+
"node_limit": {
|
|
1678
|
+
"type": "integer",
|
|
1679
|
+
"format": "int32",
|
|
1680
|
+
"minimum": 1,
|
|
1681
|
+
"maximum": 1000,
|
|
1682
|
+
"default": 250
|
|
1683
|
+
},
|
|
1684
|
+
"edge_cursor": {
|
|
1685
|
+
"type": "string"
|
|
1686
|
+
},
|
|
1687
|
+
"edge_limit": {
|
|
1688
|
+
"type": "integer",
|
|
1689
|
+
"format": "int32",
|
|
1690
|
+
"minimum": 1,
|
|
1691
|
+
"maximum": 2000,
|
|
1692
|
+
"default": 500
|
|
1693
|
+
}
|
|
1694
|
+
},
|
|
1695
|
+
"unevaluatedProperties": {
|
|
1696
|
+
"not": {}
|
|
1697
|
+
},
|
|
1698
|
+
"description": "Input for display_workflow_graph. Omit run_id to select the most recent run."
|
|
1699
|
+
},
|
|
1700
|
+
"Mcp.Tools.DisplayWorkflowGraphOutput": {
|
|
1701
|
+
"type": "object",
|
|
1702
|
+
"required": [
|
|
1703
|
+
"graph",
|
|
1704
|
+
"live_controls_available",
|
|
1705
|
+
"mode"
|
|
1706
|
+
],
|
|
1707
|
+
"properties": {
|
|
1708
|
+
"graph": {
|
|
1709
|
+
"$ref": "#/$defs/Workflow.WorkflowGraphSnapshot"
|
|
1710
|
+
},
|
|
1711
|
+
"live_controls_available": {
|
|
1712
|
+
"type": "boolean"
|
|
1713
|
+
},
|
|
1714
|
+
"mode": {
|
|
1715
|
+
"$ref": "#/$defs/Mcp.Tools.McpDataMode"
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
"unevaluatedProperties": {
|
|
1719
|
+
"not": {}
|
|
1720
|
+
},
|
|
1721
|
+
"description": "Structured output for display_workflow_graph."
|
|
1722
|
+
},
|
|
1474
1723
|
"Mcp.Tools.FetchTelemetryInput": {
|
|
1475
1724
|
"type": "object",
|
|
1476
1725
|
"required": [
|
|
@@ -1556,6 +1805,88 @@
|
|
|
1556
1805
|
],
|
|
1557
1806
|
"description": "Data projection requested by the app-only fetch_telemetry tool."
|
|
1558
1807
|
},
|
|
1808
|
+
"Mcp.Tools.FetchWorkflowGraphUpdatesInput": {
|
|
1809
|
+
"type": "object",
|
|
1810
|
+
"required": [
|
|
1811
|
+
"run_id",
|
|
1812
|
+
"after_sequence"
|
|
1813
|
+
],
|
|
1814
|
+
"properties": {
|
|
1815
|
+
"run_id": {
|
|
1816
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
1817
|
+
},
|
|
1818
|
+
"after_sequence": {
|
|
1819
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
1820
|
+
},
|
|
1821
|
+
"limit": {
|
|
1822
|
+
"type": "integer",
|
|
1823
|
+
"format": "int32",
|
|
1824
|
+
"minimum": 1,
|
|
1825
|
+
"maximum": 1000,
|
|
1826
|
+
"default": 250
|
|
1827
|
+
},
|
|
1828
|
+
"wait_ms": {
|
|
1829
|
+
"type": "integer",
|
|
1830
|
+
"format": "int32",
|
|
1831
|
+
"minimum": 0,
|
|
1832
|
+
"maximum": 30000,
|
|
1833
|
+
"default": 20000
|
|
1834
|
+
},
|
|
1835
|
+
"node_cursor": {
|
|
1836
|
+
"type": "string"
|
|
1837
|
+
},
|
|
1838
|
+
"node_limit": {
|
|
1839
|
+
"type": "integer",
|
|
1840
|
+
"format": "int32",
|
|
1841
|
+
"minimum": 1,
|
|
1842
|
+
"maximum": 1000,
|
|
1843
|
+
"default": 250
|
|
1844
|
+
},
|
|
1845
|
+
"edge_cursor": {
|
|
1846
|
+
"type": "string"
|
|
1847
|
+
},
|
|
1848
|
+
"edge_limit": {
|
|
1849
|
+
"type": "integer",
|
|
1850
|
+
"format": "int32",
|
|
1851
|
+
"minimum": 1,
|
|
1852
|
+
"maximum": 2000,
|
|
1853
|
+
"default": 500
|
|
1854
|
+
},
|
|
1855
|
+
"content_ref": {
|
|
1856
|
+
"$ref": "#/$defs/Workflow.WorkflowContentRef",
|
|
1857
|
+
"description": "Optional captured payload to retrieve lazily for the selected run."
|
|
1858
|
+
}
|
|
1859
|
+
},
|
|
1860
|
+
"unevaluatedProperties": {
|
|
1861
|
+
"not": {}
|
|
1862
|
+
},
|
|
1863
|
+
"description": "Input for the app-only fetch_workflow_graph_updates tool."
|
|
1864
|
+
},
|
|
1865
|
+
"Mcp.Tools.FetchWorkflowGraphUpdatesOutput": {
|
|
1866
|
+
"type": "object",
|
|
1867
|
+
"required": [
|
|
1868
|
+
"page",
|
|
1869
|
+
"mode"
|
|
1870
|
+
],
|
|
1871
|
+
"properties": {
|
|
1872
|
+
"page": {
|
|
1873
|
+
"$ref": "#/$defs/Workflow.WorkflowEventPage"
|
|
1874
|
+
},
|
|
1875
|
+
"graph": {
|
|
1876
|
+
"$ref": "#/$defs/Workflow.WorkflowGraphSnapshot"
|
|
1877
|
+
},
|
|
1878
|
+
"content": {
|
|
1879
|
+
"$ref": "#/$defs/Workflow.WorkflowContent"
|
|
1880
|
+
},
|
|
1881
|
+
"mode": {
|
|
1882
|
+
"$ref": "#/$defs/Mcp.Tools.McpDataMode"
|
|
1883
|
+
}
|
|
1884
|
+
},
|
|
1885
|
+
"unevaluatedProperties": {
|
|
1886
|
+
"not": {}
|
|
1887
|
+
},
|
|
1888
|
+
"description": "Structured output for the app-only fetch_workflow_graph_updates tool."
|
|
1889
|
+
},
|
|
1559
1890
|
"Mcp.Tools.GetTraceInput": {
|
|
1560
1891
|
"type": "object",
|
|
1561
1892
|
"required": [
|
|
@@ -1590,33 +1921,87 @@
|
|
|
1590
1921
|
},
|
|
1591
1922
|
"description": "Structured output for get_trace."
|
|
1592
1923
|
},
|
|
1593
|
-
"Mcp.Tools.
|
|
1924
|
+
"Mcp.Tools.GetWorkflowGraphInput": {
|
|
1594
1925
|
"type": "object",
|
|
1926
|
+
"required": [
|
|
1927
|
+
"run_id"
|
|
1928
|
+
],
|
|
1595
1929
|
"properties": {
|
|
1596
|
-
"
|
|
1930
|
+
"run_id": {
|
|
1931
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
1932
|
+
},
|
|
1933
|
+
"node_cursor": {
|
|
1934
|
+
"type": "string"
|
|
1935
|
+
},
|
|
1936
|
+
"node_limit": {
|
|
1597
1937
|
"type": "integer",
|
|
1598
1938
|
"format": "int32",
|
|
1599
1939
|
"minimum": 1,
|
|
1600
|
-
"maximum":
|
|
1601
|
-
"default":
|
|
1940
|
+
"maximum": 1000,
|
|
1941
|
+
"default": 250
|
|
1602
1942
|
},
|
|
1603
|
-
"
|
|
1604
|
-
"type": "
|
|
1943
|
+
"edge_cursor": {
|
|
1944
|
+
"type": "string"
|
|
1945
|
+
},
|
|
1946
|
+
"edge_limit": {
|
|
1947
|
+
"type": "integer",
|
|
1948
|
+
"format": "int32",
|
|
1949
|
+
"minimum": 1,
|
|
1950
|
+
"maximum": 2000,
|
|
1951
|
+
"default": 500
|
|
1605
1952
|
}
|
|
1606
1953
|
},
|
|
1607
1954
|
"unevaluatedProperties": {
|
|
1608
1955
|
"not": {}
|
|
1609
1956
|
},
|
|
1610
|
-
"description": "Input for
|
|
1957
|
+
"description": "Input for get_workflow_graph."
|
|
1611
1958
|
},
|
|
1612
|
-
"Mcp.Tools.
|
|
1959
|
+
"Mcp.Tools.GetWorkflowGraphOutput": {
|
|
1613
1960
|
"type": "object",
|
|
1614
1961
|
"required": [
|
|
1615
|
-
"
|
|
1962
|
+
"graph",
|
|
1616
1963
|
"mode"
|
|
1617
1964
|
],
|
|
1618
1965
|
"properties": {
|
|
1619
|
-
"
|
|
1966
|
+
"graph": {
|
|
1967
|
+
"$ref": "#/$defs/Workflow.WorkflowGraphSnapshot"
|
|
1968
|
+
},
|
|
1969
|
+
"mode": {
|
|
1970
|
+
"$ref": "#/$defs/Mcp.Tools.McpDataMode"
|
|
1971
|
+
}
|
|
1972
|
+
},
|
|
1973
|
+
"unevaluatedProperties": {
|
|
1974
|
+
"not": {}
|
|
1975
|
+
},
|
|
1976
|
+
"description": "Structured output for get_workflow_graph."
|
|
1977
|
+
},
|
|
1978
|
+
"Mcp.Tools.ListSessionsInput": {
|
|
1979
|
+
"type": "object",
|
|
1980
|
+
"properties": {
|
|
1981
|
+
"limit": {
|
|
1982
|
+
"type": "integer",
|
|
1983
|
+
"format": "int32",
|
|
1984
|
+
"minimum": 1,
|
|
1985
|
+
"maximum": 100,
|
|
1986
|
+
"default": 20
|
|
1987
|
+
},
|
|
1988
|
+
"active_only": {
|
|
1989
|
+
"type": "boolean"
|
|
1990
|
+
}
|
|
1991
|
+
},
|
|
1992
|
+
"unevaluatedProperties": {
|
|
1993
|
+
"not": {}
|
|
1994
|
+
},
|
|
1995
|
+
"description": "Input for list_sessions."
|
|
1996
|
+
},
|
|
1997
|
+
"Mcp.Tools.ListSessionsOutput": {
|
|
1998
|
+
"type": "object",
|
|
1999
|
+
"required": [
|
|
2000
|
+
"sessions",
|
|
2001
|
+
"mode"
|
|
2002
|
+
],
|
|
2003
|
+
"properties": {
|
|
2004
|
+
"sessions": {
|
|
1620
2005
|
"type": "array",
|
|
1621
2006
|
"items": {
|
|
1622
2007
|
"$ref": "#/$defs/Domains.Observe.Session.SessionEntity"
|
|
@@ -1669,6 +2054,57 @@
|
|
|
1669
2054
|
},
|
|
1670
2055
|
"description": "Structured output for list_traces."
|
|
1671
2056
|
},
|
|
2057
|
+
"Mcp.Tools.ListWorkflowRunsInput": {
|
|
2058
|
+
"type": "object",
|
|
2059
|
+
"properties": {
|
|
2060
|
+
"status": {
|
|
2061
|
+
"$ref": "#/$defs/Workflow.WorkflowRunStatus"
|
|
2062
|
+
},
|
|
2063
|
+
"cursor": {
|
|
2064
|
+
"type": "string"
|
|
2065
|
+
},
|
|
2066
|
+
"limit": {
|
|
2067
|
+
"type": "integer",
|
|
2068
|
+
"format": "int32",
|
|
2069
|
+
"minimum": 1,
|
|
2070
|
+
"maximum": 100,
|
|
2071
|
+
"default": 20
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
"unevaluatedProperties": {
|
|
2075
|
+
"not": {}
|
|
2076
|
+
},
|
|
2077
|
+
"description": "Input for list_workflow_runs."
|
|
2078
|
+
},
|
|
2079
|
+
"Mcp.Tools.ListWorkflowRunsOutput": {
|
|
2080
|
+
"type": "object",
|
|
2081
|
+
"required": [
|
|
2082
|
+
"runs",
|
|
2083
|
+
"has_more",
|
|
2084
|
+
"mode"
|
|
2085
|
+
],
|
|
2086
|
+
"properties": {
|
|
2087
|
+
"runs": {
|
|
2088
|
+
"type": "array",
|
|
2089
|
+
"items": {
|
|
2090
|
+
"$ref": "#/$defs/Workflow.WorkflowRun"
|
|
2091
|
+
}
|
|
2092
|
+
},
|
|
2093
|
+
"next_cursor": {
|
|
2094
|
+
"type": "string"
|
|
2095
|
+
},
|
|
2096
|
+
"has_more": {
|
|
2097
|
+
"type": "boolean"
|
|
2098
|
+
},
|
|
2099
|
+
"mode": {
|
|
2100
|
+
"$ref": "#/$defs/Mcp.Tools.McpDataMode"
|
|
2101
|
+
}
|
|
2102
|
+
},
|
|
2103
|
+
"unevaluatedProperties": {
|
|
2104
|
+
"not": {}
|
|
2105
|
+
},
|
|
2106
|
+
"description": "Structured output for list_workflow_runs."
|
|
2107
|
+
},
|
|
1672
2108
|
"Mcp.Tools.McpDashboardBucket": {
|
|
1673
2109
|
"type": "object",
|
|
1674
2110
|
"required": [
|
|
@@ -5703,192 +6139,1180 @@
|
|
|
5703
6139
|
},
|
|
5704
6140
|
"description": "Request to update mutable MCP workbench workspace metadata."
|
|
5705
6141
|
},
|
|
5706
|
-
"
|
|
6142
|
+
"Workflow.DerivedWorkflowEdgeProvenance": {
|
|
5707
6143
|
"type": "object",
|
|
5708
6144
|
"required": [
|
|
5709
|
-
"
|
|
5710
|
-
"
|
|
6145
|
+
"type",
|
|
6146
|
+
"event_ids",
|
|
6147
|
+
"evidence",
|
|
6148
|
+
"confidence"
|
|
5711
6149
|
],
|
|
5712
6150
|
"properties": {
|
|
5713
|
-
"
|
|
6151
|
+
"type": {
|
|
6152
|
+
"type": "string",
|
|
6153
|
+
"enum": [
|
|
6154
|
+
"derived"
|
|
6155
|
+
]
|
|
6156
|
+
},
|
|
6157
|
+
"event_ids": {
|
|
5714
6158
|
"type": "array",
|
|
5715
6159
|
"items": {
|
|
5716
|
-
"$ref": "#/$defs/
|
|
6160
|
+
"$ref": "#/$defs/Workflow.WorkflowEventId"
|
|
5717
6161
|
},
|
|
5718
|
-
"
|
|
5719
|
-
},
|
|
5720
|
-
"next_cursor": {
|
|
5721
|
-
"type": "string",
|
|
5722
|
-
"description": "Cursor for the next page (null if no more pages)"
|
|
6162
|
+
"minItems": 1
|
|
5723
6163
|
},
|
|
5724
|
-
"
|
|
5725
|
-
"type": "string"
|
|
5726
|
-
"description": "Cursor for the previous page (null if first page)"
|
|
6164
|
+
"evidence": {
|
|
6165
|
+
"type": "string"
|
|
5727
6166
|
},
|
|
5728
|
-
"
|
|
5729
|
-
"
|
|
5730
|
-
"description": "Whether there are more items available"
|
|
6167
|
+
"confidence": {
|
|
6168
|
+
"$ref": "#/$defs/Common.Ratio"
|
|
5731
6169
|
}
|
|
5732
6170
|
},
|
|
5733
6171
|
"unevaluatedProperties": {
|
|
5734
6172
|
"not": {}
|
|
5735
6173
|
},
|
|
5736
|
-
"description": "
|
|
5737
|
-
},
|
|
5738
|
-
"Operations.LogsApi_list.Response.400": {
|
|
5739
|
-
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
5740
|
-
},
|
|
5741
|
-
"Operations.LogsApi_list.Response.401": {
|
|
5742
|
-
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
5743
|
-
},
|
|
5744
|
-
"Operations.LogsApi_list.Response.500": {
|
|
5745
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
5746
|
-
},
|
|
5747
|
-
"Operations.RunnerResourcesApi_logs.Response.200": {
|
|
5748
|
-
"type": "array",
|
|
5749
|
-
"items": {
|
|
5750
|
-
"$ref": "#/$defs/Runner.RunnerLogLine"
|
|
5751
|
-
}
|
|
5752
|
-
},
|
|
5753
|
-
"Operations.RunnerResourcesApi_logs.Response.403": {
|
|
5754
|
-
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
5755
|
-
},
|
|
5756
|
-
"Operations.RunnerResourcesApi_logs.Response.404": {
|
|
5757
|
-
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
5758
|
-
},
|
|
5759
|
-
"Operations.RunnerResourcesApi_logs.Response.500": {
|
|
5760
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
5761
|
-
},
|
|
5762
|
-
"Operations.RunnerResourcesApi_logs.Response.503": {
|
|
5763
|
-
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
5764
|
-
},
|
|
5765
|
-
"Operations.RunnerResourcesApi_restart.Response.403": {
|
|
5766
|
-
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
5767
|
-
},
|
|
5768
|
-
"Operations.RunnerResourcesApi_restart.Response.404": {
|
|
5769
|
-
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
5770
|
-
},
|
|
5771
|
-
"Operations.RunnerResourcesApi_restart.Response.409": {
|
|
5772
|
-
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
5773
|
-
},
|
|
5774
|
-
"Operations.RunnerResourcesApi_restart.Response.500": {
|
|
5775
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
5776
|
-
},
|
|
5777
|
-
"Operations.RunnerResourcesApi_restart.Response.503": {
|
|
5778
|
-
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
5779
|
-
},
|
|
5780
|
-
"Operations.RunnerResourcesApi_snapshot.Response.200": {
|
|
5781
|
-
"type": "array",
|
|
5782
|
-
"items": {
|
|
5783
|
-
"$ref": "#/$defs/Runner.RunnerResourceState"
|
|
5784
|
-
}
|
|
5785
|
-
},
|
|
5786
|
-
"Operations.RunnerResourcesApi_snapshot.Response.403": {
|
|
5787
|
-
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
5788
|
-
},
|
|
5789
|
-
"Operations.RunnerResourcesApi_snapshot.Response.500": {
|
|
5790
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
5791
|
-
},
|
|
5792
|
-
"Operations.RunnerResourcesApi_snapshot.Response.503": {
|
|
5793
|
-
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
5794
|
-
},
|
|
5795
|
-
"Operations.RunnerResourcesApi_stop.Response.403": {
|
|
5796
|
-
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
5797
|
-
},
|
|
5798
|
-
"Operations.RunnerResourcesApi_stop.Response.404": {
|
|
5799
|
-
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
5800
|
-
},
|
|
5801
|
-
"Operations.RunnerResourcesApi_stop.Response.409": {
|
|
5802
|
-
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
5803
|
-
},
|
|
5804
|
-
"Operations.RunnerResourcesApi_stop.Response.500": {
|
|
5805
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
5806
|
-
},
|
|
5807
|
-
"Operations.RunnerResourcesApi_stop.Response.503": {
|
|
5808
|
-
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
5809
|
-
},
|
|
5810
|
-
"Operations.RunnerResourcesApi_stream.Response.403": {
|
|
5811
|
-
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
5812
|
-
},
|
|
5813
|
-
"Operations.RunnerResourcesApi_stream.Response.500": {
|
|
5814
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
5815
|
-
},
|
|
5816
|
-
"Operations.RunnerResourcesApi_stream.Response.503": {
|
|
5817
|
-
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
5818
|
-
},
|
|
5819
|
-
"Operations.RunnerResourcesApi_streamLogs.Response.403": {
|
|
5820
|
-
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
5821
|
-
},
|
|
5822
|
-
"Operations.RunnerResourcesApi_streamLogs.Response.404": {
|
|
5823
|
-
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
6174
|
+
"description": "Derived edge provenance with explicit evidence and confidence."
|
|
5824
6175
|
},
|
|
5825
|
-
"
|
|
5826
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
5827
|
-
},
|
|
5828
|
-
"Operations.RunnerResourcesApi_streamLogs.Response.503": {
|
|
5829
|
-
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
5830
|
-
},
|
|
5831
|
-
"Operations.SessionsApi_get.Response.200": {
|
|
5832
|
-
"$ref": "#/$defs/Domains.Observe.Session.SessionEntity"
|
|
5833
|
-
},
|
|
5834
|
-
"Operations.SessionsApi_get.Response.401": {
|
|
5835
|
-
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
5836
|
-
},
|
|
5837
|
-
"Operations.SessionsApi_get.Response.404": {
|
|
5838
|
-
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
5839
|
-
},
|
|
5840
|
-
"Operations.SessionsApi_get.Response.500": {
|
|
5841
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
5842
|
-
},
|
|
5843
|
-
"Operations.SessionsApi_getStats.Response.200": {
|
|
5844
|
-
"$ref": "#/$defs/Domains.Observe.Session.SessionStats"
|
|
5845
|
-
},
|
|
5846
|
-
"Operations.SessionsApi_getStats.Response.400": {
|
|
5847
|
-
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
5848
|
-
},
|
|
5849
|
-
"Operations.SessionsApi_getStats.Response.401": {
|
|
5850
|
-
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
5851
|
-
},
|
|
5852
|
-
"Operations.SessionsApi_getStats.Response.500": {
|
|
5853
|
-
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
5854
|
-
},
|
|
5855
|
-
"Operations.SessionsApi_getTraces.Response.200": {
|
|
6176
|
+
"Workflow.RecordedWorkflowEdgeProvenance": {
|
|
5856
6177
|
"type": "object",
|
|
5857
6178
|
"required": [
|
|
5858
|
-
"
|
|
5859
|
-
"
|
|
6179
|
+
"type",
|
|
6180
|
+
"event_ids"
|
|
5860
6181
|
],
|
|
5861
6182
|
"properties": {
|
|
5862
|
-
"
|
|
6183
|
+
"type": {
|
|
6184
|
+
"type": "string",
|
|
6185
|
+
"enum": [
|
|
6186
|
+
"recorded"
|
|
6187
|
+
]
|
|
6188
|
+
},
|
|
6189
|
+
"event_ids": {
|
|
5863
6190
|
"type": "array",
|
|
5864
6191
|
"items": {
|
|
5865
|
-
"$ref": "#/$defs/
|
|
6192
|
+
"$ref": "#/$defs/Workflow.WorkflowEventId"
|
|
5866
6193
|
},
|
|
5867
|
-
"
|
|
5868
|
-
},
|
|
5869
|
-
"next_cursor": {
|
|
5870
|
-
"type": "string",
|
|
5871
|
-
"description": "Cursor for the next page (null if no more pages)"
|
|
5872
|
-
},
|
|
5873
|
-
"prev_cursor": {
|
|
5874
|
-
"type": "string",
|
|
5875
|
-
"description": "Cursor for the previous page (null if first page)"
|
|
5876
|
-
},
|
|
5877
|
-
"has_more": {
|
|
5878
|
-
"type": "boolean",
|
|
5879
|
-
"description": "Whether there are more items available"
|
|
6194
|
+
"minItems": 1
|
|
5880
6195
|
}
|
|
5881
6196
|
},
|
|
5882
6197
|
"unevaluatedProperties": {
|
|
5883
6198
|
"not": {}
|
|
5884
6199
|
},
|
|
5885
|
-
"description": "
|
|
6200
|
+
"description": "Recorded edge provenance directly observed from Codex."
|
|
5886
6201
|
},
|
|
5887
|
-
"
|
|
5888
|
-
"
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
"
|
|
6202
|
+
"Workflow.WorkflowAgentId": {
|
|
6203
|
+
"type": "string",
|
|
6204
|
+
"minLength": 1,
|
|
6205
|
+
"maxLength": 128,
|
|
6206
|
+
"description": "Stable identifier of one agent within a workflow run."
|
|
6207
|
+
},
|
|
6208
|
+
"Workflow.WorkflowAgentStatus": {
|
|
6209
|
+
"type": "string",
|
|
6210
|
+
"enum": [
|
|
6211
|
+
"pending",
|
|
6212
|
+
"running",
|
|
6213
|
+
"waiting",
|
|
6214
|
+
"succeeded",
|
|
6215
|
+
"failed",
|
|
6216
|
+
"interrupted"
|
|
6217
|
+
],
|
|
6218
|
+
"description": "Current lifecycle of an observed workflow agent."
|
|
6219
|
+
},
|
|
6220
|
+
"Workflow.WorkflowAttemptId": {
|
|
6221
|
+
"type": "string",
|
|
6222
|
+
"minLength": 1,
|
|
6223
|
+
"maxLength": 128,
|
|
6224
|
+
"description": "Stable identifier of one workflow attempt."
|
|
6225
|
+
},
|
|
6226
|
+
"Workflow.WorkflowAttemptStatus": {
|
|
6227
|
+
"type": "string",
|
|
6228
|
+
"enum": [
|
|
6229
|
+
"pending",
|
|
6230
|
+
"running",
|
|
6231
|
+
"succeeded",
|
|
6232
|
+
"failed",
|
|
6233
|
+
"interrupted"
|
|
6234
|
+
],
|
|
6235
|
+
"description": "Current lifecycle of one workflow attempt."
|
|
6236
|
+
},
|
|
6237
|
+
"Workflow.WorkflowCommandId": {
|
|
6238
|
+
"type": "string",
|
|
6239
|
+
"minLength": 1,
|
|
6240
|
+
"maxLength": 128,
|
|
6241
|
+
"description": "Stable identifier of one run-level control command."
|
|
6242
|
+
},
|
|
6243
|
+
"Workflow.WorkflowContent": {
|
|
6244
|
+
"type": "object",
|
|
6245
|
+
"required": [
|
|
6246
|
+
"content_ref",
|
|
6247
|
+
"content_type",
|
|
6248
|
+
"encoding",
|
|
6249
|
+
"content",
|
|
6250
|
+
"size_bytes"
|
|
6251
|
+
],
|
|
6252
|
+
"properties": {
|
|
6253
|
+
"content_ref": {
|
|
6254
|
+
"$ref": "#/$defs/Workflow.WorkflowContentRef"
|
|
6255
|
+
},
|
|
6256
|
+
"content_type": {
|
|
6257
|
+
"$ref": "#/$defs/Common.ContentType"
|
|
6258
|
+
},
|
|
6259
|
+
"encoding": {
|
|
6260
|
+
"$ref": "#/$defs/Workflow.WorkflowContentEncoding"
|
|
6261
|
+
},
|
|
6262
|
+
"content": {
|
|
6263
|
+
"type": "string"
|
|
6264
|
+
},
|
|
6265
|
+
"size_bytes": {
|
|
6266
|
+
"$ref": "#/$defs/Common.ByteSize"
|
|
6267
|
+
}
|
|
6268
|
+
},
|
|
6269
|
+
"unevaluatedProperties": {
|
|
6270
|
+
"not": {}
|
|
6271
|
+
},
|
|
6272
|
+
"description": "Lazily retrieved captured workflow content."
|
|
6273
|
+
},
|
|
6274
|
+
"Workflow.WorkflowContentChunk": {
|
|
6275
|
+
"type": "object",
|
|
6276
|
+
"required": [
|
|
6277
|
+
"content_ref",
|
|
6278
|
+
"content_type",
|
|
6279
|
+
"encoding",
|
|
6280
|
+
"content"
|
|
6281
|
+
],
|
|
6282
|
+
"properties": {
|
|
6283
|
+
"content_ref": {
|
|
6284
|
+
"$ref": "#/$defs/Workflow.WorkflowContentRef"
|
|
6285
|
+
},
|
|
6286
|
+
"content_type": {
|
|
6287
|
+
"$ref": "#/$defs/Common.ContentType"
|
|
6288
|
+
},
|
|
6289
|
+
"encoding": {
|
|
6290
|
+
"$ref": "#/$defs/Workflow.WorkflowContentEncoding"
|
|
6291
|
+
},
|
|
6292
|
+
"content": {
|
|
6293
|
+
"type": "string",
|
|
6294
|
+
"maxLength": 1398104,
|
|
6295
|
+
"description": "UTF-8 text or base64 bytes, according to encoding."
|
|
6296
|
+
}
|
|
6297
|
+
},
|
|
6298
|
+
"unevaluatedProperties": {
|
|
6299
|
+
"not": {}
|
|
6300
|
+
},
|
|
6301
|
+
"description": "One captured payload supplied with an append batch."
|
|
6302
|
+
},
|
|
6303
|
+
"Workflow.WorkflowContentEncoding": {
|
|
6304
|
+
"type": "string",
|
|
6305
|
+
"enum": [
|
|
6306
|
+
"utf8",
|
|
6307
|
+
"base64"
|
|
6308
|
+
],
|
|
6309
|
+
"description": "Encoding used when lazily returning captured workflow content."
|
|
6310
|
+
},
|
|
6311
|
+
"Workflow.WorkflowContentRef": {
|
|
6312
|
+
"type": "string",
|
|
6313
|
+
"minLength": 71,
|
|
6314
|
+
"maxLength": 71,
|
|
6315
|
+
"pattern": "^sha256:[a-f0-9]{64}$",
|
|
6316
|
+
"description": "Content-addressed reference to a captured workflow payload."
|
|
6317
|
+
},
|
|
6318
|
+
"Workflow.WorkflowControlAction": {
|
|
6319
|
+
"type": "string",
|
|
6320
|
+
"enum": [
|
|
6321
|
+
"steer",
|
|
6322
|
+
"interrupt",
|
|
6323
|
+
"resume"
|
|
6324
|
+
],
|
|
6325
|
+
"description": "Control operation supported by the Codex app-server boundary."
|
|
6326
|
+
},
|
|
6327
|
+
"Workflow.WorkflowControlCommand": {
|
|
6328
|
+
"type": "object",
|
|
6329
|
+
"required": [
|
|
6330
|
+
"command_id",
|
|
6331
|
+
"run_id",
|
|
6332
|
+
"action",
|
|
6333
|
+
"status",
|
|
6334
|
+
"idempotency_key",
|
|
6335
|
+
"requested_at",
|
|
6336
|
+
"updated_at",
|
|
6337
|
+
"command_sequence"
|
|
6338
|
+
],
|
|
6339
|
+
"properties": {
|
|
6340
|
+
"command_id": {
|
|
6341
|
+
"$ref": "#/$defs/Workflow.WorkflowCommandId"
|
|
6342
|
+
},
|
|
6343
|
+
"run_id": {
|
|
6344
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
6345
|
+
},
|
|
6346
|
+
"action": {
|
|
6347
|
+
"$ref": "#/$defs/Workflow.WorkflowControlAction"
|
|
6348
|
+
},
|
|
6349
|
+
"status": {
|
|
6350
|
+
"$ref": "#/$defs/Workflow.WorkflowControlStatus"
|
|
6351
|
+
},
|
|
6352
|
+
"idempotency_key": {
|
|
6353
|
+
"type": "string"
|
|
6354
|
+
},
|
|
6355
|
+
"input": {
|
|
6356
|
+
"type": "string"
|
|
6357
|
+
},
|
|
6358
|
+
"requested_at": {
|
|
6359
|
+
"type": "string",
|
|
6360
|
+
"format": "date-time"
|
|
6361
|
+
},
|
|
6362
|
+
"updated_at": {
|
|
6363
|
+
"type": "string",
|
|
6364
|
+
"format": "date-time"
|
|
6365
|
+
},
|
|
6366
|
+
"command_sequence": {
|
|
6367
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6368
|
+
},
|
|
6369
|
+
"error": {
|
|
6370
|
+
"type": "string"
|
|
6371
|
+
}
|
|
6372
|
+
},
|
|
6373
|
+
"unevaluatedProperties": {
|
|
6374
|
+
"not": {}
|
|
6375
|
+
},
|
|
6376
|
+
"description": "Durable run-level control command."
|
|
6377
|
+
},
|
|
6378
|
+
"Workflow.WorkflowControlCommandPage": {
|
|
6379
|
+
"type": "object",
|
|
6380
|
+
"required": [
|
|
6381
|
+
"commands",
|
|
6382
|
+
"next_sequence"
|
|
6383
|
+
],
|
|
6384
|
+
"properties": {
|
|
6385
|
+
"commands": {
|
|
6386
|
+
"type": "array",
|
|
6387
|
+
"items": {
|
|
6388
|
+
"$ref": "#/$defs/Workflow.WorkflowControlCommand"
|
|
6389
|
+
}
|
|
6390
|
+
},
|
|
6391
|
+
"next_sequence": {
|
|
6392
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6393
|
+
}
|
|
6394
|
+
},
|
|
6395
|
+
"unevaluatedProperties": {
|
|
6396
|
+
"not": {}
|
|
6397
|
+
},
|
|
6398
|
+
"description": "Page of control commands polled by the launcher-owned outbound adapter."
|
|
6399
|
+
},
|
|
6400
|
+
"Workflow.WorkflowControlRequest": {
|
|
6401
|
+
"type": "object",
|
|
6402
|
+
"required": [
|
|
6403
|
+
"action",
|
|
6404
|
+
"idempotency_key"
|
|
6405
|
+
],
|
|
6406
|
+
"properties": {
|
|
6407
|
+
"action": {
|
|
6408
|
+
"$ref": "#/$defs/Workflow.WorkflowControlAction"
|
|
6409
|
+
},
|
|
6410
|
+
"idempotency_key": {
|
|
6411
|
+
"type": "string",
|
|
6412
|
+
"minLength": 1,
|
|
6413
|
+
"maxLength": 160
|
|
6414
|
+
},
|
|
6415
|
+
"input": {
|
|
6416
|
+
"type": "string",
|
|
6417
|
+
"maxLength": 32768,
|
|
6418
|
+
"description": "Text appended by steer or resume. Omit for interrupt."
|
|
6419
|
+
}
|
|
6420
|
+
},
|
|
6421
|
+
"unevaluatedProperties": {
|
|
6422
|
+
"not": {}
|
|
6423
|
+
},
|
|
6424
|
+
"description": "Request to enqueue one idempotent run-level control command."
|
|
6425
|
+
},
|
|
6426
|
+
"Workflow.WorkflowControlStatus": {
|
|
6427
|
+
"type": "string",
|
|
6428
|
+
"enum": [
|
|
6429
|
+
"requested",
|
|
6430
|
+
"accepted",
|
|
6431
|
+
"applied",
|
|
6432
|
+
"rejected",
|
|
6433
|
+
"failed"
|
|
6434
|
+
],
|
|
6435
|
+
"description": "Durable lifecycle of a workflow control command."
|
|
6436
|
+
},
|
|
6437
|
+
"Workflow.WorkflowControlStatusUpdateRequest": {
|
|
6438
|
+
"type": "object",
|
|
6439
|
+
"required": [
|
|
6440
|
+
"status"
|
|
6441
|
+
],
|
|
6442
|
+
"properties": {
|
|
6443
|
+
"status": {
|
|
6444
|
+
"$ref": "#/$defs/Workflow.WorkflowControlStatus"
|
|
6445
|
+
},
|
|
6446
|
+
"error": {
|
|
6447
|
+
"type": "string"
|
|
6448
|
+
}
|
|
6449
|
+
},
|
|
6450
|
+
"unevaluatedProperties": {
|
|
6451
|
+
"not": {}
|
|
6452
|
+
},
|
|
6453
|
+
"description": "Adapter acknowledgement or terminal result for one control command."
|
|
6454
|
+
},
|
|
6455
|
+
"Workflow.WorkflowCursorGapEvent": {
|
|
6456
|
+
"type": "object",
|
|
6457
|
+
"required": [
|
|
6458
|
+
"type",
|
|
6459
|
+
"oldest_available_sequence",
|
|
6460
|
+
"high_water_mark",
|
|
6461
|
+
"timestamp"
|
|
6462
|
+
],
|
|
6463
|
+
"properties": {
|
|
6464
|
+
"type": {
|
|
6465
|
+
"type": "string",
|
|
6466
|
+
"enum": [
|
|
6467
|
+
"cursor_gap"
|
|
6468
|
+
]
|
|
6469
|
+
},
|
|
6470
|
+
"oldest_available_sequence": {
|
|
6471
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6472
|
+
},
|
|
6473
|
+
"high_water_mark": {
|
|
6474
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6475
|
+
},
|
|
6476
|
+
"timestamp": {
|
|
6477
|
+
"type": "string",
|
|
6478
|
+
"format": "date-time"
|
|
6479
|
+
}
|
|
6480
|
+
},
|
|
6481
|
+
"unevaluatedProperties": {
|
|
6482
|
+
"not": {}
|
|
6483
|
+
},
|
|
6484
|
+
"description": "Signals that the requested cursor predates retained workflow history."
|
|
6485
|
+
},
|
|
6486
|
+
"Workflow.WorkflowEdgeKind": {
|
|
6487
|
+
"type": "string",
|
|
6488
|
+
"enum": [
|
|
6489
|
+
"data",
|
|
6490
|
+
"control",
|
|
6491
|
+
"conflict",
|
|
6492
|
+
"resource",
|
|
6493
|
+
"gate",
|
|
6494
|
+
"temporal"
|
|
6495
|
+
],
|
|
6496
|
+
"description": "Semantic relationship represented by a workflow graph edge."
|
|
6497
|
+
},
|
|
6498
|
+
"Workflow.WorkflowEdgeProvenance": {
|
|
6499
|
+
"anyOf": [
|
|
6500
|
+
{
|
|
6501
|
+
"$ref": "#/$defs/Workflow.RecordedWorkflowEdgeProvenance"
|
|
6502
|
+
},
|
|
6503
|
+
{
|
|
6504
|
+
"$ref": "#/$defs/Workflow.DerivedWorkflowEdgeProvenance"
|
|
6505
|
+
}
|
|
6506
|
+
],
|
|
6507
|
+
"description": "Provenance for one workflow graph edge."
|
|
6508
|
+
},
|
|
6509
|
+
"Workflow.WorkflowEventAppend": {
|
|
6510
|
+
"type": "object",
|
|
6511
|
+
"required": [
|
|
6512
|
+
"event_id",
|
|
6513
|
+
"source_sequence",
|
|
6514
|
+
"timestamp",
|
|
6515
|
+
"kind"
|
|
6516
|
+
],
|
|
6517
|
+
"properties": {
|
|
6518
|
+
"event_id": {
|
|
6519
|
+
"$ref": "#/$defs/Workflow.WorkflowEventId"
|
|
6520
|
+
},
|
|
6521
|
+
"source_sequence": {
|
|
6522
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6523
|
+
},
|
|
6524
|
+
"timestamp": {
|
|
6525
|
+
"type": "string",
|
|
6526
|
+
"format": "date-time"
|
|
6527
|
+
},
|
|
6528
|
+
"kind": {
|
|
6529
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalEventKind"
|
|
6530
|
+
},
|
|
6531
|
+
"thread_id": {
|
|
6532
|
+
"type": "string"
|
|
6533
|
+
},
|
|
6534
|
+
"turn_id": {
|
|
6535
|
+
"type": "string"
|
|
6536
|
+
},
|
|
6537
|
+
"attempt_id": {
|
|
6538
|
+
"$ref": "#/$defs/Workflow.WorkflowAttemptId"
|
|
6539
|
+
},
|
|
6540
|
+
"agent_id": {
|
|
6541
|
+
"$ref": "#/$defs/Workflow.WorkflowAgentId"
|
|
6542
|
+
},
|
|
6543
|
+
"parent_agent_id": {
|
|
6544
|
+
"$ref": "#/$defs/Workflow.WorkflowAgentId"
|
|
6545
|
+
},
|
|
6546
|
+
"receiver_agent_id": {
|
|
6547
|
+
"$ref": "#/$defs/Workflow.WorkflowAgentId"
|
|
6548
|
+
},
|
|
6549
|
+
"tool_call_id": {
|
|
6550
|
+
"$ref": "#/$defs/Workflow.WorkflowToolCallId"
|
|
6551
|
+
},
|
|
6552
|
+
"content_refs": {
|
|
6553
|
+
"type": "array",
|
|
6554
|
+
"items": {
|
|
6555
|
+
"$ref": "#/$defs/Workflow.WorkflowContentRef"
|
|
6556
|
+
},
|
|
6557
|
+
"maxItems": 64
|
|
6558
|
+
},
|
|
6559
|
+
"data": {
|
|
6560
|
+
"type": "object",
|
|
6561
|
+
"unevaluatedProperties": {}
|
|
6562
|
+
}
|
|
6563
|
+
},
|
|
6564
|
+
"description": "One source-ordered immutable journal event awaiting collector sequence assignment."
|
|
6565
|
+
},
|
|
6566
|
+
"Workflow.WorkflowEventBatchAppendRequest": {
|
|
6567
|
+
"type": "object",
|
|
6568
|
+
"required": [
|
|
6569
|
+
"client_id",
|
|
6570
|
+
"events"
|
|
6571
|
+
],
|
|
6572
|
+
"properties": {
|
|
6573
|
+
"client_id": {
|
|
6574
|
+
"type": "string",
|
|
6575
|
+
"minLength": 1,
|
|
6576
|
+
"maxLength": 128
|
|
6577
|
+
},
|
|
6578
|
+
"events": {
|
|
6579
|
+
"type": "array",
|
|
6580
|
+
"items": {
|
|
6581
|
+
"$ref": "#/$defs/Workflow.WorkflowEventAppend"
|
|
6582
|
+
},
|
|
6583
|
+
"minItems": 1,
|
|
6584
|
+
"maxItems": 500
|
|
6585
|
+
},
|
|
6586
|
+
"content": {
|
|
6587
|
+
"type": "array",
|
|
6588
|
+
"items": {
|
|
6589
|
+
"$ref": "#/$defs/Workflow.WorkflowContentChunk"
|
|
6590
|
+
},
|
|
6591
|
+
"maxItems": 500
|
|
6592
|
+
}
|
|
6593
|
+
},
|
|
6594
|
+
"unevaluatedProperties": {
|
|
6595
|
+
"not": {}
|
|
6596
|
+
},
|
|
6597
|
+
"description": "Idempotent append batch from one observer client."
|
|
6598
|
+
},
|
|
6599
|
+
"Workflow.WorkflowEventBatchAppendResponse": {
|
|
6600
|
+
"type": "object",
|
|
6601
|
+
"required": [
|
|
6602
|
+
"accepted_count",
|
|
6603
|
+
"duplicate_count",
|
|
6604
|
+
"acknowledged_source_sequence"
|
|
6605
|
+
],
|
|
6606
|
+
"properties": {
|
|
6607
|
+
"accepted_count": {
|
|
6608
|
+
"type": "integer",
|
|
6609
|
+
"format": "int32",
|
|
6610
|
+
"minimum": 0
|
|
6611
|
+
},
|
|
6612
|
+
"duplicate_count": {
|
|
6613
|
+
"type": "integer",
|
|
6614
|
+
"format": "int32",
|
|
6615
|
+
"minimum": 0
|
|
6616
|
+
},
|
|
6617
|
+
"acknowledged_source_sequence": {
|
|
6618
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6619
|
+
},
|
|
6620
|
+
"first_journal_sequence": {
|
|
6621
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6622
|
+
},
|
|
6623
|
+
"last_journal_sequence": {
|
|
6624
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6625
|
+
}
|
|
6626
|
+
},
|
|
6627
|
+
"unevaluatedProperties": {
|
|
6628
|
+
"not": {}
|
|
6629
|
+
},
|
|
6630
|
+
"description": "Collector acknowledgement for an idempotent workflow-event append."
|
|
6631
|
+
},
|
|
6632
|
+
"Workflow.WorkflowEventId": {
|
|
6633
|
+
"type": "string",
|
|
6634
|
+
"minLength": 1,
|
|
6635
|
+
"maxLength": 160,
|
|
6636
|
+
"description": "Stable identifier of one immutable journal event."
|
|
6637
|
+
},
|
|
6638
|
+
"Workflow.WorkflowEventPage": {
|
|
6639
|
+
"type": "object",
|
|
6640
|
+
"required": [
|
|
6641
|
+
"events",
|
|
6642
|
+
"next_sequence",
|
|
6643
|
+
"high_water_mark",
|
|
6644
|
+
"cursor_gap"
|
|
6645
|
+
],
|
|
6646
|
+
"properties": {
|
|
6647
|
+
"events": {
|
|
6648
|
+
"type": "array",
|
|
6649
|
+
"items": {
|
|
6650
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalEvent"
|
|
6651
|
+
}
|
|
6652
|
+
},
|
|
6653
|
+
"next_sequence": {
|
|
6654
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6655
|
+
},
|
|
6656
|
+
"high_water_mark": {
|
|
6657
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6658
|
+
},
|
|
6659
|
+
"cursor_gap": {
|
|
6660
|
+
"type": "boolean"
|
|
6661
|
+
}
|
|
6662
|
+
},
|
|
6663
|
+
"unevaluatedProperties": {
|
|
6664
|
+
"not": {}
|
|
6665
|
+
},
|
|
6666
|
+
"description": "A bounded page of workflow journal events."
|
|
6667
|
+
},
|
|
6668
|
+
"Workflow.WorkflowGraphEdge": {
|
|
6669
|
+
"type": "object",
|
|
6670
|
+
"required": [
|
|
6671
|
+
"edge_id",
|
|
6672
|
+
"source_node_id",
|
|
6673
|
+
"target_node_id",
|
|
6674
|
+
"kind",
|
|
6675
|
+
"provenance"
|
|
6676
|
+
],
|
|
6677
|
+
"properties": {
|
|
6678
|
+
"edge_id": {
|
|
6679
|
+
"type": "string"
|
|
6680
|
+
},
|
|
6681
|
+
"source_node_id": {
|
|
6682
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeId"
|
|
6683
|
+
},
|
|
6684
|
+
"target_node_id": {
|
|
6685
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeId"
|
|
6686
|
+
},
|
|
6687
|
+
"kind": {
|
|
6688
|
+
"$ref": "#/$defs/Workflow.WorkflowEdgeKind"
|
|
6689
|
+
},
|
|
6690
|
+
"provenance": {
|
|
6691
|
+
"$ref": "#/$defs/Workflow.WorkflowEdgeProvenance"
|
|
6692
|
+
}
|
|
6693
|
+
},
|
|
6694
|
+
"unevaluatedProperties": {
|
|
6695
|
+
"not": {}
|
|
6696
|
+
},
|
|
6697
|
+
"description": "One typed edge in the deterministic workflow graph projection."
|
|
6698
|
+
},
|
|
6699
|
+
"Workflow.WorkflowGraphNode": {
|
|
6700
|
+
"type": "object",
|
|
6701
|
+
"required": [
|
|
6702
|
+
"node_id",
|
|
6703
|
+
"kind",
|
|
6704
|
+
"label",
|
|
6705
|
+
"status"
|
|
6706
|
+
],
|
|
6707
|
+
"properties": {
|
|
6708
|
+
"node_id": {
|
|
6709
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeId"
|
|
6710
|
+
},
|
|
6711
|
+
"kind": {
|
|
6712
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeKind"
|
|
6713
|
+
},
|
|
6714
|
+
"label": {
|
|
6715
|
+
"type": "string"
|
|
6716
|
+
},
|
|
6717
|
+
"status": {
|
|
6718
|
+
"type": "string"
|
|
6719
|
+
},
|
|
6720
|
+
"attempt_id": {
|
|
6721
|
+
"$ref": "#/$defs/Workflow.WorkflowAttemptId"
|
|
6722
|
+
},
|
|
6723
|
+
"agent_id": {
|
|
6724
|
+
"$ref": "#/$defs/Workflow.WorkflowAgentId"
|
|
6725
|
+
},
|
|
6726
|
+
"parent_node_id": {
|
|
6727
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeId"
|
|
6728
|
+
},
|
|
6729
|
+
"started_at": {
|
|
6730
|
+
"type": "string",
|
|
6731
|
+
"format": "date-time"
|
|
6732
|
+
},
|
|
6733
|
+
"ended_at": {
|
|
6734
|
+
"type": "string",
|
|
6735
|
+
"format": "date-time"
|
|
6736
|
+
},
|
|
6737
|
+
"duration_ms": {
|
|
6738
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
6739
|
+
},
|
|
6740
|
+
"content_refs": {
|
|
6741
|
+
"type": "array",
|
|
6742
|
+
"items": {
|
|
6743
|
+
"$ref": "#/$defs/Workflow.WorkflowContentRef"
|
|
6744
|
+
}
|
|
6745
|
+
},
|
|
6746
|
+
"attributes": {
|
|
6747
|
+
"type": "object",
|
|
6748
|
+
"unevaluatedProperties": {}
|
|
6749
|
+
}
|
|
6750
|
+
},
|
|
6751
|
+
"unevaluatedProperties": {
|
|
6752
|
+
"not": {}
|
|
6753
|
+
},
|
|
6754
|
+
"description": "One node in the deterministic workflow graph projection."
|
|
6755
|
+
},
|
|
6756
|
+
"Workflow.WorkflowGraphSnapshot": {
|
|
6757
|
+
"type": "object",
|
|
6758
|
+
"required": [
|
|
6759
|
+
"run",
|
|
6760
|
+
"nodes",
|
|
6761
|
+
"edges",
|
|
6762
|
+
"statistics",
|
|
6763
|
+
"journal_sequence",
|
|
6764
|
+
"has_more_nodes",
|
|
6765
|
+
"has_more_edges",
|
|
6766
|
+
"total_node_count",
|
|
6767
|
+
"total_edge_count"
|
|
6768
|
+
],
|
|
6769
|
+
"properties": {
|
|
6770
|
+
"run": {
|
|
6771
|
+
"$ref": "#/$defs/Workflow.WorkflowRun"
|
|
6772
|
+
},
|
|
6773
|
+
"nodes": {
|
|
6774
|
+
"type": "array",
|
|
6775
|
+
"items": {
|
|
6776
|
+
"$ref": "#/$defs/Workflow.WorkflowGraphNode"
|
|
6777
|
+
}
|
|
6778
|
+
},
|
|
6779
|
+
"edges": {
|
|
6780
|
+
"type": "array",
|
|
6781
|
+
"items": {
|
|
6782
|
+
"$ref": "#/$defs/Workflow.WorkflowGraphEdge"
|
|
6783
|
+
}
|
|
6784
|
+
},
|
|
6785
|
+
"statistics": {
|
|
6786
|
+
"$ref": "#/$defs/Workflow.WorkflowGraphStatistics"
|
|
6787
|
+
},
|
|
6788
|
+
"journal_sequence": {
|
|
6789
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6790
|
+
},
|
|
6791
|
+
"next_node_cursor": {
|
|
6792
|
+
"type": "string"
|
|
6793
|
+
},
|
|
6794
|
+
"next_edge_cursor": {
|
|
6795
|
+
"type": "string"
|
|
6796
|
+
},
|
|
6797
|
+
"has_more_nodes": {
|
|
6798
|
+
"type": "boolean"
|
|
6799
|
+
},
|
|
6800
|
+
"has_more_edges": {
|
|
6801
|
+
"type": "boolean"
|
|
6802
|
+
},
|
|
6803
|
+
"total_node_count": {
|
|
6804
|
+
"type": "integer",
|
|
6805
|
+
"format": "int32",
|
|
6806
|
+
"minimum": 0
|
|
6807
|
+
},
|
|
6808
|
+
"total_edge_count": {
|
|
6809
|
+
"type": "integer",
|
|
6810
|
+
"format": "int32",
|
|
6811
|
+
"minimum": 0
|
|
6812
|
+
}
|
|
6813
|
+
},
|
|
6814
|
+
"unevaluatedProperties": {
|
|
6815
|
+
"not": {}
|
|
6816
|
+
},
|
|
6817
|
+
"description": "Deterministic graph projection at one journal cursor."
|
|
6818
|
+
},
|
|
6819
|
+
"Workflow.WorkflowGraphStatistics": {
|
|
6820
|
+
"type": "object",
|
|
6821
|
+
"required": [
|
|
6822
|
+
"t1_ms",
|
|
6823
|
+
"t_infinity_ms",
|
|
6824
|
+
"wall_time_ms",
|
|
6825
|
+
"peak_concurrency",
|
|
6826
|
+
"worker_count",
|
|
6827
|
+
"parallel_lower_bound_ms",
|
|
6828
|
+
"critical_path_node_ids"
|
|
6829
|
+
],
|
|
6830
|
+
"properties": {
|
|
6831
|
+
"t1_ms": {
|
|
6832
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
6833
|
+
},
|
|
6834
|
+
"t_infinity_ms": {
|
|
6835
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
6836
|
+
},
|
|
6837
|
+
"wall_time_ms": {
|
|
6838
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
6839
|
+
},
|
|
6840
|
+
"peak_concurrency": {
|
|
6841
|
+
"type": "integer",
|
|
6842
|
+
"format": "int32",
|
|
6843
|
+
"minimum": 0
|
|
6844
|
+
},
|
|
6845
|
+
"worker_count": {
|
|
6846
|
+
"type": "integer",
|
|
6847
|
+
"format": "int32",
|
|
6848
|
+
"minimum": 1
|
|
6849
|
+
},
|
|
6850
|
+
"parallel_lower_bound_ms": {
|
|
6851
|
+
"$ref": "#/$defs/Common.DurationMs"
|
|
6852
|
+
},
|
|
6853
|
+
"critical_path_node_ids": {
|
|
6854
|
+
"type": "array",
|
|
6855
|
+
"items": {
|
|
6856
|
+
"$ref": "#/$defs/Workflow.WorkflowNodeId"
|
|
6857
|
+
}
|
|
6858
|
+
}
|
|
6859
|
+
},
|
|
6860
|
+
"unevaluatedProperties": {
|
|
6861
|
+
"not": {}
|
|
6862
|
+
},
|
|
6863
|
+
"description": "Work and critical-path statistics for a workflow graph."
|
|
6864
|
+
},
|
|
6865
|
+
"Workflow.WorkflowHeartbeatEvent": {
|
|
6866
|
+
"type": "object",
|
|
6867
|
+
"required": [
|
|
6868
|
+
"type",
|
|
6869
|
+
"high_water_mark",
|
|
6870
|
+
"timestamp"
|
|
6871
|
+
],
|
|
6872
|
+
"properties": {
|
|
6873
|
+
"type": {
|
|
6874
|
+
"type": "string",
|
|
6875
|
+
"enum": [
|
|
6876
|
+
"heartbeat"
|
|
6877
|
+
]
|
|
6878
|
+
},
|
|
6879
|
+
"high_water_mark": {
|
|
6880
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6881
|
+
},
|
|
6882
|
+
"timestamp": {
|
|
6883
|
+
"type": "string",
|
|
6884
|
+
"format": "date-time"
|
|
6885
|
+
}
|
|
6886
|
+
},
|
|
6887
|
+
"unevaluatedProperties": {
|
|
6888
|
+
"not": {}
|
|
6889
|
+
},
|
|
6890
|
+
"description": "Keep-alive emitted while a workflow event stream has no new event."
|
|
6891
|
+
},
|
|
6892
|
+
"Workflow.WorkflowJournalEvent": {
|
|
6893
|
+
"type": "object",
|
|
6894
|
+
"required": [
|
|
6895
|
+
"run_id",
|
|
6896
|
+
"client_id",
|
|
6897
|
+
"journal_sequence"
|
|
6898
|
+
],
|
|
6899
|
+
"properties": {
|
|
6900
|
+
"run_id": {
|
|
6901
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
6902
|
+
},
|
|
6903
|
+
"client_id": {
|
|
6904
|
+
"type": "string"
|
|
6905
|
+
},
|
|
6906
|
+
"journal_sequence": {
|
|
6907
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
6908
|
+
}
|
|
6909
|
+
},
|
|
6910
|
+
"unevaluatedProperties": {
|
|
6911
|
+
"not": {}
|
|
6912
|
+
},
|
|
6913
|
+
"allOf": [
|
|
6914
|
+
{
|
|
6915
|
+
"$ref": "#/$defs/Workflow.WorkflowEventAppend"
|
|
6916
|
+
}
|
|
6917
|
+
],
|
|
6918
|
+
"description": "One immutable event after collector journal sequence assignment."
|
|
6919
|
+
},
|
|
6920
|
+
"Workflow.WorkflowJournalEventKind": {
|
|
6921
|
+
"type": "string",
|
|
6922
|
+
"enum": [
|
|
6923
|
+
"run_created",
|
|
6924
|
+
"run_completed",
|
|
6925
|
+
"thread_started",
|
|
6926
|
+
"thread_resumed",
|
|
6927
|
+
"turn_started",
|
|
6928
|
+
"turn_completed",
|
|
6929
|
+
"turn_interrupted",
|
|
6930
|
+
"attempt_started",
|
|
6931
|
+
"attempt_completed",
|
|
6932
|
+
"agent_spawned",
|
|
6933
|
+
"agent_started",
|
|
6934
|
+
"agent_completed",
|
|
6935
|
+
"message_sent",
|
|
6936
|
+
"message_received",
|
|
6937
|
+
"wait_started",
|
|
6938
|
+
"wait_completed",
|
|
6939
|
+
"joined",
|
|
6940
|
+
"item_started",
|
|
6941
|
+
"item_completed",
|
|
6942
|
+
"tool_started",
|
|
6943
|
+
"tool_completed",
|
|
6944
|
+
"approval_requested",
|
|
6945
|
+
"approval_resolved",
|
|
6946
|
+
"content_captured",
|
|
6947
|
+
"file_written",
|
|
6948
|
+
"control_requested",
|
|
6949
|
+
"control_accepted",
|
|
6950
|
+
"control_applied",
|
|
6951
|
+
"control_rejected",
|
|
6952
|
+
"control_failed"
|
|
6953
|
+
],
|
|
6954
|
+
"description": "Immutable journal event kinds accepted from a Codex observer."
|
|
6955
|
+
},
|
|
6956
|
+
"Workflow.WorkflowNodeId": {
|
|
6957
|
+
"type": "string",
|
|
6958
|
+
"minLength": 1,
|
|
6959
|
+
"maxLength": 192,
|
|
6960
|
+
"description": "Stable identifier of one graph node."
|
|
6961
|
+
},
|
|
6962
|
+
"Workflow.WorkflowNodeKind": {
|
|
6963
|
+
"type": "string",
|
|
6964
|
+
"enum": [
|
|
6965
|
+
"run",
|
|
6966
|
+
"attempt",
|
|
6967
|
+
"turn",
|
|
6968
|
+
"agent",
|
|
6969
|
+
"tool_call",
|
|
6970
|
+
"message",
|
|
6971
|
+
"wait",
|
|
6972
|
+
"gate",
|
|
6973
|
+
"resource"
|
|
6974
|
+
],
|
|
6975
|
+
"description": "Kinds of execution node in the deterministic workflow graph."
|
|
6976
|
+
},
|
|
6977
|
+
"Workflow.WorkflowRun": {
|
|
6978
|
+
"type": "object",
|
|
6979
|
+
"required": [
|
|
6980
|
+
"run_id",
|
|
6981
|
+
"status",
|
|
6982
|
+
"started_at",
|
|
6983
|
+
"latest_journal_sequence"
|
|
6984
|
+
],
|
|
6985
|
+
"properties": {
|
|
6986
|
+
"run_id": {
|
|
6987
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
6988
|
+
},
|
|
6989
|
+
"thread_id": {
|
|
6990
|
+
"type": "string"
|
|
6991
|
+
},
|
|
6992
|
+
"title": {
|
|
6993
|
+
"type": "string"
|
|
6994
|
+
},
|
|
6995
|
+
"status": {
|
|
6996
|
+
"$ref": "#/$defs/Workflow.WorkflowRunStatus"
|
|
6997
|
+
},
|
|
6998
|
+
"started_at": {
|
|
6999
|
+
"type": "string",
|
|
7000
|
+
"format": "date-time"
|
|
7001
|
+
},
|
|
7002
|
+
"ended_at": {
|
|
7003
|
+
"type": "string",
|
|
7004
|
+
"format": "date-time"
|
|
7005
|
+
},
|
|
7006
|
+
"latest_journal_sequence": {
|
|
7007
|
+
"$ref": "#/$defs/Workflow.WorkflowSequence"
|
|
7008
|
+
},
|
|
7009
|
+
"active_attempt_id": {
|
|
7010
|
+
"$ref": "#/$defs/Workflow.WorkflowAttemptId"
|
|
7011
|
+
},
|
|
7012
|
+
"metadata": {
|
|
7013
|
+
"type": "object",
|
|
7014
|
+
"unevaluatedProperties": {}
|
|
7015
|
+
}
|
|
7016
|
+
},
|
|
7017
|
+
"unevaluatedProperties": {
|
|
7018
|
+
"not": {}
|
|
7019
|
+
},
|
|
7020
|
+
"description": "One immutable workflow run."
|
|
7021
|
+
},
|
|
7022
|
+
"Workflow.WorkflowRunCreateRequest": {
|
|
7023
|
+
"type": "object",
|
|
7024
|
+
"required": [
|
|
7025
|
+
"run_id",
|
|
7026
|
+
"started_at"
|
|
7027
|
+
],
|
|
7028
|
+
"properties": {
|
|
7029
|
+
"run_id": {
|
|
7030
|
+
"$ref": "#/$defs/Workflow.WorkflowRunId"
|
|
7031
|
+
},
|
|
7032
|
+
"thread_id": {
|
|
7033
|
+
"type": "string"
|
|
7034
|
+
},
|
|
7035
|
+
"title": {
|
|
7036
|
+
"type": "string"
|
|
7037
|
+
},
|
|
7038
|
+
"started_at": {
|
|
7039
|
+
"type": "string",
|
|
7040
|
+
"format": "date-time"
|
|
7041
|
+
},
|
|
7042
|
+
"metadata": {
|
|
7043
|
+
"type": "object",
|
|
7044
|
+
"unevaluatedProperties": {}
|
|
7045
|
+
}
|
|
7046
|
+
},
|
|
7047
|
+
"unevaluatedProperties": {
|
|
7048
|
+
"not": {}
|
|
7049
|
+
},
|
|
7050
|
+
"description": "Request to create an observed workflow run before appending journal events."
|
|
7051
|
+
},
|
|
7052
|
+
"Workflow.WorkflowRunId": {
|
|
7053
|
+
"type": "string",
|
|
7054
|
+
"minLength": 1,
|
|
7055
|
+
"maxLength": 128,
|
|
7056
|
+
"description": "Stable identifier of one observed Codex workflow run."
|
|
7057
|
+
},
|
|
7058
|
+
"Workflow.WorkflowRunPage": {
|
|
7059
|
+
"type": "object",
|
|
7060
|
+
"required": [
|
|
7061
|
+
"items",
|
|
7062
|
+
"has_more"
|
|
7063
|
+
],
|
|
7064
|
+
"properties": {
|
|
7065
|
+
"items": {
|
|
7066
|
+
"type": "array",
|
|
7067
|
+
"items": {
|
|
7068
|
+
"$ref": "#/$defs/Workflow.WorkflowRun"
|
|
7069
|
+
}
|
|
7070
|
+
},
|
|
7071
|
+
"next_cursor": {
|
|
7072
|
+
"type": "string"
|
|
7073
|
+
},
|
|
7074
|
+
"has_more": {
|
|
7075
|
+
"type": "boolean"
|
|
7076
|
+
}
|
|
7077
|
+
},
|
|
7078
|
+
"unevaluatedProperties": {
|
|
7079
|
+
"not": {}
|
|
7080
|
+
},
|
|
7081
|
+
"description": "Cursor page of workflow runs."
|
|
7082
|
+
},
|
|
7083
|
+
"Workflow.WorkflowRunStatus": {
|
|
7084
|
+
"type": "string",
|
|
7085
|
+
"enum": [
|
|
7086
|
+
"active",
|
|
7087
|
+
"completed",
|
|
7088
|
+
"failed",
|
|
7089
|
+
"interrupted"
|
|
7090
|
+
],
|
|
7091
|
+
"description": "Current lifecycle of a workflow run."
|
|
7092
|
+
},
|
|
7093
|
+
"Workflow.WorkflowSequence": {
|
|
7094
|
+
"type": "string",
|
|
7095
|
+
"format": "uint64",
|
|
7096
|
+
"description": "Unsigned source or collector journal sequence encoded without JavaScript precision loss.",
|
|
7097
|
+
"pattern": "^(0|[1-9][0-9]*)$",
|
|
7098
|
+
"maxLength": 20
|
|
7099
|
+
},
|
|
7100
|
+
"Workflow.WorkflowStreamEvents": {
|
|
7101
|
+
"anyOf": [
|
|
7102
|
+
{
|
|
7103
|
+
"$ref": "#/$defs/Workflow.WorkflowJournalEvent"
|
|
7104
|
+
},
|
|
7105
|
+
{
|
|
7106
|
+
"$ref": "#/$defs/Workflow.WorkflowHeartbeatEvent"
|
|
7107
|
+
},
|
|
7108
|
+
{
|
|
7109
|
+
"$ref": "#/$defs/Workflow.WorkflowCursorGapEvent"
|
|
7110
|
+
}
|
|
7111
|
+
]
|
|
7112
|
+
},
|
|
7113
|
+
"Workflow.WorkflowToolCallId": {
|
|
7114
|
+
"type": "string",
|
|
7115
|
+
"minLength": 1,
|
|
7116
|
+
"maxLength": 128,
|
|
7117
|
+
"description": "Stable identifier of one tool call within a workflow run."
|
|
7118
|
+
},
|
|
7119
|
+
"Workflow.WorkflowToolCallStatus": {
|
|
7120
|
+
"type": "string",
|
|
7121
|
+
"enum": [
|
|
7122
|
+
"requested",
|
|
7123
|
+
"running",
|
|
7124
|
+
"succeeded",
|
|
7125
|
+
"failed",
|
|
7126
|
+
"rejected"
|
|
7127
|
+
],
|
|
7128
|
+
"description": "Current lifecycle of an observed tool call."
|
|
7129
|
+
},
|
|
7130
|
+
"Operations.LogsApi_list.Response.200": {
|
|
7131
|
+
"type": "object",
|
|
7132
|
+
"required": [
|
|
7133
|
+
"items",
|
|
7134
|
+
"has_more"
|
|
7135
|
+
],
|
|
7136
|
+
"properties": {
|
|
7137
|
+
"items": {
|
|
7138
|
+
"type": "array",
|
|
7139
|
+
"items": {
|
|
7140
|
+
"$ref": "#/$defs/OTel.Logs.LogRecord"
|
|
7141
|
+
},
|
|
7142
|
+
"description": "List of items in this page"
|
|
7143
|
+
},
|
|
7144
|
+
"next_cursor": {
|
|
7145
|
+
"type": "string",
|
|
7146
|
+
"description": "Cursor for the next page (null if no more pages)"
|
|
7147
|
+
},
|
|
7148
|
+
"prev_cursor": {
|
|
7149
|
+
"type": "string",
|
|
7150
|
+
"description": "Cursor for the previous page (null if first page)"
|
|
7151
|
+
},
|
|
7152
|
+
"has_more": {
|
|
7153
|
+
"type": "boolean",
|
|
7154
|
+
"description": "Whether there are more items available"
|
|
7155
|
+
}
|
|
7156
|
+
},
|
|
7157
|
+
"unevaluatedProperties": {
|
|
7158
|
+
"not": {}
|
|
7159
|
+
},
|
|
7160
|
+
"description": "Cursor-based paginated response wrapper"
|
|
7161
|
+
},
|
|
7162
|
+
"Operations.LogsApi_list.Response.400": {
|
|
7163
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
7164
|
+
},
|
|
7165
|
+
"Operations.LogsApi_list.Response.401": {
|
|
7166
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
7167
|
+
},
|
|
7168
|
+
"Operations.LogsApi_list.Response.500": {
|
|
7169
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7170
|
+
},
|
|
7171
|
+
"Operations.RunnerResourcesApi_logs.Response.200": {
|
|
7172
|
+
"type": "array",
|
|
7173
|
+
"items": {
|
|
7174
|
+
"$ref": "#/$defs/Runner.RunnerLogLine"
|
|
7175
|
+
}
|
|
7176
|
+
},
|
|
7177
|
+
"Operations.RunnerResourcesApi_logs.Response.403": {
|
|
7178
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
7179
|
+
},
|
|
7180
|
+
"Operations.RunnerResourcesApi_logs.Response.404": {
|
|
7181
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
7182
|
+
},
|
|
7183
|
+
"Operations.RunnerResourcesApi_logs.Response.500": {
|
|
7184
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7185
|
+
},
|
|
7186
|
+
"Operations.RunnerResourcesApi_logs.Response.503": {
|
|
7187
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
7188
|
+
},
|
|
7189
|
+
"Operations.RunnerResourcesApi_restart.Response.403": {
|
|
7190
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
7191
|
+
},
|
|
7192
|
+
"Operations.RunnerResourcesApi_restart.Response.404": {
|
|
7193
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
7194
|
+
},
|
|
7195
|
+
"Operations.RunnerResourcesApi_restart.Response.409": {
|
|
7196
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
7197
|
+
},
|
|
7198
|
+
"Operations.RunnerResourcesApi_restart.Response.500": {
|
|
7199
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7200
|
+
},
|
|
7201
|
+
"Operations.RunnerResourcesApi_restart.Response.503": {
|
|
7202
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
7203
|
+
},
|
|
7204
|
+
"Operations.RunnerResourcesApi_snapshot.Response.200": {
|
|
7205
|
+
"type": "array",
|
|
7206
|
+
"items": {
|
|
7207
|
+
"$ref": "#/$defs/Runner.RunnerResourceState"
|
|
7208
|
+
}
|
|
7209
|
+
},
|
|
7210
|
+
"Operations.RunnerResourcesApi_snapshot.Response.403": {
|
|
7211
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
7212
|
+
},
|
|
7213
|
+
"Operations.RunnerResourcesApi_snapshot.Response.500": {
|
|
7214
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7215
|
+
},
|
|
7216
|
+
"Operations.RunnerResourcesApi_snapshot.Response.503": {
|
|
7217
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
7218
|
+
},
|
|
7219
|
+
"Operations.RunnerResourcesApi_stop.Response.403": {
|
|
7220
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
7221
|
+
},
|
|
7222
|
+
"Operations.RunnerResourcesApi_stop.Response.404": {
|
|
7223
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
7224
|
+
},
|
|
7225
|
+
"Operations.RunnerResourcesApi_stop.Response.409": {
|
|
7226
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
7227
|
+
},
|
|
7228
|
+
"Operations.RunnerResourcesApi_stop.Response.500": {
|
|
7229
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7230
|
+
},
|
|
7231
|
+
"Operations.RunnerResourcesApi_stop.Response.503": {
|
|
7232
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
7233
|
+
},
|
|
7234
|
+
"Operations.RunnerResourcesApi_stream.Response.403": {
|
|
7235
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
7236
|
+
},
|
|
7237
|
+
"Operations.RunnerResourcesApi_stream.Response.500": {
|
|
7238
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7239
|
+
},
|
|
7240
|
+
"Operations.RunnerResourcesApi_stream.Response.503": {
|
|
7241
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
7242
|
+
},
|
|
7243
|
+
"Operations.RunnerResourcesApi_streamLogs.Response.403": {
|
|
7244
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
7245
|
+
},
|
|
7246
|
+
"Operations.RunnerResourcesApi_streamLogs.Response.404": {
|
|
7247
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
7248
|
+
},
|
|
7249
|
+
"Operations.RunnerResourcesApi_streamLogs.Response.500": {
|
|
7250
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7251
|
+
},
|
|
7252
|
+
"Operations.RunnerResourcesApi_streamLogs.Response.503": {
|
|
7253
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
7254
|
+
},
|
|
7255
|
+
"Operations.SessionsApi_get.Response.200": {
|
|
7256
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionEntity"
|
|
7257
|
+
},
|
|
7258
|
+
"Operations.SessionsApi_get.Response.401": {
|
|
7259
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
7260
|
+
},
|
|
7261
|
+
"Operations.SessionsApi_get.Response.404": {
|
|
7262
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
7263
|
+
},
|
|
7264
|
+
"Operations.SessionsApi_get.Response.500": {
|
|
7265
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7266
|
+
},
|
|
7267
|
+
"Operations.SessionsApi_getStats.Response.200": {
|
|
7268
|
+
"$ref": "#/$defs/Domains.Observe.Session.SessionStats"
|
|
7269
|
+
},
|
|
7270
|
+
"Operations.SessionsApi_getStats.Response.400": {
|
|
7271
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
7272
|
+
},
|
|
7273
|
+
"Operations.SessionsApi_getStats.Response.401": {
|
|
7274
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
7275
|
+
},
|
|
7276
|
+
"Operations.SessionsApi_getStats.Response.500": {
|
|
7277
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
7278
|
+
},
|
|
7279
|
+
"Operations.SessionsApi_getTraces.Response.200": {
|
|
7280
|
+
"type": "object",
|
|
7281
|
+
"required": [
|
|
7282
|
+
"items",
|
|
7283
|
+
"has_more"
|
|
7284
|
+
],
|
|
7285
|
+
"properties": {
|
|
7286
|
+
"items": {
|
|
7287
|
+
"type": "array",
|
|
7288
|
+
"items": {
|
|
7289
|
+
"$ref": "#/$defs/OTel.Traces.Trace"
|
|
7290
|
+
},
|
|
7291
|
+
"description": "List of items in this page"
|
|
7292
|
+
},
|
|
7293
|
+
"next_cursor": {
|
|
7294
|
+
"type": "string",
|
|
7295
|
+
"description": "Cursor for the next page (null if no more pages)"
|
|
7296
|
+
},
|
|
7297
|
+
"prev_cursor": {
|
|
7298
|
+
"type": "string",
|
|
7299
|
+
"description": "Cursor for the previous page (null if first page)"
|
|
7300
|
+
},
|
|
7301
|
+
"has_more": {
|
|
7302
|
+
"type": "boolean",
|
|
7303
|
+
"description": "Whether there are more items available"
|
|
7304
|
+
}
|
|
7305
|
+
},
|
|
7306
|
+
"unevaluatedProperties": {
|
|
7307
|
+
"not": {}
|
|
7308
|
+
},
|
|
7309
|
+
"description": "Cursor-based paginated response wrapper"
|
|
7310
|
+
},
|
|
7311
|
+
"Operations.SessionsApi_getTraces.Response.401": {
|
|
7312
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
7313
|
+
},
|
|
7314
|
+
"Operations.SessionsApi_getTraces.Response.404": {
|
|
7315
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
5892
7316
|
},
|
|
5893
7317
|
"Operations.SessionsApi_getTraces.Response.500": {
|
|
5894
7318
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
@@ -7015,6 +8439,213 @@
|
|
|
7015
8439
|
"Operations.WorkbenchWorkspacesApi_updatePreferences.Response.503": {
|
|
7016
8440
|
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
7017
8441
|
},
|
|
8442
|
+
"Operations.WorkflowRunsApi_appendEvents.Request": {
|
|
8443
|
+
"$ref": "#/$defs/Workflow.WorkflowEventBatchAppendRequest"
|
|
8444
|
+
},
|
|
8445
|
+
"Operations.WorkflowRunsApi_appendEvents.Response.200": {
|
|
8446
|
+
"$ref": "#/$defs/Workflow.WorkflowEventBatchAppendResponse"
|
|
8447
|
+
},
|
|
8448
|
+
"Operations.WorkflowRunsApi_appendEvents.Response.400": {
|
|
8449
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
8450
|
+
},
|
|
8451
|
+
"Operations.WorkflowRunsApi_appendEvents.Response.401": {
|
|
8452
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8453
|
+
},
|
|
8454
|
+
"Operations.WorkflowRunsApi_appendEvents.Response.404": {
|
|
8455
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8456
|
+
},
|
|
8457
|
+
"Operations.WorkflowRunsApi_appendEvents.Response.409": {
|
|
8458
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
8459
|
+
},
|
|
8460
|
+
"Operations.WorkflowRunsApi_appendEvents.Response.500": {
|
|
8461
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8462
|
+
},
|
|
8463
|
+
"Operations.WorkflowRunsApi_appendEvents.Response.503": {
|
|
8464
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8465
|
+
},
|
|
8466
|
+
"Operations.WorkflowRunsApi_create.Request": {
|
|
8467
|
+
"$ref": "#/$defs/Workflow.WorkflowRunCreateRequest"
|
|
8468
|
+
},
|
|
8469
|
+
"Operations.WorkflowRunsApi_create.Response.200": {
|
|
8470
|
+
"$ref": "#/$defs/Workflow.WorkflowRun"
|
|
8471
|
+
},
|
|
8472
|
+
"Operations.WorkflowRunsApi_create.Response.400": {
|
|
8473
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
8474
|
+
},
|
|
8475
|
+
"Operations.WorkflowRunsApi_create.Response.401": {
|
|
8476
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8477
|
+
},
|
|
8478
|
+
"Operations.WorkflowRunsApi_create.Response.409": {
|
|
8479
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
8480
|
+
},
|
|
8481
|
+
"Operations.WorkflowRunsApi_create.Response.500": {
|
|
8482
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8483
|
+
},
|
|
8484
|
+
"Operations.WorkflowRunsApi_create.Response.503": {
|
|
8485
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8486
|
+
},
|
|
8487
|
+
"Operations.WorkflowRunsApi_get.Response.200": {
|
|
8488
|
+
"$ref": "#/$defs/Workflow.WorkflowRun"
|
|
8489
|
+
},
|
|
8490
|
+
"Operations.WorkflowRunsApi_get.Response.401": {
|
|
8491
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8492
|
+
},
|
|
8493
|
+
"Operations.WorkflowRunsApi_get.Response.404": {
|
|
8494
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8495
|
+
},
|
|
8496
|
+
"Operations.WorkflowRunsApi_get.Response.500": {
|
|
8497
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8498
|
+
},
|
|
8499
|
+
"Operations.WorkflowRunsApi_get.Response.503": {
|
|
8500
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8501
|
+
},
|
|
8502
|
+
"Operations.WorkflowRunsApi_getContent.Response.200": {
|
|
8503
|
+
"$ref": "#/$defs/Workflow.WorkflowContent"
|
|
8504
|
+
},
|
|
8505
|
+
"Operations.WorkflowRunsApi_getContent.Response.401": {
|
|
8506
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8507
|
+
},
|
|
8508
|
+
"Operations.WorkflowRunsApi_getContent.Response.404": {
|
|
8509
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8510
|
+
},
|
|
8511
|
+
"Operations.WorkflowRunsApi_getContent.Response.500": {
|
|
8512
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8513
|
+
},
|
|
8514
|
+
"Operations.WorkflowRunsApi_getContent.Response.503": {
|
|
8515
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8516
|
+
},
|
|
8517
|
+
"Operations.WorkflowRunsApi_getGraph.Response.200": {
|
|
8518
|
+
"$ref": "#/$defs/Workflow.WorkflowGraphSnapshot"
|
|
8519
|
+
},
|
|
8520
|
+
"Operations.WorkflowRunsApi_getGraph.Response.400": {
|
|
8521
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
8522
|
+
},
|
|
8523
|
+
"Operations.WorkflowRunsApi_getGraph.Response.401": {
|
|
8524
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8525
|
+
},
|
|
8526
|
+
"Operations.WorkflowRunsApi_getGraph.Response.404": {
|
|
8527
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8528
|
+
},
|
|
8529
|
+
"Operations.WorkflowRunsApi_getGraph.Response.500": {
|
|
8530
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8531
|
+
},
|
|
8532
|
+
"Operations.WorkflowRunsApi_getGraph.Response.503": {
|
|
8533
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8534
|
+
},
|
|
8535
|
+
"Operations.WorkflowRunsApi_list.Response.200": {
|
|
8536
|
+
"$ref": "#/$defs/Workflow.WorkflowRunPage"
|
|
8537
|
+
},
|
|
8538
|
+
"Operations.WorkflowRunsApi_list.Response.400": {
|
|
8539
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
8540
|
+
},
|
|
8541
|
+
"Operations.WorkflowRunsApi_list.Response.401": {
|
|
8542
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8543
|
+
},
|
|
8544
|
+
"Operations.WorkflowRunsApi_list.Response.500": {
|
|
8545
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8546
|
+
},
|
|
8547
|
+
"Operations.WorkflowRunsApi_list.Response.503": {
|
|
8548
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8549
|
+
},
|
|
8550
|
+
"Operations.WorkflowRunsApi_pollControls.Response.200": {
|
|
8551
|
+
"$ref": "#/$defs/Workflow.WorkflowControlCommandPage"
|
|
8552
|
+
},
|
|
8553
|
+
"Operations.WorkflowRunsApi_pollControls.Response.400": {
|
|
8554
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
8555
|
+
},
|
|
8556
|
+
"Operations.WorkflowRunsApi_pollControls.Response.401": {
|
|
8557
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8558
|
+
},
|
|
8559
|
+
"Operations.WorkflowRunsApi_pollControls.Response.404": {
|
|
8560
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8561
|
+
},
|
|
8562
|
+
"Operations.WorkflowRunsApi_pollControls.Response.500": {
|
|
8563
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8564
|
+
},
|
|
8565
|
+
"Operations.WorkflowRunsApi_pollControls.Response.503": {
|
|
8566
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8567
|
+
},
|
|
8568
|
+
"Operations.WorkflowRunsApi_readEvents.Response.200": {
|
|
8569
|
+
"$ref": "#/$defs/Workflow.WorkflowEventPage"
|
|
8570
|
+
},
|
|
8571
|
+
"Operations.WorkflowRunsApi_readEvents.Response.400": {
|
|
8572
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
8573
|
+
},
|
|
8574
|
+
"Operations.WorkflowRunsApi_readEvents.Response.401": {
|
|
8575
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8576
|
+
},
|
|
8577
|
+
"Operations.WorkflowRunsApi_readEvents.Response.404": {
|
|
8578
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8579
|
+
},
|
|
8580
|
+
"Operations.WorkflowRunsApi_readEvents.Response.500": {
|
|
8581
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8582
|
+
},
|
|
8583
|
+
"Operations.WorkflowRunsApi_readEvents.Response.503": {
|
|
8584
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8585
|
+
},
|
|
8586
|
+
"Operations.WorkflowRunsApi_stream.Response.400": {
|
|
8587
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
8588
|
+
},
|
|
8589
|
+
"Operations.WorkflowRunsApi_stream.Response.401": {
|
|
8590
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8591
|
+
},
|
|
8592
|
+
"Operations.WorkflowRunsApi_stream.Response.404": {
|
|
8593
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8594
|
+
},
|
|
8595
|
+
"Operations.WorkflowRunsApi_stream.Response.500": {
|
|
8596
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8597
|
+
},
|
|
8598
|
+
"Operations.WorkflowRunsApi_stream.Response.503": {
|
|
8599
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8600
|
+
},
|
|
8601
|
+
"Operations.WorkflowRunsApi_submitControl.Request": {
|
|
8602
|
+
"$ref": "#/$defs/Workflow.WorkflowControlRequest"
|
|
8603
|
+
},
|
|
8604
|
+
"Operations.WorkflowRunsApi_submitControl.Response.200": {
|
|
8605
|
+
"$ref": "#/$defs/Workflow.WorkflowControlCommand"
|
|
8606
|
+
},
|
|
8607
|
+
"Operations.WorkflowRunsApi_submitControl.Response.400": {
|
|
8608
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
8609
|
+
},
|
|
8610
|
+
"Operations.WorkflowRunsApi_submitControl.Response.401": {
|
|
8611
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8612
|
+
},
|
|
8613
|
+
"Operations.WorkflowRunsApi_submitControl.Response.404": {
|
|
8614
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8615
|
+
},
|
|
8616
|
+
"Operations.WorkflowRunsApi_submitControl.Response.409": {
|
|
8617
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
8618
|
+
},
|
|
8619
|
+
"Operations.WorkflowRunsApi_submitControl.Response.500": {
|
|
8620
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8621
|
+
},
|
|
8622
|
+
"Operations.WorkflowRunsApi_submitControl.Response.503": {
|
|
8623
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8624
|
+
},
|
|
8625
|
+
"Operations.WorkflowRunsApi_updateControl.Request": {
|
|
8626
|
+
"$ref": "#/$defs/Workflow.WorkflowControlStatusUpdateRequest"
|
|
8627
|
+
},
|
|
8628
|
+
"Operations.WorkflowRunsApi_updateControl.Response.200": {
|
|
8629
|
+
"$ref": "#/$defs/Workflow.WorkflowControlCommand"
|
|
8630
|
+
},
|
|
8631
|
+
"Operations.WorkflowRunsApi_updateControl.Response.400": {
|
|
8632
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
8633
|
+
},
|
|
8634
|
+
"Operations.WorkflowRunsApi_updateControl.Response.401": {
|
|
8635
|
+
"$ref": "#/$defs/Common.Errors.UnauthorizedError"
|
|
8636
|
+
},
|
|
8637
|
+
"Operations.WorkflowRunsApi_updateControl.Response.404": {
|
|
8638
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
8639
|
+
},
|
|
8640
|
+
"Operations.WorkflowRunsApi_updateControl.Response.409": {
|
|
8641
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
8642
|
+
},
|
|
8643
|
+
"Operations.WorkflowRunsApi_updateControl.Response.500": {
|
|
8644
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
8645
|
+
},
|
|
8646
|
+
"Operations.WorkflowRunsApi_updateControl.Response.503": {
|
|
8647
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
8648
|
+
},
|
|
7018
8649
|
"Operations.health_alive.Response.200": {
|
|
7019
8650
|
"$ref": "#/$defs/Health.HealthReport"
|
|
7020
8651
|
},
|