@agent-os-sdk/client 0.9.13 → 0.9.15
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/dist/client/AgentOsClient.d.ts +8 -4
- package/dist/client/AgentOsClient.d.ts.map +1 -1
- package/dist/client/AgentOsClient.js +12 -6
- package/dist/errors/factory.d.ts +2 -0
- package/dist/errors/factory.d.ts.map +1 -1
- package/dist/errors/factory.js +5 -1
- package/dist/generated/openapi.d.ts +544 -744
- package/dist/generated/openapi.d.ts.map +1 -1
- package/dist/index.d.ts +8 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -2
- package/dist/modules/agents.d.ts +55 -7
- package/dist/modules/agents.d.ts.map +1 -1
- package/dist/modules/agents.js +68 -7
- package/dist/modules/contracts.d.ts +48 -0
- package/dist/modules/contracts.d.ts.map +1 -0
- package/dist/modules/contracts.js +25 -0
- package/dist/modules/evaluation.d.ts +64 -0
- package/dist/modules/evaluation.d.ts.map +1 -1
- package/dist/modules/evaluation.js +12 -0
- package/dist/modules/improvements.d.ts +52 -0
- package/dist/modules/improvements.d.ts.map +1 -0
- package/dist/modules/improvements.js +27 -0
- package/dist/modules/metaAgent.d.ts +62 -0
- package/dist/modules/metaAgent.d.ts.map +1 -0
- package/dist/modules/metaAgent.js +25 -0
- package/dist/modules/presets.d.ts.map +1 -1
- package/dist/modules/presets.js +113 -44
- package/dist/modules/runs.d.ts +9 -0
- package/dist/modules/runs.d.ts.map +1 -1
- package/dist/modules/runs.js +14 -1
- package/dist/modules/templates.d.ts +28 -0
- package/dist/modules/templates.d.ts.map +1 -0
- package/dist/modules/templates.js +19 -0
- package/package.json +52 -51
- package/src/client/AgentOsClient.ts +12 -6
- package/src/errors/factory.ts +7 -2
- package/src/generated/openapi.ts +544 -744
- package/src/generated/swagger.json +551 -924
- package/src/index.ts +22 -2
- package/src/modules/agents.ts +123 -8
- package/src/modules/contracts.ts +80 -0
- package/src/modules/evaluation.ts +80 -0
- package/src/modules/improvements.ts +71 -0
- package/src/modules/metaAgent.ts +87 -0
- package/src/modules/presets.ts +118 -50
- package/src/modules/runs.ts +20 -1
- package/src/modules/templates.ts +40 -0
- package/src/modules/builder.ts +0 -456
- package/src/modules/graphs.ts +0 -188
|
@@ -114,15 +114,117 @@
|
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
},
|
|
117
|
+
"/v1/api/agents/{agentId}/runtime-contexts": {
|
|
118
|
+
"get": {
|
|
119
|
+
"tags": [
|
|
120
|
+
"AgentRuntimeContexts"
|
|
121
|
+
],
|
|
122
|
+
"parameters": [
|
|
123
|
+
{
|
|
124
|
+
"name": "agentId",
|
|
125
|
+
"in": "path",
|
|
126
|
+
"required": true,
|
|
127
|
+
"schema": {
|
|
128
|
+
"type": "string",
|
|
129
|
+
"format": "uuid"
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"responses": {
|
|
134
|
+
"200": {
|
|
135
|
+
"description": "OK"
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"/v1/api/agents/{agentId}/runtime-contexts/{contextKey}": {
|
|
141
|
+
"get": {
|
|
142
|
+
"tags": [
|
|
143
|
+
"AgentRuntimeContexts"
|
|
144
|
+
],
|
|
145
|
+
"parameters": [
|
|
146
|
+
{
|
|
147
|
+
"name": "agentId",
|
|
148
|
+
"in": "path",
|
|
149
|
+
"required": true,
|
|
150
|
+
"schema": {
|
|
151
|
+
"type": "string",
|
|
152
|
+
"format": "uuid"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "contextKey",
|
|
157
|
+
"in": "path",
|
|
158
|
+
"required": true,
|
|
159
|
+
"schema": {
|
|
160
|
+
"type": "string"
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"responses": {
|
|
165
|
+
"200": {
|
|
166
|
+
"description": "OK"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"put": {
|
|
171
|
+
"tags": [
|
|
172
|
+
"AgentRuntimeContexts"
|
|
173
|
+
],
|
|
174
|
+
"parameters": [
|
|
175
|
+
{
|
|
176
|
+
"name": "agentId",
|
|
177
|
+
"in": "path",
|
|
178
|
+
"required": true,
|
|
179
|
+
"schema": {
|
|
180
|
+
"type": "string",
|
|
181
|
+
"format": "uuid"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"name": "contextKey",
|
|
186
|
+
"in": "path",
|
|
187
|
+
"required": true,
|
|
188
|
+
"schema": {
|
|
189
|
+
"type": "string"
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
"requestBody": {
|
|
194
|
+
"content": {
|
|
195
|
+
"application/json": {
|
|
196
|
+
"schema": {
|
|
197
|
+
"$ref": "#/components/schemas/UpsertAgentRuntimeContextRequest"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"text/json": {
|
|
201
|
+
"schema": {
|
|
202
|
+
"$ref": "#/components/schemas/UpsertAgentRuntimeContextRequest"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"application/*+json": {
|
|
206
|
+
"schema": {
|
|
207
|
+
"$ref": "#/components/schemas/UpsertAgentRuntimeContextRequest"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"responses": {
|
|
213
|
+
"200": {
|
|
214
|
+
"description": "OK"
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
},
|
|
117
219
|
"/v1/api/agents": {
|
|
118
220
|
"post": {
|
|
119
221
|
"tags": [
|
|
120
222
|
"Agents"
|
|
121
223
|
],
|
|
122
224
|
"summary": "Creates a new agent in the current workspace.",
|
|
123
|
-
"description": "Creates a new agent
|
|
225
|
+
"description": "Creates a new agent in draft mode and seeds a minimal `agent_ir.v1`.\nThe agent must have a published artifact before it can be used for runs.\n\n**Example Request:**\n```json\n{\n \"name\": \"customer-support-agent\"\n}\n```",
|
|
124
226
|
"requestBody": {
|
|
125
|
-
"description": "The agent creation request containing name
|
|
227
|
+
"description": "The agent creation request containing the name and optional metadata.",
|
|
126
228
|
"content": {
|
|
127
229
|
"application/json": {
|
|
128
230
|
"schema": {
|
|
@@ -405,6 +507,98 @@
|
|
|
405
507
|
}
|
|
406
508
|
}
|
|
407
509
|
},
|
|
510
|
+
"/v1/api/agents/{id}/credential-bindings": {
|
|
511
|
+
"post": {
|
|
512
|
+
"tags": [
|
|
513
|
+
"Agents"
|
|
514
|
+
],
|
|
515
|
+
"summary": "Creates or updates a credential binding for an agent alias.",
|
|
516
|
+
"parameters": [
|
|
517
|
+
{
|
|
518
|
+
"name": "id",
|
|
519
|
+
"in": "path",
|
|
520
|
+
"description": "The agent identifier.",
|
|
521
|
+
"required": true,
|
|
522
|
+
"schema": {
|
|
523
|
+
"type": "string",
|
|
524
|
+
"format": "uuid"
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
],
|
|
528
|
+
"requestBody": {
|
|
529
|
+
"description": "Binding payload (credential id, alias, priority).",
|
|
530
|
+
"content": {
|
|
531
|
+
"application/json": {
|
|
532
|
+
"schema": {
|
|
533
|
+
"$ref": "#/components/schemas/UpsertAgentCredentialBindingRequest"
|
|
534
|
+
}
|
|
535
|
+
},
|
|
536
|
+
"text/json": {
|
|
537
|
+
"schema": {
|
|
538
|
+
"$ref": "#/components/schemas/UpsertAgentCredentialBindingRequest"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"application/*+json": {
|
|
542
|
+
"schema": {
|
|
543
|
+
"$ref": "#/components/schemas/UpsertAgentCredentialBindingRequest"
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"responses": {
|
|
549
|
+
"201": {
|
|
550
|
+
"description": "Created",
|
|
551
|
+
"content": {
|
|
552
|
+
"application/json": {
|
|
553
|
+
"schema": {
|
|
554
|
+
"$ref": "#/components/schemas/UpsertAgentCredentialBindingResponse"
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
"200": {
|
|
560
|
+
"description": "OK",
|
|
561
|
+
"content": {
|
|
562
|
+
"application/json": {
|
|
563
|
+
"schema": {
|
|
564
|
+
"$ref": "#/components/schemas/UpsertAgentCredentialBindingResponse"
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"400": {
|
|
570
|
+
"description": "Bad Request",
|
|
571
|
+
"content": {
|
|
572
|
+
"application/json": {
|
|
573
|
+
"schema": {
|
|
574
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"401": {
|
|
580
|
+
"description": "Unauthorized",
|
|
581
|
+
"content": {
|
|
582
|
+
"application/json": {
|
|
583
|
+
"schema": {
|
|
584
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
"404": {
|
|
590
|
+
"description": "Not Found",
|
|
591
|
+
"content": {
|
|
592
|
+
"application/json": {
|
|
593
|
+
"schema": {
|
|
594
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
},
|
|
408
602
|
"/v1/api/agents/{id}/publish": {
|
|
409
603
|
"post": {
|
|
410
604
|
"tags": [
|
|
@@ -495,13 +689,12 @@
|
|
|
495
689
|
}
|
|
496
690
|
}
|
|
497
691
|
},
|
|
498
|
-
"/v1/api/agents/{id}/draft/
|
|
692
|
+
"/v1/api/agents/{id}/draft/ir": {
|
|
499
693
|
"get": {
|
|
500
694
|
"tags": [
|
|
501
695
|
"Agents"
|
|
502
696
|
],
|
|
503
|
-
"summary": "Gets the draft
|
|
504
|
-
"description": "Returns the current draft graph JSON as saved by autosave.\nStudio should use this as source of truth, not generate graphs locally.\n\n**Response includes ETag** for subsequent PUT If-Match.",
|
|
697
|
+
"summary": "Gets the draft authoring IR (`agent_ir.v1`) for an agent.",
|
|
505
698
|
"parameters": [
|
|
506
699
|
{
|
|
507
700
|
"name": "id",
|
|
@@ -519,7 +712,7 @@
|
|
|
519
712
|
"content": {
|
|
520
713
|
"application/json": {
|
|
521
714
|
"schema": {
|
|
522
|
-
"$ref": "#/components/schemas/
|
|
715
|
+
"$ref": "#/components/schemas/AgentDraftIrResponse"
|
|
523
716
|
}
|
|
524
717
|
}
|
|
525
718
|
}
|
|
@@ -533,6 +726,9 @@
|
|
|
533
726
|
}
|
|
534
727
|
}
|
|
535
728
|
}
|
|
729
|
+
},
|
|
730
|
+
"500": {
|
|
731
|
+
"description": "Internal Server Error"
|
|
536
732
|
}
|
|
537
733
|
}
|
|
538
734
|
},
|
|
@@ -540,8 +736,7 @@
|
|
|
540
736
|
"tags": [
|
|
541
737
|
"Agents"
|
|
542
738
|
],
|
|
543
|
-
"summary": "Updates the draft
|
|
544
|
-
"description": "**IMPORTANT:** Draft is for UI autosave only. Publish does NOT read from draft.\nPublish continues to use `request.GraphSpec` as the canonical source.\n\nRequires `If-Match` header with ETag from previous GET/PUT.\n\n**ETag Format:**\n- Header: `\"agentId:ticks\"` (with quotes)\n- Body: `agentId:ticks` (no quotes)\n\n**Hints (in ProblemDetails.Extensions):**\n- 428: `include_if_match` - SDK should auto-fetch ETag\n- 412: `reload_and_retry` - Front should refetch and confirm\n- 400: `fix_payload` - Editor should show validation error",
|
|
739
|
+
"summary": "Updates the draft authoring IR (`agent_ir.v1`) for an agent.",
|
|
545
740
|
"parameters": [
|
|
546
741
|
{
|
|
547
742
|
"name": "id",
|
|
@@ -557,17 +752,17 @@
|
|
|
557
752
|
"content": {
|
|
558
753
|
"application/json": {
|
|
559
754
|
"schema": {
|
|
560
|
-
"$ref": "#/components/schemas/
|
|
755
|
+
"$ref": "#/components/schemas/UpdateDraftIrRequest"
|
|
561
756
|
}
|
|
562
757
|
},
|
|
563
758
|
"text/json": {
|
|
564
759
|
"schema": {
|
|
565
|
-
"$ref": "#/components/schemas/
|
|
760
|
+
"$ref": "#/components/schemas/UpdateDraftIrRequest"
|
|
566
761
|
}
|
|
567
762
|
},
|
|
568
763
|
"application/*+json": {
|
|
569
764
|
"schema": {
|
|
570
|
-
"$ref": "#/components/schemas/
|
|
765
|
+
"$ref": "#/components/schemas/UpdateDraftIrRequest"
|
|
571
766
|
}
|
|
572
767
|
}
|
|
573
768
|
}
|
|
@@ -578,7 +773,7 @@
|
|
|
578
773
|
"content": {
|
|
579
774
|
"application/json": {
|
|
580
775
|
"schema": {
|
|
581
|
-
"$ref": "#/components/schemas/
|
|
776
|
+
"$ref": "#/components/schemas/AgentDraftIrResponseApiEnvelope"
|
|
582
777
|
}
|
|
583
778
|
}
|
|
584
779
|
}
|
|
@@ -622,6 +817,12 @@
|
|
|
622
817
|
}
|
|
623
818
|
}
|
|
624
819
|
}
|
|
820
|
+
},
|
|
821
|
+
"500": {
|
|
822
|
+
"description": "Internal Server Error"
|
|
823
|
+
},
|
|
824
|
+
"503": {
|
|
825
|
+
"description": "Service Unavailable"
|
|
625
826
|
}
|
|
626
827
|
}
|
|
627
828
|
}
|
|
@@ -1199,13 +1400,12 @@
|
|
|
1199
1400
|
}
|
|
1200
1401
|
}
|
|
1201
1402
|
},
|
|
1202
|
-
"/v1/api/
|
|
1203
|
-
"
|
|
1403
|
+
"/v1/api/agents/{agentId}/bundles/{bundleId}/manifest": {
|
|
1404
|
+
"get": {
|
|
1204
1405
|
"tags": [
|
|
1205
|
-
"
|
|
1406
|
+
"BundleManifest"
|
|
1206
1407
|
],
|
|
1207
|
-
"summary": "
|
|
1208
|
-
"description": "KERNEL: Frontend sends intention only. CP loads everything from DB.\nSECURITY: X-Workspace-Id header is MANDATORY for workspace isolation.",
|
|
1408
|
+
"summary": "Get artifact manifest for a bundle.",
|
|
1209
1409
|
"parameters": [
|
|
1210
1410
|
{
|
|
1211
1411
|
"name": "agentId",
|
|
@@ -1215,43 +1415,9 @@
|
|
|
1215
1415
|
"type": "string",
|
|
1216
1416
|
"format": "uuid"
|
|
1217
1417
|
}
|
|
1218
|
-
}
|
|
1219
|
-
],
|
|
1220
|
-
"requestBody": {
|
|
1221
|
-
"content": {
|
|
1222
|
-
"application/json": {
|
|
1223
|
-
"schema": {
|
|
1224
|
-
"$ref": "#/components/schemas/BuilderChatRequest"
|
|
1225
|
-
}
|
|
1226
|
-
},
|
|
1227
|
-
"text/json": {
|
|
1228
|
-
"schema": {
|
|
1229
|
-
"$ref": "#/components/schemas/BuilderChatRequest"
|
|
1230
|
-
}
|
|
1231
|
-
},
|
|
1232
|
-
"application/*+json": {
|
|
1233
|
-
"schema": {
|
|
1234
|
-
"$ref": "#/components/schemas/BuilderChatRequest"
|
|
1235
|
-
}
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
},
|
|
1239
|
-
"responses": {
|
|
1240
|
-
"200": {
|
|
1241
|
-
"description": "OK"
|
|
1242
|
-
}
|
|
1243
|
-
}
|
|
1244
|
-
}
|
|
1245
|
-
},
|
|
1246
|
-
"/v1/api/builder/{agentId}/chat/sync": {
|
|
1247
|
-
"post": {
|
|
1248
|
-
"tags": [
|
|
1249
|
-
"Builder"
|
|
1250
|
-
],
|
|
1251
|
-
"summary": "Synchronous version of builder chat (for testing).",
|
|
1252
|
-
"parameters": [
|
|
1418
|
+
},
|
|
1253
1419
|
{
|
|
1254
|
-
"name": "
|
|
1420
|
+
"name": "bundleId",
|
|
1255
1421
|
"in": "path",
|
|
1256
1422
|
"required": true,
|
|
1257
1423
|
"schema": {
|
|
@@ -1260,25 +1426,6 @@
|
|
|
1260
1426
|
}
|
|
1261
1427
|
}
|
|
1262
1428
|
],
|
|
1263
|
-
"requestBody": {
|
|
1264
|
-
"content": {
|
|
1265
|
-
"application/json": {
|
|
1266
|
-
"schema": {
|
|
1267
|
-
"$ref": "#/components/schemas/BuilderChatRequest"
|
|
1268
|
-
}
|
|
1269
|
-
},
|
|
1270
|
-
"text/json": {
|
|
1271
|
-
"schema": {
|
|
1272
|
-
"$ref": "#/components/schemas/BuilderChatRequest"
|
|
1273
|
-
}
|
|
1274
|
-
},
|
|
1275
|
-
"application/*+json": {
|
|
1276
|
-
"schema": {
|
|
1277
|
-
"$ref": "#/components/schemas/BuilderChatRequest"
|
|
1278
|
-
}
|
|
1279
|
-
}
|
|
1280
|
-
}
|
|
1281
|
-
},
|
|
1282
1429
|
"responses": {
|
|
1283
1430
|
"200": {
|
|
1284
1431
|
"description": "OK"
|
|
@@ -1286,12 +1433,12 @@
|
|
|
1286
1433
|
}
|
|
1287
1434
|
}
|
|
1288
1435
|
},
|
|
1289
|
-
"/v1/api/agents/{agentId}/bundles/{bundleId}/
|
|
1436
|
+
"/v1/api/agents/{agentId}/bundles/{bundleId}/graph/mermaid": {
|
|
1290
1437
|
"get": {
|
|
1291
1438
|
"tags": [
|
|
1292
1439
|
"BundleManifest"
|
|
1293
1440
|
],
|
|
1294
|
-
"summary": "Get
|
|
1441
|
+
"summary": "Get Mermaid diagram for graph.",
|
|
1295
1442
|
"parameters": [
|
|
1296
1443
|
{
|
|
1297
1444
|
"name": "agentId",
|
|
@@ -1319,52 +1466,19 @@
|
|
|
1319
1466
|
}
|
|
1320
1467
|
}
|
|
1321
1468
|
},
|
|
1322
|
-
"/v1/api/
|
|
1469
|
+
"/v1/api/catalog/nodes": {
|
|
1323
1470
|
"get": {
|
|
1324
1471
|
"tags": [
|
|
1325
|
-
"
|
|
1472
|
+
"Catalog"
|
|
1326
1473
|
],
|
|
1327
|
-
"summary": "Get Mermaid diagram for graph.",
|
|
1328
1474
|
"parameters": [
|
|
1329
1475
|
{
|
|
1330
|
-
"name": "
|
|
1331
|
-
"in": "
|
|
1332
|
-
"required": true,
|
|
1476
|
+
"name": "version",
|
|
1477
|
+
"in": "query",
|
|
1333
1478
|
"schema": {
|
|
1334
|
-
"type": "
|
|
1335
|
-
"format": "
|
|
1336
|
-
|
|
1337
|
-
},
|
|
1338
|
-
{
|
|
1339
|
-
"name": "bundleId",
|
|
1340
|
-
"in": "path",
|
|
1341
|
-
"required": true,
|
|
1342
|
-
"schema": {
|
|
1343
|
-
"type": "string",
|
|
1344
|
-
"format": "uuid"
|
|
1345
|
-
}
|
|
1346
|
-
}
|
|
1347
|
-
],
|
|
1348
|
-
"responses": {
|
|
1349
|
-
"200": {
|
|
1350
|
-
"description": "OK"
|
|
1351
|
-
}
|
|
1352
|
-
}
|
|
1353
|
-
}
|
|
1354
|
-
},
|
|
1355
|
-
"/v1/api/catalog/nodes": {
|
|
1356
|
-
"get": {
|
|
1357
|
-
"tags": [
|
|
1358
|
-
"Catalog"
|
|
1359
|
-
],
|
|
1360
|
-
"parameters": [
|
|
1361
|
-
{
|
|
1362
|
-
"name": "version",
|
|
1363
|
-
"in": "query",
|
|
1364
|
-
"schema": {
|
|
1365
|
-
"type": "integer",
|
|
1366
|
-
"format": "int32",
|
|
1367
|
-
"default": 1
|
|
1479
|
+
"type": "integer",
|
|
1480
|
+
"format": "int32",
|
|
1481
|
+
"default": 1
|
|
1368
1482
|
}
|
|
1369
1483
|
}
|
|
1370
1484
|
],
|
|
@@ -1686,6 +1800,139 @@
|
|
|
1686
1800
|
}
|
|
1687
1801
|
}
|
|
1688
1802
|
},
|
|
1803
|
+
"/v1/api/contracts/supported": {
|
|
1804
|
+
"get": {
|
|
1805
|
+
"tags": [
|
|
1806
|
+
"Contracts"
|
|
1807
|
+
],
|
|
1808
|
+
"responses": {
|
|
1809
|
+
"200": {
|
|
1810
|
+
"description": "OK",
|
|
1811
|
+
"content": {
|
|
1812
|
+
"application/json": {
|
|
1813
|
+
"schema": {
|
|
1814
|
+
"$ref": "#/components/schemas/SupportedContractsResponse"
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
}
|
|
1818
|
+
},
|
|
1819
|
+
"500": {
|
|
1820
|
+
"description": "Internal Server Error"
|
|
1821
|
+
},
|
|
1822
|
+
"503": {
|
|
1823
|
+
"description": "Service Unavailable"
|
|
1824
|
+
}
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1827
|
+
},
|
|
1828
|
+
"/v1/api/contracts/validate": {
|
|
1829
|
+
"post": {
|
|
1830
|
+
"tags": [
|
|
1831
|
+
"Contracts"
|
|
1832
|
+
],
|
|
1833
|
+
"requestBody": {
|
|
1834
|
+
"content": {
|
|
1835
|
+
"application/json": {
|
|
1836
|
+
"schema": {
|
|
1837
|
+
"$ref": "#/components/schemas/ValidateContractRequest"
|
|
1838
|
+
}
|
|
1839
|
+
},
|
|
1840
|
+
"text/json": {
|
|
1841
|
+
"schema": {
|
|
1842
|
+
"$ref": "#/components/schemas/ValidateContractRequest"
|
|
1843
|
+
}
|
|
1844
|
+
},
|
|
1845
|
+
"application/*+json": {
|
|
1846
|
+
"schema": {
|
|
1847
|
+
"$ref": "#/components/schemas/ValidateContractRequest"
|
|
1848
|
+
}
|
|
1849
|
+
}
|
|
1850
|
+
}
|
|
1851
|
+
},
|
|
1852
|
+
"responses": {
|
|
1853
|
+
"200": {
|
|
1854
|
+
"description": "OK",
|
|
1855
|
+
"content": {
|
|
1856
|
+
"application/json": {
|
|
1857
|
+
"schema": {
|
|
1858
|
+
"$ref": "#/components/schemas/ValidateContractResponse"
|
|
1859
|
+
}
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
},
|
|
1863
|
+
"400": {
|
|
1864
|
+
"description": "Bad Request",
|
|
1865
|
+
"content": {
|
|
1866
|
+
"application/json": {
|
|
1867
|
+
"schema": {
|
|
1868
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
1869
|
+
}
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1872
|
+
},
|
|
1873
|
+
"500": {
|
|
1874
|
+
"description": "Internal Server Error"
|
|
1875
|
+
},
|
|
1876
|
+
"503": {
|
|
1877
|
+
"description": "Service Unavailable"
|
|
1878
|
+
}
|
|
1879
|
+
}
|
|
1880
|
+
}
|
|
1881
|
+
},
|
|
1882
|
+
"/v1/api/contracts/compile/runtime-package": {
|
|
1883
|
+
"post": {
|
|
1884
|
+
"tags": [
|
|
1885
|
+
"Contracts"
|
|
1886
|
+
],
|
|
1887
|
+
"requestBody": {
|
|
1888
|
+
"content": {
|
|
1889
|
+
"application/json": {
|
|
1890
|
+
"schema": {
|
|
1891
|
+
"$ref": "#/components/schemas/CompileRuntimePackageRequest"
|
|
1892
|
+
}
|
|
1893
|
+
},
|
|
1894
|
+
"text/json": {
|
|
1895
|
+
"schema": {
|
|
1896
|
+
"$ref": "#/components/schemas/CompileRuntimePackageRequest"
|
|
1897
|
+
}
|
|
1898
|
+
},
|
|
1899
|
+
"application/*+json": {
|
|
1900
|
+
"schema": {
|
|
1901
|
+
"$ref": "#/components/schemas/CompileRuntimePackageRequest"
|
|
1902
|
+
}
|
|
1903
|
+
}
|
|
1904
|
+
}
|
|
1905
|
+
},
|
|
1906
|
+
"responses": {
|
|
1907
|
+
"200": {
|
|
1908
|
+
"description": "OK",
|
|
1909
|
+
"content": {
|
|
1910
|
+
"application/json": {
|
|
1911
|
+
"schema": {
|
|
1912
|
+
"$ref": "#/components/schemas/CompileRuntimePackageResponse"
|
|
1913
|
+
}
|
|
1914
|
+
}
|
|
1915
|
+
}
|
|
1916
|
+
},
|
|
1917
|
+
"400": {
|
|
1918
|
+
"description": "Bad Request",
|
|
1919
|
+
"content": {
|
|
1920
|
+
"application/json": {
|
|
1921
|
+
"schema": {
|
|
1922
|
+
"$ref": "#/components/schemas/ProblemDetails"
|
|
1923
|
+
}
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1926
|
+
},
|
|
1927
|
+
"500": {
|
|
1928
|
+
"description": "Internal Server Error"
|
|
1929
|
+
},
|
|
1930
|
+
"503": {
|
|
1931
|
+
"description": "Service Unavailable"
|
|
1932
|
+
}
|
|
1933
|
+
}
|
|
1934
|
+
}
|
|
1935
|
+
},
|
|
1689
1936
|
"/v1/api/credentials": {
|
|
1690
1937
|
"get": {
|
|
1691
1938
|
"tags": [
|
|
@@ -3198,362 +3445,10 @@
|
|
|
3198
3445
|
{
|
|
3199
3446
|
"name": "fileId",
|
|
3200
3447
|
"in": "path",
|
|
3201
|
-
"required": true,
|
|
3202
|
-
"schema": {
|
|
3203
|
-
"type": "string",
|
|
3204
|
-
"format": "uuid"
|
|
3205
|
-
}
|
|
3206
|
-
}
|
|
3207
|
-
],
|
|
3208
|
-
"responses": {
|
|
3209
|
-
"200": {
|
|
3210
|
-
"description": "OK",
|
|
3211
|
-
"content": {
|
|
3212
|
-
"application/json": {
|
|
3213
|
-
"schema": {
|
|
3214
|
-
"$ref": "#/components/schemas/FileDetail"
|
|
3215
|
-
}
|
|
3216
|
-
}
|
|
3217
|
-
}
|
|
3218
|
-
},
|
|
3219
|
-
"404": {
|
|
3220
|
-
"description": "Not Found",
|
|
3221
|
-
"content": {
|
|
3222
|
-
"application/json": {
|
|
3223
|
-
"schema": {
|
|
3224
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3225
|
-
}
|
|
3226
|
-
}
|
|
3227
|
-
}
|
|
3228
|
-
}
|
|
3229
|
-
}
|
|
3230
|
-
},
|
|
3231
|
-
"delete": {
|
|
3232
|
-
"tags": [
|
|
3233
|
-
"Files"
|
|
3234
|
-
],
|
|
3235
|
-
"summary": "Soft delete a file.",
|
|
3236
|
-
"parameters": [
|
|
3237
|
-
{
|
|
3238
|
-
"name": "workspaceId",
|
|
3239
|
-
"in": "path",
|
|
3240
|
-
"required": true,
|
|
3241
|
-
"schema": {
|
|
3242
|
-
"type": "string",
|
|
3243
|
-
"format": "uuid"
|
|
3244
|
-
}
|
|
3245
|
-
},
|
|
3246
|
-
{
|
|
3247
|
-
"name": "fileId",
|
|
3248
|
-
"in": "path",
|
|
3249
|
-
"required": true,
|
|
3250
|
-
"schema": {
|
|
3251
|
-
"type": "string",
|
|
3252
|
-
"format": "uuid"
|
|
3253
|
-
}
|
|
3254
|
-
}
|
|
3255
|
-
],
|
|
3256
|
-
"responses": {
|
|
3257
|
-
"204": {
|
|
3258
|
-
"description": "No Content"
|
|
3259
|
-
},
|
|
3260
|
-
"404": {
|
|
3261
|
-
"description": "Not Found",
|
|
3262
|
-
"content": {
|
|
3263
|
-
"application/json": {
|
|
3264
|
-
"schema": {
|
|
3265
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3266
|
-
}
|
|
3267
|
-
}
|
|
3268
|
-
}
|
|
3269
|
-
}
|
|
3270
|
-
}
|
|
3271
|
-
}
|
|
3272
|
-
},
|
|
3273
|
-
"/v1/api/observability/frontend-log": {
|
|
3274
|
-
"post": {
|
|
3275
|
-
"tags": [
|
|
3276
|
-
"FrontendObservability"
|
|
3277
|
-
],
|
|
3278
|
-
"requestBody": {
|
|
3279
|
-
"content": {
|
|
3280
|
-
"application/json": {
|
|
3281
|
-
"schema": {
|
|
3282
|
-
"$ref": "#/components/schemas/FrontendLogIngestRequest"
|
|
3283
|
-
}
|
|
3284
|
-
}
|
|
3285
|
-
}
|
|
3286
|
-
},
|
|
3287
|
-
"responses": {
|
|
3288
|
-
"200": {
|
|
3289
|
-
"description": "OK"
|
|
3290
|
-
}
|
|
3291
|
-
}
|
|
3292
|
-
}
|
|
3293
|
-
},
|
|
3294
|
-
"/v1/api/graphs/validate": {
|
|
3295
|
-
"post": {
|
|
3296
|
-
"tags": [
|
|
3297
|
-
"Graphs"
|
|
3298
|
-
],
|
|
3299
|
-
"summary": "Validate graph structure without compiling.",
|
|
3300
|
-
"description": "Does NOT require LLM credentials - only validates nodes/edges structure.\nReturns Mermaid diagram if valid, or detailed errors if invalid.\nUse this endpoint for real-time graph builder validation.",
|
|
3301
|
-
"requestBody": {
|
|
3302
|
-
"content": {
|
|
3303
|
-
"application/json": {
|
|
3304
|
-
"schema": {
|
|
3305
|
-
"$ref": "#/components/schemas/ValidateGraphRequest"
|
|
3306
|
-
}
|
|
3307
|
-
},
|
|
3308
|
-
"text/json": {
|
|
3309
|
-
"schema": {
|
|
3310
|
-
"$ref": "#/components/schemas/ValidateGraphRequest"
|
|
3311
|
-
}
|
|
3312
|
-
},
|
|
3313
|
-
"application/*+json": {
|
|
3314
|
-
"schema": {
|
|
3315
|
-
"$ref": "#/components/schemas/ValidateGraphRequest"
|
|
3316
|
-
}
|
|
3317
|
-
}
|
|
3318
|
-
}
|
|
3319
|
-
},
|
|
3320
|
-
"responses": {
|
|
3321
|
-
"200": {
|
|
3322
|
-
"description": "OK",
|
|
3323
|
-
"content": {
|
|
3324
|
-
"application/json": {
|
|
3325
|
-
"schema": {
|
|
3326
|
-
"$ref": "#/components/schemas/ValidateGraphResponse"
|
|
3327
|
-
}
|
|
3328
|
-
}
|
|
3329
|
-
}
|
|
3330
|
-
},
|
|
3331
|
-
"400": {
|
|
3332
|
-
"description": "Bad Request",
|
|
3333
|
-
"content": {
|
|
3334
|
-
"application/json": {
|
|
3335
|
-
"schema": {
|
|
3336
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3337
|
-
}
|
|
3338
|
-
}
|
|
3339
|
-
}
|
|
3340
|
-
},
|
|
3341
|
-
"500": {
|
|
3342
|
-
"description": "Internal Server Error"
|
|
3343
|
-
},
|
|
3344
|
-
"503": {
|
|
3345
|
-
"description": "Service Unavailable"
|
|
3346
|
-
}
|
|
3347
|
-
}
|
|
3348
|
-
}
|
|
3349
|
-
},
|
|
3350
|
-
"/v1/api/graphs/introspect": {
|
|
3351
|
-
"post": {
|
|
3352
|
-
"tags": [
|
|
3353
|
-
"Graphs"
|
|
3354
|
-
],
|
|
3355
|
-
"summary": "Introspect a graph_spec with credentials and return its Mermaid diagram.",
|
|
3356
|
-
"description": "Requires LLM credentials for compilation.\nUse this endpoint when you need the actual LangGraph compiled structure.",
|
|
3357
|
-
"requestBody": {
|
|
3358
|
-
"content": {
|
|
3359
|
-
"application/json": {
|
|
3360
|
-
"schema": {
|
|
3361
|
-
"$ref": "#/components/schemas/IntrospectGraphRequest"
|
|
3362
|
-
}
|
|
3363
|
-
},
|
|
3364
|
-
"text/json": {
|
|
3365
|
-
"schema": {
|
|
3366
|
-
"$ref": "#/components/schemas/IntrospectGraphRequest"
|
|
3367
|
-
}
|
|
3368
|
-
},
|
|
3369
|
-
"application/*+json": {
|
|
3370
|
-
"schema": {
|
|
3371
|
-
"$ref": "#/components/schemas/IntrospectGraphRequest"
|
|
3372
|
-
}
|
|
3373
|
-
}
|
|
3374
|
-
}
|
|
3375
|
-
},
|
|
3376
|
-
"responses": {
|
|
3377
|
-
"200": {
|
|
3378
|
-
"description": "OK"
|
|
3379
|
-
}
|
|
3380
|
-
}
|
|
3381
|
-
}
|
|
3382
|
-
},
|
|
3383
|
-
"/v1/api/graph/commit": {
|
|
3384
|
-
"post": {
|
|
3385
|
-
"tags": [
|
|
3386
|
-
"GraphSpec"
|
|
3387
|
-
],
|
|
3388
|
-
"summary": "Commit GraphSpec — atomic, idempotent, validated.",
|
|
3389
|
-
"description": "**Flow:**\n1. Validate spec_version (reject unsupported)\n2. Verify agent exists in workspace\n3. Check optimistic concurrency (expected_revision)\n4. Call DataPlane to validate/normalize\n5. Canonicalize JSON for deterministic hashing\n6. Idempotence: if revision unchanged, return no_change\n7. Persist with atomic check\n8. Return canonical spec + new revision\n\n**Status Codes:**\n- 200: Success (includes no_change case)\n- 400: Missing workspace\n- 404: Agent not found\n- 409: Revision mismatch (concurrent edit)\n- 422: Validation failed / unsupported spec version\n- 502: DataPlane unreachable",
|
|
3390
|
-
"requestBody": {
|
|
3391
|
-
"content": {
|
|
3392
|
-
"application/json": {
|
|
3393
|
-
"schema": {
|
|
3394
|
-
"$ref": "#/components/schemas/CommitGraphSpecRequest"
|
|
3395
|
-
}
|
|
3396
|
-
},
|
|
3397
|
-
"text/json": {
|
|
3398
|
-
"schema": {
|
|
3399
|
-
"$ref": "#/components/schemas/CommitGraphSpecRequest"
|
|
3400
|
-
}
|
|
3401
|
-
},
|
|
3402
|
-
"application/*+json": {
|
|
3403
|
-
"schema": {
|
|
3404
|
-
"$ref": "#/components/schemas/CommitGraphSpecRequest"
|
|
3405
|
-
}
|
|
3406
|
-
}
|
|
3407
|
-
}
|
|
3408
|
-
},
|
|
3409
|
-
"responses": {
|
|
3410
|
-
"200": {
|
|
3411
|
-
"description": "OK",
|
|
3412
|
-
"content": {
|
|
3413
|
-
"application/json": {
|
|
3414
|
-
"schema": {
|
|
3415
|
-
"$ref": "#/components/schemas/CommitGraphSpecResponseApiEnvelope"
|
|
3416
|
-
}
|
|
3417
|
-
}
|
|
3418
|
-
}
|
|
3419
|
-
},
|
|
3420
|
-
"400": {
|
|
3421
|
-
"description": "Bad Request",
|
|
3422
|
-
"content": {
|
|
3423
|
-
"application/json": {
|
|
3424
|
-
"schema": {
|
|
3425
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3426
|
-
}
|
|
3427
|
-
}
|
|
3428
|
-
}
|
|
3429
|
-
},
|
|
3430
|
-
"404": {
|
|
3431
|
-
"description": "Not Found",
|
|
3432
|
-
"content": {
|
|
3433
|
-
"application/json": {
|
|
3434
|
-
"schema": {
|
|
3435
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3436
|
-
}
|
|
3437
|
-
}
|
|
3438
|
-
}
|
|
3439
|
-
},
|
|
3440
|
-
"409": {
|
|
3441
|
-
"description": "Conflict",
|
|
3442
|
-
"content": {
|
|
3443
|
-
"application/json": {
|
|
3444
|
-
"schema": {
|
|
3445
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3446
|
-
}
|
|
3447
|
-
}
|
|
3448
|
-
}
|
|
3449
|
-
},
|
|
3450
|
-
"422": {
|
|
3451
|
-
"description": "Unprocessable Content",
|
|
3452
|
-
"content": {
|
|
3453
|
-
"application/json": {
|
|
3454
|
-
"schema": {
|
|
3455
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3456
|
-
}
|
|
3457
|
-
}
|
|
3458
|
-
}
|
|
3459
|
-
},
|
|
3460
|
-
"502": {
|
|
3461
|
-
"description": "Bad Gateway",
|
|
3462
|
-
"content": {
|
|
3463
|
-
"application/json": {
|
|
3464
|
-
"schema": {
|
|
3465
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3466
|
-
}
|
|
3467
|
-
}
|
|
3468
|
-
}
|
|
3469
|
-
}
|
|
3470
|
-
}
|
|
3471
|
-
}
|
|
3472
|
-
},
|
|
3473
|
-
"/v1/api/graph/{agentId}": {
|
|
3474
|
-
"get": {
|
|
3475
|
-
"tags": [
|
|
3476
|
-
"GraphSpec"
|
|
3477
|
-
],
|
|
3478
|
-
"summary": "Get current graph spec with revision.",
|
|
3479
|
-
"parameters": [
|
|
3480
|
-
{
|
|
3481
|
-
"name": "agentId",
|
|
3482
|
-
"in": "path",
|
|
3483
|
-
"required": true,
|
|
3484
|
-
"schema": {
|
|
3485
|
-
"type": "string",
|
|
3486
|
-
"format": "uuid"
|
|
3487
|
-
}
|
|
3488
|
-
}
|
|
3489
|
-
],
|
|
3490
|
-
"responses": {
|
|
3491
|
-
"200": {
|
|
3492
|
-
"description": "OK",
|
|
3493
|
-
"content": {
|
|
3494
|
-
"application/json": {
|
|
3495
|
-
"schema": {
|
|
3496
|
-
"$ref": "#/components/schemas/GetGraphSpecResponseApiEnvelope"
|
|
3497
|
-
}
|
|
3498
|
-
}
|
|
3499
|
-
}
|
|
3500
|
-
},
|
|
3501
|
-
"400": {
|
|
3502
|
-
"description": "Bad Request",
|
|
3503
|
-
"content": {
|
|
3504
|
-
"application/json": {
|
|
3505
|
-
"schema": {
|
|
3506
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3507
|
-
}
|
|
3508
|
-
}
|
|
3509
|
-
}
|
|
3510
|
-
},
|
|
3511
|
-
"404": {
|
|
3512
|
-
"description": "Not Found",
|
|
3513
|
-
"content": {
|
|
3514
|
-
"application/json": {
|
|
3515
|
-
"schema": {
|
|
3516
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3517
|
-
}
|
|
3518
|
-
}
|
|
3519
|
-
}
|
|
3520
|
-
},
|
|
3521
|
-
"500": {
|
|
3522
|
-
"description": "Internal Server Error",
|
|
3523
|
-
"content": {
|
|
3524
|
-
"application/json": {
|
|
3525
|
-
"schema": {
|
|
3526
|
-
"$ref": "#/components/schemas/ProblemDetails"
|
|
3527
|
-
}
|
|
3528
|
-
}
|
|
3529
|
-
}
|
|
3530
|
-
}
|
|
3531
|
-
}
|
|
3532
|
-
}
|
|
3533
|
-
},
|
|
3534
|
-
"/v1/api/graph/{agentId}/revisions": {
|
|
3535
|
-
"get": {
|
|
3536
|
-
"tags": [
|
|
3537
|
-
"GraphSpec"
|
|
3538
|
-
],
|
|
3539
|
-
"summary": "List revision history for an agent (metadata only, not full spec).",
|
|
3540
|
-
"parameters": [
|
|
3541
|
-
{
|
|
3542
|
-
"name": "agentId",
|
|
3543
|
-
"in": "path",
|
|
3544
|
-
"required": true,
|
|
3545
|
-
"schema": {
|
|
3546
|
-
"type": "string",
|
|
3547
|
-
"format": "uuid"
|
|
3548
|
-
}
|
|
3549
|
-
},
|
|
3550
|
-
{
|
|
3551
|
-
"name": "limit",
|
|
3552
|
-
"in": "query",
|
|
3448
|
+
"required": true,
|
|
3553
3449
|
"schema": {
|
|
3554
|
-
"type": "
|
|
3555
|
-
"format": "
|
|
3556
|
-
"default": 50
|
|
3450
|
+
"type": "string",
|
|
3451
|
+
"format": "uuid"
|
|
3557
3452
|
}
|
|
3558
3453
|
}
|
|
3559
3454
|
],
|
|
@@ -3563,13 +3458,13 @@
|
|
|
3563
3458
|
"content": {
|
|
3564
3459
|
"application/json": {
|
|
3565
3460
|
"schema": {
|
|
3566
|
-
"$ref": "#/components/schemas/
|
|
3461
|
+
"$ref": "#/components/schemas/FileDetail"
|
|
3567
3462
|
}
|
|
3568
3463
|
}
|
|
3569
3464
|
}
|
|
3570
3465
|
},
|
|
3571
|
-
"
|
|
3572
|
-
"description": "
|
|
3466
|
+
"404": {
|
|
3467
|
+
"description": "Not Found",
|
|
3573
3468
|
"content": {
|
|
3574
3469
|
"application/json": {
|
|
3575
3470
|
"schema": {
|
|
@@ -3579,17 +3474,15 @@
|
|
|
3579
3474
|
}
|
|
3580
3475
|
}
|
|
3581
3476
|
}
|
|
3582
|
-
}
|
|
3583
|
-
|
|
3584
|
-
"/v1/api/graph/{agentId}/revisions/{revision}": {
|
|
3585
|
-
"get": {
|
|
3477
|
+
},
|
|
3478
|
+
"delete": {
|
|
3586
3479
|
"tags": [
|
|
3587
|
-
"
|
|
3480
|
+
"Files"
|
|
3588
3481
|
],
|
|
3589
|
-
"summary": "
|
|
3482
|
+
"summary": "Soft delete a file.",
|
|
3590
3483
|
"parameters": [
|
|
3591
3484
|
{
|
|
3592
|
-
"name": "
|
|
3485
|
+
"name": "workspaceId",
|
|
3593
3486
|
"in": "path",
|
|
3594
3487
|
"required": true,
|
|
3595
3488
|
"schema": {
|
|
@@ -3598,24 +3491,18 @@
|
|
|
3598
3491
|
}
|
|
3599
3492
|
},
|
|
3600
3493
|
{
|
|
3601
|
-
"name": "
|
|
3494
|
+
"name": "fileId",
|
|
3602
3495
|
"in": "path",
|
|
3603
3496
|
"required": true,
|
|
3604
3497
|
"schema": {
|
|
3605
|
-
"type": "string"
|
|
3498
|
+
"type": "string",
|
|
3499
|
+
"format": "uuid"
|
|
3606
3500
|
}
|
|
3607
3501
|
}
|
|
3608
3502
|
],
|
|
3609
3503
|
"responses": {
|
|
3610
|
-
"
|
|
3611
|
-
"description": "
|
|
3612
|
-
"content": {
|
|
3613
|
-
"application/json": {
|
|
3614
|
-
"schema": {
|
|
3615
|
-
"$ref": "#/components/schemas/RevisionDetailResponseApiEnvelope"
|
|
3616
|
-
}
|
|
3617
|
-
}
|
|
3618
|
-
}
|
|
3504
|
+
"204": {
|
|
3505
|
+
"description": "No Content"
|
|
3619
3506
|
},
|
|
3620
3507
|
"404": {
|
|
3621
3508
|
"description": "Not Found",
|
|
@@ -3630,6 +3517,27 @@
|
|
|
3630
3517
|
}
|
|
3631
3518
|
}
|
|
3632
3519
|
},
|
|
3520
|
+
"/v1/api/observability/frontend-log": {
|
|
3521
|
+
"post": {
|
|
3522
|
+
"tags": [
|
|
3523
|
+
"FrontendObservability"
|
|
3524
|
+
],
|
|
3525
|
+
"requestBody": {
|
|
3526
|
+
"content": {
|
|
3527
|
+
"application/json": {
|
|
3528
|
+
"schema": {
|
|
3529
|
+
"$ref": "#/components/schemas/FrontendLogIngestRequest"
|
|
3530
|
+
}
|
|
3531
|
+
}
|
|
3532
|
+
}
|
|
3533
|
+
},
|
|
3534
|
+
"responses": {
|
|
3535
|
+
"200": {
|
|
3536
|
+
"description": "OK"
|
|
3537
|
+
}
|
|
3538
|
+
}
|
|
3539
|
+
}
|
|
3540
|
+
},
|
|
3633
3541
|
"/v1/api/me": {
|
|
3634
3542
|
"get": {
|
|
3635
3543
|
"tags": [
|
|
@@ -4030,38 +3938,6 @@
|
|
|
4030
3938
|
}
|
|
4031
3939
|
}
|
|
4032
3940
|
},
|
|
4033
|
-
"/v1/api/playground/dry-run": {
|
|
4034
|
-
"post": {
|
|
4035
|
-
"tags": [
|
|
4036
|
-
"Playground"
|
|
4037
|
-
],
|
|
4038
|
-
"summary": "Dry run - compile and validate only, no execution.",
|
|
4039
|
-
"requestBody": {
|
|
4040
|
-
"content": {
|
|
4041
|
-
"application/json": {
|
|
4042
|
-
"schema": {
|
|
4043
|
-
"$ref": "#/components/schemas/DryRunRequest"
|
|
4044
|
-
}
|
|
4045
|
-
},
|
|
4046
|
-
"text/json": {
|
|
4047
|
-
"schema": {
|
|
4048
|
-
"$ref": "#/components/schemas/DryRunRequest"
|
|
4049
|
-
}
|
|
4050
|
-
},
|
|
4051
|
-
"application/*+json": {
|
|
4052
|
-
"schema": {
|
|
4053
|
-
"$ref": "#/components/schemas/DryRunRequest"
|
|
4054
|
-
}
|
|
4055
|
-
}
|
|
4056
|
-
}
|
|
4057
|
-
},
|
|
4058
|
-
"responses": {
|
|
4059
|
-
"200": {
|
|
4060
|
-
"description": "OK"
|
|
4061
|
-
}
|
|
4062
|
-
}
|
|
4063
|
-
}
|
|
4064
|
-
},
|
|
4065
3941
|
"/v1/api/prompts": {
|
|
4066
3942
|
"post": {
|
|
4067
3943
|
"tags": [
|
|
@@ -7373,7 +7249,7 @@
|
|
|
7373
7249
|
"VectorStores"
|
|
7374
7250
|
],
|
|
7375
7251
|
"summary": "Creates a new vector store for semantic document search.",
|
|
7376
|
-
"description": "Creates a vector store with the specified embedding configuration.\nThe store is ready to accept file attachments immediately after creation.\n\n**Default Configuration:**\n- Provider: `
|
|
7252
|
+
"description": "Creates a vector store with the specified embedding configuration.\nThe store is ready to accept file attachments immediately after creation.\n\n**Default Configuration:**\n- Provider: `google_ai`\n- Model: `gemini-embedding-001`\n- Dimension: `1536`",
|
|
7377
7253
|
"requestBody": {
|
|
7378
7254
|
"description": "Vector store configuration.",
|
|
7379
7255
|
"content": {
|
|
@@ -7874,6 +7750,19 @@
|
|
|
7874
7750
|
}
|
|
7875
7751
|
}
|
|
7876
7752
|
},
|
|
7753
|
+
"/v1/api/workspaces/events/stream": {
|
|
7754
|
+
"get": {
|
|
7755
|
+
"tags": [
|
|
7756
|
+
"WorkspaceEvents"
|
|
7757
|
+
],
|
|
7758
|
+
"summary": "Stream workspace events via SSE.\nWorkspace is resolved from X-Workspace-Id header (standard auth flow).",
|
|
7759
|
+
"responses": {
|
|
7760
|
+
"200": {
|
|
7761
|
+
"description": "OK"
|
|
7762
|
+
}
|
|
7763
|
+
}
|
|
7764
|
+
}
|
|
7765
|
+
},
|
|
7877
7766
|
"/v1/api/workspaces": {
|
|
7878
7767
|
"get": {
|
|
7879
7768
|
"tags": [
|
|
@@ -8209,7 +8098,7 @@
|
|
|
8209
8098
|
},
|
|
8210
8099
|
"additionalProperties": false
|
|
8211
8100
|
},
|
|
8212
|
-
"
|
|
8101
|
+
"AgentDraftIrResponse": {
|
|
8213
8102
|
"type": "object",
|
|
8214
8103
|
"properties": {
|
|
8215
8104
|
"id": {
|
|
@@ -8220,7 +8109,7 @@
|
|
|
8220
8109
|
"type": "string",
|
|
8221
8110
|
"nullable": true
|
|
8222
8111
|
},
|
|
8223
|
-
"
|
|
8112
|
+
"draft_ir_revision": {
|
|
8224
8113
|
"type": "string",
|
|
8225
8114
|
"nullable": true
|
|
8226
8115
|
},
|
|
@@ -8237,15 +8126,18 @@
|
|
|
8237
8126
|
"e_tag": {
|
|
8238
8127
|
"type": "string",
|
|
8239
8128
|
"nullable": true
|
|
8129
|
+
},
|
|
8130
|
+
"ir_json": {
|
|
8131
|
+
"nullable": true
|
|
8240
8132
|
}
|
|
8241
8133
|
},
|
|
8242
8134
|
"additionalProperties": false
|
|
8243
8135
|
},
|
|
8244
|
-
"
|
|
8136
|
+
"AgentDraftIrResponseApiEnvelope": {
|
|
8245
8137
|
"type": "object",
|
|
8246
8138
|
"properties": {
|
|
8247
8139
|
"data": {
|
|
8248
|
-
"$ref": "#/components/schemas/
|
|
8140
|
+
"$ref": "#/components/schemas/AgentDraftIrResponse"
|
|
8249
8141
|
},
|
|
8250
8142
|
"hints": {
|
|
8251
8143
|
"type": "array",
|
|
@@ -8495,32 +8387,6 @@
|
|
|
8495
8387
|
},
|
|
8496
8388
|
"additionalProperties": false
|
|
8497
8389
|
},
|
|
8498
|
-
"BuilderChatRequest": {
|
|
8499
|
-
"type": "object",
|
|
8500
|
-
"properties": {
|
|
8501
|
-
"message": {
|
|
8502
|
-
"type": "string",
|
|
8503
|
-
"nullable": true
|
|
8504
|
-
},
|
|
8505
|
-
"thread_id": {
|
|
8506
|
-
"type": "string",
|
|
8507
|
-
"nullable": true
|
|
8508
|
-
},
|
|
8509
|
-
"history": {
|
|
8510
|
-
"type": "array",
|
|
8511
|
-
"items": {
|
|
8512
|
-
"$ref": "#/components/schemas/ChatHistoryMessage"
|
|
8513
|
-
},
|
|
8514
|
-
"nullable": true
|
|
8515
|
-
},
|
|
8516
|
-
"base_graph_etag": {
|
|
8517
|
-
"type": "string",
|
|
8518
|
-
"nullable": true
|
|
8519
|
-
}
|
|
8520
|
-
},
|
|
8521
|
-
"additionalProperties": false,
|
|
8522
|
-
"description": "KERNEL P0: Request DTO for builder chat.\nContains ONLY intention fields. No graph_spec, no catalogs."
|
|
8523
|
-
},
|
|
8524
8390
|
"BundleResponse": {
|
|
8525
8391
|
"type": "object",
|
|
8526
8392
|
"properties": {
|
|
@@ -8621,20 +8487,6 @@
|
|
|
8621
8487
|
"type": "integer",
|
|
8622
8488
|
"format": "int32"
|
|
8623
8489
|
},
|
|
8624
|
-
"ChatHistoryMessage": {
|
|
8625
|
-
"type": "object",
|
|
8626
|
-
"properties": {
|
|
8627
|
-
"role": {
|
|
8628
|
-
"type": "string",
|
|
8629
|
-
"nullable": true
|
|
8630
|
-
},
|
|
8631
|
-
"content": {
|
|
8632
|
-
"type": "string",
|
|
8633
|
-
"nullable": true
|
|
8634
|
-
}
|
|
8635
|
-
},
|
|
8636
|
-
"additionalProperties": false
|
|
8637
|
-
},
|
|
8638
8490
|
"CheckpointDetail": {
|
|
8639
8491
|
"type": "object",
|
|
8640
8492
|
"properties": {
|
|
@@ -8660,6 +8512,7 @@
|
|
|
8660
8512
|
},
|
|
8661
8513
|
"parent_checkpoint_id": {
|
|
8662
8514
|
"type": "string",
|
|
8515
|
+
"format": "uuid",
|
|
8663
8516
|
"nullable": true
|
|
8664
8517
|
},
|
|
8665
8518
|
"has_state_snapshot": {
|
|
@@ -8756,6 +8609,7 @@
|
|
|
8756
8609
|
},
|
|
8757
8610
|
"parent_checkpoint_id": {
|
|
8758
8611
|
"type": "string",
|
|
8612
|
+
"format": "uuid",
|
|
8759
8613
|
"nullable": true
|
|
8760
8614
|
},
|
|
8761
8615
|
"created_at": {
|
|
@@ -8772,85 +8626,35 @@
|
|
|
8772
8626
|
},
|
|
8773
8627
|
"additionalProperties": false
|
|
8774
8628
|
},
|
|
8775
|
-
"
|
|
8776
|
-
"type": "object",
|
|
8777
|
-
"properties": {
|
|
8778
|
-
"spec_version": {
|
|
8779
|
-
"type": "string",
|
|
8780
|
-
"nullable": true
|
|
8781
|
-
},
|
|
8782
|
-
"agent_id": {
|
|
8783
|
-
"type": "string",
|
|
8784
|
-
"format": "uuid"
|
|
8785
|
-
},
|
|
8786
|
-
"graph_spec": { },
|
|
8787
|
-
"expected_revision": {
|
|
8788
|
-
"type": "string",
|
|
8789
|
-
"nullable": true
|
|
8790
|
-
},
|
|
8791
|
-
"source": {
|
|
8792
|
-
"type": "string",
|
|
8793
|
-
"description": "Source of the commit: ui.dragdrop, ui.json, meta_builder, system",
|
|
8794
|
-
"nullable": true
|
|
8795
|
-
}
|
|
8796
|
-
},
|
|
8797
|
-
"additionalProperties": false
|
|
8798
|
-
},
|
|
8799
|
-
"CommitGraphSpecResponse": {
|
|
8629
|
+
"CompileRuntimePackageRequest": {
|
|
8800
8630
|
"type": "object",
|
|
8801
8631
|
"properties": {
|
|
8802
|
-
"
|
|
8803
|
-
|
|
8804
|
-
|
|
8632
|
+
"ir_spec": { },
|
|
8633
|
+
"capability_registry_spec": { },
|
|
8634
|
+
"policy_refs": {
|
|
8805
8635
|
"nullable": true
|
|
8806
8636
|
},
|
|
8807
|
-
"
|
|
8808
|
-
"type": "string",
|
|
8809
|
-
"format": "uuid"
|
|
8810
|
-
},
|
|
8811
|
-
"revision": {
|
|
8812
|
-
"type": "string",
|
|
8637
|
+
"runtime_config_refs": {
|
|
8813
8638
|
"nullable": true
|
|
8814
8639
|
},
|
|
8815
|
-
"
|
|
8640
|
+
"package_id": {
|
|
8816
8641
|
"type": "string",
|
|
8817
|
-
"description": "Only present in conflict response (409 body).",
|
|
8818
8642
|
"nullable": true
|
|
8819
8643
|
},
|
|
8820
|
-
"
|
|
8644
|
+
"metadata": {
|
|
8821
8645
|
"nullable": true
|
|
8822
8646
|
},
|
|
8823
|
-
"
|
|
8647
|
+
"compiled_at": {
|
|
8824
8648
|
"type": "string",
|
|
8825
|
-
"format": "date-time",
|
|
8826
|
-
"nullable": true
|
|
8827
|
-
},
|
|
8828
|
-
"warnings": {
|
|
8829
|
-
"type": "array",
|
|
8830
|
-
"items": {
|
|
8831
|
-
"$ref": "#/components/schemas/ValidationMessage"
|
|
8832
|
-
},
|
|
8833
8649
|
"nullable": true
|
|
8834
|
-
},
|
|
8835
|
-
"validation": {
|
|
8836
|
-
"$ref": "#/components/schemas/ValidationResult"
|
|
8837
8650
|
}
|
|
8838
8651
|
},
|
|
8839
8652
|
"additionalProperties": false
|
|
8840
8653
|
},
|
|
8841
|
-
"
|
|
8654
|
+
"CompileRuntimePackageResponse": {
|
|
8842
8655
|
"type": "object",
|
|
8843
8656
|
"properties": {
|
|
8844
|
-
"
|
|
8845
|
-
"$ref": "#/components/schemas/CommitGraphSpecResponse"
|
|
8846
|
-
},
|
|
8847
|
-
"hints": {
|
|
8848
|
-
"type": "array",
|
|
8849
|
-
"items": {
|
|
8850
|
-
"$ref": "#/components/schemas/ApiHint"
|
|
8851
|
-
},
|
|
8852
|
-
"nullable": true
|
|
8853
|
-
}
|
|
8657
|
+
"package_spec": { }
|
|
8854
8658
|
},
|
|
8855
8659
|
"additionalProperties": false
|
|
8856
8660
|
},
|
|
@@ -8894,6 +8698,7 @@
|
|
|
8894
8698
|
},
|
|
8895
8699
|
"parent_checkpoint_id": {
|
|
8896
8700
|
"type": "string",
|
|
8701
|
+
"format": "uuid",
|
|
8897
8702
|
"nullable": true
|
|
8898
8703
|
}
|
|
8899
8704
|
},
|
|
@@ -9169,6 +8974,11 @@
|
|
|
9169
8974
|
"type": "string",
|
|
9170
8975
|
"format": "uuid",
|
|
9171
8976
|
"nullable": true
|
|
8977
|
+
},
|
|
8978
|
+
"correlation_id": {
|
|
8979
|
+
"type": "string",
|
|
8980
|
+
"format": "uuid",
|
|
8981
|
+
"nullable": true
|
|
9172
8982
|
}
|
|
9173
8983
|
},
|
|
9174
8984
|
"additionalProperties": false
|
|
@@ -9306,10 +9116,6 @@
|
|
|
9306
9116
|
"type": "string",
|
|
9307
9117
|
"nullable": true
|
|
9308
9118
|
},
|
|
9309
|
-
"embedding_provider": {
|
|
9310
|
-
"type": "string",
|
|
9311
|
-
"nullable": true
|
|
9312
|
-
},
|
|
9313
9119
|
"embedding_model": {
|
|
9314
9120
|
"type": "string",
|
|
9315
9121
|
"nullable": true
|
|
@@ -9514,19 +9320,6 @@
|
|
|
9514
9320
|
},
|
|
9515
9321
|
"additionalProperties": false
|
|
9516
9322
|
},
|
|
9517
|
-
"DryRunRequest": {
|
|
9518
|
-
"type": "object",
|
|
9519
|
-
"properties": {
|
|
9520
|
-
"agent_id": {
|
|
9521
|
-
"type": "string",
|
|
9522
|
-
"format": "uuid"
|
|
9523
|
-
},
|
|
9524
|
-
"graph_spec": {
|
|
9525
|
-
"nullable": true
|
|
9526
|
-
}
|
|
9527
|
-
},
|
|
9528
|
-
"additionalProperties": false
|
|
9529
|
-
},
|
|
9530
9323
|
"EnsureMembershipRequest": {
|
|
9531
9324
|
"type": "object",
|
|
9532
9325
|
"properties": {
|
|
@@ -9749,54 +9542,6 @@
|
|
|
9749
9542
|
},
|
|
9750
9543
|
"additionalProperties": false
|
|
9751
9544
|
},
|
|
9752
|
-
"GetGraphSpecResponse": {
|
|
9753
|
-
"type": "object",
|
|
9754
|
-
"properties": {
|
|
9755
|
-
"agent_id": {
|
|
9756
|
-
"type": "string",
|
|
9757
|
-
"format": "uuid"
|
|
9758
|
-
},
|
|
9759
|
-
"revision": {
|
|
9760
|
-
"type": "string",
|
|
9761
|
-
"nullable": true
|
|
9762
|
-
},
|
|
9763
|
-
"canonical_spec": {
|
|
9764
|
-
"nullable": true
|
|
9765
|
-
},
|
|
9766
|
-
"committed_at": {
|
|
9767
|
-
"type": "string",
|
|
9768
|
-
"format": "date-time",
|
|
9769
|
-
"nullable": true
|
|
9770
|
-
},
|
|
9771
|
-
"warnings": {
|
|
9772
|
-
"type": "array",
|
|
9773
|
-
"items": {
|
|
9774
|
-
"$ref": "#/components/schemas/ValidationMessage"
|
|
9775
|
-
},
|
|
9776
|
-
"nullable": true
|
|
9777
|
-
},
|
|
9778
|
-
"validation": {
|
|
9779
|
-
"$ref": "#/components/schemas/ValidationResult"
|
|
9780
|
-
}
|
|
9781
|
-
},
|
|
9782
|
-
"additionalProperties": false
|
|
9783
|
-
},
|
|
9784
|
-
"GetGraphSpecResponseApiEnvelope": {
|
|
9785
|
-
"type": "object",
|
|
9786
|
-
"properties": {
|
|
9787
|
-
"data": {
|
|
9788
|
-
"$ref": "#/components/schemas/GetGraphSpecResponse"
|
|
9789
|
-
},
|
|
9790
|
-
"hints": {
|
|
9791
|
-
"type": "array",
|
|
9792
|
-
"items": {
|
|
9793
|
-
"$ref": "#/components/schemas/ApiHint"
|
|
9794
|
-
},
|
|
9795
|
-
"nullable": true
|
|
9796
|
-
}
|
|
9797
|
-
},
|
|
9798
|
-
"additionalProperties": false
|
|
9799
|
-
},
|
|
9800
9545
|
"GrantAccessRequest": {
|
|
9801
9546
|
"type": "object",
|
|
9802
9547
|
"properties": {
|
|
@@ -9832,40 +9577,14 @@
|
|
|
9832
9577
|
},
|
|
9833
9578
|
"warnings": {
|
|
9834
9579
|
"type": "array",
|
|
9835
|
-
"items": {
|
|
9836
|
-
"type": "string"
|
|
9837
|
-
},
|
|
9838
|
-
"nullable": true
|
|
9839
|
-
}
|
|
9840
|
-
},
|
|
9841
|
-
"additionalProperties": false,
|
|
9842
|
-
"description": "Response for POST /triggers/{id}/infer-schema"
|
|
9843
|
-
},
|
|
9844
|
-
"IntrospectGraphRequest": {
|
|
9845
|
-
"type": "object",
|
|
9846
|
-
"properties": {
|
|
9847
|
-
"graph_spec": {
|
|
9848
|
-
"type": "object",
|
|
9849
|
-
"additionalProperties": { },
|
|
9850
|
-
"nullable": true
|
|
9851
|
-
},
|
|
9852
|
-
"credentials": {
|
|
9853
|
-
"type": "array",
|
|
9854
|
-
"items": {
|
|
9855
|
-
"type": "object",
|
|
9856
|
-
"additionalProperties": { }
|
|
9857
|
-
},
|
|
9858
|
-
"nullable": true
|
|
9859
|
-
},
|
|
9860
|
-
"catalog_versions": {
|
|
9861
|
-
"type": "object",
|
|
9862
|
-
"additionalProperties": {
|
|
9580
|
+
"items": {
|
|
9863
9581
|
"type": "string"
|
|
9864
9582
|
},
|
|
9865
9583
|
"nullable": true
|
|
9866
9584
|
}
|
|
9867
9585
|
},
|
|
9868
|
-
"additionalProperties": false
|
|
9586
|
+
"additionalProperties": false,
|
|
9587
|
+
"description": "Response for POST /triggers/{id}/infer-schema"
|
|
9869
9588
|
},
|
|
9870
9589
|
"InviteMemberRequest": {
|
|
9871
9590
|
"type": "object",
|
|
@@ -10399,9 +10118,6 @@
|
|
|
10399
10118
|
"type": "string",
|
|
10400
10119
|
"nullable": true
|
|
10401
10120
|
},
|
|
10402
|
-
"graph_spec": {
|
|
10403
|
-
"nullable": true
|
|
10404
|
-
},
|
|
10405
10121
|
"set_as_live": {
|
|
10406
10122
|
"type": "boolean"
|
|
10407
10123
|
},
|
|
@@ -10551,117 +10267,6 @@
|
|
|
10551
10267
|
},
|
|
10552
10268
|
"additionalProperties": false
|
|
10553
10269
|
},
|
|
10554
|
-
"RevisionDetailResponse": {
|
|
10555
|
-
"type": "object",
|
|
10556
|
-
"properties": {
|
|
10557
|
-
"agent_id": {
|
|
10558
|
-
"type": "string",
|
|
10559
|
-
"format": "uuid"
|
|
10560
|
-
},
|
|
10561
|
-
"revision": {
|
|
10562
|
-
"type": "string",
|
|
10563
|
-
"nullable": true
|
|
10564
|
-
},
|
|
10565
|
-
"graph_spec": { },
|
|
10566
|
-
"created_at": {
|
|
10567
|
-
"type": "string",
|
|
10568
|
-
"format": "date-time"
|
|
10569
|
-
},
|
|
10570
|
-
"source": {
|
|
10571
|
-
"type": "string",
|
|
10572
|
-
"nullable": true
|
|
10573
|
-
},
|
|
10574
|
-
"actor_user_id": {
|
|
10575
|
-
"type": "string",
|
|
10576
|
-
"format": "uuid",
|
|
10577
|
-
"nullable": true
|
|
10578
|
-
},
|
|
10579
|
-
"warnings": {
|
|
10580
|
-
"type": "array",
|
|
10581
|
-
"items": {
|
|
10582
|
-
"$ref": "#/components/schemas/ValidationMessage"
|
|
10583
|
-
},
|
|
10584
|
-
"nullable": true
|
|
10585
|
-
}
|
|
10586
|
-
},
|
|
10587
|
-
"additionalProperties": false
|
|
10588
|
-
},
|
|
10589
|
-
"RevisionDetailResponseApiEnvelope": {
|
|
10590
|
-
"type": "object",
|
|
10591
|
-
"properties": {
|
|
10592
|
-
"data": {
|
|
10593
|
-
"$ref": "#/components/schemas/RevisionDetailResponse"
|
|
10594
|
-
},
|
|
10595
|
-
"hints": {
|
|
10596
|
-
"type": "array",
|
|
10597
|
-
"items": {
|
|
10598
|
-
"$ref": "#/components/schemas/ApiHint"
|
|
10599
|
-
},
|
|
10600
|
-
"nullable": true
|
|
10601
|
-
}
|
|
10602
|
-
},
|
|
10603
|
-
"additionalProperties": false
|
|
10604
|
-
},
|
|
10605
|
-
"RevisionListItem": {
|
|
10606
|
-
"type": "object",
|
|
10607
|
-
"properties": {
|
|
10608
|
-
"revision": {
|
|
10609
|
-
"type": "string",
|
|
10610
|
-
"nullable": true
|
|
10611
|
-
},
|
|
10612
|
-
"created_at": {
|
|
10613
|
-
"type": "string",
|
|
10614
|
-
"format": "date-time"
|
|
10615
|
-
},
|
|
10616
|
-
"source": {
|
|
10617
|
-
"type": "string",
|
|
10618
|
-
"nullable": true
|
|
10619
|
-
},
|
|
10620
|
-
"actor_user_id": {
|
|
10621
|
-
"type": "string",
|
|
10622
|
-
"format": "uuid",
|
|
10623
|
-
"nullable": true
|
|
10624
|
-
}
|
|
10625
|
-
},
|
|
10626
|
-
"additionalProperties": false
|
|
10627
|
-
},
|
|
10628
|
-
"RevisionListResponse": {
|
|
10629
|
-
"type": "object",
|
|
10630
|
-
"properties": {
|
|
10631
|
-
"agent_id": {
|
|
10632
|
-
"type": "string",
|
|
10633
|
-
"format": "uuid"
|
|
10634
|
-
},
|
|
10635
|
-
"total": {
|
|
10636
|
-
"type": "integer",
|
|
10637
|
-
"format": "int32"
|
|
10638
|
-
},
|
|
10639
|
-
"items": {
|
|
10640
|
-
"type": "array",
|
|
10641
|
-
"items": {
|
|
10642
|
-
"$ref": "#/components/schemas/RevisionListItem"
|
|
10643
|
-
},
|
|
10644
|
-
"nullable": true
|
|
10645
|
-
}
|
|
10646
|
-
},
|
|
10647
|
-
"additionalProperties": false
|
|
10648
|
-
},
|
|
10649
|
-
"RevisionListResponseApiEnvelope": {
|
|
10650
|
-
"type": "object",
|
|
10651
|
-
"properties": {
|
|
10652
|
-
"data": {
|
|
10653
|
-
"$ref": "#/components/schemas/RevisionListResponse"
|
|
10654
|
-
},
|
|
10655
|
-
"hints": {
|
|
10656
|
-
"type": "array",
|
|
10657
|
-
"items": {
|
|
10658
|
-
"$ref": "#/components/schemas/ApiHint"
|
|
10659
|
-
},
|
|
10660
|
-
"nullable": true
|
|
10661
|
-
}
|
|
10662
|
-
},
|
|
10663
|
-
"additionalProperties": false
|
|
10664
|
-
},
|
|
10665
10270
|
"RoleContextDto": {
|
|
10666
10271
|
"type": "object",
|
|
10667
10272
|
"properties": {
|
|
@@ -10799,6 +10404,19 @@
|
|
|
10799
10404
|
"payload": {
|
|
10800
10405
|
"nullable": true
|
|
10801
10406
|
},
|
|
10407
|
+
"operation_id": {
|
|
10408
|
+
"type": "string",
|
|
10409
|
+
"format": "uuid"
|
|
10410
|
+
},
|
|
10411
|
+
"parent_operation_id": {
|
|
10412
|
+
"type": "string",
|
|
10413
|
+
"format": "uuid",
|
|
10414
|
+
"nullable": true
|
|
10415
|
+
},
|
|
10416
|
+
"root_operation_id": {
|
|
10417
|
+
"type": "string",
|
|
10418
|
+
"format": "uuid"
|
|
10419
|
+
},
|
|
10802
10420
|
"truncated": {
|
|
10803
10421
|
"type": "boolean"
|
|
10804
10422
|
}
|
|
@@ -11123,6 +10741,19 @@
|
|
|
11123
10741
|
},
|
|
11124
10742
|
"additionalProperties": false
|
|
11125
10743
|
},
|
|
10744
|
+
"SupportedContractsResponse": {
|
|
10745
|
+
"type": "object",
|
|
10746
|
+
"properties": {
|
|
10747
|
+
"contract_ids": {
|
|
10748
|
+
"type": "array",
|
|
10749
|
+
"items": {
|
|
10750
|
+
"type": "string"
|
|
10751
|
+
},
|
|
10752
|
+
"nullable": true
|
|
10753
|
+
}
|
|
10754
|
+
},
|
|
10755
|
+
"additionalProperties": false
|
|
10756
|
+
},
|
|
11126
10757
|
"TenantContextDto": {
|
|
11127
10758
|
"type": "object",
|
|
11128
10759
|
"properties": {
|
|
@@ -11634,10 +11265,10 @@
|
|
|
11634
11265
|
},
|
|
11635
11266
|
"additionalProperties": false
|
|
11636
11267
|
},
|
|
11637
|
-
"
|
|
11268
|
+
"UpdateDraftIrRequest": {
|
|
11638
11269
|
"type": "object",
|
|
11639
11270
|
"properties": {
|
|
11640
|
-
"
|
|
11271
|
+
"ir_json": {
|
|
11641
11272
|
"nullable": true
|
|
11642
11273
|
}
|
|
11643
11274
|
},
|
|
@@ -11729,6 +11360,67 @@
|
|
|
11729
11360
|
},
|
|
11730
11361
|
"additionalProperties": false
|
|
11731
11362
|
},
|
|
11363
|
+
"UpsertAgentCredentialBindingRequest": {
|
|
11364
|
+
"type": "object",
|
|
11365
|
+
"properties": {
|
|
11366
|
+
"credential_id": {
|
|
11367
|
+
"type": "string",
|
|
11368
|
+
"format": "uuid"
|
|
11369
|
+
},
|
|
11370
|
+
"alias": {
|
|
11371
|
+
"type": "string",
|
|
11372
|
+
"nullable": true
|
|
11373
|
+
},
|
|
11374
|
+
"priority": {
|
|
11375
|
+
"type": "integer",
|
|
11376
|
+
"format": "int32"
|
|
11377
|
+
}
|
|
11378
|
+
},
|
|
11379
|
+
"additionalProperties": false
|
|
11380
|
+
},
|
|
11381
|
+
"UpsertAgentCredentialBindingResponse": {
|
|
11382
|
+
"type": "object",
|
|
11383
|
+
"properties": {
|
|
11384
|
+
"id": {
|
|
11385
|
+
"type": "string",
|
|
11386
|
+
"format": "uuid"
|
|
11387
|
+
},
|
|
11388
|
+
"updated": {
|
|
11389
|
+
"type": "boolean"
|
|
11390
|
+
},
|
|
11391
|
+
"agent_id": {
|
|
11392
|
+
"type": "string",
|
|
11393
|
+
"format": "uuid"
|
|
11394
|
+
},
|
|
11395
|
+
"credential_id": {
|
|
11396
|
+
"type": "string",
|
|
11397
|
+
"format": "uuid"
|
|
11398
|
+
},
|
|
11399
|
+
"alias": {
|
|
11400
|
+
"type": "string",
|
|
11401
|
+
"nullable": true
|
|
11402
|
+
},
|
|
11403
|
+
"priority": {
|
|
11404
|
+
"type": "integer",
|
|
11405
|
+
"format": "int32"
|
|
11406
|
+
}
|
|
11407
|
+
},
|
|
11408
|
+
"additionalProperties": false
|
|
11409
|
+
},
|
|
11410
|
+
"UpsertAgentRuntimeContextRequest": {
|
|
11411
|
+
"type": "object",
|
|
11412
|
+
"properties": {
|
|
11413
|
+
"content": {
|
|
11414
|
+
"type": "string",
|
|
11415
|
+
"nullable": true
|
|
11416
|
+
},
|
|
11417
|
+
"source": {
|
|
11418
|
+
"type": "string",
|
|
11419
|
+
"nullable": true
|
|
11420
|
+
}
|
|
11421
|
+
},
|
|
11422
|
+
"additionalProperties": false
|
|
11423
|
+
},
|
|
11732
11424
|
"UserContextResponse": {
|
|
11733
11425
|
"type": "object",
|
|
11734
11426
|
"properties": {
|
|
@@ -11759,55 +11451,38 @@
|
|
|
11759
11451
|
},
|
|
11760
11452
|
"additionalProperties": false
|
|
11761
11453
|
},
|
|
11762
|
-
"
|
|
11454
|
+
"ValidateContractRequest": {
|
|
11763
11455
|
"type": "object",
|
|
11764
11456
|
"properties": {
|
|
11765
|
-
"
|
|
11766
|
-
"type": "
|
|
11767
|
-
"additionalProperties": { },
|
|
11457
|
+
"contract_id": {
|
|
11458
|
+
"type": "string",
|
|
11768
11459
|
"nullable": true
|
|
11769
11460
|
},
|
|
11770
|
-
"
|
|
11771
|
-
"type": "object",
|
|
11772
|
-
"additionalProperties": {
|
|
11773
|
-
"type": "string"
|
|
11774
|
-
},
|
|
11775
|
-
"nullable": true
|
|
11776
|
-
}
|
|
11461
|
+
"spec": { }
|
|
11777
11462
|
},
|
|
11778
11463
|
"additionalProperties": false
|
|
11779
11464
|
},
|
|
11780
|
-
"
|
|
11465
|
+
"ValidateContractResponse": {
|
|
11781
11466
|
"type": "object",
|
|
11782
11467
|
"properties": {
|
|
11783
|
-
"
|
|
11784
|
-
"type": "boolean"
|
|
11785
|
-
},
|
|
11786
|
-
"mermaid": {
|
|
11468
|
+
"contract_id": {
|
|
11787
11469
|
"type": "string",
|
|
11788
11470
|
"nullable": true
|
|
11789
11471
|
},
|
|
11790
|
-
"
|
|
11791
|
-
"type": "
|
|
11792
|
-
"items": {
|
|
11793
|
-
"type": "string"
|
|
11794
|
-
},
|
|
11795
|
-
"nullable": true
|
|
11472
|
+
"valid": {
|
|
11473
|
+
"type": "boolean"
|
|
11796
11474
|
},
|
|
11797
|
-
"
|
|
11475
|
+
"errors": {
|
|
11798
11476
|
"type": "array",
|
|
11799
11477
|
"items": {
|
|
11800
|
-
"
|
|
11801
|
-
"items": {
|
|
11802
|
-
"type": "string"
|
|
11803
|
-
}
|
|
11478
|
+
"$ref": "#/components/schemas/ValidationIssueDto"
|
|
11804
11479
|
},
|
|
11805
11480
|
"nullable": true
|
|
11806
11481
|
},
|
|
11807
|
-
"
|
|
11482
|
+
"warnings": {
|
|
11808
11483
|
"type": "array",
|
|
11809
11484
|
"items": {
|
|
11810
|
-
"$ref": "#/components/schemas/
|
|
11485
|
+
"$ref": "#/components/schemas/ValidationIssueDto"
|
|
11811
11486
|
},
|
|
11812
11487
|
"nullable": true
|
|
11813
11488
|
}
|
|
@@ -11839,34 +11514,7 @@
|
|
|
11839
11514
|
},
|
|
11840
11515
|
"additionalProperties": false
|
|
11841
11516
|
},
|
|
11842
|
-
"
|
|
11843
|
-
"type": "object",
|
|
11844
|
-
"properties": {
|
|
11845
|
-
"code": {
|
|
11846
|
-
"type": "string",
|
|
11847
|
-
"nullable": true
|
|
11848
|
-
},
|
|
11849
|
-
"message": {
|
|
11850
|
-
"type": "string",
|
|
11851
|
-
"nullable": true
|
|
11852
|
-
},
|
|
11853
|
-
"path": {
|
|
11854
|
-
"type": "string",
|
|
11855
|
-
"nullable": true
|
|
11856
|
-
},
|
|
11857
|
-
"node_id": {
|
|
11858
|
-
"type": "string",
|
|
11859
|
-
"nullable": true
|
|
11860
|
-
},
|
|
11861
|
-
"severity": {
|
|
11862
|
-
"type": "string",
|
|
11863
|
-
"nullable": true
|
|
11864
|
-
}
|
|
11865
|
-
},
|
|
11866
|
-
"additionalProperties": false,
|
|
11867
|
-
"description": "Validation error from graph validation.\nAligned with Data Plane validator output (RFC 6901 JSON Pointer paths)."
|
|
11868
|
-
},
|
|
11869
|
-
"ValidationMessage": {
|
|
11517
|
+
"ValidationIssueDto": {
|
|
11870
11518
|
"type": "object",
|
|
11871
11519
|
"properties": {
|
|
11872
11520
|
"code": {
|
|
@@ -11881,10 +11529,6 @@
|
|
|
11881
11529
|
"type": "string",
|
|
11882
11530
|
"nullable": true
|
|
11883
11531
|
},
|
|
11884
|
-
"node_id": {
|
|
11885
|
-
"type": "string",
|
|
11886
|
-
"nullable": true
|
|
11887
|
-
},
|
|
11888
11532
|
"severity": {
|
|
11889
11533
|
"type": "string",
|
|
11890
11534
|
"nullable": true
|
|
@@ -11892,23 +11536,6 @@
|
|
|
11892
11536
|
},
|
|
11893
11537
|
"additionalProperties": false
|
|
11894
11538
|
},
|
|
11895
|
-
"ValidationResult": {
|
|
11896
|
-
"type": "object",
|
|
11897
|
-
"properties": {
|
|
11898
|
-
"valid": {
|
|
11899
|
-
"type": "boolean"
|
|
11900
|
-
},
|
|
11901
|
-
"errors": {
|
|
11902
|
-
"type": "array",
|
|
11903
|
-
"items": {
|
|
11904
|
-
"$ref": "#/components/schemas/ValidationMessage"
|
|
11905
|
-
},
|
|
11906
|
-
"nullable": true
|
|
11907
|
-
}
|
|
11908
|
-
},
|
|
11909
|
-
"additionalProperties": false,
|
|
11910
|
-
"description": "Validation result block returned in all commit responses."
|
|
11911
|
-
},
|
|
11912
11539
|
"VectorQueryRequest": {
|
|
11913
11540
|
"type": "object",
|
|
11914
11541
|
"properties": {
|
|
@@ -12173,6 +11800,9 @@
|
|
|
12173
11800
|
{
|
|
12174
11801
|
"name": "AgentPortability"
|
|
12175
11802
|
},
|
|
11803
|
+
{
|
|
11804
|
+
"name": "AgentRuntimeContexts"
|
|
11805
|
+
},
|
|
12176
11806
|
{
|
|
12177
11807
|
"name": "Agents"
|
|
12178
11808
|
},
|
|
@@ -12188,9 +11818,6 @@
|
|
|
12188
11818
|
{
|
|
12189
11819
|
"name": "AuthBootstrap"
|
|
12190
11820
|
},
|
|
12191
|
-
{
|
|
12192
|
-
"name": "Builder"
|
|
12193
|
-
},
|
|
12194
11821
|
{
|
|
12195
11822
|
"name": "BundleManifest"
|
|
12196
11823
|
},
|
|
@@ -12200,6 +11827,9 @@
|
|
|
12200
11827
|
{
|
|
12201
11828
|
"name": "Checkpoints"
|
|
12202
11829
|
},
|
|
11830
|
+
{
|
|
11831
|
+
"name": "Contracts"
|
|
11832
|
+
},
|
|
12203
11833
|
{
|
|
12204
11834
|
"name": "Credentials"
|
|
12205
11835
|
},
|
|
@@ -12218,12 +11848,6 @@
|
|
|
12218
11848
|
{
|
|
12219
11849
|
"name": "FrontendObservability"
|
|
12220
11850
|
},
|
|
12221
|
-
{
|
|
12222
|
-
"name": "Graphs"
|
|
12223
|
-
},
|
|
12224
|
-
{
|
|
12225
|
-
"name": "GraphSpec"
|
|
12226
|
-
},
|
|
12227
11851
|
{
|
|
12228
11852
|
"name": "Me"
|
|
12229
11853
|
},
|
|
@@ -12269,6 +11893,9 @@
|
|
|
12269
11893
|
{
|
|
12270
11894
|
"name": "VectorStores"
|
|
12271
11895
|
},
|
|
11896
|
+
{
|
|
11897
|
+
"name": "WorkspaceEvents"
|
|
11898
|
+
},
|
|
12272
11899
|
{
|
|
12273
11900
|
"name": "Workspaces"
|
|
12274
11901
|
},
|