@pellux/goodvibes-contracts 1.8.0 → 1.10.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 +3856 -467
- package/artifacts/operator-openapi.json +1897 -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 +689 -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 +792 -3
- package/dist/generated/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +3856 -467
- 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 +29 -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 +869 -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.10.0",
|
|
6
|
+
"description": "Generated from the operator contract (packages/contracts/artifacts/operator-contract.json). 415 cataloged methods: 364 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,918 @@
|
|
|
30248
30433
|
]
|
|
30249
30434
|
}
|
|
30250
30435
|
},
|
|
30436
|
+
"/api/ops/memory": {
|
|
30437
|
+
"get": {
|
|
30438
|
+
"operationId": "ops.memory.get",
|
|
30439
|
+
"summary": "Get Memory Governance State",
|
|
30440
|
+
"description": "The MemoryGovernor snapshot: the current memory-pressure tier and budget, resident set size and heap, per-cache footprints the governor can shrink, which deferrable background jobs are paused, and the leak-tripwire state. Read-only observability so operators can see the daemon shedding memory before it approaches OOM.",
|
|
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
|
+
"tier": {
|
|
30453
|
+
"type": "string",
|
|
30454
|
+
"enum": [
|
|
30455
|
+
"normal",
|
|
30456
|
+
"elevated",
|
|
30457
|
+
"high",
|
|
30458
|
+
"critical"
|
|
30459
|
+
]
|
|
30460
|
+
},
|
|
30461
|
+
"budgetMb": {
|
|
30462
|
+
"type": "number"
|
|
30463
|
+
},
|
|
30464
|
+
"rssMb": {
|
|
30465
|
+
"type": "number"
|
|
30466
|
+
},
|
|
30467
|
+
"heapUsedMb": {
|
|
30468
|
+
"type": "number"
|
|
30469
|
+
},
|
|
30470
|
+
"heapTotalMb": {
|
|
30471
|
+
"type": "number"
|
|
30472
|
+
},
|
|
30473
|
+
"usedPct": {
|
|
30474
|
+
"type": "number"
|
|
30475
|
+
},
|
|
30476
|
+
"refusingExpensiveWork": {
|
|
30477
|
+
"type": "boolean"
|
|
30478
|
+
},
|
|
30479
|
+
"caches": {
|
|
30480
|
+
"type": "array",
|
|
30481
|
+
"items": {
|
|
30482
|
+
"type": "object",
|
|
30483
|
+
"properties": {
|
|
30484
|
+
"id": {
|
|
30485
|
+
"type": "string"
|
|
30486
|
+
},
|
|
30487
|
+
"name": {
|
|
30488
|
+
"type": "string"
|
|
30489
|
+
},
|
|
30490
|
+
"entries": {
|
|
30491
|
+
"type": "number"
|
|
30492
|
+
},
|
|
30493
|
+
"estimatedBytes": {
|
|
30494
|
+
"type": "number"
|
|
30495
|
+
}
|
|
30496
|
+
},
|
|
30497
|
+
"required": [
|
|
30498
|
+
"id",
|
|
30499
|
+
"name",
|
|
30500
|
+
"entries"
|
|
30501
|
+
],
|
|
30502
|
+
"additionalProperties": false
|
|
30503
|
+
}
|
|
30504
|
+
},
|
|
30505
|
+
"pausedJobs": {
|
|
30506
|
+
"type": "array",
|
|
30507
|
+
"items": {
|
|
30508
|
+
"type": "string"
|
|
30509
|
+
}
|
|
30510
|
+
},
|
|
30511
|
+
"tripwire": {
|
|
30512
|
+
"type": "object",
|
|
30513
|
+
"properties": {
|
|
30514
|
+
"armed": {
|
|
30515
|
+
"type": "boolean"
|
|
30516
|
+
},
|
|
30517
|
+
"sustainedSec": {
|
|
30518
|
+
"type": "number"
|
|
30519
|
+
},
|
|
30520
|
+
"rateMbPerSec": {
|
|
30521
|
+
"type": "number"
|
|
30522
|
+
}
|
|
30523
|
+
},
|
|
30524
|
+
"required": [
|
|
30525
|
+
"armed",
|
|
30526
|
+
"sustainedSec",
|
|
30527
|
+
"rateMbPerSec"
|
|
30528
|
+
],
|
|
30529
|
+
"additionalProperties": false
|
|
30530
|
+
},
|
|
30531
|
+
"thresholds": {
|
|
30532
|
+
"type": "object",
|
|
30533
|
+
"properties": {
|
|
30534
|
+
"elevatedPct": {
|
|
30535
|
+
"type": "number"
|
|
30536
|
+
},
|
|
30537
|
+
"highPct": {
|
|
30538
|
+
"type": "number"
|
|
30539
|
+
},
|
|
30540
|
+
"criticalPct": {
|
|
30541
|
+
"type": "number"
|
|
30542
|
+
}
|
|
30543
|
+
},
|
|
30544
|
+
"required": [
|
|
30545
|
+
"elevatedPct",
|
|
30546
|
+
"highPct",
|
|
30547
|
+
"criticalPct"
|
|
30548
|
+
],
|
|
30549
|
+
"additionalProperties": false
|
|
30550
|
+
}
|
|
30551
|
+
},
|
|
30552
|
+
"required": [
|
|
30553
|
+
"tier",
|
|
30554
|
+
"budgetMb",
|
|
30555
|
+
"rssMb",
|
|
30556
|
+
"heapUsedMb",
|
|
30557
|
+
"usedPct",
|
|
30558
|
+
"refusingExpensiveWork",
|
|
30559
|
+
"caches",
|
|
30560
|
+
"pausedJobs",
|
|
30561
|
+
"tripwire",
|
|
30562
|
+
"thresholds"
|
|
30563
|
+
],
|
|
30564
|
+
"additionalProperties": false
|
|
30565
|
+
}
|
|
30566
|
+
}
|
|
30567
|
+
}
|
|
30568
|
+
},
|
|
30569
|
+
"default": {
|
|
30570
|
+
"$ref": "#/components/responses/Error"
|
|
30571
|
+
}
|
|
30572
|
+
},
|
|
30573
|
+
"x-typed-client-io": true,
|
|
30574
|
+
"x-access": "authenticated",
|
|
30575
|
+
"x-transport": [
|
|
30576
|
+
"http",
|
|
30577
|
+
"ws"
|
|
30578
|
+
],
|
|
30579
|
+
"x-scopes": [
|
|
30580
|
+
"read:health"
|
|
30581
|
+
]
|
|
30582
|
+
}
|
|
30583
|
+
},
|
|
30584
|
+
"/api/power/keep-awake": {
|
|
30585
|
+
"post": {
|
|
30586
|
+
"operationId": "power.keepAwake.set",
|
|
30587
|
+
"summary": "Set the Owner Keep-Awake Toggle",
|
|
30588
|
+
"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.",
|
|
30589
|
+
"tags": [
|
|
30590
|
+
"health"
|
|
30591
|
+
],
|
|
30592
|
+
"responses": {
|
|
30593
|
+
"200": {
|
|
30594
|
+
"description": "Success",
|
|
30595
|
+
"content": {
|
|
30596
|
+
"application/json": {
|
|
30597
|
+
"schema": {
|
|
30598
|
+
"type": "object",
|
|
30599
|
+
"properties": {
|
|
30600
|
+
"platform": {
|
|
30601
|
+
"type": "string"
|
|
30602
|
+
},
|
|
30603
|
+
"work": {
|
|
30604
|
+
"type": "object",
|
|
30605
|
+
"properties": {
|
|
30606
|
+
"held": {
|
|
30607
|
+
"type": "boolean"
|
|
30608
|
+
},
|
|
30609
|
+
"grantedClasses": {
|
|
30610
|
+
"type": "array",
|
|
30611
|
+
"items": {
|
|
30612
|
+
"type": "string",
|
|
30613
|
+
"enum": [
|
|
30614
|
+
"handle-lid-switch",
|
|
30615
|
+
"idle",
|
|
30616
|
+
"sleep"
|
|
30617
|
+
]
|
|
30618
|
+
}
|
|
30619
|
+
},
|
|
30620
|
+
"deniedClasses": {
|
|
30621
|
+
"type": "array",
|
|
30622
|
+
"items": {
|
|
30623
|
+
"type": "string",
|
|
30624
|
+
"enum": [
|
|
30625
|
+
"handle-lid-switch",
|
|
30626
|
+
"idle",
|
|
30627
|
+
"sleep"
|
|
30628
|
+
]
|
|
30629
|
+
}
|
|
30630
|
+
},
|
|
30631
|
+
"reasons": {
|
|
30632
|
+
"type": "array",
|
|
30633
|
+
"items": {
|
|
30634
|
+
"type": "string"
|
|
30635
|
+
}
|
|
30636
|
+
},
|
|
30637
|
+
"heldSince": {
|
|
30638
|
+
"anyOf": [
|
|
30639
|
+
{
|
|
30640
|
+
"type": "number"
|
|
30641
|
+
},
|
|
30642
|
+
{
|
|
30643
|
+
"type": "null"
|
|
30644
|
+
}
|
|
30645
|
+
]
|
|
30646
|
+
},
|
|
30647
|
+
"capMinutes": {
|
|
30648
|
+
"type": "number"
|
|
30649
|
+
},
|
|
30650
|
+
"capExpiresAt": {
|
|
30651
|
+
"anyOf": [
|
|
30652
|
+
{
|
|
30653
|
+
"type": "number"
|
|
30654
|
+
},
|
|
30655
|
+
{
|
|
30656
|
+
"type": "null"
|
|
30657
|
+
}
|
|
30658
|
+
]
|
|
30659
|
+
},
|
|
30660
|
+
"capExpired": {
|
|
30661
|
+
"type": "boolean"
|
|
30662
|
+
}
|
|
30663
|
+
},
|
|
30664
|
+
"required": [
|
|
30665
|
+
"held",
|
|
30666
|
+
"grantedClasses",
|
|
30667
|
+
"deniedClasses",
|
|
30668
|
+
"reasons",
|
|
30669
|
+
"heldSince",
|
|
30670
|
+
"capMinutes",
|
|
30671
|
+
"capExpiresAt",
|
|
30672
|
+
"capExpired"
|
|
30673
|
+
],
|
|
30674
|
+
"additionalProperties": false
|
|
30675
|
+
},
|
|
30676
|
+
"keepAwake": {
|
|
30677
|
+
"type": "object",
|
|
30678
|
+
"properties": {
|
|
30679
|
+
"enabled": {
|
|
30680
|
+
"type": "boolean"
|
|
30681
|
+
},
|
|
30682
|
+
"held": {
|
|
30683
|
+
"type": "boolean"
|
|
30684
|
+
},
|
|
30685
|
+
"grantedClasses": {
|
|
30686
|
+
"type": "array",
|
|
30687
|
+
"items": {
|
|
30688
|
+
"type": "string",
|
|
30689
|
+
"enum": [
|
|
30690
|
+
"handle-lid-switch",
|
|
30691
|
+
"idle",
|
|
30692
|
+
"sleep"
|
|
30693
|
+
]
|
|
30694
|
+
}
|
|
30695
|
+
},
|
|
30696
|
+
"deniedClasses": {
|
|
30697
|
+
"type": "array",
|
|
30698
|
+
"items": {
|
|
30699
|
+
"type": "string",
|
|
30700
|
+
"enum": [
|
|
30701
|
+
"handle-lid-switch",
|
|
30702
|
+
"idle",
|
|
30703
|
+
"sleep"
|
|
30704
|
+
]
|
|
30705
|
+
}
|
|
30706
|
+
},
|
|
30707
|
+
"note": {
|
|
30708
|
+
"anyOf": [
|
|
30709
|
+
{
|
|
30710
|
+
"type": "string"
|
|
30711
|
+
},
|
|
30712
|
+
{
|
|
30713
|
+
"type": "null"
|
|
30714
|
+
}
|
|
30715
|
+
]
|
|
30716
|
+
}
|
|
30717
|
+
},
|
|
30718
|
+
"required": [
|
|
30719
|
+
"enabled",
|
|
30720
|
+
"held",
|
|
30721
|
+
"grantedClasses",
|
|
30722
|
+
"deniedClasses",
|
|
30723
|
+
"note"
|
|
30724
|
+
],
|
|
30725
|
+
"additionalProperties": false
|
|
30726
|
+
}
|
|
30727
|
+
},
|
|
30728
|
+
"required": [
|
|
30729
|
+
"platform",
|
|
30730
|
+
"work",
|
|
30731
|
+
"keepAwake"
|
|
30732
|
+
],
|
|
30733
|
+
"additionalProperties": false
|
|
30734
|
+
}
|
|
30735
|
+
}
|
|
30736
|
+
}
|
|
30737
|
+
},
|
|
30738
|
+
"default": {
|
|
30739
|
+
"$ref": "#/components/responses/Error"
|
|
30740
|
+
}
|
|
30741
|
+
},
|
|
30742
|
+
"x-typed-client-io": true,
|
|
30743
|
+
"x-access": "authenticated",
|
|
30744
|
+
"x-transport": [
|
|
30745
|
+
"http",
|
|
30746
|
+
"ws"
|
|
30747
|
+
],
|
|
30748
|
+
"x-scopes": [
|
|
30749
|
+
"write:config"
|
|
30750
|
+
],
|
|
30751
|
+
"requestBody": {
|
|
30752
|
+
"required": true,
|
|
30753
|
+
"content": {
|
|
30754
|
+
"application/json": {
|
|
30755
|
+
"schema": {
|
|
30756
|
+
"type": "object",
|
|
30757
|
+
"properties": {
|
|
30758
|
+
"enabled": {
|
|
30759
|
+
"type": "boolean"
|
|
30760
|
+
}
|
|
30761
|
+
},
|
|
30762
|
+
"required": [
|
|
30763
|
+
"enabled"
|
|
30764
|
+
],
|
|
30765
|
+
"additionalProperties": false
|
|
30766
|
+
}
|
|
30767
|
+
}
|
|
30768
|
+
}
|
|
30769
|
+
}
|
|
30770
|
+
}
|
|
30771
|
+
},
|
|
30772
|
+
"/api/power/status": {
|
|
30773
|
+
"get": {
|
|
30774
|
+
"operationId": "power.status.get",
|
|
30775
|
+
"summary": "Get Sleep-Ownership State",
|
|
30776
|
+
"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.",
|
|
30777
|
+
"tags": [
|
|
30778
|
+
"health"
|
|
30779
|
+
],
|
|
30780
|
+
"responses": {
|
|
30781
|
+
"200": {
|
|
30782
|
+
"description": "Success",
|
|
30783
|
+
"content": {
|
|
30784
|
+
"application/json": {
|
|
30785
|
+
"schema": {
|
|
30786
|
+
"type": "object",
|
|
30787
|
+
"properties": {
|
|
30788
|
+
"platform": {
|
|
30789
|
+
"type": "string"
|
|
30790
|
+
},
|
|
30791
|
+
"work": {
|
|
30792
|
+
"type": "object",
|
|
30793
|
+
"properties": {
|
|
30794
|
+
"held": {
|
|
30795
|
+
"type": "boolean"
|
|
30796
|
+
},
|
|
30797
|
+
"grantedClasses": {
|
|
30798
|
+
"type": "array",
|
|
30799
|
+
"items": {
|
|
30800
|
+
"type": "string",
|
|
30801
|
+
"enum": [
|
|
30802
|
+
"handle-lid-switch",
|
|
30803
|
+
"idle",
|
|
30804
|
+
"sleep"
|
|
30805
|
+
]
|
|
30806
|
+
}
|
|
30807
|
+
},
|
|
30808
|
+
"deniedClasses": {
|
|
30809
|
+
"type": "array",
|
|
30810
|
+
"items": {
|
|
30811
|
+
"type": "string",
|
|
30812
|
+
"enum": [
|
|
30813
|
+
"handle-lid-switch",
|
|
30814
|
+
"idle",
|
|
30815
|
+
"sleep"
|
|
30816
|
+
]
|
|
30817
|
+
}
|
|
30818
|
+
},
|
|
30819
|
+
"reasons": {
|
|
30820
|
+
"type": "array",
|
|
30821
|
+
"items": {
|
|
30822
|
+
"type": "string"
|
|
30823
|
+
}
|
|
30824
|
+
},
|
|
30825
|
+
"heldSince": {
|
|
30826
|
+
"anyOf": [
|
|
30827
|
+
{
|
|
30828
|
+
"type": "number"
|
|
30829
|
+
},
|
|
30830
|
+
{
|
|
30831
|
+
"type": "null"
|
|
30832
|
+
}
|
|
30833
|
+
]
|
|
30834
|
+
},
|
|
30835
|
+
"capMinutes": {
|
|
30836
|
+
"type": "number"
|
|
30837
|
+
},
|
|
30838
|
+
"capExpiresAt": {
|
|
30839
|
+
"anyOf": [
|
|
30840
|
+
{
|
|
30841
|
+
"type": "number"
|
|
30842
|
+
},
|
|
30843
|
+
{
|
|
30844
|
+
"type": "null"
|
|
30845
|
+
}
|
|
30846
|
+
]
|
|
30847
|
+
},
|
|
30848
|
+
"capExpired": {
|
|
30849
|
+
"type": "boolean"
|
|
30850
|
+
}
|
|
30851
|
+
},
|
|
30852
|
+
"required": [
|
|
30853
|
+
"held",
|
|
30854
|
+
"grantedClasses",
|
|
30855
|
+
"deniedClasses",
|
|
30856
|
+
"reasons",
|
|
30857
|
+
"heldSince",
|
|
30858
|
+
"capMinutes",
|
|
30859
|
+
"capExpiresAt",
|
|
30860
|
+
"capExpired"
|
|
30861
|
+
],
|
|
30862
|
+
"additionalProperties": false
|
|
30863
|
+
},
|
|
30864
|
+
"keepAwake": {
|
|
30865
|
+
"type": "object",
|
|
30866
|
+
"properties": {
|
|
30867
|
+
"enabled": {
|
|
30868
|
+
"type": "boolean"
|
|
30869
|
+
},
|
|
30870
|
+
"held": {
|
|
30871
|
+
"type": "boolean"
|
|
30872
|
+
},
|
|
30873
|
+
"grantedClasses": {
|
|
30874
|
+
"type": "array",
|
|
30875
|
+
"items": {
|
|
30876
|
+
"type": "string",
|
|
30877
|
+
"enum": [
|
|
30878
|
+
"handle-lid-switch",
|
|
30879
|
+
"idle",
|
|
30880
|
+
"sleep"
|
|
30881
|
+
]
|
|
30882
|
+
}
|
|
30883
|
+
},
|
|
30884
|
+
"deniedClasses": {
|
|
30885
|
+
"type": "array",
|
|
30886
|
+
"items": {
|
|
30887
|
+
"type": "string",
|
|
30888
|
+
"enum": [
|
|
30889
|
+
"handle-lid-switch",
|
|
30890
|
+
"idle",
|
|
30891
|
+
"sleep"
|
|
30892
|
+
]
|
|
30893
|
+
}
|
|
30894
|
+
},
|
|
30895
|
+
"note": {
|
|
30896
|
+
"anyOf": [
|
|
30897
|
+
{
|
|
30898
|
+
"type": "string"
|
|
30899
|
+
},
|
|
30900
|
+
{
|
|
30901
|
+
"type": "null"
|
|
30902
|
+
}
|
|
30903
|
+
]
|
|
30904
|
+
}
|
|
30905
|
+
},
|
|
30906
|
+
"required": [
|
|
30907
|
+
"enabled",
|
|
30908
|
+
"held",
|
|
30909
|
+
"grantedClasses",
|
|
30910
|
+
"deniedClasses",
|
|
30911
|
+
"note"
|
|
30912
|
+
],
|
|
30913
|
+
"additionalProperties": false
|
|
30914
|
+
}
|
|
30915
|
+
},
|
|
30916
|
+
"required": [
|
|
30917
|
+
"platform",
|
|
30918
|
+
"work",
|
|
30919
|
+
"keepAwake"
|
|
30920
|
+
],
|
|
30921
|
+
"additionalProperties": false
|
|
30922
|
+
}
|
|
30923
|
+
}
|
|
30924
|
+
}
|
|
30925
|
+
},
|
|
30926
|
+
"default": {
|
|
30927
|
+
"$ref": "#/components/responses/Error"
|
|
30928
|
+
}
|
|
30929
|
+
},
|
|
30930
|
+
"x-typed-client-io": true,
|
|
30931
|
+
"x-access": "authenticated",
|
|
30932
|
+
"x-transport": [
|
|
30933
|
+
"http",
|
|
30934
|
+
"ws"
|
|
30935
|
+
],
|
|
30936
|
+
"x-scopes": [
|
|
30937
|
+
"read:health"
|
|
30938
|
+
]
|
|
30939
|
+
}
|
|
30940
|
+
},
|
|
30941
|
+
"/api/voice/local/install": {
|
|
30942
|
+
"post": {
|
|
30943
|
+
"operationId": "voice.local.install",
|
|
30944
|
+
"summary": "Install the Managed Local-Voice Runtime",
|
|
30945
|
+
"description": "One-act setup: download + checksum-verify the piper TTS engine, a default voice, and (where a pinned goodvibes-built bundle exists) the whisper.cpp STT engine with its default model into the goodvibes-managed directory, then point the voice.local.* config keys at the managed install — never overwriting a key you already set to a custom value (skipped keys are reported). After this, local TTS works with zero further configuration. Downloads only when you ask; a failed or checksum-mismatched download keeps nothing.",
|
|
30946
|
+
"tags": [
|
|
30947
|
+
"health"
|
|
30948
|
+
],
|
|
30949
|
+
"responses": {
|
|
30950
|
+
"200": {
|
|
30951
|
+
"description": "Success",
|
|
30952
|
+
"content": {
|
|
30953
|
+
"application/json": {
|
|
30954
|
+
"schema": {
|
|
30955
|
+
"type": "object",
|
|
30956
|
+
"properties": {
|
|
30957
|
+
"provisioned": {
|
|
30958
|
+
"type": "boolean"
|
|
30959
|
+
},
|
|
30960
|
+
"platform": {
|
|
30961
|
+
"anyOf": [
|
|
30962
|
+
{
|
|
30963
|
+
"type": "string"
|
|
30964
|
+
},
|
|
30965
|
+
{
|
|
30966
|
+
"type": "null"
|
|
30967
|
+
}
|
|
30968
|
+
]
|
|
30969
|
+
},
|
|
30970
|
+
"tts": {
|
|
30971
|
+
"type": "object",
|
|
30972
|
+
"properties": {
|
|
30973
|
+
"engine": {
|
|
30974
|
+
"type": "string"
|
|
30975
|
+
},
|
|
30976
|
+
"state": {
|
|
30977
|
+
"type": "string",
|
|
30978
|
+
"enum": [
|
|
30979
|
+
"provisioned",
|
|
30980
|
+
"unsupported-platform",
|
|
30981
|
+
"download-failed",
|
|
30982
|
+
"checksum-mismatch"
|
|
30983
|
+
]
|
|
30984
|
+
},
|
|
30985
|
+
"binaryPath": {
|
|
30986
|
+
"type": "string"
|
|
30987
|
+
},
|
|
30988
|
+
"modelPath": {
|
|
30989
|
+
"type": "string"
|
|
30990
|
+
},
|
|
30991
|
+
"reason": {
|
|
30992
|
+
"type": "string"
|
|
30993
|
+
}
|
|
30994
|
+
},
|
|
30995
|
+
"required": [
|
|
30996
|
+
"engine",
|
|
30997
|
+
"state"
|
|
30998
|
+
],
|
|
30999
|
+
"additionalProperties": false
|
|
31000
|
+
},
|
|
31001
|
+
"stt": {
|
|
31002
|
+
"type": "object",
|
|
31003
|
+
"properties": {
|
|
31004
|
+
"engine": {
|
|
31005
|
+
"type": "string"
|
|
31006
|
+
},
|
|
31007
|
+
"state": {
|
|
31008
|
+
"type": "string",
|
|
31009
|
+
"enum": [
|
|
31010
|
+
"provisioned",
|
|
31011
|
+
"unsupported-platform",
|
|
31012
|
+
"download-failed",
|
|
31013
|
+
"checksum-mismatch",
|
|
31014
|
+
"bundle-unavailable",
|
|
31015
|
+
"sideload-mismatch"
|
|
31016
|
+
]
|
|
31017
|
+
},
|
|
31018
|
+
"binaryPath": {
|
|
31019
|
+
"type": "string"
|
|
31020
|
+
},
|
|
31021
|
+
"modelPath": {
|
|
31022
|
+
"type": "string"
|
|
31023
|
+
},
|
|
31024
|
+
"reason": {
|
|
31025
|
+
"type": "string"
|
|
31026
|
+
}
|
|
31027
|
+
},
|
|
31028
|
+
"required": [
|
|
31029
|
+
"engine",
|
|
31030
|
+
"state"
|
|
31031
|
+
],
|
|
31032
|
+
"additionalProperties": false
|
|
31033
|
+
},
|
|
31034
|
+
"components": {
|
|
31035
|
+
"type": "array",
|
|
31036
|
+
"items": {
|
|
31037
|
+
"type": "object",
|
|
31038
|
+
"properties": {
|
|
31039
|
+
"id": {
|
|
31040
|
+
"type": "string"
|
|
31041
|
+
},
|
|
31042
|
+
"state": {
|
|
31043
|
+
"type": "string",
|
|
31044
|
+
"enum": [
|
|
31045
|
+
"installed",
|
|
31046
|
+
"skipped",
|
|
31047
|
+
"failed"
|
|
31048
|
+
]
|
|
31049
|
+
},
|
|
31050
|
+
"bytes": {
|
|
31051
|
+
"type": "number"
|
|
31052
|
+
},
|
|
31053
|
+
"error": {
|
|
31054
|
+
"type": "string"
|
|
31055
|
+
}
|
|
31056
|
+
},
|
|
31057
|
+
"required": [
|
|
31058
|
+
"id",
|
|
31059
|
+
"state"
|
|
31060
|
+
],
|
|
31061
|
+
"additionalProperties": false
|
|
31062
|
+
}
|
|
31063
|
+
},
|
|
31064
|
+
"configured": {
|
|
31065
|
+
"type": "object",
|
|
31066
|
+
"properties": {
|
|
31067
|
+
"set": {
|
|
31068
|
+
"type": "array",
|
|
31069
|
+
"items": {
|
|
31070
|
+
"type": "object",
|
|
31071
|
+
"properties": {
|
|
31072
|
+
"key": {
|
|
31073
|
+
"type": "string"
|
|
31074
|
+
},
|
|
31075
|
+
"value": {
|
|
31076
|
+
"type": "string"
|
|
31077
|
+
}
|
|
31078
|
+
},
|
|
31079
|
+
"required": [
|
|
31080
|
+
"key",
|
|
31081
|
+
"value"
|
|
31082
|
+
],
|
|
31083
|
+
"additionalProperties": false
|
|
31084
|
+
}
|
|
31085
|
+
},
|
|
31086
|
+
"skipped": {
|
|
31087
|
+
"type": "array",
|
|
31088
|
+
"items": {
|
|
31089
|
+
"type": "object",
|
|
31090
|
+
"properties": {
|
|
31091
|
+
"key": {
|
|
31092
|
+
"type": "string"
|
|
31093
|
+
},
|
|
31094
|
+
"reason": {
|
|
31095
|
+
"type": "string"
|
|
31096
|
+
}
|
|
31097
|
+
},
|
|
31098
|
+
"required": [
|
|
31099
|
+
"key",
|
|
31100
|
+
"reason"
|
|
31101
|
+
],
|
|
31102
|
+
"additionalProperties": false
|
|
31103
|
+
}
|
|
31104
|
+
}
|
|
31105
|
+
},
|
|
31106
|
+
"required": [
|
|
31107
|
+
"set",
|
|
31108
|
+
"skipped"
|
|
31109
|
+
],
|
|
31110
|
+
"additionalProperties": false
|
|
31111
|
+
}
|
|
31112
|
+
},
|
|
31113
|
+
"required": [
|
|
31114
|
+
"provisioned",
|
|
31115
|
+
"platform",
|
|
31116
|
+
"tts",
|
|
31117
|
+
"stt",
|
|
31118
|
+
"components",
|
|
31119
|
+
"configured"
|
|
31120
|
+
],
|
|
31121
|
+
"additionalProperties": false
|
|
31122
|
+
}
|
|
31123
|
+
}
|
|
31124
|
+
}
|
|
31125
|
+
},
|
|
31126
|
+
"default": {
|
|
31127
|
+
"$ref": "#/components/responses/Error"
|
|
31128
|
+
}
|
|
31129
|
+
},
|
|
31130
|
+
"x-typed-client-io": true,
|
|
31131
|
+
"x-access": "authenticated",
|
|
31132
|
+
"x-transport": [
|
|
31133
|
+
"http",
|
|
31134
|
+
"ws"
|
|
31135
|
+
],
|
|
31136
|
+
"x-scopes": [
|
|
31137
|
+
"write:config"
|
|
31138
|
+
],
|
|
31139
|
+
"requestBody": {
|
|
31140
|
+
"required": true,
|
|
31141
|
+
"content": {
|
|
31142
|
+
"application/json": {
|
|
31143
|
+
"schema": {
|
|
31144
|
+
"type": "object",
|
|
31145
|
+
"properties": {},
|
|
31146
|
+
"additionalProperties": false
|
|
31147
|
+
}
|
|
31148
|
+
}
|
|
31149
|
+
}
|
|
31150
|
+
}
|
|
31151
|
+
}
|
|
31152
|
+
},
|
|
31153
|
+
"/api/voice/local/status": {
|
|
31154
|
+
"get": {
|
|
31155
|
+
"operationId": "voice.local.status",
|
|
31156
|
+
"summary": "Get Managed Local-Voice Runtime State",
|
|
31157
|
+
"description": "Whether the managed local voice runtime (piper TTS + a default voice) is installed: not-provisioned (with a size-labeled offer), partial, provisioned, or unsupported-platform. STT (whisper.cpp) reports its own managed state: goodvibes builds and pins the whisper.cpp bundle per platform (no official prebuilt exists; provisioning never compiles on your machine), so where a pinned bundle exists STT provisions like TTS, and elsewhere it reports unsupported honestly. While a voice.local.install run is active, the response also carries installInProgress — the live per-component progress (phase, byte sizes where known) of that run — so surfaces poll this read during the install to render real progress; the section is absent when no install is running. Read-only.",
|
|
31158
|
+
"tags": [
|
|
31159
|
+
"health"
|
|
31160
|
+
],
|
|
31161
|
+
"responses": {
|
|
31162
|
+
"200": {
|
|
31163
|
+
"description": "Success",
|
|
31164
|
+
"content": {
|
|
31165
|
+
"application/json": {
|
|
31166
|
+
"schema": {
|
|
31167
|
+
"type": "object",
|
|
31168
|
+
"properties": {
|
|
31169
|
+
"platform": {
|
|
31170
|
+
"anyOf": [
|
|
31171
|
+
{
|
|
31172
|
+
"type": "string"
|
|
31173
|
+
},
|
|
31174
|
+
{
|
|
31175
|
+
"type": "null"
|
|
31176
|
+
}
|
|
31177
|
+
]
|
|
31178
|
+
},
|
|
31179
|
+
"state": {
|
|
31180
|
+
"type": "string",
|
|
31181
|
+
"enum": [
|
|
31182
|
+
"not-provisioned",
|
|
31183
|
+
"partial",
|
|
31184
|
+
"provisioned",
|
|
31185
|
+
"unsupported-platform"
|
|
31186
|
+
]
|
|
31187
|
+
},
|
|
31188
|
+
"tts": {
|
|
31189
|
+
"type": "object",
|
|
31190
|
+
"properties": {
|
|
31191
|
+
"engine": {
|
|
31192
|
+
"type": "string"
|
|
31193
|
+
},
|
|
31194
|
+
"binaryPresent": {
|
|
31195
|
+
"type": "boolean"
|
|
31196
|
+
},
|
|
31197
|
+
"voicePresent": {
|
|
31198
|
+
"type": "boolean"
|
|
31199
|
+
},
|
|
31200
|
+
"binaryPath": {
|
|
31201
|
+
"type": "string"
|
|
31202
|
+
},
|
|
31203
|
+
"modelPath": {
|
|
31204
|
+
"type": "string"
|
|
31205
|
+
}
|
|
31206
|
+
},
|
|
31207
|
+
"required": [
|
|
31208
|
+
"engine",
|
|
31209
|
+
"binaryPresent",
|
|
31210
|
+
"voicePresent",
|
|
31211
|
+
"binaryPath",
|
|
31212
|
+
"modelPath"
|
|
31213
|
+
],
|
|
31214
|
+
"additionalProperties": false
|
|
31215
|
+
},
|
|
31216
|
+
"stt": {
|
|
31217
|
+
"type": "object",
|
|
31218
|
+
"properties": {
|
|
31219
|
+
"engine": {
|
|
31220
|
+
"type": "string"
|
|
31221
|
+
},
|
|
31222
|
+
"supported": {
|
|
31223
|
+
"type": "boolean"
|
|
31224
|
+
},
|
|
31225
|
+
"state": {
|
|
31226
|
+
"type": "string",
|
|
31227
|
+
"enum": [
|
|
31228
|
+
"not-provisioned",
|
|
31229
|
+
"partial",
|
|
31230
|
+
"provisioned",
|
|
31231
|
+
"unsupported-platform"
|
|
31232
|
+
]
|
|
31233
|
+
},
|
|
31234
|
+
"binaryPresent": {
|
|
31235
|
+
"type": "boolean"
|
|
31236
|
+
},
|
|
31237
|
+
"modelPresent": {
|
|
31238
|
+
"type": "boolean"
|
|
31239
|
+
},
|
|
31240
|
+
"binaryPath": {
|
|
31241
|
+
"type": "string"
|
|
31242
|
+
},
|
|
31243
|
+
"modelPath": {
|
|
31244
|
+
"type": "string"
|
|
31245
|
+
},
|
|
31246
|
+
"reason": {
|
|
31247
|
+
"type": "string"
|
|
31248
|
+
}
|
|
31249
|
+
},
|
|
31250
|
+
"required": [
|
|
31251
|
+
"engine",
|
|
31252
|
+
"supported",
|
|
31253
|
+
"state",
|
|
31254
|
+
"binaryPresent",
|
|
31255
|
+
"modelPresent",
|
|
31256
|
+
"binaryPath",
|
|
31257
|
+
"modelPath"
|
|
31258
|
+
],
|
|
31259
|
+
"additionalProperties": false
|
|
31260
|
+
},
|
|
31261
|
+
"offerBytes": {
|
|
31262
|
+
"anyOf": [
|
|
31263
|
+
{
|
|
31264
|
+
"type": "number"
|
|
31265
|
+
},
|
|
31266
|
+
{
|
|
31267
|
+
"type": "null"
|
|
31268
|
+
}
|
|
31269
|
+
]
|
|
31270
|
+
},
|
|
31271
|
+
"installInProgress": {
|
|
31272
|
+
"type": "object",
|
|
31273
|
+
"properties": {
|
|
31274
|
+
"startedAt": {
|
|
31275
|
+
"type": "number"
|
|
31276
|
+
},
|
|
31277
|
+
"components": {
|
|
31278
|
+
"type": "array",
|
|
31279
|
+
"items": {
|
|
31280
|
+
"type": "object",
|
|
31281
|
+
"properties": {
|
|
31282
|
+
"component": {
|
|
31283
|
+
"type": "string"
|
|
31284
|
+
},
|
|
31285
|
+
"phase": {
|
|
31286
|
+
"type": "string",
|
|
31287
|
+
"enum": [
|
|
31288
|
+
"skip",
|
|
31289
|
+
"download",
|
|
31290
|
+
"verify",
|
|
31291
|
+
"extract",
|
|
31292
|
+
"done",
|
|
31293
|
+
"error"
|
|
31294
|
+
]
|
|
31295
|
+
},
|
|
31296
|
+
"message": {
|
|
31297
|
+
"type": "string"
|
|
31298
|
+
},
|
|
31299
|
+
"bytesTotal": {
|
|
31300
|
+
"type": "number"
|
|
31301
|
+
},
|
|
31302
|
+
"bytesDone": {
|
|
31303
|
+
"type": "number"
|
|
31304
|
+
}
|
|
31305
|
+
},
|
|
31306
|
+
"required": [
|
|
31307
|
+
"component",
|
|
31308
|
+
"phase"
|
|
31309
|
+
],
|
|
31310
|
+
"additionalProperties": false
|
|
31311
|
+
}
|
|
31312
|
+
}
|
|
31313
|
+
},
|
|
31314
|
+
"required": [
|
|
31315
|
+
"startedAt",
|
|
31316
|
+
"components"
|
|
31317
|
+
],
|
|
31318
|
+
"additionalProperties": false
|
|
31319
|
+
}
|
|
31320
|
+
},
|
|
31321
|
+
"required": [
|
|
31322
|
+
"platform",
|
|
31323
|
+
"state",
|
|
31324
|
+
"tts",
|
|
31325
|
+
"stt",
|
|
31326
|
+
"offerBytes"
|
|
31327
|
+
],
|
|
31328
|
+
"additionalProperties": false
|
|
31329
|
+
}
|
|
31330
|
+
}
|
|
31331
|
+
}
|
|
31332
|
+
},
|
|
31333
|
+
"default": {
|
|
31334
|
+
"$ref": "#/components/responses/Error"
|
|
31335
|
+
}
|
|
31336
|
+
},
|
|
31337
|
+
"x-typed-client-io": true,
|
|
31338
|
+
"x-access": "authenticated",
|
|
31339
|
+
"x-transport": [
|
|
31340
|
+
"http",
|
|
31341
|
+
"ws"
|
|
31342
|
+
],
|
|
31343
|
+
"x-scopes": [
|
|
31344
|
+
"read:health"
|
|
31345
|
+
]
|
|
31346
|
+
}
|
|
31347
|
+
},
|
|
30251
31348
|
"/api/intelligence": {
|
|
30252
31349
|
"get": {
|
|
30253
31350
|
"operationId": "intelligence.snapshot",
|
|
@@ -62136,6 +63233,184 @@
|
|
|
62136
63233
|
}
|
|
62137
63234
|
}
|
|
62138
63235
|
},
|
|
63236
|
+
"/api/memory/consolidation/receipts": {
|
|
63237
|
+
"get": {
|
|
63238
|
+
"operationId": "memory.consolidation.receipts",
|
|
63239
|
+
"summary": "Memory Consolidation Receipts",
|
|
63240
|
+
"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.",
|
|
63241
|
+
"tags": [
|
|
63242
|
+
"memory"
|
|
63243
|
+
],
|
|
63244
|
+
"responses": {
|
|
63245
|
+
"200": {
|
|
63246
|
+
"description": "Success",
|
|
63247
|
+
"content": {
|
|
63248
|
+
"application/json": {
|
|
63249
|
+
"schema": {
|
|
63250
|
+
"type": "object",
|
|
63251
|
+
"properties": {
|
|
63252
|
+
"receipts": {
|
|
63253
|
+
"type": "array",
|
|
63254
|
+
"items": {
|
|
63255
|
+
"type": "object",
|
|
63256
|
+
"properties": {
|
|
63257
|
+
"runId": {
|
|
63258
|
+
"type": "string"
|
|
63259
|
+
},
|
|
63260
|
+
"ranAt": {
|
|
63261
|
+
"type": "string"
|
|
63262
|
+
},
|
|
63263
|
+
"trigger": {
|
|
63264
|
+
"type": "string"
|
|
63265
|
+
},
|
|
63266
|
+
"idle": {
|
|
63267
|
+
"type": "boolean"
|
|
63268
|
+
},
|
|
63269
|
+
"scanned": {
|
|
63270
|
+
"type": "number"
|
|
63271
|
+
},
|
|
63272
|
+
"merged": {
|
|
63273
|
+
"type": "array",
|
|
63274
|
+
"items": {
|
|
63275
|
+
"type": "object",
|
|
63276
|
+
"properties": {},
|
|
63277
|
+
"additionalProperties": true
|
|
63278
|
+
}
|
|
63279
|
+
},
|
|
63280
|
+
"archived": {
|
|
63281
|
+
"type": "array",
|
|
63282
|
+
"items": {
|
|
63283
|
+
"type": "object",
|
|
63284
|
+
"properties": {},
|
|
63285
|
+
"additionalProperties": true
|
|
63286
|
+
}
|
|
63287
|
+
},
|
|
63288
|
+
"decayed": {
|
|
63289
|
+
"type": "array",
|
|
63290
|
+
"items": {
|
|
63291
|
+
"type": "object",
|
|
63292
|
+
"properties": {},
|
|
63293
|
+
"additionalProperties": true
|
|
63294
|
+
}
|
|
63295
|
+
},
|
|
63296
|
+
"proposed": {
|
|
63297
|
+
"type": "array",
|
|
63298
|
+
"items": {
|
|
63299
|
+
"type": "object",
|
|
63300
|
+
"properties": {
|
|
63301
|
+
"kind": {
|
|
63302
|
+
"type": "string",
|
|
63303
|
+
"enum": [
|
|
63304
|
+
"contradiction",
|
|
63305
|
+
"cross-scope-duplicate",
|
|
63306
|
+
"stale-delete"
|
|
63307
|
+
]
|
|
63308
|
+
},
|
|
63309
|
+
"ids": {
|
|
63310
|
+
"type": "array",
|
|
63311
|
+
"items": {
|
|
63312
|
+
"type": "string"
|
|
63313
|
+
}
|
|
63314
|
+
},
|
|
63315
|
+
"route": {
|
|
63316
|
+
"type": "string"
|
|
63317
|
+
},
|
|
63318
|
+
"reason": {
|
|
63319
|
+
"type": "string"
|
|
63320
|
+
}
|
|
63321
|
+
},
|
|
63322
|
+
"required": [
|
|
63323
|
+
"kind",
|
|
63324
|
+
"ids",
|
|
63325
|
+
"route",
|
|
63326
|
+
"reason"
|
|
63327
|
+
],
|
|
63328
|
+
"additionalProperties": false
|
|
63329
|
+
}
|
|
63330
|
+
},
|
|
63331
|
+
"usageSignalAvailable": {
|
|
63332
|
+
"type": "boolean"
|
|
63333
|
+
},
|
|
63334
|
+
"note": {
|
|
63335
|
+
"type": "string"
|
|
63336
|
+
}
|
|
63337
|
+
},
|
|
63338
|
+
"required": [
|
|
63339
|
+
"runId",
|
|
63340
|
+
"ranAt",
|
|
63341
|
+
"trigger",
|
|
63342
|
+
"idle",
|
|
63343
|
+
"scanned",
|
|
63344
|
+
"merged",
|
|
63345
|
+
"archived",
|
|
63346
|
+
"decayed",
|
|
63347
|
+
"proposed",
|
|
63348
|
+
"usageSignalAvailable",
|
|
63349
|
+
"note"
|
|
63350
|
+
],
|
|
63351
|
+
"additionalProperties": false
|
|
63352
|
+
}
|
|
63353
|
+
},
|
|
63354
|
+
"pendingProposals": {
|
|
63355
|
+
"type": "array",
|
|
63356
|
+
"items": {
|
|
63357
|
+
"type": "object",
|
|
63358
|
+
"properties": {
|
|
63359
|
+
"kind": {
|
|
63360
|
+
"type": "string",
|
|
63361
|
+
"enum": [
|
|
63362
|
+
"contradiction",
|
|
63363
|
+
"cross-scope-duplicate",
|
|
63364
|
+
"stale-delete"
|
|
63365
|
+
]
|
|
63366
|
+
},
|
|
63367
|
+
"ids": {
|
|
63368
|
+
"type": "array",
|
|
63369
|
+
"items": {
|
|
63370
|
+
"type": "string"
|
|
63371
|
+
}
|
|
63372
|
+
},
|
|
63373
|
+
"route": {
|
|
63374
|
+
"type": "string"
|
|
63375
|
+
},
|
|
63376
|
+
"reason": {
|
|
63377
|
+
"type": "string"
|
|
63378
|
+
}
|
|
63379
|
+
},
|
|
63380
|
+
"required": [
|
|
63381
|
+
"kind",
|
|
63382
|
+
"ids",
|
|
63383
|
+
"route",
|
|
63384
|
+
"reason"
|
|
63385
|
+
],
|
|
63386
|
+
"additionalProperties": false
|
|
63387
|
+
}
|
|
63388
|
+
}
|
|
63389
|
+
},
|
|
63390
|
+
"required": [
|
|
63391
|
+
"receipts",
|
|
63392
|
+
"pendingProposals"
|
|
63393
|
+
],
|
|
63394
|
+
"additionalProperties": false
|
|
63395
|
+
}
|
|
63396
|
+
}
|
|
63397
|
+
}
|
|
63398
|
+
},
|
|
63399
|
+
"default": {
|
|
63400
|
+
"$ref": "#/components/responses/Error"
|
|
63401
|
+
}
|
|
63402
|
+
},
|
|
63403
|
+
"x-typed-client-io": true,
|
|
63404
|
+
"x-access": "authenticated",
|
|
63405
|
+
"x-transport": [
|
|
63406
|
+
"http",
|
|
63407
|
+
"ws"
|
|
63408
|
+
],
|
|
63409
|
+
"x-scopes": [
|
|
63410
|
+
"read:memory"
|
|
63411
|
+
]
|
|
63412
|
+
}
|
|
63413
|
+
},
|
|
62139
63414
|
"/api/memory/doctor": {
|
|
62140
63415
|
"get": {
|
|
62141
63416
|
"operationId": "memory.doctor",
|
|
@@ -78934,6 +80209,246 @@
|
|
|
78934
80209
|
}
|
|
78935
80210
|
}
|
|
78936
80211
|
},
|
|
80212
|
+
"/api/sessions/{sessionId}/queued-messages/{messageId}": {
|
|
80213
|
+
"delete": {
|
|
80214
|
+
"operationId": "sessions.queuedMessages.delete",
|
|
80215
|
+
"summary": "Delete a Queued Mid-Turn Message",
|
|
80216
|
+
"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.",
|
|
80217
|
+
"tags": [
|
|
80218
|
+
"sessions"
|
|
80219
|
+
],
|
|
80220
|
+
"responses": {
|
|
80221
|
+
"200": {
|
|
80222
|
+
"description": "Success",
|
|
80223
|
+
"content": {
|
|
80224
|
+
"application/json": {
|
|
80225
|
+
"schema": {
|
|
80226
|
+
"type": "object",
|
|
80227
|
+
"properties": {
|
|
80228
|
+
"sessionId": {
|
|
80229
|
+
"type": "string"
|
|
80230
|
+
},
|
|
80231
|
+
"id": {
|
|
80232
|
+
"type": "string"
|
|
80233
|
+
},
|
|
80234
|
+
"deleted": {
|
|
80235
|
+
"type": "boolean"
|
|
80236
|
+
}
|
|
80237
|
+
},
|
|
80238
|
+
"required": [
|
|
80239
|
+
"sessionId",
|
|
80240
|
+
"id",
|
|
80241
|
+
"deleted"
|
|
80242
|
+
],
|
|
80243
|
+
"additionalProperties": false
|
|
80244
|
+
}
|
|
80245
|
+
}
|
|
80246
|
+
}
|
|
80247
|
+
},
|
|
80248
|
+
"default": {
|
|
80249
|
+
"$ref": "#/components/responses/Error"
|
|
80250
|
+
}
|
|
80251
|
+
},
|
|
80252
|
+
"x-typed-client-io": true,
|
|
80253
|
+
"x-access": "authenticated",
|
|
80254
|
+
"x-transport": [
|
|
80255
|
+
"http",
|
|
80256
|
+
"ws"
|
|
80257
|
+
],
|
|
80258
|
+
"x-scopes": [
|
|
80259
|
+
"write:sessions"
|
|
80260
|
+
],
|
|
80261
|
+
"parameters": [
|
|
80262
|
+
{
|
|
80263
|
+
"name": "sessionId",
|
|
80264
|
+
"in": "path",
|
|
80265
|
+
"required": true,
|
|
80266
|
+
"schema": {
|
|
80267
|
+
"type": "string"
|
|
80268
|
+
}
|
|
80269
|
+
},
|
|
80270
|
+
{
|
|
80271
|
+
"name": "messageId",
|
|
80272
|
+
"in": "path",
|
|
80273
|
+
"required": true,
|
|
80274
|
+
"schema": {
|
|
80275
|
+
"type": "string"
|
|
80276
|
+
}
|
|
80277
|
+
}
|
|
80278
|
+
]
|
|
80279
|
+
},
|
|
80280
|
+
"post": {
|
|
80281
|
+
"operationId": "sessions.queuedMessages.edit",
|
|
80282
|
+
"summary": "Edit a Queued Mid-Turn Message",
|
|
80283
|
+
"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.",
|
|
80284
|
+
"tags": [
|
|
80285
|
+
"sessions"
|
|
80286
|
+
],
|
|
80287
|
+
"responses": {
|
|
80288
|
+
"200": {
|
|
80289
|
+
"description": "Success",
|
|
80290
|
+
"content": {
|
|
80291
|
+
"application/json": {
|
|
80292
|
+
"schema": {
|
|
80293
|
+
"type": "object",
|
|
80294
|
+
"properties": {
|
|
80295
|
+
"sessionId": {
|
|
80296
|
+
"type": "string"
|
|
80297
|
+
},
|
|
80298
|
+
"id": {
|
|
80299
|
+
"type": "string"
|
|
80300
|
+
},
|
|
80301
|
+
"text": {
|
|
80302
|
+
"type": "string"
|
|
80303
|
+
}
|
|
80304
|
+
},
|
|
80305
|
+
"required": [
|
|
80306
|
+
"sessionId",
|
|
80307
|
+
"id",
|
|
80308
|
+
"text"
|
|
80309
|
+
],
|
|
80310
|
+
"additionalProperties": false
|
|
80311
|
+
}
|
|
80312
|
+
}
|
|
80313
|
+
}
|
|
80314
|
+
},
|
|
80315
|
+
"default": {
|
|
80316
|
+
"$ref": "#/components/responses/Error"
|
|
80317
|
+
}
|
|
80318
|
+
},
|
|
80319
|
+
"x-typed-client-io": true,
|
|
80320
|
+
"x-access": "authenticated",
|
|
80321
|
+
"x-transport": [
|
|
80322
|
+
"http",
|
|
80323
|
+
"ws"
|
|
80324
|
+
],
|
|
80325
|
+
"x-scopes": [
|
|
80326
|
+
"write:sessions"
|
|
80327
|
+
],
|
|
80328
|
+
"parameters": [
|
|
80329
|
+
{
|
|
80330
|
+
"name": "sessionId",
|
|
80331
|
+
"in": "path",
|
|
80332
|
+
"required": true,
|
|
80333
|
+
"schema": {
|
|
80334
|
+
"type": "string"
|
|
80335
|
+
}
|
|
80336
|
+
},
|
|
80337
|
+
{
|
|
80338
|
+
"name": "messageId",
|
|
80339
|
+
"in": "path",
|
|
80340
|
+
"required": true,
|
|
80341
|
+
"schema": {
|
|
80342
|
+
"type": "string"
|
|
80343
|
+
}
|
|
80344
|
+
}
|
|
80345
|
+
],
|
|
80346
|
+
"requestBody": {
|
|
80347
|
+
"required": true,
|
|
80348
|
+
"content": {
|
|
80349
|
+
"application/json": {
|
|
80350
|
+
"schema": {
|
|
80351
|
+
"type": "object",
|
|
80352
|
+
"properties": {
|
|
80353
|
+
"sessionId": {
|
|
80354
|
+
"type": "string"
|
|
80355
|
+
},
|
|
80356
|
+
"messageId": {
|
|
80357
|
+
"type": "string"
|
|
80358
|
+
},
|
|
80359
|
+
"text": {
|
|
80360
|
+
"type": "string"
|
|
80361
|
+
}
|
|
80362
|
+
},
|
|
80363
|
+
"required": [
|
|
80364
|
+
"sessionId",
|
|
80365
|
+
"messageId",
|
|
80366
|
+
"text"
|
|
80367
|
+
],
|
|
80368
|
+
"additionalProperties": false
|
|
80369
|
+
}
|
|
80370
|
+
}
|
|
80371
|
+
}
|
|
80372
|
+
}
|
|
80373
|
+
}
|
|
80374
|
+
},
|
|
80375
|
+
"/api/sessions/{sessionId}/queued-messages": {
|
|
80376
|
+
"get": {
|
|
80377
|
+
"operationId": "sessions.queuedMessages.list",
|
|
80378
|
+
"summary": "List Queued Mid-Turn Messages",
|
|
80379
|
+
"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.",
|
|
80380
|
+
"tags": [
|
|
80381
|
+
"sessions"
|
|
80382
|
+
],
|
|
80383
|
+
"responses": {
|
|
80384
|
+
"200": {
|
|
80385
|
+
"description": "Success",
|
|
80386
|
+
"content": {
|
|
80387
|
+
"application/json": {
|
|
80388
|
+
"schema": {
|
|
80389
|
+
"type": "object",
|
|
80390
|
+
"properties": {
|
|
80391
|
+
"sessionId": {
|
|
80392
|
+
"type": "string"
|
|
80393
|
+
},
|
|
80394
|
+
"messages": {
|
|
80395
|
+
"type": "array",
|
|
80396
|
+
"items": {
|
|
80397
|
+
"type": "object",
|
|
80398
|
+
"properties": {
|
|
80399
|
+
"id": {
|
|
80400
|
+
"type": "string"
|
|
80401
|
+
},
|
|
80402
|
+
"queuedAt": {
|
|
80403
|
+
"type": "number"
|
|
80404
|
+
},
|
|
80405
|
+
"text": {
|
|
80406
|
+
"type": "string"
|
|
80407
|
+
}
|
|
80408
|
+
},
|
|
80409
|
+
"required": [
|
|
80410
|
+
"id",
|
|
80411
|
+
"queuedAt",
|
|
80412
|
+
"text"
|
|
80413
|
+
],
|
|
80414
|
+
"additionalProperties": false
|
|
80415
|
+
}
|
|
80416
|
+
}
|
|
80417
|
+
},
|
|
80418
|
+
"required": [
|
|
80419
|
+
"sessionId",
|
|
80420
|
+
"messages"
|
|
80421
|
+
],
|
|
80422
|
+
"additionalProperties": false
|
|
80423
|
+
}
|
|
80424
|
+
}
|
|
80425
|
+
}
|
|
80426
|
+
},
|
|
80427
|
+
"default": {
|
|
80428
|
+
"$ref": "#/components/responses/Error"
|
|
80429
|
+
}
|
|
80430
|
+
},
|
|
80431
|
+
"x-typed-client-io": true,
|
|
80432
|
+
"x-access": "authenticated",
|
|
80433
|
+
"x-transport": [
|
|
80434
|
+
"http",
|
|
80435
|
+
"ws"
|
|
80436
|
+
],
|
|
80437
|
+
"x-scopes": [
|
|
80438
|
+
"read:sessions"
|
|
80439
|
+
],
|
|
80440
|
+
"parameters": [
|
|
80441
|
+
{
|
|
80442
|
+
"name": "sessionId",
|
|
80443
|
+
"in": "path",
|
|
80444
|
+
"required": true,
|
|
80445
|
+
"schema": {
|
|
80446
|
+
"type": "string"
|
|
80447
|
+
}
|
|
80448
|
+
}
|
|
80449
|
+
]
|
|
80450
|
+
}
|
|
80451
|
+
},
|
|
78937
80452
|
"/api/sessions/register": {
|
|
78938
80453
|
"post": {
|
|
78939
80454
|
"operationId": "sessions.register",
|
|
@@ -79156,7 +80671,8 @@
|
|
|
79156
80671
|
"webui",
|
|
79157
80672
|
"companion-task",
|
|
79158
80673
|
"companion-chat",
|
|
79159
|
-
"automation"
|
|
80674
|
+
"automation",
|
|
80675
|
+
"acp"
|
|
79160
80676
|
]
|
|
79161
80677
|
},
|
|
79162
80678
|
"project": {
|
|
@@ -80073,6 +81589,98 @@
|
|
|
80073
81589
|
}
|
|
80074
81590
|
}
|
|
80075
81591
|
},
|
|
81592
|
+
"/api/sessions/{sessionId}/tool-calls/{callId}/cancel": {
|
|
81593
|
+
"post": {
|
|
81594
|
+
"operationId": "sessions.toolCalls.cancel",
|
|
81595
|
+
"summary": "Cancel One In-Flight Tool Call",
|
|
81596
|
+
"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.",
|
|
81597
|
+
"tags": [
|
|
81598
|
+
"sessions"
|
|
81599
|
+
],
|
|
81600
|
+
"responses": {
|
|
81601
|
+
"200": {
|
|
81602
|
+
"description": "Success",
|
|
81603
|
+
"content": {
|
|
81604
|
+
"application/json": {
|
|
81605
|
+
"schema": {
|
|
81606
|
+
"type": "object",
|
|
81607
|
+
"properties": {
|
|
81608
|
+
"sessionId": {
|
|
81609
|
+
"type": "string"
|
|
81610
|
+
},
|
|
81611
|
+
"callId": {
|
|
81612
|
+
"type": "string"
|
|
81613
|
+
},
|
|
81614
|
+
"cancelled": {
|
|
81615
|
+
"type": "boolean"
|
|
81616
|
+
}
|
|
81617
|
+
},
|
|
81618
|
+
"required": [
|
|
81619
|
+
"sessionId",
|
|
81620
|
+
"callId",
|
|
81621
|
+
"cancelled"
|
|
81622
|
+
],
|
|
81623
|
+
"additionalProperties": false
|
|
81624
|
+
}
|
|
81625
|
+
}
|
|
81626
|
+
}
|
|
81627
|
+
},
|
|
81628
|
+
"default": {
|
|
81629
|
+
"$ref": "#/components/responses/Error"
|
|
81630
|
+
}
|
|
81631
|
+
},
|
|
81632
|
+
"x-typed-client-io": true,
|
|
81633
|
+
"x-access": "authenticated",
|
|
81634
|
+
"x-transport": [
|
|
81635
|
+
"http",
|
|
81636
|
+
"ws"
|
|
81637
|
+
],
|
|
81638
|
+
"x-scopes": [
|
|
81639
|
+
"write:sessions"
|
|
81640
|
+
],
|
|
81641
|
+
"parameters": [
|
|
81642
|
+
{
|
|
81643
|
+
"name": "sessionId",
|
|
81644
|
+
"in": "path",
|
|
81645
|
+
"required": true,
|
|
81646
|
+
"schema": {
|
|
81647
|
+
"type": "string"
|
|
81648
|
+
}
|
|
81649
|
+
},
|
|
81650
|
+
{
|
|
81651
|
+
"name": "callId",
|
|
81652
|
+
"in": "path",
|
|
81653
|
+
"required": true,
|
|
81654
|
+
"schema": {
|
|
81655
|
+
"type": "string"
|
|
81656
|
+
}
|
|
81657
|
+
}
|
|
81658
|
+
],
|
|
81659
|
+
"requestBody": {
|
|
81660
|
+
"required": true,
|
|
81661
|
+
"content": {
|
|
81662
|
+
"application/json": {
|
|
81663
|
+
"schema": {
|
|
81664
|
+
"type": "object",
|
|
81665
|
+
"properties": {
|
|
81666
|
+
"sessionId": {
|
|
81667
|
+
"type": "string"
|
|
81668
|
+
},
|
|
81669
|
+
"callId": {
|
|
81670
|
+
"type": "string"
|
|
81671
|
+
}
|
|
81672
|
+
},
|
|
81673
|
+
"required": [
|
|
81674
|
+
"sessionId",
|
|
81675
|
+
"callId"
|
|
81676
|
+
],
|
|
81677
|
+
"additionalProperties": false
|
|
81678
|
+
}
|
|
81679
|
+
}
|
|
81680
|
+
}
|
|
81681
|
+
}
|
|
81682
|
+
}
|
|
81683
|
+
},
|
|
80076
81684
|
"/api/security-settings": {
|
|
80077
81685
|
"get": {
|
|
80078
81686
|
"operationId": "security.settings",
|
|
@@ -89085,6 +90693,8 @@
|
|
|
89085
90693
|
}
|
|
89086
90694
|
},
|
|
89087
90695
|
"x-invoke-only-methods": [
|
|
90696
|
+
"acp.agents.list",
|
|
90697
|
+
"acp.sessions.create",
|
|
89088
90698
|
"channels.test.send",
|
|
89089
90699
|
"checkpoints.create",
|
|
89090
90700
|
"checkpoints.diff",
|
|
@@ -89101,14 +90711,27 @@
|
|
|
89101
90711
|
"fleet.attempts.judge",
|
|
89102
90712
|
"fleet.attempts.list",
|
|
89103
90713
|
"fleet.attempts.pick",
|
|
90714
|
+
"fleet.conflicts.list",
|
|
90715
|
+
"fleet.conflicts.resolve",
|
|
89104
90716
|
"fleet.list",
|
|
90717
|
+
"fleet.observed.steer",
|
|
89105
90718
|
"fleet.snapshot",
|
|
89106
90719
|
"fleet.unarchive",
|
|
90720
|
+
"pairing.handoff.complete",
|
|
90721
|
+
"pairing.handoff.create",
|
|
90722
|
+
"pairing.posture.get",
|
|
90723
|
+
"pairing.tokens.create",
|
|
90724
|
+
"pairing.tokens.delete",
|
|
90725
|
+
"pairing.tokens.list",
|
|
90726
|
+
"pairing.tokens.migrate",
|
|
90727
|
+
"pairing.tokens.rename",
|
|
90728
|
+
"pairing.tokens.revokeShared",
|
|
89107
90729
|
"permissions.rules.delete",
|
|
89108
90730
|
"permissions.rules.list",
|
|
89109
90731
|
"push.subscriptions.create",
|
|
89110
90732
|
"push.subscriptions.delete",
|
|
89111
90733
|
"push.subscriptions.list",
|
|
90734
|
+
"push.subscriptions.reconcile",
|
|
89112
90735
|
"push.subscriptions.verify",
|
|
89113
90736
|
"push.vapid.get",
|
|
89114
90737
|
"quota.fanout.get",
|
|
@@ -89117,6 +90740,9 @@
|
|
|
89117
90740
|
"rewind.plan",
|
|
89118
90741
|
"sessions.changes.get",
|
|
89119
90742
|
"sessions.search",
|
|
90743
|
+
"tailscale.get",
|
|
90744
|
+
"tailscale.serve.run",
|
|
90745
|
+
"worktrees.discard",
|
|
89120
90746
|
"worktrees.setup.run"
|
|
89121
90747
|
]
|
|
89122
90748
|
}
|
|
@@ -89326,6 +90952,24 @@
|
|
|
89326
90952
|
"inputSchemaCoverage": "typed",
|
|
89327
90953
|
"outputSchemaCoverage": "typed"
|
|
89328
90954
|
},
|
|
90955
|
+
{
|
|
90956
|
+
"id": "acp.agents.list",
|
|
90957
|
+
"category": "acp",
|
|
90958
|
+
"access": "authenticated",
|
|
90959
|
+
"rest": null,
|
|
90960
|
+
"typedClientIo": true,
|
|
90961
|
+
"inputSchemaCoverage": "schema-less",
|
|
90962
|
+
"outputSchemaCoverage": "typed"
|
|
90963
|
+
},
|
|
90964
|
+
{
|
|
90965
|
+
"id": "acp.sessions.create",
|
|
90966
|
+
"category": "acp",
|
|
90967
|
+
"access": "authenticated",
|
|
90968
|
+
"rest": null,
|
|
90969
|
+
"typedClientIo": true,
|
|
90970
|
+
"inputSchemaCoverage": "typed",
|
|
90971
|
+
"outputSchemaCoverage": "typed"
|
|
90972
|
+
},
|
|
89329
90973
|
{
|
|
89330
90974
|
"id": "approvals.approve",
|
|
89331
90975
|
"category": "approvals",
|
|
@@ -90586,6 +92230,33 @@
|
|
|
90586
92230
|
"inputSchemaCoverage": "typed",
|
|
90587
92231
|
"outputSchemaCoverage": "typed"
|
|
90588
92232
|
},
|
|
92233
|
+
{
|
|
92234
|
+
"id": "fleet.conflicts.list",
|
|
92235
|
+
"category": "fleet",
|
|
92236
|
+
"access": "authenticated",
|
|
92237
|
+
"rest": null,
|
|
92238
|
+
"typedClientIo": true,
|
|
92239
|
+
"inputSchemaCoverage": "typed",
|
|
92240
|
+
"outputSchemaCoverage": "typed"
|
|
92241
|
+
},
|
|
92242
|
+
{
|
|
92243
|
+
"id": "fleet.conflicts.resolve",
|
|
92244
|
+
"category": "fleet",
|
|
92245
|
+
"access": "authenticated",
|
|
92246
|
+
"rest": null,
|
|
92247
|
+
"typedClientIo": true,
|
|
92248
|
+
"inputSchemaCoverage": "typed",
|
|
92249
|
+
"outputSchemaCoverage": "typed"
|
|
92250
|
+
},
|
|
92251
|
+
{
|
|
92252
|
+
"id": "fleet.graph.get",
|
|
92253
|
+
"category": "fleet",
|
|
92254
|
+
"access": "authenticated",
|
|
92255
|
+
"rest": "GET /api/fleet/workstreams/{workstreamId}/graph",
|
|
92256
|
+
"typedClientIo": true,
|
|
92257
|
+
"inputSchemaCoverage": "typed",
|
|
92258
|
+
"outputSchemaCoverage": "typed"
|
|
92259
|
+
},
|
|
90589
92260
|
{
|
|
90590
92261
|
"id": "fleet.list",
|
|
90591
92262
|
"category": "fleet",
|
|
@@ -90595,6 +92266,15 @@
|
|
|
90595
92266
|
"inputSchemaCoverage": "typed",
|
|
90596
92267
|
"outputSchemaCoverage": "typed"
|
|
90597
92268
|
},
|
|
92269
|
+
{
|
|
92270
|
+
"id": "fleet.observed.steer",
|
|
92271
|
+
"category": "fleet",
|
|
92272
|
+
"access": "authenticated",
|
|
92273
|
+
"rest": null,
|
|
92274
|
+
"typedClientIo": true,
|
|
92275
|
+
"inputSchemaCoverage": "typed",
|
|
92276
|
+
"outputSchemaCoverage": "typed"
|
|
92277
|
+
},
|
|
90598
92278
|
{
|
|
90599
92279
|
"id": "fleet.snapshot",
|
|
90600
92280
|
"category": "fleet",
|
|
@@ -90622,6 +92302,51 @@
|
|
|
90622
92302
|
"inputSchemaCoverage": "typed",
|
|
90623
92303
|
"outputSchemaCoverage": "typed"
|
|
90624
92304
|
},
|
|
92305
|
+
{
|
|
92306
|
+
"id": "ops.memory.get",
|
|
92307
|
+
"category": "health",
|
|
92308
|
+
"access": "authenticated",
|
|
92309
|
+
"rest": "GET /api/ops/memory",
|
|
92310
|
+
"typedClientIo": true,
|
|
92311
|
+
"inputSchemaCoverage": "typed",
|
|
92312
|
+
"outputSchemaCoverage": "typed"
|
|
92313
|
+
},
|
|
92314
|
+
{
|
|
92315
|
+
"id": "power.keepAwake.set",
|
|
92316
|
+
"category": "health",
|
|
92317
|
+
"access": "authenticated",
|
|
92318
|
+
"rest": "POST /api/power/keep-awake",
|
|
92319
|
+
"typedClientIo": true,
|
|
92320
|
+
"inputSchemaCoverage": "typed",
|
|
92321
|
+
"outputSchemaCoverage": "typed"
|
|
92322
|
+
},
|
|
92323
|
+
{
|
|
92324
|
+
"id": "power.status.get",
|
|
92325
|
+
"category": "health",
|
|
92326
|
+
"access": "authenticated",
|
|
92327
|
+
"rest": "GET /api/power/status",
|
|
92328
|
+
"typedClientIo": true,
|
|
92329
|
+
"inputSchemaCoverage": "typed",
|
|
92330
|
+
"outputSchemaCoverage": "typed"
|
|
92331
|
+
},
|
|
92332
|
+
{
|
|
92333
|
+
"id": "voice.local.install",
|
|
92334
|
+
"category": "health",
|
|
92335
|
+
"access": "authenticated",
|
|
92336
|
+
"rest": "POST /api/voice/local/install",
|
|
92337
|
+
"typedClientIo": true,
|
|
92338
|
+
"inputSchemaCoverage": "typed",
|
|
92339
|
+
"outputSchemaCoverage": "typed"
|
|
92340
|
+
},
|
|
92341
|
+
{
|
|
92342
|
+
"id": "voice.local.status",
|
|
92343
|
+
"category": "health",
|
|
92344
|
+
"access": "authenticated",
|
|
92345
|
+
"rest": "GET /api/voice/local/status",
|
|
92346
|
+
"typedClientIo": true,
|
|
92347
|
+
"inputSchemaCoverage": "typed",
|
|
92348
|
+
"outputSchemaCoverage": "typed"
|
|
92349
|
+
},
|
|
90625
92350
|
{
|
|
90626
92351
|
"id": "intelligence.snapshot",
|
|
90627
92352
|
"category": "intelligence",
|
|
@@ -91576,6 +93301,15 @@
|
|
|
91576
93301
|
"inputSchemaCoverage": "typed",
|
|
91577
93302
|
"outputSchemaCoverage": "typed"
|
|
91578
93303
|
},
|
|
93304
|
+
{
|
|
93305
|
+
"id": "memory.consolidation.receipts",
|
|
93306
|
+
"category": "memory",
|
|
93307
|
+
"access": "authenticated",
|
|
93308
|
+
"rest": "GET /api/memory/consolidation/receipts",
|
|
93309
|
+
"typedClientIo": true,
|
|
93310
|
+
"inputSchemaCoverage": "typed",
|
|
93311
|
+
"outputSchemaCoverage": "typed"
|
|
93312
|
+
},
|
|
91579
93313
|
{
|
|
91580
93314
|
"id": "memory.doctor",
|
|
91581
93315
|
"category": "memory",
|
|
@@ -91747,6 +93481,87 @@
|
|
|
91747
93481
|
"inputSchemaCoverage": "typed",
|
|
91748
93482
|
"outputSchemaCoverage": "typed"
|
|
91749
93483
|
},
|
|
93484
|
+
{
|
|
93485
|
+
"id": "pairing.handoff.complete",
|
|
93486
|
+
"category": "pairing",
|
|
93487
|
+
"access": "authenticated",
|
|
93488
|
+
"rest": null,
|
|
93489
|
+
"typedClientIo": true,
|
|
93490
|
+
"inputSchemaCoverage": "typed",
|
|
93491
|
+
"outputSchemaCoverage": "typed"
|
|
93492
|
+
},
|
|
93493
|
+
{
|
|
93494
|
+
"id": "pairing.handoff.create",
|
|
93495
|
+
"category": "pairing",
|
|
93496
|
+
"access": "authenticated",
|
|
93497
|
+
"rest": null,
|
|
93498
|
+
"typedClientIo": true,
|
|
93499
|
+
"inputSchemaCoverage": "typed",
|
|
93500
|
+
"outputSchemaCoverage": "typed"
|
|
93501
|
+
},
|
|
93502
|
+
{
|
|
93503
|
+
"id": "pairing.posture.get",
|
|
93504
|
+
"category": "pairing",
|
|
93505
|
+
"access": "authenticated",
|
|
93506
|
+
"rest": null,
|
|
93507
|
+
"typedClientIo": true,
|
|
93508
|
+
"inputSchemaCoverage": "typed",
|
|
93509
|
+
"outputSchemaCoverage": "typed"
|
|
93510
|
+
},
|
|
93511
|
+
{
|
|
93512
|
+
"id": "pairing.tokens.create",
|
|
93513
|
+
"category": "pairing",
|
|
93514
|
+
"access": "authenticated",
|
|
93515
|
+
"rest": null,
|
|
93516
|
+
"typedClientIo": true,
|
|
93517
|
+
"inputSchemaCoverage": "typed",
|
|
93518
|
+
"outputSchemaCoverage": "typed"
|
|
93519
|
+
},
|
|
93520
|
+
{
|
|
93521
|
+
"id": "pairing.tokens.delete",
|
|
93522
|
+
"category": "pairing",
|
|
93523
|
+
"access": "authenticated",
|
|
93524
|
+
"rest": null,
|
|
93525
|
+
"typedClientIo": true,
|
|
93526
|
+
"inputSchemaCoverage": "typed",
|
|
93527
|
+
"outputSchemaCoverage": "typed"
|
|
93528
|
+
},
|
|
93529
|
+
{
|
|
93530
|
+
"id": "pairing.tokens.list",
|
|
93531
|
+
"category": "pairing",
|
|
93532
|
+
"access": "authenticated",
|
|
93533
|
+
"rest": null,
|
|
93534
|
+
"typedClientIo": true,
|
|
93535
|
+
"inputSchemaCoverage": "schema-less",
|
|
93536
|
+
"outputSchemaCoverage": "typed"
|
|
93537
|
+
},
|
|
93538
|
+
{
|
|
93539
|
+
"id": "pairing.tokens.migrate",
|
|
93540
|
+
"category": "pairing",
|
|
93541
|
+
"access": "authenticated",
|
|
93542
|
+
"rest": null,
|
|
93543
|
+
"typedClientIo": true,
|
|
93544
|
+
"inputSchemaCoverage": "typed",
|
|
93545
|
+
"outputSchemaCoverage": "typed"
|
|
93546
|
+
},
|
|
93547
|
+
{
|
|
93548
|
+
"id": "pairing.tokens.rename",
|
|
93549
|
+
"category": "pairing",
|
|
93550
|
+
"access": "authenticated",
|
|
93551
|
+
"rest": null,
|
|
93552
|
+
"typedClientIo": true,
|
|
93553
|
+
"inputSchemaCoverage": "typed",
|
|
93554
|
+
"outputSchemaCoverage": "typed"
|
|
93555
|
+
},
|
|
93556
|
+
{
|
|
93557
|
+
"id": "pairing.tokens.revokeShared",
|
|
93558
|
+
"category": "pairing",
|
|
93559
|
+
"access": "authenticated",
|
|
93560
|
+
"rest": null,
|
|
93561
|
+
"typedClientIo": true,
|
|
93562
|
+
"inputSchemaCoverage": "schema-less",
|
|
93563
|
+
"outputSchemaCoverage": "typed"
|
|
93564
|
+
},
|
|
91750
93565
|
{
|
|
91751
93566
|
"id": "panels.list",
|
|
91752
93567
|
"category": "panels",
|
|
@@ -91891,6 +93706,15 @@
|
|
|
91891
93706
|
"inputSchemaCoverage": "schema-less",
|
|
91892
93707
|
"outputSchemaCoverage": "typed"
|
|
91893
93708
|
},
|
|
93709
|
+
{
|
|
93710
|
+
"id": "push.subscriptions.reconcile",
|
|
93711
|
+
"category": "push",
|
|
93712
|
+
"access": "authenticated",
|
|
93713
|
+
"rest": null,
|
|
93714
|
+
"typedClientIo": true,
|
|
93715
|
+
"inputSchemaCoverage": "typed",
|
|
93716
|
+
"outputSchemaCoverage": "typed"
|
|
93717
|
+
},
|
|
91894
93718
|
{
|
|
91895
93719
|
"id": "push.subscriptions.verify",
|
|
91896
93720
|
"category": "push",
|
|
@@ -92053,6 +93877,24 @@
|
|
|
92053
93877
|
"inputSchemaCoverage": "typed",
|
|
92054
93878
|
"outputSchemaCoverage": "typed"
|
|
92055
93879
|
},
|
|
93880
|
+
{
|
|
93881
|
+
"id": "tailscale.get",
|
|
93882
|
+
"category": "remote-access",
|
|
93883
|
+
"access": "authenticated",
|
|
93884
|
+
"rest": null,
|
|
93885
|
+
"typedClientIo": true,
|
|
93886
|
+
"inputSchemaCoverage": "schema-less",
|
|
93887
|
+
"outputSchemaCoverage": "typed"
|
|
93888
|
+
},
|
|
93889
|
+
{
|
|
93890
|
+
"id": "tailscale.serve.run",
|
|
93891
|
+
"category": "remote-access",
|
|
93892
|
+
"access": "authenticated",
|
|
93893
|
+
"rest": null,
|
|
93894
|
+
"typedClientIo": true,
|
|
93895
|
+
"inputSchemaCoverage": "schema-less",
|
|
93896
|
+
"outputSchemaCoverage": "typed"
|
|
93897
|
+
},
|
|
92056
93898
|
{
|
|
92057
93899
|
"id": "review.snapshot",
|
|
92058
93900
|
"category": "review",
|
|
@@ -92359,6 +94201,33 @@
|
|
|
92359
94201
|
"inputSchemaCoverage": "typed",
|
|
92360
94202
|
"outputSchemaCoverage": "typed"
|
|
92361
94203
|
},
|
|
94204
|
+
{
|
|
94205
|
+
"id": "sessions.queuedMessages.delete",
|
|
94206
|
+
"category": "sessions",
|
|
94207
|
+
"access": "authenticated",
|
|
94208
|
+
"rest": "DELETE /api/sessions/{sessionId}/queued-messages/{messageId}",
|
|
94209
|
+
"typedClientIo": true,
|
|
94210
|
+
"inputSchemaCoverage": "typed",
|
|
94211
|
+
"outputSchemaCoverage": "typed"
|
|
94212
|
+
},
|
|
94213
|
+
{
|
|
94214
|
+
"id": "sessions.queuedMessages.edit",
|
|
94215
|
+
"category": "sessions",
|
|
94216
|
+
"access": "authenticated",
|
|
94217
|
+
"rest": "POST /api/sessions/{sessionId}/queued-messages/{messageId}",
|
|
94218
|
+
"typedClientIo": true,
|
|
94219
|
+
"inputSchemaCoverage": "typed",
|
|
94220
|
+
"outputSchemaCoverage": "typed"
|
|
94221
|
+
},
|
|
94222
|
+
{
|
|
94223
|
+
"id": "sessions.queuedMessages.list",
|
|
94224
|
+
"category": "sessions",
|
|
94225
|
+
"access": "authenticated",
|
|
94226
|
+
"rest": "GET /api/sessions/{sessionId}/queued-messages",
|
|
94227
|
+
"typedClientIo": true,
|
|
94228
|
+
"inputSchemaCoverage": "typed",
|
|
94229
|
+
"outputSchemaCoverage": "typed"
|
|
94230
|
+
},
|
|
92362
94231
|
{
|
|
92363
94232
|
"id": "sessions.register",
|
|
92364
94233
|
"category": "sessions",
|
|
@@ -92395,6 +94264,15 @@
|
|
|
92395
94264
|
"inputSchemaCoverage": "typed",
|
|
92396
94265
|
"outputSchemaCoverage": "typed"
|
|
92397
94266
|
},
|
|
94267
|
+
{
|
|
94268
|
+
"id": "sessions.toolCalls.cancel",
|
|
94269
|
+
"category": "sessions",
|
|
94270
|
+
"access": "authenticated",
|
|
94271
|
+
"rest": "POST /api/sessions/{sessionId}/tool-calls/{callId}/cancel",
|
|
94272
|
+
"typedClientIo": true,
|
|
94273
|
+
"inputSchemaCoverage": "typed",
|
|
94274
|
+
"outputSchemaCoverage": "typed"
|
|
94275
|
+
},
|
|
92398
94276
|
{
|
|
92399
94277
|
"id": "security.settings",
|
|
92400
94278
|
"category": "settings",
|
|
@@ -92773,6 +94651,15 @@
|
|
|
92773
94651
|
"inputSchemaCoverage": "typed",
|
|
92774
94652
|
"outputSchemaCoverage": "typed"
|
|
92775
94653
|
},
|
|
94654
|
+
{
|
|
94655
|
+
"id": "worktrees.discard",
|
|
94656
|
+
"category": "worktrees",
|
|
94657
|
+
"access": "authenticated",
|
|
94658
|
+
"rest": null,
|
|
94659
|
+
"typedClientIo": true,
|
|
94660
|
+
"inputSchemaCoverage": "typed",
|
|
94661
|
+
"outputSchemaCoverage": "typed"
|
|
94662
|
+
},
|
|
92776
94663
|
{
|
|
92777
94664
|
"id": "worktrees.setup.run",
|
|
92778
94665
|
"category": "worktrees",
|