@agent-os-sdk/client 0.9.20 → 0.9.21
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/generated/openapi.d.ts +631 -10
- package/dist/generated/openapi.d.ts.map +1 -1
- package/dist/modules/metaAgent.d.ts +35 -5
- package/dist/modules/metaAgent.d.ts.map +1 -1
- package/dist/modules/runs.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/generated/openapi.ts +631 -10
- package/src/generated/swagger.json +2839 -1461
- package/src/modules/metaAgent.ts +39 -5
|
@@ -6059,6 +6059,276 @@ export interface paths {
|
|
|
6059
6059
|
patch?: never;
|
|
6060
6060
|
trace?: never;
|
|
6061
6061
|
};
|
|
6062
|
+
"/v1/api/runs/{runId}/inspection": {
|
|
6063
|
+
parameters: {
|
|
6064
|
+
query?: never;
|
|
6065
|
+
header?: never;
|
|
6066
|
+
path?: never;
|
|
6067
|
+
cookie?: never;
|
|
6068
|
+
};
|
|
6069
|
+
/**
|
|
6070
|
+
* Returns the official runtime inspection surface for a run.
|
|
6071
|
+
* @description This endpoint is the supported read model for operational inspection over the canonical runtime ledger.
|
|
6072
|
+
* It explains a run through:
|
|
6073
|
+
* - run summary
|
|
6074
|
+
* - replay metadata
|
|
6075
|
+
* - failure summary
|
|
6076
|
+
* - attempts
|
|
6077
|
+
* - node execution timeline
|
|
6078
|
+
* - event timeline
|
|
6079
|
+
*
|
|
6080
|
+
* Consumers should prefer this endpoint over raw table archaeology.
|
|
6081
|
+
*/
|
|
6082
|
+
get: {
|
|
6083
|
+
parameters: {
|
|
6084
|
+
query?: never;
|
|
6085
|
+
header?: never;
|
|
6086
|
+
path: {
|
|
6087
|
+
runId: string;
|
|
6088
|
+
};
|
|
6089
|
+
cookie?: never;
|
|
6090
|
+
};
|
|
6091
|
+
requestBody?: never;
|
|
6092
|
+
responses: {
|
|
6093
|
+
/** @description OK */
|
|
6094
|
+
200: {
|
|
6095
|
+
headers: {
|
|
6096
|
+
[name: string]: unknown;
|
|
6097
|
+
};
|
|
6098
|
+
content: {
|
|
6099
|
+
"application/json": components["schemas"]["RunInspectionResponse"];
|
|
6100
|
+
};
|
|
6101
|
+
};
|
|
6102
|
+
/** @description Not Found */
|
|
6103
|
+
404: {
|
|
6104
|
+
headers: {
|
|
6105
|
+
[name: string]: unknown;
|
|
6106
|
+
};
|
|
6107
|
+
content: {
|
|
6108
|
+
"application/json": components["schemas"]["ProblemDetails"];
|
|
6109
|
+
};
|
|
6110
|
+
};
|
|
6111
|
+
};
|
|
6112
|
+
};
|
|
6113
|
+
put?: never;
|
|
6114
|
+
post?: never;
|
|
6115
|
+
delete?: never;
|
|
6116
|
+
options?: never;
|
|
6117
|
+
head?: never;
|
|
6118
|
+
patch?: never;
|
|
6119
|
+
trace?: never;
|
|
6120
|
+
};
|
|
6121
|
+
"/v1/api/runs/failures": {
|
|
6122
|
+
parameters: {
|
|
6123
|
+
query?: never;
|
|
6124
|
+
header?: never;
|
|
6125
|
+
path?: never;
|
|
6126
|
+
cookie?: never;
|
|
6127
|
+
};
|
|
6128
|
+
get: {
|
|
6129
|
+
parameters: {
|
|
6130
|
+
query?: {
|
|
6131
|
+
agentId?: string;
|
|
6132
|
+
capabilityRef?: string;
|
|
6133
|
+
errorCategory?: string;
|
|
6134
|
+
retryable?: boolean;
|
|
6135
|
+
from?: string;
|
|
6136
|
+
to?: string;
|
|
6137
|
+
limit?: number;
|
|
6138
|
+
offset?: number;
|
|
6139
|
+
};
|
|
6140
|
+
header?: never;
|
|
6141
|
+
path?: never;
|
|
6142
|
+
cookie?: never;
|
|
6143
|
+
};
|
|
6144
|
+
requestBody?: never;
|
|
6145
|
+
responses: {
|
|
6146
|
+
/** @description OK */
|
|
6147
|
+
200: {
|
|
6148
|
+
headers: {
|
|
6149
|
+
[name: string]: unknown;
|
|
6150
|
+
};
|
|
6151
|
+
content: {
|
|
6152
|
+
"application/json": components["schemas"]["RunFailureRetentionListResponse"];
|
|
6153
|
+
};
|
|
6154
|
+
};
|
|
6155
|
+
};
|
|
6156
|
+
};
|
|
6157
|
+
put?: never;
|
|
6158
|
+
post?: never;
|
|
6159
|
+
delete?: never;
|
|
6160
|
+
options?: never;
|
|
6161
|
+
head?: never;
|
|
6162
|
+
patch?: never;
|
|
6163
|
+
trace?: never;
|
|
6164
|
+
};
|
|
6165
|
+
"/v1/api/runs/failures/{failureId}": {
|
|
6166
|
+
parameters: {
|
|
6167
|
+
query?: never;
|
|
6168
|
+
header?: never;
|
|
6169
|
+
path?: never;
|
|
6170
|
+
cookie?: never;
|
|
6171
|
+
};
|
|
6172
|
+
get: {
|
|
6173
|
+
parameters: {
|
|
6174
|
+
query?: never;
|
|
6175
|
+
header?: never;
|
|
6176
|
+
path: {
|
|
6177
|
+
failureId: string;
|
|
6178
|
+
};
|
|
6179
|
+
cookie?: never;
|
|
6180
|
+
};
|
|
6181
|
+
requestBody?: never;
|
|
6182
|
+
responses: {
|
|
6183
|
+
/** @description OK */
|
|
6184
|
+
200: {
|
|
6185
|
+
headers: {
|
|
6186
|
+
[name: string]: unknown;
|
|
6187
|
+
};
|
|
6188
|
+
content: {
|
|
6189
|
+
"application/json": components["schemas"]["RunFailureRetentionDetailResponse"];
|
|
6190
|
+
};
|
|
6191
|
+
};
|
|
6192
|
+
/** @description Not Found */
|
|
6193
|
+
404: {
|
|
6194
|
+
headers: {
|
|
6195
|
+
[name: string]: unknown;
|
|
6196
|
+
};
|
|
6197
|
+
content: {
|
|
6198
|
+
"application/json": components["schemas"]["ProblemDetails"];
|
|
6199
|
+
};
|
|
6200
|
+
};
|
|
6201
|
+
};
|
|
6202
|
+
};
|
|
6203
|
+
put?: never;
|
|
6204
|
+
post?: never;
|
|
6205
|
+
delete?: never;
|
|
6206
|
+
options?: never;
|
|
6207
|
+
head?: never;
|
|
6208
|
+
patch?: never;
|
|
6209
|
+
trace?: never;
|
|
6210
|
+
};
|
|
6211
|
+
"/v1/api/runs/observability/summary": {
|
|
6212
|
+
parameters: {
|
|
6213
|
+
query?: never;
|
|
6214
|
+
header?: never;
|
|
6215
|
+
path?: never;
|
|
6216
|
+
cookie?: never;
|
|
6217
|
+
};
|
|
6218
|
+
get: {
|
|
6219
|
+
parameters: {
|
|
6220
|
+
query?: {
|
|
6221
|
+
agentId?: string;
|
|
6222
|
+
from?: string;
|
|
6223
|
+
to?: string;
|
|
6224
|
+
};
|
|
6225
|
+
header?: never;
|
|
6226
|
+
path?: never;
|
|
6227
|
+
cookie?: never;
|
|
6228
|
+
};
|
|
6229
|
+
requestBody?: never;
|
|
6230
|
+
responses: {
|
|
6231
|
+
/** @description OK */
|
|
6232
|
+
200: {
|
|
6233
|
+
headers: {
|
|
6234
|
+
[name: string]: unknown;
|
|
6235
|
+
};
|
|
6236
|
+
content: {
|
|
6237
|
+
"application/json": components["schemas"]["RunObservabilitySummaryResponse"];
|
|
6238
|
+
};
|
|
6239
|
+
};
|
|
6240
|
+
};
|
|
6241
|
+
};
|
|
6242
|
+
put?: never;
|
|
6243
|
+
post?: never;
|
|
6244
|
+
delete?: never;
|
|
6245
|
+
options?: never;
|
|
6246
|
+
head?: never;
|
|
6247
|
+
patch?: never;
|
|
6248
|
+
trace?: never;
|
|
6249
|
+
};
|
|
6250
|
+
"/v1/api/runs/observability/capabilities": {
|
|
6251
|
+
parameters: {
|
|
6252
|
+
query?: never;
|
|
6253
|
+
header?: never;
|
|
6254
|
+
path?: never;
|
|
6255
|
+
cookie?: never;
|
|
6256
|
+
};
|
|
6257
|
+
get: {
|
|
6258
|
+
parameters: {
|
|
6259
|
+
query?: {
|
|
6260
|
+
agentId?: string;
|
|
6261
|
+
from?: string;
|
|
6262
|
+
to?: string;
|
|
6263
|
+
limit?: number;
|
|
6264
|
+
offset?: number;
|
|
6265
|
+
};
|
|
6266
|
+
header?: never;
|
|
6267
|
+
path?: never;
|
|
6268
|
+
cookie?: never;
|
|
6269
|
+
};
|
|
6270
|
+
requestBody?: never;
|
|
6271
|
+
responses: {
|
|
6272
|
+
/** @description OK */
|
|
6273
|
+
200: {
|
|
6274
|
+
headers: {
|
|
6275
|
+
[name: string]: unknown;
|
|
6276
|
+
};
|
|
6277
|
+
content: {
|
|
6278
|
+
"application/json": components["schemas"]["RunObservabilityCapabilityListResponse"];
|
|
6279
|
+
};
|
|
6280
|
+
};
|
|
6281
|
+
};
|
|
6282
|
+
};
|
|
6283
|
+
put?: never;
|
|
6284
|
+
post?: never;
|
|
6285
|
+
delete?: never;
|
|
6286
|
+
options?: never;
|
|
6287
|
+
head?: never;
|
|
6288
|
+
patch?: never;
|
|
6289
|
+
trace?: never;
|
|
6290
|
+
};
|
|
6291
|
+
"/v1/api/runs/observability/bindings": {
|
|
6292
|
+
parameters: {
|
|
6293
|
+
query?: never;
|
|
6294
|
+
header?: never;
|
|
6295
|
+
path?: never;
|
|
6296
|
+
cookie?: never;
|
|
6297
|
+
};
|
|
6298
|
+
get: {
|
|
6299
|
+
parameters: {
|
|
6300
|
+
query?: {
|
|
6301
|
+
agentId?: string;
|
|
6302
|
+
from?: string;
|
|
6303
|
+
to?: string;
|
|
6304
|
+
limit?: number;
|
|
6305
|
+
offset?: number;
|
|
6306
|
+
};
|
|
6307
|
+
header?: never;
|
|
6308
|
+
path?: never;
|
|
6309
|
+
cookie?: never;
|
|
6310
|
+
};
|
|
6311
|
+
requestBody?: never;
|
|
6312
|
+
responses: {
|
|
6313
|
+
/** @description OK */
|
|
6314
|
+
200: {
|
|
6315
|
+
headers: {
|
|
6316
|
+
[name: string]: unknown;
|
|
6317
|
+
};
|
|
6318
|
+
content: {
|
|
6319
|
+
"application/json": components["schemas"]["RunObservabilityBindingListResponse"];
|
|
6320
|
+
};
|
|
6321
|
+
};
|
|
6322
|
+
};
|
|
6323
|
+
};
|
|
6324
|
+
put?: never;
|
|
6325
|
+
post?: never;
|
|
6326
|
+
delete?: never;
|
|
6327
|
+
options?: never;
|
|
6328
|
+
head?: never;
|
|
6329
|
+
patch?: never;
|
|
6330
|
+
trace?: never;
|
|
6331
|
+
};
|
|
6062
6332
|
"/v1/api/runs/{runId}/operations/transitions": {
|
|
6063
6333
|
parameters: {
|
|
6064
6334
|
query?: never;
|
|
@@ -10431,9 +10701,35 @@ export interface components {
|
|
|
10431
10701
|
applied_by?: string | null;
|
|
10432
10702
|
draft_ir?: unknown;
|
|
10433
10703
|
};
|
|
10704
|
+
MetaAgentBlastRadius: {
|
|
10705
|
+
affected_node_ids?: string[] | null;
|
|
10706
|
+
affected_edge_ids?: string[] | null;
|
|
10707
|
+
added_capabilities?: string[] | null;
|
|
10708
|
+
removed_capabilities?: string[] | null;
|
|
10709
|
+
changed_capabilities?: string[] | null;
|
|
10710
|
+
impacted_credentials?: components["schemas"]["MetaAgentBlastRadiusCredentialImpact"][] | null;
|
|
10711
|
+
warnings?: components["schemas"]["MetaAgentPreviewValidationIssue"][] | null;
|
|
10712
|
+
};
|
|
10713
|
+
MetaAgentBlastRadiusCredentialImpact: {
|
|
10714
|
+
required_credential?: string | null;
|
|
10715
|
+
status?: string | null;
|
|
10716
|
+
binding_key?: string | null;
|
|
10717
|
+
credential_instance_ref?: string | null;
|
|
10718
|
+
credential_name?: string | null;
|
|
10719
|
+
};
|
|
10434
10720
|
MetaAgentChatRequest: {
|
|
10435
10721
|
message?: string | null;
|
|
10436
10722
|
};
|
|
10723
|
+
MetaAgentDiffPreview: {
|
|
10724
|
+
added_node_ids?: string[] | null;
|
|
10725
|
+
removed_node_ids?: string[] | null;
|
|
10726
|
+
updated_node_ids?: string[] | null;
|
|
10727
|
+
added_edge_ids?: string[] | null;
|
|
10728
|
+
removed_edge_ids?: string[] | null;
|
|
10729
|
+
entrypoint_changed?: boolean;
|
|
10730
|
+
before_entrypoint?: string | null;
|
|
10731
|
+
after_entrypoint?: string | null;
|
|
10732
|
+
};
|
|
10437
10733
|
MetaAgentPatchOpResponse: {
|
|
10438
10734
|
op?: string | null;
|
|
10439
10735
|
node_id?: string | null;
|
|
@@ -10455,11 +10751,9 @@ export interface components {
|
|
|
10455
10751
|
mode?: string | null;
|
|
10456
10752
|
patch?: components["schemas"]["MetaAgentPatchProposalResponse"];
|
|
10457
10753
|
preview_draft_ir?: unknown;
|
|
10458
|
-
|
|
10459
|
-
|
|
10460
|
-
|
|
10461
|
-
valid?: boolean;
|
|
10462
|
-
errors?: components["schemas"]["MetaAgentPatchValidationIssue"][] | null;
|
|
10754
|
+
diff_preview?: components["schemas"]["MetaAgentDiffPreview"];
|
|
10755
|
+
blast_radius?: components["schemas"]["MetaAgentBlastRadius"];
|
|
10756
|
+
validation_result?: components["schemas"]["MetaAgentValidationResult"];
|
|
10463
10757
|
message?: string | null;
|
|
10464
10758
|
};
|
|
10465
10759
|
MetaAgentPatchProposalResponse: {
|
|
@@ -10482,6 +10776,12 @@ export interface components {
|
|
|
10482
10776
|
MetaAgentProposePatchRequest: {
|
|
10483
10777
|
instruction?: string | null;
|
|
10484
10778
|
};
|
|
10779
|
+
MetaAgentValidationResult: {
|
|
10780
|
+
valid?: boolean;
|
|
10781
|
+
preview_valid?: boolean;
|
|
10782
|
+
errors?: components["schemas"]["MetaAgentPatchValidationIssue"][] | null;
|
|
10783
|
+
warnings?: components["schemas"]["MetaAgentPreviewValidationIssue"][] | null;
|
|
10784
|
+
};
|
|
10485
10785
|
NodeCatalogResponse: {
|
|
10486
10786
|
version: string;
|
|
10487
10787
|
nodes: components["schemas"]["NodeTypeDto"][];
|
|
@@ -10745,6 +11045,235 @@ export interface components {
|
|
|
10745
11045
|
next_after_seq?: number | null;
|
|
10746
11046
|
has_more?: boolean;
|
|
10747
11047
|
};
|
|
11048
|
+
RunFailureRetentionDetailResponse: {
|
|
11049
|
+
failure?: components["schemas"]["RunFailureRetentionItem"];
|
|
11050
|
+
payload?: unknown;
|
|
11051
|
+
};
|
|
11052
|
+
RunFailureRetentionItem: {
|
|
11053
|
+
/** Format: uuid */
|
|
11054
|
+
failure_id?: string;
|
|
11055
|
+
failure_scope?: string | null;
|
|
11056
|
+
/** Format: uuid */
|
|
11057
|
+
run_id?: string;
|
|
11058
|
+
/** Format: uuid */
|
|
11059
|
+
attempt_id?: string;
|
|
11060
|
+
/** Format: int32 */
|
|
11061
|
+
attempt_no?: number;
|
|
11062
|
+
/** Format: uuid */
|
|
11063
|
+
agent_id?: string | null;
|
|
11064
|
+
/** Format: uuid */
|
|
11065
|
+
thread_id?: string;
|
|
11066
|
+
/** Format: uuid */
|
|
11067
|
+
node_execution_id?: string | null;
|
|
11068
|
+
/** Format: uuid */
|
|
11069
|
+
operation_id?: string | null;
|
|
11070
|
+
capability_ref?: string | null;
|
|
11071
|
+
capability_version?: string | null;
|
|
11072
|
+
execution_binding?: string | null;
|
|
11073
|
+
source_kind?: string | null;
|
|
11074
|
+
ancestry_kind?: string | null;
|
|
11075
|
+
status?: string | null;
|
|
11076
|
+
error_code?: string | null;
|
|
11077
|
+
error_category?: string | null;
|
|
11078
|
+
is_retryable?: boolean;
|
|
11079
|
+
error_source?: string | null;
|
|
11080
|
+
provider_error_code?: string | null;
|
|
11081
|
+
error_summary?: string | null;
|
|
11082
|
+
/** Format: uuid */
|
|
11083
|
+
retried_from_node_execution_id?: string | null;
|
|
11084
|
+
/** Format: uuid */
|
|
11085
|
+
replayed_from_node_execution_id?: string | null;
|
|
11086
|
+
can_retry?: boolean;
|
|
11087
|
+
/** Format: uuid */
|
|
11088
|
+
retry_from_node_execution_id?: string | null;
|
|
11089
|
+
can_replay?: boolean;
|
|
11090
|
+
/** Format: uuid */
|
|
11091
|
+
replay_from_node_execution_id?: string | null;
|
|
11092
|
+
/** Format: date-time */
|
|
11093
|
+
failed_at?: string;
|
|
11094
|
+
/** Format: date-time */
|
|
11095
|
+
created_at?: string;
|
|
11096
|
+
};
|
|
11097
|
+
RunFailureRetentionListResponse: {
|
|
11098
|
+
items?: components["schemas"]["RunFailureRetentionItem"][] | null;
|
|
11099
|
+
/** Format: int32 */
|
|
11100
|
+
count?: number;
|
|
11101
|
+
};
|
|
11102
|
+
RunInspectionAttemptItem: {
|
|
11103
|
+
/** Format: uuid */
|
|
11104
|
+
attempt_id?: string;
|
|
11105
|
+
/** Format: int32 */
|
|
11106
|
+
attempt_no?: number;
|
|
11107
|
+
cause?: string | null;
|
|
11108
|
+
status?: string | null;
|
|
11109
|
+
/** Format: int64 */
|
|
11110
|
+
latest_seq?: number;
|
|
11111
|
+
/** Format: int64 */
|
|
11112
|
+
lease_epoch?: number;
|
|
11113
|
+
/** Format: uuid */
|
|
11114
|
+
replayed_from_attempt_id?: string | null;
|
|
11115
|
+
error_code?: string | null;
|
|
11116
|
+
error_category?: string | null;
|
|
11117
|
+
is_retryable?: boolean | null;
|
|
11118
|
+
error_source?: string | null;
|
|
11119
|
+
provider_error_code?: string | null;
|
|
11120
|
+
error_summary?: string | null;
|
|
11121
|
+
error?: unknown;
|
|
11122
|
+
/** Format: date-time */
|
|
11123
|
+
started_at?: string | null;
|
|
11124
|
+
/** Format: date-time */
|
|
11125
|
+
finished_at?: string | null;
|
|
11126
|
+
/** Format: date-time */
|
|
11127
|
+
created_at?: string;
|
|
11128
|
+
};
|
|
11129
|
+
RunInspectionEventItem: {
|
|
11130
|
+
/** Format: uuid */
|
|
11131
|
+
event_id?: string;
|
|
11132
|
+
/** Format: uuid */
|
|
11133
|
+
attempt_id?: string;
|
|
11134
|
+
/** Format: int32 */
|
|
11135
|
+
attempt_no?: number;
|
|
11136
|
+
/** Format: int64 */
|
|
11137
|
+
seq?: number;
|
|
11138
|
+
/** Format: int64 */
|
|
11139
|
+
run_attempt_transition_seq?: number;
|
|
11140
|
+
event_type_code?: string | null;
|
|
11141
|
+
source_kind?: string | null;
|
|
11142
|
+
/** Format: date-time */
|
|
11143
|
+
timestamp?: string;
|
|
11144
|
+
/** Format: uuid */
|
|
11145
|
+
operation_id?: string;
|
|
11146
|
+
/** Format: uuid */
|
|
11147
|
+
parent_operation_id?: string | null;
|
|
11148
|
+
/** Format: uuid */
|
|
11149
|
+
root_operation_id?: string;
|
|
11150
|
+
node_id?: string | null;
|
|
11151
|
+
capability_ref?: string | null;
|
|
11152
|
+
capability_version?: string | null;
|
|
11153
|
+
execution_binding?: string | null;
|
|
11154
|
+
error_code?: string | null;
|
|
11155
|
+
error_category?: string | null;
|
|
11156
|
+
is_retryable?: boolean | null;
|
|
11157
|
+
error_source?: string | null;
|
|
11158
|
+
provider_error_code?: string | null;
|
|
11159
|
+
error_summary?: string | null;
|
|
11160
|
+
payload?: unknown;
|
|
11161
|
+
};
|
|
11162
|
+
RunInspectionFailureSummary: {
|
|
11163
|
+
has_failures?: boolean;
|
|
11164
|
+
run_error_code?: string | null;
|
|
11165
|
+
run_error_category?: string | null;
|
|
11166
|
+
run_is_retryable?: boolean | null;
|
|
11167
|
+
run_error_source?: string | null;
|
|
11168
|
+
run_provider_error_code?: string | null;
|
|
11169
|
+
run_error_summary?: string | null;
|
|
11170
|
+
run_error?: unknown;
|
|
11171
|
+
/** Format: int32 */
|
|
11172
|
+
failed_attempt_count?: number;
|
|
11173
|
+
/** Format: int32 */
|
|
11174
|
+
failed_node_execution_count?: number;
|
|
11175
|
+
};
|
|
11176
|
+
RunInspectionNodeExecutionItem: {
|
|
11177
|
+
/** Format: uuid */
|
|
11178
|
+
node_execution_id?: string;
|
|
11179
|
+
/** Format: uuid */
|
|
11180
|
+
attempt_id?: string;
|
|
11181
|
+
/** Format: int32 */
|
|
11182
|
+
attempt_no?: number;
|
|
11183
|
+
/** Format: uuid */
|
|
11184
|
+
operation_id?: string;
|
|
11185
|
+
/** Format: uuid */
|
|
11186
|
+
parent_operation_id?: string | null;
|
|
11187
|
+
/** Format: uuid */
|
|
11188
|
+
root_operation_id?: string;
|
|
11189
|
+
node_id?: string | null;
|
|
11190
|
+
capability_ref?: string | null;
|
|
11191
|
+
capability_version?: string | null;
|
|
11192
|
+
execution_binding?: string | null;
|
|
11193
|
+
source_kind?: string | null;
|
|
11194
|
+
is_root_execution?: boolean;
|
|
11195
|
+
ancestry_kind?: string | null;
|
|
11196
|
+
event_type_code?: string | null;
|
|
11197
|
+
/** Format: int64 */
|
|
11198
|
+
first_seq?: number;
|
|
11199
|
+
/** Format: int64 */
|
|
11200
|
+
last_seq?: number;
|
|
11201
|
+
/** Format: int64 */
|
|
11202
|
+
first_run_attempt_transition_seq?: number;
|
|
11203
|
+
/** Format: int64 */
|
|
11204
|
+
last_run_attempt_transition_seq?: number;
|
|
11205
|
+
latest_transition_reason?: string | null;
|
|
11206
|
+
latest_transition_actor_type?: string | null;
|
|
11207
|
+
status?: string | null;
|
|
11208
|
+
error_code?: string | null;
|
|
11209
|
+
error_category?: string | null;
|
|
11210
|
+
is_retryable?: boolean | null;
|
|
11211
|
+
error_source?: string | null;
|
|
11212
|
+
provider_error_code?: string | null;
|
|
11213
|
+
error_summary?: string | null;
|
|
11214
|
+
/** Format: date-time */
|
|
11215
|
+
started_at?: string;
|
|
11216
|
+
/** Format: date-time */
|
|
11217
|
+
finished_at?: string | null;
|
|
11218
|
+
/** Format: uuid */
|
|
11219
|
+
replayed_from_node_execution_id?: string | null;
|
|
11220
|
+
/** Format: uuid */
|
|
11221
|
+
retried_from_node_execution_id?: string | null;
|
|
11222
|
+
/** Format: int32 */
|
|
11223
|
+
event_count?: number;
|
|
11224
|
+
};
|
|
11225
|
+
RunInspectionReplayMetadata: {
|
|
11226
|
+
replay_mode?: string | null;
|
|
11227
|
+
replay_reason?: string | null;
|
|
11228
|
+
/** Format: uuid */
|
|
11229
|
+
replayed_from_run_id?: string | null;
|
|
11230
|
+
/** Format: uuid */
|
|
11231
|
+
replayed_from_checkpoint_id?: string | null;
|
|
11232
|
+
runtime_contract_snapshot?: unknown;
|
|
11233
|
+
};
|
|
11234
|
+
RunInspectionResponse: {
|
|
11235
|
+
run?: components["schemas"]["RunInspectionRunSummary"];
|
|
11236
|
+
replay?: components["schemas"]["RunInspectionReplayMetadata"];
|
|
11237
|
+
failure?: components["schemas"]["RunInspectionFailureSummary"];
|
|
11238
|
+
attempts?: components["schemas"]["RunInspectionAttemptItem"][] | null;
|
|
11239
|
+
node_executions?: components["schemas"]["RunInspectionNodeExecutionItem"][] | null;
|
|
11240
|
+
events?: components["schemas"]["RunInspectionEventItem"][] | null;
|
|
11241
|
+
};
|
|
11242
|
+
RunInspectionRunSummary: {
|
|
11243
|
+
/** Format: uuid */
|
|
11244
|
+
run_id?: string;
|
|
11245
|
+
/** Format: uuid */
|
|
11246
|
+
tenant_id?: string;
|
|
11247
|
+
/** Format: uuid */
|
|
11248
|
+
workspace_id?: string;
|
|
11249
|
+
/** Format: uuid */
|
|
11250
|
+
agent_id?: string | null;
|
|
11251
|
+
/** Format: uuid */
|
|
11252
|
+
bundle_id?: string | null;
|
|
11253
|
+
bundle_sha256?: string | null;
|
|
11254
|
+
/** Format: uuid */
|
|
11255
|
+
thread_id?: string;
|
|
11256
|
+
status?: string | null;
|
|
11257
|
+
/** Format: uuid */
|
|
11258
|
+
current_attempt_id?: string | null;
|
|
11259
|
+
/** Format: int32 */
|
|
11260
|
+
current_attempt_no?: number | null;
|
|
11261
|
+
/** Format: int64 */
|
|
11262
|
+
latest_seq?: number | null;
|
|
11263
|
+
prompt_hash?: string | null;
|
|
11264
|
+
toolset_hash?: string | null;
|
|
11265
|
+
/** Format: date-time */
|
|
11266
|
+
started_at?: string | null;
|
|
11267
|
+
/** Format: date-time */
|
|
11268
|
+
completed_at?: string | null;
|
|
11269
|
+
/** Format: date-time */
|
|
11270
|
+
created_at?: string;
|
|
11271
|
+
/** Format: double */
|
|
11272
|
+
duration_ms?: number | null;
|
|
11273
|
+
input?: unknown;
|
|
11274
|
+
output?: unknown;
|
|
11275
|
+
metrics?: unknown;
|
|
11276
|
+
};
|
|
10748
11277
|
RunKpiResultDetailItem: {
|
|
10749
11278
|
/** Format: uuid */
|
|
10750
11279
|
kpi_result_id?: string;
|
|
@@ -10791,6 +11320,96 @@ export interface components {
|
|
|
10791
11320
|
limit?: number;
|
|
10792
11321
|
has_more?: boolean;
|
|
10793
11322
|
};
|
|
11323
|
+
RunObservabilityBindingItem: {
|
|
11324
|
+
execution_binding?: string | null;
|
|
11325
|
+
/** Format: int32 */
|
|
11326
|
+
capability_count?: number;
|
|
11327
|
+
/** Format: int32 */
|
|
11328
|
+
node_executions_total?: number;
|
|
11329
|
+
/** Format: int32 */
|
|
11330
|
+
node_executions_failed?: number;
|
|
11331
|
+
/** Format: double */
|
|
11332
|
+
failure_rate?: number;
|
|
11333
|
+
/** Format: double */
|
|
11334
|
+
avg_latency_ms?: number;
|
|
11335
|
+
/** Format: int32 */
|
|
11336
|
+
retry_count?: number;
|
|
11337
|
+
/** Format: int32 */
|
|
11338
|
+
replay_count?: number;
|
|
11339
|
+
top_error_category?: string | null;
|
|
11340
|
+
/** Format: date-time */
|
|
11341
|
+
last_seen_at?: string | null;
|
|
11342
|
+
};
|
|
11343
|
+
RunObservabilityBindingListResponse: {
|
|
11344
|
+
items?: components["schemas"]["RunObservabilityBindingItem"][] | null;
|
|
11345
|
+
/** Format: int32 */
|
|
11346
|
+
count?: number;
|
|
11347
|
+
};
|
|
11348
|
+
RunObservabilityCapabilityItem: {
|
|
11349
|
+
capability_ref?: string | null;
|
|
11350
|
+
capability_version?: string | null;
|
|
11351
|
+
execution_binding?: string | null;
|
|
11352
|
+
/** Format: int32 */
|
|
11353
|
+
node_executions_total?: number;
|
|
11354
|
+
/** Format: int32 */
|
|
11355
|
+
node_executions_failed?: number;
|
|
11356
|
+
/** Format: double */
|
|
11357
|
+
failure_rate?: number;
|
|
11358
|
+
/** Format: double */
|
|
11359
|
+
avg_latency_ms?: number;
|
|
11360
|
+
/** Format: int32 */
|
|
11361
|
+
retry_count?: number;
|
|
11362
|
+
/** Format: int32 */
|
|
11363
|
+
replay_count?: number;
|
|
11364
|
+
top_error_category?: string | null;
|
|
11365
|
+
/** Format: date-time */
|
|
11366
|
+
last_seen_at?: string | null;
|
|
11367
|
+
};
|
|
11368
|
+
RunObservabilityCapabilityListResponse: {
|
|
11369
|
+
items?: components["schemas"]["RunObservabilityCapabilityItem"][] | null;
|
|
11370
|
+
/** Format: int32 */
|
|
11371
|
+
count?: number;
|
|
11372
|
+
};
|
|
11373
|
+
RunObservabilityErrorCategoryItem: {
|
|
11374
|
+
error_category?: string | null;
|
|
11375
|
+
/** Format: int32 */
|
|
11376
|
+
count?: number;
|
|
11377
|
+
};
|
|
11378
|
+
RunObservabilitySummaryResponse: {
|
|
11379
|
+
/** Format: uuid */
|
|
11380
|
+
workspace_id?: string;
|
|
11381
|
+
/** Format: uuid */
|
|
11382
|
+
agent_id?: string | null;
|
|
11383
|
+
/** Format: date-time */
|
|
11384
|
+
from?: string | null;
|
|
11385
|
+
/** Format: date-time */
|
|
11386
|
+
to?: string | null;
|
|
11387
|
+
/** Format: int32 */
|
|
11388
|
+
runs_total?: number;
|
|
11389
|
+
/** Format: int32 */
|
|
11390
|
+
runs_completed?: number;
|
|
11391
|
+
/** Format: int32 */
|
|
11392
|
+
runs_failed?: number;
|
|
11393
|
+
/** Format: int32 */
|
|
11394
|
+
node_executions_total?: number;
|
|
11395
|
+
/** Format: int32 */
|
|
11396
|
+
node_executions_failed?: number;
|
|
11397
|
+
/** Format: int32 */
|
|
11398
|
+
retry_count?: number;
|
|
11399
|
+
/** Format: int32 */
|
|
11400
|
+
replay_count?: number;
|
|
11401
|
+
/** Format: int32 */
|
|
11402
|
+
handoff_count?: number;
|
|
11403
|
+
/** Format: double */
|
|
11404
|
+
avg_run_latency_ms?: number;
|
|
11405
|
+
/** Format: double */
|
|
11406
|
+
p95_run_latency_ms?: number;
|
|
11407
|
+
/** Format: double */
|
|
11408
|
+
avg_node_latency_ms?: number;
|
|
11409
|
+
/** Format: double */
|
|
11410
|
+
failure_rate?: number;
|
|
11411
|
+
top_error_categories?: components["schemas"]["RunObservabilityErrorCategoryItem"][] | null;
|
|
11412
|
+
};
|
|
10794
11413
|
RunOutcomeDetailItem: {
|
|
10795
11414
|
/** Format: uuid */
|
|
10796
11415
|
outcome_id?: string;
|
|
@@ -11080,11 +11699,13 @@ export interface components {
|
|
|
11080
11699
|
created_at?: string;
|
|
11081
11700
|
};
|
|
11082
11701
|
TriggerTemplateDto: {
|
|
11083
|
-
capability_ref
|
|
11084
|
-
capability_version
|
|
11085
|
-
|
|
11086
|
-
|
|
11087
|
-
|
|
11702
|
+
capability_ref: string;
|
|
11703
|
+
capability_version: string;
|
|
11704
|
+
execution_binding: string;
|
|
11705
|
+
required_credentials: string[];
|
|
11706
|
+
slug: string;
|
|
11707
|
+
kind: string;
|
|
11708
|
+
title: string;
|
|
11088
11709
|
description?: string | null;
|
|
11089
11710
|
run_input_schema?: unknown;
|
|
11090
11711
|
example_payload?: unknown;
|