@mastra/client-js 1.43.0 → 1.44.0-alpha.1
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.d.ts +5 -1
- package/dist/client.d.ts.map +1 -1
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/route-types.generated.d.ts +467 -393
- package/dist/route-types.generated.d.ts.map +1 -1
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +5 -5
|
@@ -10,7 +10,7 @@ export type Simplify<T> = {
|
|
|
10
10
|
type Shared_Auxiliary_298 = string | number | boolean | null | Shared_Auxiliary_298[] | {
|
|
11
11
|
[key: string]: Shared_Auxiliary_298;
|
|
12
12
|
};
|
|
13
|
-
type
|
|
13
|
+
type Shared_Auxiliary_1090 = {
|
|
14
14
|
op: 'eq' | 'ne' | 'lt' | 'lte' | 'gt' | 'gte';
|
|
15
15
|
left: {
|
|
16
16
|
path: string;
|
|
@@ -42,17 +42,17 @@ type Shared_Auxiliary_1097 = {
|
|
|
42
42
|
};
|
|
43
43
|
} | {
|
|
44
44
|
op: 'and' | 'or';
|
|
45
|
-
args:
|
|
45
|
+
args: Shared_Auxiliary_1090[];
|
|
46
46
|
} | {
|
|
47
47
|
op: 'not';
|
|
48
|
-
arg:
|
|
48
|
+
arg: Shared_Auxiliary_1090;
|
|
49
49
|
};
|
|
50
|
-
type
|
|
50
|
+
type Shared_Auxiliary_1230 = {
|
|
51
51
|
id?: string | undefined;
|
|
52
52
|
name: string;
|
|
53
53
|
type: 'file' | 'folder';
|
|
54
54
|
content?: string | undefined;
|
|
55
|
-
children?:
|
|
55
|
+
children?: Shared_Auxiliary_1230[] | undefined;
|
|
56
56
|
};
|
|
57
57
|
type Shared_Type_0 = {
|
|
58
58
|
id: string;
|
|
@@ -918,6 +918,14 @@ type Shared_Type_57 = {
|
|
|
918
918
|
} | undefined;
|
|
919
919
|
};
|
|
920
920
|
type Shared_Type_58 = {
|
|
921
|
+
type: 'step' | 'agent' | 'tool' | 'mapping' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach' | 'workflow';
|
|
922
|
+
id?: string | undefined;
|
|
923
|
+
description?: string | undefined;
|
|
924
|
+
metadata?: {
|
|
925
|
+
[key: string]: unknown;
|
|
926
|
+
} | undefined;
|
|
927
|
+
};
|
|
928
|
+
type Shared_Type_59 = {
|
|
921
929
|
steps: {
|
|
922
930
|
[key: string]: Shared_Type_57;
|
|
923
931
|
};
|
|
@@ -929,9 +937,7 @@ type Shared_Type_58 = {
|
|
|
929
937
|
metadata?: {
|
|
930
938
|
[key: string]: unknown;
|
|
931
939
|
} | undefined;
|
|
932
|
-
stepGraph:
|
|
933
|
-
type: 'step' | 'agent' | 'tool' | 'mapping' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach' | 'workflow';
|
|
934
|
-
}[];
|
|
940
|
+
stepGraph: Shared_Type_58[];
|
|
935
941
|
inputSchema?: string | undefined;
|
|
936
942
|
outputSchema?: string | undefined;
|
|
937
943
|
stateSchema?: string | undefined;
|
|
@@ -939,7 +945,7 @@ type Shared_Type_58 = {
|
|
|
939
945
|
isProcessorWorkflow?: boolean | undefined;
|
|
940
946
|
origin?: ('code' | 'dynamic') | undefined;
|
|
941
947
|
};
|
|
942
|
-
type
|
|
948
|
+
type Shared_Type_60 = {
|
|
943
949
|
id: string;
|
|
944
950
|
role: 'user' | 'assistant' | 'system' | 'tool' | 'signal';
|
|
945
951
|
createdAt?: Date | undefined;
|
|
@@ -951,7 +957,7 @@ type Shared_Type_59 = {
|
|
|
951
957
|
} | string;
|
|
952
958
|
[x: string]: unknown;
|
|
953
959
|
};
|
|
954
|
-
type
|
|
960
|
+
type Shared_Type_61 = {
|
|
955
961
|
type: 'json_schema';
|
|
956
962
|
name: string;
|
|
957
963
|
description?: string | undefined;
|
|
@@ -960,7 +966,7 @@ type Shared_Type_60 = {
|
|
|
960
966
|
};
|
|
961
967
|
strict?: boolean | undefined;
|
|
962
968
|
};
|
|
963
|
-
type
|
|
969
|
+
type Shared_Type_62 = {
|
|
964
970
|
/** OpenAI provider options such as previousResponseId, conversation, or responseId */
|
|
965
971
|
openai?: {
|
|
966
972
|
[key: string]: unknown;
|
|
@@ -971,7 +977,7 @@ type Shared_Type_61 = {
|
|
|
971
977
|
} | undefined;
|
|
972
978
|
[x: string]: unknown;
|
|
973
979
|
};
|
|
974
|
-
type
|
|
980
|
+
type Shared_Type_63 = {
|
|
975
981
|
id: string;
|
|
976
982
|
type: 'function_call';
|
|
977
983
|
call_id: string;
|
|
@@ -979,7 +985,7 @@ type Shared_Type_62 = {
|
|
|
979
985
|
arguments: string;
|
|
980
986
|
status?: ('in_progress' | 'completed' | 'incomplete') | undefined;
|
|
981
987
|
};
|
|
982
|
-
type
|
|
988
|
+
type Shared_Type_64 = {
|
|
983
989
|
id: string;
|
|
984
990
|
title?: string | undefined;
|
|
985
991
|
resourceId: string;
|
|
@@ -989,7 +995,7 @@ type Shared_Type_63 = {
|
|
|
989
995
|
[key: string]: unknown;
|
|
990
996
|
} | undefined;
|
|
991
997
|
};
|
|
992
|
-
type
|
|
998
|
+
type Shared_Type_65 = {
|
|
993
999
|
id?: string | undefined;
|
|
994
1000
|
cycleId: string;
|
|
995
1001
|
observations: string;
|
|
@@ -1009,14 +1015,14 @@ type Shared_Type_64 = {
|
|
|
1009
1015
|
error: string;
|
|
1010
1016
|
}[] | undefined;
|
|
1011
1017
|
};
|
|
1012
|
-
type
|
|
1018
|
+
type Shared_Type_66 = {
|
|
1013
1019
|
id: string;
|
|
1014
1020
|
scope: 'thread' | 'resource';
|
|
1015
1021
|
resourceId: string;
|
|
1016
1022
|
threadId: string | null;
|
|
1017
1023
|
activeObservations: string;
|
|
1018
1024
|
bufferedObservations?: string | undefined;
|
|
1019
|
-
bufferedObservationChunks?:
|
|
1025
|
+
bufferedObservationChunks?: Shared_Type_65[] | undefined;
|
|
1020
1026
|
bufferedReflection?: string | undefined;
|
|
1021
1027
|
originType: 'initial' | 'observation' | 'reflection';
|
|
1022
1028
|
generationCount: number;
|
|
@@ -1035,7 +1041,7 @@ type Shared_Type_65 = {
|
|
|
1035
1041
|
createdAt: Date;
|
|
1036
1042
|
updatedAt: Date;
|
|
1037
1043
|
};
|
|
1038
|
-
type
|
|
1044
|
+
type Shared_Type_67 = {
|
|
1039
1045
|
dateRange?: {
|
|
1040
1046
|
start?: Date | undefined;
|
|
1041
1047
|
end?: Date | undefined;
|
|
@@ -1047,7 +1053,7 @@ type Shared_Type_66 = {
|
|
|
1047
1053
|
[key: string]: string | number | boolean | null;
|
|
1048
1054
|
} | undefined;
|
|
1049
1055
|
};
|
|
1050
|
-
type
|
|
1056
|
+
type Shared_Type_68 = {
|
|
1051
1057
|
config: {
|
|
1052
1058
|
id: string;
|
|
1053
1059
|
name?: string | undefined;
|
|
@@ -1056,8 +1062,8 @@ type Shared_Type_67 = {
|
|
|
1056
1062
|
judge?: unknown | undefined;
|
|
1057
1063
|
};
|
|
1058
1064
|
};
|
|
1059
|
-
type
|
|
1060
|
-
scorer:
|
|
1065
|
+
type Shared_Type_69 = {
|
|
1066
|
+
scorer: Shared_Type_68;
|
|
1061
1067
|
sampling?: {} | undefined;
|
|
1062
1068
|
agentIds: string[];
|
|
1063
1069
|
agentNames: string[];
|
|
@@ -1065,7 +1071,7 @@ type Shared_Type_68 = {
|
|
|
1065
1071
|
isRegistered: boolean;
|
|
1066
1072
|
source: 'code' | 'stored' | 'fs';
|
|
1067
1073
|
};
|
|
1068
|
-
type
|
|
1074
|
+
type Shared_Type_70 = {
|
|
1069
1075
|
/** Start of date range (inclusive by default) */
|
|
1070
1076
|
start?: Date | undefined;
|
|
1071
1077
|
/** End of date range (inclusive by default) */
|
|
@@ -1075,9 +1081,9 @@ type Shared_Type_69 = {
|
|
|
1075
1081
|
/** When true, excludes the end date from results (uses < instead of <=) */
|
|
1076
1082
|
endExclusive?: boolean | undefined;
|
|
1077
1083
|
};
|
|
1078
|
-
type
|
|
1079
|
-
type
|
|
1080
|
-
type
|
|
1084
|
+
type Shared_Type_71 = 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'provider_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping' | 'skill_resolution' | 'skill_action' | 'agent_signal';
|
|
1085
|
+
type Shared_Type_72 = 'agent' | 'scorer' | 'rag_ingestion' | 'trajectory' | 'input_processor' | 'input_step_processor' | 'output_processor' | 'output_step_processor' | 'tool_result_processor' | 'workflow_step' | 'tool' | 'workflow_run' | 'memory';
|
|
1086
|
+
type Shared_Type_73 = {
|
|
1081
1087
|
/** Total number of items available */
|
|
1082
1088
|
total: number;
|
|
1083
1089
|
/** Current page */
|
|
@@ -1087,13 +1093,13 @@ type Shared_Type_72 = {
|
|
|
1087
1093
|
/** True if more pages are available */
|
|
1088
1094
|
hasMore: boolean;
|
|
1089
1095
|
};
|
|
1090
|
-
type
|
|
1096
|
+
type Shared_Type_74 = {
|
|
1091
1097
|
/** Maximum number of updates requested for this delta poll */
|
|
1092
1098
|
limit: number;
|
|
1093
1099
|
/** True when more matching updates remain after this response */
|
|
1094
1100
|
hasMore: boolean;
|
|
1095
1101
|
};
|
|
1096
|
-
type
|
|
1102
|
+
type Shared_Type_75 = {
|
|
1097
1103
|
/** Unique trace identifier */
|
|
1098
1104
|
traceId: string;
|
|
1099
1105
|
/** Unique span identifier within a trace */
|
|
@@ -1101,19 +1107,19 @@ type Shared_Type_74 = {
|
|
|
1101
1107
|
/** Human-readable span name */
|
|
1102
1108
|
name: string;
|
|
1103
1109
|
/** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
|
|
1104
|
-
spanType:
|
|
1110
|
+
spanType: Shared_Type_71;
|
|
1105
1111
|
/** Whether this is an event (point-in-time) vs a span (duration) */
|
|
1106
1112
|
isEvent: boolean;
|
|
1107
1113
|
/** When the span started */
|
|
1108
1114
|
startedAt: Date;
|
|
1109
1115
|
parentSpanId?: (string | null) | undefined;
|
|
1110
|
-
entityType?: (
|
|
1116
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1111
1117
|
entityId?: (string | null) | undefined;
|
|
1112
1118
|
entityName?: (string | null) | undefined;
|
|
1113
|
-
parentEntityType?: (
|
|
1119
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1114
1120
|
parentEntityId?: (string | null) | undefined;
|
|
1115
1121
|
parentEntityName?: (string | null) | undefined;
|
|
1116
|
-
rootEntityType?: (
|
|
1122
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1117
1123
|
rootEntityId?: (string | null) | undefined;
|
|
1118
1124
|
rootEntityName?: (string | null) | undefined;
|
|
1119
1125
|
userId?: (string | null) | undefined;
|
|
@@ -1157,7 +1163,7 @@ type Shared_Type_74 = {
|
|
|
1157
1163
|
/** Current status of the trace */
|
|
1158
1164
|
status: 'success' | 'error' | 'running';
|
|
1159
1165
|
};
|
|
1160
|
-
type
|
|
1166
|
+
type Shared_Type_76 = {
|
|
1161
1167
|
/** Unique trace identifier */
|
|
1162
1168
|
traceId: string;
|
|
1163
1169
|
/** Unique span identifier within a trace */
|
|
@@ -1165,7 +1171,7 @@ type Shared_Type_75 = {
|
|
|
1165
1171
|
/** Human-readable span name */
|
|
1166
1172
|
name: string;
|
|
1167
1173
|
/** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
|
|
1168
|
-
spanType:
|
|
1174
|
+
spanType: Shared_Type_71;
|
|
1169
1175
|
/** Whether this is an event (point-in-time) vs a span (duration) */
|
|
1170
1176
|
isEvent: boolean;
|
|
1171
1177
|
/** When the span started */
|
|
@@ -1174,7 +1180,7 @@ type Shared_Type_75 = {
|
|
|
1174
1180
|
endedAt?: (Date | null) | undefined;
|
|
1175
1181
|
error?: (unknown | null) | undefined;
|
|
1176
1182
|
status?: (('success' | 'error' | 'running') | null) | undefined;
|
|
1177
|
-
entityType?: (
|
|
1183
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1178
1184
|
entityId?: (string | null) | undefined;
|
|
1179
1185
|
entityName?: (string | null) | undefined;
|
|
1180
1186
|
metadata?: ({
|
|
@@ -1186,7 +1192,7 @@ type Shared_Type_75 = {
|
|
|
1186
1192
|
/** Database record last update time */
|
|
1187
1193
|
updatedAt: Date | null;
|
|
1188
1194
|
};
|
|
1189
|
-
type
|
|
1195
|
+
type Shared_Type_77 = {
|
|
1190
1196
|
/** Unique trace identifier */
|
|
1191
1197
|
traceId: string;
|
|
1192
1198
|
/** Unique span identifier within a trace */
|
|
@@ -1194,19 +1200,19 @@ type Shared_Type_76 = {
|
|
|
1194
1200
|
/** Human-readable span name */
|
|
1195
1201
|
name: string;
|
|
1196
1202
|
/** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
|
|
1197
|
-
spanType:
|
|
1203
|
+
spanType: Shared_Type_71;
|
|
1198
1204
|
/** Whether this is an event (point-in-time) vs a span (duration) */
|
|
1199
1205
|
isEvent: boolean;
|
|
1200
1206
|
/** When the span started */
|
|
1201
1207
|
startedAt: Date;
|
|
1202
1208
|
parentSpanId?: (string | null) | undefined;
|
|
1203
|
-
entityType?: (
|
|
1209
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1204
1210
|
entityId?: (string | null) | undefined;
|
|
1205
1211
|
entityName?: (string | null) | undefined;
|
|
1206
|
-
parentEntityType?: (
|
|
1212
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1207
1213
|
parentEntityId?: (string | null) | undefined;
|
|
1208
1214
|
parentEntityName?: (string | null) | undefined;
|
|
1209
|
-
rootEntityType?: (
|
|
1215
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1210
1216
|
rootEntityId?: (string | null) | undefined;
|
|
1211
1217
|
rootEntityName?: (string | null) | undefined;
|
|
1212
1218
|
userId?: (string | null) | undefined;
|
|
@@ -1248,7 +1254,7 @@ type Shared_Type_76 = {
|
|
|
1248
1254
|
/** Database record last update time */
|
|
1249
1255
|
updatedAt: Date | null;
|
|
1250
1256
|
};
|
|
1251
|
-
type
|
|
1257
|
+
type Shared_Type_78 = {
|
|
1252
1258
|
/** Unique id for this score event */
|
|
1253
1259
|
scoreId?: (string | null) | undefined;
|
|
1254
1260
|
/** When the score was recorded */
|
|
@@ -1266,13 +1272,13 @@ type Shared_Type_77 = {
|
|
|
1266
1272
|
/** Score value (range defined by scorer) */
|
|
1267
1273
|
score: number;
|
|
1268
1274
|
reason?: (string | null) | undefined;
|
|
1269
|
-
entityType?: (
|
|
1275
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1270
1276
|
entityId?: (string | null) | undefined;
|
|
1271
1277
|
entityName?: (string | null) | undefined;
|
|
1272
|
-
parentEntityType?: (
|
|
1278
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1273
1279
|
parentEntityId?: (string | null) | undefined;
|
|
1274
1280
|
parentEntityName?: (string | null) | undefined;
|
|
1275
|
-
rootEntityType?: (
|
|
1281
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1276
1282
|
rootEntityId?: (string | null) | undefined;
|
|
1277
1283
|
rootEntityName?: (string | null) | undefined;
|
|
1278
1284
|
userId?: (string | null) | undefined;
|
|
@@ -1300,15 +1306,15 @@ type Shared_Type_77 = {
|
|
|
1300
1306
|
[key: string]: unknown;
|
|
1301
1307
|
} | null) | undefined;
|
|
1302
1308
|
};
|
|
1303
|
-
type
|
|
1309
|
+
type Shared_Type_79 = {
|
|
1304
1310
|
/** Filter by timestamp range */
|
|
1305
|
-
timestamp?:
|
|
1311
|
+
timestamp?: Shared_Type_70 | undefined;
|
|
1306
1312
|
/** Filter by trace ID */
|
|
1307
1313
|
traceId?: string | undefined;
|
|
1308
1314
|
/** Filter by span ID */
|
|
1309
1315
|
spanId?: string | undefined;
|
|
1310
1316
|
/** Entity type (e.g., 'agent' | 'processor' | 'tool' | 'workflow') */
|
|
1311
|
-
entityType?:
|
|
1317
|
+
entityType?: Shared_Type_72 | undefined;
|
|
1312
1318
|
/** Name of the entity */
|
|
1313
1319
|
entityName?: string | undefined;
|
|
1314
1320
|
/** Version ID of the entity that produced this signal (e.g., agent version, workflow version) */
|
|
@@ -1328,11 +1334,11 @@ type Shared_Type_78 = {
|
|
|
1328
1334
|
/** Environment (e.g., "production" | "staging" | "development") */
|
|
1329
1335
|
environment?: string | undefined;
|
|
1330
1336
|
/** Entity type of the parent entity */
|
|
1331
|
-
parentEntityType?:
|
|
1337
|
+
parentEntityType?: Shared_Type_72 | undefined;
|
|
1332
1338
|
/** Name of the parent entity */
|
|
1333
1339
|
parentEntityName?: string | undefined;
|
|
1334
1340
|
/** Entity type of the root entity */
|
|
1335
|
-
rootEntityType?:
|
|
1341
|
+
rootEntityType?: Shared_Type_72 | undefined;
|
|
1336
1342
|
/** Name of the root entity */
|
|
1337
1343
|
rootEntityName?: string | undefined;
|
|
1338
1344
|
/** Broader resource context (Mastra memory compatibility) */
|
|
@@ -1360,7 +1366,7 @@ type Shared_Type_78 = {
|
|
|
1360
1366
|
/** Filter by how the score was produced */
|
|
1361
1367
|
source?: string | undefined;
|
|
1362
1368
|
};
|
|
1363
|
-
type
|
|
1369
|
+
type Shared_Type_80 = {
|
|
1364
1370
|
/** Unique id for this feedback event */
|
|
1365
1371
|
feedbackId?: (string | null) | undefined;
|
|
1366
1372
|
/** When the feedback was recorded */
|
|
@@ -1377,13 +1383,13 @@ type Shared_Type_79 = {
|
|
|
1377
1383
|
value: number | string;
|
|
1378
1384
|
comment?: (string | null) | undefined;
|
|
1379
1385
|
feedbackUserId?: (string | null) | undefined;
|
|
1380
|
-
entityType?: (
|
|
1386
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1381
1387
|
entityId?: (string | null) | undefined;
|
|
1382
1388
|
entityName?: (string | null) | undefined;
|
|
1383
|
-
parentEntityType?: (
|
|
1389
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1384
1390
|
parentEntityId?: (string | null) | undefined;
|
|
1385
1391
|
parentEntityName?: (string | null) | undefined;
|
|
1386
|
-
rootEntityType?: (
|
|
1392
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1387
1393
|
rootEntityId?: (string | null) | undefined;
|
|
1388
1394
|
rootEntityName?: (string | null) | undefined;
|
|
1389
1395
|
userId?: (string | null) | undefined;
|
|
@@ -1413,15 +1419,15 @@ type Shared_Type_79 = {
|
|
|
1413
1419
|
/** Feedback review workflow status */
|
|
1414
1420
|
reviewStatus: 'needs-review' | 'reviewed';
|
|
1415
1421
|
};
|
|
1416
|
-
type
|
|
1422
|
+
type Shared_Type_81 = {
|
|
1417
1423
|
/** Filter by timestamp range */
|
|
1418
|
-
timestamp?:
|
|
1424
|
+
timestamp?: Shared_Type_70 | undefined;
|
|
1419
1425
|
/** Filter by trace ID */
|
|
1420
1426
|
traceId?: string | undefined;
|
|
1421
1427
|
/** Filter by span ID */
|
|
1422
1428
|
spanId?: string | undefined;
|
|
1423
1429
|
/** Entity type (e.g., 'agent' | 'processor' | 'tool' | 'workflow') */
|
|
1424
|
-
entityType?:
|
|
1430
|
+
entityType?: Shared_Type_72 | undefined;
|
|
1425
1431
|
/** Name of the entity */
|
|
1426
1432
|
entityName?: string | undefined;
|
|
1427
1433
|
/** Version ID of the entity that produced this signal (e.g., agent version, workflow version) */
|
|
@@ -1441,11 +1447,11 @@ type Shared_Type_80 = {
|
|
|
1441
1447
|
/** Environment (e.g., "production" | "staging" | "development") */
|
|
1442
1448
|
environment?: string | undefined;
|
|
1443
1449
|
/** Entity type of the parent entity */
|
|
1444
|
-
parentEntityType?:
|
|
1450
|
+
parentEntityType?: Shared_Type_72 | undefined;
|
|
1445
1451
|
/** Name of the parent entity */
|
|
1446
1452
|
parentEntityName?: string | undefined;
|
|
1447
1453
|
/** Entity type of the root entity */
|
|
1448
|
-
rootEntityType?:
|
|
1454
|
+
rootEntityType?: Shared_Type_72 | undefined;
|
|
1449
1455
|
/** Name of the root entity */
|
|
1450
1456
|
rootEntityName?: string | undefined;
|
|
1451
1457
|
/** Broader resource context (Mastra memory compatibility) */
|
|
@@ -1472,16 +1478,16 @@ type Shared_Type_80 = {
|
|
|
1472
1478
|
feedbackUserId?: string | undefined;
|
|
1473
1479
|
reviewStatus?: ('needs-review' | 'reviewed') | undefined;
|
|
1474
1480
|
};
|
|
1475
|
-
type
|
|
1476
|
-
type
|
|
1481
|
+
type Shared_Type_82 = 'entityType' | 'entityName' | 'parentEntityType' | 'parentEntityName' | 'rootEntityType' | 'rootEntityName' | 'name' | 'provider' | 'model' | 'environment' | 'executionSource' | 'serviceName' | 'threadId' | 'resourceId';
|
|
1482
|
+
type Shared_Type_83 = {
|
|
1477
1483
|
/** Filter by timestamp range */
|
|
1478
|
-
timestamp?:
|
|
1484
|
+
timestamp?: Shared_Type_70 | undefined;
|
|
1479
1485
|
/** Filter by trace ID */
|
|
1480
1486
|
traceId?: string | undefined;
|
|
1481
1487
|
/** Filter by span ID */
|
|
1482
1488
|
spanId?: string | undefined;
|
|
1483
1489
|
/** Entity type (e.g., 'agent' | 'processor' | 'tool' | 'workflow') */
|
|
1484
|
-
entityType?:
|
|
1490
|
+
entityType?: Shared_Type_72 | undefined;
|
|
1485
1491
|
/** Name of the entity */
|
|
1486
1492
|
entityName?: string | undefined;
|
|
1487
1493
|
/** Version ID of the entity that produced this signal (e.g., agent version, workflow version) */
|
|
@@ -1501,11 +1507,11 @@ type Shared_Type_82 = {
|
|
|
1501
1507
|
/** Environment (e.g., "production" | "staging" | "development") */
|
|
1502
1508
|
environment?: string | undefined;
|
|
1503
1509
|
/** Entity type of the parent entity */
|
|
1504
|
-
parentEntityType?:
|
|
1510
|
+
parentEntityType?: Shared_Type_72 | undefined;
|
|
1505
1511
|
/** Name of the parent entity */
|
|
1506
1512
|
parentEntityName?: string | undefined;
|
|
1507
1513
|
/** Entity type of the root entity */
|
|
1508
|
-
rootEntityType?:
|
|
1514
|
+
rootEntityType?: Shared_Type_72 | undefined;
|
|
1509
1515
|
/** Name of the root entity */
|
|
1510
1516
|
rootEntityName?: string | undefined;
|
|
1511
1517
|
/** Broader resource context (Mastra memory compatibility) */
|
|
@@ -1539,7 +1545,7 @@ type Shared_Type_82 = {
|
|
|
1539
1545
|
[key: string]: string;
|
|
1540
1546
|
} | undefined;
|
|
1541
1547
|
};
|
|
1542
|
-
type
|
|
1548
|
+
type Shared_Type_84 = {
|
|
1543
1549
|
/** Part type - text for TextParts */
|
|
1544
1550
|
kind: 'text';
|
|
1545
1551
|
/** Text content */
|
|
@@ -1549,7 +1555,7 @@ type Shared_Type_83 = {
|
|
|
1549
1555
|
[key: string]: unknown;
|
|
1550
1556
|
} | undefined;
|
|
1551
1557
|
};
|
|
1552
|
-
type
|
|
1558
|
+
type Shared_Type_85 = {
|
|
1553
1559
|
/** base64 encoded content of the file */
|
|
1554
1560
|
bytes: string;
|
|
1555
1561
|
/** Optional mimeType for the file */
|
|
@@ -1557,7 +1563,7 @@ type Shared_Type_84 = {
|
|
|
1557
1563
|
/** Optional name for the file */
|
|
1558
1564
|
name?: string | undefined;
|
|
1559
1565
|
};
|
|
1560
|
-
type
|
|
1566
|
+
type Shared_Type_86 = {
|
|
1561
1567
|
/** URL for the File content */
|
|
1562
1568
|
uri: string;
|
|
1563
1569
|
/** Optional mimeType for the file */
|
|
@@ -1565,17 +1571,17 @@ type Shared_Type_85 = {
|
|
|
1565
1571
|
/** Optional name for the file */
|
|
1566
1572
|
name?: string | undefined;
|
|
1567
1573
|
};
|
|
1568
|
-
type
|
|
1574
|
+
type Shared_Type_87 = {
|
|
1569
1575
|
/** Part type - file for FileParts */
|
|
1570
1576
|
kind: 'file';
|
|
1571
1577
|
/** File content either as url or bytes */
|
|
1572
|
-
file:
|
|
1578
|
+
file: Shared_Type_85 | Shared_Type_86;
|
|
1573
1579
|
/** Optional metadata associated with the part */
|
|
1574
1580
|
metadata?: {
|
|
1575
1581
|
[key: string]: unknown;
|
|
1576
1582
|
} | undefined;
|
|
1577
1583
|
};
|
|
1578
|
-
type
|
|
1584
|
+
type Shared_Type_88 = {
|
|
1579
1585
|
/** Part type - data for DataParts */
|
|
1580
1586
|
kind: 'data';
|
|
1581
1587
|
/** Structured data content */
|
|
@@ -1587,7 +1593,7 @@ type Shared_Type_87 = {
|
|
|
1587
1593
|
[key: string]: unknown;
|
|
1588
1594
|
} | undefined;
|
|
1589
1595
|
};
|
|
1590
|
-
type
|
|
1596
|
+
type Shared_Type_89 = {
|
|
1591
1597
|
text?: string | undefined;
|
|
1592
1598
|
raw?: string | undefined;
|
|
1593
1599
|
url?: string | undefined;
|
|
@@ -1598,7 +1604,7 @@ type Shared_Type_88 = {
|
|
|
1598
1604
|
[key: string]: unknown;
|
|
1599
1605
|
} | undefined;
|
|
1600
1606
|
};
|
|
1601
|
-
type
|
|
1607
|
+
type Shared_Type_90 = {
|
|
1602
1608
|
/** Event type */
|
|
1603
1609
|
kind?: 'message' | undefined;
|
|
1604
1610
|
/** Identifier created by the message creator */
|
|
@@ -1606,7 +1612,7 @@ type Shared_Type_89 = {
|
|
|
1606
1612
|
/** Message sender's role */
|
|
1607
1613
|
role: 'user' | 'agent' | 'ROLE_USER' | 'ROLE_AGENT';
|
|
1608
1614
|
/** Message content */
|
|
1609
|
-
parts: ((
|
|
1615
|
+
parts: ((Shared_Type_84 | Shared_Type_87 | Shared_Type_88) | Shared_Type_89)[];
|
|
1610
1616
|
/** The context the message is associated with */
|
|
1611
1617
|
contextId?: string | undefined;
|
|
1612
1618
|
/** Identifier of task the message is related to */
|
|
@@ -1620,22 +1626,22 @@ type Shared_Type_89 = {
|
|
|
1620
1626
|
[key: string]: unknown;
|
|
1621
1627
|
} | undefined;
|
|
1622
1628
|
};
|
|
1623
|
-
type
|
|
1629
|
+
type Shared_Type_91 = {
|
|
1624
1630
|
/** Supported authentication schemes - e.g. Basic, Bearer */
|
|
1625
1631
|
schemes: string[];
|
|
1626
1632
|
/** Optional credentials */
|
|
1627
1633
|
credentials?: string | undefined;
|
|
1628
1634
|
};
|
|
1629
|
-
type
|
|
1635
|
+
type Shared_Type_92 = {
|
|
1630
1636
|
/** URL for sending the push notifications */
|
|
1631
1637
|
url: string;
|
|
1632
1638
|
/** Push Notification ID - created by server to support multiple callbacks */
|
|
1633
1639
|
id?: string | undefined;
|
|
1634
1640
|
/** Token unique to this task/session */
|
|
1635
1641
|
token?: string | undefined;
|
|
1636
|
-
authentication?:
|
|
1642
|
+
authentication?: Shared_Type_91 | undefined;
|
|
1637
1643
|
};
|
|
1638
|
-
type
|
|
1644
|
+
type Shared_Type_93 = {
|
|
1639
1645
|
/** Accepted output modalities by the client */
|
|
1640
1646
|
acceptedOutputModes?: string[] | undefined;
|
|
1641
1647
|
/** If the server should treat the client as a blocking request */
|
|
@@ -1644,18 +1650,18 @@ type Shared_Type_92 = {
|
|
|
1644
1650
|
returnImmediately?: boolean | undefined;
|
|
1645
1651
|
/** Number of recent messages to be retrieved */
|
|
1646
1652
|
historyLength?: number | undefined;
|
|
1647
|
-
pushNotificationConfig?:
|
|
1648
|
-
taskPushNotificationConfig?:
|
|
1653
|
+
pushNotificationConfig?: Shared_Type_92 | undefined;
|
|
1654
|
+
taskPushNotificationConfig?: Shared_Type_92 | undefined;
|
|
1649
1655
|
};
|
|
1650
|
-
type
|
|
1651
|
-
message:
|
|
1652
|
-
configuration?:
|
|
1656
|
+
type Shared_Type_94 = {
|
|
1657
|
+
message: Shared_Type_90;
|
|
1658
|
+
configuration?: Shared_Type_93 | undefined;
|
|
1653
1659
|
/** Extension metadata */
|
|
1654
1660
|
metadata?: {
|
|
1655
1661
|
[key: string]: unknown;
|
|
1656
1662
|
} | undefined;
|
|
1657
1663
|
};
|
|
1658
|
-
type
|
|
1664
|
+
type Shared_Type_95 = {
|
|
1659
1665
|
name: string;
|
|
1660
1666
|
description?: string | undefined;
|
|
1661
1667
|
inputSchema: unknown;
|
|
@@ -1665,18 +1671,18 @@ type Shared_Type_94 = {
|
|
|
1665
1671
|
[key: string]: unknown;
|
|
1666
1672
|
} | undefined;
|
|
1667
1673
|
};
|
|
1668
|
-
type
|
|
1674
|
+
type Shared_Type_96 = (({
|
|
1669
1675
|
[key: string]: {
|
|
1670
1676
|
description?: string | undefined;
|
|
1671
1677
|
rules?: Shared_Type_9 | undefined;
|
|
1672
1678
|
};
|
|
1673
1679
|
} | Shared_Type_12[]) | undefined) | undefined;
|
|
1674
|
-
type
|
|
1680
|
+
type Shared_Type_97 = ((Shared_Type_4 | {
|
|
1675
1681
|
/** Default options for agent execution */
|
|
1676
1682
|
value: Shared_Type_4;
|
|
1677
1683
|
rules?: Shared_Type_9 | undefined;
|
|
1678
1684
|
}[]) | undefined) | undefined;
|
|
1679
|
-
type
|
|
1685
|
+
type Shared_Type_98 = (({
|
|
1680
1686
|
[key: string]: Shared_Type_13;
|
|
1681
1687
|
} | {
|
|
1682
1688
|
value: {
|
|
@@ -1684,7 +1690,7 @@ type Shared_Type_97 = (({
|
|
|
1684
1690
|
};
|
|
1685
1691
|
rules?: Shared_Type_9 | undefined;
|
|
1686
1692
|
}[]) | undefined) | undefined;
|
|
1687
|
-
type
|
|
1693
|
+
type Shared_Type_99 = (({
|
|
1688
1694
|
[key: string]: Shared_Type_15;
|
|
1689
1695
|
} | {
|
|
1690
1696
|
value: {
|
|
@@ -1692,7 +1698,7 @@ type Shared_Type_98 = (({
|
|
|
1692
1698
|
};
|
|
1693
1699
|
rules?: Shared_Type_9 | undefined;
|
|
1694
1700
|
}[]) | undefined) | undefined;
|
|
1695
|
-
type
|
|
1701
|
+
type Shared_Type_100 = (({
|
|
1696
1702
|
[key: string]: Shared_Type_28;
|
|
1697
1703
|
} | {
|
|
1698
1704
|
value: {
|
|
@@ -1700,14 +1706,14 @@ type Shared_Type_99 = (({
|
|
|
1700
1706
|
};
|
|
1701
1707
|
rules?: Shared_Type_9 | undefined;
|
|
1702
1708
|
}[]) | undefined) | undefined;
|
|
1703
|
-
type
|
|
1709
|
+
type Shared_Type_101 = ((({
|
|
1704
1710
|
type: 'id';
|
|
1705
1711
|
workspaceId: string;
|
|
1706
1712
|
} | {
|
|
1707
1713
|
type: 'inline';
|
|
1708
1714
|
config: Shared_Type_36;
|
|
1709
1715
|
} | Shared_Type_37) | Shared_Type_38[]) | undefined) | undefined;
|
|
1710
|
-
type
|
|
1716
|
+
type Shared_Type_102 = {
|
|
1711
1717
|
/** Unique identifier for the version (UUID) */
|
|
1712
1718
|
id: string;
|
|
1713
1719
|
/** ID of the agent this version belongs to */
|
|
@@ -1799,7 +1805,7 @@ type Shared_Type_101 = {
|
|
|
1799
1805
|
/** When this version was created */
|
|
1800
1806
|
createdAt: Date;
|
|
1801
1807
|
};
|
|
1802
|
-
type
|
|
1808
|
+
type Shared_Type_103 = {
|
|
1803
1809
|
/** The field path that changed */
|
|
1804
1810
|
field: string;
|
|
1805
1811
|
/** The value in the "from" version */
|
|
@@ -1807,7 +1813,7 @@ type Shared_Type_102 = {
|
|
|
1807
1813
|
/** The value in the "to" version */
|
|
1808
1814
|
currentValue: unknown;
|
|
1809
1815
|
};
|
|
1810
|
-
type
|
|
1816
|
+
type Shared_Type_104 = {
|
|
1811
1817
|
id: string;
|
|
1812
1818
|
description?: string | undefined;
|
|
1813
1819
|
metadata?: {
|
|
@@ -1824,7 +1830,7 @@ type Shared_Type_103 = {
|
|
|
1824
1830
|
createdAt: Date | string;
|
|
1825
1831
|
updatedAt: Date | string;
|
|
1826
1832
|
};
|
|
1827
|
-
type
|
|
1833
|
+
type Shared_Type_105 = {
|
|
1828
1834
|
type: 'agent';
|
|
1829
1835
|
id: string;
|
|
1830
1836
|
agentId: string;
|
|
@@ -1839,7 +1845,7 @@ type Shared_Type_104 = {
|
|
|
1839
1845
|
} | undefined;
|
|
1840
1846
|
} | undefined;
|
|
1841
1847
|
};
|
|
1842
|
-
type
|
|
1848
|
+
type Shared_Type_106 = {
|
|
1843
1849
|
type: 'tool';
|
|
1844
1850
|
id: string;
|
|
1845
1851
|
toolId: string;
|
|
@@ -1851,19 +1857,38 @@ type Shared_Type_105 = {
|
|
|
1851
1857
|
} | undefined;
|
|
1852
1858
|
} | undefined;
|
|
1853
1859
|
};
|
|
1854
|
-
type
|
|
1860
|
+
type Shared_Type_107 = {
|
|
1855
1861
|
type: 'mapping';
|
|
1856
1862
|
id: string;
|
|
1863
|
+
description?: string | undefined;
|
|
1864
|
+
metadata?: {
|
|
1865
|
+
[key: string]: unknown;
|
|
1866
|
+
} | undefined;
|
|
1857
1867
|
mapConfig: string;
|
|
1858
|
-
}
|
|
1868
|
+
};
|
|
1869
|
+
type Shared_Type_108 = (Shared_Type_105 | Shared_Type_106 | Shared_Type_107 | {
|
|
1859
1870
|
type: 'workflow';
|
|
1860
1871
|
id: string;
|
|
1861
1872
|
workflowId: string;
|
|
1862
1873
|
description?: string | undefined;
|
|
1874
|
+
})[];
|
|
1875
|
+
type Shared_Type_109 = {
|
|
1876
|
+
type: 'parallel';
|
|
1877
|
+
id?: string | undefined;
|
|
1878
|
+
description?: string | undefined;
|
|
1879
|
+
metadata?: {
|
|
1880
|
+
[key: string]: unknown;
|
|
1881
|
+
} | undefined;
|
|
1882
|
+
steps: Shared_Type_108;
|
|
1863
1883
|
};
|
|
1864
|
-
type
|
|
1884
|
+
type Shared_Type_110 = {
|
|
1865
1885
|
type: 'foreach';
|
|
1866
|
-
|
|
1886
|
+
id?: string | undefined;
|
|
1887
|
+
description?: string | undefined;
|
|
1888
|
+
metadata?: {
|
|
1889
|
+
[key: string]: unknown;
|
|
1890
|
+
} | undefined;
|
|
1891
|
+
step: Shared_Type_105 | Shared_Type_106 | {
|
|
1867
1892
|
type: 'workflow';
|
|
1868
1893
|
id: string;
|
|
1869
1894
|
workflowId: string;
|
|
@@ -1873,37 +1898,57 @@ type Shared_Type_107 = {
|
|
|
1873
1898
|
concurrency: number;
|
|
1874
1899
|
} | undefined;
|
|
1875
1900
|
};
|
|
1876
|
-
type
|
|
1877
|
-
type: 'mapping';
|
|
1878
|
-
id: string;
|
|
1879
|
-
mapConfig: string;
|
|
1880
|
-
} | {
|
|
1881
|
-
type: 'workflow';
|
|
1882
|
-
id: string;
|
|
1883
|
-
workflowId: string;
|
|
1884
|
-
description?: string | undefined;
|
|
1885
|
-
} | {
|
|
1886
|
-
type: 'parallel';
|
|
1887
|
-
steps: Shared_Type_106[];
|
|
1888
|
-
} | Shared_Type_107 | {
|
|
1901
|
+
type Shared_Type_111 = {
|
|
1889
1902
|
type: 'sleep';
|
|
1890
1903
|
id: string;
|
|
1904
|
+
description?: string | undefined;
|
|
1905
|
+
metadata?: {
|
|
1906
|
+
[key: string]: unknown;
|
|
1907
|
+
} | undefined;
|
|
1891
1908
|
duration: number;
|
|
1892
|
-
}
|
|
1909
|
+
};
|
|
1910
|
+
type Shared_Type_112 = {
|
|
1893
1911
|
type: 'sleepUntil';
|
|
1894
1912
|
id: string;
|
|
1913
|
+
description?: string | undefined;
|
|
1914
|
+
metadata?: {
|
|
1915
|
+
[key: string]: unknown;
|
|
1916
|
+
} | undefined;
|
|
1895
1917
|
date: string;
|
|
1896
|
-
}
|
|
1918
|
+
};
|
|
1919
|
+
type Shared_Type_113 = {
|
|
1897
1920
|
type: 'conditional';
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1921
|
+
id?: string | undefined;
|
|
1922
|
+
description?: string | undefined;
|
|
1923
|
+
metadata?: {
|
|
1924
|
+
[key: string]: unknown;
|
|
1925
|
+
} | undefined;
|
|
1926
|
+
steps: Shared_Type_108;
|
|
1927
|
+
predicates: Shared_Auxiliary_1090[];
|
|
1928
|
+
};
|
|
1929
|
+
type Shared_Type_114 = {
|
|
1901
1930
|
type: 'loop';
|
|
1902
|
-
|
|
1931
|
+
id?: string | undefined;
|
|
1932
|
+
description?: string | undefined;
|
|
1933
|
+
metadata?: {
|
|
1934
|
+
[key: string]: unknown;
|
|
1935
|
+
} | undefined;
|
|
1936
|
+
step: Shared_Type_105 | Shared_Type_106 | Shared_Type_107 | {
|
|
1937
|
+
type: 'workflow';
|
|
1938
|
+
id: string;
|
|
1939
|
+
workflowId: string;
|
|
1940
|
+
description?: string | undefined;
|
|
1941
|
+
};
|
|
1903
1942
|
loopType: 'dowhile' | 'dountil';
|
|
1904
|
-
predicate:
|
|
1943
|
+
predicate: Shared_Auxiliary_1090;
|
|
1905
1944
|
};
|
|
1906
|
-
type
|
|
1945
|
+
type Shared_Type_115 = Shared_Type_105 | Shared_Type_106 | Shared_Type_107 | {
|
|
1946
|
+
type: 'workflow';
|
|
1947
|
+
id: string;
|
|
1948
|
+
workflowId: string;
|
|
1949
|
+
description?: string | undefined;
|
|
1950
|
+
} | Shared_Type_109 | Shared_Type_110 | Shared_Type_111 | Shared_Type_112 | Shared_Type_113 | Shared_Type_114;
|
|
1951
|
+
type Shared_Type_116 = {
|
|
1907
1952
|
/** Transport type: stdio for local processes, http for remote servers */
|
|
1908
1953
|
type: 'stdio' | 'http';
|
|
1909
1954
|
/** Command to run (stdio only) */
|
|
@@ -1919,7 +1964,7 @@ type Shared_Type_109 = {
|
|
|
1919
1964
|
/** Connection timeout in milliseconds */
|
|
1920
1965
|
timeout?: number | undefined;
|
|
1921
1966
|
};
|
|
1922
|
-
type
|
|
1967
|
+
type Shared_Type_117 = {
|
|
1923
1968
|
id: string;
|
|
1924
1969
|
/** MCP client status: draft, published, or archived */
|
|
1925
1970
|
status: string;
|
|
@@ -1936,10 +1981,10 @@ type Shared_Type_110 = {
|
|
|
1936
1981
|
description?: string | undefined;
|
|
1937
1982
|
/** Map of server name to server configuration */
|
|
1938
1983
|
servers: {
|
|
1939
|
-
[key: string]:
|
|
1984
|
+
[key: string]: Shared_Type_116;
|
|
1940
1985
|
};
|
|
1941
1986
|
};
|
|
1942
|
-
type
|
|
1987
|
+
type Shared_Type_118 = {
|
|
1943
1988
|
type: 'stdio' | 'http';
|
|
1944
1989
|
command?: string | undefined;
|
|
1945
1990
|
args?: string[] | undefined;
|
|
@@ -1949,7 +1994,7 @@ type Shared_Type_111 = {
|
|
|
1949
1994
|
url?: string | undefined;
|
|
1950
1995
|
timeout?: number | undefined;
|
|
1951
1996
|
};
|
|
1952
|
-
type
|
|
1997
|
+
type Shared_Type_119 = {
|
|
1953
1998
|
/** Unique identifier for the version (UUID) */
|
|
1954
1999
|
id: string;
|
|
1955
2000
|
/** ID of the MCP client this version belongs to */
|
|
@@ -1961,7 +2006,7 @@ type Shared_Type_112 = {
|
|
|
1961
2006
|
/** Description of the MCP client */
|
|
1962
2007
|
description?: string | undefined;
|
|
1963
2008
|
servers: {
|
|
1964
|
-
[key: string]:
|
|
2009
|
+
[key: string]: Shared_Type_118;
|
|
1965
2010
|
};
|
|
1966
2011
|
/** Array of field names that changed from the previous version */
|
|
1967
2012
|
changedFields?: string[] | undefined;
|
|
@@ -1970,7 +2015,7 @@ type Shared_Type_112 = {
|
|
|
1970
2015
|
/** When this version was created */
|
|
1971
2016
|
createdAt: Date;
|
|
1972
2017
|
};
|
|
1973
|
-
type
|
|
2018
|
+
type Shared_Type_120 = {
|
|
1974
2019
|
id: string;
|
|
1975
2020
|
/** Prompt block status: draft, published, or archived */
|
|
1976
2021
|
status: string;
|
|
@@ -1996,7 +2041,7 @@ type Shared_Type_113 = {
|
|
|
1996
2041
|
[key: string]: unknown;
|
|
1997
2042
|
} | undefined;
|
|
1998
2043
|
};
|
|
1999
|
-
type
|
|
2044
|
+
type Shared_Type_121 = {
|
|
2000
2045
|
/** Unique identifier for the version (UUID) */
|
|
2001
2046
|
id: string;
|
|
2002
2047
|
/** ID of the prompt block this version belongs to */
|
|
@@ -2022,8 +2067,8 @@ type Shared_Type_114 = {
|
|
|
2022
2067
|
/** When this version was created */
|
|
2023
2068
|
createdAt: Date;
|
|
2024
2069
|
};
|
|
2025
|
-
type
|
|
2026
|
-
type
|
|
2070
|
+
type Shared_Type_122 = 'llm-judge' | 'answer-relevancy' | 'answer-similarity' | 'bias' | 'context-precision' | 'context-relevance' | 'faithfulness' | 'hallucination' | 'noise-sensitivity' | 'prompt-alignment' | 'tool-call-accuracy' | 'toxicity';
|
|
2071
|
+
type Shared_Type_123 = {
|
|
2027
2072
|
id: string;
|
|
2028
2073
|
/** Scorer status: draft, published, or archived */
|
|
2029
2074
|
status: string;
|
|
@@ -2039,7 +2084,7 @@ type Shared_Type_116 = {
|
|
|
2039
2084
|
/** Description of the scorer */
|
|
2040
2085
|
description?: string | undefined;
|
|
2041
2086
|
/** Scorer type: llm-judge for custom, or a preset type name */
|
|
2042
|
-
type:
|
|
2087
|
+
type: Shared_Type_122;
|
|
2043
2088
|
model?: Shared_Type_11 | undefined;
|
|
2044
2089
|
/** System instructions for the judge LLM */
|
|
2045
2090
|
instructions?: string | undefined;
|
|
@@ -2057,13 +2102,13 @@ type Shared_Type_116 = {
|
|
|
2057
2102
|
rate: number;
|
|
2058
2103
|
}) | undefined;
|
|
2059
2104
|
};
|
|
2060
|
-
type
|
|
2105
|
+
type Shared_Type_124 = {
|
|
2061
2106
|
/** Minimum score value (default: 0) */
|
|
2062
2107
|
min?: number | undefined;
|
|
2063
2108
|
/** Maximum score value (default: 1) */
|
|
2064
2109
|
max?: number | undefined;
|
|
2065
2110
|
} | undefined;
|
|
2066
|
-
type
|
|
2111
|
+
type Shared_Type_125 = {
|
|
2067
2112
|
/** Unique identifier for the version (UUID) */
|
|
2068
2113
|
id: string;
|
|
2069
2114
|
/** ID of the scorer this version belongs to */
|
|
@@ -2074,7 +2119,7 @@ type Shared_Type_118 = {
|
|
|
2074
2119
|
name: string;
|
|
2075
2120
|
/** Description of the scorer */
|
|
2076
2121
|
description?: string | undefined;
|
|
2077
|
-
type:
|
|
2122
|
+
type: Shared_Type_122;
|
|
2078
2123
|
model?: Shared_Type_11 | undefined;
|
|
2079
2124
|
instructions?: string | undefined;
|
|
2080
2125
|
scoreRange?: {
|
|
@@ -2097,7 +2142,7 @@ type Shared_Type_118 = {
|
|
|
2097
2142
|
/** When this version was created */
|
|
2098
2143
|
createdAt: Date;
|
|
2099
2144
|
};
|
|
2100
|
-
type
|
|
2145
|
+
type Shared_Type_126 = {
|
|
2101
2146
|
id: string;
|
|
2102
2147
|
/** Workspace status: draft, published, or archived */
|
|
2103
2148
|
status: string;
|
|
@@ -2129,7 +2174,7 @@ type Shared_Type_119 = {
|
|
|
2129
2174
|
/** Operation timeout in milliseconds */
|
|
2130
2175
|
operationTimeout?: number | undefined;
|
|
2131
2176
|
};
|
|
2132
|
-
type
|
|
2177
|
+
type Shared_Type_127 = {
|
|
2133
2178
|
type: 'external';
|
|
2134
2179
|
/** Package path for external source */
|
|
2135
2180
|
packagePath: string;
|
|
@@ -2142,7 +2187,7 @@ type Shared_Type_120 = {
|
|
|
2142
2187
|
/** Mastra path for managed source */
|
|
2143
2188
|
mastraPath: string;
|
|
2144
2189
|
};
|
|
2145
|
-
type
|
|
2190
|
+
type Shared_Type_128 = {
|
|
2146
2191
|
id: string;
|
|
2147
2192
|
/** Skill status: draft, published, or archived */
|
|
2148
2193
|
status: string;
|
|
@@ -2166,7 +2211,7 @@ type Shared_Type_121 = {
|
|
|
2166
2211
|
/** Compatibility requirements */
|
|
2167
2212
|
compatibility?: unknown | undefined;
|
|
2168
2213
|
/** Source location of the skill */
|
|
2169
|
-
source?:
|
|
2214
|
+
source?: Shared_Type_127 | undefined;
|
|
2170
2215
|
/** List of reference file paths */
|
|
2171
2216
|
references?: string[] | undefined;
|
|
2172
2217
|
/** List of script file paths */
|
|
@@ -2174,13 +2219,13 @@ type Shared_Type_121 = {
|
|
|
2174
2219
|
/** List of asset file paths */
|
|
2175
2220
|
assets?: string[] | undefined;
|
|
2176
2221
|
/** Full file tree structure for the skill */
|
|
2177
|
-
files?:
|
|
2222
|
+
files?: Shared_Auxiliary_1230[] | undefined;
|
|
2178
2223
|
/** Additional metadata for the skill */
|
|
2179
2224
|
metadata?: {
|
|
2180
2225
|
[key: string]: unknown;
|
|
2181
2226
|
} | undefined;
|
|
2182
2227
|
};
|
|
2183
|
-
type
|
|
2228
|
+
type Shared_Type_129 = {
|
|
2184
2229
|
id: string;
|
|
2185
2230
|
name: string;
|
|
2186
2231
|
description?: (string | undefined) | null;
|
|
@@ -2204,7 +2249,7 @@ type Shared_Type_122 = {
|
|
|
2204
2249
|
createdAt: Date;
|
|
2205
2250
|
updatedAt: Date;
|
|
2206
2251
|
};
|
|
2207
|
-
type
|
|
2252
|
+
type Shared_Type_130 = {
|
|
2208
2253
|
/** Name of the tool this mock applies to */
|
|
2209
2254
|
toolName: string;
|
|
2210
2255
|
/** Arguments to match against the tool call */
|
|
@@ -2216,13 +2261,13 @@ type Shared_Type_123 = {
|
|
|
2216
2261
|
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
2217
2262
|
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
2218
2263
|
};
|
|
2219
|
-
type
|
|
2264
|
+
type Shared_Type_131 = {
|
|
2220
2265
|
/** How this item was created */
|
|
2221
2266
|
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
2222
2267
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
2223
2268
|
referenceId?: string | undefined;
|
|
2224
2269
|
};
|
|
2225
|
-
type
|
|
2270
|
+
type Shared_Type_132 = {
|
|
2226
2271
|
id: string;
|
|
2227
2272
|
datasetId: string;
|
|
2228
2273
|
datasetVersion: number;
|
|
@@ -2231,7 +2276,7 @@ type Shared_Type_125 = {
|
|
|
2231
2276
|
groundTruth?: unknown | undefined;
|
|
2232
2277
|
expectedTrajectory?: unknown | undefined;
|
|
2233
2278
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
2234
|
-
toolMocks?:
|
|
2279
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
2235
2280
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
2236
2281
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
2237
2282
|
scorerIds?: string[] | undefined;
|
|
@@ -2242,11 +2287,11 @@ type Shared_Type_125 = {
|
|
|
2242
2287
|
[key: string]: unknown;
|
|
2243
2288
|
} | undefined;
|
|
2244
2289
|
/** Source/provenance of this dataset item */
|
|
2245
|
-
source?:
|
|
2290
|
+
source?: Shared_Type_131 | undefined;
|
|
2246
2291
|
createdAt: Date;
|
|
2247
2292
|
updatedAt: Date;
|
|
2248
2293
|
};
|
|
2249
|
-
type
|
|
2294
|
+
type Shared_Type_133 = {
|
|
2250
2295
|
/** Step name to match */
|
|
2251
2296
|
name: string;
|
|
2252
2297
|
durationMs?: number | undefined;
|
|
@@ -2264,7 +2309,7 @@ type Shared_Type_126 = {
|
|
|
2264
2309
|
} | undefined;
|
|
2265
2310
|
success?: boolean | undefined;
|
|
2266
2311
|
};
|
|
2267
|
-
type
|
|
2312
|
+
type Shared_Type_134 = {
|
|
2268
2313
|
/** Step name to match */
|
|
2269
2314
|
name: string;
|
|
2270
2315
|
durationMs?: number | undefined;
|
|
@@ -2283,7 +2328,7 @@ type Shared_Type_127 = {
|
|
|
2283
2328
|
mcpServer?: string | undefined;
|
|
2284
2329
|
success?: boolean | undefined;
|
|
2285
2330
|
};
|
|
2286
|
-
type
|
|
2331
|
+
type Shared_Type_135 = {
|
|
2287
2332
|
/** Step name to match */
|
|
2288
2333
|
name: string;
|
|
2289
2334
|
durationMs?: number | undefined;
|
|
@@ -2298,7 +2343,7 @@ type Shared_Type_128 = {
|
|
|
2298
2343
|
completionTokens?: number | undefined;
|
|
2299
2344
|
finishReason?: string | undefined;
|
|
2300
2345
|
};
|
|
2301
|
-
type
|
|
2346
|
+
type Shared_Type_136 = {
|
|
2302
2347
|
/** Step name to match */
|
|
2303
2348
|
name: string;
|
|
2304
2349
|
durationMs?: number | undefined;
|
|
@@ -2310,7 +2355,7 @@ type Shared_Type_129 = {
|
|
|
2310
2355
|
stepType: 'agent_run';
|
|
2311
2356
|
agentId?: string | undefined;
|
|
2312
2357
|
};
|
|
2313
|
-
type
|
|
2358
|
+
type Shared_Type_137 = {
|
|
2314
2359
|
/** Step name to match */
|
|
2315
2360
|
name: string;
|
|
2316
2361
|
durationMs?: number | undefined;
|
|
@@ -2326,7 +2371,7 @@ type Shared_Type_130 = {
|
|
|
2326
2371
|
[key: string]: unknown;
|
|
2327
2372
|
} | undefined;
|
|
2328
2373
|
};
|
|
2329
|
-
type
|
|
2374
|
+
type Shared_Type_138 = {
|
|
2330
2375
|
/** Step name to match */
|
|
2331
2376
|
name: string;
|
|
2332
2377
|
durationMs?: number | undefined;
|
|
@@ -2339,7 +2384,7 @@ type Shared_Type_131 = {
|
|
|
2339
2384
|
workflowId?: string | undefined;
|
|
2340
2385
|
status?: string | undefined;
|
|
2341
2386
|
};
|
|
2342
|
-
type
|
|
2387
|
+
type Shared_Type_139 = {
|
|
2343
2388
|
/** Step name to match */
|
|
2344
2389
|
name: string;
|
|
2345
2390
|
durationMs?: number | undefined;
|
|
@@ -2352,7 +2397,7 @@ type Shared_Type_132 = {
|
|
|
2352
2397
|
conditionCount?: number | undefined;
|
|
2353
2398
|
selectedSteps?: string[] | undefined;
|
|
2354
2399
|
};
|
|
2355
|
-
type
|
|
2400
|
+
type Shared_Type_140 = {
|
|
2356
2401
|
/** Step name to match */
|
|
2357
2402
|
name: string;
|
|
2358
2403
|
durationMs?: number | undefined;
|
|
@@ -2365,7 +2410,7 @@ type Shared_Type_133 = {
|
|
|
2365
2410
|
branchCount?: number | undefined;
|
|
2366
2411
|
parallelSteps?: string[] | undefined;
|
|
2367
2412
|
};
|
|
2368
|
-
type
|
|
2413
|
+
type Shared_Type_141 = {
|
|
2369
2414
|
/** Step name to match */
|
|
2370
2415
|
name: string;
|
|
2371
2416
|
durationMs?: number | undefined;
|
|
@@ -2378,7 +2423,7 @@ type Shared_Type_134 = {
|
|
|
2378
2423
|
loopType?: string | undefined;
|
|
2379
2424
|
totalIterations?: number | undefined;
|
|
2380
2425
|
};
|
|
2381
|
-
type
|
|
2426
|
+
type Shared_Type_142 = {
|
|
2382
2427
|
/** Step name to match */
|
|
2383
2428
|
name: string;
|
|
2384
2429
|
durationMs?: number | undefined;
|
|
@@ -2391,7 +2436,7 @@ type Shared_Type_135 = {
|
|
|
2391
2436
|
sleepDurationMs?: number | undefined;
|
|
2392
2437
|
sleepType?: string | undefined;
|
|
2393
2438
|
};
|
|
2394
|
-
type
|
|
2439
|
+
type Shared_Type_143 = {
|
|
2395
2440
|
/** Step name to match */
|
|
2396
2441
|
name: string;
|
|
2397
2442
|
durationMs?: number | undefined;
|
|
@@ -2404,7 +2449,7 @@ type Shared_Type_136 = {
|
|
|
2404
2449
|
eventName?: string | undefined;
|
|
2405
2450
|
eventReceived?: boolean | undefined;
|
|
2406
2451
|
};
|
|
2407
|
-
type
|
|
2452
|
+
type Shared_Type_144 = {
|
|
2408
2453
|
/** Step name to match */
|
|
2409
2454
|
name: string;
|
|
2410
2455
|
durationMs?: number | undefined;
|
|
@@ -2416,8 +2461,8 @@ type Shared_Type_137 = {
|
|
|
2416
2461
|
stepType: 'processor_run';
|
|
2417
2462
|
processorId?: string | undefined;
|
|
2418
2463
|
};
|
|
2419
|
-
type
|
|
2420
|
-
type
|
|
2464
|
+
type Shared_Type_145 = Shared_Type_133 | Shared_Type_134 | Shared_Type_135 | Shared_Type_136 | Shared_Type_137 | Shared_Type_138 | Shared_Type_139 | Shared_Type_140 | Shared_Type_141 | Shared_Type_142 | Shared_Type_143 | Shared_Type_144;
|
|
2465
|
+
type Shared_Type_146 = {
|
|
2421
2466
|
/** Step name to match */
|
|
2422
2467
|
name: string;
|
|
2423
2468
|
durationMs?: number | undefined;
|
|
@@ -2428,9 +2473,9 @@ type Shared_Type_139 = {
|
|
|
2428
2473
|
children?: unknown | undefined;
|
|
2429
2474
|
stepType?: undefined | undefined;
|
|
2430
2475
|
};
|
|
2431
|
-
type
|
|
2476
|
+
type Shared_Type_147 = {
|
|
2432
2477
|
/** Expected steps for accuracy checking */
|
|
2433
|
-
steps?: (
|
|
2478
|
+
steps?: (Shared_Type_145 | Shared_Type_146)[] | undefined;
|
|
2434
2479
|
/** How to compare step ordering (default: relaxed) */
|
|
2435
2480
|
ordering?: ('strict' | 'relaxed' | 'unordered') | undefined;
|
|
2436
2481
|
/** Whether to allow repeated steps (default: true) */
|
|
@@ -2450,7 +2495,7 @@ type Shared_Type_140 = {
|
|
|
2450
2495
|
/** Maximum retries per tool before penalizing (default: 2) */
|
|
2451
2496
|
maxRetriesPerTool?: number | undefined;
|
|
2452
2497
|
};
|
|
2453
|
-
type
|
|
2498
|
+
type Shared_Type_148 = {
|
|
2454
2499
|
source?: string | undefined;
|
|
2455
2500
|
sourceId?: string | undefined;
|
|
2456
2501
|
sourceVersion?: string | undefined;
|
|
@@ -2458,7 +2503,7 @@ type Shared_Type_141 = {
|
|
|
2458
2503
|
[key: string]: unknown;
|
|
2459
2504
|
} | undefined;
|
|
2460
2505
|
};
|
|
2461
|
-
type
|
|
2506
|
+
type Shared_Type_149 = {
|
|
2462
2507
|
id: string;
|
|
2463
2508
|
datasetId: string | null;
|
|
2464
2509
|
datasetVersion: number | null;
|
|
@@ -2471,7 +2516,7 @@ type Shared_Type_142 = {
|
|
|
2471
2516
|
metadata?: {
|
|
2472
2517
|
[key: string]: unknown;
|
|
2473
2518
|
} | undefined;
|
|
2474
|
-
provenance?: (
|
|
2519
|
+
provenance?: (Shared_Type_148 | null) | undefined;
|
|
2475
2520
|
runnerAttestation?: ({
|
|
2476
2521
|
runnerId: string;
|
|
2477
2522
|
invocationId: string;
|
|
@@ -2491,7 +2536,7 @@ type Shared_Type_142 = {
|
|
|
2491
2536
|
createdAt: Date;
|
|
2492
2537
|
updatedAt: Date;
|
|
2493
2538
|
};
|
|
2494
|
-
type
|
|
2539
|
+
type Shared_Type_150 = {
|
|
2495
2540
|
served: {
|
|
2496
2541
|
mockIndex: number;
|
|
2497
2542
|
toolName: string;
|
|
@@ -2512,7 +2557,7 @@ type Shared_Type_143 = {
|
|
|
2512
2557
|
args: unknown;
|
|
2513
2558
|
} | undefined;
|
|
2514
2559
|
};
|
|
2515
|
-
type
|
|
2560
|
+
type Shared_Type_151 = {
|
|
2516
2561
|
id: string;
|
|
2517
2562
|
experimentId: string;
|
|
2518
2563
|
itemId: string;
|
|
@@ -2538,10 +2583,10 @@ type Shared_Type_144 = {
|
|
|
2538
2583
|
tags?: (string[] | null) | undefined;
|
|
2539
2584
|
comment?: (string | null) | undefined;
|
|
2540
2585
|
/** Diagnostic receipt for item-level tool mocks */
|
|
2541
|
-
toolMockReport?: (
|
|
2586
|
+
toolMockReport?: (Shared_Type_150 | undefined) | null;
|
|
2542
2587
|
createdAt: Date;
|
|
2543
2588
|
};
|
|
2544
|
-
type
|
|
2589
|
+
type Shared_Type_152 = {
|
|
2545
2590
|
id: string;
|
|
2546
2591
|
status: 'pending' | 'running' | 'suspended' | 'completed' | 'failed' | 'cancelled' | 'timed_out';
|
|
2547
2592
|
toolName: string;
|
|
@@ -2566,7 +2611,7 @@ type Shared_Type_145 = {
|
|
|
2566
2611
|
timeoutMs: number;
|
|
2567
2612
|
suspendPayload?: unknown | undefined;
|
|
2568
2613
|
};
|
|
2569
|
-
type
|
|
2614
|
+
type Shared_Type_153 = {
|
|
2570
2615
|
kind: 'custom';
|
|
2571
2616
|
provider: string;
|
|
2572
2617
|
modelId?: string | undefined;
|
|
@@ -2574,7 +2619,7 @@ type Shared_Type_146 = {
|
|
|
2574
2619
|
provider: string;
|
|
2575
2620
|
modelId?: string | undefined;
|
|
2576
2621
|
};
|
|
2577
|
-
type
|
|
2622
|
+
type Shared_Type_154 = {
|
|
2578
2623
|
kind: 'custom';
|
|
2579
2624
|
provider: string;
|
|
2580
2625
|
modelId: string;
|
|
@@ -2582,13 +2627,13 @@ type Shared_Type_147 = {
|
|
|
2582
2627
|
provider: string;
|
|
2583
2628
|
modelId: string;
|
|
2584
2629
|
};
|
|
2585
|
-
type
|
|
2630
|
+
type Shared_Type_155 = {
|
|
2586
2631
|
behavior?: ('deliver' | 'persist' | 'discard') | undefined;
|
|
2587
2632
|
attributes?: {
|
|
2588
2633
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
2589
2634
|
} | undefined;
|
|
2590
2635
|
};
|
|
2591
|
-
type
|
|
2636
|
+
type Shared_Type_156 = {
|
|
2592
2637
|
behavior?: ('wake' | 'persist' | 'discard') | undefined;
|
|
2593
2638
|
attributes?: {
|
|
2594
2639
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
@@ -2599,7 +2644,7 @@ type Shared_Type_149 = {
|
|
|
2599
2644
|
} | undefined;
|
|
2600
2645
|
} | undefined;
|
|
2601
2646
|
};
|
|
2602
|
-
type
|
|
2647
|
+
type Shared_Type_157 = {
|
|
2603
2648
|
id: string;
|
|
2604
2649
|
agentId: string;
|
|
2605
2650
|
workflowId?: undefined | undefined;
|
|
@@ -2619,8 +2664,8 @@ type Shared_Type_150 = {
|
|
|
2619
2664
|
attributes?: {
|
|
2620
2665
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
2621
2666
|
} | undefined;
|
|
2622
|
-
ifActive?:
|
|
2623
|
-
ifIdle?:
|
|
2667
|
+
ifActive?: Shared_Type_155 | undefined;
|
|
2668
|
+
ifIdle?: Shared_Type_156 | undefined;
|
|
2624
2669
|
providerOptions?: {
|
|
2625
2670
|
[key: string]: unknown;
|
|
2626
2671
|
} | undefined;
|
|
@@ -2630,14 +2675,14 @@ type Shared_Type_150 = {
|
|
|
2630
2675
|
createdAt: number;
|
|
2631
2676
|
updatedAt: number;
|
|
2632
2677
|
};
|
|
2633
|
-
type
|
|
2678
|
+
type Shared_Type_158 = {
|
|
2634
2679
|
status: 'running' | 'success' | 'failed' | 'tripwire' | 'suspended' | 'waiting' | 'pending' | 'canceled' | 'bailed' | 'paused' | 'skipped';
|
|
2635
2680
|
startedAt?: number | undefined;
|
|
2636
2681
|
completedAt?: number | undefined;
|
|
2637
2682
|
durationMs?: number | undefined;
|
|
2638
2683
|
error?: string | undefined;
|
|
2639
2684
|
};
|
|
2640
|
-
type
|
|
2685
|
+
type Shared_Type_159 = {
|
|
2641
2686
|
id: string;
|
|
2642
2687
|
workflowId: string;
|
|
2643
2688
|
agentId?: undefined | undefined;
|
|
@@ -2647,7 +2692,7 @@ type Shared_Type_152 = {
|
|
|
2647
2692
|
nextFireAt: number;
|
|
2648
2693
|
lastFireAt?: number | undefined;
|
|
2649
2694
|
lastRunId?: string | undefined;
|
|
2650
|
-
lastRun?:
|
|
2695
|
+
lastRun?: Shared_Type_158 | undefined;
|
|
2651
2696
|
inputData?: unknown | undefined;
|
|
2652
2697
|
initialState?: unknown | undefined;
|
|
2653
2698
|
requestContext?: {
|
|
@@ -4383,7 +4428,7 @@ export interface GetAuthPermissionPatterns_RouteContract {
|
|
|
4383
4428
|
}
|
|
4384
4429
|
export type GetWorkflows_QueryParams = GetAgents_QueryParams;
|
|
4385
4430
|
export type GetWorkflows_Response = {
|
|
4386
|
-
[key: string]:
|
|
4431
|
+
[key: string]: Shared_Type_59;
|
|
4387
4432
|
};
|
|
4388
4433
|
export type GetWorkflows_Request = Simplify<(never extends never ? {} : {
|
|
4389
4434
|
params: never;
|
|
@@ -4433,7 +4478,7 @@ export type GetWorkflowsWorkflowId_PathParams = {
|
|
|
4433
4478
|
/** Unique identifier for the workflow */
|
|
4434
4479
|
workflowId: string;
|
|
4435
4480
|
};
|
|
4436
|
-
export type GetWorkflowsWorkflowId_Response =
|
|
4481
|
+
export type GetWorkflowsWorkflowId_Response = Shared_Type_59;
|
|
4437
4482
|
export type GetWorkflowsWorkflowId_Request = Simplify<(GetWorkflowsWorkflowId_PathParams extends never ? {} : {
|
|
4438
4483
|
params: GetWorkflowsWorkflowId_PathParams;
|
|
4439
4484
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -4527,9 +4572,7 @@ export type GetWorkflowsWorkflowIdRunsRunId_Response = {
|
|
|
4527
4572
|
activeStepsPath?: {
|
|
4528
4573
|
[key: string]: number[];
|
|
4529
4574
|
} | undefined;
|
|
4530
|
-
serializedStepGraph?:
|
|
4531
|
-
type: 'step' | 'agent' | 'tool' | 'mapping' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach' | 'workflow';
|
|
4532
|
-
}[] | undefined;
|
|
4575
|
+
serializedStepGraph?: Shared_Type_58[] | undefined;
|
|
4533
4576
|
};
|
|
4534
4577
|
export type GetWorkflowsWorkflowIdRunsRunId_Request = Simplify<(GetWorkflowsWorkflowIdRunsRunId_PathParams extends never ? {} : {
|
|
4535
4578
|
params: GetWorkflowsWorkflowIdRunsRunId_PathParams;
|
|
@@ -4692,9 +4735,7 @@ export type PostWorkflowsWorkflowIdStartAsync_Response = {
|
|
|
4692
4735
|
activeStepsPath?: {
|
|
4693
4736
|
[key: string]: number[];
|
|
4694
4737
|
} | undefined;
|
|
4695
|
-
serializedStepGraph?:
|
|
4696
|
-
type: 'step' | 'agent' | 'tool' | 'mapping' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach' | 'workflow';
|
|
4697
|
-
}[] | undefined;
|
|
4738
|
+
serializedStepGraph?: Shared_Type_58[] | undefined;
|
|
4698
4739
|
};
|
|
4699
4740
|
export type PostWorkflowsWorkflowIdStartAsync_Request = Simplify<(PostWorkflowsWorkflowIdStartAsync_PathParams extends never ? {} : {
|
|
4700
4741
|
params: PostWorkflowsWorkflowIdStartAsync_PathParams;
|
|
@@ -5250,7 +5291,7 @@ export interface GetProcessorsProcessorId_RouteContract {
|
|
|
5250
5291
|
export type PostProcessorsProcessorIdExecute_PathParams = GetProcessorsProcessorId_PathParams;
|
|
5251
5292
|
export type PostProcessorsProcessorIdExecute_Body = {
|
|
5252
5293
|
phase: 'input' | 'inputStep' | 'outputStream' | 'outputResult' | 'outputStep' | 'toolResult';
|
|
5253
|
-
messages:
|
|
5294
|
+
messages: Shared_Type_60[];
|
|
5254
5295
|
agentId?: string | undefined;
|
|
5255
5296
|
requestContext?: {
|
|
5256
5297
|
[key: string]: unknown;
|
|
@@ -5259,9 +5300,9 @@ export type PostProcessorsProcessorIdExecute_Body = {
|
|
|
5259
5300
|
export type PostProcessorsProcessorIdExecute_Response = {
|
|
5260
5301
|
success: boolean;
|
|
5261
5302
|
phase: string;
|
|
5262
|
-
messages?:
|
|
5303
|
+
messages?: Shared_Type_60[] | undefined;
|
|
5263
5304
|
messageList?: {
|
|
5264
|
-
messages:
|
|
5305
|
+
messages: Shared_Type_60[];
|
|
5265
5306
|
} | undefined;
|
|
5266
5307
|
tripwire?: {
|
|
5267
5308
|
triggered: boolean;
|
|
@@ -5307,12 +5348,12 @@ export type PostV1Responses_Body = {
|
|
|
5307
5348
|
format: {
|
|
5308
5349
|
/** Requests JSON object output compatibility for the response */
|
|
5309
5350
|
type: 'json_object';
|
|
5310
|
-
} |
|
|
5351
|
+
} | Shared_Type_61;
|
|
5311
5352
|
} | undefined;
|
|
5312
5353
|
/** Optional conversation ID. In Mastra this is the raw threadId. */
|
|
5313
5354
|
conversation_id?: string | undefined;
|
|
5314
5355
|
/** Optional provider-specific options passed through to the underlying model call */
|
|
5315
|
-
providerOptions?:
|
|
5356
|
+
providerOptions?: Shared_Type_62 | undefined;
|
|
5316
5357
|
stream: boolean | undefined;
|
|
5317
5358
|
store: boolean | undefined;
|
|
5318
5359
|
previous_response_id?: string | undefined;
|
|
@@ -5336,7 +5377,7 @@ export type PostV1Responses_Response = {
|
|
|
5336
5377
|
annotations?: unknown[] | undefined;
|
|
5337
5378
|
logprobs?: unknown[] | undefined;
|
|
5338
5379
|
}[];
|
|
5339
|
-
} |
|
|
5380
|
+
} | Shared_Type_63 | {
|
|
5340
5381
|
id: string;
|
|
5341
5382
|
type: 'function_call_output';
|
|
5342
5383
|
call_id: string;
|
|
@@ -5360,11 +5401,11 @@ export type PostV1Responses_Response = {
|
|
|
5360
5401
|
format: {
|
|
5361
5402
|
/** Requests JSON object output compatibility for the response */
|
|
5362
5403
|
type: 'json_object';
|
|
5363
|
-
} |
|
|
5404
|
+
} | Shared_Type_61;
|
|
5364
5405
|
} | null) | undefined;
|
|
5365
5406
|
previous_response_id?: (string | null) | undefined;
|
|
5366
5407
|
conversation_id?: (string | null) | undefined;
|
|
5367
|
-
providerOptions?:
|
|
5408
|
+
providerOptions?: Shared_Type_62 | undefined;
|
|
5368
5409
|
tools?: {
|
|
5369
5410
|
type: 'function';
|
|
5370
5411
|
name: string;
|
|
@@ -5456,7 +5497,7 @@ export type PostV1Conversations_Body = {
|
|
|
5456
5497
|
export type PostV1Conversations_Response = {
|
|
5457
5498
|
id: string;
|
|
5458
5499
|
object: 'conversation';
|
|
5459
|
-
thread:
|
|
5500
|
+
thread: Shared_Type_64;
|
|
5460
5501
|
};
|
|
5461
5502
|
export type PostV1Conversations_Request = Simplify<(never extends never ? {} : {
|
|
5462
5503
|
params: never;
|
|
@@ -5518,7 +5559,7 @@ export type GetV1ConversationsConversationIdItems_Response = {
|
|
|
5518
5559
|
annotations?: unknown[] | undefined;
|
|
5519
5560
|
logprobs?: unknown[] | undefined;
|
|
5520
5561
|
})[];
|
|
5521
|
-
} |
|
|
5562
|
+
} | Shared_Type_63 | {
|
|
5522
5563
|
id: string;
|
|
5523
5564
|
type: 'function_call_output';
|
|
5524
5565
|
call_id: string;
|
|
@@ -5680,8 +5721,8 @@ export type GetMemoryObservationalMemory_QueryParams = {
|
|
|
5680
5721
|
limit?: number | undefined;
|
|
5681
5722
|
};
|
|
5682
5723
|
export type GetMemoryObservationalMemory_Response = {
|
|
5683
|
-
record:
|
|
5684
|
-
history?:
|
|
5724
|
+
record: Shared_Type_66 | null;
|
|
5725
|
+
history?: Shared_Type_66[] | undefined;
|
|
5685
5726
|
};
|
|
5686
5727
|
export type GetMemoryObservationalMemory_Request = Simplify<(never extends never ? {} : {
|
|
5687
5728
|
params: never;
|
|
@@ -5704,7 +5745,7 @@ export interface GetMemoryObservationalMemory_RouteContract {
|
|
|
5704
5745
|
}
|
|
5705
5746
|
export type PostMemoryObservationalMemoryBufferStatus_Body = GetMemoryStatus_QueryParams;
|
|
5706
5747
|
export type PostMemoryObservationalMemoryBufferStatus_Response = {
|
|
5707
|
-
record:
|
|
5748
|
+
record: Shared_Type_66 | null;
|
|
5708
5749
|
};
|
|
5709
5750
|
export type PostMemoryObservationalMemoryBufferStatus_Request = Simplify<(never extends never ? {} : {
|
|
5710
5751
|
params: never;
|
|
@@ -5743,7 +5784,7 @@ export type GetMemoryThreads_Response = {
|
|
|
5743
5784
|
page: number;
|
|
5744
5785
|
perPage: number | false;
|
|
5745
5786
|
hasMore: boolean;
|
|
5746
|
-
threads:
|
|
5787
|
+
threads: Shared_Type_64[];
|
|
5747
5788
|
};
|
|
5748
5789
|
export type GetMemoryThreads_Request = Simplify<(never extends never ? {} : {
|
|
5749
5790
|
params: never;
|
|
@@ -5772,7 +5813,7 @@ export type GetMemoryThreadsThreadId_QueryParams = {
|
|
|
5772
5813
|
agentId?: string | undefined;
|
|
5773
5814
|
resourceId?: string | undefined;
|
|
5774
5815
|
};
|
|
5775
|
-
export type GetMemoryThreadsThreadId_Response =
|
|
5816
|
+
export type GetMemoryThreadsThreadId_Response = Shared_Type_64;
|
|
5776
5817
|
export type GetMemoryThreadsThreadId_Request = Simplify<(GetMemoryThreadsThreadId_PathParams extends never ? {} : {
|
|
5777
5818
|
params: GetMemoryThreadsThreadId_PathParams;
|
|
5778
5819
|
}) & (GetMemoryThreadsThreadId_QueryParams extends never ? {} : {} extends GetMemoryThreadsThreadId_QueryParams ? {
|
|
@@ -5808,7 +5849,7 @@ export type GetMemoryThreadsThreadIdMessages_QueryParams = {
|
|
|
5808
5849
|
withPreviousMessages?: number | undefined;
|
|
5809
5850
|
withNextMessages?: number | undefined;
|
|
5810
5851
|
}[] | undefined;
|
|
5811
|
-
filter?:
|
|
5852
|
+
filter?: Shared_Type_67 | undefined;
|
|
5812
5853
|
includeSystemReminders?: boolean | undefined;
|
|
5813
5854
|
};
|
|
5814
5855
|
export type GetMemoryThreadsThreadIdMessages_Response = {
|
|
@@ -5995,7 +6036,7 @@ export type PostMemoryThreadsThreadIdClone_Body = {
|
|
|
5995
6036
|
} | undefined;
|
|
5996
6037
|
};
|
|
5997
6038
|
export type PostMemoryThreadsThreadIdClone_Response = {
|
|
5998
|
-
thread:
|
|
6039
|
+
thread: Shared_Type_64;
|
|
5999
6040
|
clonedMessages: unknown[];
|
|
6000
6041
|
};
|
|
6001
6042
|
export type PostMemoryThreadsThreadIdClone_Request = Simplify<(PostMemoryThreadsThreadIdClone_PathParams extends never ? {} : {
|
|
@@ -6193,7 +6234,7 @@ export type GetMemoryNetworkThreadsThreadIdMessages_QueryParams = {
|
|
|
6193
6234
|
withPreviousMessages?: number | undefined;
|
|
6194
6235
|
withNextMessages?: number | undefined;
|
|
6195
6236
|
}[] | undefined;
|
|
6196
|
-
filter?:
|
|
6237
|
+
filter?: Shared_Type_67 | undefined;
|
|
6197
6238
|
};
|
|
6198
6239
|
export type GetMemoryNetworkThreadsThreadIdMessages_Response = GetMemoryThreadsThreadIdMessages_Response;
|
|
6199
6240
|
export type GetMemoryNetworkThreadsThreadIdMessages_Request = Simplify<(GetMemoryNetworkThreadsThreadIdMessages_PathParams extends never ? {} : {
|
|
@@ -6327,7 +6368,7 @@ export interface PostMemoryNetworkMessagesDelete_RouteContract {
|
|
|
6327
6368
|
responseType: 'json';
|
|
6328
6369
|
}
|
|
6329
6370
|
export type GetScoresScorers_Response = {
|
|
6330
|
-
[key: string]:
|
|
6371
|
+
[key: string]: Shared_Type_69;
|
|
6331
6372
|
};
|
|
6332
6373
|
export type GetScoresScorers_Request = Simplify<(never extends never ? {} : {
|
|
6333
6374
|
params: never;
|
|
@@ -6352,7 +6393,7 @@ export type GetScoresScorersScorerId_PathParams = {
|
|
|
6352
6393
|
/** Unique identifier for the scorer */
|
|
6353
6394
|
scorerId: string;
|
|
6354
6395
|
};
|
|
6355
|
-
export type GetScoresScorersScorerId_Response =
|
|
6396
|
+
export type GetScoresScorersScorerId_Response = Shared_Type_69 | null;
|
|
6356
6397
|
export type GetScoresScorersScorerId_Request = Simplify<(GetScoresScorersScorerId_PathParams extends never ? {} : {
|
|
6357
6398
|
params: GetScoresScorersScorerId_PathParams;
|
|
6358
6399
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -6483,18 +6524,18 @@ export interface PostScores_RouteContract {
|
|
|
6483
6524
|
responseType: 'json';
|
|
6484
6525
|
}
|
|
6485
6526
|
export type GetObservabilityTraces_QueryParams = {
|
|
6486
|
-
startedAt?: ((
|
|
6487
|
-
endedAt?: ((
|
|
6488
|
-
spanType?: (
|
|
6527
|
+
startedAt?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6528
|
+
endedAt?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6529
|
+
spanType?: (Shared_Type_71 | undefined) | undefined;
|
|
6489
6530
|
/** Filter by trace ID (matches root span) */
|
|
6490
6531
|
traceId?: (string | undefined) | undefined;
|
|
6491
|
-
entityType?: ((
|
|
6532
|
+
entityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6492
6533
|
entityId?: ((string | null) | undefined) | undefined;
|
|
6493
6534
|
entityName?: ((string | null) | undefined) | undefined;
|
|
6494
|
-
parentEntityType?: ((
|
|
6535
|
+
parentEntityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6495
6536
|
parentEntityId?: ((string | null) | undefined) | undefined;
|
|
6496
6537
|
parentEntityName?: ((string | null) | undefined) | undefined;
|
|
6497
|
-
rootEntityType?: ((
|
|
6538
|
+
rootEntityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6498
6539
|
rootEntityId?: ((string | null) | undefined) | undefined;
|
|
6499
6540
|
rootEntityName?: ((string | null) | undefined) | undefined;
|
|
6500
6541
|
userId?: ((string | null) | undefined) | undefined;
|
|
@@ -6520,7 +6561,7 @@ export type GetObservabilityTraces_QueryParams = {
|
|
|
6520
6561
|
tags?: (((string[] | null) | undefined) | undefined) | unknown;
|
|
6521
6562
|
status?: (('success' | 'error' | 'running') | undefined) | undefined;
|
|
6522
6563
|
hasChildError?: (boolean | undefined) | undefined;
|
|
6523
|
-
dateRange?: ((
|
|
6564
|
+
dateRange?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6524
6565
|
name?: (string | undefined) | undefined;
|
|
6525
6566
|
page?: (number | undefined) | undefined;
|
|
6526
6567
|
perPage?: (number | undefined) | undefined;
|
|
@@ -6534,12 +6575,12 @@ export type GetObservabilityTraces_QueryParams = {
|
|
|
6534
6575
|
limit?: (number | undefined) | undefined;
|
|
6535
6576
|
};
|
|
6536
6577
|
export type GetObservabilityTraces_Response = {
|
|
6537
|
-
pagination?:
|
|
6578
|
+
pagination?: Shared_Type_73 | undefined;
|
|
6538
6579
|
/** Incremental polling metadata */
|
|
6539
|
-
delta?:
|
|
6580
|
+
delta?: Shared_Type_74 | undefined;
|
|
6540
6581
|
/** Opaque cursor value for incremental polling */
|
|
6541
6582
|
deltaCursor?: string | undefined;
|
|
6542
|
-
spans:
|
|
6583
|
+
spans: Shared_Type_75[];
|
|
6543
6584
|
};
|
|
6544
6585
|
export type GetObservabilityTraces_Request = Simplify<(never extends never ? {} : {
|
|
6545
6586
|
params: never;
|
|
@@ -6562,12 +6603,12 @@ export interface GetObservabilityTraces_RouteContract {
|
|
|
6562
6603
|
}
|
|
6563
6604
|
export type GetObservabilityTracesLight_QueryParams = GetObservabilityTraces_QueryParams;
|
|
6564
6605
|
export type GetObservabilityTracesLight_Response = {
|
|
6565
|
-
pagination?:
|
|
6606
|
+
pagination?: Shared_Type_73 | undefined;
|
|
6566
6607
|
/** Incremental polling metadata */
|
|
6567
|
-
delta?:
|
|
6608
|
+
delta?: Shared_Type_74 | undefined;
|
|
6568
6609
|
/** Opaque cursor value for incremental polling */
|
|
6569
6610
|
deltaCursor?: string | undefined;
|
|
6570
|
-
spans:
|
|
6611
|
+
spans: Shared_Type_76[];
|
|
6571
6612
|
};
|
|
6572
6613
|
export type GetObservabilityTracesLight_Request = Simplify<(never extends never ? {} : {
|
|
6573
6614
|
params: never;
|
|
@@ -6589,18 +6630,18 @@ export interface GetObservabilityTracesLight_RouteContract {
|
|
|
6589
6630
|
responseType: 'json';
|
|
6590
6631
|
}
|
|
6591
6632
|
export type GetObservabilityBranches_QueryParams = {
|
|
6592
|
-
startedAt?: ((
|
|
6593
|
-
endedAt?: ((
|
|
6594
|
-
spanType?: (
|
|
6633
|
+
startedAt?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6634
|
+
endedAt?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6635
|
+
spanType?: (Shared_Type_71 | undefined) | undefined;
|
|
6595
6636
|
/** Filter by parent trace ID */
|
|
6596
6637
|
traceId?: (string | undefined) | undefined;
|
|
6597
|
-
entityType?: ((
|
|
6638
|
+
entityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6598
6639
|
entityId?: ((string | null) | undefined) | undefined;
|
|
6599
6640
|
entityName?: ((string | null) | undefined) | undefined;
|
|
6600
|
-
parentEntityType?: ((
|
|
6641
|
+
parentEntityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6601
6642
|
parentEntityId?: ((string | null) | undefined) | undefined;
|
|
6602
6643
|
parentEntityName?: ((string | null) | undefined) | undefined;
|
|
6603
|
-
rootEntityType?: ((
|
|
6644
|
+
rootEntityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6604
6645
|
rootEntityId?: ((string | null) | undefined) | undefined;
|
|
6605
6646
|
rootEntityName?: ((string | null) | undefined) | undefined;
|
|
6606
6647
|
userId?: ((string | null) | undefined) | undefined;
|
|
@@ -6637,12 +6678,12 @@ export type GetObservabilityBranches_QueryParams = {
|
|
|
6637
6678
|
limit?: (number | undefined) | undefined;
|
|
6638
6679
|
};
|
|
6639
6680
|
export type GetObservabilityBranches_Response = {
|
|
6640
|
-
pagination?:
|
|
6681
|
+
pagination?: Shared_Type_73 | undefined;
|
|
6641
6682
|
/** Incremental polling metadata */
|
|
6642
|
-
delta?:
|
|
6683
|
+
delta?: Shared_Type_74 | undefined;
|
|
6643
6684
|
/** Opaque cursor value for incremental polling */
|
|
6644
6685
|
deltaCursor?: string | undefined;
|
|
6645
|
-
branches:
|
|
6686
|
+
branches: Shared_Type_75[];
|
|
6646
6687
|
};
|
|
6647
6688
|
export type GetObservabilityBranches_Request = Simplify<(never extends never ? {} : {
|
|
6648
6689
|
params: never;
|
|
@@ -6676,7 +6717,7 @@ export type GetObservabilityTracesTraceIdBranchesSpanId_QueryParams = {
|
|
|
6676
6717
|
export type GetObservabilityTracesTraceIdBranchesSpanId_Response = {
|
|
6677
6718
|
/** Unique trace identifier */
|
|
6678
6719
|
traceId: string;
|
|
6679
|
-
spans:
|
|
6720
|
+
spans: Shared_Type_77[];
|
|
6680
6721
|
};
|
|
6681
6722
|
export type GetObservabilityTracesTraceIdBranchesSpanId_Request = Simplify<(GetObservabilityTracesTraceIdBranchesSpanId_PathParams extends never ? {} : {
|
|
6682
6723
|
params: GetObservabilityTracesTraceIdBranchesSpanId_PathParams;
|
|
@@ -6704,7 +6745,7 @@ export type GetObservabilityTracesTraceId_PathParams = {
|
|
|
6704
6745
|
export type GetObservabilityTracesTraceId_Response = {
|
|
6705
6746
|
/** Unique trace identifier */
|
|
6706
6747
|
traceId: string;
|
|
6707
|
-
spans:
|
|
6748
|
+
spans: Shared_Type_75[];
|
|
6708
6749
|
};
|
|
6709
6750
|
export type GetObservabilityTracesTraceId_Request = Simplify<(GetObservabilityTracesTraceId_PathParams extends never ? {} : {
|
|
6710
6751
|
params: GetObservabilityTracesTraceId_PathParams;
|
|
@@ -6729,7 +6770,7 @@ export type GetObservabilityTracesTraceIdLight_PathParams = GetObservabilityTrac
|
|
|
6729
6770
|
export type GetObservabilityTracesTraceIdLight_Response = {
|
|
6730
6771
|
/** Unique trace identifier */
|
|
6731
6772
|
traceId: string;
|
|
6732
|
-
spans:
|
|
6773
|
+
spans: Shared_Type_76[];
|
|
6733
6774
|
};
|
|
6734
6775
|
export type GetObservabilityTracesTraceIdLight_Request = Simplify<(GetObservabilityTracesTraceIdLight_PathParams extends never ? {} : {
|
|
6735
6776
|
params: GetObservabilityTracesTraceIdLight_PathParams;
|
|
@@ -6753,7 +6794,7 @@ export interface GetObservabilityTracesTraceIdLight_RouteContract {
|
|
|
6753
6794
|
export type GetObservabilityTracesTraceIdSpansSpanId_PathParams = GetObservabilityTracesTraceIdBranchesSpanId_PathParams;
|
|
6754
6795
|
export type GetObservabilityTracesTraceIdSpansSpanId_Response = {
|
|
6755
6796
|
/** Span record data */
|
|
6756
|
-
span:
|
|
6797
|
+
span: Shared_Type_77;
|
|
6757
6798
|
};
|
|
6758
6799
|
export type GetObservabilityTracesTraceIdSpansSpanId_Request = Simplify<(GetObservabilityTracesTraceIdSpansSpanId_PathParams extends never ? {} : {
|
|
6759
6800
|
params: GetObservabilityTracesTraceIdSpansSpanId_PathParams;
|
|
@@ -6841,7 +6882,7 @@ export type GetObservabilityTracesTraceIdSpanIdScores_QueryParams = {
|
|
|
6841
6882
|
perPage?: (number | undefined) | undefined;
|
|
6842
6883
|
};
|
|
6843
6884
|
export type GetObservabilityTracesTraceIdSpanIdScores_Response = {
|
|
6844
|
-
pagination:
|
|
6885
|
+
pagination: Shared_Type_73;
|
|
6845
6886
|
scores: {
|
|
6846
6887
|
id: string;
|
|
6847
6888
|
scorerId: string;
|
|
@@ -6876,7 +6917,7 @@ export type GetObservabilityTracesTraceIdSpanIdScores_Response = {
|
|
|
6876
6917
|
entity: {
|
|
6877
6918
|
[key: string]: unknown;
|
|
6878
6919
|
};
|
|
6879
|
-
entityType?: ('AGENT' | 'WORKFLOW' | 'TRAJECTORY' | 'STEP' | 'EXTERNAL' | 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'provider_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping' | 'skill_resolution') | undefined;
|
|
6920
|
+
entityType?: ('AGENT' | 'WORKFLOW' | 'TRAJECTORY' | 'STEP' | 'EXTERNAL' | 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'provider_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping' | 'skill_resolution' | 'skill_action' | 'agent_signal') | undefined;
|
|
6880
6921
|
structuredOutput?: boolean | undefined;
|
|
6881
6922
|
traceId?: string | undefined;
|
|
6882
6923
|
spanId?: string | undefined;
|
|
@@ -6919,12 +6960,12 @@ export interface GetObservabilityTracesTraceIdSpanIdScores_RouteContract {
|
|
|
6919
6960
|
responseType: 'json';
|
|
6920
6961
|
}
|
|
6921
6962
|
export type GetObservabilityMetrics_QueryParams = {
|
|
6922
|
-
timestamp?: ((
|
|
6963
|
+
timestamp?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6923
6964
|
/** Filter by trace ID */
|
|
6924
6965
|
traceId?: (string | undefined) | undefined;
|
|
6925
6966
|
/** Filter by span ID */
|
|
6926
6967
|
spanId?: (string | undefined) | undefined;
|
|
6927
|
-
entityType?: (
|
|
6968
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
6928
6969
|
entityName?: (string | undefined) | undefined;
|
|
6929
6970
|
entityVersionId?: (string | undefined) | undefined;
|
|
6930
6971
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -6934,9 +6975,9 @@ export type GetObservabilityMetrics_QueryParams = {
|
|
|
6934
6975
|
experimentId?: (string | undefined) | undefined;
|
|
6935
6976
|
serviceName?: (string | undefined) | undefined;
|
|
6936
6977
|
environment?: (string | undefined) | undefined;
|
|
6937
|
-
parentEntityType?: (
|
|
6978
|
+
parentEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
6938
6979
|
parentEntityName?: (string | undefined) | undefined;
|
|
6939
|
-
rootEntityType?: (
|
|
6980
|
+
rootEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
6940
6981
|
rootEntityName?: (string | undefined) | undefined;
|
|
6941
6982
|
resourceId?: (string | undefined) | undefined;
|
|
6942
6983
|
runId?: (string | undefined) | undefined;
|
|
@@ -6967,9 +7008,9 @@ export type GetObservabilityMetrics_QueryParams = {
|
|
|
6967
7008
|
limit?: (number | undefined) | undefined;
|
|
6968
7009
|
};
|
|
6969
7010
|
export type GetObservabilityMetrics_Response = {
|
|
6970
|
-
pagination?:
|
|
7011
|
+
pagination?: Shared_Type_73 | undefined;
|
|
6971
7012
|
/** Incremental polling metadata */
|
|
6972
|
-
delta?:
|
|
7013
|
+
delta?: Shared_Type_74 | undefined;
|
|
6973
7014
|
/** Opaque cursor value for incremental polling */
|
|
6974
7015
|
deltaCursor?: string | undefined;
|
|
6975
7016
|
metrics: {
|
|
@@ -6983,13 +7024,13 @@ export type GetObservabilityMetrics_Response = {
|
|
|
6983
7024
|
value: number;
|
|
6984
7025
|
traceId?: (string | null) | undefined;
|
|
6985
7026
|
spanId?: (string | null) | undefined;
|
|
6986
|
-
entityType?: (
|
|
7027
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
6987
7028
|
entityId?: (string | null) | undefined;
|
|
6988
7029
|
entityName?: (string | null) | undefined;
|
|
6989
|
-
parentEntityType?: (
|
|
7030
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
6990
7031
|
parentEntityId?: (string | null) | undefined;
|
|
6991
7032
|
parentEntityName?: (string | null) | undefined;
|
|
6992
|
-
rootEntityType?: (
|
|
7033
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
6993
7034
|
rootEntityId?: (string | null) | undefined;
|
|
6994
7035
|
rootEntityName?: (string | null) | undefined;
|
|
6995
7036
|
userId?: (string | null) | undefined;
|
|
@@ -7048,12 +7089,12 @@ export interface GetObservabilityMetrics_RouteContract {
|
|
|
7048
7089
|
responseType: 'json';
|
|
7049
7090
|
}
|
|
7050
7091
|
export type GetObservabilityLogs_QueryParams = {
|
|
7051
|
-
timestamp?: ((
|
|
7092
|
+
timestamp?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
7052
7093
|
/** Filter by trace ID */
|
|
7053
7094
|
traceId?: (string | undefined) | undefined;
|
|
7054
7095
|
/** Filter by span ID */
|
|
7055
7096
|
spanId?: (string | undefined) | undefined;
|
|
7056
|
-
entityType?: (
|
|
7097
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7057
7098
|
entityName?: (string | undefined) | undefined;
|
|
7058
7099
|
entityVersionId?: (string | undefined) | undefined;
|
|
7059
7100
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -7063,9 +7104,9 @@ export type GetObservabilityLogs_QueryParams = {
|
|
|
7063
7104
|
experimentId?: (string | undefined) | undefined;
|
|
7064
7105
|
serviceName?: (string | undefined) | undefined;
|
|
7065
7106
|
environment?: (string | undefined) | undefined;
|
|
7066
|
-
parentEntityType?: (
|
|
7107
|
+
parentEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7067
7108
|
parentEntityName?: (string | undefined) | undefined;
|
|
7068
|
-
rootEntityType?: (
|
|
7109
|
+
rootEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7069
7110
|
rootEntityName?: (string | undefined) | undefined;
|
|
7070
7111
|
resourceId?: (string | undefined) | undefined;
|
|
7071
7112
|
runId?: (string | undefined) | undefined;
|
|
@@ -7090,9 +7131,9 @@ export type GetObservabilityLogs_QueryParams = {
|
|
|
7090
7131
|
limit?: (number | undefined) | undefined;
|
|
7091
7132
|
};
|
|
7092
7133
|
export type GetObservabilityLogs_Response = {
|
|
7093
|
-
pagination?:
|
|
7134
|
+
pagination?: Shared_Type_73 | undefined;
|
|
7094
7135
|
/** Incremental polling metadata */
|
|
7095
|
-
delta?:
|
|
7136
|
+
delta?: Shared_Type_74 | undefined;
|
|
7096
7137
|
/** Opaque cursor value for incremental polling */
|
|
7097
7138
|
deltaCursor?: string | undefined;
|
|
7098
7139
|
logs: {
|
|
@@ -7109,13 +7150,13 @@ export type GetObservabilityLogs_Response = {
|
|
|
7109
7150
|
} | null) | undefined;
|
|
7110
7151
|
traceId?: (string | null) | undefined;
|
|
7111
7152
|
spanId?: (string | null) | undefined;
|
|
7112
|
-
entityType?: (
|
|
7153
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
7113
7154
|
entityId?: (string | null) | undefined;
|
|
7114
7155
|
entityName?: (string | null) | undefined;
|
|
7115
|
-
parentEntityType?: (
|
|
7156
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7116
7157
|
parentEntityId?: (string | null) | undefined;
|
|
7117
7158
|
parentEntityName?: (string | null) | undefined;
|
|
7118
|
-
rootEntityType?: (
|
|
7159
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7119
7160
|
rootEntityId?: (string | null) | undefined;
|
|
7120
7161
|
rootEntityName?: (string | null) | undefined;
|
|
7121
7162
|
userId?: (string | null) | undefined;
|
|
@@ -7163,12 +7204,12 @@ export interface GetObservabilityLogs_RouteContract {
|
|
|
7163
7204
|
responseType: 'json';
|
|
7164
7205
|
}
|
|
7165
7206
|
export type GetObservabilityScores_QueryParams = {
|
|
7166
|
-
timestamp?: ((
|
|
7207
|
+
timestamp?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
7167
7208
|
/** Filter by trace ID */
|
|
7168
7209
|
traceId?: (string | undefined) | undefined;
|
|
7169
7210
|
/** Filter by span ID */
|
|
7170
7211
|
spanId?: (string | undefined) | undefined;
|
|
7171
|
-
entityType?: (
|
|
7212
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7172
7213
|
entityName?: (string | undefined) | undefined;
|
|
7173
7214
|
entityVersionId?: (string | undefined) | undefined;
|
|
7174
7215
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -7178,9 +7219,9 @@ export type GetObservabilityScores_QueryParams = {
|
|
|
7178
7219
|
experimentId?: (string | undefined) | undefined;
|
|
7179
7220
|
serviceName?: (string | undefined) | undefined;
|
|
7180
7221
|
environment?: (string | undefined) | undefined;
|
|
7181
|
-
parentEntityType?: (
|
|
7222
|
+
parentEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7182
7223
|
parentEntityName?: (string | undefined) | undefined;
|
|
7183
|
-
rootEntityType?: (
|
|
7224
|
+
rootEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7184
7225
|
rootEntityName?: (string | undefined) | undefined;
|
|
7185
7226
|
resourceId?: (string | undefined) | undefined;
|
|
7186
7227
|
runId?: (string | undefined) | undefined;
|
|
@@ -7210,12 +7251,12 @@ export type GetObservabilityScores_QueryParams = {
|
|
|
7210
7251
|
limit?: (number | undefined) | undefined;
|
|
7211
7252
|
};
|
|
7212
7253
|
export type GetObservabilityScores_Response = {
|
|
7213
|
-
pagination?:
|
|
7254
|
+
pagination?: Shared_Type_73 | undefined;
|
|
7214
7255
|
/** Incremental polling metadata */
|
|
7215
|
-
delta?:
|
|
7256
|
+
delta?: Shared_Type_74 | undefined;
|
|
7216
7257
|
/** Opaque cursor value for incremental polling */
|
|
7217
7258
|
deltaCursor?: string | undefined;
|
|
7218
|
-
scores:
|
|
7259
|
+
scores: Shared_Type_78[];
|
|
7219
7260
|
};
|
|
7220
7261
|
export type GetObservabilityScores_Request = Simplify<(never extends never ? {} : {
|
|
7221
7262
|
params: never;
|
|
@@ -7253,13 +7294,13 @@ export type PostObservabilityScores_Body = {
|
|
|
7253
7294
|
/** Score value (range defined by scorer) */
|
|
7254
7295
|
score: number;
|
|
7255
7296
|
reason?: (string | null) | undefined;
|
|
7256
|
-
entityType?: (
|
|
7297
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
7257
7298
|
entityId?: (string | null) | undefined;
|
|
7258
7299
|
entityName?: (string | null) | undefined;
|
|
7259
|
-
parentEntityType?: (
|
|
7300
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7260
7301
|
parentEntityId?: (string | null) | undefined;
|
|
7261
7302
|
parentEntityName?: (string | null) | undefined;
|
|
7262
|
-
rootEntityType?: (
|
|
7303
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7263
7304
|
rootEntityId?: (string | null) | undefined;
|
|
7264
7305
|
rootEntityName?: (string | null) | undefined;
|
|
7265
7306
|
userId?: (string | null) | undefined;
|
|
@@ -7313,7 +7354,7 @@ export type GetObservabilityScoresScoreId_PathParams = {
|
|
|
7313
7354
|
};
|
|
7314
7355
|
export type GetObservabilityScoresScoreId_Response = {
|
|
7315
7356
|
/** Score record as stored in the database */
|
|
7316
|
-
score:
|
|
7357
|
+
score: Shared_Type_78 | null;
|
|
7317
7358
|
};
|
|
7318
7359
|
export type GetObservabilityScoresScoreId_Request = Simplify<(GetObservabilityScoresScoreId_PathParams extends never ? {} : {
|
|
7319
7360
|
params: GetObservabilityScoresScoreId_PathParams;
|
|
@@ -7342,7 +7383,7 @@ export type PostObservabilityScoresAggregate_Body = {
|
|
|
7342
7383
|
/** Aggregation function */
|
|
7343
7384
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7344
7385
|
/** Filters for querying scores */
|
|
7345
|
-
filters?:
|
|
7386
|
+
filters?: Shared_Type_79 | undefined;
|
|
7346
7387
|
/** Comparison period for aggregate queries */
|
|
7347
7388
|
comparePeriod?: ('previous_period' | 'previous_day' | 'previous_week') | undefined;
|
|
7348
7389
|
};
|
|
@@ -7383,7 +7424,7 @@ export type PostObservabilityScoresBreakdown_Body = {
|
|
|
7383
7424
|
/** Aggregation function */
|
|
7384
7425
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7385
7426
|
/** Filters for querying scores */
|
|
7386
|
-
filters?:
|
|
7427
|
+
filters?: Shared_Type_79 | undefined;
|
|
7387
7428
|
};
|
|
7388
7429
|
export type PostObservabilityScoresBreakdown_Response = {
|
|
7389
7430
|
groups: {
|
|
@@ -7424,7 +7465,7 @@ export type PostObservabilityScoresTimeseries_Body = {
|
|
|
7424
7465
|
/** Aggregation function */
|
|
7425
7466
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7426
7467
|
/** Filters for querying scores */
|
|
7427
|
-
filters?:
|
|
7468
|
+
filters?: Shared_Type_79 | undefined;
|
|
7428
7469
|
/** Fields to group by */
|
|
7429
7470
|
groupBy?: string[] | undefined;
|
|
7430
7471
|
};
|
|
@@ -7469,7 +7510,7 @@ export type PostObservabilityScoresPercentiles_Body = {
|
|
|
7469
7510
|
/** Time bucket interval */
|
|
7470
7511
|
interval: '1m' | '5m' | '15m' | '1h' | '1d';
|
|
7471
7512
|
/** Filters for querying scores */
|
|
7472
|
-
filters?:
|
|
7513
|
+
filters?: Shared_Type_79 | undefined;
|
|
7473
7514
|
};
|
|
7474
7515
|
export type PostObservabilityScoresPercentiles_Response = {
|
|
7475
7516
|
series: {
|
|
@@ -7503,12 +7544,12 @@ export interface PostObservabilityScoresPercentiles_RouteContract {
|
|
|
7503
7544
|
responseType: 'json';
|
|
7504
7545
|
}
|
|
7505
7546
|
export type GetObservabilityFeedback_QueryParams = {
|
|
7506
|
-
timestamp?: ((
|
|
7547
|
+
timestamp?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
7507
7548
|
/** Filter by trace ID */
|
|
7508
7549
|
traceId?: (string | undefined) | undefined;
|
|
7509
7550
|
/** Filter by span ID */
|
|
7510
7551
|
spanId?: (string | undefined) | undefined;
|
|
7511
|
-
entityType?: (
|
|
7552
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7512
7553
|
entityName?: (string | undefined) | undefined;
|
|
7513
7554
|
entityVersionId?: (string | undefined) | undefined;
|
|
7514
7555
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -7518,9 +7559,9 @@ export type GetObservabilityFeedback_QueryParams = {
|
|
|
7518
7559
|
experimentId?: (string | undefined) | undefined;
|
|
7519
7560
|
serviceName?: (string | undefined) | undefined;
|
|
7520
7561
|
environment?: (string | undefined) | undefined;
|
|
7521
|
-
parentEntityType?: (
|
|
7562
|
+
parentEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7522
7563
|
parentEntityName?: (string | undefined) | undefined;
|
|
7523
|
-
rootEntityType?: (
|
|
7564
|
+
rootEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7524
7565
|
rootEntityName?: (string | undefined) | undefined;
|
|
7525
7566
|
resourceId?: (string | undefined) | undefined;
|
|
7526
7567
|
runId?: (string | undefined) | undefined;
|
|
@@ -7547,12 +7588,12 @@ export type GetObservabilityFeedback_QueryParams = {
|
|
|
7547
7588
|
limit?: (number | undefined) | undefined;
|
|
7548
7589
|
};
|
|
7549
7590
|
export type GetObservabilityFeedback_Response = {
|
|
7550
|
-
pagination?:
|
|
7591
|
+
pagination?: Shared_Type_73 | undefined;
|
|
7551
7592
|
/** Incremental polling metadata */
|
|
7552
|
-
delta?:
|
|
7593
|
+
delta?: Shared_Type_74 | undefined;
|
|
7553
7594
|
/** Opaque cursor value for incremental polling */
|
|
7554
7595
|
deltaCursor?: string | undefined;
|
|
7555
|
-
feedback:
|
|
7596
|
+
feedback: Shared_Type_80[];
|
|
7556
7597
|
};
|
|
7557
7598
|
export type GetObservabilityFeedback_Request = Simplify<(never extends never ? {} : {
|
|
7558
7599
|
params: never;
|
|
@@ -7589,13 +7630,13 @@ export type PostObservabilityFeedback_Body = {
|
|
|
7589
7630
|
value: number | string;
|
|
7590
7631
|
comment?: (string | null) | undefined;
|
|
7591
7632
|
feedbackUserId?: (string | null) | undefined;
|
|
7592
|
-
entityType?: (
|
|
7633
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
7593
7634
|
entityId?: (string | null) | undefined;
|
|
7594
7635
|
entityName?: (string | null) | undefined;
|
|
7595
|
-
parentEntityType?: (
|
|
7636
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7596
7637
|
parentEntityId?: (string | null) | undefined;
|
|
7597
7638
|
parentEntityName?: (string | null) | undefined;
|
|
7598
|
-
rootEntityType?: (
|
|
7639
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7599
7640
|
rootEntityId?: (string | null) | undefined;
|
|
7600
7641
|
rootEntityName?: (string | null) | undefined;
|
|
7601
7642
|
userId?: (string | null) | undefined;
|
|
@@ -7652,7 +7693,7 @@ export type PatchObservabilityFeedbackFeedbackIdReviewStatus_PathParams = {
|
|
|
7652
7693
|
export type PatchObservabilityFeedbackFeedbackIdReviewStatus_Body = {
|
|
7653
7694
|
reviewStatus: 'needs-review' | 'reviewed';
|
|
7654
7695
|
};
|
|
7655
|
-
export type PatchObservabilityFeedbackFeedbackIdReviewStatus_Response =
|
|
7696
|
+
export type PatchObservabilityFeedbackFeedbackIdReviewStatus_Response = Shared_Type_80;
|
|
7656
7697
|
export type PatchObservabilityFeedbackFeedbackIdReviewStatus_Request = Simplify<(PatchObservabilityFeedbackFeedbackIdReviewStatus_PathParams extends never ? {} : {
|
|
7657
7698
|
params: PatchObservabilityFeedbackFeedbackIdReviewStatus_PathParams;
|
|
7658
7699
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -7680,7 +7721,7 @@ export type PostObservabilityFeedbackAggregate_Body = {
|
|
|
7680
7721
|
/** Aggregation function */
|
|
7681
7722
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7682
7723
|
/** Filters for querying feedback */
|
|
7683
|
-
filters?:
|
|
7724
|
+
filters?: Shared_Type_81 | undefined;
|
|
7684
7725
|
/** Comparison period for aggregate queries */
|
|
7685
7726
|
comparePeriod?: ('previous_period' | 'previous_day' | 'previous_week') | undefined;
|
|
7686
7727
|
};
|
|
@@ -7714,7 +7755,7 @@ export type PostObservabilityFeedbackBreakdown_Body = {
|
|
|
7714
7755
|
/** Aggregation function */
|
|
7715
7756
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7716
7757
|
/** Filters for querying feedback */
|
|
7717
|
-
filters?:
|
|
7758
|
+
filters?: Shared_Type_81 | undefined;
|
|
7718
7759
|
};
|
|
7719
7760
|
export type PostObservabilityFeedbackBreakdown_Response = PostObservabilityScoresBreakdown_Response;
|
|
7720
7761
|
export type PostObservabilityFeedbackBreakdown_Request = Simplify<(never extends never ? {} : {
|
|
@@ -7746,7 +7787,7 @@ export type PostObservabilityFeedbackTimeseries_Body = {
|
|
|
7746
7787
|
/** Aggregation function */
|
|
7747
7788
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7748
7789
|
/** Filters for querying feedback */
|
|
7749
|
-
filters?:
|
|
7790
|
+
filters?: Shared_Type_81 | undefined;
|
|
7750
7791
|
/** Fields to group by */
|
|
7751
7792
|
groupBy?: string[] | undefined;
|
|
7752
7793
|
};
|
|
@@ -7791,7 +7832,7 @@ export type PostObservabilityFeedbackPercentiles_Body = {
|
|
|
7791
7832
|
/** Time bucket interval */
|
|
7792
7833
|
interval: '1m' | '5m' | '15m' | '1h' | '1d';
|
|
7793
7834
|
/** Filters for querying feedback */
|
|
7794
|
-
filters?:
|
|
7835
|
+
filters?: Shared_Type_81 | undefined;
|
|
7795
7836
|
};
|
|
7796
7837
|
export type PostObservabilityFeedbackPercentiles_Response = PostObservabilityScoresPercentiles_Response;
|
|
7797
7838
|
export type PostObservabilityFeedbackPercentiles_Request = Simplify<(never extends never ? {} : {
|
|
@@ -7819,9 +7860,9 @@ export type PostObservabilityMetricsAggregate_Body = {
|
|
|
7819
7860
|
/** Aggregation function */
|
|
7820
7861
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7821
7862
|
/** Column to apply count_distinct over (required when aggregation is 'count_distinct'). Restricted to allowlisted metric dimensions. */
|
|
7822
|
-
distinctColumn?:
|
|
7863
|
+
distinctColumn?: Shared_Type_82 | undefined;
|
|
7823
7864
|
/** Filters for querying metrics */
|
|
7824
|
-
filters?:
|
|
7865
|
+
filters?: Shared_Type_83 | undefined;
|
|
7825
7866
|
/** Comparison period for aggregate queries */
|
|
7826
7867
|
comparePeriod?: ('previous_period' | 'previous_day' | 'previous_week') | undefined;
|
|
7827
7868
|
};
|
|
@@ -7868,9 +7909,9 @@ export type PostObservabilityMetricsBreakdown_Body = {
|
|
|
7868
7909
|
/** Aggregation function */
|
|
7869
7910
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7870
7911
|
/** Column to apply count_distinct over (required when aggregation is 'count_distinct'). Restricted to allowlisted metric dimensions. */
|
|
7871
|
-
distinctColumn?:
|
|
7912
|
+
distinctColumn?: Shared_Type_82 | undefined;
|
|
7872
7913
|
/** Filters for querying metrics */
|
|
7873
|
-
filters?:
|
|
7914
|
+
filters?: Shared_Type_83 | undefined;
|
|
7874
7915
|
/** Maximum number of groups to return (server-side TopK). Required for high-cardinality groupBy. */
|
|
7875
7916
|
limit?: number | undefined;
|
|
7876
7917
|
/** Sort direction for the aggregated value (defaults to 'DESC' at the storage layer; pairs with limit for top/bottom-N). */
|
|
@@ -7917,9 +7958,9 @@ export type PostObservabilityMetricsTimeseries_Body = {
|
|
|
7917
7958
|
/** Aggregation function */
|
|
7918
7959
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7919
7960
|
/** Column to apply count_distinct over (required when aggregation is 'count_distinct'). Restricted to allowlisted metric dimensions. */
|
|
7920
|
-
distinctColumn?:
|
|
7961
|
+
distinctColumn?: Shared_Type_82 | undefined;
|
|
7921
7962
|
/** Filters for querying metrics */
|
|
7922
|
-
filters?:
|
|
7963
|
+
filters?: Shared_Type_83 | undefined;
|
|
7923
7964
|
/** Fields to group by */
|
|
7924
7965
|
groupBy?: string[] | undefined;
|
|
7925
7966
|
};
|
|
@@ -7966,7 +8007,7 @@ export type PostObservabilityMetricsPercentiles_Body = {
|
|
|
7966
8007
|
/** Time bucket interval */
|
|
7967
8008
|
interval: '1m' | '5m' | '15m' | '1h' | '1d';
|
|
7968
8009
|
/** Filters for querying metrics */
|
|
7969
|
-
filters?:
|
|
8010
|
+
filters?: Shared_Type_83 | undefined;
|
|
7970
8011
|
};
|
|
7971
8012
|
export type PostObservabilityMetricsPercentiles_Response = PostObservabilityScoresPercentiles_Response;
|
|
7972
8013
|
export type PostObservabilityMetricsPercentiles_Request = Simplify<(never extends never ? {} : {
|
|
@@ -8079,7 +8120,7 @@ export interface GetObservabilityDiscoveryMetricLabelValues_RouteContract {
|
|
|
8079
8120
|
}
|
|
8080
8121
|
export type GetObservabilityDiscoveryEntityTypes_Response = {
|
|
8081
8122
|
/** Distinct entity types */
|
|
8082
|
-
entityTypes:
|
|
8123
|
+
entityTypes: Shared_Type_72[];
|
|
8083
8124
|
};
|
|
8084
8125
|
export type GetObservabilityDiscoveryEntityTypes_Request = Simplify<(never extends never ? {} : {
|
|
8085
8126
|
params: never;
|
|
@@ -8102,7 +8143,7 @@ export interface GetObservabilityDiscoveryEntityTypes_RouteContract {
|
|
|
8102
8143
|
}
|
|
8103
8144
|
export type GetObservabilityDiscoveryEntityNames_QueryParams = {
|
|
8104
8145
|
/** Optional entity type filter */
|
|
8105
|
-
entityType?: (
|
|
8146
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
8106
8147
|
};
|
|
8107
8148
|
export type GetObservabilityDiscoveryEntityNames_Response = {
|
|
8108
8149
|
/** Distinct entity names */
|
|
@@ -8570,12 +8611,12 @@ export type PostA2aAgentId_Body = {
|
|
|
8570
8611
|
jsonrpc: '2.0';
|
|
8571
8612
|
id: string | number;
|
|
8572
8613
|
method: 'message/send';
|
|
8573
|
-
params:
|
|
8614
|
+
params: Shared_Type_94;
|
|
8574
8615
|
} | {
|
|
8575
8616
|
jsonrpc: '2.0';
|
|
8576
8617
|
id: string | number;
|
|
8577
8618
|
method: 'message/stream';
|
|
8578
|
-
params:
|
|
8619
|
+
params: Shared_Type_94;
|
|
8579
8620
|
} | {
|
|
8580
8621
|
jsonrpc: '2.0';
|
|
8581
8622
|
id: string | number;
|
|
@@ -8632,7 +8673,7 @@ export type PostA2aAgentId_Body = {
|
|
|
8632
8673
|
params: {
|
|
8633
8674
|
/** Task id */
|
|
8634
8675
|
taskId: string;
|
|
8635
|
-
pushNotificationConfig:
|
|
8676
|
+
pushNotificationConfig: Shared_Type_92;
|
|
8636
8677
|
};
|
|
8637
8678
|
} | {
|
|
8638
8679
|
jsonrpc: '2.0';
|
|
@@ -9698,7 +9739,7 @@ export type GetMcpServerIdTools_PathParams = {
|
|
|
9698
9739
|
serverId: string;
|
|
9699
9740
|
};
|
|
9700
9741
|
export type GetMcpServerIdTools_Response = {
|
|
9701
|
-
tools:
|
|
9742
|
+
tools: Shared_Type_95[];
|
|
9702
9743
|
};
|
|
9703
9744
|
export type GetMcpServerIdTools_Request = Simplify<(GetMcpServerIdTools_PathParams extends never ? {} : {
|
|
9704
9745
|
params: GetMcpServerIdTools_PathParams;
|
|
@@ -9725,7 +9766,7 @@ export type GetMcpServerIdToolsToolId_PathParams = {
|
|
|
9725
9766
|
/** Tool ID */
|
|
9726
9767
|
toolId: string;
|
|
9727
9768
|
};
|
|
9728
|
-
export type GetMcpServerIdToolsToolId_Response =
|
|
9769
|
+
export type GetMcpServerIdToolsToolId_Response = Shared_Type_95;
|
|
9729
9770
|
export type GetMcpServerIdToolsToolId_Request = Simplify<(GetMcpServerIdToolsToolId_PathParams extends never ? {} : {
|
|
9730
9771
|
params: GetMcpServerIdToolsToolId_PathParams;
|
|
9731
9772
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -10016,19 +10057,19 @@ export type PostStoredAgentsStoredAgentIdExport_Body = {
|
|
|
10016
10057
|
rules?: Shared_Type_9 | undefined;
|
|
10017
10058
|
}[]) | undefined;
|
|
10018
10059
|
/** Tool keys mapped to per-tool config — static or conditional */
|
|
10019
|
-
tools?:
|
|
10060
|
+
tools?: Shared_Type_96;
|
|
10020
10061
|
/** Default options for generate/stream calls — static or conditional */
|
|
10021
|
-
defaultOptions?:
|
|
10062
|
+
defaultOptions?: Shared_Type_97;
|
|
10022
10063
|
/** Workflow keys with optional per-workflow config — static or conditional */
|
|
10023
|
-
workflows?:
|
|
10064
|
+
workflows?: Shared_Type_96;
|
|
10024
10065
|
/** Agent keys with optional per-agent config — static or conditional */
|
|
10025
|
-
agents?:
|
|
10066
|
+
agents?: Shared_Type_96;
|
|
10026
10067
|
/** Map of tool provider IDs to their tool configurations — static or conditional */
|
|
10027
|
-
integrationTools?:
|
|
10068
|
+
integrationTools?: Shared_Type_98;
|
|
10028
10069
|
/** Tool provider connections and per-tool config (provider-agnostic). Coexists with the deprecated `integrationTools` field. */
|
|
10029
|
-
toolProviders?:
|
|
10070
|
+
toolProviders?: Shared_Type_99;
|
|
10030
10071
|
/** Map of stored MCP client IDs to their tool configurations — static or conditional */
|
|
10031
|
-
mcpClients?:
|
|
10072
|
+
mcpClients?: Shared_Type_98;
|
|
10032
10073
|
/** Input processor graph — static or conditional */
|
|
10033
10074
|
inputProcessors?: (Shared_Type_20 | undefined) | undefined;
|
|
10034
10075
|
/** Output processor graph — static or conditional */
|
|
@@ -10039,14 +10080,14 @@ export type PostStoredAgentsStoredAgentIdExport_Body = {
|
|
|
10039
10080
|
rules?: Shared_Type_9 | undefined;
|
|
10040
10081
|
}[]) | null) | undefined) | undefined;
|
|
10041
10082
|
/** Scorer keys with optional sampling config — static or conditional */
|
|
10042
|
-
scorers?:
|
|
10083
|
+
scorers?: Shared_Type_100;
|
|
10043
10084
|
/** Skill IDs mapped to per-skill config — static or conditional */
|
|
10044
10085
|
skills?: ((Shared_Type_29 | {
|
|
10045
10086
|
value: Shared_Type_29;
|
|
10046
10087
|
rules?: Shared_Type_9 | undefined;
|
|
10047
10088
|
}[]) | undefined) | undefined;
|
|
10048
10089
|
/** Workspace reference (stored ID or inline config) — static or conditional */
|
|
10049
|
-
workspace?:
|
|
10090
|
+
workspace?: Shared_Type_101;
|
|
10050
10091
|
/** Browser configuration — object config, true (apply default), false/null (disable) */
|
|
10051
10092
|
browser?: ((Shared_Type_41 | boolean | null) | undefined) | undefined;
|
|
10052
10093
|
/** JSON Schema defining valid request context variables for conditional rule evaluation */
|
|
@@ -10100,19 +10141,19 @@ export type PostStoredAgentsStoredAgentIdChangeRequest_Body = {
|
|
|
10100
10141
|
rules?: Shared_Type_9 | undefined;
|
|
10101
10142
|
}[]) | undefined;
|
|
10102
10143
|
/** Tool keys mapped to per-tool config — static or conditional */
|
|
10103
|
-
tools?:
|
|
10144
|
+
tools?: Shared_Type_96;
|
|
10104
10145
|
/** Default options for generate/stream calls — static or conditional */
|
|
10105
|
-
defaultOptions?:
|
|
10146
|
+
defaultOptions?: Shared_Type_97;
|
|
10106
10147
|
/** Workflow keys with optional per-workflow config — static or conditional */
|
|
10107
|
-
workflows?:
|
|
10148
|
+
workflows?: Shared_Type_96;
|
|
10108
10149
|
/** Agent keys with optional per-agent config — static or conditional */
|
|
10109
|
-
agents?:
|
|
10150
|
+
agents?: Shared_Type_96;
|
|
10110
10151
|
/** Map of tool provider IDs to their tool configurations — static or conditional */
|
|
10111
|
-
integrationTools?:
|
|
10152
|
+
integrationTools?: Shared_Type_98;
|
|
10112
10153
|
/** Tool provider connections and per-tool config (provider-agnostic). Coexists with the deprecated `integrationTools` field. */
|
|
10113
|
-
toolProviders?:
|
|
10154
|
+
toolProviders?: Shared_Type_99;
|
|
10114
10155
|
/** Map of stored MCP client IDs to their tool configurations — static or conditional */
|
|
10115
|
-
mcpClients?:
|
|
10156
|
+
mcpClients?: Shared_Type_98;
|
|
10116
10157
|
/** Input processor graph — static or conditional */
|
|
10117
10158
|
inputProcessors?: (Shared_Type_20 | undefined) | undefined;
|
|
10118
10159
|
/** Output processor graph — static or conditional */
|
|
@@ -10123,14 +10164,14 @@ export type PostStoredAgentsStoredAgentIdChangeRequest_Body = {
|
|
|
10123
10164
|
rules?: Shared_Type_9 | undefined;
|
|
10124
10165
|
}[]) | null) | undefined) | undefined;
|
|
10125
10166
|
/** Scorer keys with optional sampling config — static or conditional */
|
|
10126
|
-
scorers?:
|
|
10167
|
+
scorers?: Shared_Type_100;
|
|
10127
10168
|
/** Skill IDs mapped to per-skill config — static or conditional */
|
|
10128
10169
|
skills?: ((Shared_Type_29 | {
|
|
10129
10170
|
value: Shared_Type_29;
|
|
10130
10171
|
rules?: Shared_Type_9 | undefined;
|
|
10131
10172
|
}[]) | undefined) | undefined;
|
|
10132
10173
|
/** Workspace reference (stored ID or inline config) — static or conditional */
|
|
10133
|
-
workspace?:
|
|
10174
|
+
workspace?: Shared_Type_101;
|
|
10134
10175
|
/** Browser configuration — object config, true (apply default), false/null (disable) */
|
|
10135
10176
|
browser?: ((Shared_Type_41 | boolean | null) | undefined) | undefined;
|
|
10136
10177
|
/** JSON Schema defining valid request context variables for conditional rule evaluation */
|
|
@@ -10527,7 +10568,7 @@ export type GetStoredAgentsAgentIdVersions_Response = {
|
|
|
10527
10568
|
page: number;
|
|
10528
10569
|
perPage: number | false;
|
|
10529
10570
|
hasMore: boolean;
|
|
10530
|
-
versions:
|
|
10571
|
+
versions: Shared_Type_102[];
|
|
10531
10572
|
};
|
|
10532
10573
|
export type GetStoredAgentsAgentIdVersions_Request = Simplify<(GetStoredAgentsAgentIdVersions_PathParams extends never ? {} : {
|
|
10533
10574
|
params: GetStoredAgentsAgentIdVersions_PathParams;
|
|
@@ -10673,7 +10714,7 @@ export type GetStoredAgentsAgentIdVersionsCompare_QueryParams = {
|
|
|
10673
10714
|
};
|
|
10674
10715
|
export type GetStoredAgentsAgentIdVersionsCompare_Response = {
|
|
10675
10716
|
/** List of differences between versions */
|
|
10676
|
-
diffs:
|
|
10717
|
+
diffs: Shared_Type_103[];
|
|
10677
10718
|
/** The source version */
|
|
10678
10719
|
fromVersion: {
|
|
10679
10720
|
/** Unique identifier for the version (UUID) */
|
|
@@ -10886,7 +10927,7 @@ export type GetStoredAgentsAgentIdVersionsVersionId_PathParams = {
|
|
|
10886
10927
|
/** Unique identifier for the version (UUID) */
|
|
10887
10928
|
versionId: string;
|
|
10888
10929
|
};
|
|
10889
|
-
export type GetStoredAgentsAgentIdVersionsVersionId_Response =
|
|
10930
|
+
export type GetStoredAgentsAgentIdVersionsVersionId_Response = Shared_Type_102;
|
|
10890
10931
|
export type GetStoredAgentsAgentIdVersionsVersionId_Request = Simplify<(GetStoredAgentsAgentIdVersionsVersionId_PathParams extends never ? {} : {
|
|
10891
10932
|
params: GetStoredAgentsAgentIdVersionsVersionId_PathParams;
|
|
10892
10933
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11118,7 +11159,7 @@ export type GetStoredWorkflows_QueryParams = {
|
|
|
11118
11159
|
authorId?: string | undefined;
|
|
11119
11160
|
};
|
|
11120
11161
|
export type GetStoredWorkflows_Response = {
|
|
11121
|
-
workflows:
|
|
11162
|
+
workflows: Shared_Type_104[];
|
|
11122
11163
|
total: number;
|
|
11123
11164
|
};
|
|
11124
11165
|
export type GetStoredWorkflows_Request = Simplify<(never extends never ? {} : {
|
|
@@ -11162,7 +11203,7 @@ export type PostStoredWorkflows_Body = {
|
|
|
11162
11203
|
[key: string]: unknown;
|
|
11163
11204
|
} | undefined;
|
|
11164
11205
|
/** Static workflow graph — ordered array of serialized step entries with all refs as ids. */
|
|
11165
|
-
graph:
|
|
11206
|
+
graph: Shared_Type_115[];
|
|
11166
11207
|
/** Helper workflow definitions this workflow nests. Saved with it as one unit — the whole set is validated together, hydrated in derived dependency order, and rejected together, so a failed save never leaves orphaned helpers behind. Each helper becomes an ordinary dynamic workflow in its own right. */
|
|
11167
11208
|
dependencies?: {
|
|
11168
11209
|
/** Workflow id — kebab-case, descriptive */
|
|
@@ -11186,7 +11227,7 @@ export type PostStoredWorkflows_Body = {
|
|
|
11186
11227
|
[key: string]: unknown;
|
|
11187
11228
|
} | undefined;
|
|
11188
11229
|
/** Static workflow graph — ordered array of serialized step entries with all refs as ids. */
|
|
11189
|
-
graph:
|
|
11230
|
+
graph: Shared_Type_115[];
|
|
11190
11231
|
}[] | undefined;
|
|
11191
11232
|
};
|
|
11192
11233
|
export type PostStoredWorkflows_Response = {
|
|
@@ -11218,7 +11259,7 @@ export type GetStoredWorkflowsDynamicWorkflowId_PathParams = {
|
|
|
11218
11259
|
/** Unique identifier for the dynamic workflow definition */
|
|
11219
11260
|
dynamicWorkflowId: string;
|
|
11220
11261
|
};
|
|
11221
|
-
export type GetStoredWorkflowsDynamicWorkflowId_Response =
|
|
11262
|
+
export type GetStoredWorkflowsDynamicWorkflowId_Response = Shared_Type_104;
|
|
11222
11263
|
export type GetStoredWorkflowsDynamicWorkflowId_Request = Simplify<(GetStoredWorkflowsDynamicWorkflowId_PathParams extends never ? {} : {
|
|
11223
11264
|
params: GetStoredWorkflowsDynamicWorkflowId_PathParams;
|
|
11224
11265
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11283,7 +11324,7 @@ export type GetStoredMcpClients_Response = {
|
|
|
11283
11324
|
page: number;
|
|
11284
11325
|
perPage: number | false;
|
|
11285
11326
|
hasMore: boolean;
|
|
11286
|
-
mcpClients:
|
|
11327
|
+
mcpClients: Shared_Type_117[];
|
|
11287
11328
|
};
|
|
11288
11329
|
export type GetStoredMcpClients_Request = Simplify<(never extends never ? {} : {
|
|
11289
11330
|
params: never;
|
|
@@ -11309,7 +11350,7 @@ export type GetStoredMcpClientsStoredMCPClientId_PathParams = {
|
|
|
11309
11350
|
storedMCPClientId: string;
|
|
11310
11351
|
};
|
|
11311
11352
|
export type GetStoredMcpClientsStoredMCPClientId_QueryParams = GetStoredAgentsStoredAgentId_QueryParams;
|
|
11312
|
-
export type GetStoredMcpClientsStoredMCPClientId_Response =
|
|
11353
|
+
export type GetStoredMcpClientsStoredMCPClientId_Response = Shared_Type_117;
|
|
11313
11354
|
export type GetStoredMcpClientsStoredMCPClientId_Request = Simplify<(GetStoredMcpClientsStoredMCPClientId_PathParams extends never ? {} : {
|
|
11314
11355
|
params: GetStoredMcpClientsStoredMCPClientId_PathParams;
|
|
11315
11356
|
}) & (GetStoredMcpClientsStoredMCPClientId_QueryParams extends never ? {} : {} extends GetStoredMcpClientsStoredMCPClientId_QueryParams ? {
|
|
@@ -11344,7 +11385,7 @@ export type PostStoredMcpClients_Body = {
|
|
|
11344
11385
|
description?: string | undefined;
|
|
11345
11386
|
/** Map of server name to server configuration */
|
|
11346
11387
|
servers: {
|
|
11347
|
-
[key: string]:
|
|
11388
|
+
[key: string]: Shared_Type_116;
|
|
11348
11389
|
};
|
|
11349
11390
|
};
|
|
11350
11391
|
export type PostStoredMcpClients_Response = GetStoredMcpClientsStoredMCPClientId_Response;
|
|
@@ -11379,7 +11420,7 @@ export type PatchStoredMcpClientsStoredMCPClientId_Body = {
|
|
|
11379
11420
|
description?: (string | undefined) | undefined;
|
|
11380
11421
|
/** Map of server name to server configuration */
|
|
11381
11422
|
servers?: {
|
|
11382
|
-
[key: string]:
|
|
11423
|
+
[key: string]: Shared_Type_116;
|
|
11383
11424
|
} | undefined;
|
|
11384
11425
|
};
|
|
11385
11426
|
export type PatchStoredMcpClientsStoredMCPClientId_Response = {
|
|
@@ -11392,7 +11433,7 @@ export type PatchStoredMcpClientsStoredMCPClientId_Response = {
|
|
|
11392
11433
|
} | undefined;
|
|
11393
11434
|
createdAt: Date;
|
|
11394
11435
|
updatedAt: Date;
|
|
11395
|
-
} |
|
|
11436
|
+
} | Shared_Type_117;
|
|
11396
11437
|
export type PatchStoredMcpClientsStoredMCPClientId_Request = Simplify<(PatchStoredMcpClientsStoredMCPClientId_PathParams extends never ? {} : {
|
|
11397
11438
|
params: PatchStoredMcpClientsStoredMCPClientId_PathParams;
|
|
11398
11439
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11443,7 +11484,7 @@ export type GetStoredMcpClientsMcpClientIdVersions_Response = {
|
|
|
11443
11484
|
page: number;
|
|
11444
11485
|
perPage: number | false;
|
|
11445
11486
|
hasMore: boolean;
|
|
11446
|
-
versions:
|
|
11487
|
+
versions: Shared_Type_119[];
|
|
11447
11488
|
};
|
|
11448
11489
|
export type GetStoredMcpClientsMcpClientIdVersions_Request = Simplify<(GetStoredMcpClientsMcpClientIdVersions_PathParams extends never ? {} : {
|
|
11449
11490
|
params: GetStoredMcpClientsMcpClientIdVersions_PathParams;
|
|
@@ -11475,7 +11516,7 @@ export type PostStoredMcpClientsMcpClientIdVersions_Response = {
|
|
|
11475
11516
|
/** Description of the MCP client */
|
|
11476
11517
|
description?: (string | undefined) | undefined;
|
|
11477
11518
|
servers?: {
|
|
11478
|
-
[key: string]:
|
|
11519
|
+
[key: string]: Shared_Type_118;
|
|
11479
11520
|
} | undefined;
|
|
11480
11521
|
/** Array of field names that changed from the previous version */
|
|
11481
11522
|
changedFields?: (string[] | undefined) | undefined;
|
|
@@ -11506,7 +11547,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsCompare_PathParams = GetStored
|
|
|
11506
11547
|
export type GetStoredMcpClientsMcpClientIdVersionsCompare_QueryParams = GetStoredAgentsAgentIdVersionsCompare_QueryParams;
|
|
11507
11548
|
export type GetStoredMcpClientsMcpClientIdVersionsCompare_Response = {
|
|
11508
11549
|
/** List of differences between versions */
|
|
11509
|
-
diffs:
|
|
11550
|
+
diffs: Shared_Type_103[];
|
|
11510
11551
|
/** The source version */
|
|
11511
11552
|
fromVersion: {
|
|
11512
11553
|
/** Unique identifier for the version (UUID) */
|
|
@@ -11520,7 +11561,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsCompare_Response = {
|
|
|
11520
11561
|
/** Description of the MCP client */
|
|
11521
11562
|
description?: string | undefined;
|
|
11522
11563
|
servers: {
|
|
11523
|
-
[key: string]:
|
|
11564
|
+
[key: string]: Shared_Type_118;
|
|
11524
11565
|
};
|
|
11525
11566
|
/** Array of field names that changed from the previous version */
|
|
11526
11567
|
changedFields?: string[] | undefined;
|
|
@@ -11542,7 +11583,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsCompare_Response = {
|
|
|
11542
11583
|
/** Description of the MCP client */
|
|
11543
11584
|
description?: string | undefined;
|
|
11544
11585
|
servers: {
|
|
11545
|
-
[key: string]:
|
|
11586
|
+
[key: string]: Shared_Type_118;
|
|
11546
11587
|
};
|
|
11547
11588
|
/** Array of field names that changed from the previous version */
|
|
11548
11589
|
changedFields?: string[] | undefined;
|
|
@@ -11577,7 +11618,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsVersionId_PathParams = {
|
|
|
11577
11618
|
/** Unique identifier for the version (UUID) */
|
|
11578
11619
|
versionId: string;
|
|
11579
11620
|
};
|
|
11580
|
-
export type GetStoredMcpClientsMcpClientIdVersionsVersionId_Response =
|
|
11621
|
+
export type GetStoredMcpClientsMcpClientIdVersionsVersionId_Response = Shared_Type_119;
|
|
11581
11622
|
export type GetStoredMcpClientsMcpClientIdVersionsVersionId_Request = Simplify<(GetStoredMcpClientsMcpClientIdVersionsVersionId_PathParams extends never ? {} : {
|
|
11582
11623
|
params: GetStoredMcpClientsMcpClientIdVersionsVersionId_PathParams;
|
|
11583
11624
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11681,7 +11722,7 @@ export type GetStoredPromptBlocks_Response = {
|
|
|
11681
11722
|
page: number;
|
|
11682
11723
|
perPage: number | false;
|
|
11683
11724
|
hasMore: boolean;
|
|
11684
|
-
promptBlocks:
|
|
11725
|
+
promptBlocks: Shared_Type_120[];
|
|
11685
11726
|
};
|
|
11686
11727
|
export type GetStoredPromptBlocks_Request = Simplify<(never extends never ? {} : {
|
|
11687
11728
|
params: never;
|
|
@@ -11707,7 +11748,7 @@ export type GetStoredPromptBlocksStoredPromptBlockId_PathParams = {
|
|
|
11707
11748
|
storedPromptBlockId: string;
|
|
11708
11749
|
};
|
|
11709
11750
|
export type GetStoredPromptBlocksStoredPromptBlockId_QueryParams = GetStoredAgentsStoredAgentId_QueryParams;
|
|
11710
|
-
export type GetStoredPromptBlocksStoredPromptBlockId_Response =
|
|
11751
|
+
export type GetStoredPromptBlocksStoredPromptBlockId_Response = Shared_Type_120;
|
|
11711
11752
|
export type GetStoredPromptBlocksStoredPromptBlockId_Request = Simplify<(GetStoredPromptBlocksStoredPromptBlockId_PathParams extends never ? {} : {
|
|
11712
11753
|
params: GetStoredPromptBlocksStoredPromptBlockId_PathParams;
|
|
11713
11754
|
}) & (GetStoredPromptBlocksStoredPromptBlockId_QueryParams extends never ? {} : {} extends GetStoredPromptBlocksStoredPromptBlockId_QueryParams ? {
|
|
@@ -11798,7 +11839,7 @@ export type PatchStoredPromptBlocksStoredPromptBlockId_Response = {
|
|
|
11798
11839
|
} | undefined;
|
|
11799
11840
|
createdAt: Date;
|
|
11800
11841
|
updatedAt: Date;
|
|
11801
|
-
} |
|
|
11842
|
+
} | Shared_Type_120;
|
|
11802
11843
|
export type PatchStoredPromptBlocksStoredPromptBlockId_Request = Simplify<(PatchStoredPromptBlocksStoredPromptBlockId_PathParams extends never ? {} : {
|
|
11803
11844
|
params: PatchStoredPromptBlocksStoredPromptBlockId_PathParams;
|
|
11804
11845
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11849,7 +11890,7 @@ export type GetStoredPromptBlocksPromptBlockIdVersions_Response = {
|
|
|
11849
11890
|
page: number;
|
|
11850
11891
|
perPage: number | false;
|
|
11851
11892
|
hasMore: boolean;
|
|
11852
|
-
versions:
|
|
11893
|
+
versions: Shared_Type_121[];
|
|
11853
11894
|
};
|
|
11854
11895
|
export type GetStoredPromptBlocksPromptBlockIdVersions_Request = Simplify<(GetStoredPromptBlocksPromptBlockIdVersions_PathParams extends never ? {} : {
|
|
11855
11896
|
params: GetStoredPromptBlocksPromptBlockIdVersions_PathParams;
|
|
@@ -11917,7 +11958,7 @@ export type GetStoredPromptBlocksPromptBlockIdVersionsCompare_PathParams = GetSt
|
|
|
11917
11958
|
export type GetStoredPromptBlocksPromptBlockIdVersionsCompare_QueryParams = GetStoredAgentsAgentIdVersionsCompare_QueryParams;
|
|
11918
11959
|
export type GetStoredPromptBlocksPromptBlockIdVersionsCompare_Response = {
|
|
11919
11960
|
/** List of differences between versions */
|
|
11920
|
-
diffs:
|
|
11961
|
+
diffs: Shared_Type_103[];
|
|
11921
11962
|
/** The source version */
|
|
11922
11963
|
fromVersion: {
|
|
11923
11964
|
/** Unique identifier for the version (UUID) */
|
|
@@ -11998,7 +12039,7 @@ export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_PathParams = {
|
|
|
11998
12039
|
/** Unique identifier for the version (UUID) */
|
|
11999
12040
|
versionId: string;
|
|
12000
12041
|
};
|
|
12001
|
-
export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_Response =
|
|
12042
|
+
export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_Response = Shared_Type_121;
|
|
12002
12043
|
export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_Request = Simplify<(GetStoredPromptBlocksPromptBlockIdVersionsVersionId_PathParams extends never ? {} : {
|
|
12003
12044
|
params: GetStoredPromptBlocksPromptBlockIdVersionsVersionId_PathParams;
|
|
12004
12045
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12102,7 +12143,7 @@ export type GetStoredScorers_Response = {
|
|
|
12102
12143
|
page: number;
|
|
12103
12144
|
perPage: number | false;
|
|
12104
12145
|
hasMore: boolean;
|
|
12105
|
-
scorerDefinitions:
|
|
12146
|
+
scorerDefinitions: Shared_Type_123[];
|
|
12106
12147
|
};
|
|
12107
12148
|
export type GetStoredScorers_Request = Simplify<(never extends never ? {} : {
|
|
12108
12149
|
params: never;
|
|
@@ -12128,7 +12169,7 @@ export type GetStoredScorersStoredScorerId_PathParams = {
|
|
|
12128
12169
|
storedScorerId: string;
|
|
12129
12170
|
};
|
|
12130
12171
|
export type GetStoredScorersStoredScorerId_QueryParams = GetStoredAgentsStoredAgentId_QueryParams;
|
|
12131
|
-
export type GetStoredScorersStoredScorerId_Response =
|
|
12172
|
+
export type GetStoredScorersStoredScorerId_Response = Shared_Type_123;
|
|
12132
12173
|
export type GetStoredScorersStoredScorerId_Request = Simplify<(GetStoredScorersStoredScorerId_PathParams extends never ? {} : {
|
|
12133
12174
|
params: GetStoredScorersStoredScorerId_PathParams;
|
|
12134
12175
|
}) & (GetStoredScorersStoredScorerId_QueryParams extends never ? {} : {} extends GetStoredScorersStoredScorerId_QueryParams ? {
|
|
@@ -12162,13 +12203,13 @@ export type PostStoredScorers_Body = {
|
|
|
12162
12203
|
/** Description of the scorer */
|
|
12163
12204
|
description?: string | undefined;
|
|
12164
12205
|
/** Scorer type: llm-judge for custom, or a preset type name */
|
|
12165
|
-
type:
|
|
12206
|
+
type: Shared_Type_122;
|
|
12166
12207
|
/** Model configuration for LLM judge */
|
|
12167
12208
|
model?: Shared_Type_11 | undefined;
|
|
12168
12209
|
/** System instructions for the judge LLM (used when type is llm-judge) */
|
|
12169
12210
|
instructions?: string | undefined;
|
|
12170
12211
|
/** Score range configuration (used when type is llm-judge) */
|
|
12171
|
-
scoreRange?:
|
|
12212
|
+
scoreRange?: Shared_Type_124;
|
|
12172
12213
|
/** Serializable config options for preset scorers */
|
|
12173
12214
|
presetConfig?: {
|
|
12174
12215
|
[key: string]: unknown;
|
|
@@ -12212,13 +12253,13 @@ export type PatchStoredScorersStoredScorerId_Body = {
|
|
|
12212
12253
|
/** Description of the scorer */
|
|
12213
12254
|
description?: (string | undefined) | undefined;
|
|
12214
12255
|
/** Scorer type: llm-judge for custom, or a preset type name */
|
|
12215
|
-
type?:
|
|
12256
|
+
type?: Shared_Type_122 | undefined;
|
|
12216
12257
|
/** Model configuration for LLM judge */
|
|
12217
12258
|
model?: (Shared_Type_11 | undefined) | undefined;
|
|
12218
12259
|
/** System instructions for the judge LLM (used when type is llm-judge) */
|
|
12219
12260
|
instructions?: (string | undefined) | undefined;
|
|
12220
12261
|
/** Score range configuration (used when type is llm-judge) */
|
|
12221
|
-
scoreRange?:
|
|
12262
|
+
scoreRange?: Shared_Type_124 | undefined;
|
|
12222
12263
|
/** Serializable config options for preset scorers */
|
|
12223
12264
|
presetConfig?: ({
|
|
12224
12265
|
[key: string]: unknown;
|
|
@@ -12241,7 +12282,7 @@ export type PatchStoredScorersStoredScorerId_Response = {
|
|
|
12241
12282
|
} | undefined;
|
|
12242
12283
|
createdAt: Date;
|
|
12243
12284
|
updatedAt: Date;
|
|
12244
|
-
} |
|
|
12285
|
+
} | Shared_Type_123;
|
|
12245
12286
|
export type PatchStoredScorersStoredScorerId_Request = Simplify<(PatchStoredScorersStoredScorerId_PathParams extends never ? {} : {
|
|
12246
12287
|
params: PatchStoredScorersStoredScorerId_PathParams;
|
|
12247
12288
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12292,7 +12333,7 @@ export type GetStoredScorersScorerIdVersions_Response = {
|
|
|
12292
12333
|
page: number;
|
|
12293
12334
|
perPage: number | false;
|
|
12294
12335
|
hasMore: boolean;
|
|
12295
|
-
versions:
|
|
12336
|
+
versions: Shared_Type_125[];
|
|
12296
12337
|
};
|
|
12297
12338
|
export type GetStoredScorersScorerIdVersions_Request = Simplify<(GetStoredScorersScorerIdVersions_PathParams extends never ? {} : {
|
|
12298
12339
|
params: GetStoredScorersScorerIdVersions_PathParams;
|
|
@@ -12323,7 +12364,7 @@ export type PostStoredScorersScorerIdVersions_Response = {
|
|
|
12323
12364
|
name?: string | undefined;
|
|
12324
12365
|
/** Description of the scorer */
|
|
12325
12366
|
description?: (string | undefined) | undefined;
|
|
12326
|
-
type?:
|
|
12367
|
+
type?: Shared_Type_122 | undefined;
|
|
12327
12368
|
model?: (Shared_Type_11 | undefined) | undefined;
|
|
12328
12369
|
instructions?: (string | undefined) | undefined;
|
|
12329
12370
|
scoreRange?: ({
|
|
@@ -12368,7 +12409,7 @@ export type GetStoredScorersScorerIdVersionsCompare_PathParams = GetStoredScorer
|
|
|
12368
12409
|
export type GetStoredScorersScorerIdVersionsCompare_QueryParams = GetStoredAgentsAgentIdVersionsCompare_QueryParams;
|
|
12369
12410
|
export type GetStoredScorersScorerIdVersionsCompare_Response = {
|
|
12370
12411
|
/** List of differences between versions */
|
|
12371
|
-
diffs:
|
|
12412
|
+
diffs: Shared_Type_103[];
|
|
12372
12413
|
/** The source version */
|
|
12373
12414
|
fromVersion: {
|
|
12374
12415
|
/** Unique identifier for the version (UUID) */
|
|
@@ -12381,7 +12422,7 @@ export type GetStoredScorersScorerIdVersionsCompare_Response = {
|
|
|
12381
12422
|
name: string;
|
|
12382
12423
|
/** Description of the scorer */
|
|
12383
12424
|
description?: string | undefined;
|
|
12384
|
-
type:
|
|
12425
|
+
type: Shared_Type_122;
|
|
12385
12426
|
model?: Shared_Type_11 | undefined;
|
|
12386
12427
|
instructions?: string | undefined;
|
|
12387
12428
|
scoreRange?: {
|
|
@@ -12416,7 +12457,7 @@ export type GetStoredScorersScorerIdVersionsCompare_Response = {
|
|
|
12416
12457
|
name: string;
|
|
12417
12458
|
/** Description of the scorer */
|
|
12418
12459
|
description?: string | undefined;
|
|
12419
|
-
type:
|
|
12460
|
+
type: Shared_Type_122;
|
|
12420
12461
|
model?: Shared_Type_11 | undefined;
|
|
12421
12462
|
instructions?: string | undefined;
|
|
12422
12463
|
scoreRange?: {
|
|
@@ -12465,7 +12506,7 @@ export type GetStoredScorersScorerIdVersionsVersionId_PathParams = {
|
|
|
12465
12506
|
/** Unique identifier for the version (UUID) */
|
|
12466
12507
|
versionId: string;
|
|
12467
12508
|
};
|
|
12468
|
-
export type GetStoredScorersScorerIdVersionsVersionId_Response =
|
|
12509
|
+
export type GetStoredScorersScorerIdVersionsVersionId_Response = Shared_Type_125;
|
|
12469
12510
|
export type GetStoredScorersScorerIdVersionsVersionId_Request = Simplify<(GetStoredScorersScorerIdVersionsVersionId_PathParams extends never ? {} : {
|
|
12470
12511
|
params: GetStoredScorersScorerIdVersionsVersionId_PathParams;
|
|
12471
12512
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12625,7 +12666,7 @@ export type GetStoredWorkspacesStoredWorkspaceId_PathParams = {
|
|
|
12625
12666
|
/** Unique identifier for the stored workspace */
|
|
12626
12667
|
storedWorkspaceId: string;
|
|
12627
12668
|
};
|
|
12628
|
-
export type GetStoredWorkspacesStoredWorkspaceId_Response =
|
|
12669
|
+
export type GetStoredWorkspacesStoredWorkspaceId_Response = Shared_Type_126;
|
|
12629
12670
|
export type GetStoredWorkspacesStoredWorkspaceId_Request = Simplify<(GetStoredWorkspacesStoredWorkspaceId_PathParams extends never ? {} : {
|
|
12630
12671
|
params: GetStoredWorkspacesStoredWorkspaceId_PathParams;
|
|
12631
12672
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12731,7 +12772,7 @@ export type PatchStoredWorkspacesStoredWorkspaceId_Response = {
|
|
|
12731
12772
|
} | undefined;
|
|
12732
12773
|
createdAt: Date;
|
|
12733
12774
|
updatedAt: Date;
|
|
12734
|
-
} |
|
|
12775
|
+
} | Shared_Type_126;
|
|
12735
12776
|
export type PatchStoredWorkspacesStoredWorkspaceId_Request = Simplify<(PatchStoredWorkspacesStoredWorkspaceId_PathParams extends never ? {} : {
|
|
12736
12777
|
params: PatchStoredWorkspacesStoredWorkspaceId_PathParams;
|
|
12737
12778
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12799,7 +12840,7 @@ export type GetStoredSkills_Response = {
|
|
|
12799
12840
|
page: number;
|
|
12800
12841
|
perPage: number | false;
|
|
12801
12842
|
hasMore: boolean;
|
|
12802
|
-
skills:
|
|
12843
|
+
skills: Shared_Type_128[];
|
|
12803
12844
|
};
|
|
12804
12845
|
export type GetStoredSkills_Request = Simplify<(never extends never ? {} : {
|
|
12805
12846
|
params: never;
|
|
@@ -12824,7 +12865,7 @@ export type GetStoredSkillsStoredSkillId_PathParams = {
|
|
|
12824
12865
|
/** Unique identifier for the stored skill */
|
|
12825
12866
|
storedSkillId: string;
|
|
12826
12867
|
};
|
|
12827
|
-
export type GetStoredSkillsStoredSkillId_Response =
|
|
12868
|
+
export type GetStoredSkillsStoredSkillId_Response = Shared_Type_128;
|
|
12828
12869
|
export type GetStoredSkillsStoredSkillId_Request = Simplify<(GetStoredSkillsStoredSkillId_PathParams extends never ? {} : {
|
|
12829
12870
|
params: GetStoredSkillsStoredSkillId_PathParams;
|
|
12830
12871
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12862,7 +12903,7 @@ export type PostStoredSkills_Body = {
|
|
|
12862
12903
|
/** Compatibility requirements */
|
|
12863
12904
|
compatibility?: unknown | undefined;
|
|
12864
12905
|
/** Source location of the skill */
|
|
12865
|
-
source?:
|
|
12906
|
+
source?: Shared_Type_127 | undefined;
|
|
12866
12907
|
/** List of reference file paths */
|
|
12867
12908
|
references?: string[] | undefined;
|
|
12868
12909
|
/** List of script file paths */
|
|
@@ -12870,7 +12911,7 @@ export type PostStoredSkills_Body = {
|
|
|
12870
12911
|
/** List of asset file paths */
|
|
12871
12912
|
assets?: string[] | undefined;
|
|
12872
12913
|
/** Full file tree structure for the skill */
|
|
12873
|
-
files?:
|
|
12914
|
+
files?: Shared_Auxiliary_1230[] | undefined;
|
|
12874
12915
|
/** Additional metadata for the skill */
|
|
12875
12916
|
metadata?: {
|
|
12876
12917
|
[key: string]: unknown;
|
|
@@ -12912,7 +12953,7 @@ export type PatchStoredSkillsStoredSkillId_Body = {
|
|
|
12912
12953
|
/** Compatibility requirements */
|
|
12913
12954
|
compatibility?: (unknown | undefined) | undefined;
|
|
12914
12955
|
/** Source location of the skill */
|
|
12915
|
-
source?: (
|
|
12956
|
+
source?: (Shared_Type_127 | undefined) | undefined;
|
|
12916
12957
|
/** List of reference file paths */
|
|
12917
12958
|
references?: (string[] | undefined) | undefined;
|
|
12918
12959
|
/** List of script file paths */
|
|
@@ -12920,7 +12961,7 @@ export type PatchStoredSkillsStoredSkillId_Body = {
|
|
|
12920
12961
|
/** List of asset file paths */
|
|
12921
12962
|
assets?: (string[] | undefined) | undefined;
|
|
12922
12963
|
/** Full file tree structure for the skill */
|
|
12923
|
-
files?: (
|
|
12964
|
+
files?: (Shared_Auxiliary_1230[] | undefined) | undefined;
|
|
12924
12965
|
/** Additional metadata for the skill */
|
|
12925
12966
|
metadata?: ({
|
|
12926
12967
|
[key: string]: unknown;
|
|
@@ -12934,7 +12975,7 @@ export type PatchStoredSkillsStoredSkillId_Response = {
|
|
|
12934
12975
|
visibility?: ('private' | 'public') | undefined;
|
|
12935
12976
|
createdAt: Date;
|
|
12936
12977
|
updatedAt: Date;
|
|
12937
|
-
} |
|
|
12978
|
+
} | Shared_Type_128;
|
|
12938
12979
|
export type PatchStoredSkillsStoredSkillId_Request = Simplify<(PatchStoredSkillsStoredSkillId_PathParams extends never ? {} : {
|
|
12939
12980
|
params: PatchStoredSkillsStoredSkillId_PathParams;
|
|
12940
12981
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13645,7 +13686,7 @@ export interface GetSystemApiSchema_RouteContract {
|
|
|
13645
13686
|
}
|
|
13646
13687
|
export type GetDatasets_QueryParams = GetScoresRunRunId_QueryParams;
|
|
13647
13688
|
export type GetDatasets_Response = {
|
|
13648
|
-
datasets:
|
|
13689
|
+
datasets: Shared_Type_129[];
|
|
13649
13690
|
pagination: {
|
|
13650
13691
|
total: number;
|
|
13651
13692
|
page: number;
|
|
@@ -13700,7 +13741,7 @@ export type PostDatasets_Body = {
|
|
|
13700
13741
|
/** IDs of scorers attached to this dataset */
|
|
13701
13742
|
scorerIds?: string[] | undefined;
|
|
13702
13743
|
};
|
|
13703
|
-
export type PostDatasets_Response =
|
|
13744
|
+
export type PostDatasets_Response = Shared_Type_129;
|
|
13704
13745
|
export type PostDatasets_Request = Simplify<(never extends never ? {} : {
|
|
13705
13746
|
params: never;
|
|
13706
13747
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13730,7 +13771,7 @@ export type GetDatasetsDatasetId_QueryParams = {
|
|
|
13730
13771
|
/** Restrict lookup to the given project */
|
|
13731
13772
|
projectId?: string | undefined;
|
|
13732
13773
|
};
|
|
13733
|
-
export type GetDatasetsDatasetId_Response =
|
|
13774
|
+
export type GetDatasetsDatasetId_Response = Shared_Type_129 | null;
|
|
13734
13775
|
export type GetDatasetsDatasetId_Request = Simplify<(GetDatasetsDatasetId_PathParams extends never ? {} : {
|
|
13735
13776
|
params: GetDatasetsDatasetId_PathParams;
|
|
13736
13777
|
}) & (GetDatasetsDatasetId_QueryParams extends never ? {} : {} extends GetDatasetsDatasetId_QueryParams ? {
|
|
@@ -13832,7 +13873,7 @@ export type GetDatasetsDatasetIdItems_QueryParams = {
|
|
|
13832
13873
|
search?: string | undefined;
|
|
13833
13874
|
};
|
|
13834
13875
|
export type GetDatasetsDatasetIdItems_Response = {
|
|
13835
|
-
items:
|
|
13876
|
+
items: Shared_Type_132[];
|
|
13836
13877
|
pagination: {
|
|
13837
13878
|
total: number;
|
|
13838
13879
|
page: number;
|
|
@@ -13868,9 +13909,9 @@ export type PostDatasetsDatasetIdItems_Body = {
|
|
|
13868
13909
|
/** Expected output for comparison */
|
|
13869
13910
|
groundTruth?: unknown | undefined;
|
|
13870
13911
|
/** Expected trajectory configuration for trajectory scoring */
|
|
13871
|
-
expectedTrajectory?: (
|
|
13912
|
+
expectedTrajectory?: (Shared_Type_147 | undefined) | null;
|
|
13872
13913
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
13873
|
-
toolMocks?:
|
|
13914
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
13874
13915
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13875
13916
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13876
13917
|
/** IDs of scorers selected for this item */
|
|
@@ -13884,9 +13925,9 @@ export type PostDatasetsDatasetIdItems_Body = {
|
|
|
13884
13925
|
[key: string]: unknown;
|
|
13885
13926
|
} | undefined;
|
|
13886
13927
|
/** Source/provenance of this dataset item */
|
|
13887
|
-
source?:
|
|
13928
|
+
source?: Shared_Type_131 | undefined;
|
|
13888
13929
|
};
|
|
13889
|
-
export type PostDatasetsDatasetIdItems_Response =
|
|
13930
|
+
export type PostDatasetsDatasetIdItems_Response = Shared_Type_132;
|
|
13890
13931
|
export type PostDatasetsDatasetIdItems_Request = Simplify<(PostDatasetsDatasetIdItems_PathParams extends never ? {} : {
|
|
13891
13932
|
params: PostDatasetsDatasetIdItems_PathParams;
|
|
13892
13933
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13913,9 +13954,9 @@ export type PostDatasetsDatasetIdItemsBatch_Body = {
|
|
|
13913
13954
|
input: unknown;
|
|
13914
13955
|
groundTruth?: unknown | undefined;
|
|
13915
13956
|
/** Expected trajectory configuration for trajectory scoring */
|
|
13916
|
-
expectedTrajectory?: (
|
|
13957
|
+
expectedTrajectory?: (Shared_Type_147 | undefined) | null;
|
|
13917
13958
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
13918
|
-
toolMocks?:
|
|
13959
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
13919
13960
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13920
13961
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13921
13962
|
scorerIds?: string[] | undefined;
|
|
@@ -13926,11 +13967,11 @@ export type PostDatasetsDatasetIdItemsBatch_Body = {
|
|
|
13926
13967
|
[key: string]: unknown;
|
|
13927
13968
|
} | undefined;
|
|
13928
13969
|
/** Source/provenance of this dataset item */
|
|
13929
|
-
source?:
|
|
13970
|
+
source?: Shared_Type_131 | undefined;
|
|
13930
13971
|
}[];
|
|
13931
13972
|
};
|
|
13932
13973
|
export type PostDatasetsDatasetIdItemsBatch_Response = {
|
|
13933
|
-
items:
|
|
13974
|
+
items: Shared_Type_132[];
|
|
13934
13975
|
count: number;
|
|
13935
13976
|
};
|
|
13936
13977
|
export type PostDatasetsDatasetIdItemsBatch_Request = Simplify<(PostDatasetsDatasetIdItemsBatch_PathParams extends never ? {} : {
|
|
@@ -13985,7 +14026,7 @@ export type GetDatasetsDatasetIdItemsItemId_PathParams = {
|
|
|
13985
14026
|
/** Unique identifier for the dataset item */
|
|
13986
14027
|
itemId: string;
|
|
13987
14028
|
};
|
|
13988
|
-
export type GetDatasetsDatasetIdItemsItemId_Response =
|
|
14029
|
+
export type GetDatasetsDatasetIdItemsItemId_Response = Shared_Type_132 | null;
|
|
13989
14030
|
export type GetDatasetsDatasetIdItemsItemId_Request = Simplify<(GetDatasetsDatasetIdItemsItemId_PathParams extends never ? {} : {
|
|
13990
14031
|
params: GetDatasetsDatasetIdItemsItemId_PathParams;
|
|
13991
14032
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14012,9 +14053,9 @@ export type PatchDatasetsDatasetIdItemsItemId_Body = {
|
|
|
14012
14053
|
/** Expected output for comparison */
|
|
14013
14054
|
groundTruth?: unknown | undefined;
|
|
14014
14055
|
/** Expected trajectory configuration for trajectory scoring */
|
|
14015
|
-
expectedTrajectory?: (
|
|
14056
|
+
expectedTrajectory?: (Shared_Type_147 | undefined) | null;
|
|
14016
14057
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
14017
|
-
toolMocks?:
|
|
14058
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
14018
14059
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
14019
14060
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
14020
14061
|
/** IDs of scorers selected for this item */
|
|
@@ -14028,7 +14069,7 @@ export type PatchDatasetsDatasetIdItemsItemId_Body = {
|
|
|
14028
14069
|
[key: string]: unknown;
|
|
14029
14070
|
} | undefined;
|
|
14030
14071
|
/** Source/provenance of this dataset item */
|
|
14031
|
-
source?:
|
|
14072
|
+
source?: Shared_Type_131 | undefined;
|
|
14032
14073
|
};
|
|
14033
14074
|
export type PatchDatasetsDatasetIdItemsItemId_Response = PostDatasetsDatasetIdItems_Response;
|
|
14034
14075
|
export type PatchDatasetsDatasetIdItemsItemId_Request = Simplify<(PatchDatasetsDatasetIdItemsItemId_PathParams extends never ? {} : {
|
|
@@ -14116,7 +14157,7 @@ export type GetDatasetsDatasetIdItemsItemIdHistory_Response = {
|
|
|
14116
14157
|
groundTruth?: unknown | undefined;
|
|
14117
14158
|
expectedTrajectory?: unknown | undefined;
|
|
14118
14159
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
14119
|
-
toolMocks?:
|
|
14160
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
14120
14161
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
14121
14162
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
14122
14163
|
scorerIds?: string[] | undefined;
|
|
@@ -14185,7 +14226,7 @@ export type GetExperiments_QueryParams = {
|
|
|
14185
14226
|
trialIndex?: number | undefined;
|
|
14186
14227
|
};
|
|
14187
14228
|
export type GetExperiments_Response = {
|
|
14188
|
-
experiments:
|
|
14229
|
+
experiments: Shared_Type_149[];
|
|
14189
14230
|
pagination: {
|
|
14190
14231
|
total: number;
|
|
14191
14232
|
page: number;
|
|
@@ -14344,7 +14385,7 @@ export type PostDatasetsDatasetIdExperiments_Response = {
|
|
|
14344
14385
|
completedAt: Date;
|
|
14345
14386
|
retryCount: number;
|
|
14346
14387
|
/** Diagnostic receipt for item-level tool mocks */
|
|
14347
|
-
toolMockReport?: (
|
|
14388
|
+
toolMockReport?: (Shared_Type_150 | undefined) | null;
|
|
14348
14389
|
scores: {
|
|
14349
14390
|
scorerId: string;
|
|
14350
14391
|
scorerName: string;
|
|
@@ -14390,7 +14431,7 @@ export type PostDatasetsDatasetIdExperimentsExperimentIdItemsItemIdRun_Body = {
|
|
|
14390
14431
|
} | undefined;
|
|
14391
14432
|
};
|
|
14392
14433
|
export type PostDatasetsDatasetIdExperimentsExperimentIdItemsItemIdRun_Response = {
|
|
14393
|
-
result:
|
|
14434
|
+
result: Shared_Type_151;
|
|
14394
14435
|
scores: {
|
|
14395
14436
|
scorerId: string;
|
|
14396
14437
|
scorerName: string;
|
|
@@ -14459,7 +14500,7 @@ export type PostDatasetsDatasetIdExperimentsExperimentIdResults_Body = {
|
|
|
14459
14500
|
} | undefined;
|
|
14460
14501
|
}[] | undefined;
|
|
14461
14502
|
};
|
|
14462
|
-
export type PostDatasetsDatasetIdExperimentsExperimentIdResults_Response =
|
|
14503
|
+
export type PostDatasetsDatasetIdExperimentsExperimentIdResults_Response = Shared_Type_151;
|
|
14463
14504
|
export type PostDatasetsDatasetIdExperimentsExperimentIdResults_Request = Simplify<(PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams extends never ? {} : {
|
|
14464
14505
|
params: PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14465
14506
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14480,7 +14521,7 @@ export interface PostDatasetsDatasetIdExperimentsExperimentIdResults_RouteContra
|
|
|
14480
14521
|
responseType: 'json';
|
|
14481
14522
|
}
|
|
14482
14523
|
export type PostDatasetsDatasetIdExperimentsExperimentIdFinalize_PathParams = PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14483
|
-
export type PostDatasetsDatasetIdExperimentsExperimentIdFinalize_Response =
|
|
14524
|
+
export type PostDatasetsDatasetIdExperimentsExperimentIdFinalize_Response = Shared_Type_149;
|
|
14484
14525
|
export type PostDatasetsDatasetIdExperimentsExperimentIdFinalize_Request = Simplify<(PostDatasetsDatasetIdExperimentsExperimentIdFinalize_PathParams extends never ? {} : {
|
|
14485
14526
|
params: PostDatasetsDatasetIdExperimentsExperimentIdFinalize_PathParams;
|
|
14486
14527
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14501,7 +14542,7 @@ export interface PostDatasetsDatasetIdExperimentsExperimentIdFinalize_RouteContr
|
|
|
14501
14542
|
responseType: 'json';
|
|
14502
14543
|
}
|
|
14503
14544
|
export type GetDatasetsDatasetIdExperimentsExperimentId_PathParams = PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14504
|
-
export type GetDatasetsDatasetIdExperimentsExperimentId_Response =
|
|
14545
|
+
export type GetDatasetsDatasetIdExperimentsExperimentId_Response = Shared_Type_149 | null;
|
|
14505
14546
|
export type GetDatasetsDatasetIdExperimentsExperimentId_Request = Simplify<(GetDatasetsDatasetIdExperimentsExperimentId_PathParams extends never ? {} : {
|
|
14506
14547
|
params: GetDatasetsDatasetIdExperimentsExperimentId_PathParams;
|
|
14507
14548
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14521,10 +14562,41 @@ export interface GetDatasetsDatasetIdExperimentsExperimentId_RouteContract {
|
|
|
14521
14562
|
response: GetDatasetsDatasetIdExperimentsExperimentId_Response;
|
|
14522
14563
|
responseType: 'json';
|
|
14523
14564
|
}
|
|
14565
|
+
export type PatchDatasetsDatasetIdExperimentsExperimentId_PathParams = PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14566
|
+
export type PatchDatasetsDatasetIdExperimentsExperimentId_Body = {
|
|
14567
|
+
/** New name of the experiment */
|
|
14568
|
+
name?: string | undefined;
|
|
14569
|
+
/** New description of the experiment */
|
|
14570
|
+
description?: string | undefined;
|
|
14571
|
+
/** Replacement metadata for the experiment */
|
|
14572
|
+
metadata?: {
|
|
14573
|
+
[key: string]: unknown;
|
|
14574
|
+
} | undefined;
|
|
14575
|
+
};
|
|
14576
|
+
export type PatchDatasetsDatasetIdExperimentsExperimentId_Response = PostDatasetsDatasetIdExperimentsExperimentIdFinalize_Response;
|
|
14577
|
+
export type PatchDatasetsDatasetIdExperimentsExperimentId_Request = Simplify<(PatchDatasetsDatasetIdExperimentsExperimentId_PathParams extends never ? {} : {
|
|
14578
|
+
params: PatchDatasetsDatasetIdExperimentsExperimentId_PathParams;
|
|
14579
|
+
}) & (never extends never ? {} : {} extends never ? {
|
|
14580
|
+
query?: never;
|
|
14581
|
+
} : {
|
|
14582
|
+
query: never;
|
|
14583
|
+
}) & (PatchDatasetsDatasetIdExperimentsExperimentId_Body extends never ? {} : {} extends PatchDatasetsDatasetIdExperimentsExperimentId_Body ? {
|
|
14584
|
+
body?: PatchDatasetsDatasetIdExperimentsExperimentId_Body;
|
|
14585
|
+
} : {
|
|
14586
|
+
body: PatchDatasetsDatasetIdExperimentsExperimentId_Body;
|
|
14587
|
+
})>;
|
|
14588
|
+
export interface PatchDatasetsDatasetIdExperimentsExperimentId_RouteContract {
|
|
14589
|
+
pathParams: PatchDatasetsDatasetIdExperimentsExperimentId_PathParams;
|
|
14590
|
+
queryParams: never;
|
|
14591
|
+
body: PatchDatasetsDatasetIdExperimentsExperimentId_Body;
|
|
14592
|
+
request: PatchDatasetsDatasetIdExperimentsExperimentId_Request;
|
|
14593
|
+
response: PatchDatasetsDatasetIdExperimentsExperimentId_Response;
|
|
14594
|
+
responseType: 'json';
|
|
14595
|
+
}
|
|
14524
14596
|
export type GetDatasetsDatasetIdExperimentsExperimentIdResults_PathParams = PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14525
14597
|
export type GetDatasetsDatasetIdExperimentsExperimentIdResults_QueryParams = GetScoresRunRunId_QueryParams;
|
|
14526
14598
|
export type GetDatasetsDatasetIdExperimentsExperimentIdResults_Response = {
|
|
14527
|
-
results:
|
|
14599
|
+
results: Shared_Type_151[];
|
|
14528
14600
|
pagination: {
|
|
14529
14601
|
total: number;
|
|
14530
14602
|
page: number;
|
|
@@ -14767,7 +14839,7 @@ export type GetBackgroundTasks_QueryParams = {
|
|
|
14767
14839
|
perPage?: number | undefined;
|
|
14768
14840
|
};
|
|
14769
14841
|
export type GetBackgroundTasks_Response = {
|
|
14770
|
-
tasks:
|
|
14842
|
+
tasks: Shared_Type_152[];
|
|
14771
14843
|
total: number;
|
|
14772
14844
|
};
|
|
14773
14845
|
export type GetBackgroundTasks_Request = Simplify<(never extends never ? {} : {
|
|
@@ -14792,7 +14864,7 @@ export interface GetBackgroundTasks_RouteContract {
|
|
|
14792
14864
|
export type GetBackgroundTasksBackgroundTaskId_PathParams = {
|
|
14793
14865
|
backgroundTaskId: string;
|
|
14794
14866
|
};
|
|
14795
|
-
export type GetBackgroundTasksBackgroundTaskId_Response =
|
|
14867
|
+
export type GetBackgroundTasksBackgroundTaskId_Response = Shared_Type_152;
|
|
14796
14868
|
export type GetBackgroundTasksBackgroundTaskId_Request = Simplify<(GetBackgroundTasksBackgroundTaskId_PathParams extends never ? {} : {
|
|
14797
14869
|
params: GetBackgroundTasksBackgroundTaskId_PathParams;
|
|
14798
14870
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14832,8 +14904,8 @@ export type GetEditorBuilderSettings_Response = {
|
|
|
14832
14904
|
configuration?: {
|
|
14833
14905
|
agent?: {
|
|
14834
14906
|
models?: {
|
|
14835
|
-
allowed?:
|
|
14836
|
-
default?:
|
|
14907
|
+
allowed?: Shared_Type_153[] | undefined;
|
|
14908
|
+
default?: Shared_Type_154 | undefined;
|
|
14837
14909
|
} | undefined;
|
|
14838
14910
|
tools?: {
|
|
14839
14911
|
allowed?: string[] | undefined;
|
|
@@ -14850,8 +14922,8 @@ export type GetEditorBuilderSettings_Response = {
|
|
|
14850
14922
|
modelPolicy?: {
|
|
14851
14923
|
active: boolean;
|
|
14852
14924
|
pickerVisible?: boolean | undefined;
|
|
14853
|
-
allowed?:
|
|
14854
|
-
default?:
|
|
14925
|
+
allowed?: Shared_Type_153[] | undefined;
|
|
14926
|
+
default?: Shared_Type_154 | undefined;
|
|
14855
14927
|
} | undefined;
|
|
14856
14928
|
picker?: {
|
|
14857
14929
|
visibleTools: string[] | null;
|
|
@@ -15485,7 +15557,7 @@ export type GetSchedules_QueryParams = {
|
|
|
15485
15557
|
name?: string | undefined;
|
|
15486
15558
|
};
|
|
15487
15559
|
export type GetSchedules_Response = {
|
|
15488
|
-
schedules: (
|
|
15560
|
+
schedules: (Shared_Type_157 | Shared_Type_159)[];
|
|
15489
15561
|
};
|
|
15490
15562
|
export type GetSchedules_Request = Simplify<(never extends never ? {} : {
|
|
15491
15563
|
params: never;
|
|
@@ -15509,7 +15581,7 @@ export interface GetSchedules_RouteContract {
|
|
|
15509
15581
|
export type GetSchedulesScheduleId_PathParams = {
|
|
15510
15582
|
scheduleId: string;
|
|
15511
15583
|
};
|
|
15512
|
-
export type GetSchedulesScheduleId_Response =
|
|
15584
|
+
export type GetSchedulesScheduleId_Response = Shared_Type_157 | Shared_Type_159;
|
|
15513
15585
|
export type GetSchedulesScheduleId_Request = Simplify<(GetSchedulesScheduleId_PathParams extends never ? {} : {
|
|
15514
15586
|
params: GetSchedulesScheduleId_PathParams;
|
|
15515
15587
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -15543,8 +15615,8 @@ export type PostSchedules_Body = {
|
|
|
15543
15615
|
attributes?: {
|
|
15544
15616
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
15545
15617
|
} | undefined;
|
|
15546
|
-
ifActive?:
|
|
15547
|
-
ifIdle?:
|
|
15618
|
+
ifActive?: Shared_Type_155 | undefined;
|
|
15619
|
+
ifIdle?: Shared_Type_156 | undefined;
|
|
15548
15620
|
providerOptions?: {
|
|
15549
15621
|
[key: string]: unknown;
|
|
15550
15622
|
} | undefined;
|
|
@@ -15600,8 +15672,8 @@ export type PatchSchedulesScheduleId_Body = {
|
|
|
15600
15672
|
attributes?: {
|
|
15601
15673
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
15602
15674
|
} | undefined;
|
|
15603
|
-
ifActive?:
|
|
15604
|
-
ifIdle?:
|
|
15675
|
+
ifActive?: Shared_Type_155 | undefined;
|
|
15676
|
+
ifIdle?: Shared_Type_156 | undefined;
|
|
15605
15677
|
providerOptions?: {
|
|
15606
15678
|
[key: string]: unknown;
|
|
15607
15679
|
} | undefined;
|
|
@@ -15672,7 +15744,7 @@ export type GetSchedulesScheduleIdTriggers_Response = {
|
|
|
15672
15744
|
metadata?: {
|
|
15673
15745
|
[key: string]: unknown;
|
|
15674
15746
|
} | undefined;
|
|
15675
|
-
run?:
|
|
15747
|
+
run?: Shared_Type_158 | undefined;
|
|
15676
15748
|
}[];
|
|
15677
15749
|
};
|
|
15678
15750
|
export type GetSchedulesScheduleIdTriggers_Request = Simplify<(GetSchedulesScheduleIdTriggers_PathParams extends never ? {} : {
|
|
@@ -17248,6 +17320,7 @@ export interface RouteTypes {
|
|
|
17248
17320
|
'POST /datasets/:datasetId/experiments/:experimentId/results': PostDatasetsDatasetIdExperimentsExperimentIdResults_RouteContract;
|
|
17249
17321
|
'POST /datasets/:datasetId/experiments/:experimentId/finalize': PostDatasetsDatasetIdExperimentsExperimentIdFinalize_RouteContract;
|
|
17250
17322
|
'GET /datasets/:datasetId/experiments/:experimentId': GetDatasetsDatasetIdExperimentsExperimentId_RouteContract;
|
|
17323
|
+
'PATCH /datasets/:datasetId/experiments/:experimentId': PatchDatasetsDatasetIdExperimentsExperimentId_RouteContract;
|
|
17251
17324
|
'GET /datasets/:datasetId/experiments/:experimentId/results': GetDatasetsDatasetIdExperimentsExperimentIdResults_RouteContract;
|
|
17252
17325
|
'PATCH /datasets/:datasetId/experiments/:experimentId/results/:resultId': PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_RouteContract;
|
|
17253
17326
|
'POST /datasets/:datasetId/compare': PostDatasetsDatasetIdCompare_RouteContract;
|
|
@@ -17699,6 +17772,7 @@ export interface Client {
|
|
|
17699
17772
|
};
|
|
17700
17773
|
'/datasets/:datasetId/experiments/:experimentId': {
|
|
17701
17774
|
GET: GetDatasetsDatasetIdExperimentsExperimentId_RouteContract;
|
|
17775
|
+
PATCH: PatchDatasetsDatasetIdExperimentsExperimentId_RouteContract;
|
|
17702
17776
|
};
|
|
17703
17777
|
'/datasets/:datasetId/experiments/:experimentId/finalize': {
|
|
17704
17778
|
POST: PostDatasetsDatasetIdExperimentsExperimentIdFinalize_RouteContract;
|