@pellux/goodvibes-contracts 1.8.0 → 1.9.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/artifacts/operator-contract.json +3092 -228
- package/artifacts/operator-openapi.json +1315 -10
- package/artifacts/python/homeassistant_operator_client.py +2 -2
- package/dist/core-verbs.d.ts.map +1 -1
- package/dist/core-verbs.js +33 -0
- package/dist/generated/foundation-client-types.d.ts +594 -61
- package/dist/generated/foundation-client-types.d.ts.map +1 -1
- package/dist/generated/foundation-metadata.d.ts +2 -2
- package/dist/generated/foundation-metadata.js +2 -2
- package/dist/generated/mock-daemon-fixtures.d.ts.map +1 -1
- package/dist/generated/mock-daemon-fixtures.js +664 -3
- package/dist/generated/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +3092 -228
- package/dist/generated/operator-method-ids.d.ts +1 -1
- package/dist/generated/operator-method-ids.d.ts.map +1 -1
- package/dist/generated/operator-method-ids.js +26 -0
- package/dist/generated/webui-facade.d.ts +2 -2
- package/dist/generated/webui-facade.d.ts.map +1 -1
- package/dist/generated/webui-facade.js +741 -6
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"openapi": "3.1.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "GoodVibes Operator API",
|
|
5
|
-
"version": "1.
|
|
6
|
-
"description": "Generated from the operator contract (packages/contracts/artifacts/operator-contract.json).
|
|
5
|
+
"version": "1.9.0",
|
|
6
|
+
"description": "Generated from the operator contract (packages/contracts/artifacts/operator-contract.json). 412 cataloged methods: 361 with dedicated REST bindings, 51 reachable only through the generic invoke endpoint. 97 methods lack typed SDK client IO and are marked with `x-typed-client-io: false` — they are represented honestly, never omitted. Regenerate with `bun run openapi:generate`; drift fails `contracts:check`."
|
|
7
7
|
},
|
|
8
8
|
"servers": [
|
|
9
9
|
{
|
|
@@ -4119,7 +4119,8 @@
|
|
|
4119
4119
|
"running",
|
|
4120
4120
|
"completed",
|
|
4121
4121
|
"failed",
|
|
4122
|
-
"cancelled"
|
|
4122
|
+
"cancelled",
|
|
4123
|
+
"missed"
|
|
4123
4124
|
]
|
|
4124
4125
|
},
|
|
4125
4126
|
"agentId": {
|
|
@@ -9129,7 +9130,8 @@
|
|
|
9129
9130
|
"running",
|
|
9130
9131
|
"completed",
|
|
9131
9132
|
"failed",
|
|
9132
|
-
"cancelled"
|
|
9133
|
+
"cancelled",
|
|
9134
|
+
"missed"
|
|
9133
9135
|
]
|
|
9134
9136
|
},
|
|
9135
9137
|
"agentId": {
|
|
@@ -10147,7 +10149,8 @@
|
|
|
10147
10149
|
"running",
|
|
10148
10150
|
"completed",
|
|
10149
10151
|
"failed",
|
|
10150
|
-
"cancelled"
|
|
10152
|
+
"cancelled",
|
|
10153
|
+
"missed"
|
|
10151
10154
|
]
|
|
10152
10155
|
},
|
|
10153
10156
|
"agentId": {
|
|
@@ -11205,7 +11208,7 @@
|
|
|
11205
11208
|
"get": {
|
|
11206
11209
|
"operationId": "automation.runs.list",
|
|
11207
11210
|
"summary": "List Automation Runs",
|
|
11208
|
-
"description": "Return automation run history. Without ?limit/?cursor returns { runs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400.",
|
|
11211
|
+
"description": "Return automation run history. Without ?limit/?cursor returns { runs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400. Optional ?since=<epoch-ms> returns only runs active on or after that time (by queuedAt, or endedAt when set) — the host-side source an away-digest reads to report the failed, missed, completed, and delivered runs since the operator was last present.",
|
|
11209
11212
|
"tags": [
|
|
11210
11213
|
"automation"
|
|
11211
11214
|
],
|
|
@@ -11247,7 +11250,8 @@
|
|
|
11247
11250
|
"running",
|
|
11248
11251
|
"completed",
|
|
11249
11252
|
"failed",
|
|
11250
|
-
"cancelled"
|
|
11253
|
+
"cancelled",
|
|
11254
|
+
"missed"
|
|
11251
11255
|
]
|
|
11252
11256
|
},
|
|
11253
11257
|
"agentId": {
|
|
@@ -12207,6 +12211,14 @@
|
|
|
12207
12211
|
"schema": {
|
|
12208
12212
|
"type": "string"
|
|
12209
12213
|
}
|
|
12214
|
+
},
|
|
12215
|
+
{
|
|
12216
|
+
"name": "since",
|
|
12217
|
+
"in": "query",
|
|
12218
|
+
"required": false,
|
|
12219
|
+
"schema": {
|
|
12220
|
+
"type": "number"
|
|
12221
|
+
}
|
|
12210
12222
|
}
|
|
12211
12223
|
]
|
|
12212
12224
|
}
|
|
@@ -12255,7 +12267,8 @@
|
|
|
12255
12267
|
"running",
|
|
12256
12268
|
"completed",
|
|
12257
12269
|
"failed",
|
|
12258
|
-
"cancelled"
|
|
12270
|
+
"cancelled",
|
|
12271
|
+
"missed"
|
|
12259
12272
|
]
|
|
12260
12273
|
},
|
|
12261
12274
|
"agentId": {
|
|
@@ -15240,7 +15253,8 @@
|
|
|
15240
15253
|
"running",
|
|
15241
15254
|
"completed",
|
|
15242
15255
|
"failed",
|
|
15243
|
-
"cancelled"
|
|
15256
|
+
"cancelled",
|
|
15257
|
+
"missed"
|
|
15244
15258
|
]
|
|
15245
15259
|
},
|
|
15246
15260
|
"agentId": {
|
|
@@ -29931,6 +29945,177 @@
|
|
|
29931
29945
|
}
|
|
29932
29946
|
}
|
|
29933
29947
|
},
|
|
29948
|
+
"/api/fleet/workstreams/{workstreamId}/graph": {
|
|
29949
|
+
"get": {
|
|
29950
|
+
"operationId": "fleet.graph.get",
|
|
29951
|
+
"summary": "Get Workstream Task Graph",
|
|
29952
|
+
"description": "The dependency-graph view of one workstream: nodes (id, title, state, cluster, files, merge state, blocked reason, orphaned flag, deepest-remaining-path depth, stalled tell, agent), edges (from depends on to), and the elastic-pool state (ready/running counts, at-cap, cap key + size, any spawn refusal). Surfaces render the task graph under the chain from this — the fleet/observability idiom. 404 when the workstream is unknown to this daemon.",
|
|
29953
|
+
"tags": [
|
|
29954
|
+
"fleet"
|
|
29955
|
+
],
|
|
29956
|
+
"responses": {
|
|
29957
|
+
"200": {
|
|
29958
|
+
"description": "Success",
|
|
29959
|
+
"content": {
|
|
29960
|
+
"application/json": {
|
|
29961
|
+
"schema": {
|
|
29962
|
+
"type": "object",
|
|
29963
|
+
"properties": {
|
|
29964
|
+
"workstreamId": {
|
|
29965
|
+
"type": "string"
|
|
29966
|
+
},
|
|
29967
|
+
"title": {
|
|
29968
|
+
"type": "string"
|
|
29969
|
+
},
|
|
29970
|
+
"nodes": {
|
|
29971
|
+
"type": "array",
|
|
29972
|
+
"items": {
|
|
29973
|
+
"type": "object",
|
|
29974
|
+
"properties": {
|
|
29975
|
+
"id": {
|
|
29976
|
+
"type": "string"
|
|
29977
|
+
},
|
|
29978
|
+
"title": {
|
|
29979
|
+
"type": "string"
|
|
29980
|
+
},
|
|
29981
|
+
"state": {
|
|
29982
|
+
"type": "string"
|
|
29983
|
+
},
|
|
29984
|
+
"cluster": {
|
|
29985
|
+
"type": "string"
|
|
29986
|
+
},
|
|
29987
|
+
"files": {
|
|
29988
|
+
"type": "array",
|
|
29989
|
+
"items": {
|
|
29990
|
+
"type": "string"
|
|
29991
|
+
}
|
|
29992
|
+
},
|
|
29993
|
+
"mergeState": {
|
|
29994
|
+
"type": "string"
|
|
29995
|
+
},
|
|
29996
|
+
"blockedReason": {
|
|
29997
|
+
"type": "string"
|
|
29998
|
+
},
|
|
29999
|
+
"orphaned": {
|
|
30000
|
+
"type": "boolean"
|
|
30001
|
+
},
|
|
30002
|
+
"remainingDepth": {
|
|
30003
|
+
"type": "number"
|
|
30004
|
+
},
|
|
30005
|
+
"stalled": {
|
|
30006
|
+
"type": "boolean"
|
|
30007
|
+
},
|
|
30008
|
+
"agentId": {
|
|
30009
|
+
"type": "string"
|
|
30010
|
+
}
|
|
30011
|
+
},
|
|
30012
|
+
"required": [
|
|
30013
|
+
"id",
|
|
30014
|
+
"title",
|
|
30015
|
+
"state",
|
|
30016
|
+
"files",
|
|
30017
|
+
"orphaned",
|
|
30018
|
+
"remainingDepth",
|
|
30019
|
+
"stalled"
|
|
30020
|
+
],
|
|
30021
|
+
"additionalProperties": false
|
|
30022
|
+
}
|
|
30023
|
+
},
|
|
30024
|
+
"edges": {
|
|
30025
|
+
"type": "array",
|
|
30026
|
+
"items": {
|
|
30027
|
+
"type": "object",
|
|
30028
|
+
"properties": {
|
|
30029
|
+
"from": {
|
|
30030
|
+
"type": "string"
|
|
30031
|
+
},
|
|
30032
|
+
"to": {
|
|
30033
|
+
"type": "string"
|
|
30034
|
+
}
|
|
30035
|
+
},
|
|
30036
|
+
"required": [
|
|
30037
|
+
"from",
|
|
30038
|
+
"to"
|
|
30039
|
+
],
|
|
30040
|
+
"additionalProperties": false
|
|
30041
|
+
}
|
|
30042
|
+
},
|
|
30043
|
+
"pool": {
|
|
30044
|
+
"anyOf": [
|
|
30045
|
+
{
|
|
30046
|
+
"type": "object",
|
|
30047
|
+
"properties": {
|
|
30048
|
+
"ready": {
|
|
30049
|
+
"type": "number"
|
|
30050
|
+
},
|
|
30051
|
+
"running": {
|
|
30052
|
+
"type": "number"
|
|
30053
|
+
},
|
|
30054
|
+
"atCap": {
|
|
30055
|
+
"type": "boolean"
|
|
30056
|
+
},
|
|
30057
|
+
"capKey": {
|
|
30058
|
+
"type": "string"
|
|
30059
|
+
},
|
|
30060
|
+
"maxSize": {
|
|
30061
|
+
"type": "number"
|
|
30062
|
+
},
|
|
30063
|
+
"refusal": {
|
|
30064
|
+
"type": "string"
|
|
30065
|
+
}
|
|
30066
|
+
},
|
|
30067
|
+
"required": [
|
|
30068
|
+
"ready",
|
|
30069
|
+
"running",
|
|
30070
|
+
"atCap",
|
|
30071
|
+
"capKey",
|
|
30072
|
+
"maxSize"
|
|
30073
|
+
],
|
|
30074
|
+
"additionalProperties": false
|
|
30075
|
+
},
|
|
30076
|
+
{
|
|
30077
|
+
"type": "null"
|
|
30078
|
+
}
|
|
30079
|
+
]
|
|
30080
|
+
}
|
|
30081
|
+
},
|
|
30082
|
+
"required": [
|
|
30083
|
+
"workstreamId",
|
|
30084
|
+
"title",
|
|
30085
|
+
"nodes",
|
|
30086
|
+
"edges",
|
|
30087
|
+
"pool"
|
|
30088
|
+
],
|
|
30089
|
+
"additionalProperties": false
|
|
30090
|
+
}
|
|
30091
|
+
}
|
|
30092
|
+
}
|
|
30093
|
+
},
|
|
30094
|
+
"default": {
|
|
30095
|
+
"$ref": "#/components/responses/Error"
|
|
30096
|
+
}
|
|
30097
|
+
},
|
|
30098
|
+
"x-typed-client-io": true,
|
|
30099
|
+
"x-access": "authenticated",
|
|
30100
|
+
"x-transport": [
|
|
30101
|
+
"http",
|
|
30102
|
+
"ws"
|
|
30103
|
+
],
|
|
30104
|
+
"x-scopes": [
|
|
30105
|
+
"read:fleet"
|
|
30106
|
+
],
|
|
30107
|
+
"parameters": [
|
|
30108
|
+
{
|
|
30109
|
+
"name": "workstreamId",
|
|
30110
|
+
"in": "path",
|
|
30111
|
+
"required": true,
|
|
30112
|
+
"schema": {
|
|
30113
|
+
"type": "string"
|
|
30114
|
+
}
|
|
30115
|
+
}
|
|
30116
|
+
]
|
|
30117
|
+
}
|
|
30118
|
+
},
|
|
29934
30119
|
"/api/health": {
|
|
29935
30120
|
"get": {
|
|
29936
30121
|
"operationId": "health.snapshot",
|
|
@@ -30248,6 +30433,363 @@
|
|
|
30248
30433
|
]
|
|
30249
30434
|
}
|
|
30250
30435
|
},
|
|
30436
|
+
"/api/power/keep-awake": {
|
|
30437
|
+
"post": {
|
|
30438
|
+
"operationId": "power.keepAwake.set",
|
|
30439
|
+
"summary": "Set the Owner Keep-Awake Toggle",
|
|
30440
|
+
"description": "Turn the owner keep-awake toggle on or off: a daemon-held sleep inhibitor INDEPENDENT of work state, surviving surface closes, persisted as power.keepAwake. Covers idle + sleep + lid-switch classes where grantable; the returned state names any refused class honestly. No timers, no AC-only sub-options — the always-visible chip is the safety mechanism. Emits runtime.ops OPS_POWER_STATE_CHANGED so every attached surface updates its chip.",
|
|
30441
|
+
"tags": [
|
|
30442
|
+
"health"
|
|
30443
|
+
],
|
|
30444
|
+
"responses": {
|
|
30445
|
+
"200": {
|
|
30446
|
+
"description": "Success",
|
|
30447
|
+
"content": {
|
|
30448
|
+
"application/json": {
|
|
30449
|
+
"schema": {
|
|
30450
|
+
"type": "object",
|
|
30451
|
+
"properties": {
|
|
30452
|
+
"platform": {
|
|
30453
|
+
"type": "string"
|
|
30454
|
+
},
|
|
30455
|
+
"work": {
|
|
30456
|
+
"type": "object",
|
|
30457
|
+
"properties": {
|
|
30458
|
+
"held": {
|
|
30459
|
+
"type": "boolean"
|
|
30460
|
+
},
|
|
30461
|
+
"grantedClasses": {
|
|
30462
|
+
"type": "array",
|
|
30463
|
+
"items": {
|
|
30464
|
+
"type": "string",
|
|
30465
|
+
"enum": [
|
|
30466
|
+
"handle-lid-switch",
|
|
30467
|
+
"idle",
|
|
30468
|
+
"sleep"
|
|
30469
|
+
]
|
|
30470
|
+
}
|
|
30471
|
+
},
|
|
30472
|
+
"deniedClasses": {
|
|
30473
|
+
"type": "array",
|
|
30474
|
+
"items": {
|
|
30475
|
+
"type": "string",
|
|
30476
|
+
"enum": [
|
|
30477
|
+
"handle-lid-switch",
|
|
30478
|
+
"idle",
|
|
30479
|
+
"sleep"
|
|
30480
|
+
]
|
|
30481
|
+
}
|
|
30482
|
+
},
|
|
30483
|
+
"reasons": {
|
|
30484
|
+
"type": "array",
|
|
30485
|
+
"items": {
|
|
30486
|
+
"type": "string"
|
|
30487
|
+
}
|
|
30488
|
+
},
|
|
30489
|
+
"heldSince": {
|
|
30490
|
+
"anyOf": [
|
|
30491
|
+
{
|
|
30492
|
+
"type": "number"
|
|
30493
|
+
},
|
|
30494
|
+
{
|
|
30495
|
+
"type": "null"
|
|
30496
|
+
}
|
|
30497
|
+
]
|
|
30498
|
+
},
|
|
30499
|
+
"capMinutes": {
|
|
30500
|
+
"type": "number"
|
|
30501
|
+
},
|
|
30502
|
+
"capExpiresAt": {
|
|
30503
|
+
"anyOf": [
|
|
30504
|
+
{
|
|
30505
|
+
"type": "number"
|
|
30506
|
+
},
|
|
30507
|
+
{
|
|
30508
|
+
"type": "null"
|
|
30509
|
+
}
|
|
30510
|
+
]
|
|
30511
|
+
},
|
|
30512
|
+
"capExpired": {
|
|
30513
|
+
"type": "boolean"
|
|
30514
|
+
}
|
|
30515
|
+
},
|
|
30516
|
+
"required": [
|
|
30517
|
+
"held",
|
|
30518
|
+
"grantedClasses",
|
|
30519
|
+
"deniedClasses",
|
|
30520
|
+
"reasons",
|
|
30521
|
+
"heldSince",
|
|
30522
|
+
"capMinutes",
|
|
30523
|
+
"capExpiresAt",
|
|
30524
|
+
"capExpired"
|
|
30525
|
+
],
|
|
30526
|
+
"additionalProperties": false
|
|
30527
|
+
},
|
|
30528
|
+
"keepAwake": {
|
|
30529
|
+
"type": "object",
|
|
30530
|
+
"properties": {
|
|
30531
|
+
"enabled": {
|
|
30532
|
+
"type": "boolean"
|
|
30533
|
+
},
|
|
30534
|
+
"held": {
|
|
30535
|
+
"type": "boolean"
|
|
30536
|
+
},
|
|
30537
|
+
"grantedClasses": {
|
|
30538
|
+
"type": "array",
|
|
30539
|
+
"items": {
|
|
30540
|
+
"type": "string",
|
|
30541
|
+
"enum": [
|
|
30542
|
+
"handle-lid-switch",
|
|
30543
|
+
"idle",
|
|
30544
|
+
"sleep"
|
|
30545
|
+
]
|
|
30546
|
+
}
|
|
30547
|
+
},
|
|
30548
|
+
"deniedClasses": {
|
|
30549
|
+
"type": "array",
|
|
30550
|
+
"items": {
|
|
30551
|
+
"type": "string",
|
|
30552
|
+
"enum": [
|
|
30553
|
+
"handle-lid-switch",
|
|
30554
|
+
"idle",
|
|
30555
|
+
"sleep"
|
|
30556
|
+
]
|
|
30557
|
+
}
|
|
30558
|
+
},
|
|
30559
|
+
"note": {
|
|
30560
|
+
"anyOf": [
|
|
30561
|
+
{
|
|
30562
|
+
"type": "string"
|
|
30563
|
+
},
|
|
30564
|
+
{
|
|
30565
|
+
"type": "null"
|
|
30566
|
+
}
|
|
30567
|
+
]
|
|
30568
|
+
}
|
|
30569
|
+
},
|
|
30570
|
+
"required": [
|
|
30571
|
+
"enabled",
|
|
30572
|
+
"held",
|
|
30573
|
+
"grantedClasses",
|
|
30574
|
+
"deniedClasses",
|
|
30575
|
+
"note"
|
|
30576
|
+
],
|
|
30577
|
+
"additionalProperties": false
|
|
30578
|
+
}
|
|
30579
|
+
},
|
|
30580
|
+
"required": [
|
|
30581
|
+
"platform",
|
|
30582
|
+
"work",
|
|
30583
|
+
"keepAwake"
|
|
30584
|
+
],
|
|
30585
|
+
"additionalProperties": false
|
|
30586
|
+
}
|
|
30587
|
+
}
|
|
30588
|
+
}
|
|
30589
|
+
},
|
|
30590
|
+
"default": {
|
|
30591
|
+
"$ref": "#/components/responses/Error"
|
|
30592
|
+
}
|
|
30593
|
+
},
|
|
30594
|
+
"x-typed-client-io": true,
|
|
30595
|
+
"x-access": "authenticated",
|
|
30596
|
+
"x-transport": [
|
|
30597
|
+
"http",
|
|
30598
|
+
"ws"
|
|
30599
|
+
],
|
|
30600
|
+
"x-scopes": [
|
|
30601
|
+
"write:config"
|
|
30602
|
+
],
|
|
30603
|
+
"requestBody": {
|
|
30604
|
+
"required": true,
|
|
30605
|
+
"content": {
|
|
30606
|
+
"application/json": {
|
|
30607
|
+
"schema": {
|
|
30608
|
+
"type": "object",
|
|
30609
|
+
"properties": {
|
|
30610
|
+
"enabled": {
|
|
30611
|
+
"type": "boolean"
|
|
30612
|
+
}
|
|
30613
|
+
},
|
|
30614
|
+
"required": [
|
|
30615
|
+
"enabled"
|
|
30616
|
+
],
|
|
30617
|
+
"additionalProperties": false
|
|
30618
|
+
}
|
|
30619
|
+
}
|
|
30620
|
+
}
|
|
30621
|
+
}
|
|
30622
|
+
}
|
|
30623
|
+
},
|
|
30624
|
+
"/api/power/status": {
|
|
30625
|
+
"get": {
|
|
30626
|
+
"operationId": "power.status.get",
|
|
30627
|
+
"summary": "Get Sleep-Ownership State",
|
|
30628
|
+
"description": "The host sleep-ownership state: whether the automatic work inhibitor is held (and the live \"held because X\" reasons, cap, and expiry), and the owner keep-awake toggle with the classes the OS actually granted vs refused — a refused lid-switch block is stated honestly (\"idle sleep blocked; lid-close suspend is controlled by your OS here\"), never papered over. Surfaces render the always-visible \"sleep disabled\" chip from this state and the runtime.ops OPS_POWER_STATE_CHANGED event.",
|
|
30629
|
+
"tags": [
|
|
30630
|
+
"health"
|
|
30631
|
+
],
|
|
30632
|
+
"responses": {
|
|
30633
|
+
"200": {
|
|
30634
|
+
"description": "Success",
|
|
30635
|
+
"content": {
|
|
30636
|
+
"application/json": {
|
|
30637
|
+
"schema": {
|
|
30638
|
+
"type": "object",
|
|
30639
|
+
"properties": {
|
|
30640
|
+
"platform": {
|
|
30641
|
+
"type": "string"
|
|
30642
|
+
},
|
|
30643
|
+
"work": {
|
|
30644
|
+
"type": "object",
|
|
30645
|
+
"properties": {
|
|
30646
|
+
"held": {
|
|
30647
|
+
"type": "boolean"
|
|
30648
|
+
},
|
|
30649
|
+
"grantedClasses": {
|
|
30650
|
+
"type": "array",
|
|
30651
|
+
"items": {
|
|
30652
|
+
"type": "string",
|
|
30653
|
+
"enum": [
|
|
30654
|
+
"handle-lid-switch",
|
|
30655
|
+
"idle",
|
|
30656
|
+
"sleep"
|
|
30657
|
+
]
|
|
30658
|
+
}
|
|
30659
|
+
},
|
|
30660
|
+
"deniedClasses": {
|
|
30661
|
+
"type": "array",
|
|
30662
|
+
"items": {
|
|
30663
|
+
"type": "string",
|
|
30664
|
+
"enum": [
|
|
30665
|
+
"handle-lid-switch",
|
|
30666
|
+
"idle",
|
|
30667
|
+
"sleep"
|
|
30668
|
+
]
|
|
30669
|
+
}
|
|
30670
|
+
},
|
|
30671
|
+
"reasons": {
|
|
30672
|
+
"type": "array",
|
|
30673
|
+
"items": {
|
|
30674
|
+
"type": "string"
|
|
30675
|
+
}
|
|
30676
|
+
},
|
|
30677
|
+
"heldSince": {
|
|
30678
|
+
"anyOf": [
|
|
30679
|
+
{
|
|
30680
|
+
"type": "number"
|
|
30681
|
+
},
|
|
30682
|
+
{
|
|
30683
|
+
"type": "null"
|
|
30684
|
+
}
|
|
30685
|
+
]
|
|
30686
|
+
},
|
|
30687
|
+
"capMinutes": {
|
|
30688
|
+
"type": "number"
|
|
30689
|
+
},
|
|
30690
|
+
"capExpiresAt": {
|
|
30691
|
+
"anyOf": [
|
|
30692
|
+
{
|
|
30693
|
+
"type": "number"
|
|
30694
|
+
},
|
|
30695
|
+
{
|
|
30696
|
+
"type": "null"
|
|
30697
|
+
}
|
|
30698
|
+
]
|
|
30699
|
+
},
|
|
30700
|
+
"capExpired": {
|
|
30701
|
+
"type": "boolean"
|
|
30702
|
+
}
|
|
30703
|
+
},
|
|
30704
|
+
"required": [
|
|
30705
|
+
"held",
|
|
30706
|
+
"grantedClasses",
|
|
30707
|
+
"deniedClasses",
|
|
30708
|
+
"reasons",
|
|
30709
|
+
"heldSince",
|
|
30710
|
+
"capMinutes",
|
|
30711
|
+
"capExpiresAt",
|
|
30712
|
+
"capExpired"
|
|
30713
|
+
],
|
|
30714
|
+
"additionalProperties": false
|
|
30715
|
+
},
|
|
30716
|
+
"keepAwake": {
|
|
30717
|
+
"type": "object",
|
|
30718
|
+
"properties": {
|
|
30719
|
+
"enabled": {
|
|
30720
|
+
"type": "boolean"
|
|
30721
|
+
},
|
|
30722
|
+
"held": {
|
|
30723
|
+
"type": "boolean"
|
|
30724
|
+
},
|
|
30725
|
+
"grantedClasses": {
|
|
30726
|
+
"type": "array",
|
|
30727
|
+
"items": {
|
|
30728
|
+
"type": "string",
|
|
30729
|
+
"enum": [
|
|
30730
|
+
"handle-lid-switch",
|
|
30731
|
+
"idle",
|
|
30732
|
+
"sleep"
|
|
30733
|
+
]
|
|
30734
|
+
}
|
|
30735
|
+
},
|
|
30736
|
+
"deniedClasses": {
|
|
30737
|
+
"type": "array",
|
|
30738
|
+
"items": {
|
|
30739
|
+
"type": "string",
|
|
30740
|
+
"enum": [
|
|
30741
|
+
"handle-lid-switch",
|
|
30742
|
+
"idle",
|
|
30743
|
+
"sleep"
|
|
30744
|
+
]
|
|
30745
|
+
}
|
|
30746
|
+
},
|
|
30747
|
+
"note": {
|
|
30748
|
+
"anyOf": [
|
|
30749
|
+
{
|
|
30750
|
+
"type": "string"
|
|
30751
|
+
},
|
|
30752
|
+
{
|
|
30753
|
+
"type": "null"
|
|
30754
|
+
}
|
|
30755
|
+
]
|
|
30756
|
+
}
|
|
30757
|
+
},
|
|
30758
|
+
"required": [
|
|
30759
|
+
"enabled",
|
|
30760
|
+
"held",
|
|
30761
|
+
"grantedClasses",
|
|
30762
|
+
"deniedClasses",
|
|
30763
|
+
"note"
|
|
30764
|
+
],
|
|
30765
|
+
"additionalProperties": false
|
|
30766
|
+
}
|
|
30767
|
+
},
|
|
30768
|
+
"required": [
|
|
30769
|
+
"platform",
|
|
30770
|
+
"work",
|
|
30771
|
+
"keepAwake"
|
|
30772
|
+
],
|
|
30773
|
+
"additionalProperties": false
|
|
30774
|
+
}
|
|
30775
|
+
}
|
|
30776
|
+
}
|
|
30777
|
+
},
|
|
30778
|
+
"default": {
|
|
30779
|
+
"$ref": "#/components/responses/Error"
|
|
30780
|
+
}
|
|
30781
|
+
},
|
|
30782
|
+
"x-typed-client-io": true,
|
|
30783
|
+
"x-access": "authenticated",
|
|
30784
|
+
"x-transport": [
|
|
30785
|
+
"http",
|
|
30786
|
+
"ws"
|
|
30787
|
+
],
|
|
30788
|
+
"x-scopes": [
|
|
30789
|
+
"read:health"
|
|
30790
|
+
]
|
|
30791
|
+
}
|
|
30792
|
+
},
|
|
30251
30793
|
"/api/intelligence": {
|
|
30252
30794
|
"get": {
|
|
30253
30795
|
"operationId": "intelligence.snapshot",
|
|
@@ -62136,6 +62678,184 @@
|
|
|
62136
62678
|
}
|
|
62137
62679
|
}
|
|
62138
62680
|
},
|
|
62681
|
+
"/api/memory/consolidation/receipts": {
|
|
62682
|
+
"get": {
|
|
62683
|
+
"operationId": "memory.consolidation.receipts",
|
|
62684
|
+
"summary": "Memory Consolidation Receipts",
|
|
62685
|
+
"description": "Return the retained memory-consolidation run receipts (what each idle/scheduled pass scanned, merged, archived, decayed) and the pending judgment PROPOSALS they carry (contradictions, cross-scope duplicates) — the records a proposal references are already marked into the review queue, and a human resolves them through the confirmation-gated review route. A runtime without the consolidation scheduler answers an honest 501.",
|
|
62686
|
+
"tags": [
|
|
62687
|
+
"memory"
|
|
62688
|
+
],
|
|
62689
|
+
"responses": {
|
|
62690
|
+
"200": {
|
|
62691
|
+
"description": "Success",
|
|
62692
|
+
"content": {
|
|
62693
|
+
"application/json": {
|
|
62694
|
+
"schema": {
|
|
62695
|
+
"type": "object",
|
|
62696
|
+
"properties": {
|
|
62697
|
+
"receipts": {
|
|
62698
|
+
"type": "array",
|
|
62699
|
+
"items": {
|
|
62700
|
+
"type": "object",
|
|
62701
|
+
"properties": {
|
|
62702
|
+
"runId": {
|
|
62703
|
+
"type": "string"
|
|
62704
|
+
},
|
|
62705
|
+
"ranAt": {
|
|
62706
|
+
"type": "string"
|
|
62707
|
+
},
|
|
62708
|
+
"trigger": {
|
|
62709
|
+
"type": "string"
|
|
62710
|
+
},
|
|
62711
|
+
"idle": {
|
|
62712
|
+
"type": "boolean"
|
|
62713
|
+
},
|
|
62714
|
+
"scanned": {
|
|
62715
|
+
"type": "number"
|
|
62716
|
+
},
|
|
62717
|
+
"merged": {
|
|
62718
|
+
"type": "array",
|
|
62719
|
+
"items": {
|
|
62720
|
+
"type": "object",
|
|
62721
|
+
"properties": {},
|
|
62722
|
+
"additionalProperties": true
|
|
62723
|
+
}
|
|
62724
|
+
},
|
|
62725
|
+
"archived": {
|
|
62726
|
+
"type": "array",
|
|
62727
|
+
"items": {
|
|
62728
|
+
"type": "object",
|
|
62729
|
+
"properties": {},
|
|
62730
|
+
"additionalProperties": true
|
|
62731
|
+
}
|
|
62732
|
+
},
|
|
62733
|
+
"decayed": {
|
|
62734
|
+
"type": "array",
|
|
62735
|
+
"items": {
|
|
62736
|
+
"type": "object",
|
|
62737
|
+
"properties": {},
|
|
62738
|
+
"additionalProperties": true
|
|
62739
|
+
}
|
|
62740
|
+
},
|
|
62741
|
+
"proposed": {
|
|
62742
|
+
"type": "array",
|
|
62743
|
+
"items": {
|
|
62744
|
+
"type": "object",
|
|
62745
|
+
"properties": {
|
|
62746
|
+
"kind": {
|
|
62747
|
+
"type": "string",
|
|
62748
|
+
"enum": [
|
|
62749
|
+
"contradiction",
|
|
62750
|
+
"cross-scope-duplicate",
|
|
62751
|
+
"stale-delete"
|
|
62752
|
+
]
|
|
62753
|
+
},
|
|
62754
|
+
"ids": {
|
|
62755
|
+
"type": "array",
|
|
62756
|
+
"items": {
|
|
62757
|
+
"type": "string"
|
|
62758
|
+
}
|
|
62759
|
+
},
|
|
62760
|
+
"route": {
|
|
62761
|
+
"type": "string"
|
|
62762
|
+
},
|
|
62763
|
+
"reason": {
|
|
62764
|
+
"type": "string"
|
|
62765
|
+
}
|
|
62766
|
+
},
|
|
62767
|
+
"required": [
|
|
62768
|
+
"kind",
|
|
62769
|
+
"ids",
|
|
62770
|
+
"route",
|
|
62771
|
+
"reason"
|
|
62772
|
+
],
|
|
62773
|
+
"additionalProperties": false
|
|
62774
|
+
}
|
|
62775
|
+
},
|
|
62776
|
+
"usageSignalAvailable": {
|
|
62777
|
+
"type": "boolean"
|
|
62778
|
+
},
|
|
62779
|
+
"note": {
|
|
62780
|
+
"type": "string"
|
|
62781
|
+
}
|
|
62782
|
+
},
|
|
62783
|
+
"required": [
|
|
62784
|
+
"runId",
|
|
62785
|
+
"ranAt",
|
|
62786
|
+
"trigger",
|
|
62787
|
+
"idle",
|
|
62788
|
+
"scanned",
|
|
62789
|
+
"merged",
|
|
62790
|
+
"archived",
|
|
62791
|
+
"decayed",
|
|
62792
|
+
"proposed",
|
|
62793
|
+
"usageSignalAvailable",
|
|
62794
|
+
"note"
|
|
62795
|
+
],
|
|
62796
|
+
"additionalProperties": false
|
|
62797
|
+
}
|
|
62798
|
+
},
|
|
62799
|
+
"pendingProposals": {
|
|
62800
|
+
"type": "array",
|
|
62801
|
+
"items": {
|
|
62802
|
+
"type": "object",
|
|
62803
|
+
"properties": {
|
|
62804
|
+
"kind": {
|
|
62805
|
+
"type": "string",
|
|
62806
|
+
"enum": [
|
|
62807
|
+
"contradiction",
|
|
62808
|
+
"cross-scope-duplicate",
|
|
62809
|
+
"stale-delete"
|
|
62810
|
+
]
|
|
62811
|
+
},
|
|
62812
|
+
"ids": {
|
|
62813
|
+
"type": "array",
|
|
62814
|
+
"items": {
|
|
62815
|
+
"type": "string"
|
|
62816
|
+
}
|
|
62817
|
+
},
|
|
62818
|
+
"route": {
|
|
62819
|
+
"type": "string"
|
|
62820
|
+
},
|
|
62821
|
+
"reason": {
|
|
62822
|
+
"type": "string"
|
|
62823
|
+
}
|
|
62824
|
+
},
|
|
62825
|
+
"required": [
|
|
62826
|
+
"kind",
|
|
62827
|
+
"ids",
|
|
62828
|
+
"route",
|
|
62829
|
+
"reason"
|
|
62830
|
+
],
|
|
62831
|
+
"additionalProperties": false
|
|
62832
|
+
}
|
|
62833
|
+
}
|
|
62834
|
+
},
|
|
62835
|
+
"required": [
|
|
62836
|
+
"receipts",
|
|
62837
|
+
"pendingProposals"
|
|
62838
|
+
],
|
|
62839
|
+
"additionalProperties": false
|
|
62840
|
+
}
|
|
62841
|
+
}
|
|
62842
|
+
}
|
|
62843
|
+
},
|
|
62844
|
+
"default": {
|
|
62845
|
+
"$ref": "#/components/responses/Error"
|
|
62846
|
+
}
|
|
62847
|
+
},
|
|
62848
|
+
"x-typed-client-io": true,
|
|
62849
|
+
"x-access": "authenticated",
|
|
62850
|
+
"x-transport": [
|
|
62851
|
+
"http",
|
|
62852
|
+
"ws"
|
|
62853
|
+
],
|
|
62854
|
+
"x-scopes": [
|
|
62855
|
+
"read:memory"
|
|
62856
|
+
]
|
|
62857
|
+
}
|
|
62858
|
+
},
|
|
62139
62859
|
"/api/memory/doctor": {
|
|
62140
62860
|
"get": {
|
|
62141
62861
|
"operationId": "memory.doctor",
|
|
@@ -78934,6 +79654,246 @@
|
|
|
78934
79654
|
}
|
|
78935
79655
|
}
|
|
78936
79656
|
},
|
|
79657
|
+
"/api/sessions/{sessionId}/queued-messages/{messageId}": {
|
|
79658
|
+
"delete": {
|
|
79659
|
+
"operationId": "sessions.queuedMessages.delete",
|
|
79660
|
+
"summary": "Delete a Queued Mid-Turn Message",
|
|
79661
|
+
"description": "Remove a message still waiting in the mid-turn queue so it is never delivered. A message already delivered to the model cannot be removed — deleting it is a 404 MESSAGE_NOT_QUEUED. Only the daemon's live local runtime session is controllable; any other session id is a 404 SESSION_NOT_LOCAL.",
|
|
79662
|
+
"tags": [
|
|
79663
|
+
"sessions"
|
|
79664
|
+
],
|
|
79665
|
+
"responses": {
|
|
79666
|
+
"200": {
|
|
79667
|
+
"description": "Success",
|
|
79668
|
+
"content": {
|
|
79669
|
+
"application/json": {
|
|
79670
|
+
"schema": {
|
|
79671
|
+
"type": "object",
|
|
79672
|
+
"properties": {
|
|
79673
|
+
"sessionId": {
|
|
79674
|
+
"type": "string"
|
|
79675
|
+
},
|
|
79676
|
+
"id": {
|
|
79677
|
+
"type": "string"
|
|
79678
|
+
},
|
|
79679
|
+
"deleted": {
|
|
79680
|
+
"type": "boolean"
|
|
79681
|
+
}
|
|
79682
|
+
},
|
|
79683
|
+
"required": [
|
|
79684
|
+
"sessionId",
|
|
79685
|
+
"id",
|
|
79686
|
+
"deleted"
|
|
79687
|
+
],
|
|
79688
|
+
"additionalProperties": false
|
|
79689
|
+
}
|
|
79690
|
+
}
|
|
79691
|
+
}
|
|
79692
|
+
},
|
|
79693
|
+
"default": {
|
|
79694
|
+
"$ref": "#/components/responses/Error"
|
|
79695
|
+
}
|
|
79696
|
+
},
|
|
79697
|
+
"x-typed-client-io": true,
|
|
79698
|
+
"x-access": "authenticated",
|
|
79699
|
+
"x-transport": [
|
|
79700
|
+
"http",
|
|
79701
|
+
"ws"
|
|
79702
|
+
],
|
|
79703
|
+
"x-scopes": [
|
|
79704
|
+
"write:sessions"
|
|
79705
|
+
],
|
|
79706
|
+
"parameters": [
|
|
79707
|
+
{
|
|
79708
|
+
"name": "sessionId",
|
|
79709
|
+
"in": "path",
|
|
79710
|
+
"required": true,
|
|
79711
|
+
"schema": {
|
|
79712
|
+
"type": "string"
|
|
79713
|
+
}
|
|
79714
|
+
},
|
|
79715
|
+
{
|
|
79716
|
+
"name": "messageId",
|
|
79717
|
+
"in": "path",
|
|
79718
|
+
"required": true,
|
|
79719
|
+
"schema": {
|
|
79720
|
+
"type": "string"
|
|
79721
|
+
}
|
|
79722
|
+
}
|
|
79723
|
+
]
|
|
79724
|
+
},
|
|
79725
|
+
"post": {
|
|
79726
|
+
"operationId": "sessions.queuedMessages.edit",
|
|
79727
|
+
"summary": "Edit a Queued Mid-Turn Message",
|
|
79728
|
+
"description": "Replace the text of a message still waiting in the mid-turn queue. A message already delivered to the model is immutable — editing it is a 404 MESSAGE_NOT_QUEUED. Editing replaces any multimodal content with the new plain text. Only the daemon's live local runtime session is controllable; any other session id is a 404 SESSION_NOT_LOCAL.",
|
|
79729
|
+
"tags": [
|
|
79730
|
+
"sessions"
|
|
79731
|
+
],
|
|
79732
|
+
"responses": {
|
|
79733
|
+
"200": {
|
|
79734
|
+
"description": "Success",
|
|
79735
|
+
"content": {
|
|
79736
|
+
"application/json": {
|
|
79737
|
+
"schema": {
|
|
79738
|
+
"type": "object",
|
|
79739
|
+
"properties": {
|
|
79740
|
+
"sessionId": {
|
|
79741
|
+
"type": "string"
|
|
79742
|
+
},
|
|
79743
|
+
"id": {
|
|
79744
|
+
"type": "string"
|
|
79745
|
+
},
|
|
79746
|
+
"text": {
|
|
79747
|
+
"type": "string"
|
|
79748
|
+
}
|
|
79749
|
+
},
|
|
79750
|
+
"required": [
|
|
79751
|
+
"sessionId",
|
|
79752
|
+
"id",
|
|
79753
|
+
"text"
|
|
79754
|
+
],
|
|
79755
|
+
"additionalProperties": false
|
|
79756
|
+
}
|
|
79757
|
+
}
|
|
79758
|
+
}
|
|
79759
|
+
},
|
|
79760
|
+
"default": {
|
|
79761
|
+
"$ref": "#/components/responses/Error"
|
|
79762
|
+
}
|
|
79763
|
+
},
|
|
79764
|
+
"x-typed-client-io": true,
|
|
79765
|
+
"x-access": "authenticated",
|
|
79766
|
+
"x-transport": [
|
|
79767
|
+
"http",
|
|
79768
|
+
"ws"
|
|
79769
|
+
],
|
|
79770
|
+
"x-scopes": [
|
|
79771
|
+
"write:sessions"
|
|
79772
|
+
],
|
|
79773
|
+
"parameters": [
|
|
79774
|
+
{
|
|
79775
|
+
"name": "sessionId",
|
|
79776
|
+
"in": "path",
|
|
79777
|
+
"required": true,
|
|
79778
|
+
"schema": {
|
|
79779
|
+
"type": "string"
|
|
79780
|
+
}
|
|
79781
|
+
},
|
|
79782
|
+
{
|
|
79783
|
+
"name": "messageId",
|
|
79784
|
+
"in": "path",
|
|
79785
|
+
"required": true,
|
|
79786
|
+
"schema": {
|
|
79787
|
+
"type": "string"
|
|
79788
|
+
}
|
|
79789
|
+
}
|
|
79790
|
+
],
|
|
79791
|
+
"requestBody": {
|
|
79792
|
+
"required": true,
|
|
79793
|
+
"content": {
|
|
79794
|
+
"application/json": {
|
|
79795
|
+
"schema": {
|
|
79796
|
+
"type": "object",
|
|
79797
|
+
"properties": {
|
|
79798
|
+
"sessionId": {
|
|
79799
|
+
"type": "string"
|
|
79800
|
+
},
|
|
79801
|
+
"messageId": {
|
|
79802
|
+
"type": "string"
|
|
79803
|
+
},
|
|
79804
|
+
"text": {
|
|
79805
|
+
"type": "string"
|
|
79806
|
+
}
|
|
79807
|
+
},
|
|
79808
|
+
"required": [
|
|
79809
|
+
"sessionId",
|
|
79810
|
+
"messageId",
|
|
79811
|
+
"text"
|
|
79812
|
+
],
|
|
79813
|
+
"additionalProperties": false
|
|
79814
|
+
}
|
|
79815
|
+
}
|
|
79816
|
+
}
|
|
79817
|
+
}
|
|
79818
|
+
}
|
|
79819
|
+
},
|
|
79820
|
+
"/api/sessions/{sessionId}/queued-messages": {
|
|
79821
|
+
"get": {
|
|
79822
|
+
"operationId": "sessions.queuedMessages.list",
|
|
79823
|
+
"summary": "List Queued Mid-Turn Messages",
|
|
79824
|
+
"description": "List the messages queued behind the current turn (submitted while the model was thinking), in delivery order. Queued messages remain editable and deletable until they are delivered; a delivered message no longer appears here. Only the daemon's live local runtime session is resolvable; any other session id is a 404 SESSION_NOT_LOCAL.",
|
|
79825
|
+
"tags": [
|
|
79826
|
+
"sessions"
|
|
79827
|
+
],
|
|
79828
|
+
"responses": {
|
|
79829
|
+
"200": {
|
|
79830
|
+
"description": "Success",
|
|
79831
|
+
"content": {
|
|
79832
|
+
"application/json": {
|
|
79833
|
+
"schema": {
|
|
79834
|
+
"type": "object",
|
|
79835
|
+
"properties": {
|
|
79836
|
+
"sessionId": {
|
|
79837
|
+
"type": "string"
|
|
79838
|
+
},
|
|
79839
|
+
"messages": {
|
|
79840
|
+
"type": "array",
|
|
79841
|
+
"items": {
|
|
79842
|
+
"type": "object",
|
|
79843
|
+
"properties": {
|
|
79844
|
+
"id": {
|
|
79845
|
+
"type": "string"
|
|
79846
|
+
},
|
|
79847
|
+
"queuedAt": {
|
|
79848
|
+
"type": "number"
|
|
79849
|
+
},
|
|
79850
|
+
"text": {
|
|
79851
|
+
"type": "string"
|
|
79852
|
+
}
|
|
79853
|
+
},
|
|
79854
|
+
"required": [
|
|
79855
|
+
"id",
|
|
79856
|
+
"queuedAt",
|
|
79857
|
+
"text"
|
|
79858
|
+
],
|
|
79859
|
+
"additionalProperties": false
|
|
79860
|
+
}
|
|
79861
|
+
}
|
|
79862
|
+
},
|
|
79863
|
+
"required": [
|
|
79864
|
+
"sessionId",
|
|
79865
|
+
"messages"
|
|
79866
|
+
],
|
|
79867
|
+
"additionalProperties": false
|
|
79868
|
+
}
|
|
79869
|
+
}
|
|
79870
|
+
}
|
|
79871
|
+
},
|
|
79872
|
+
"default": {
|
|
79873
|
+
"$ref": "#/components/responses/Error"
|
|
79874
|
+
}
|
|
79875
|
+
},
|
|
79876
|
+
"x-typed-client-io": true,
|
|
79877
|
+
"x-access": "authenticated",
|
|
79878
|
+
"x-transport": [
|
|
79879
|
+
"http",
|
|
79880
|
+
"ws"
|
|
79881
|
+
],
|
|
79882
|
+
"x-scopes": [
|
|
79883
|
+
"read:sessions"
|
|
79884
|
+
],
|
|
79885
|
+
"parameters": [
|
|
79886
|
+
{
|
|
79887
|
+
"name": "sessionId",
|
|
79888
|
+
"in": "path",
|
|
79889
|
+
"required": true,
|
|
79890
|
+
"schema": {
|
|
79891
|
+
"type": "string"
|
|
79892
|
+
}
|
|
79893
|
+
}
|
|
79894
|
+
]
|
|
79895
|
+
}
|
|
79896
|
+
},
|
|
78937
79897
|
"/api/sessions/register": {
|
|
78938
79898
|
"post": {
|
|
78939
79899
|
"operationId": "sessions.register",
|
|
@@ -79156,7 +80116,8 @@
|
|
|
79156
80116
|
"webui",
|
|
79157
80117
|
"companion-task",
|
|
79158
80118
|
"companion-chat",
|
|
79159
|
-
"automation"
|
|
80119
|
+
"automation",
|
|
80120
|
+
"acp"
|
|
79160
80121
|
]
|
|
79161
80122
|
},
|
|
79162
80123
|
"project": {
|
|
@@ -80073,6 +81034,98 @@
|
|
|
80073
81034
|
}
|
|
80074
81035
|
}
|
|
80075
81036
|
},
|
|
81037
|
+
"/api/sessions/{sessionId}/tool-calls/{callId}/cancel": {
|
|
81038
|
+
"post": {
|
|
81039
|
+
"operationId": "sessions.toolCalls.cancel",
|
|
81040
|
+
"summary": "Cancel One In-Flight Tool Call",
|
|
81041
|
+
"description": "Cancel a single running tool call by its callId, leaving the turn and any other running calls untouched. The cancelled call settles as a structured \"cancelled by user\" tool result the model adapts to in the same turn — distinct from a whole-turn interrupt. Only the daemon's live local runtime session is controllable; any other session id is a 404 SESSION_NOT_LOCAL, and an unknown or already-settled callId is a 404 TOOL_CALL_NOT_RUNNING.",
|
|
81042
|
+
"tags": [
|
|
81043
|
+
"sessions"
|
|
81044
|
+
],
|
|
81045
|
+
"responses": {
|
|
81046
|
+
"200": {
|
|
81047
|
+
"description": "Success",
|
|
81048
|
+
"content": {
|
|
81049
|
+
"application/json": {
|
|
81050
|
+
"schema": {
|
|
81051
|
+
"type": "object",
|
|
81052
|
+
"properties": {
|
|
81053
|
+
"sessionId": {
|
|
81054
|
+
"type": "string"
|
|
81055
|
+
},
|
|
81056
|
+
"callId": {
|
|
81057
|
+
"type": "string"
|
|
81058
|
+
},
|
|
81059
|
+
"cancelled": {
|
|
81060
|
+
"type": "boolean"
|
|
81061
|
+
}
|
|
81062
|
+
},
|
|
81063
|
+
"required": [
|
|
81064
|
+
"sessionId",
|
|
81065
|
+
"callId",
|
|
81066
|
+
"cancelled"
|
|
81067
|
+
],
|
|
81068
|
+
"additionalProperties": false
|
|
81069
|
+
}
|
|
81070
|
+
}
|
|
81071
|
+
}
|
|
81072
|
+
},
|
|
81073
|
+
"default": {
|
|
81074
|
+
"$ref": "#/components/responses/Error"
|
|
81075
|
+
}
|
|
81076
|
+
},
|
|
81077
|
+
"x-typed-client-io": true,
|
|
81078
|
+
"x-access": "authenticated",
|
|
81079
|
+
"x-transport": [
|
|
81080
|
+
"http",
|
|
81081
|
+
"ws"
|
|
81082
|
+
],
|
|
81083
|
+
"x-scopes": [
|
|
81084
|
+
"write:sessions"
|
|
81085
|
+
],
|
|
81086
|
+
"parameters": [
|
|
81087
|
+
{
|
|
81088
|
+
"name": "sessionId",
|
|
81089
|
+
"in": "path",
|
|
81090
|
+
"required": true,
|
|
81091
|
+
"schema": {
|
|
81092
|
+
"type": "string"
|
|
81093
|
+
}
|
|
81094
|
+
},
|
|
81095
|
+
{
|
|
81096
|
+
"name": "callId",
|
|
81097
|
+
"in": "path",
|
|
81098
|
+
"required": true,
|
|
81099
|
+
"schema": {
|
|
81100
|
+
"type": "string"
|
|
81101
|
+
}
|
|
81102
|
+
}
|
|
81103
|
+
],
|
|
81104
|
+
"requestBody": {
|
|
81105
|
+
"required": true,
|
|
81106
|
+
"content": {
|
|
81107
|
+
"application/json": {
|
|
81108
|
+
"schema": {
|
|
81109
|
+
"type": "object",
|
|
81110
|
+
"properties": {
|
|
81111
|
+
"sessionId": {
|
|
81112
|
+
"type": "string"
|
|
81113
|
+
},
|
|
81114
|
+
"callId": {
|
|
81115
|
+
"type": "string"
|
|
81116
|
+
}
|
|
81117
|
+
},
|
|
81118
|
+
"required": [
|
|
81119
|
+
"sessionId",
|
|
81120
|
+
"callId"
|
|
81121
|
+
],
|
|
81122
|
+
"additionalProperties": false
|
|
81123
|
+
}
|
|
81124
|
+
}
|
|
81125
|
+
}
|
|
81126
|
+
}
|
|
81127
|
+
}
|
|
81128
|
+
},
|
|
80076
81129
|
"/api/security-settings": {
|
|
80077
81130
|
"get": {
|
|
80078
81131
|
"operationId": "security.settings",
|
|
@@ -89085,6 +90138,8 @@
|
|
|
89085
90138
|
}
|
|
89086
90139
|
},
|
|
89087
90140
|
"x-invoke-only-methods": [
|
|
90141
|
+
"acp.agents.list",
|
|
90142
|
+
"acp.sessions.create",
|
|
89088
90143
|
"channels.test.send",
|
|
89089
90144
|
"checkpoints.create",
|
|
89090
90145
|
"checkpoints.diff",
|
|
@@ -89101,14 +90156,27 @@
|
|
|
89101
90156
|
"fleet.attempts.judge",
|
|
89102
90157
|
"fleet.attempts.list",
|
|
89103
90158
|
"fleet.attempts.pick",
|
|
90159
|
+
"fleet.conflicts.list",
|
|
90160
|
+
"fleet.conflicts.resolve",
|
|
89104
90161
|
"fleet.list",
|
|
90162
|
+
"fleet.observed.steer",
|
|
89105
90163
|
"fleet.snapshot",
|
|
89106
90164
|
"fleet.unarchive",
|
|
90165
|
+
"pairing.handoff.complete",
|
|
90166
|
+
"pairing.handoff.create",
|
|
90167
|
+
"pairing.posture.get",
|
|
90168
|
+
"pairing.tokens.create",
|
|
90169
|
+
"pairing.tokens.delete",
|
|
90170
|
+
"pairing.tokens.list",
|
|
90171
|
+
"pairing.tokens.migrate",
|
|
90172
|
+
"pairing.tokens.rename",
|
|
90173
|
+
"pairing.tokens.revokeShared",
|
|
89107
90174
|
"permissions.rules.delete",
|
|
89108
90175
|
"permissions.rules.list",
|
|
89109
90176
|
"push.subscriptions.create",
|
|
89110
90177
|
"push.subscriptions.delete",
|
|
89111
90178
|
"push.subscriptions.list",
|
|
90179
|
+
"push.subscriptions.reconcile",
|
|
89112
90180
|
"push.subscriptions.verify",
|
|
89113
90181
|
"push.vapid.get",
|
|
89114
90182
|
"quota.fanout.get",
|
|
@@ -89117,6 +90185,9 @@
|
|
|
89117
90185
|
"rewind.plan",
|
|
89118
90186
|
"sessions.changes.get",
|
|
89119
90187
|
"sessions.search",
|
|
90188
|
+
"tailscale.get",
|
|
90189
|
+
"tailscale.serve.run",
|
|
90190
|
+
"worktrees.discard",
|
|
89120
90191
|
"worktrees.setup.run"
|
|
89121
90192
|
]
|
|
89122
90193
|
}
|
|
@@ -89326,6 +90397,24 @@
|
|
|
89326
90397
|
"inputSchemaCoverage": "typed",
|
|
89327
90398
|
"outputSchemaCoverage": "typed"
|
|
89328
90399
|
},
|
|
90400
|
+
{
|
|
90401
|
+
"id": "acp.agents.list",
|
|
90402
|
+
"category": "acp",
|
|
90403
|
+
"access": "authenticated",
|
|
90404
|
+
"rest": null,
|
|
90405
|
+
"typedClientIo": true,
|
|
90406
|
+
"inputSchemaCoverage": "schema-less",
|
|
90407
|
+
"outputSchemaCoverage": "typed"
|
|
90408
|
+
},
|
|
90409
|
+
{
|
|
90410
|
+
"id": "acp.sessions.create",
|
|
90411
|
+
"category": "acp",
|
|
90412
|
+
"access": "authenticated",
|
|
90413
|
+
"rest": null,
|
|
90414
|
+
"typedClientIo": true,
|
|
90415
|
+
"inputSchemaCoverage": "typed",
|
|
90416
|
+
"outputSchemaCoverage": "typed"
|
|
90417
|
+
},
|
|
89329
90418
|
{
|
|
89330
90419
|
"id": "approvals.approve",
|
|
89331
90420
|
"category": "approvals",
|
|
@@ -90586,6 +91675,33 @@
|
|
|
90586
91675
|
"inputSchemaCoverage": "typed",
|
|
90587
91676
|
"outputSchemaCoverage": "typed"
|
|
90588
91677
|
},
|
|
91678
|
+
{
|
|
91679
|
+
"id": "fleet.conflicts.list",
|
|
91680
|
+
"category": "fleet",
|
|
91681
|
+
"access": "authenticated",
|
|
91682
|
+
"rest": null,
|
|
91683
|
+
"typedClientIo": true,
|
|
91684
|
+
"inputSchemaCoverage": "typed",
|
|
91685
|
+
"outputSchemaCoverage": "typed"
|
|
91686
|
+
},
|
|
91687
|
+
{
|
|
91688
|
+
"id": "fleet.conflicts.resolve",
|
|
91689
|
+
"category": "fleet",
|
|
91690
|
+
"access": "authenticated",
|
|
91691
|
+
"rest": null,
|
|
91692
|
+
"typedClientIo": true,
|
|
91693
|
+
"inputSchemaCoverage": "typed",
|
|
91694
|
+
"outputSchemaCoverage": "typed"
|
|
91695
|
+
},
|
|
91696
|
+
{
|
|
91697
|
+
"id": "fleet.graph.get",
|
|
91698
|
+
"category": "fleet",
|
|
91699
|
+
"access": "authenticated",
|
|
91700
|
+
"rest": "GET /api/fleet/workstreams/{workstreamId}/graph",
|
|
91701
|
+
"typedClientIo": true,
|
|
91702
|
+
"inputSchemaCoverage": "typed",
|
|
91703
|
+
"outputSchemaCoverage": "typed"
|
|
91704
|
+
},
|
|
90589
91705
|
{
|
|
90590
91706
|
"id": "fleet.list",
|
|
90591
91707
|
"category": "fleet",
|
|
@@ -90595,6 +91711,15 @@
|
|
|
90595
91711
|
"inputSchemaCoverage": "typed",
|
|
90596
91712
|
"outputSchemaCoverage": "typed"
|
|
90597
91713
|
},
|
|
91714
|
+
{
|
|
91715
|
+
"id": "fleet.observed.steer",
|
|
91716
|
+
"category": "fleet",
|
|
91717
|
+
"access": "authenticated",
|
|
91718
|
+
"rest": null,
|
|
91719
|
+
"typedClientIo": true,
|
|
91720
|
+
"inputSchemaCoverage": "typed",
|
|
91721
|
+
"outputSchemaCoverage": "typed"
|
|
91722
|
+
},
|
|
90598
91723
|
{
|
|
90599
91724
|
"id": "fleet.snapshot",
|
|
90600
91725
|
"category": "fleet",
|
|
@@ -90622,6 +91747,24 @@
|
|
|
90622
91747
|
"inputSchemaCoverage": "typed",
|
|
90623
91748
|
"outputSchemaCoverage": "typed"
|
|
90624
91749
|
},
|
|
91750
|
+
{
|
|
91751
|
+
"id": "power.keepAwake.set",
|
|
91752
|
+
"category": "health",
|
|
91753
|
+
"access": "authenticated",
|
|
91754
|
+
"rest": "POST /api/power/keep-awake",
|
|
91755
|
+
"typedClientIo": true,
|
|
91756
|
+
"inputSchemaCoverage": "typed",
|
|
91757
|
+
"outputSchemaCoverage": "typed"
|
|
91758
|
+
},
|
|
91759
|
+
{
|
|
91760
|
+
"id": "power.status.get",
|
|
91761
|
+
"category": "health",
|
|
91762
|
+
"access": "authenticated",
|
|
91763
|
+
"rest": "GET /api/power/status",
|
|
91764
|
+
"typedClientIo": true,
|
|
91765
|
+
"inputSchemaCoverage": "typed",
|
|
91766
|
+
"outputSchemaCoverage": "typed"
|
|
91767
|
+
},
|
|
90625
91768
|
{
|
|
90626
91769
|
"id": "intelligence.snapshot",
|
|
90627
91770
|
"category": "intelligence",
|
|
@@ -91576,6 +92719,15 @@
|
|
|
91576
92719
|
"inputSchemaCoverage": "typed",
|
|
91577
92720
|
"outputSchemaCoverage": "typed"
|
|
91578
92721
|
},
|
|
92722
|
+
{
|
|
92723
|
+
"id": "memory.consolidation.receipts",
|
|
92724
|
+
"category": "memory",
|
|
92725
|
+
"access": "authenticated",
|
|
92726
|
+
"rest": "GET /api/memory/consolidation/receipts",
|
|
92727
|
+
"typedClientIo": true,
|
|
92728
|
+
"inputSchemaCoverage": "typed",
|
|
92729
|
+
"outputSchemaCoverage": "typed"
|
|
92730
|
+
},
|
|
91579
92731
|
{
|
|
91580
92732
|
"id": "memory.doctor",
|
|
91581
92733
|
"category": "memory",
|
|
@@ -91747,6 +92899,87 @@
|
|
|
91747
92899
|
"inputSchemaCoverage": "typed",
|
|
91748
92900
|
"outputSchemaCoverage": "typed"
|
|
91749
92901
|
},
|
|
92902
|
+
{
|
|
92903
|
+
"id": "pairing.handoff.complete",
|
|
92904
|
+
"category": "pairing",
|
|
92905
|
+
"access": "authenticated",
|
|
92906
|
+
"rest": null,
|
|
92907
|
+
"typedClientIo": true,
|
|
92908
|
+
"inputSchemaCoverage": "typed",
|
|
92909
|
+
"outputSchemaCoverage": "typed"
|
|
92910
|
+
},
|
|
92911
|
+
{
|
|
92912
|
+
"id": "pairing.handoff.create",
|
|
92913
|
+
"category": "pairing",
|
|
92914
|
+
"access": "authenticated",
|
|
92915
|
+
"rest": null,
|
|
92916
|
+
"typedClientIo": true,
|
|
92917
|
+
"inputSchemaCoverage": "typed",
|
|
92918
|
+
"outputSchemaCoverage": "typed"
|
|
92919
|
+
},
|
|
92920
|
+
{
|
|
92921
|
+
"id": "pairing.posture.get",
|
|
92922
|
+
"category": "pairing",
|
|
92923
|
+
"access": "authenticated",
|
|
92924
|
+
"rest": null,
|
|
92925
|
+
"typedClientIo": true,
|
|
92926
|
+
"inputSchemaCoverage": "typed",
|
|
92927
|
+
"outputSchemaCoverage": "typed"
|
|
92928
|
+
},
|
|
92929
|
+
{
|
|
92930
|
+
"id": "pairing.tokens.create",
|
|
92931
|
+
"category": "pairing",
|
|
92932
|
+
"access": "authenticated",
|
|
92933
|
+
"rest": null,
|
|
92934
|
+
"typedClientIo": true,
|
|
92935
|
+
"inputSchemaCoverage": "typed",
|
|
92936
|
+
"outputSchemaCoverage": "typed"
|
|
92937
|
+
},
|
|
92938
|
+
{
|
|
92939
|
+
"id": "pairing.tokens.delete",
|
|
92940
|
+
"category": "pairing",
|
|
92941
|
+
"access": "authenticated",
|
|
92942
|
+
"rest": null,
|
|
92943
|
+
"typedClientIo": true,
|
|
92944
|
+
"inputSchemaCoverage": "typed",
|
|
92945
|
+
"outputSchemaCoverage": "typed"
|
|
92946
|
+
},
|
|
92947
|
+
{
|
|
92948
|
+
"id": "pairing.tokens.list",
|
|
92949
|
+
"category": "pairing",
|
|
92950
|
+
"access": "authenticated",
|
|
92951
|
+
"rest": null,
|
|
92952
|
+
"typedClientIo": true,
|
|
92953
|
+
"inputSchemaCoverage": "schema-less",
|
|
92954
|
+
"outputSchemaCoverage": "typed"
|
|
92955
|
+
},
|
|
92956
|
+
{
|
|
92957
|
+
"id": "pairing.tokens.migrate",
|
|
92958
|
+
"category": "pairing",
|
|
92959
|
+
"access": "authenticated",
|
|
92960
|
+
"rest": null,
|
|
92961
|
+
"typedClientIo": true,
|
|
92962
|
+
"inputSchemaCoverage": "typed",
|
|
92963
|
+
"outputSchemaCoverage": "typed"
|
|
92964
|
+
},
|
|
92965
|
+
{
|
|
92966
|
+
"id": "pairing.tokens.rename",
|
|
92967
|
+
"category": "pairing",
|
|
92968
|
+
"access": "authenticated",
|
|
92969
|
+
"rest": null,
|
|
92970
|
+
"typedClientIo": true,
|
|
92971
|
+
"inputSchemaCoverage": "typed",
|
|
92972
|
+
"outputSchemaCoverage": "typed"
|
|
92973
|
+
},
|
|
92974
|
+
{
|
|
92975
|
+
"id": "pairing.tokens.revokeShared",
|
|
92976
|
+
"category": "pairing",
|
|
92977
|
+
"access": "authenticated",
|
|
92978
|
+
"rest": null,
|
|
92979
|
+
"typedClientIo": true,
|
|
92980
|
+
"inputSchemaCoverage": "schema-less",
|
|
92981
|
+
"outputSchemaCoverage": "typed"
|
|
92982
|
+
},
|
|
91750
92983
|
{
|
|
91751
92984
|
"id": "panels.list",
|
|
91752
92985
|
"category": "panels",
|
|
@@ -91891,6 +93124,15 @@
|
|
|
91891
93124
|
"inputSchemaCoverage": "schema-less",
|
|
91892
93125
|
"outputSchemaCoverage": "typed"
|
|
91893
93126
|
},
|
|
93127
|
+
{
|
|
93128
|
+
"id": "push.subscriptions.reconcile",
|
|
93129
|
+
"category": "push",
|
|
93130
|
+
"access": "authenticated",
|
|
93131
|
+
"rest": null,
|
|
93132
|
+
"typedClientIo": true,
|
|
93133
|
+
"inputSchemaCoverage": "typed",
|
|
93134
|
+
"outputSchemaCoverage": "typed"
|
|
93135
|
+
},
|
|
91894
93136
|
{
|
|
91895
93137
|
"id": "push.subscriptions.verify",
|
|
91896
93138
|
"category": "push",
|
|
@@ -92053,6 +93295,24 @@
|
|
|
92053
93295
|
"inputSchemaCoverage": "typed",
|
|
92054
93296
|
"outputSchemaCoverage": "typed"
|
|
92055
93297
|
},
|
|
93298
|
+
{
|
|
93299
|
+
"id": "tailscale.get",
|
|
93300
|
+
"category": "remote-access",
|
|
93301
|
+
"access": "authenticated",
|
|
93302
|
+
"rest": null,
|
|
93303
|
+
"typedClientIo": true,
|
|
93304
|
+
"inputSchemaCoverage": "schema-less",
|
|
93305
|
+
"outputSchemaCoverage": "typed"
|
|
93306
|
+
},
|
|
93307
|
+
{
|
|
93308
|
+
"id": "tailscale.serve.run",
|
|
93309
|
+
"category": "remote-access",
|
|
93310
|
+
"access": "authenticated",
|
|
93311
|
+
"rest": null,
|
|
93312
|
+
"typedClientIo": true,
|
|
93313
|
+
"inputSchemaCoverage": "schema-less",
|
|
93314
|
+
"outputSchemaCoverage": "typed"
|
|
93315
|
+
},
|
|
92056
93316
|
{
|
|
92057
93317
|
"id": "review.snapshot",
|
|
92058
93318
|
"category": "review",
|
|
@@ -92359,6 +93619,33 @@
|
|
|
92359
93619
|
"inputSchemaCoverage": "typed",
|
|
92360
93620
|
"outputSchemaCoverage": "typed"
|
|
92361
93621
|
},
|
|
93622
|
+
{
|
|
93623
|
+
"id": "sessions.queuedMessages.delete",
|
|
93624
|
+
"category": "sessions",
|
|
93625
|
+
"access": "authenticated",
|
|
93626
|
+
"rest": "DELETE /api/sessions/{sessionId}/queued-messages/{messageId}",
|
|
93627
|
+
"typedClientIo": true,
|
|
93628
|
+
"inputSchemaCoverage": "typed",
|
|
93629
|
+
"outputSchemaCoverage": "typed"
|
|
93630
|
+
},
|
|
93631
|
+
{
|
|
93632
|
+
"id": "sessions.queuedMessages.edit",
|
|
93633
|
+
"category": "sessions",
|
|
93634
|
+
"access": "authenticated",
|
|
93635
|
+
"rest": "POST /api/sessions/{sessionId}/queued-messages/{messageId}",
|
|
93636
|
+
"typedClientIo": true,
|
|
93637
|
+
"inputSchemaCoverage": "typed",
|
|
93638
|
+
"outputSchemaCoverage": "typed"
|
|
93639
|
+
},
|
|
93640
|
+
{
|
|
93641
|
+
"id": "sessions.queuedMessages.list",
|
|
93642
|
+
"category": "sessions",
|
|
93643
|
+
"access": "authenticated",
|
|
93644
|
+
"rest": "GET /api/sessions/{sessionId}/queued-messages",
|
|
93645
|
+
"typedClientIo": true,
|
|
93646
|
+
"inputSchemaCoverage": "typed",
|
|
93647
|
+
"outputSchemaCoverage": "typed"
|
|
93648
|
+
},
|
|
92362
93649
|
{
|
|
92363
93650
|
"id": "sessions.register",
|
|
92364
93651
|
"category": "sessions",
|
|
@@ -92395,6 +93682,15 @@
|
|
|
92395
93682
|
"inputSchemaCoverage": "typed",
|
|
92396
93683
|
"outputSchemaCoverage": "typed"
|
|
92397
93684
|
},
|
|
93685
|
+
{
|
|
93686
|
+
"id": "sessions.toolCalls.cancel",
|
|
93687
|
+
"category": "sessions",
|
|
93688
|
+
"access": "authenticated",
|
|
93689
|
+
"rest": "POST /api/sessions/{sessionId}/tool-calls/{callId}/cancel",
|
|
93690
|
+
"typedClientIo": true,
|
|
93691
|
+
"inputSchemaCoverage": "typed",
|
|
93692
|
+
"outputSchemaCoverage": "typed"
|
|
93693
|
+
},
|
|
92398
93694
|
{
|
|
92399
93695
|
"id": "security.settings",
|
|
92400
93696
|
"category": "settings",
|
|
@@ -92773,6 +94069,15 @@
|
|
|
92773
94069
|
"inputSchemaCoverage": "typed",
|
|
92774
94070
|
"outputSchemaCoverage": "typed"
|
|
92775
94071
|
},
|
|
94072
|
+
{
|
|
94073
|
+
"id": "worktrees.discard",
|
|
94074
|
+
"category": "worktrees",
|
|
94075
|
+
"access": "authenticated",
|
|
94076
|
+
"rest": null,
|
|
94077
|
+
"typedClientIo": true,
|
|
94078
|
+
"inputSchemaCoverage": "typed",
|
|
94079
|
+
"outputSchemaCoverage": "typed"
|
|
94080
|
+
},
|
|
92776
94081
|
{
|
|
92777
94082
|
"id": "worktrees.setup.run",
|
|
92778
94083
|
"category": "worktrees",
|