@mastra/client-js 1.43.1-alpha.0 → 1.44.0-alpha.2
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 +8 -2
- package/dist/client.d.ts.map +1 -1
- package/dist/docs/SKILL.md +2 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/reference-client-js-observability.md +29 -0
- package/dist/docs/references/reference-observability-tracing-trace-query.md +179 -0
- package/dist/index.cjs +26 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -1
- package/dist/resources/observability.d.ts +8 -1
- package/dist/resources/observability.d.ts.map +1 -1
- package/dist/route-types.generated.d.ts +604 -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 +6 -6
|
@@ -10,7 +10,79 @@ 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_587 = {
|
|
14
|
+
op: 'eq' | 'ne' | 'lt' | 'lte' | 'gt' | 'gte';
|
|
15
|
+
left: {
|
|
16
|
+
path: string;
|
|
17
|
+
} | {
|
|
18
|
+
literal: string | number | boolean | null;
|
|
19
|
+
};
|
|
20
|
+
right: {
|
|
21
|
+
path: string;
|
|
22
|
+
} | {
|
|
23
|
+
literal: string | number | boolean | null;
|
|
24
|
+
};
|
|
25
|
+
} | {
|
|
26
|
+
op: 'in' | 'notIn';
|
|
27
|
+
value: {
|
|
28
|
+
path: string;
|
|
29
|
+
} | {
|
|
30
|
+
literal: string | number | boolean | null;
|
|
31
|
+
};
|
|
32
|
+
set: (string | number | boolean | null)[];
|
|
33
|
+
} | {
|
|
34
|
+
op: 'exists' | 'notExists';
|
|
35
|
+
path: string;
|
|
36
|
+
} | {
|
|
37
|
+
op: 'and' | 'or';
|
|
38
|
+
args: Shared_Auxiliary_587[];
|
|
39
|
+
} | {
|
|
40
|
+
op: 'not';
|
|
41
|
+
arg: Shared_Auxiliary_587;
|
|
42
|
+
} | {
|
|
43
|
+
spans: {
|
|
44
|
+
some: Shared_Auxiliary_605;
|
|
45
|
+
} | {
|
|
46
|
+
none: Shared_Auxiliary_605;
|
|
47
|
+
};
|
|
48
|
+
} | {
|
|
49
|
+
scores: {
|
|
50
|
+
some: Shared_Auxiliary_605;
|
|
51
|
+
} | {
|
|
52
|
+
none: Shared_Auxiliary_605;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
type Shared_Auxiliary_605 = {
|
|
56
|
+
op: 'eq' | 'ne' | 'lt' | 'lte' | 'gt' | 'gte';
|
|
57
|
+
left: {
|
|
58
|
+
path: string;
|
|
59
|
+
} | {
|
|
60
|
+
literal: string | number | boolean | null;
|
|
61
|
+
};
|
|
62
|
+
right: {
|
|
63
|
+
path: string;
|
|
64
|
+
} | {
|
|
65
|
+
literal: string | number | boolean | null;
|
|
66
|
+
};
|
|
67
|
+
} | {
|
|
68
|
+
op: 'in' | 'notIn';
|
|
69
|
+
value: {
|
|
70
|
+
path: string;
|
|
71
|
+
} | {
|
|
72
|
+
literal: string | number | boolean | null;
|
|
73
|
+
};
|
|
74
|
+
set: (string | number | boolean | null)[];
|
|
75
|
+
} | {
|
|
76
|
+
op: 'exists' | 'notExists';
|
|
77
|
+
path: string;
|
|
78
|
+
} | {
|
|
79
|
+
op: 'and' | 'or';
|
|
80
|
+
args: Shared_Auxiliary_605[];
|
|
81
|
+
} | {
|
|
82
|
+
op: 'not';
|
|
83
|
+
arg: Shared_Auxiliary_605;
|
|
84
|
+
};
|
|
85
|
+
type Shared_Auxiliary_1136 = {
|
|
14
86
|
op: 'eq' | 'ne' | 'lt' | 'lte' | 'gt' | 'gte';
|
|
15
87
|
left: {
|
|
16
88
|
path: string;
|
|
@@ -42,17 +114,17 @@ type Shared_Auxiliary_1097 = {
|
|
|
42
114
|
};
|
|
43
115
|
} | {
|
|
44
116
|
op: 'and' | 'or';
|
|
45
|
-
args:
|
|
117
|
+
args: Shared_Auxiliary_1136[];
|
|
46
118
|
} | {
|
|
47
119
|
op: 'not';
|
|
48
|
-
arg:
|
|
120
|
+
arg: Shared_Auxiliary_1136;
|
|
49
121
|
};
|
|
50
|
-
type
|
|
122
|
+
type Shared_Auxiliary_1276 = {
|
|
51
123
|
id?: string | undefined;
|
|
52
124
|
name: string;
|
|
53
125
|
type: 'file' | 'folder';
|
|
54
126
|
content?: string | undefined;
|
|
55
|
-
children?:
|
|
127
|
+
children?: Shared_Auxiliary_1276[] | undefined;
|
|
56
128
|
};
|
|
57
129
|
type Shared_Type_0 = {
|
|
58
130
|
id: string;
|
|
@@ -918,6 +990,14 @@ type Shared_Type_57 = {
|
|
|
918
990
|
} | undefined;
|
|
919
991
|
};
|
|
920
992
|
type Shared_Type_58 = {
|
|
993
|
+
type: 'step' | 'agent' | 'tool' | 'mapping' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach' | 'workflow';
|
|
994
|
+
id?: string | undefined;
|
|
995
|
+
description?: string | undefined;
|
|
996
|
+
metadata?: {
|
|
997
|
+
[key: string]: unknown;
|
|
998
|
+
} | undefined;
|
|
999
|
+
};
|
|
1000
|
+
type Shared_Type_59 = {
|
|
921
1001
|
steps: {
|
|
922
1002
|
[key: string]: Shared_Type_57;
|
|
923
1003
|
};
|
|
@@ -929,9 +1009,7 @@ type Shared_Type_58 = {
|
|
|
929
1009
|
metadata?: {
|
|
930
1010
|
[key: string]: unknown;
|
|
931
1011
|
} | undefined;
|
|
932
|
-
stepGraph:
|
|
933
|
-
type: 'step' | 'agent' | 'tool' | 'mapping' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach' | 'workflow';
|
|
934
|
-
}[];
|
|
1012
|
+
stepGraph: Shared_Type_58[];
|
|
935
1013
|
inputSchema?: string | undefined;
|
|
936
1014
|
outputSchema?: string | undefined;
|
|
937
1015
|
stateSchema?: string | undefined;
|
|
@@ -939,7 +1017,7 @@ type Shared_Type_58 = {
|
|
|
939
1017
|
isProcessorWorkflow?: boolean | undefined;
|
|
940
1018
|
origin?: ('code' | 'dynamic') | undefined;
|
|
941
1019
|
};
|
|
942
|
-
type
|
|
1020
|
+
type Shared_Type_60 = {
|
|
943
1021
|
id: string;
|
|
944
1022
|
role: 'user' | 'assistant' | 'system' | 'tool' | 'signal';
|
|
945
1023
|
createdAt?: Date | undefined;
|
|
@@ -951,7 +1029,7 @@ type Shared_Type_59 = {
|
|
|
951
1029
|
} | string;
|
|
952
1030
|
[x: string]: unknown;
|
|
953
1031
|
};
|
|
954
|
-
type
|
|
1032
|
+
type Shared_Type_61 = {
|
|
955
1033
|
type: 'json_schema';
|
|
956
1034
|
name: string;
|
|
957
1035
|
description?: string | undefined;
|
|
@@ -960,7 +1038,7 @@ type Shared_Type_60 = {
|
|
|
960
1038
|
};
|
|
961
1039
|
strict?: boolean | undefined;
|
|
962
1040
|
};
|
|
963
|
-
type
|
|
1041
|
+
type Shared_Type_62 = {
|
|
964
1042
|
/** OpenAI provider options such as previousResponseId, conversation, or responseId */
|
|
965
1043
|
openai?: {
|
|
966
1044
|
[key: string]: unknown;
|
|
@@ -971,7 +1049,7 @@ type Shared_Type_61 = {
|
|
|
971
1049
|
} | undefined;
|
|
972
1050
|
[x: string]: unknown;
|
|
973
1051
|
};
|
|
974
|
-
type
|
|
1052
|
+
type Shared_Type_63 = {
|
|
975
1053
|
id: string;
|
|
976
1054
|
type: 'function_call';
|
|
977
1055
|
call_id: string;
|
|
@@ -979,7 +1057,7 @@ type Shared_Type_62 = {
|
|
|
979
1057
|
arguments: string;
|
|
980
1058
|
status?: ('in_progress' | 'completed' | 'incomplete') | undefined;
|
|
981
1059
|
};
|
|
982
|
-
type
|
|
1060
|
+
type Shared_Type_64 = {
|
|
983
1061
|
id: string;
|
|
984
1062
|
title?: string | undefined;
|
|
985
1063
|
resourceId: string;
|
|
@@ -989,7 +1067,7 @@ type Shared_Type_63 = {
|
|
|
989
1067
|
[key: string]: unknown;
|
|
990
1068
|
} | undefined;
|
|
991
1069
|
};
|
|
992
|
-
type
|
|
1070
|
+
type Shared_Type_65 = {
|
|
993
1071
|
id?: string | undefined;
|
|
994
1072
|
cycleId: string;
|
|
995
1073
|
observations: string;
|
|
@@ -1009,14 +1087,14 @@ type Shared_Type_64 = {
|
|
|
1009
1087
|
error: string;
|
|
1010
1088
|
}[] | undefined;
|
|
1011
1089
|
};
|
|
1012
|
-
type
|
|
1090
|
+
type Shared_Type_66 = {
|
|
1013
1091
|
id: string;
|
|
1014
1092
|
scope: 'thread' | 'resource';
|
|
1015
1093
|
resourceId: string;
|
|
1016
1094
|
threadId: string | null;
|
|
1017
1095
|
activeObservations: string;
|
|
1018
1096
|
bufferedObservations?: string | undefined;
|
|
1019
|
-
bufferedObservationChunks?:
|
|
1097
|
+
bufferedObservationChunks?: Shared_Type_65[] | undefined;
|
|
1020
1098
|
bufferedReflection?: string | undefined;
|
|
1021
1099
|
originType: 'initial' | 'observation' | 'reflection';
|
|
1022
1100
|
generationCount: number;
|
|
@@ -1035,7 +1113,7 @@ type Shared_Type_65 = {
|
|
|
1035
1113
|
createdAt: Date;
|
|
1036
1114
|
updatedAt: Date;
|
|
1037
1115
|
};
|
|
1038
|
-
type
|
|
1116
|
+
type Shared_Type_67 = {
|
|
1039
1117
|
dateRange?: {
|
|
1040
1118
|
start?: Date | undefined;
|
|
1041
1119
|
end?: Date | undefined;
|
|
@@ -1047,7 +1125,7 @@ type Shared_Type_66 = {
|
|
|
1047
1125
|
[key: string]: string | number | boolean | null;
|
|
1048
1126
|
} | undefined;
|
|
1049
1127
|
};
|
|
1050
|
-
type
|
|
1128
|
+
type Shared_Type_68 = {
|
|
1051
1129
|
config: {
|
|
1052
1130
|
id: string;
|
|
1053
1131
|
name?: string | undefined;
|
|
@@ -1056,8 +1134,8 @@ type Shared_Type_67 = {
|
|
|
1056
1134
|
judge?: unknown | undefined;
|
|
1057
1135
|
};
|
|
1058
1136
|
};
|
|
1059
|
-
type
|
|
1060
|
-
scorer:
|
|
1137
|
+
type Shared_Type_69 = {
|
|
1138
|
+
scorer: Shared_Type_68;
|
|
1061
1139
|
sampling?: {} | undefined;
|
|
1062
1140
|
agentIds: string[];
|
|
1063
1141
|
agentNames: string[];
|
|
@@ -1065,7 +1143,7 @@ type Shared_Type_68 = {
|
|
|
1065
1143
|
isRegistered: boolean;
|
|
1066
1144
|
source: 'code' | 'stored' | 'fs';
|
|
1067
1145
|
};
|
|
1068
|
-
type
|
|
1146
|
+
type Shared_Type_70 = {
|
|
1069
1147
|
/** Start of date range (inclusive by default) */
|
|
1070
1148
|
start?: Date | undefined;
|
|
1071
1149
|
/** End of date range (inclusive by default) */
|
|
@@ -1075,9 +1153,9 @@ type Shared_Type_69 = {
|
|
|
1075
1153
|
/** When true, excludes the end date from results (uses < instead of <=) */
|
|
1076
1154
|
endExclusive?: boolean | undefined;
|
|
1077
1155
|
};
|
|
1078
|
-
type
|
|
1079
|
-
type
|
|
1080
|
-
type
|
|
1156
|
+
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';
|
|
1157
|
+
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';
|
|
1158
|
+
type Shared_Type_73 = {
|
|
1081
1159
|
/** Total number of items available */
|
|
1082
1160
|
total: number;
|
|
1083
1161
|
/** Current page */
|
|
@@ -1087,13 +1165,13 @@ type Shared_Type_72 = {
|
|
|
1087
1165
|
/** True if more pages are available */
|
|
1088
1166
|
hasMore: boolean;
|
|
1089
1167
|
};
|
|
1090
|
-
type
|
|
1168
|
+
type Shared_Type_74 = {
|
|
1091
1169
|
/** Maximum number of updates requested for this delta poll */
|
|
1092
1170
|
limit: number;
|
|
1093
1171
|
/** True when more matching updates remain after this response */
|
|
1094
1172
|
hasMore: boolean;
|
|
1095
1173
|
};
|
|
1096
|
-
type
|
|
1174
|
+
type Shared_Type_75 = {
|
|
1097
1175
|
/** Unique trace identifier */
|
|
1098
1176
|
traceId: string;
|
|
1099
1177
|
/** Unique span identifier within a trace */
|
|
@@ -1101,19 +1179,19 @@ type Shared_Type_74 = {
|
|
|
1101
1179
|
/** Human-readable span name */
|
|
1102
1180
|
name: string;
|
|
1103
1181
|
/** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
|
|
1104
|
-
spanType:
|
|
1182
|
+
spanType: Shared_Type_71;
|
|
1105
1183
|
/** Whether this is an event (point-in-time) vs a span (duration) */
|
|
1106
1184
|
isEvent: boolean;
|
|
1107
1185
|
/** When the span started */
|
|
1108
1186
|
startedAt: Date;
|
|
1109
1187
|
parentSpanId?: (string | null) | undefined;
|
|
1110
|
-
entityType?: (
|
|
1188
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1111
1189
|
entityId?: (string | null) | undefined;
|
|
1112
1190
|
entityName?: (string | null) | undefined;
|
|
1113
|
-
parentEntityType?: (
|
|
1191
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1114
1192
|
parentEntityId?: (string | null) | undefined;
|
|
1115
1193
|
parentEntityName?: (string | null) | undefined;
|
|
1116
|
-
rootEntityType?: (
|
|
1194
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1117
1195
|
rootEntityId?: (string | null) | undefined;
|
|
1118
1196
|
rootEntityName?: (string | null) | undefined;
|
|
1119
1197
|
userId?: (string | null) | undefined;
|
|
@@ -1157,7 +1235,7 @@ type Shared_Type_74 = {
|
|
|
1157
1235
|
/** Current status of the trace */
|
|
1158
1236
|
status: 'success' | 'error' | 'running';
|
|
1159
1237
|
};
|
|
1160
|
-
type
|
|
1238
|
+
type Shared_Type_76 = {
|
|
1161
1239
|
/** Unique trace identifier */
|
|
1162
1240
|
traceId: string;
|
|
1163
1241
|
/** Unique span identifier within a trace */
|
|
@@ -1165,7 +1243,7 @@ type Shared_Type_75 = {
|
|
|
1165
1243
|
/** Human-readable span name */
|
|
1166
1244
|
name: string;
|
|
1167
1245
|
/** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
|
|
1168
|
-
spanType:
|
|
1246
|
+
spanType: Shared_Type_71;
|
|
1169
1247
|
/** Whether this is an event (point-in-time) vs a span (duration) */
|
|
1170
1248
|
isEvent: boolean;
|
|
1171
1249
|
/** When the span started */
|
|
@@ -1174,7 +1252,7 @@ type Shared_Type_75 = {
|
|
|
1174
1252
|
endedAt?: (Date | null) | undefined;
|
|
1175
1253
|
error?: (unknown | null) | undefined;
|
|
1176
1254
|
status?: (('success' | 'error' | 'running') | null) | undefined;
|
|
1177
|
-
entityType?: (
|
|
1255
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1178
1256
|
entityId?: (string | null) | undefined;
|
|
1179
1257
|
entityName?: (string | null) | undefined;
|
|
1180
1258
|
metadata?: ({
|
|
@@ -1186,7 +1264,7 @@ type Shared_Type_75 = {
|
|
|
1186
1264
|
/** Database record last update time */
|
|
1187
1265
|
updatedAt: Date | null;
|
|
1188
1266
|
};
|
|
1189
|
-
type
|
|
1267
|
+
type Shared_Type_77 = {
|
|
1190
1268
|
/** Unique trace identifier */
|
|
1191
1269
|
traceId: string;
|
|
1192
1270
|
/** Unique span identifier within a trace */
|
|
@@ -1194,19 +1272,19 @@ type Shared_Type_76 = {
|
|
|
1194
1272
|
/** Human-readable span name */
|
|
1195
1273
|
name: string;
|
|
1196
1274
|
/** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
|
|
1197
|
-
spanType:
|
|
1275
|
+
spanType: Shared_Type_71;
|
|
1198
1276
|
/** Whether this is an event (point-in-time) vs a span (duration) */
|
|
1199
1277
|
isEvent: boolean;
|
|
1200
1278
|
/** When the span started */
|
|
1201
1279
|
startedAt: Date;
|
|
1202
1280
|
parentSpanId?: (string | null) | undefined;
|
|
1203
|
-
entityType?: (
|
|
1281
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1204
1282
|
entityId?: (string | null) | undefined;
|
|
1205
1283
|
entityName?: (string | null) | undefined;
|
|
1206
|
-
parentEntityType?: (
|
|
1284
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1207
1285
|
parentEntityId?: (string | null) | undefined;
|
|
1208
1286
|
parentEntityName?: (string | null) | undefined;
|
|
1209
|
-
rootEntityType?: (
|
|
1287
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1210
1288
|
rootEntityId?: (string | null) | undefined;
|
|
1211
1289
|
rootEntityName?: (string | null) | undefined;
|
|
1212
1290
|
userId?: (string | null) | undefined;
|
|
@@ -1248,7 +1326,7 @@ type Shared_Type_76 = {
|
|
|
1248
1326
|
/** Database record last update time */
|
|
1249
1327
|
updatedAt: Date | null;
|
|
1250
1328
|
};
|
|
1251
|
-
type
|
|
1329
|
+
type Shared_Type_78 = {
|
|
1252
1330
|
/** Unique id for this score event */
|
|
1253
1331
|
scoreId?: (string | null) | undefined;
|
|
1254
1332
|
/** When the score was recorded */
|
|
@@ -1266,13 +1344,13 @@ type Shared_Type_77 = {
|
|
|
1266
1344
|
/** Score value (range defined by scorer) */
|
|
1267
1345
|
score: number;
|
|
1268
1346
|
reason?: (string | null) | undefined;
|
|
1269
|
-
entityType?: (
|
|
1347
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1270
1348
|
entityId?: (string | null) | undefined;
|
|
1271
1349
|
entityName?: (string | null) | undefined;
|
|
1272
|
-
parentEntityType?: (
|
|
1350
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1273
1351
|
parentEntityId?: (string | null) | undefined;
|
|
1274
1352
|
parentEntityName?: (string | null) | undefined;
|
|
1275
|
-
rootEntityType?: (
|
|
1353
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1276
1354
|
rootEntityId?: (string | null) | undefined;
|
|
1277
1355
|
rootEntityName?: (string | null) | undefined;
|
|
1278
1356
|
userId?: (string | null) | undefined;
|
|
@@ -1300,15 +1378,15 @@ type Shared_Type_77 = {
|
|
|
1300
1378
|
[key: string]: unknown;
|
|
1301
1379
|
} | null) | undefined;
|
|
1302
1380
|
};
|
|
1303
|
-
type
|
|
1381
|
+
type Shared_Type_79 = {
|
|
1304
1382
|
/** Filter by timestamp range */
|
|
1305
|
-
timestamp?:
|
|
1383
|
+
timestamp?: Shared_Type_70 | undefined;
|
|
1306
1384
|
/** Filter by trace ID */
|
|
1307
1385
|
traceId?: string | undefined;
|
|
1308
1386
|
/** Filter by span ID */
|
|
1309
1387
|
spanId?: string | undefined;
|
|
1310
1388
|
/** Entity type (e.g., 'agent' | 'processor' | 'tool' | 'workflow') */
|
|
1311
|
-
entityType?:
|
|
1389
|
+
entityType?: Shared_Type_72 | undefined;
|
|
1312
1390
|
/** Name of the entity */
|
|
1313
1391
|
entityName?: string | undefined;
|
|
1314
1392
|
/** Version ID of the entity that produced this signal (e.g., agent version, workflow version) */
|
|
@@ -1328,11 +1406,11 @@ type Shared_Type_78 = {
|
|
|
1328
1406
|
/** Environment (e.g., "production" | "staging" | "development") */
|
|
1329
1407
|
environment?: string | undefined;
|
|
1330
1408
|
/** Entity type of the parent entity */
|
|
1331
|
-
parentEntityType?:
|
|
1409
|
+
parentEntityType?: Shared_Type_72 | undefined;
|
|
1332
1410
|
/** Name of the parent entity */
|
|
1333
1411
|
parentEntityName?: string | undefined;
|
|
1334
1412
|
/** Entity type of the root entity */
|
|
1335
|
-
rootEntityType?:
|
|
1413
|
+
rootEntityType?: Shared_Type_72 | undefined;
|
|
1336
1414
|
/** Name of the root entity */
|
|
1337
1415
|
rootEntityName?: string | undefined;
|
|
1338
1416
|
/** Broader resource context (Mastra memory compatibility) */
|
|
@@ -1360,7 +1438,7 @@ type Shared_Type_78 = {
|
|
|
1360
1438
|
/** Filter by how the score was produced */
|
|
1361
1439
|
source?: string | undefined;
|
|
1362
1440
|
};
|
|
1363
|
-
type
|
|
1441
|
+
type Shared_Type_80 = {
|
|
1364
1442
|
/** Unique id for this feedback event */
|
|
1365
1443
|
feedbackId?: (string | null) | undefined;
|
|
1366
1444
|
/** When the feedback was recorded */
|
|
@@ -1377,13 +1455,13 @@ type Shared_Type_79 = {
|
|
|
1377
1455
|
value: number | string;
|
|
1378
1456
|
comment?: (string | null) | undefined;
|
|
1379
1457
|
feedbackUserId?: (string | null) | undefined;
|
|
1380
|
-
entityType?: (
|
|
1458
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
1381
1459
|
entityId?: (string | null) | undefined;
|
|
1382
1460
|
entityName?: (string | null) | undefined;
|
|
1383
|
-
parentEntityType?: (
|
|
1461
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1384
1462
|
parentEntityId?: (string | null) | undefined;
|
|
1385
1463
|
parentEntityName?: (string | null) | undefined;
|
|
1386
|
-
rootEntityType?: (
|
|
1464
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
1387
1465
|
rootEntityId?: (string | null) | undefined;
|
|
1388
1466
|
rootEntityName?: (string | null) | undefined;
|
|
1389
1467
|
userId?: (string | null) | undefined;
|
|
@@ -1413,15 +1491,15 @@ type Shared_Type_79 = {
|
|
|
1413
1491
|
/** Feedback review workflow status */
|
|
1414
1492
|
reviewStatus: 'needs-review' | 'reviewed';
|
|
1415
1493
|
};
|
|
1416
|
-
type
|
|
1494
|
+
type Shared_Type_81 = {
|
|
1417
1495
|
/** Filter by timestamp range */
|
|
1418
|
-
timestamp?:
|
|
1496
|
+
timestamp?: Shared_Type_70 | undefined;
|
|
1419
1497
|
/** Filter by trace ID */
|
|
1420
1498
|
traceId?: string | undefined;
|
|
1421
1499
|
/** Filter by span ID */
|
|
1422
1500
|
spanId?: string | undefined;
|
|
1423
1501
|
/** Entity type (e.g., 'agent' | 'processor' | 'tool' | 'workflow') */
|
|
1424
|
-
entityType?:
|
|
1502
|
+
entityType?: Shared_Type_72 | undefined;
|
|
1425
1503
|
/** Name of the entity */
|
|
1426
1504
|
entityName?: string | undefined;
|
|
1427
1505
|
/** Version ID of the entity that produced this signal (e.g., agent version, workflow version) */
|
|
@@ -1441,11 +1519,11 @@ type Shared_Type_80 = {
|
|
|
1441
1519
|
/** Environment (e.g., "production" | "staging" | "development") */
|
|
1442
1520
|
environment?: string | undefined;
|
|
1443
1521
|
/** Entity type of the parent entity */
|
|
1444
|
-
parentEntityType?:
|
|
1522
|
+
parentEntityType?: Shared_Type_72 | undefined;
|
|
1445
1523
|
/** Name of the parent entity */
|
|
1446
1524
|
parentEntityName?: string | undefined;
|
|
1447
1525
|
/** Entity type of the root entity */
|
|
1448
|
-
rootEntityType?:
|
|
1526
|
+
rootEntityType?: Shared_Type_72 | undefined;
|
|
1449
1527
|
/** Name of the root entity */
|
|
1450
1528
|
rootEntityName?: string | undefined;
|
|
1451
1529
|
/** Broader resource context (Mastra memory compatibility) */
|
|
@@ -1472,16 +1550,16 @@ type Shared_Type_80 = {
|
|
|
1472
1550
|
feedbackUserId?: string | undefined;
|
|
1473
1551
|
reviewStatus?: ('needs-review' | 'reviewed') | undefined;
|
|
1474
1552
|
};
|
|
1475
|
-
type
|
|
1476
|
-
type
|
|
1553
|
+
type Shared_Type_82 = 'entityType' | 'entityName' | 'parentEntityType' | 'parentEntityName' | 'rootEntityType' | 'rootEntityName' | 'name' | 'provider' | 'model' | 'environment' | 'executionSource' | 'serviceName' | 'threadId' | 'resourceId';
|
|
1554
|
+
type Shared_Type_83 = {
|
|
1477
1555
|
/** Filter by timestamp range */
|
|
1478
|
-
timestamp?:
|
|
1556
|
+
timestamp?: Shared_Type_70 | undefined;
|
|
1479
1557
|
/** Filter by trace ID */
|
|
1480
1558
|
traceId?: string | undefined;
|
|
1481
1559
|
/** Filter by span ID */
|
|
1482
1560
|
spanId?: string | undefined;
|
|
1483
1561
|
/** Entity type (e.g., 'agent' | 'processor' | 'tool' | 'workflow') */
|
|
1484
|
-
entityType?:
|
|
1562
|
+
entityType?: Shared_Type_72 | undefined;
|
|
1485
1563
|
/** Name of the entity */
|
|
1486
1564
|
entityName?: string | undefined;
|
|
1487
1565
|
/** Version ID of the entity that produced this signal (e.g., agent version, workflow version) */
|
|
@@ -1501,11 +1579,11 @@ type Shared_Type_82 = {
|
|
|
1501
1579
|
/** Environment (e.g., "production" | "staging" | "development") */
|
|
1502
1580
|
environment?: string | undefined;
|
|
1503
1581
|
/** Entity type of the parent entity */
|
|
1504
|
-
parentEntityType?:
|
|
1582
|
+
parentEntityType?: Shared_Type_72 | undefined;
|
|
1505
1583
|
/** Name of the parent entity */
|
|
1506
1584
|
parentEntityName?: string | undefined;
|
|
1507
1585
|
/** Entity type of the root entity */
|
|
1508
|
-
rootEntityType?:
|
|
1586
|
+
rootEntityType?: Shared_Type_72 | undefined;
|
|
1509
1587
|
/** Name of the root entity */
|
|
1510
1588
|
rootEntityName?: string | undefined;
|
|
1511
1589
|
/** Broader resource context (Mastra memory compatibility) */
|
|
@@ -1539,7 +1617,7 @@ type Shared_Type_82 = {
|
|
|
1539
1617
|
[key: string]: string;
|
|
1540
1618
|
} | undefined;
|
|
1541
1619
|
};
|
|
1542
|
-
type
|
|
1620
|
+
type Shared_Type_84 = {
|
|
1543
1621
|
/** Part type - text for TextParts */
|
|
1544
1622
|
kind: 'text';
|
|
1545
1623
|
/** Text content */
|
|
@@ -1549,7 +1627,7 @@ type Shared_Type_83 = {
|
|
|
1549
1627
|
[key: string]: unknown;
|
|
1550
1628
|
} | undefined;
|
|
1551
1629
|
};
|
|
1552
|
-
type
|
|
1630
|
+
type Shared_Type_85 = {
|
|
1553
1631
|
/** base64 encoded content of the file */
|
|
1554
1632
|
bytes: string;
|
|
1555
1633
|
/** Optional mimeType for the file */
|
|
@@ -1557,7 +1635,7 @@ type Shared_Type_84 = {
|
|
|
1557
1635
|
/** Optional name for the file */
|
|
1558
1636
|
name?: string | undefined;
|
|
1559
1637
|
};
|
|
1560
|
-
type
|
|
1638
|
+
type Shared_Type_86 = {
|
|
1561
1639
|
/** URL for the File content */
|
|
1562
1640
|
uri: string;
|
|
1563
1641
|
/** Optional mimeType for the file */
|
|
@@ -1565,17 +1643,17 @@ type Shared_Type_85 = {
|
|
|
1565
1643
|
/** Optional name for the file */
|
|
1566
1644
|
name?: string | undefined;
|
|
1567
1645
|
};
|
|
1568
|
-
type
|
|
1646
|
+
type Shared_Type_87 = {
|
|
1569
1647
|
/** Part type - file for FileParts */
|
|
1570
1648
|
kind: 'file';
|
|
1571
1649
|
/** File content either as url or bytes */
|
|
1572
|
-
file:
|
|
1650
|
+
file: Shared_Type_85 | Shared_Type_86;
|
|
1573
1651
|
/** Optional metadata associated with the part */
|
|
1574
1652
|
metadata?: {
|
|
1575
1653
|
[key: string]: unknown;
|
|
1576
1654
|
} | undefined;
|
|
1577
1655
|
};
|
|
1578
|
-
type
|
|
1656
|
+
type Shared_Type_88 = {
|
|
1579
1657
|
/** Part type - data for DataParts */
|
|
1580
1658
|
kind: 'data';
|
|
1581
1659
|
/** Structured data content */
|
|
@@ -1587,7 +1665,7 @@ type Shared_Type_87 = {
|
|
|
1587
1665
|
[key: string]: unknown;
|
|
1588
1666
|
} | undefined;
|
|
1589
1667
|
};
|
|
1590
|
-
type
|
|
1668
|
+
type Shared_Type_89 = {
|
|
1591
1669
|
text?: string | undefined;
|
|
1592
1670
|
raw?: string | undefined;
|
|
1593
1671
|
url?: string | undefined;
|
|
@@ -1598,7 +1676,7 @@ type Shared_Type_88 = {
|
|
|
1598
1676
|
[key: string]: unknown;
|
|
1599
1677
|
} | undefined;
|
|
1600
1678
|
};
|
|
1601
|
-
type
|
|
1679
|
+
type Shared_Type_90 = {
|
|
1602
1680
|
/** Event type */
|
|
1603
1681
|
kind?: 'message' | undefined;
|
|
1604
1682
|
/** Identifier created by the message creator */
|
|
@@ -1606,7 +1684,7 @@ type Shared_Type_89 = {
|
|
|
1606
1684
|
/** Message sender's role */
|
|
1607
1685
|
role: 'user' | 'agent' | 'ROLE_USER' | 'ROLE_AGENT';
|
|
1608
1686
|
/** Message content */
|
|
1609
|
-
parts: ((
|
|
1687
|
+
parts: ((Shared_Type_84 | Shared_Type_87 | Shared_Type_88) | Shared_Type_89)[];
|
|
1610
1688
|
/** The context the message is associated with */
|
|
1611
1689
|
contextId?: string | undefined;
|
|
1612
1690
|
/** Identifier of task the message is related to */
|
|
@@ -1620,22 +1698,22 @@ type Shared_Type_89 = {
|
|
|
1620
1698
|
[key: string]: unknown;
|
|
1621
1699
|
} | undefined;
|
|
1622
1700
|
};
|
|
1623
|
-
type
|
|
1701
|
+
type Shared_Type_91 = {
|
|
1624
1702
|
/** Supported authentication schemes - e.g. Basic, Bearer */
|
|
1625
1703
|
schemes: string[];
|
|
1626
1704
|
/** Optional credentials */
|
|
1627
1705
|
credentials?: string | undefined;
|
|
1628
1706
|
};
|
|
1629
|
-
type
|
|
1707
|
+
type Shared_Type_92 = {
|
|
1630
1708
|
/** URL for sending the push notifications */
|
|
1631
1709
|
url: string;
|
|
1632
1710
|
/** Push Notification ID - created by server to support multiple callbacks */
|
|
1633
1711
|
id?: string | undefined;
|
|
1634
1712
|
/** Token unique to this task/session */
|
|
1635
1713
|
token?: string | undefined;
|
|
1636
|
-
authentication?:
|
|
1714
|
+
authentication?: Shared_Type_91 | undefined;
|
|
1637
1715
|
};
|
|
1638
|
-
type
|
|
1716
|
+
type Shared_Type_93 = {
|
|
1639
1717
|
/** Accepted output modalities by the client */
|
|
1640
1718
|
acceptedOutputModes?: string[] | undefined;
|
|
1641
1719
|
/** If the server should treat the client as a blocking request */
|
|
@@ -1644,18 +1722,18 @@ type Shared_Type_92 = {
|
|
|
1644
1722
|
returnImmediately?: boolean | undefined;
|
|
1645
1723
|
/** Number of recent messages to be retrieved */
|
|
1646
1724
|
historyLength?: number | undefined;
|
|
1647
|
-
pushNotificationConfig?:
|
|
1648
|
-
taskPushNotificationConfig?:
|
|
1725
|
+
pushNotificationConfig?: Shared_Type_92 | undefined;
|
|
1726
|
+
taskPushNotificationConfig?: Shared_Type_92 | undefined;
|
|
1649
1727
|
};
|
|
1650
|
-
type
|
|
1651
|
-
message:
|
|
1652
|
-
configuration?:
|
|
1728
|
+
type Shared_Type_94 = {
|
|
1729
|
+
message: Shared_Type_90;
|
|
1730
|
+
configuration?: Shared_Type_93 | undefined;
|
|
1653
1731
|
/** Extension metadata */
|
|
1654
1732
|
metadata?: {
|
|
1655
1733
|
[key: string]: unknown;
|
|
1656
1734
|
} | undefined;
|
|
1657
1735
|
};
|
|
1658
|
-
type
|
|
1736
|
+
type Shared_Type_95 = {
|
|
1659
1737
|
name: string;
|
|
1660
1738
|
description?: string | undefined;
|
|
1661
1739
|
inputSchema: unknown;
|
|
@@ -1665,18 +1743,18 @@ type Shared_Type_94 = {
|
|
|
1665
1743
|
[key: string]: unknown;
|
|
1666
1744
|
} | undefined;
|
|
1667
1745
|
};
|
|
1668
|
-
type
|
|
1746
|
+
type Shared_Type_96 = (({
|
|
1669
1747
|
[key: string]: {
|
|
1670
1748
|
description?: string | undefined;
|
|
1671
1749
|
rules?: Shared_Type_9 | undefined;
|
|
1672
1750
|
};
|
|
1673
1751
|
} | Shared_Type_12[]) | undefined) | undefined;
|
|
1674
|
-
type
|
|
1752
|
+
type Shared_Type_97 = ((Shared_Type_4 | {
|
|
1675
1753
|
/** Default options for agent execution */
|
|
1676
1754
|
value: Shared_Type_4;
|
|
1677
1755
|
rules?: Shared_Type_9 | undefined;
|
|
1678
1756
|
}[]) | undefined) | undefined;
|
|
1679
|
-
type
|
|
1757
|
+
type Shared_Type_98 = (({
|
|
1680
1758
|
[key: string]: Shared_Type_13;
|
|
1681
1759
|
} | {
|
|
1682
1760
|
value: {
|
|
@@ -1684,7 +1762,7 @@ type Shared_Type_97 = (({
|
|
|
1684
1762
|
};
|
|
1685
1763
|
rules?: Shared_Type_9 | undefined;
|
|
1686
1764
|
}[]) | undefined) | undefined;
|
|
1687
|
-
type
|
|
1765
|
+
type Shared_Type_99 = (({
|
|
1688
1766
|
[key: string]: Shared_Type_15;
|
|
1689
1767
|
} | {
|
|
1690
1768
|
value: {
|
|
@@ -1692,7 +1770,7 @@ type Shared_Type_98 = (({
|
|
|
1692
1770
|
};
|
|
1693
1771
|
rules?: Shared_Type_9 | undefined;
|
|
1694
1772
|
}[]) | undefined) | undefined;
|
|
1695
|
-
type
|
|
1773
|
+
type Shared_Type_100 = (({
|
|
1696
1774
|
[key: string]: Shared_Type_28;
|
|
1697
1775
|
} | {
|
|
1698
1776
|
value: {
|
|
@@ -1700,14 +1778,14 @@ type Shared_Type_99 = (({
|
|
|
1700
1778
|
};
|
|
1701
1779
|
rules?: Shared_Type_9 | undefined;
|
|
1702
1780
|
}[]) | undefined) | undefined;
|
|
1703
|
-
type
|
|
1781
|
+
type Shared_Type_101 = ((({
|
|
1704
1782
|
type: 'id';
|
|
1705
1783
|
workspaceId: string;
|
|
1706
1784
|
} | {
|
|
1707
1785
|
type: 'inline';
|
|
1708
1786
|
config: Shared_Type_36;
|
|
1709
1787
|
} | Shared_Type_37) | Shared_Type_38[]) | undefined) | undefined;
|
|
1710
|
-
type
|
|
1788
|
+
type Shared_Type_102 = {
|
|
1711
1789
|
/** Unique identifier for the version (UUID) */
|
|
1712
1790
|
id: string;
|
|
1713
1791
|
/** ID of the agent this version belongs to */
|
|
@@ -1799,7 +1877,7 @@ type Shared_Type_101 = {
|
|
|
1799
1877
|
/** When this version was created */
|
|
1800
1878
|
createdAt: Date;
|
|
1801
1879
|
};
|
|
1802
|
-
type
|
|
1880
|
+
type Shared_Type_103 = {
|
|
1803
1881
|
/** The field path that changed */
|
|
1804
1882
|
field: string;
|
|
1805
1883
|
/** The value in the "from" version */
|
|
@@ -1807,7 +1885,7 @@ type Shared_Type_102 = {
|
|
|
1807
1885
|
/** The value in the "to" version */
|
|
1808
1886
|
currentValue: unknown;
|
|
1809
1887
|
};
|
|
1810
|
-
type
|
|
1888
|
+
type Shared_Type_104 = {
|
|
1811
1889
|
id: string;
|
|
1812
1890
|
description?: string | undefined;
|
|
1813
1891
|
metadata?: {
|
|
@@ -1824,7 +1902,7 @@ type Shared_Type_103 = {
|
|
|
1824
1902
|
createdAt: Date | string;
|
|
1825
1903
|
updatedAt: Date | string;
|
|
1826
1904
|
};
|
|
1827
|
-
type
|
|
1905
|
+
type Shared_Type_105 = {
|
|
1828
1906
|
type: 'agent';
|
|
1829
1907
|
id: string;
|
|
1830
1908
|
agentId: string;
|
|
@@ -1839,7 +1917,7 @@ type Shared_Type_104 = {
|
|
|
1839
1917
|
} | undefined;
|
|
1840
1918
|
} | undefined;
|
|
1841
1919
|
};
|
|
1842
|
-
type
|
|
1920
|
+
type Shared_Type_106 = {
|
|
1843
1921
|
type: 'tool';
|
|
1844
1922
|
id: string;
|
|
1845
1923
|
toolId: string;
|
|
@@ -1851,19 +1929,38 @@ type Shared_Type_105 = {
|
|
|
1851
1929
|
} | undefined;
|
|
1852
1930
|
} | undefined;
|
|
1853
1931
|
};
|
|
1854
|
-
type
|
|
1932
|
+
type Shared_Type_107 = {
|
|
1855
1933
|
type: 'mapping';
|
|
1856
1934
|
id: string;
|
|
1935
|
+
description?: string | undefined;
|
|
1936
|
+
metadata?: {
|
|
1937
|
+
[key: string]: unknown;
|
|
1938
|
+
} | undefined;
|
|
1857
1939
|
mapConfig: string;
|
|
1858
|
-
}
|
|
1940
|
+
};
|
|
1941
|
+
type Shared_Type_108 = (Shared_Type_105 | Shared_Type_106 | Shared_Type_107 | {
|
|
1859
1942
|
type: 'workflow';
|
|
1860
1943
|
id: string;
|
|
1861
1944
|
workflowId: string;
|
|
1862
1945
|
description?: string | undefined;
|
|
1946
|
+
})[];
|
|
1947
|
+
type Shared_Type_109 = {
|
|
1948
|
+
type: 'parallel';
|
|
1949
|
+
id?: string | undefined;
|
|
1950
|
+
description?: string | undefined;
|
|
1951
|
+
metadata?: {
|
|
1952
|
+
[key: string]: unknown;
|
|
1953
|
+
} | undefined;
|
|
1954
|
+
steps: Shared_Type_108;
|
|
1863
1955
|
};
|
|
1864
|
-
type
|
|
1956
|
+
type Shared_Type_110 = {
|
|
1865
1957
|
type: 'foreach';
|
|
1866
|
-
|
|
1958
|
+
id?: string | undefined;
|
|
1959
|
+
description?: string | undefined;
|
|
1960
|
+
metadata?: {
|
|
1961
|
+
[key: string]: unknown;
|
|
1962
|
+
} | undefined;
|
|
1963
|
+
step: Shared_Type_105 | Shared_Type_106 | {
|
|
1867
1964
|
type: 'workflow';
|
|
1868
1965
|
id: string;
|
|
1869
1966
|
workflowId: string;
|
|
@@ -1873,37 +1970,57 @@ type Shared_Type_107 = {
|
|
|
1873
1970
|
concurrency: number;
|
|
1874
1971
|
} | undefined;
|
|
1875
1972
|
};
|
|
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 | {
|
|
1973
|
+
type Shared_Type_111 = {
|
|
1889
1974
|
type: 'sleep';
|
|
1890
1975
|
id: string;
|
|
1976
|
+
description?: string | undefined;
|
|
1977
|
+
metadata?: {
|
|
1978
|
+
[key: string]: unknown;
|
|
1979
|
+
} | undefined;
|
|
1891
1980
|
duration: number;
|
|
1892
|
-
}
|
|
1981
|
+
};
|
|
1982
|
+
type Shared_Type_112 = {
|
|
1893
1983
|
type: 'sleepUntil';
|
|
1894
1984
|
id: string;
|
|
1985
|
+
description?: string | undefined;
|
|
1986
|
+
metadata?: {
|
|
1987
|
+
[key: string]: unknown;
|
|
1988
|
+
} | undefined;
|
|
1895
1989
|
date: string;
|
|
1896
|
-
}
|
|
1990
|
+
};
|
|
1991
|
+
type Shared_Type_113 = {
|
|
1897
1992
|
type: 'conditional';
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1993
|
+
id?: string | undefined;
|
|
1994
|
+
description?: string | undefined;
|
|
1995
|
+
metadata?: {
|
|
1996
|
+
[key: string]: unknown;
|
|
1997
|
+
} | undefined;
|
|
1998
|
+
steps: Shared_Type_108;
|
|
1999
|
+
predicates: Shared_Auxiliary_1136[];
|
|
2000
|
+
};
|
|
2001
|
+
type Shared_Type_114 = {
|
|
1901
2002
|
type: 'loop';
|
|
1902
|
-
|
|
2003
|
+
id?: string | undefined;
|
|
2004
|
+
description?: string | undefined;
|
|
2005
|
+
metadata?: {
|
|
2006
|
+
[key: string]: unknown;
|
|
2007
|
+
} | undefined;
|
|
2008
|
+
step: Shared_Type_105 | Shared_Type_106 | Shared_Type_107 | {
|
|
2009
|
+
type: 'workflow';
|
|
2010
|
+
id: string;
|
|
2011
|
+
workflowId: string;
|
|
2012
|
+
description?: string | undefined;
|
|
2013
|
+
};
|
|
1903
2014
|
loopType: 'dowhile' | 'dountil';
|
|
1904
|
-
predicate:
|
|
2015
|
+
predicate: Shared_Auxiliary_1136;
|
|
1905
2016
|
};
|
|
1906
|
-
type
|
|
2017
|
+
type Shared_Type_115 = Shared_Type_105 | Shared_Type_106 | Shared_Type_107 | {
|
|
2018
|
+
type: 'workflow';
|
|
2019
|
+
id: string;
|
|
2020
|
+
workflowId: string;
|
|
2021
|
+
description?: string | undefined;
|
|
2022
|
+
} | Shared_Type_109 | Shared_Type_110 | Shared_Type_111 | Shared_Type_112 | Shared_Type_113 | Shared_Type_114;
|
|
2023
|
+
type Shared_Type_116 = {
|
|
1907
2024
|
/** Transport type: stdio for local processes, http for remote servers */
|
|
1908
2025
|
type: 'stdio' | 'http';
|
|
1909
2026
|
/** Command to run (stdio only) */
|
|
@@ -1919,7 +2036,7 @@ type Shared_Type_109 = {
|
|
|
1919
2036
|
/** Connection timeout in milliseconds */
|
|
1920
2037
|
timeout?: number | undefined;
|
|
1921
2038
|
};
|
|
1922
|
-
type
|
|
2039
|
+
type Shared_Type_117 = {
|
|
1923
2040
|
id: string;
|
|
1924
2041
|
/** MCP client status: draft, published, or archived */
|
|
1925
2042
|
status: string;
|
|
@@ -1936,10 +2053,10 @@ type Shared_Type_110 = {
|
|
|
1936
2053
|
description?: string | undefined;
|
|
1937
2054
|
/** Map of server name to server configuration */
|
|
1938
2055
|
servers: {
|
|
1939
|
-
[key: string]:
|
|
2056
|
+
[key: string]: Shared_Type_116;
|
|
1940
2057
|
};
|
|
1941
2058
|
};
|
|
1942
|
-
type
|
|
2059
|
+
type Shared_Type_118 = {
|
|
1943
2060
|
type: 'stdio' | 'http';
|
|
1944
2061
|
command?: string | undefined;
|
|
1945
2062
|
args?: string[] | undefined;
|
|
@@ -1949,7 +2066,7 @@ type Shared_Type_111 = {
|
|
|
1949
2066
|
url?: string | undefined;
|
|
1950
2067
|
timeout?: number | undefined;
|
|
1951
2068
|
};
|
|
1952
|
-
type
|
|
2069
|
+
type Shared_Type_119 = {
|
|
1953
2070
|
/** Unique identifier for the version (UUID) */
|
|
1954
2071
|
id: string;
|
|
1955
2072
|
/** ID of the MCP client this version belongs to */
|
|
@@ -1961,7 +2078,7 @@ type Shared_Type_112 = {
|
|
|
1961
2078
|
/** Description of the MCP client */
|
|
1962
2079
|
description?: string | undefined;
|
|
1963
2080
|
servers: {
|
|
1964
|
-
[key: string]:
|
|
2081
|
+
[key: string]: Shared_Type_118;
|
|
1965
2082
|
};
|
|
1966
2083
|
/** Array of field names that changed from the previous version */
|
|
1967
2084
|
changedFields?: string[] | undefined;
|
|
@@ -1970,7 +2087,7 @@ type Shared_Type_112 = {
|
|
|
1970
2087
|
/** When this version was created */
|
|
1971
2088
|
createdAt: Date;
|
|
1972
2089
|
};
|
|
1973
|
-
type
|
|
2090
|
+
type Shared_Type_120 = {
|
|
1974
2091
|
id: string;
|
|
1975
2092
|
/** Prompt block status: draft, published, or archived */
|
|
1976
2093
|
status: string;
|
|
@@ -1996,7 +2113,7 @@ type Shared_Type_113 = {
|
|
|
1996
2113
|
[key: string]: unknown;
|
|
1997
2114
|
} | undefined;
|
|
1998
2115
|
};
|
|
1999
|
-
type
|
|
2116
|
+
type Shared_Type_121 = {
|
|
2000
2117
|
/** Unique identifier for the version (UUID) */
|
|
2001
2118
|
id: string;
|
|
2002
2119
|
/** ID of the prompt block this version belongs to */
|
|
@@ -2022,8 +2139,8 @@ type Shared_Type_114 = {
|
|
|
2022
2139
|
/** When this version was created */
|
|
2023
2140
|
createdAt: Date;
|
|
2024
2141
|
};
|
|
2025
|
-
type
|
|
2026
|
-
type
|
|
2142
|
+
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';
|
|
2143
|
+
type Shared_Type_123 = {
|
|
2027
2144
|
id: string;
|
|
2028
2145
|
/** Scorer status: draft, published, or archived */
|
|
2029
2146
|
status: string;
|
|
@@ -2039,7 +2156,7 @@ type Shared_Type_116 = {
|
|
|
2039
2156
|
/** Description of the scorer */
|
|
2040
2157
|
description?: string | undefined;
|
|
2041
2158
|
/** Scorer type: llm-judge for custom, or a preset type name */
|
|
2042
|
-
type:
|
|
2159
|
+
type: Shared_Type_122;
|
|
2043
2160
|
model?: Shared_Type_11 | undefined;
|
|
2044
2161
|
/** System instructions for the judge LLM */
|
|
2045
2162
|
instructions?: string | undefined;
|
|
@@ -2057,13 +2174,13 @@ type Shared_Type_116 = {
|
|
|
2057
2174
|
rate: number;
|
|
2058
2175
|
}) | undefined;
|
|
2059
2176
|
};
|
|
2060
|
-
type
|
|
2177
|
+
type Shared_Type_124 = {
|
|
2061
2178
|
/** Minimum score value (default: 0) */
|
|
2062
2179
|
min?: number | undefined;
|
|
2063
2180
|
/** Maximum score value (default: 1) */
|
|
2064
2181
|
max?: number | undefined;
|
|
2065
2182
|
} | undefined;
|
|
2066
|
-
type
|
|
2183
|
+
type Shared_Type_125 = {
|
|
2067
2184
|
/** Unique identifier for the version (UUID) */
|
|
2068
2185
|
id: string;
|
|
2069
2186
|
/** ID of the scorer this version belongs to */
|
|
@@ -2074,7 +2191,7 @@ type Shared_Type_118 = {
|
|
|
2074
2191
|
name: string;
|
|
2075
2192
|
/** Description of the scorer */
|
|
2076
2193
|
description?: string | undefined;
|
|
2077
|
-
type:
|
|
2194
|
+
type: Shared_Type_122;
|
|
2078
2195
|
model?: Shared_Type_11 | undefined;
|
|
2079
2196
|
instructions?: string | undefined;
|
|
2080
2197
|
scoreRange?: {
|
|
@@ -2097,7 +2214,7 @@ type Shared_Type_118 = {
|
|
|
2097
2214
|
/** When this version was created */
|
|
2098
2215
|
createdAt: Date;
|
|
2099
2216
|
};
|
|
2100
|
-
type
|
|
2217
|
+
type Shared_Type_126 = {
|
|
2101
2218
|
id: string;
|
|
2102
2219
|
/** Workspace status: draft, published, or archived */
|
|
2103
2220
|
status: string;
|
|
@@ -2129,7 +2246,7 @@ type Shared_Type_119 = {
|
|
|
2129
2246
|
/** Operation timeout in milliseconds */
|
|
2130
2247
|
operationTimeout?: number | undefined;
|
|
2131
2248
|
};
|
|
2132
|
-
type
|
|
2249
|
+
type Shared_Type_127 = {
|
|
2133
2250
|
type: 'external';
|
|
2134
2251
|
/** Package path for external source */
|
|
2135
2252
|
packagePath: string;
|
|
@@ -2142,7 +2259,7 @@ type Shared_Type_120 = {
|
|
|
2142
2259
|
/** Mastra path for managed source */
|
|
2143
2260
|
mastraPath: string;
|
|
2144
2261
|
};
|
|
2145
|
-
type
|
|
2262
|
+
type Shared_Type_128 = {
|
|
2146
2263
|
id: string;
|
|
2147
2264
|
/** Skill status: draft, published, or archived */
|
|
2148
2265
|
status: string;
|
|
@@ -2166,7 +2283,7 @@ type Shared_Type_121 = {
|
|
|
2166
2283
|
/** Compatibility requirements */
|
|
2167
2284
|
compatibility?: unknown | undefined;
|
|
2168
2285
|
/** Source location of the skill */
|
|
2169
|
-
source?:
|
|
2286
|
+
source?: Shared_Type_127 | undefined;
|
|
2170
2287
|
/** List of reference file paths */
|
|
2171
2288
|
references?: string[] | undefined;
|
|
2172
2289
|
/** List of script file paths */
|
|
@@ -2174,13 +2291,13 @@ type Shared_Type_121 = {
|
|
|
2174
2291
|
/** List of asset file paths */
|
|
2175
2292
|
assets?: string[] | undefined;
|
|
2176
2293
|
/** Full file tree structure for the skill */
|
|
2177
|
-
files?:
|
|
2294
|
+
files?: Shared_Auxiliary_1276[] | undefined;
|
|
2178
2295
|
/** Additional metadata for the skill */
|
|
2179
2296
|
metadata?: {
|
|
2180
2297
|
[key: string]: unknown;
|
|
2181
2298
|
} | undefined;
|
|
2182
2299
|
};
|
|
2183
|
-
type
|
|
2300
|
+
type Shared_Type_129 = {
|
|
2184
2301
|
id: string;
|
|
2185
2302
|
name: string;
|
|
2186
2303
|
description?: (string | undefined) | null;
|
|
@@ -2204,7 +2321,7 @@ type Shared_Type_122 = {
|
|
|
2204
2321
|
createdAt: Date;
|
|
2205
2322
|
updatedAt: Date;
|
|
2206
2323
|
};
|
|
2207
|
-
type
|
|
2324
|
+
type Shared_Type_130 = {
|
|
2208
2325
|
/** Name of the tool this mock applies to */
|
|
2209
2326
|
toolName: string;
|
|
2210
2327
|
/** Arguments to match against the tool call */
|
|
@@ -2216,13 +2333,13 @@ type Shared_Type_123 = {
|
|
|
2216
2333
|
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
2217
2334
|
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
2218
2335
|
};
|
|
2219
|
-
type
|
|
2336
|
+
type Shared_Type_131 = {
|
|
2220
2337
|
/** How this item was created */
|
|
2221
2338
|
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
2222
2339
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
2223
2340
|
referenceId?: string | undefined;
|
|
2224
2341
|
};
|
|
2225
|
-
type
|
|
2342
|
+
type Shared_Type_132 = {
|
|
2226
2343
|
id: string;
|
|
2227
2344
|
datasetId: string;
|
|
2228
2345
|
datasetVersion: number;
|
|
@@ -2231,7 +2348,7 @@ type Shared_Type_125 = {
|
|
|
2231
2348
|
groundTruth?: unknown | undefined;
|
|
2232
2349
|
expectedTrajectory?: unknown | undefined;
|
|
2233
2350
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
2234
|
-
toolMocks?:
|
|
2351
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
2235
2352
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
2236
2353
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
2237
2354
|
scorerIds?: string[] | undefined;
|
|
@@ -2242,11 +2359,11 @@ type Shared_Type_125 = {
|
|
|
2242
2359
|
[key: string]: unknown;
|
|
2243
2360
|
} | undefined;
|
|
2244
2361
|
/** Source/provenance of this dataset item */
|
|
2245
|
-
source?:
|
|
2362
|
+
source?: Shared_Type_131 | undefined;
|
|
2246
2363
|
createdAt: Date;
|
|
2247
2364
|
updatedAt: Date;
|
|
2248
2365
|
};
|
|
2249
|
-
type
|
|
2366
|
+
type Shared_Type_133 = {
|
|
2250
2367
|
/** Step name to match */
|
|
2251
2368
|
name: string;
|
|
2252
2369
|
durationMs?: number | undefined;
|
|
@@ -2264,7 +2381,7 @@ type Shared_Type_126 = {
|
|
|
2264
2381
|
} | undefined;
|
|
2265
2382
|
success?: boolean | undefined;
|
|
2266
2383
|
};
|
|
2267
|
-
type
|
|
2384
|
+
type Shared_Type_134 = {
|
|
2268
2385
|
/** Step name to match */
|
|
2269
2386
|
name: string;
|
|
2270
2387
|
durationMs?: number | undefined;
|
|
@@ -2283,7 +2400,7 @@ type Shared_Type_127 = {
|
|
|
2283
2400
|
mcpServer?: string | undefined;
|
|
2284
2401
|
success?: boolean | undefined;
|
|
2285
2402
|
};
|
|
2286
|
-
type
|
|
2403
|
+
type Shared_Type_135 = {
|
|
2287
2404
|
/** Step name to match */
|
|
2288
2405
|
name: string;
|
|
2289
2406
|
durationMs?: number | undefined;
|
|
@@ -2298,7 +2415,7 @@ type Shared_Type_128 = {
|
|
|
2298
2415
|
completionTokens?: number | undefined;
|
|
2299
2416
|
finishReason?: string | undefined;
|
|
2300
2417
|
};
|
|
2301
|
-
type
|
|
2418
|
+
type Shared_Type_136 = {
|
|
2302
2419
|
/** Step name to match */
|
|
2303
2420
|
name: string;
|
|
2304
2421
|
durationMs?: number | undefined;
|
|
@@ -2310,7 +2427,7 @@ type Shared_Type_129 = {
|
|
|
2310
2427
|
stepType: 'agent_run';
|
|
2311
2428
|
agentId?: string | undefined;
|
|
2312
2429
|
};
|
|
2313
|
-
type
|
|
2430
|
+
type Shared_Type_137 = {
|
|
2314
2431
|
/** Step name to match */
|
|
2315
2432
|
name: string;
|
|
2316
2433
|
durationMs?: number | undefined;
|
|
@@ -2326,7 +2443,7 @@ type Shared_Type_130 = {
|
|
|
2326
2443
|
[key: string]: unknown;
|
|
2327
2444
|
} | undefined;
|
|
2328
2445
|
};
|
|
2329
|
-
type
|
|
2446
|
+
type Shared_Type_138 = {
|
|
2330
2447
|
/** Step name to match */
|
|
2331
2448
|
name: string;
|
|
2332
2449
|
durationMs?: number | undefined;
|
|
@@ -2339,7 +2456,7 @@ type Shared_Type_131 = {
|
|
|
2339
2456
|
workflowId?: string | undefined;
|
|
2340
2457
|
status?: string | undefined;
|
|
2341
2458
|
};
|
|
2342
|
-
type
|
|
2459
|
+
type Shared_Type_139 = {
|
|
2343
2460
|
/** Step name to match */
|
|
2344
2461
|
name: string;
|
|
2345
2462
|
durationMs?: number | undefined;
|
|
@@ -2352,7 +2469,7 @@ type Shared_Type_132 = {
|
|
|
2352
2469
|
conditionCount?: number | undefined;
|
|
2353
2470
|
selectedSteps?: string[] | undefined;
|
|
2354
2471
|
};
|
|
2355
|
-
type
|
|
2472
|
+
type Shared_Type_140 = {
|
|
2356
2473
|
/** Step name to match */
|
|
2357
2474
|
name: string;
|
|
2358
2475
|
durationMs?: number | undefined;
|
|
@@ -2365,7 +2482,7 @@ type Shared_Type_133 = {
|
|
|
2365
2482
|
branchCount?: number | undefined;
|
|
2366
2483
|
parallelSteps?: string[] | undefined;
|
|
2367
2484
|
};
|
|
2368
|
-
type
|
|
2485
|
+
type Shared_Type_141 = {
|
|
2369
2486
|
/** Step name to match */
|
|
2370
2487
|
name: string;
|
|
2371
2488
|
durationMs?: number | undefined;
|
|
@@ -2378,7 +2495,7 @@ type Shared_Type_134 = {
|
|
|
2378
2495
|
loopType?: string | undefined;
|
|
2379
2496
|
totalIterations?: number | undefined;
|
|
2380
2497
|
};
|
|
2381
|
-
type
|
|
2498
|
+
type Shared_Type_142 = {
|
|
2382
2499
|
/** Step name to match */
|
|
2383
2500
|
name: string;
|
|
2384
2501
|
durationMs?: number | undefined;
|
|
@@ -2391,7 +2508,7 @@ type Shared_Type_135 = {
|
|
|
2391
2508
|
sleepDurationMs?: number | undefined;
|
|
2392
2509
|
sleepType?: string | undefined;
|
|
2393
2510
|
};
|
|
2394
|
-
type
|
|
2511
|
+
type Shared_Type_143 = {
|
|
2395
2512
|
/** Step name to match */
|
|
2396
2513
|
name: string;
|
|
2397
2514
|
durationMs?: number | undefined;
|
|
@@ -2404,7 +2521,7 @@ type Shared_Type_136 = {
|
|
|
2404
2521
|
eventName?: string | undefined;
|
|
2405
2522
|
eventReceived?: boolean | undefined;
|
|
2406
2523
|
};
|
|
2407
|
-
type
|
|
2524
|
+
type Shared_Type_144 = {
|
|
2408
2525
|
/** Step name to match */
|
|
2409
2526
|
name: string;
|
|
2410
2527
|
durationMs?: number | undefined;
|
|
@@ -2416,8 +2533,8 @@ type Shared_Type_137 = {
|
|
|
2416
2533
|
stepType: 'processor_run';
|
|
2417
2534
|
processorId?: string | undefined;
|
|
2418
2535
|
};
|
|
2419
|
-
type
|
|
2420
|
-
type
|
|
2536
|
+
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;
|
|
2537
|
+
type Shared_Type_146 = {
|
|
2421
2538
|
/** Step name to match */
|
|
2422
2539
|
name: string;
|
|
2423
2540
|
durationMs?: number | undefined;
|
|
@@ -2428,9 +2545,9 @@ type Shared_Type_139 = {
|
|
|
2428
2545
|
children?: unknown | undefined;
|
|
2429
2546
|
stepType?: undefined | undefined;
|
|
2430
2547
|
};
|
|
2431
|
-
type
|
|
2548
|
+
type Shared_Type_147 = {
|
|
2432
2549
|
/** Expected steps for accuracy checking */
|
|
2433
|
-
steps?: (
|
|
2550
|
+
steps?: (Shared_Type_145 | Shared_Type_146)[] | undefined;
|
|
2434
2551
|
/** How to compare step ordering (default: relaxed) */
|
|
2435
2552
|
ordering?: ('strict' | 'relaxed' | 'unordered') | undefined;
|
|
2436
2553
|
/** Whether to allow repeated steps (default: true) */
|
|
@@ -2450,7 +2567,7 @@ type Shared_Type_140 = {
|
|
|
2450
2567
|
/** Maximum retries per tool before penalizing (default: 2) */
|
|
2451
2568
|
maxRetriesPerTool?: number | undefined;
|
|
2452
2569
|
};
|
|
2453
|
-
type
|
|
2570
|
+
type Shared_Type_148 = {
|
|
2454
2571
|
source?: string | undefined;
|
|
2455
2572
|
sourceId?: string | undefined;
|
|
2456
2573
|
sourceVersion?: string | undefined;
|
|
@@ -2458,7 +2575,7 @@ type Shared_Type_141 = {
|
|
|
2458
2575
|
[key: string]: unknown;
|
|
2459
2576
|
} | undefined;
|
|
2460
2577
|
};
|
|
2461
|
-
type
|
|
2578
|
+
type Shared_Type_149 = {
|
|
2462
2579
|
id: string;
|
|
2463
2580
|
datasetId: string | null;
|
|
2464
2581
|
datasetVersion: number | null;
|
|
@@ -2471,7 +2588,7 @@ type Shared_Type_142 = {
|
|
|
2471
2588
|
metadata?: {
|
|
2472
2589
|
[key: string]: unknown;
|
|
2473
2590
|
} | undefined;
|
|
2474
|
-
provenance?: (
|
|
2591
|
+
provenance?: (Shared_Type_148 | null) | undefined;
|
|
2475
2592
|
runnerAttestation?: ({
|
|
2476
2593
|
runnerId: string;
|
|
2477
2594
|
invocationId: string;
|
|
@@ -2491,7 +2608,7 @@ type Shared_Type_142 = {
|
|
|
2491
2608
|
createdAt: Date;
|
|
2492
2609
|
updatedAt: Date;
|
|
2493
2610
|
};
|
|
2494
|
-
type
|
|
2611
|
+
type Shared_Type_150 = {
|
|
2495
2612
|
served: {
|
|
2496
2613
|
mockIndex: number;
|
|
2497
2614
|
toolName: string;
|
|
@@ -2512,7 +2629,7 @@ type Shared_Type_143 = {
|
|
|
2512
2629
|
args: unknown;
|
|
2513
2630
|
} | undefined;
|
|
2514
2631
|
};
|
|
2515
|
-
type
|
|
2632
|
+
type Shared_Type_151 = {
|
|
2516
2633
|
id: string;
|
|
2517
2634
|
experimentId: string;
|
|
2518
2635
|
itemId: string;
|
|
@@ -2538,10 +2655,10 @@ type Shared_Type_144 = {
|
|
|
2538
2655
|
tags?: (string[] | null) | undefined;
|
|
2539
2656
|
comment?: (string | null) | undefined;
|
|
2540
2657
|
/** Diagnostic receipt for item-level tool mocks */
|
|
2541
|
-
toolMockReport?: (
|
|
2658
|
+
toolMockReport?: (Shared_Type_150 | undefined) | null;
|
|
2542
2659
|
createdAt: Date;
|
|
2543
2660
|
};
|
|
2544
|
-
type
|
|
2661
|
+
type Shared_Type_152 = {
|
|
2545
2662
|
id: string;
|
|
2546
2663
|
status: 'pending' | 'running' | 'suspended' | 'completed' | 'failed' | 'cancelled' | 'timed_out';
|
|
2547
2664
|
toolName: string;
|
|
@@ -2566,7 +2683,7 @@ type Shared_Type_145 = {
|
|
|
2566
2683
|
timeoutMs: number;
|
|
2567
2684
|
suspendPayload?: unknown | undefined;
|
|
2568
2685
|
};
|
|
2569
|
-
type
|
|
2686
|
+
type Shared_Type_153 = {
|
|
2570
2687
|
kind: 'custom';
|
|
2571
2688
|
provider: string;
|
|
2572
2689
|
modelId?: string | undefined;
|
|
@@ -2574,7 +2691,7 @@ type Shared_Type_146 = {
|
|
|
2574
2691
|
provider: string;
|
|
2575
2692
|
modelId?: string | undefined;
|
|
2576
2693
|
};
|
|
2577
|
-
type
|
|
2694
|
+
type Shared_Type_154 = {
|
|
2578
2695
|
kind: 'custom';
|
|
2579
2696
|
provider: string;
|
|
2580
2697
|
modelId: string;
|
|
@@ -2582,13 +2699,13 @@ type Shared_Type_147 = {
|
|
|
2582
2699
|
provider: string;
|
|
2583
2700
|
modelId: string;
|
|
2584
2701
|
};
|
|
2585
|
-
type
|
|
2702
|
+
type Shared_Type_155 = {
|
|
2586
2703
|
behavior?: ('deliver' | 'persist' | 'discard') | undefined;
|
|
2587
2704
|
attributes?: {
|
|
2588
2705
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
2589
2706
|
} | undefined;
|
|
2590
2707
|
};
|
|
2591
|
-
type
|
|
2708
|
+
type Shared_Type_156 = {
|
|
2592
2709
|
behavior?: ('wake' | 'persist' | 'discard') | undefined;
|
|
2593
2710
|
attributes?: {
|
|
2594
2711
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
@@ -2599,7 +2716,7 @@ type Shared_Type_149 = {
|
|
|
2599
2716
|
} | undefined;
|
|
2600
2717
|
} | undefined;
|
|
2601
2718
|
};
|
|
2602
|
-
type
|
|
2719
|
+
type Shared_Type_157 = {
|
|
2603
2720
|
id: string;
|
|
2604
2721
|
agentId: string;
|
|
2605
2722
|
workflowId?: undefined | undefined;
|
|
@@ -2619,8 +2736,8 @@ type Shared_Type_150 = {
|
|
|
2619
2736
|
attributes?: {
|
|
2620
2737
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
2621
2738
|
} | undefined;
|
|
2622
|
-
ifActive?:
|
|
2623
|
-
ifIdle?:
|
|
2739
|
+
ifActive?: Shared_Type_155 | undefined;
|
|
2740
|
+
ifIdle?: Shared_Type_156 | undefined;
|
|
2624
2741
|
providerOptions?: {
|
|
2625
2742
|
[key: string]: unknown;
|
|
2626
2743
|
} | undefined;
|
|
@@ -2630,14 +2747,14 @@ type Shared_Type_150 = {
|
|
|
2630
2747
|
createdAt: number;
|
|
2631
2748
|
updatedAt: number;
|
|
2632
2749
|
};
|
|
2633
|
-
type
|
|
2750
|
+
type Shared_Type_158 = {
|
|
2634
2751
|
status: 'running' | 'success' | 'failed' | 'tripwire' | 'suspended' | 'waiting' | 'pending' | 'canceled' | 'bailed' | 'paused' | 'skipped';
|
|
2635
2752
|
startedAt?: number | undefined;
|
|
2636
2753
|
completedAt?: number | undefined;
|
|
2637
2754
|
durationMs?: number | undefined;
|
|
2638
2755
|
error?: string | undefined;
|
|
2639
2756
|
};
|
|
2640
|
-
type
|
|
2757
|
+
type Shared_Type_159 = {
|
|
2641
2758
|
id: string;
|
|
2642
2759
|
workflowId: string;
|
|
2643
2760
|
agentId?: undefined | undefined;
|
|
@@ -2647,7 +2764,7 @@ type Shared_Type_152 = {
|
|
|
2647
2764
|
nextFireAt: number;
|
|
2648
2765
|
lastFireAt?: number | undefined;
|
|
2649
2766
|
lastRunId?: string | undefined;
|
|
2650
|
-
lastRun?:
|
|
2767
|
+
lastRun?: Shared_Type_158 | undefined;
|
|
2651
2768
|
inputData?: unknown | undefined;
|
|
2652
2769
|
initialState?: unknown | undefined;
|
|
2653
2770
|
requestContext?: {
|
|
@@ -4383,7 +4500,7 @@ export interface GetAuthPermissionPatterns_RouteContract {
|
|
|
4383
4500
|
}
|
|
4384
4501
|
export type GetWorkflows_QueryParams = GetAgents_QueryParams;
|
|
4385
4502
|
export type GetWorkflows_Response = {
|
|
4386
|
-
[key: string]:
|
|
4503
|
+
[key: string]: Shared_Type_59;
|
|
4387
4504
|
};
|
|
4388
4505
|
export type GetWorkflows_Request = Simplify<(never extends never ? {} : {
|
|
4389
4506
|
params: never;
|
|
@@ -4433,7 +4550,7 @@ export type GetWorkflowsWorkflowId_PathParams = {
|
|
|
4433
4550
|
/** Unique identifier for the workflow */
|
|
4434
4551
|
workflowId: string;
|
|
4435
4552
|
};
|
|
4436
|
-
export type GetWorkflowsWorkflowId_Response =
|
|
4553
|
+
export type GetWorkflowsWorkflowId_Response = Shared_Type_59;
|
|
4437
4554
|
export type GetWorkflowsWorkflowId_Request = Simplify<(GetWorkflowsWorkflowId_PathParams extends never ? {} : {
|
|
4438
4555
|
params: GetWorkflowsWorkflowId_PathParams;
|
|
4439
4556
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -4527,9 +4644,7 @@ export type GetWorkflowsWorkflowIdRunsRunId_Response = {
|
|
|
4527
4644
|
activeStepsPath?: {
|
|
4528
4645
|
[key: string]: number[];
|
|
4529
4646
|
} | undefined;
|
|
4530
|
-
serializedStepGraph?:
|
|
4531
|
-
type: 'step' | 'agent' | 'tool' | 'mapping' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach' | 'workflow';
|
|
4532
|
-
}[] | undefined;
|
|
4647
|
+
serializedStepGraph?: Shared_Type_58[] | undefined;
|
|
4533
4648
|
};
|
|
4534
4649
|
export type GetWorkflowsWorkflowIdRunsRunId_Request = Simplify<(GetWorkflowsWorkflowIdRunsRunId_PathParams extends never ? {} : {
|
|
4535
4650
|
params: GetWorkflowsWorkflowIdRunsRunId_PathParams;
|
|
@@ -4692,9 +4807,7 @@ export type PostWorkflowsWorkflowIdStartAsync_Response = {
|
|
|
4692
4807
|
activeStepsPath?: {
|
|
4693
4808
|
[key: string]: number[];
|
|
4694
4809
|
} | undefined;
|
|
4695
|
-
serializedStepGraph?:
|
|
4696
|
-
type: 'step' | 'agent' | 'tool' | 'mapping' | 'sleep' | 'sleepUntil' | 'waitForEvent' | 'parallel' | 'conditional' | 'loop' | 'foreach' | 'workflow';
|
|
4697
|
-
}[] | undefined;
|
|
4810
|
+
serializedStepGraph?: Shared_Type_58[] | undefined;
|
|
4698
4811
|
};
|
|
4699
4812
|
export type PostWorkflowsWorkflowIdStartAsync_Request = Simplify<(PostWorkflowsWorkflowIdStartAsync_PathParams extends never ? {} : {
|
|
4700
4813
|
params: PostWorkflowsWorkflowIdStartAsync_PathParams;
|
|
@@ -5250,7 +5363,7 @@ export interface GetProcessorsProcessorId_RouteContract {
|
|
|
5250
5363
|
export type PostProcessorsProcessorIdExecute_PathParams = GetProcessorsProcessorId_PathParams;
|
|
5251
5364
|
export type PostProcessorsProcessorIdExecute_Body = {
|
|
5252
5365
|
phase: 'input' | 'inputStep' | 'outputStream' | 'outputResult' | 'outputStep' | 'toolResult';
|
|
5253
|
-
messages:
|
|
5366
|
+
messages: Shared_Type_60[];
|
|
5254
5367
|
agentId?: string | undefined;
|
|
5255
5368
|
requestContext?: {
|
|
5256
5369
|
[key: string]: unknown;
|
|
@@ -5259,9 +5372,9 @@ export type PostProcessorsProcessorIdExecute_Body = {
|
|
|
5259
5372
|
export type PostProcessorsProcessorIdExecute_Response = {
|
|
5260
5373
|
success: boolean;
|
|
5261
5374
|
phase: string;
|
|
5262
|
-
messages?:
|
|
5375
|
+
messages?: Shared_Type_60[] | undefined;
|
|
5263
5376
|
messageList?: {
|
|
5264
|
-
messages:
|
|
5377
|
+
messages: Shared_Type_60[];
|
|
5265
5378
|
} | undefined;
|
|
5266
5379
|
tripwire?: {
|
|
5267
5380
|
triggered: boolean;
|
|
@@ -5307,12 +5420,12 @@ export type PostV1Responses_Body = {
|
|
|
5307
5420
|
format: {
|
|
5308
5421
|
/** Requests JSON object output compatibility for the response */
|
|
5309
5422
|
type: 'json_object';
|
|
5310
|
-
} |
|
|
5423
|
+
} | Shared_Type_61;
|
|
5311
5424
|
} | undefined;
|
|
5312
5425
|
/** Optional conversation ID. In Mastra this is the raw threadId. */
|
|
5313
5426
|
conversation_id?: string | undefined;
|
|
5314
5427
|
/** Optional provider-specific options passed through to the underlying model call */
|
|
5315
|
-
providerOptions?:
|
|
5428
|
+
providerOptions?: Shared_Type_62 | undefined;
|
|
5316
5429
|
stream: boolean | undefined;
|
|
5317
5430
|
store: boolean | undefined;
|
|
5318
5431
|
previous_response_id?: string | undefined;
|
|
@@ -5336,7 +5449,7 @@ export type PostV1Responses_Response = {
|
|
|
5336
5449
|
annotations?: unknown[] | undefined;
|
|
5337
5450
|
logprobs?: unknown[] | undefined;
|
|
5338
5451
|
}[];
|
|
5339
|
-
} |
|
|
5452
|
+
} | Shared_Type_63 | {
|
|
5340
5453
|
id: string;
|
|
5341
5454
|
type: 'function_call_output';
|
|
5342
5455
|
call_id: string;
|
|
@@ -5360,11 +5473,11 @@ export type PostV1Responses_Response = {
|
|
|
5360
5473
|
format: {
|
|
5361
5474
|
/** Requests JSON object output compatibility for the response */
|
|
5362
5475
|
type: 'json_object';
|
|
5363
|
-
} |
|
|
5476
|
+
} | Shared_Type_61;
|
|
5364
5477
|
} | null) | undefined;
|
|
5365
5478
|
previous_response_id?: (string | null) | undefined;
|
|
5366
5479
|
conversation_id?: (string | null) | undefined;
|
|
5367
|
-
providerOptions?:
|
|
5480
|
+
providerOptions?: Shared_Type_62 | undefined;
|
|
5368
5481
|
tools?: {
|
|
5369
5482
|
type: 'function';
|
|
5370
5483
|
name: string;
|
|
@@ -5456,7 +5569,7 @@ export type PostV1Conversations_Body = {
|
|
|
5456
5569
|
export type PostV1Conversations_Response = {
|
|
5457
5570
|
id: string;
|
|
5458
5571
|
object: 'conversation';
|
|
5459
|
-
thread:
|
|
5572
|
+
thread: Shared_Type_64;
|
|
5460
5573
|
};
|
|
5461
5574
|
export type PostV1Conversations_Request = Simplify<(never extends never ? {} : {
|
|
5462
5575
|
params: never;
|
|
@@ -5518,7 +5631,7 @@ export type GetV1ConversationsConversationIdItems_Response = {
|
|
|
5518
5631
|
annotations?: unknown[] | undefined;
|
|
5519
5632
|
logprobs?: unknown[] | undefined;
|
|
5520
5633
|
})[];
|
|
5521
|
-
} |
|
|
5634
|
+
} | Shared_Type_63 | {
|
|
5522
5635
|
id: string;
|
|
5523
5636
|
type: 'function_call_output';
|
|
5524
5637
|
call_id: string;
|
|
@@ -5680,8 +5793,8 @@ export type GetMemoryObservationalMemory_QueryParams = {
|
|
|
5680
5793
|
limit?: number | undefined;
|
|
5681
5794
|
};
|
|
5682
5795
|
export type GetMemoryObservationalMemory_Response = {
|
|
5683
|
-
record:
|
|
5684
|
-
history?:
|
|
5796
|
+
record: Shared_Type_66 | null;
|
|
5797
|
+
history?: Shared_Type_66[] | undefined;
|
|
5685
5798
|
};
|
|
5686
5799
|
export type GetMemoryObservationalMemory_Request = Simplify<(never extends never ? {} : {
|
|
5687
5800
|
params: never;
|
|
@@ -5704,7 +5817,7 @@ export interface GetMemoryObservationalMemory_RouteContract {
|
|
|
5704
5817
|
}
|
|
5705
5818
|
export type PostMemoryObservationalMemoryBufferStatus_Body = GetMemoryStatus_QueryParams;
|
|
5706
5819
|
export type PostMemoryObservationalMemoryBufferStatus_Response = {
|
|
5707
|
-
record:
|
|
5820
|
+
record: Shared_Type_66 | null;
|
|
5708
5821
|
};
|
|
5709
5822
|
export type PostMemoryObservationalMemoryBufferStatus_Request = Simplify<(never extends never ? {} : {
|
|
5710
5823
|
params: never;
|
|
@@ -5743,7 +5856,7 @@ export type GetMemoryThreads_Response = {
|
|
|
5743
5856
|
page: number;
|
|
5744
5857
|
perPage: number | false;
|
|
5745
5858
|
hasMore: boolean;
|
|
5746
|
-
threads:
|
|
5859
|
+
threads: Shared_Type_64[];
|
|
5747
5860
|
};
|
|
5748
5861
|
export type GetMemoryThreads_Request = Simplify<(never extends never ? {} : {
|
|
5749
5862
|
params: never;
|
|
@@ -5772,7 +5885,7 @@ export type GetMemoryThreadsThreadId_QueryParams = {
|
|
|
5772
5885
|
agentId?: string | undefined;
|
|
5773
5886
|
resourceId?: string | undefined;
|
|
5774
5887
|
};
|
|
5775
|
-
export type GetMemoryThreadsThreadId_Response =
|
|
5888
|
+
export type GetMemoryThreadsThreadId_Response = Shared_Type_64;
|
|
5776
5889
|
export type GetMemoryThreadsThreadId_Request = Simplify<(GetMemoryThreadsThreadId_PathParams extends never ? {} : {
|
|
5777
5890
|
params: GetMemoryThreadsThreadId_PathParams;
|
|
5778
5891
|
}) & (GetMemoryThreadsThreadId_QueryParams extends never ? {} : {} extends GetMemoryThreadsThreadId_QueryParams ? {
|
|
@@ -5808,7 +5921,7 @@ export type GetMemoryThreadsThreadIdMessages_QueryParams = {
|
|
|
5808
5921
|
withPreviousMessages?: number | undefined;
|
|
5809
5922
|
withNextMessages?: number | undefined;
|
|
5810
5923
|
}[] | undefined;
|
|
5811
|
-
filter?:
|
|
5924
|
+
filter?: Shared_Type_67 | undefined;
|
|
5812
5925
|
includeSystemReminders?: boolean | undefined;
|
|
5813
5926
|
};
|
|
5814
5927
|
export type GetMemoryThreadsThreadIdMessages_Response = {
|
|
@@ -5995,7 +6108,7 @@ export type PostMemoryThreadsThreadIdClone_Body = {
|
|
|
5995
6108
|
} | undefined;
|
|
5996
6109
|
};
|
|
5997
6110
|
export type PostMemoryThreadsThreadIdClone_Response = {
|
|
5998
|
-
thread:
|
|
6111
|
+
thread: Shared_Type_64;
|
|
5999
6112
|
clonedMessages: unknown[];
|
|
6000
6113
|
};
|
|
6001
6114
|
export type PostMemoryThreadsThreadIdClone_Request = Simplify<(PostMemoryThreadsThreadIdClone_PathParams extends never ? {} : {
|
|
@@ -6193,7 +6306,7 @@ export type GetMemoryNetworkThreadsThreadIdMessages_QueryParams = {
|
|
|
6193
6306
|
withPreviousMessages?: number | undefined;
|
|
6194
6307
|
withNextMessages?: number | undefined;
|
|
6195
6308
|
}[] | undefined;
|
|
6196
|
-
filter?:
|
|
6309
|
+
filter?: Shared_Type_67 | undefined;
|
|
6197
6310
|
};
|
|
6198
6311
|
export type GetMemoryNetworkThreadsThreadIdMessages_Response = GetMemoryThreadsThreadIdMessages_Response;
|
|
6199
6312
|
export type GetMemoryNetworkThreadsThreadIdMessages_Request = Simplify<(GetMemoryNetworkThreadsThreadIdMessages_PathParams extends never ? {} : {
|
|
@@ -6327,7 +6440,7 @@ export interface PostMemoryNetworkMessagesDelete_RouteContract {
|
|
|
6327
6440
|
responseType: 'json';
|
|
6328
6441
|
}
|
|
6329
6442
|
export type GetScoresScorers_Response = {
|
|
6330
|
-
[key: string]:
|
|
6443
|
+
[key: string]: Shared_Type_69;
|
|
6331
6444
|
};
|
|
6332
6445
|
export type GetScoresScorers_Request = Simplify<(never extends never ? {} : {
|
|
6333
6446
|
params: never;
|
|
@@ -6352,7 +6465,7 @@ export type GetScoresScorersScorerId_PathParams = {
|
|
|
6352
6465
|
/** Unique identifier for the scorer */
|
|
6353
6466
|
scorerId: string;
|
|
6354
6467
|
};
|
|
6355
|
-
export type GetScoresScorersScorerId_Response =
|
|
6468
|
+
export type GetScoresScorersScorerId_Response = Shared_Type_69 | null;
|
|
6356
6469
|
export type GetScoresScorersScorerId_Request = Simplify<(GetScoresScorersScorerId_PathParams extends never ? {} : {
|
|
6357
6470
|
params: GetScoresScorersScorerId_PathParams;
|
|
6358
6471
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -6483,18 +6596,18 @@ export interface PostScores_RouteContract {
|
|
|
6483
6596
|
responseType: 'json';
|
|
6484
6597
|
}
|
|
6485
6598
|
export type GetObservabilityTraces_QueryParams = {
|
|
6486
|
-
startedAt?: ((
|
|
6487
|
-
endedAt?: ((
|
|
6488
|
-
spanType?: (
|
|
6599
|
+
startedAt?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6600
|
+
endedAt?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6601
|
+
spanType?: (Shared_Type_71 | undefined) | undefined;
|
|
6489
6602
|
/** Filter by trace ID (matches root span) */
|
|
6490
6603
|
traceId?: (string | undefined) | undefined;
|
|
6491
|
-
entityType?: ((
|
|
6604
|
+
entityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6492
6605
|
entityId?: ((string | null) | undefined) | undefined;
|
|
6493
6606
|
entityName?: ((string | null) | undefined) | undefined;
|
|
6494
|
-
parentEntityType?: ((
|
|
6607
|
+
parentEntityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6495
6608
|
parentEntityId?: ((string | null) | undefined) | undefined;
|
|
6496
6609
|
parentEntityName?: ((string | null) | undefined) | undefined;
|
|
6497
|
-
rootEntityType?: ((
|
|
6610
|
+
rootEntityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6498
6611
|
rootEntityId?: ((string | null) | undefined) | undefined;
|
|
6499
6612
|
rootEntityName?: ((string | null) | undefined) | undefined;
|
|
6500
6613
|
userId?: ((string | null) | undefined) | undefined;
|
|
@@ -6520,7 +6633,7 @@ export type GetObservabilityTraces_QueryParams = {
|
|
|
6520
6633
|
tags?: (((string[] | null) | undefined) | undefined) | unknown;
|
|
6521
6634
|
status?: (('success' | 'error' | 'running') | undefined) | undefined;
|
|
6522
6635
|
hasChildError?: (boolean | undefined) | undefined;
|
|
6523
|
-
dateRange?: ((
|
|
6636
|
+
dateRange?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6524
6637
|
name?: (string | undefined) | undefined;
|
|
6525
6638
|
page?: (number | undefined) | undefined;
|
|
6526
6639
|
perPage?: (number | undefined) | undefined;
|
|
@@ -6534,12 +6647,12 @@ export type GetObservabilityTraces_QueryParams = {
|
|
|
6534
6647
|
limit?: (number | undefined) | undefined;
|
|
6535
6648
|
};
|
|
6536
6649
|
export type GetObservabilityTraces_Response = {
|
|
6537
|
-
pagination?:
|
|
6650
|
+
pagination?: Shared_Type_73 | undefined;
|
|
6538
6651
|
/** Incremental polling metadata */
|
|
6539
|
-
delta?:
|
|
6652
|
+
delta?: Shared_Type_74 | undefined;
|
|
6540
6653
|
/** Opaque cursor value for incremental polling */
|
|
6541
6654
|
deltaCursor?: string | undefined;
|
|
6542
|
-
spans:
|
|
6655
|
+
spans: Shared_Type_75[];
|
|
6543
6656
|
};
|
|
6544
6657
|
export type GetObservabilityTraces_Request = Simplify<(never extends never ? {} : {
|
|
6545
6658
|
params: never;
|
|
@@ -6562,12 +6675,12 @@ export interface GetObservabilityTraces_RouteContract {
|
|
|
6562
6675
|
}
|
|
6563
6676
|
export type GetObservabilityTracesLight_QueryParams = GetObservabilityTraces_QueryParams;
|
|
6564
6677
|
export type GetObservabilityTracesLight_Response = {
|
|
6565
|
-
pagination?:
|
|
6678
|
+
pagination?: Shared_Type_73 | undefined;
|
|
6566
6679
|
/** Incremental polling metadata */
|
|
6567
|
-
delta?:
|
|
6680
|
+
delta?: Shared_Type_74 | undefined;
|
|
6568
6681
|
/** Opaque cursor value for incremental polling */
|
|
6569
6682
|
deltaCursor?: string | undefined;
|
|
6570
|
-
spans:
|
|
6683
|
+
spans: Shared_Type_76[];
|
|
6571
6684
|
};
|
|
6572
6685
|
export type GetObservabilityTracesLight_Request = Simplify<(never extends never ? {} : {
|
|
6573
6686
|
params: never;
|
|
@@ -6589,18 +6702,18 @@ export interface GetObservabilityTracesLight_RouteContract {
|
|
|
6589
6702
|
responseType: 'json';
|
|
6590
6703
|
}
|
|
6591
6704
|
export type GetObservabilityBranches_QueryParams = {
|
|
6592
|
-
startedAt?: ((
|
|
6593
|
-
endedAt?: ((
|
|
6594
|
-
spanType?: (
|
|
6705
|
+
startedAt?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6706
|
+
endedAt?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6707
|
+
spanType?: (Shared_Type_71 | undefined) | undefined;
|
|
6595
6708
|
/** Filter by parent trace ID */
|
|
6596
6709
|
traceId?: (string | undefined) | undefined;
|
|
6597
|
-
entityType?: ((
|
|
6710
|
+
entityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6598
6711
|
entityId?: ((string | null) | undefined) | undefined;
|
|
6599
6712
|
entityName?: ((string | null) | undefined) | undefined;
|
|
6600
|
-
parentEntityType?: ((
|
|
6713
|
+
parentEntityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6601
6714
|
parentEntityId?: ((string | null) | undefined) | undefined;
|
|
6602
6715
|
parentEntityName?: ((string | null) | undefined) | undefined;
|
|
6603
|
-
rootEntityType?: ((
|
|
6716
|
+
rootEntityType?: ((Shared_Type_72 | null) | undefined) | undefined;
|
|
6604
6717
|
rootEntityId?: ((string | null) | undefined) | undefined;
|
|
6605
6718
|
rootEntityName?: ((string | null) | undefined) | undefined;
|
|
6606
6719
|
userId?: ((string | null) | undefined) | undefined;
|
|
@@ -6637,12 +6750,12 @@ export type GetObservabilityBranches_QueryParams = {
|
|
|
6637
6750
|
limit?: (number | undefined) | undefined;
|
|
6638
6751
|
};
|
|
6639
6752
|
export type GetObservabilityBranches_Response = {
|
|
6640
|
-
pagination?:
|
|
6753
|
+
pagination?: Shared_Type_73 | undefined;
|
|
6641
6754
|
/** Incremental polling metadata */
|
|
6642
|
-
delta?:
|
|
6755
|
+
delta?: Shared_Type_74 | undefined;
|
|
6643
6756
|
/** Opaque cursor value for incremental polling */
|
|
6644
6757
|
deltaCursor?: string | undefined;
|
|
6645
|
-
branches:
|
|
6758
|
+
branches: Shared_Type_75[];
|
|
6646
6759
|
};
|
|
6647
6760
|
export type GetObservabilityBranches_Request = Simplify<(never extends never ? {} : {
|
|
6648
6761
|
params: never;
|
|
@@ -6676,7 +6789,7 @@ export type GetObservabilityTracesTraceIdBranchesSpanId_QueryParams = {
|
|
|
6676
6789
|
export type GetObservabilityTracesTraceIdBranchesSpanId_Response = {
|
|
6677
6790
|
/** Unique trace identifier */
|
|
6678
6791
|
traceId: string;
|
|
6679
|
-
spans:
|
|
6792
|
+
spans: Shared_Type_77[];
|
|
6680
6793
|
};
|
|
6681
6794
|
export type GetObservabilityTracesTraceIdBranchesSpanId_Request = Simplify<(GetObservabilityTracesTraceIdBranchesSpanId_PathParams extends never ? {} : {
|
|
6682
6795
|
params: GetObservabilityTracesTraceIdBranchesSpanId_PathParams;
|
|
@@ -6704,7 +6817,7 @@ export type GetObservabilityTracesTraceId_PathParams = {
|
|
|
6704
6817
|
export type GetObservabilityTracesTraceId_Response = {
|
|
6705
6818
|
/** Unique trace identifier */
|
|
6706
6819
|
traceId: string;
|
|
6707
|
-
spans:
|
|
6820
|
+
spans: Shared_Type_75[];
|
|
6708
6821
|
};
|
|
6709
6822
|
export type GetObservabilityTracesTraceId_Request = Simplify<(GetObservabilityTracesTraceId_PathParams extends never ? {} : {
|
|
6710
6823
|
params: GetObservabilityTracesTraceId_PathParams;
|
|
@@ -6729,7 +6842,7 @@ export type GetObservabilityTracesTraceIdLight_PathParams = GetObservabilityTrac
|
|
|
6729
6842
|
export type GetObservabilityTracesTraceIdLight_Response = {
|
|
6730
6843
|
/** Unique trace identifier */
|
|
6731
6844
|
traceId: string;
|
|
6732
|
-
spans:
|
|
6845
|
+
spans: Shared_Type_76[];
|
|
6733
6846
|
};
|
|
6734
6847
|
export type GetObservabilityTracesTraceIdLight_Request = Simplify<(GetObservabilityTracesTraceIdLight_PathParams extends never ? {} : {
|
|
6735
6848
|
params: GetObservabilityTracesTraceIdLight_PathParams;
|
|
@@ -6753,7 +6866,7 @@ export interface GetObservabilityTracesTraceIdLight_RouteContract {
|
|
|
6753
6866
|
export type GetObservabilityTracesTraceIdSpansSpanId_PathParams = GetObservabilityTracesTraceIdBranchesSpanId_PathParams;
|
|
6754
6867
|
export type GetObservabilityTracesTraceIdSpansSpanId_Response = {
|
|
6755
6868
|
/** Span record data */
|
|
6756
|
-
span:
|
|
6869
|
+
span: Shared_Type_77;
|
|
6757
6870
|
};
|
|
6758
6871
|
export type GetObservabilityTracesTraceIdSpansSpanId_Request = Simplify<(GetObservabilityTracesTraceIdSpansSpanId_PathParams extends never ? {} : {
|
|
6759
6872
|
params: GetObservabilityTracesTraceIdSpansSpanId_PathParams;
|
|
@@ -6841,7 +6954,7 @@ export type GetObservabilityTracesTraceIdSpanIdScores_QueryParams = {
|
|
|
6841
6954
|
perPage?: (number | undefined) | undefined;
|
|
6842
6955
|
};
|
|
6843
6956
|
export type GetObservabilityTracesTraceIdSpanIdScores_Response = {
|
|
6844
|
-
pagination:
|
|
6957
|
+
pagination: Shared_Type_73;
|
|
6845
6958
|
scores: {
|
|
6846
6959
|
id: string;
|
|
6847
6960
|
scorerId: string;
|
|
@@ -6876,7 +6989,7 @@ export type GetObservabilityTracesTraceIdSpanIdScores_Response = {
|
|
|
6876
6989
|
entity: {
|
|
6877
6990
|
[key: string]: unknown;
|
|
6878
6991
|
};
|
|
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;
|
|
6992
|
+
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
6993
|
structuredOutput?: boolean | undefined;
|
|
6881
6994
|
traceId?: string | undefined;
|
|
6882
6995
|
spanId?: string | undefined;
|
|
@@ -6918,13 +7031,74 @@ export interface GetObservabilityTracesTraceIdSpanIdScores_RouteContract {
|
|
|
6918
7031
|
response: GetObservabilityTracesTraceIdSpanIdScores_Response;
|
|
6919
7032
|
responseType: 'json';
|
|
6920
7033
|
}
|
|
7034
|
+
export type PostObservabilityTracesQuery_Body = {
|
|
7035
|
+
timeRange: {
|
|
7036
|
+
from: string;
|
|
7037
|
+
to: string;
|
|
7038
|
+
};
|
|
7039
|
+
where?: Shared_Auxiliary_587 | undefined;
|
|
7040
|
+
group?: {
|
|
7041
|
+
by: ['threadId'];
|
|
7042
|
+
} | undefined;
|
|
7043
|
+
orderBy?: {
|
|
7044
|
+
field: 'startedAt' | 'endedAt';
|
|
7045
|
+
direction: 'asc' | 'desc';
|
|
7046
|
+
}[] | undefined;
|
|
7047
|
+
page: {
|
|
7048
|
+
limit: number;
|
|
7049
|
+
after?: (string | null) | undefined;
|
|
7050
|
+
};
|
|
7051
|
+
};
|
|
7052
|
+
export type PostObservabilityTracesQuery_Response = {
|
|
7053
|
+
traces: {
|
|
7054
|
+
traceId: string;
|
|
7055
|
+
rootSpanId: string;
|
|
7056
|
+
threadId: string | null;
|
|
7057
|
+
resourceId: string | null;
|
|
7058
|
+
startedAt: string;
|
|
7059
|
+
endedAt: string;
|
|
7060
|
+
entityName: string | null;
|
|
7061
|
+
entityType: string | null;
|
|
7062
|
+
environment: string | null;
|
|
7063
|
+
status: 'success' | 'error';
|
|
7064
|
+
}[];
|
|
7065
|
+
page: {
|
|
7066
|
+
next: string | null;
|
|
7067
|
+
};
|
|
7068
|
+
} | {
|
|
7069
|
+
groups: {
|
|
7070
|
+
threadId: string;
|
|
7071
|
+
}[];
|
|
7072
|
+
page: {
|
|
7073
|
+
next: string | null;
|
|
7074
|
+
};
|
|
7075
|
+
};
|
|
7076
|
+
export type PostObservabilityTracesQuery_Request = Simplify<(never extends never ? {} : {
|
|
7077
|
+
params: never;
|
|
7078
|
+
}) & (never extends never ? {} : {} extends never ? {
|
|
7079
|
+
query?: never;
|
|
7080
|
+
} : {
|
|
7081
|
+
query: never;
|
|
7082
|
+
}) & (PostObservabilityTracesQuery_Body extends never ? {} : {} extends PostObservabilityTracesQuery_Body ? {
|
|
7083
|
+
body?: PostObservabilityTracesQuery_Body;
|
|
7084
|
+
} : {
|
|
7085
|
+
body: PostObservabilityTracesQuery_Body;
|
|
7086
|
+
})>;
|
|
7087
|
+
export interface PostObservabilityTracesQuery_RouteContract {
|
|
7088
|
+
pathParams: never;
|
|
7089
|
+
queryParams: never;
|
|
7090
|
+
body: PostObservabilityTracesQuery_Body;
|
|
7091
|
+
request: PostObservabilityTracesQuery_Request;
|
|
7092
|
+
response: PostObservabilityTracesQuery_Response;
|
|
7093
|
+
responseType: 'json';
|
|
7094
|
+
}
|
|
6921
7095
|
export type GetObservabilityMetrics_QueryParams = {
|
|
6922
|
-
timestamp?: ((
|
|
7096
|
+
timestamp?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
6923
7097
|
/** Filter by trace ID */
|
|
6924
7098
|
traceId?: (string | undefined) | undefined;
|
|
6925
7099
|
/** Filter by span ID */
|
|
6926
7100
|
spanId?: (string | undefined) | undefined;
|
|
6927
|
-
entityType?: (
|
|
7101
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
6928
7102
|
entityName?: (string | undefined) | undefined;
|
|
6929
7103
|
entityVersionId?: (string | undefined) | undefined;
|
|
6930
7104
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -6934,9 +7108,9 @@ export type GetObservabilityMetrics_QueryParams = {
|
|
|
6934
7108
|
experimentId?: (string | undefined) | undefined;
|
|
6935
7109
|
serviceName?: (string | undefined) | undefined;
|
|
6936
7110
|
environment?: (string | undefined) | undefined;
|
|
6937
|
-
parentEntityType?: (
|
|
7111
|
+
parentEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
6938
7112
|
parentEntityName?: (string | undefined) | undefined;
|
|
6939
|
-
rootEntityType?: (
|
|
7113
|
+
rootEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
6940
7114
|
rootEntityName?: (string | undefined) | undefined;
|
|
6941
7115
|
resourceId?: (string | undefined) | undefined;
|
|
6942
7116
|
runId?: (string | undefined) | undefined;
|
|
@@ -6967,9 +7141,9 @@ export type GetObservabilityMetrics_QueryParams = {
|
|
|
6967
7141
|
limit?: (number | undefined) | undefined;
|
|
6968
7142
|
};
|
|
6969
7143
|
export type GetObservabilityMetrics_Response = {
|
|
6970
|
-
pagination?:
|
|
7144
|
+
pagination?: Shared_Type_73 | undefined;
|
|
6971
7145
|
/** Incremental polling metadata */
|
|
6972
|
-
delta?:
|
|
7146
|
+
delta?: Shared_Type_74 | undefined;
|
|
6973
7147
|
/** Opaque cursor value for incremental polling */
|
|
6974
7148
|
deltaCursor?: string | undefined;
|
|
6975
7149
|
metrics: {
|
|
@@ -6983,13 +7157,13 @@ export type GetObservabilityMetrics_Response = {
|
|
|
6983
7157
|
value: number;
|
|
6984
7158
|
traceId?: (string | null) | undefined;
|
|
6985
7159
|
spanId?: (string | null) | undefined;
|
|
6986
|
-
entityType?: (
|
|
7160
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
6987
7161
|
entityId?: (string | null) | undefined;
|
|
6988
7162
|
entityName?: (string | null) | undefined;
|
|
6989
|
-
parentEntityType?: (
|
|
7163
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
6990
7164
|
parentEntityId?: (string | null) | undefined;
|
|
6991
7165
|
parentEntityName?: (string | null) | undefined;
|
|
6992
|
-
rootEntityType?: (
|
|
7166
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
6993
7167
|
rootEntityId?: (string | null) | undefined;
|
|
6994
7168
|
rootEntityName?: (string | null) | undefined;
|
|
6995
7169
|
userId?: (string | null) | undefined;
|
|
@@ -7048,12 +7222,12 @@ export interface GetObservabilityMetrics_RouteContract {
|
|
|
7048
7222
|
responseType: 'json';
|
|
7049
7223
|
}
|
|
7050
7224
|
export type GetObservabilityLogs_QueryParams = {
|
|
7051
|
-
timestamp?: ((
|
|
7225
|
+
timestamp?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
7052
7226
|
/** Filter by trace ID */
|
|
7053
7227
|
traceId?: (string | undefined) | undefined;
|
|
7054
7228
|
/** Filter by span ID */
|
|
7055
7229
|
spanId?: (string | undefined) | undefined;
|
|
7056
|
-
entityType?: (
|
|
7230
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7057
7231
|
entityName?: (string | undefined) | undefined;
|
|
7058
7232
|
entityVersionId?: (string | undefined) | undefined;
|
|
7059
7233
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -7063,9 +7237,9 @@ export type GetObservabilityLogs_QueryParams = {
|
|
|
7063
7237
|
experimentId?: (string | undefined) | undefined;
|
|
7064
7238
|
serviceName?: (string | undefined) | undefined;
|
|
7065
7239
|
environment?: (string | undefined) | undefined;
|
|
7066
|
-
parentEntityType?: (
|
|
7240
|
+
parentEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7067
7241
|
parentEntityName?: (string | undefined) | undefined;
|
|
7068
|
-
rootEntityType?: (
|
|
7242
|
+
rootEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7069
7243
|
rootEntityName?: (string | undefined) | undefined;
|
|
7070
7244
|
resourceId?: (string | undefined) | undefined;
|
|
7071
7245
|
runId?: (string | undefined) | undefined;
|
|
@@ -7090,9 +7264,9 @@ export type GetObservabilityLogs_QueryParams = {
|
|
|
7090
7264
|
limit?: (number | undefined) | undefined;
|
|
7091
7265
|
};
|
|
7092
7266
|
export type GetObservabilityLogs_Response = {
|
|
7093
|
-
pagination?:
|
|
7267
|
+
pagination?: Shared_Type_73 | undefined;
|
|
7094
7268
|
/** Incremental polling metadata */
|
|
7095
|
-
delta?:
|
|
7269
|
+
delta?: Shared_Type_74 | undefined;
|
|
7096
7270
|
/** Opaque cursor value for incremental polling */
|
|
7097
7271
|
deltaCursor?: string | undefined;
|
|
7098
7272
|
logs: {
|
|
@@ -7109,13 +7283,13 @@ export type GetObservabilityLogs_Response = {
|
|
|
7109
7283
|
} | null) | undefined;
|
|
7110
7284
|
traceId?: (string | null) | undefined;
|
|
7111
7285
|
spanId?: (string | null) | undefined;
|
|
7112
|
-
entityType?: (
|
|
7286
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
7113
7287
|
entityId?: (string | null) | undefined;
|
|
7114
7288
|
entityName?: (string | null) | undefined;
|
|
7115
|
-
parentEntityType?: (
|
|
7289
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7116
7290
|
parentEntityId?: (string | null) | undefined;
|
|
7117
7291
|
parentEntityName?: (string | null) | undefined;
|
|
7118
|
-
rootEntityType?: (
|
|
7292
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7119
7293
|
rootEntityId?: (string | null) | undefined;
|
|
7120
7294
|
rootEntityName?: (string | null) | undefined;
|
|
7121
7295
|
userId?: (string | null) | undefined;
|
|
@@ -7163,12 +7337,12 @@ export interface GetObservabilityLogs_RouteContract {
|
|
|
7163
7337
|
responseType: 'json';
|
|
7164
7338
|
}
|
|
7165
7339
|
export type GetObservabilityScores_QueryParams = {
|
|
7166
|
-
timestamp?: ((
|
|
7340
|
+
timestamp?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
7167
7341
|
/** Filter by trace ID */
|
|
7168
7342
|
traceId?: (string | undefined) | undefined;
|
|
7169
7343
|
/** Filter by span ID */
|
|
7170
7344
|
spanId?: (string | undefined) | undefined;
|
|
7171
|
-
entityType?: (
|
|
7345
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7172
7346
|
entityName?: (string | undefined) | undefined;
|
|
7173
7347
|
entityVersionId?: (string | undefined) | undefined;
|
|
7174
7348
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -7178,9 +7352,9 @@ export type GetObservabilityScores_QueryParams = {
|
|
|
7178
7352
|
experimentId?: (string | undefined) | undefined;
|
|
7179
7353
|
serviceName?: (string | undefined) | undefined;
|
|
7180
7354
|
environment?: (string | undefined) | undefined;
|
|
7181
|
-
parentEntityType?: (
|
|
7355
|
+
parentEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7182
7356
|
parentEntityName?: (string | undefined) | undefined;
|
|
7183
|
-
rootEntityType?: (
|
|
7357
|
+
rootEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7184
7358
|
rootEntityName?: (string | undefined) | undefined;
|
|
7185
7359
|
resourceId?: (string | undefined) | undefined;
|
|
7186
7360
|
runId?: (string | undefined) | undefined;
|
|
@@ -7210,12 +7384,12 @@ export type GetObservabilityScores_QueryParams = {
|
|
|
7210
7384
|
limit?: (number | undefined) | undefined;
|
|
7211
7385
|
};
|
|
7212
7386
|
export type GetObservabilityScores_Response = {
|
|
7213
|
-
pagination?:
|
|
7387
|
+
pagination?: Shared_Type_73 | undefined;
|
|
7214
7388
|
/** Incremental polling metadata */
|
|
7215
|
-
delta?:
|
|
7389
|
+
delta?: Shared_Type_74 | undefined;
|
|
7216
7390
|
/** Opaque cursor value for incremental polling */
|
|
7217
7391
|
deltaCursor?: string | undefined;
|
|
7218
|
-
scores:
|
|
7392
|
+
scores: Shared_Type_78[];
|
|
7219
7393
|
};
|
|
7220
7394
|
export type GetObservabilityScores_Request = Simplify<(never extends never ? {} : {
|
|
7221
7395
|
params: never;
|
|
@@ -7253,13 +7427,13 @@ export type PostObservabilityScores_Body = {
|
|
|
7253
7427
|
/** Score value (range defined by scorer) */
|
|
7254
7428
|
score: number;
|
|
7255
7429
|
reason?: (string | null) | undefined;
|
|
7256
|
-
entityType?: (
|
|
7430
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
7257
7431
|
entityId?: (string | null) | undefined;
|
|
7258
7432
|
entityName?: (string | null) | undefined;
|
|
7259
|
-
parentEntityType?: (
|
|
7433
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7260
7434
|
parentEntityId?: (string | null) | undefined;
|
|
7261
7435
|
parentEntityName?: (string | null) | undefined;
|
|
7262
|
-
rootEntityType?: (
|
|
7436
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7263
7437
|
rootEntityId?: (string | null) | undefined;
|
|
7264
7438
|
rootEntityName?: (string | null) | undefined;
|
|
7265
7439
|
userId?: (string | null) | undefined;
|
|
@@ -7313,7 +7487,7 @@ export type GetObservabilityScoresScoreId_PathParams = {
|
|
|
7313
7487
|
};
|
|
7314
7488
|
export type GetObservabilityScoresScoreId_Response = {
|
|
7315
7489
|
/** Score record as stored in the database */
|
|
7316
|
-
score:
|
|
7490
|
+
score: Shared_Type_78 | null;
|
|
7317
7491
|
};
|
|
7318
7492
|
export type GetObservabilityScoresScoreId_Request = Simplify<(GetObservabilityScoresScoreId_PathParams extends never ? {} : {
|
|
7319
7493
|
params: GetObservabilityScoresScoreId_PathParams;
|
|
@@ -7342,7 +7516,7 @@ export type PostObservabilityScoresAggregate_Body = {
|
|
|
7342
7516
|
/** Aggregation function */
|
|
7343
7517
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7344
7518
|
/** Filters for querying scores */
|
|
7345
|
-
filters?:
|
|
7519
|
+
filters?: Shared_Type_79 | undefined;
|
|
7346
7520
|
/** Comparison period for aggregate queries */
|
|
7347
7521
|
comparePeriod?: ('previous_period' | 'previous_day' | 'previous_week') | undefined;
|
|
7348
7522
|
};
|
|
@@ -7383,7 +7557,7 @@ export type PostObservabilityScoresBreakdown_Body = {
|
|
|
7383
7557
|
/** Aggregation function */
|
|
7384
7558
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7385
7559
|
/** Filters for querying scores */
|
|
7386
|
-
filters?:
|
|
7560
|
+
filters?: Shared_Type_79 | undefined;
|
|
7387
7561
|
};
|
|
7388
7562
|
export type PostObservabilityScoresBreakdown_Response = {
|
|
7389
7563
|
groups: {
|
|
@@ -7424,7 +7598,7 @@ export type PostObservabilityScoresTimeseries_Body = {
|
|
|
7424
7598
|
/** Aggregation function */
|
|
7425
7599
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7426
7600
|
/** Filters for querying scores */
|
|
7427
|
-
filters?:
|
|
7601
|
+
filters?: Shared_Type_79 | undefined;
|
|
7428
7602
|
/** Fields to group by */
|
|
7429
7603
|
groupBy?: string[] | undefined;
|
|
7430
7604
|
};
|
|
@@ -7469,7 +7643,7 @@ export type PostObservabilityScoresPercentiles_Body = {
|
|
|
7469
7643
|
/** Time bucket interval */
|
|
7470
7644
|
interval: '1m' | '5m' | '15m' | '1h' | '1d';
|
|
7471
7645
|
/** Filters for querying scores */
|
|
7472
|
-
filters?:
|
|
7646
|
+
filters?: Shared_Type_79 | undefined;
|
|
7473
7647
|
};
|
|
7474
7648
|
export type PostObservabilityScoresPercentiles_Response = {
|
|
7475
7649
|
series: {
|
|
@@ -7503,12 +7677,12 @@ export interface PostObservabilityScoresPercentiles_RouteContract {
|
|
|
7503
7677
|
responseType: 'json';
|
|
7504
7678
|
}
|
|
7505
7679
|
export type GetObservabilityFeedback_QueryParams = {
|
|
7506
|
-
timestamp?: ((
|
|
7680
|
+
timestamp?: ((Shared_Type_70 | undefined) | undefined) | unknown;
|
|
7507
7681
|
/** Filter by trace ID */
|
|
7508
7682
|
traceId?: (string | undefined) | undefined;
|
|
7509
7683
|
/** Filter by span ID */
|
|
7510
7684
|
spanId?: (string | undefined) | undefined;
|
|
7511
|
-
entityType?: (
|
|
7685
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7512
7686
|
entityName?: (string | undefined) | undefined;
|
|
7513
7687
|
entityVersionId?: (string | undefined) | undefined;
|
|
7514
7688
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -7518,9 +7692,9 @@ export type GetObservabilityFeedback_QueryParams = {
|
|
|
7518
7692
|
experimentId?: (string | undefined) | undefined;
|
|
7519
7693
|
serviceName?: (string | undefined) | undefined;
|
|
7520
7694
|
environment?: (string | undefined) | undefined;
|
|
7521
|
-
parentEntityType?: (
|
|
7695
|
+
parentEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7522
7696
|
parentEntityName?: (string | undefined) | undefined;
|
|
7523
|
-
rootEntityType?: (
|
|
7697
|
+
rootEntityType?: (Shared_Type_72 | undefined) | undefined;
|
|
7524
7698
|
rootEntityName?: (string | undefined) | undefined;
|
|
7525
7699
|
resourceId?: (string | undefined) | undefined;
|
|
7526
7700
|
runId?: (string | undefined) | undefined;
|
|
@@ -7547,12 +7721,12 @@ export type GetObservabilityFeedback_QueryParams = {
|
|
|
7547
7721
|
limit?: (number | undefined) | undefined;
|
|
7548
7722
|
};
|
|
7549
7723
|
export type GetObservabilityFeedback_Response = {
|
|
7550
|
-
pagination?:
|
|
7724
|
+
pagination?: Shared_Type_73 | undefined;
|
|
7551
7725
|
/** Incremental polling metadata */
|
|
7552
|
-
delta?:
|
|
7726
|
+
delta?: Shared_Type_74 | undefined;
|
|
7553
7727
|
/** Opaque cursor value for incremental polling */
|
|
7554
7728
|
deltaCursor?: string | undefined;
|
|
7555
|
-
feedback:
|
|
7729
|
+
feedback: Shared_Type_80[];
|
|
7556
7730
|
};
|
|
7557
7731
|
export type GetObservabilityFeedback_Request = Simplify<(never extends never ? {} : {
|
|
7558
7732
|
params: never;
|
|
@@ -7589,13 +7763,13 @@ export type PostObservabilityFeedback_Body = {
|
|
|
7589
7763
|
value: number | string;
|
|
7590
7764
|
comment?: (string | null) | undefined;
|
|
7591
7765
|
feedbackUserId?: (string | null) | undefined;
|
|
7592
|
-
entityType?: (
|
|
7766
|
+
entityType?: (Shared_Type_72 | null) | undefined;
|
|
7593
7767
|
entityId?: (string | null) | undefined;
|
|
7594
7768
|
entityName?: (string | null) | undefined;
|
|
7595
|
-
parentEntityType?: (
|
|
7769
|
+
parentEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7596
7770
|
parentEntityId?: (string | null) | undefined;
|
|
7597
7771
|
parentEntityName?: (string | null) | undefined;
|
|
7598
|
-
rootEntityType?: (
|
|
7772
|
+
rootEntityType?: (Shared_Type_72 | null) | undefined;
|
|
7599
7773
|
rootEntityId?: (string | null) | undefined;
|
|
7600
7774
|
rootEntityName?: (string | null) | undefined;
|
|
7601
7775
|
userId?: (string | null) | undefined;
|
|
@@ -7652,7 +7826,7 @@ export type PatchObservabilityFeedbackFeedbackIdReviewStatus_PathParams = {
|
|
|
7652
7826
|
export type PatchObservabilityFeedbackFeedbackIdReviewStatus_Body = {
|
|
7653
7827
|
reviewStatus: 'needs-review' | 'reviewed';
|
|
7654
7828
|
};
|
|
7655
|
-
export type PatchObservabilityFeedbackFeedbackIdReviewStatus_Response =
|
|
7829
|
+
export type PatchObservabilityFeedbackFeedbackIdReviewStatus_Response = Shared_Type_80;
|
|
7656
7830
|
export type PatchObservabilityFeedbackFeedbackIdReviewStatus_Request = Simplify<(PatchObservabilityFeedbackFeedbackIdReviewStatus_PathParams extends never ? {} : {
|
|
7657
7831
|
params: PatchObservabilityFeedbackFeedbackIdReviewStatus_PathParams;
|
|
7658
7832
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -7680,7 +7854,7 @@ export type PostObservabilityFeedbackAggregate_Body = {
|
|
|
7680
7854
|
/** Aggregation function */
|
|
7681
7855
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7682
7856
|
/** Filters for querying feedback */
|
|
7683
|
-
filters?:
|
|
7857
|
+
filters?: Shared_Type_81 | undefined;
|
|
7684
7858
|
/** Comparison period for aggregate queries */
|
|
7685
7859
|
comparePeriod?: ('previous_period' | 'previous_day' | 'previous_week') | undefined;
|
|
7686
7860
|
};
|
|
@@ -7714,7 +7888,7 @@ export type PostObservabilityFeedbackBreakdown_Body = {
|
|
|
7714
7888
|
/** Aggregation function */
|
|
7715
7889
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7716
7890
|
/** Filters for querying feedback */
|
|
7717
|
-
filters?:
|
|
7891
|
+
filters?: Shared_Type_81 | undefined;
|
|
7718
7892
|
};
|
|
7719
7893
|
export type PostObservabilityFeedbackBreakdown_Response = PostObservabilityScoresBreakdown_Response;
|
|
7720
7894
|
export type PostObservabilityFeedbackBreakdown_Request = Simplify<(never extends never ? {} : {
|
|
@@ -7746,7 +7920,7 @@ export type PostObservabilityFeedbackTimeseries_Body = {
|
|
|
7746
7920
|
/** Aggregation function */
|
|
7747
7921
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7748
7922
|
/** Filters for querying feedback */
|
|
7749
|
-
filters?:
|
|
7923
|
+
filters?: Shared_Type_81 | undefined;
|
|
7750
7924
|
/** Fields to group by */
|
|
7751
7925
|
groupBy?: string[] | undefined;
|
|
7752
7926
|
};
|
|
@@ -7791,7 +7965,7 @@ export type PostObservabilityFeedbackPercentiles_Body = {
|
|
|
7791
7965
|
/** Time bucket interval */
|
|
7792
7966
|
interval: '1m' | '5m' | '15m' | '1h' | '1d';
|
|
7793
7967
|
/** Filters for querying feedback */
|
|
7794
|
-
filters?:
|
|
7968
|
+
filters?: Shared_Type_81 | undefined;
|
|
7795
7969
|
};
|
|
7796
7970
|
export type PostObservabilityFeedbackPercentiles_Response = PostObservabilityScoresPercentiles_Response;
|
|
7797
7971
|
export type PostObservabilityFeedbackPercentiles_Request = Simplify<(never extends never ? {} : {
|
|
@@ -7819,9 +7993,9 @@ export type PostObservabilityMetricsAggregate_Body = {
|
|
|
7819
7993
|
/** Aggregation function */
|
|
7820
7994
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7821
7995
|
/** Column to apply count_distinct over (required when aggregation is 'count_distinct'). Restricted to allowlisted metric dimensions. */
|
|
7822
|
-
distinctColumn?:
|
|
7996
|
+
distinctColumn?: Shared_Type_82 | undefined;
|
|
7823
7997
|
/** Filters for querying metrics */
|
|
7824
|
-
filters?:
|
|
7998
|
+
filters?: Shared_Type_83 | undefined;
|
|
7825
7999
|
/** Comparison period for aggregate queries */
|
|
7826
8000
|
comparePeriod?: ('previous_period' | 'previous_day' | 'previous_week') | undefined;
|
|
7827
8001
|
};
|
|
@@ -7868,9 +8042,9 @@ export type PostObservabilityMetricsBreakdown_Body = {
|
|
|
7868
8042
|
/** Aggregation function */
|
|
7869
8043
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7870
8044
|
/** Column to apply count_distinct over (required when aggregation is 'count_distinct'). Restricted to allowlisted metric dimensions. */
|
|
7871
|
-
distinctColumn?:
|
|
8045
|
+
distinctColumn?: Shared_Type_82 | undefined;
|
|
7872
8046
|
/** Filters for querying metrics */
|
|
7873
|
-
filters?:
|
|
8047
|
+
filters?: Shared_Type_83 | undefined;
|
|
7874
8048
|
/** Maximum number of groups to return (server-side TopK). Required for high-cardinality groupBy. */
|
|
7875
8049
|
limit?: number | undefined;
|
|
7876
8050
|
/** Sort direction for the aggregated value (defaults to 'DESC' at the storage layer; pairs with limit for top/bottom-N). */
|
|
@@ -7917,9 +8091,9 @@ export type PostObservabilityMetricsTimeseries_Body = {
|
|
|
7917
8091
|
/** Aggregation function */
|
|
7918
8092
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7919
8093
|
/** Column to apply count_distinct over (required when aggregation is 'count_distinct'). Restricted to allowlisted metric dimensions. */
|
|
7920
|
-
distinctColumn?:
|
|
8094
|
+
distinctColumn?: Shared_Type_82 | undefined;
|
|
7921
8095
|
/** Filters for querying metrics */
|
|
7922
|
-
filters?:
|
|
8096
|
+
filters?: Shared_Type_83 | undefined;
|
|
7923
8097
|
/** Fields to group by */
|
|
7924
8098
|
groupBy?: string[] | undefined;
|
|
7925
8099
|
};
|
|
@@ -7966,7 +8140,7 @@ export type PostObservabilityMetricsPercentiles_Body = {
|
|
|
7966
8140
|
/** Time bucket interval */
|
|
7967
8141
|
interval: '1m' | '5m' | '15m' | '1h' | '1d';
|
|
7968
8142
|
/** Filters for querying metrics */
|
|
7969
|
-
filters?:
|
|
8143
|
+
filters?: Shared_Type_83 | undefined;
|
|
7970
8144
|
};
|
|
7971
8145
|
export type PostObservabilityMetricsPercentiles_Response = PostObservabilityScoresPercentiles_Response;
|
|
7972
8146
|
export type PostObservabilityMetricsPercentiles_Request = Simplify<(never extends never ? {} : {
|
|
@@ -8079,7 +8253,7 @@ export interface GetObservabilityDiscoveryMetricLabelValues_RouteContract {
|
|
|
8079
8253
|
}
|
|
8080
8254
|
export type GetObservabilityDiscoveryEntityTypes_Response = {
|
|
8081
8255
|
/** Distinct entity types */
|
|
8082
|
-
entityTypes:
|
|
8256
|
+
entityTypes: Shared_Type_72[];
|
|
8083
8257
|
};
|
|
8084
8258
|
export type GetObservabilityDiscoveryEntityTypes_Request = Simplify<(never extends never ? {} : {
|
|
8085
8259
|
params: never;
|
|
@@ -8102,7 +8276,7 @@ export interface GetObservabilityDiscoveryEntityTypes_RouteContract {
|
|
|
8102
8276
|
}
|
|
8103
8277
|
export type GetObservabilityDiscoveryEntityNames_QueryParams = {
|
|
8104
8278
|
/** Optional entity type filter */
|
|
8105
|
-
entityType?: (
|
|
8279
|
+
entityType?: (Shared_Type_72 | undefined) | undefined;
|
|
8106
8280
|
};
|
|
8107
8281
|
export type GetObservabilityDiscoveryEntityNames_Response = {
|
|
8108
8282
|
/** Distinct entity names */
|
|
@@ -8570,12 +8744,12 @@ export type PostA2aAgentId_Body = {
|
|
|
8570
8744
|
jsonrpc: '2.0';
|
|
8571
8745
|
id: string | number;
|
|
8572
8746
|
method: 'message/send';
|
|
8573
|
-
params:
|
|
8747
|
+
params: Shared_Type_94;
|
|
8574
8748
|
} | {
|
|
8575
8749
|
jsonrpc: '2.0';
|
|
8576
8750
|
id: string | number;
|
|
8577
8751
|
method: 'message/stream';
|
|
8578
|
-
params:
|
|
8752
|
+
params: Shared_Type_94;
|
|
8579
8753
|
} | {
|
|
8580
8754
|
jsonrpc: '2.0';
|
|
8581
8755
|
id: string | number;
|
|
@@ -8632,7 +8806,7 @@ export type PostA2aAgentId_Body = {
|
|
|
8632
8806
|
params: {
|
|
8633
8807
|
/** Task id */
|
|
8634
8808
|
taskId: string;
|
|
8635
|
-
pushNotificationConfig:
|
|
8809
|
+
pushNotificationConfig: Shared_Type_92;
|
|
8636
8810
|
};
|
|
8637
8811
|
} | {
|
|
8638
8812
|
jsonrpc: '2.0';
|
|
@@ -9698,7 +9872,7 @@ export type GetMcpServerIdTools_PathParams = {
|
|
|
9698
9872
|
serverId: string;
|
|
9699
9873
|
};
|
|
9700
9874
|
export type GetMcpServerIdTools_Response = {
|
|
9701
|
-
tools:
|
|
9875
|
+
tools: Shared_Type_95[];
|
|
9702
9876
|
};
|
|
9703
9877
|
export type GetMcpServerIdTools_Request = Simplify<(GetMcpServerIdTools_PathParams extends never ? {} : {
|
|
9704
9878
|
params: GetMcpServerIdTools_PathParams;
|
|
@@ -9725,7 +9899,7 @@ export type GetMcpServerIdToolsToolId_PathParams = {
|
|
|
9725
9899
|
/** Tool ID */
|
|
9726
9900
|
toolId: string;
|
|
9727
9901
|
};
|
|
9728
|
-
export type GetMcpServerIdToolsToolId_Response =
|
|
9902
|
+
export type GetMcpServerIdToolsToolId_Response = Shared_Type_95;
|
|
9729
9903
|
export type GetMcpServerIdToolsToolId_Request = Simplify<(GetMcpServerIdToolsToolId_PathParams extends never ? {} : {
|
|
9730
9904
|
params: GetMcpServerIdToolsToolId_PathParams;
|
|
9731
9905
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -10016,19 +10190,19 @@ export type PostStoredAgentsStoredAgentIdExport_Body = {
|
|
|
10016
10190
|
rules?: Shared_Type_9 | undefined;
|
|
10017
10191
|
}[]) | undefined;
|
|
10018
10192
|
/** Tool keys mapped to per-tool config — static or conditional */
|
|
10019
|
-
tools?:
|
|
10193
|
+
tools?: Shared_Type_96;
|
|
10020
10194
|
/** Default options for generate/stream calls — static or conditional */
|
|
10021
|
-
defaultOptions?:
|
|
10195
|
+
defaultOptions?: Shared_Type_97;
|
|
10022
10196
|
/** Workflow keys with optional per-workflow config — static or conditional */
|
|
10023
|
-
workflows?:
|
|
10197
|
+
workflows?: Shared_Type_96;
|
|
10024
10198
|
/** Agent keys with optional per-agent config — static or conditional */
|
|
10025
|
-
agents?:
|
|
10199
|
+
agents?: Shared_Type_96;
|
|
10026
10200
|
/** Map of tool provider IDs to their tool configurations — static or conditional */
|
|
10027
|
-
integrationTools?:
|
|
10201
|
+
integrationTools?: Shared_Type_98;
|
|
10028
10202
|
/** Tool provider connections and per-tool config (provider-agnostic). Coexists with the deprecated `integrationTools` field. */
|
|
10029
|
-
toolProviders?:
|
|
10203
|
+
toolProviders?: Shared_Type_99;
|
|
10030
10204
|
/** Map of stored MCP client IDs to their tool configurations — static or conditional */
|
|
10031
|
-
mcpClients?:
|
|
10205
|
+
mcpClients?: Shared_Type_98;
|
|
10032
10206
|
/** Input processor graph — static or conditional */
|
|
10033
10207
|
inputProcessors?: (Shared_Type_20 | undefined) | undefined;
|
|
10034
10208
|
/** Output processor graph — static or conditional */
|
|
@@ -10039,14 +10213,14 @@ export type PostStoredAgentsStoredAgentIdExport_Body = {
|
|
|
10039
10213
|
rules?: Shared_Type_9 | undefined;
|
|
10040
10214
|
}[]) | null) | undefined) | undefined;
|
|
10041
10215
|
/** Scorer keys with optional sampling config — static or conditional */
|
|
10042
|
-
scorers?:
|
|
10216
|
+
scorers?: Shared_Type_100;
|
|
10043
10217
|
/** Skill IDs mapped to per-skill config — static or conditional */
|
|
10044
10218
|
skills?: ((Shared_Type_29 | {
|
|
10045
10219
|
value: Shared_Type_29;
|
|
10046
10220
|
rules?: Shared_Type_9 | undefined;
|
|
10047
10221
|
}[]) | undefined) | undefined;
|
|
10048
10222
|
/** Workspace reference (stored ID or inline config) — static or conditional */
|
|
10049
|
-
workspace?:
|
|
10223
|
+
workspace?: Shared_Type_101;
|
|
10050
10224
|
/** Browser configuration — object config, true (apply default), false/null (disable) */
|
|
10051
10225
|
browser?: ((Shared_Type_41 | boolean | null) | undefined) | undefined;
|
|
10052
10226
|
/** JSON Schema defining valid request context variables for conditional rule evaluation */
|
|
@@ -10100,19 +10274,19 @@ export type PostStoredAgentsStoredAgentIdChangeRequest_Body = {
|
|
|
10100
10274
|
rules?: Shared_Type_9 | undefined;
|
|
10101
10275
|
}[]) | undefined;
|
|
10102
10276
|
/** Tool keys mapped to per-tool config — static or conditional */
|
|
10103
|
-
tools?:
|
|
10277
|
+
tools?: Shared_Type_96;
|
|
10104
10278
|
/** Default options for generate/stream calls — static or conditional */
|
|
10105
|
-
defaultOptions?:
|
|
10279
|
+
defaultOptions?: Shared_Type_97;
|
|
10106
10280
|
/** Workflow keys with optional per-workflow config — static or conditional */
|
|
10107
|
-
workflows?:
|
|
10281
|
+
workflows?: Shared_Type_96;
|
|
10108
10282
|
/** Agent keys with optional per-agent config — static or conditional */
|
|
10109
|
-
agents?:
|
|
10283
|
+
agents?: Shared_Type_96;
|
|
10110
10284
|
/** Map of tool provider IDs to their tool configurations — static or conditional */
|
|
10111
|
-
integrationTools?:
|
|
10285
|
+
integrationTools?: Shared_Type_98;
|
|
10112
10286
|
/** Tool provider connections and per-tool config (provider-agnostic). Coexists with the deprecated `integrationTools` field. */
|
|
10113
|
-
toolProviders?:
|
|
10287
|
+
toolProviders?: Shared_Type_99;
|
|
10114
10288
|
/** Map of stored MCP client IDs to their tool configurations — static or conditional */
|
|
10115
|
-
mcpClients?:
|
|
10289
|
+
mcpClients?: Shared_Type_98;
|
|
10116
10290
|
/** Input processor graph — static or conditional */
|
|
10117
10291
|
inputProcessors?: (Shared_Type_20 | undefined) | undefined;
|
|
10118
10292
|
/** Output processor graph — static or conditional */
|
|
@@ -10123,14 +10297,14 @@ export type PostStoredAgentsStoredAgentIdChangeRequest_Body = {
|
|
|
10123
10297
|
rules?: Shared_Type_9 | undefined;
|
|
10124
10298
|
}[]) | null) | undefined) | undefined;
|
|
10125
10299
|
/** Scorer keys with optional sampling config — static or conditional */
|
|
10126
|
-
scorers?:
|
|
10300
|
+
scorers?: Shared_Type_100;
|
|
10127
10301
|
/** Skill IDs mapped to per-skill config — static or conditional */
|
|
10128
10302
|
skills?: ((Shared_Type_29 | {
|
|
10129
10303
|
value: Shared_Type_29;
|
|
10130
10304
|
rules?: Shared_Type_9 | undefined;
|
|
10131
10305
|
}[]) | undefined) | undefined;
|
|
10132
10306
|
/** Workspace reference (stored ID or inline config) — static or conditional */
|
|
10133
|
-
workspace?:
|
|
10307
|
+
workspace?: Shared_Type_101;
|
|
10134
10308
|
/** Browser configuration — object config, true (apply default), false/null (disable) */
|
|
10135
10309
|
browser?: ((Shared_Type_41 | boolean | null) | undefined) | undefined;
|
|
10136
10310
|
/** JSON Schema defining valid request context variables for conditional rule evaluation */
|
|
@@ -10527,7 +10701,7 @@ export type GetStoredAgentsAgentIdVersions_Response = {
|
|
|
10527
10701
|
page: number;
|
|
10528
10702
|
perPage: number | false;
|
|
10529
10703
|
hasMore: boolean;
|
|
10530
|
-
versions:
|
|
10704
|
+
versions: Shared_Type_102[];
|
|
10531
10705
|
};
|
|
10532
10706
|
export type GetStoredAgentsAgentIdVersions_Request = Simplify<(GetStoredAgentsAgentIdVersions_PathParams extends never ? {} : {
|
|
10533
10707
|
params: GetStoredAgentsAgentIdVersions_PathParams;
|
|
@@ -10673,7 +10847,7 @@ export type GetStoredAgentsAgentIdVersionsCompare_QueryParams = {
|
|
|
10673
10847
|
};
|
|
10674
10848
|
export type GetStoredAgentsAgentIdVersionsCompare_Response = {
|
|
10675
10849
|
/** List of differences between versions */
|
|
10676
|
-
diffs:
|
|
10850
|
+
diffs: Shared_Type_103[];
|
|
10677
10851
|
/** The source version */
|
|
10678
10852
|
fromVersion: {
|
|
10679
10853
|
/** Unique identifier for the version (UUID) */
|
|
@@ -10886,7 +11060,7 @@ export type GetStoredAgentsAgentIdVersionsVersionId_PathParams = {
|
|
|
10886
11060
|
/** Unique identifier for the version (UUID) */
|
|
10887
11061
|
versionId: string;
|
|
10888
11062
|
};
|
|
10889
|
-
export type GetStoredAgentsAgentIdVersionsVersionId_Response =
|
|
11063
|
+
export type GetStoredAgentsAgentIdVersionsVersionId_Response = Shared_Type_102;
|
|
10890
11064
|
export type GetStoredAgentsAgentIdVersionsVersionId_Request = Simplify<(GetStoredAgentsAgentIdVersionsVersionId_PathParams extends never ? {} : {
|
|
10891
11065
|
params: GetStoredAgentsAgentIdVersionsVersionId_PathParams;
|
|
10892
11066
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11118,7 +11292,7 @@ export type GetStoredWorkflows_QueryParams = {
|
|
|
11118
11292
|
authorId?: string | undefined;
|
|
11119
11293
|
};
|
|
11120
11294
|
export type GetStoredWorkflows_Response = {
|
|
11121
|
-
workflows:
|
|
11295
|
+
workflows: Shared_Type_104[];
|
|
11122
11296
|
total: number;
|
|
11123
11297
|
};
|
|
11124
11298
|
export type GetStoredWorkflows_Request = Simplify<(never extends never ? {} : {
|
|
@@ -11162,7 +11336,7 @@ export type PostStoredWorkflows_Body = {
|
|
|
11162
11336
|
[key: string]: unknown;
|
|
11163
11337
|
} | undefined;
|
|
11164
11338
|
/** Static workflow graph — ordered array of serialized step entries with all refs as ids. */
|
|
11165
|
-
graph:
|
|
11339
|
+
graph: Shared_Type_115[];
|
|
11166
11340
|
/** 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
11341
|
dependencies?: {
|
|
11168
11342
|
/** Workflow id — kebab-case, descriptive */
|
|
@@ -11186,7 +11360,7 @@ export type PostStoredWorkflows_Body = {
|
|
|
11186
11360
|
[key: string]: unknown;
|
|
11187
11361
|
} | undefined;
|
|
11188
11362
|
/** Static workflow graph — ordered array of serialized step entries with all refs as ids. */
|
|
11189
|
-
graph:
|
|
11363
|
+
graph: Shared_Type_115[];
|
|
11190
11364
|
}[] | undefined;
|
|
11191
11365
|
};
|
|
11192
11366
|
export type PostStoredWorkflows_Response = {
|
|
@@ -11218,7 +11392,7 @@ export type GetStoredWorkflowsDynamicWorkflowId_PathParams = {
|
|
|
11218
11392
|
/** Unique identifier for the dynamic workflow definition */
|
|
11219
11393
|
dynamicWorkflowId: string;
|
|
11220
11394
|
};
|
|
11221
|
-
export type GetStoredWorkflowsDynamicWorkflowId_Response =
|
|
11395
|
+
export type GetStoredWorkflowsDynamicWorkflowId_Response = Shared_Type_104;
|
|
11222
11396
|
export type GetStoredWorkflowsDynamicWorkflowId_Request = Simplify<(GetStoredWorkflowsDynamicWorkflowId_PathParams extends never ? {} : {
|
|
11223
11397
|
params: GetStoredWorkflowsDynamicWorkflowId_PathParams;
|
|
11224
11398
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11283,7 +11457,7 @@ export type GetStoredMcpClients_Response = {
|
|
|
11283
11457
|
page: number;
|
|
11284
11458
|
perPage: number | false;
|
|
11285
11459
|
hasMore: boolean;
|
|
11286
|
-
mcpClients:
|
|
11460
|
+
mcpClients: Shared_Type_117[];
|
|
11287
11461
|
};
|
|
11288
11462
|
export type GetStoredMcpClients_Request = Simplify<(never extends never ? {} : {
|
|
11289
11463
|
params: never;
|
|
@@ -11309,7 +11483,7 @@ export type GetStoredMcpClientsStoredMCPClientId_PathParams = {
|
|
|
11309
11483
|
storedMCPClientId: string;
|
|
11310
11484
|
};
|
|
11311
11485
|
export type GetStoredMcpClientsStoredMCPClientId_QueryParams = GetStoredAgentsStoredAgentId_QueryParams;
|
|
11312
|
-
export type GetStoredMcpClientsStoredMCPClientId_Response =
|
|
11486
|
+
export type GetStoredMcpClientsStoredMCPClientId_Response = Shared_Type_117;
|
|
11313
11487
|
export type GetStoredMcpClientsStoredMCPClientId_Request = Simplify<(GetStoredMcpClientsStoredMCPClientId_PathParams extends never ? {} : {
|
|
11314
11488
|
params: GetStoredMcpClientsStoredMCPClientId_PathParams;
|
|
11315
11489
|
}) & (GetStoredMcpClientsStoredMCPClientId_QueryParams extends never ? {} : {} extends GetStoredMcpClientsStoredMCPClientId_QueryParams ? {
|
|
@@ -11344,7 +11518,7 @@ export type PostStoredMcpClients_Body = {
|
|
|
11344
11518
|
description?: string | undefined;
|
|
11345
11519
|
/** Map of server name to server configuration */
|
|
11346
11520
|
servers: {
|
|
11347
|
-
[key: string]:
|
|
11521
|
+
[key: string]: Shared_Type_116;
|
|
11348
11522
|
};
|
|
11349
11523
|
};
|
|
11350
11524
|
export type PostStoredMcpClients_Response = GetStoredMcpClientsStoredMCPClientId_Response;
|
|
@@ -11379,7 +11553,7 @@ export type PatchStoredMcpClientsStoredMCPClientId_Body = {
|
|
|
11379
11553
|
description?: (string | undefined) | undefined;
|
|
11380
11554
|
/** Map of server name to server configuration */
|
|
11381
11555
|
servers?: {
|
|
11382
|
-
[key: string]:
|
|
11556
|
+
[key: string]: Shared_Type_116;
|
|
11383
11557
|
} | undefined;
|
|
11384
11558
|
};
|
|
11385
11559
|
export type PatchStoredMcpClientsStoredMCPClientId_Response = {
|
|
@@ -11392,7 +11566,7 @@ export type PatchStoredMcpClientsStoredMCPClientId_Response = {
|
|
|
11392
11566
|
} | undefined;
|
|
11393
11567
|
createdAt: Date;
|
|
11394
11568
|
updatedAt: Date;
|
|
11395
|
-
} |
|
|
11569
|
+
} | Shared_Type_117;
|
|
11396
11570
|
export type PatchStoredMcpClientsStoredMCPClientId_Request = Simplify<(PatchStoredMcpClientsStoredMCPClientId_PathParams extends never ? {} : {
|
|
11397
11571
|
params: PatchStoredMcpClientsStoredMCPClientId_PathParams;
|
|
11398
11572
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11443,7 +11617,7 @@ export type GetStoredMcpClientsMcpClientIdVersions_Response = {
|
|
|
11443
11617
|
page: number;
|
|
11444
11618
|
perPage: number | false;
|
|
11445
11619
|
hasMore: boolean;
|
|
11446
|
-
versions:
|
|
11620
|
+
versions: Shared_Type_119[];
|
|
11447
11621
|
};
|
|
11448
11622
|
export type GetStoredMcpClientsMcpClientIdVersions_Request = Simplify<(GetStoredMcpClientsMcpClientIdVersions_PathParams extends never ? {} : {
|
|
11449
11623
|
params: GetStoredMcpClientsMcpClientIdVersions_PathParams;
|
|
@@ -11475,7 +11649,7 @@ export type PostStoredMcpClientsMcpClientIdVersions_Response = {
|
|
|
11475
11649
|
/** Description of the MCP client */
|
|
11476
11650
|
description?: (string | undefined) | undefined;
|
|
11477
11651
|
servers?: {
|
|
11478
|
-
[key: string]:
|
|
11652
|
+
[key: string]: Shared_Type_118;
|
|
11479
11653
|
} | undefined;
|
|
11480
11654
|
/** Array of field names that changed from the previous version */
|
|
11481
11655
|
changedFields?: (string[] | undefined) | undefined;
|
|
@@ -11506,7 +11680,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsCompare_PathParams = GetStored
|
|
|
11506
11680
|
export type GetStoredMcpClientsMcpClientIdVersionsCompare_QueryParams = GetStoredAgentsAgentIdVersionsCompare_QueryParams;
|
|
11507
11681
|
export type GetStoredMcpClientsMcpClientIdVersionsCompare_Response = {
|
|
11508
11682
|
/** List of differences between versions */
|
|
11509
|
-
diffs:
|
|
11683
|
+
diffs: Shared_Type_103[];
|
|
11510
11684
|
/** The source version */
|
|
11511
11685
|
fromVersion: {
|
|
11512
11686
|
/** Unique identifier for the version (UUID) */
|
|
@@ -11520,7 +11694,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsCompare_Response = {
|
|
|
11520
11694
|
/** Description of the MCP client */
|
|
11521
11695
|
description?: string | undefined;
|
|
11522
11696
|
servers: {
|
|
11523
|
-
[key: string]:
|
|
11697
|
+
[key: string]: Shared_Type_118;
|
|
11524
11698
|
};
|
|
11525
11699
|
/** Array of field names that changed from the previous version */
|
|
11526
11700
|
changedFields?: string[] | undefined;
|
|
@@ -11542,7 +11716,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsCompare_Response = {
|
|
|
11542
11716
|
/** Description of the MCP client */
|
|
11543
11717
|
description?: string | undefined;
|
|
11544
11718
|
servers: {
|
|
11545
|
-
[key: string]:
|
|
11719
|
+
[key: string]: Shared_Type_118;
|
|
11546
11720
|
};
|
|
11547
11721
|
/** Array of field names that changed from the previous version */
|
|
11548
11722
|
changedFields?: string[] | undefined;
|
|
@@ -11577,7 +11751,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsVersionId_PathParams = {
|
|
|
11577
11751
|
/** Unique identifier for the version (UUID) */
|
|
11578
11752
|
versionId: string;
|
|
11579
11753
|
};
|
|
11580
|
-
export type GetStoredMcpClientsMcpClientIdVersionsVersionId_Response =
|
|
11754
|
+
export type GetStoredMcpClientsMcpClientIdVersionsVersionId_Response = Shared_Type_119;
|
|
11581
11755
|
export type GetStoredMcpClientsMcpClientIdVersionsVersionId_Request = Simplify<(GetStoredMcpClientsMcpClientIdVersionsVersionId_PathParams extends never ? {} : {
|
|
11582
11756
|
params: GetStoredMcpClientsMcpClientIdVersionsVersionId_PathParams;
|
|
11583
11757
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11681,7 +11855,7 @@ export type GetStoredPromptBlocks_Response = {
|
|
|
11681
11855
|
page: number;
|
|
11682
11856
|
perPage: number | false;
|
|
11683
11857
|
hasMore: boolean;
|
|
11684
|
-
promptBlocks:
|
|
11858
|
+
promptBlocks: Shared_Type_120[];
|
|
11685
11859
|
};
|
|
11686
11860
|
export type GetStoredPromptBlocks_Request = Simplify<(never extends never ? {} : {
|
|
11687
11861
|
params: never;
|
|
@@ -11707,7 +11881,7 @@ export type GetStoredPromptBlocksStoredPromptBlockId_PathParams = {
|
|
|
11707
11881
|
storedPromptBlockId: string;
|
|
11708
11882
|
};
|
|
11709
11883
|
export type GetStoredPromptBlocksStoredPromptBlockId_QueryParams = GetStoredAgentsStoredAgentId_QueryParams;
|
|
11710
|
-
export type GetStoredPromptBlocksStoredPromptBlockId_Response =
|
|
11884
|
+
export type GetStoredPromptBlocksStoredPromptBlockId_Response = Shared_Type_120;
|
|
11711
11885
|
export type GetStoredPromptBlocksStoredPromptBlockId_Request = Simplify<(GetStoredPromptBlocksStoredPromptBlockId_PathParams extends never ? {} : {
|
|
11712
11886
|
params: GetStoredPromptBlocksStoredPromptBlockId_PathParams;
|
|
11713
11887
|
}) & (GetStoredPromptBlocksStoredPromptBlockId_QueryParams extends never ? {} : {} extends GetStoredPromptBlocksStoredPromptBlockId_QueryParams ? {
|
|
@@ -11798,7 +11972,7 @@ export type PatchStoredPromptBlocksStoredPromptBlockId_Response = {
|
|
|
11798
11972
|
} | undefined;
|
|
11799
11973
|
createdAt: Date;
|
|
11800
11974
|
updatedAt: Date;
|
|
11801
|
-
} |
|
|
11975
|
+
} | Shared_Type_120;
|
|
11802
11976
|
export type PatchStoredPromptBlocksStoredPromptBlockId_Request = Simplify<(PatchStoredPromptBlocksStoredPromptBlockId_PathParams extends never ? {} : {
|
|
11803
11977
|
params: PatchStoredPromptBlocksStoredPromptBlockId_PathParams;
|
|
11804
11978
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11849,7 +12023,7 @@ export type GetStoredPromptBlocksPromptBlockIdVersions_Response = {
|
|
|
11849
12023
|
page: number;
|
|
11850
12024
|
perPage: number | false;
|
|
11851
12025
|
hasMore: boolean;
|
|
11852
|
-
versions:
|
|
12026
|
+
versions: Shared_Type_121[];
|
|
11853
12027
|
};
|
|
11854
12028
|
export type GetStoredPromptBlocksPromptBlockIdVersions_Request = Simplify<(GetStoredPromptBlocksPromptBlockIdVersions_PathParams extends never ? {} : {
|
|
11855
12029
|
params: GetStoredPromptBlocksPromptBlockIdVersions_PathParams;
|
|
@@ -11917,7 +12091,7 @@ export type GetStoredPromptBlocksPromptBlockIdVersionsCompare_PathParams = GetSt
|
|
|
11917
12091
|
export type GetStoredPromptBlocksPromptBlockIdVersionsCompare_QueryParams = GetStoredAgentsAgentIdVersionsCompare_QueryParams;
|
|
11918
12092
|
export type GetStoredPromptBlocksPromptBlockIdVersionsCompare_Response = {
|
|
11919
12093
|
/** List of differences between versions */
|
|
11920
|
-
diffs:
|
|
12094
|
+
diffs: Shared_Type_103[];
|
|
11921
12095
|
/** The source version */
|
|
11922
12096
|
fromVersion: {
|
|
11923
12097
|
/** Unique identifier for the version (UUID) */
|
|
@@ -11998,7 +12172,7 @@ export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_PathParams = {
|
|
|
11998
12172
|
/** Unique identifier for the version (UUID) */
|
|
11999
12173
|
versionId: string;
|
|
12000
12174
|
};
|
|
12001
|
-
export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_Response =
|
|
12175
|
+
export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_Response = Shared_Type_121;
|
|
12002
12176
|
export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_Request = Simplify<(GetStoredPromptBlocksPromptBlockIdVersionsVersionId_PathParams extends never ? {} : {
|
|
12003
12177
|
params: GetStoredPromptBlocksPromptBlockIdVersionsVersionId_PathParams;
|
|
12004
12178
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12102,7 +12276,7 @@ export type GetStoredScorers_Response = {
|
|
|
12102
12276
|
page: number;
|
|
12103
12277
|
perPage: number | false;
|
|
12104
12278
|
hasMore: boolean;
|
|
12105
|
-
scorerDefinitions:
|
|
12279
|
+
scorerDefinitions: Shared_Type_123[];
|
|
12106
12280
|
};
|
|
12107
12281
|
export type GetStoredScorers_Request = Simplify<(never extends never ? {} : {
|
|
12108
12282
|
params: never;
|
|
@@ -12128,7 +12302,7 @@ export type GetStoredScorersStoredScorerId_PathParams = {
|
|
|
12128
12302
|
storedScorerId: string;
|
|
12129
12303
|
};
|
|
12130
12304
|
export type GetStoredScorersStoredScorerId_QueryParams = GetStoredAgentsStoredAgentId_QueryParams;
|
|
12131
|
-
export type GetStoredScorersStoredScorerId_Response =
|
|
12305
|
+
export type GetStoredScorersStoredScorerId_Response = Shared_Type_123;
|
|
12132
12306
|
export type GetStoredScorersStoredScorerId_Request = Simplify<(GetStoredScorersStoredScorerId_PathParams extends never ? {} : {
|
|
12133
12307
|
params: GetStoredScorersStoredScorerId_PathParams;
|
|
12134
12308
|
}) & (GetStoredScorersStoredScorerId_QueryParams extends never ? {} : {} extends GetStoredScorersStoredScorerId_QueryParams ? {
|
|
@@ -12162,13 +12336,13 @@ export type PostStoredScorers_Body = {
|
|
|
12162
12336
|
/** Description of the scorer */
|
|
12163
12337
|
description?: string | undefined;
|
|
12164
12338
|
/** Scorer type: llm-judge for custom, or a preset type name */
|
|
12165
|
-
type:
|
|
12339
|
+
type: Shared_Type_122;
|
|
12166
12340
|
/** Model configuration for LLM judge */
|
|
12167
12341
|
model?: Shared_Type_11 | undefined;
|
|
12168
12342
|
/** System instructions for the judge LLM (used when type is llm-judge) */
|
|
12169
12343
|
instructions?: string | undefined;
|
|
12170
12344
|
/** Score range configuration (used when type is llm-judge) */
|
|
12171
|
-
scoreRange?:
|
|
12345
|
+
scoreRange?: Shared_Type_124;
|
|
12172
12346
|
/** Serializable config options for preset scorers */
|
|
12173
12347
|
presetConfig?: {
|
|
12174
12348
|
[key: string]: unknown;
|
|
@@ -12212,13 +12386,13 @@ export type PatchStoredScorersStoredScorerId_Body = {
|
|
|
12212
12386
|
/** Description of the scorer */
|
|
12213
12387
|
description?: (string | undefined) | undefined;
|
|
12214
12388
|
/** Scorer type: llm-judge for custom, or a preset type name */
|
|
12215
|
-
type?:
|
|
12389
|
+
type?: Shared_Type_122 | undefined;
|
|
12216
12390
|
/** Model configuration for LLM judge */
|
|
12217
12391
|
model?: (Shared_Type_11 | undefined) | undefined;
|
|
12218
12392
|
/** System instructions for the judge LLM (used when type is llm-judge) */
|
|
12219
12393
|
instructions?: (string | undefined) | undefined;
|
|
12220
12394
|
/** Score range configuration (used when type is llm-judge) */
|
|
12221
|
-
scoreRange?:
|
|
12395
|
+
scoreRange?: Shared_Type_124 | undefined;
|
|
12222
12396
|
/** Serializable config options for preset scorers */
|
|
12223
12397
|
presetConfig?: ({
|
|
12224
12398
|
[key: string]: unknown;
|
|
@@ -12241,7 +12415,7 @@ export type PatchStoredScorersStoredScorerId_Response = {
|
|
|
12241
12415
|
} | undefined;
|
|
12242
12416
|
createdAt: Date;
|
|
12243
12417
|
updatedAt: Date;
|
|
12244
|
-
} |
|
|
12418
|
+
} | Shared_Type_123;
|
|
12245
12419
|
export type PatchStoredScorersStoredScorerId_Request = Simplify<(PatchStoredScorersStoredScorerId_PathParams extends never ? {} : {
|
|
12246
12420
|
params: PatchStoredScorersStoredScorerId_PathParams;
|
|
12247
12421
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12292,7 +12466,7 @@ export type GetStoredScorersScorerIdVersions_Response = {
|
|
|
12292
12466
|
page: number;
|
|
12293
12467
|
perPage: number | false;
|
|
12294
12468
|
hasMore: boolean;
|
|
12295
|
-
versions:
|
|
12469
|
+
versions: Shared_Type_125[];
|
|
12296
12470
|
};
|
|
12297
12471
|
export type GetStoredScorersScorerIdVersions_Request = Simplify<(GetStoredScorersScorerIdVersions_PathParams extends never ? {} : {
|
|
12298
12472
|
params: GetStoredScorersScorerIdVersions_PathParams;
|
|
@@ -12323,7 +12497,7 @@ export type PostStoredScorersScorerIdVersions_Response = {
|
|
|
12323
12497
|
name?: string | undefined;
|
|
12324
12498
|
/** Description of the scorer */
|
|
12325
12499
|
description?: (string | undefined) | undefined;
|
|
12326
|
-
type?:
|
|
12500
|
+
type?: Shared_Type_122 | undefined;
|
|
12327
12501
|
model?: (Shared_Type_11 | undefined) | undefined;
|
|
12328
12502
|
instructions?: (string | undefined) | undefined;
|
|
12329
12503
|
scoreRange?: ({
|
|
@@ -12368,7 +12542,7 @@ export type GetStoredScorersScorerIdVersionsCompare_PathParams = GetStoredScorer
|
|
|
12368
12542
|
export type GetStoredScorersScorerIdVersionsCompare_QueryParams = GetStoredAgentsAgentIdVersionsCompare_QueryParams;
|
|
12369
12543
|
export type GetStoredScorersScorerIdVersionsCompare_Response = {
|
|
12370
12544
|
/** List of differences between versions */
|
|
12371
|
-
diffs:
|
|
12545
|
+
diffs: Shared_Type_103[];
|
|
12372
12546
|
/** The source version */
|
|
12373
12547
|
fromVersion: {
|
|
12374
12548
|
/** Unique identifier for the version (UUID) */
|
|
@@ -12381,7 +12555,7 @@ export type GetStoredScorersScorerIdVersionsCompare_Response = {
|
|
|
12381
12555
|
name: string;
|
|
12382
12556
|
/** Description of the scorer */
|
|
12383
12557
|
description?: string | undefined;
|
|
12384
|
-
type:
|
|
12558
|
+
type: Shared_Type_122;
|
|
12385
12559
|
model?: Shared_Type_11 | undefined;
|
|
12386
12560
|
instructions?: string | undefined;
|
|
12387
12561
|
scoreRange?: {
|
|
@@ -12416,7 +12590,7 @@ export type GetStoredScorersScorerIdVersionsCompare_Response = {
|
|
|
12416
12590
|
name: string;
|
|
12417
12591
|
/** Description of the scorer */
|
|
12418
12592
|
description?: string | undefined;
|
|
12419
|
-
type:
|
|
12593
|
+
type: Shared_Type_122;
|
|
12420
12594
|
model?: Shared_Type_11 | undefined;
|
|
12421
12595
|
instructions?: string | undefined;
|
|
12422
12596
|
scoreRange?: {
|
|
@@ -12465,7 +12639,7 @@ export type GetStoredScorersScorerIdVersionsVersionId_PathParams = {
|
|
|
12465
12639
|
/** Unique identifier for the version (UUID) */
|
|
12466
12640
|
versionId: string;
|
|
12467
12641
|
};
|
|
12468
|
-
export type GetStoredScorersScorerIdVersionsVersionId_Response =
|
|
12642
|
+
export type GetStoredScorersScorerIdVersionsVersionId_Response = Shared_Type_125;
|
|
12469
12643
|
export type GetStoredScorersScorerIdVersionsVersionId_Request = Simplify<(GetStoredScorersScorerIdVersionsVersionId_PathParams extends never ? {} : {
|
|
12470
12644
|
params: GetStoredScorersScorerIdVersionsVersionId_PathParams;
|
|
12471
12645
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12625,7 +12799,7 @@ export type GetStoredWorkspacesStoredWorkspaceId_PathParams = {
|
|
|
12625
12799
|
/** Unique identifier for the stored workspace */
|
|
12626
12800
|
storedWorkspaceId: string;
|
|
12627
12801
|
};
|
|
12628
|
-
export type GetStoredWorkspacesStoredWorkspaceId_Response =
|
|
12802
|
+
export type GetStoredWorkspacesStoredWorkspaceId_Response = Shared_Type_126;
|
|
12629
12803
|
export type GetStoredWorkspacesStoredWorkspaceId_Request = Simplify<(GetStoredWorkspacesStoredWorkspaceId_PathParams extends never ? {} : {
|
|
12630
12804
|
params: GetStoredWorkspacesStoredWorkspaceId_PathParams;
|
|
12631
12805
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12731,7 +12905,7 @@ export type PatchStoredWorkspacesStoredWorkspaceId_Response = {
|
|
|
12731
12905
|
} | undefined;
|
|
12732
12906
|
createdAt: Date;
|
|
12733
12907
|
updatedAt: Date;
|
|
12734
|
-
} |
|
|
12908
|
+
} | Shared_Type_126;
|
|
12735
12909
|
export type PatchStoredWorkspacesStoredWorkspaceId_Request = Simplify<(PatchStoredWorkspacesStoredWorkspaceId_PathParams extends never ? {} : {
|
|
12736
12910
|
params: PatchStoredWorkspacesStoredWorkspaceId_PathParams;
|
|
12737
12911
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12799,7 +12973,7 @@ export type GetStoredSkills_Response = {
|
|
|
12799
12973
|
page: number;
|
|
12800
12974
|
perPage: number | false;
|
|
12801
12975
|
hasMore: boolean;
|
|
12802
|
-
skills:
|
|
12976
|
+
skills: Shared_Type_128[];
|
|
12803
12977
|
};
|
|
12804
12978
|
export type GetStoredSkills_Request = Simplify<(never extends never ? {} : {
|
|
12805
12979
|
params: never;
|
|
@@ -12824,7 +12998,7 @@ export type GetStoredSkillsStoredSkillId_PathParams = {
|
|
|
12824
12998
|
/** Unique identifier for the stored skill */
|
|
12825
12999
|
storedSkillId: string;
|
|
12826
13000
|
};
|
|
12827
|
-
export type GetStoredSkillsStoredSkillId_Response =
|
|
13001
|
+
export type GetStoredSkillsStoredSkillId_Response = Shared_Type_128;
|
|
12828
13002
|
export type GetStoredSkillsStoredSkillId_Request = Simplify<(GetStoredSkillsStoredSkillId_PathParams extends never ? {} : {
|
|
12829
13003
|
params: GetStoredSkillsStoredSkillId_PathParams;
|
|
12830
13004
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12862,7 +13036,7 @@ export type PostStoredSkills_Body = {
|
|
|
12862
13036
|
/** Compatibility requirements */
|
|
12863
13037
|
compatibility?: unknown | undefined;
|
|
12864
13038
|
/** Source location of the skill */
|
|
12865
|
-
source?:
|
|
13039
|
+
source?: Shared_Type_127 | undefined;
|
|
12866
13040
|
/** List of reference file paths */
|
|
12867
13041
|
references?: string[] | undefined;
|
|
12868
13042
|
/** List of script file paths */
|
|
@@ -12870,7 +13044,7 @@ export type PostStoredSkills_Body = {
|
|
|
12870
13044
|
/** List of asset file paths */
|
|
12871
13045
|
assets?: string[] | undefined;
|
|
12872
13046
|
/** Full file tree structure for the skill */
|
|
12873
|
-
files?:
|
|
13047
|
+
files?: Shared_Auxiliary_1276[] | undefined;
|
|
12874
13048
|
/** Additional metadata for the skill */
|
|
12875
13049
|
metadata?: {
|
|
12876
13050
|
[key: string]: unknown;
|
|
@@ -12912,7 +13086,7 @@ export type PatchStoredSkillsStoredSkillId_Body = {
|
|
|
12912
13086
|
/** Compatibility requirements */
|
|
12913
13087
|
compatibility?: (unknown | undefined) | undefined;
|
|
12914
13088
|
/** Source location of the skill */
|
|
12915
|
-
source?: (
|
|
13089
|
+
source?: (Shared_Type_127 | undefined) | undefined;
|
|
12916
13090
|
/** List of reference file paths */
|
|
12917
13091
|
references?: (string[] | undefined) | undefined;
|
|
12918
13092
|
/** List of script file paths */
|
|
@@ -12920,7 +13094,7 @@ export type PatchStoredSkillsStoredSkillId_Body = {
|
|
|
12920
13094
|
/** List of asset file paths */
|
|
12921
13095
|
assets?: (string[] | undefined) | undefined;
|
|
12922
13096
|
/** Full file tree structure for the skill */
|
|
12923
|
-
files?: (
|
|
13097
|
+
files?: (Shared_Auxiliary_1276[] | undefined) | undefined;
|
|
12924
13098
|
/** Additional metadata for the skill */
|
|
12925
13099
|
metadata?: ({
|
|
12926
13100
|
[key: string]: unknown;
|
|
@@ -12934,7 +13108,7 @@ export type PatchStoredSkillsStoredSkillId_Response = {
|
|
|
12934
13108
|
visibility?: ('private' | 'public') | undefined;
|
|
12935
13109
|
createdAt: Date;
|
|
12936
13110
|
updatedAt: Date;
|
|
12937
|
-
} |
|
|
13111
|
+
} | Shared_Type_128;
|
|
12938
13112
|
export type PatchStoredSkillsStoredSkillId_Request = Simplify<(PatchStoredSkillsStoredSkillId_PathParams extends never ? {} : {
|
|
12939
13113
|
params: PatchStoredSkillsStoredSkillId_PathParams;
|
|
12940
13114
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13645,7 +13819,7 @@ export interface GetSystemApiSchema_RouteContract {
|
|
|
13645
13819
|
}
|
|
13646
13820
|
export type GetDatasets_QueryParams = GetScoresRunRunId_QueryParams;
|
|
13647
13821
|
export type GetDatasets_Response = {
|
|
13648
|
-
datasets:
|
|
13822
|
+
datasets: Shared_Type_129[];
|
|
13649
13823
|
pagination: {
|
|
13650
13824
|
total: number;
|
|
13651
13825
|
page: number;
|
|
@@ -13700,7 +13874,7 @@ export type PostDatasets_Body = {
|
|
|
13700
13874
|
/** IDs of scorers attached to this dataset */
|
|
13701
13875
|
scorerIds?: string[] | undefined;
|
|
13702
13876
|
};
|
|
13703
|
-
export type PostDatasets_Response =
|
|
13877
|
+
export type PostDatasets_Response = Shared_Type_129;
|
|
13704
13878
|
export type PostDatasets_Request = Simplify<(never extends never ? {} : {
|
|
13705
13879
|
params: never;
|
|
13706
13880
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13730,7 +13904,7 @@ export type GetDatasetsDatasetId_QueryParams = {
|
|
|
13730
13904
|
/** Restrict lookup to the given project */
|
|
13731
13905
|
projectId?: string | undefined;
|
|
13732
13906
|
};
|
|
13733
|
-
export type GetDatasetsDatasetId_Response =
|
|
13907
|
+
export type GetDatasetsDatasetId_Response = Shared_Type_129 | null;
|
|
13734
13908
|
export type GetDatasetsDatasetId_Request = Simplify<(GetDatasetsDatasetId_PathParams extends never ? {} : {
|
|
13735
13909
|
params: GetDatasetsDatasetId_PathParams;
|
|
13736
13910
|
}) & (GetDatasetsDatasetId_QueryParams extends never ? {} : {} extends GetDatasetsDatasetId_QueryParams ? {
|
|
@@ -13832,7 +14006,7 @@ export type GetDatasetsDatasetIdItems_QueryParams = {
|
|
|
13832
14006
|
search?: string | undefined;
|
|
13833
14007
|
};
|
|
13834
14008
|
export type GetDatasetsDatasetIdItems_Response = {
|
|
13835
|
-
items:
|
|
14009
|
+
items: Shared_Type_132[];
|
|
13836
14010
|
pagination: {
|
|
13837
14011
|
total: number;
|
|
13838
14012
|
page: number;
|
|
@@ -13868,9 +14042,9 @@ export type PostDatasetsDatasetIdItems_Body = {
|
|
|
13868
14042
|
/** Expected output for comparison */
|
|
13869
14043
|
groundTruth?: unknown | undefined;
|
|
13870
14044
|
/** Expected trajectory configuration for trajectory scoring */
|
|
13871
|
-
expectedTrajectory?: (
|
|
14045
|
+
expectedTrajectory?: (Shared_Type_147 | undefined) | null;
|
|
13872
14046
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
13873
|
-
toolMocks?:
|
|
14047
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
13874
14048
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13875
14049
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13876
14050
|
/** IDs of scorers selected for this item */
|
|
@@ -13884,9 +14058,9 @@ export type PostDatasetsDatasetIdItems_Body = {
|
|
|
13884
14058
|
[key: string]: unknown;
|
|
13885
14059
|
} | undefined;
|
|
13886
14060
|
/** Source/provenance of this dataset item */
|
|
13887
|
-
source?:
|
|
14061
|
+
source?: Shared_Type_131 | undefined;
|
|
13888
14062
|
};
|
|
13889
|
-
export type PostDatasetsDatasetIdItems_Response =
|
|
14063
|
+
export type PostDatasetsDatasetIdItems_Response = Shared_Type_132;
|
|
13890
14064
|
export type PostDatasetsDatasetIdItems_Request = Simplify<(PostDatasetsDatasetIdItems_PathParams extends never ? {} : {
|
|
13891
14065
|
params: PostDatasetsDatasetIdItems_PathParams;
|
|
13892
14066
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13913,9 +14087,9 @@ export type PostDatasetsDatasetIdItemsBatch_Body = {
|
|
|
13913
14087
|
input: unknown;
|
|
13914
14088
|
groundTruth?: unknown | undefined;
|
|
13915
14089
|
/** Expected trajectory configuration for trajectory scoring */
|
|
13916
|
-
expectedTrajectory?: (
|
|
14090
|
+
expectedTrajectory?: (Shared_Type_147 | undefined) | null;
|
|
13917
14091
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
13918
|
-
toolMocks?:
|
|
14092
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
13919
14093
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13920
14094
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13921
14095
|
scorerIds?: string[] | undefined;
|
|
@@ -13926,11 +14100,11 @@ export type PostDatasetsDatasetIdItemsBatch_Body = {
|
|
|
13926
14100
|
[key: string]: unknown;
|
|
13927
14101
|
} | undefined;
|
|
13928
14102
|
/** Source/provenance of this dataset item */
|
|
13929
|
-
source?:
|
|
14103
|
+
source?: Shared_Type_131 | undefined;
|
|
13930
14104
|
}[];
|
|
13931
14105
|
};
|
|
13932
14106
|
export type PostDatasetsDatasetIdItemsBatch_Response = {
|
|
13933
|
-
items:
|
|
14107
|
+
items: Shared_Type_132[];
|
|
13934
14108
|
count: number;
|
|
13935
14109
|
};
|
|
13936
14110
|
export type PostDatasetsDatasetIdItemsBatch_Request = Simplify<(PostDatasetsDatasetIdItemsBatch_PathParams extends never ? {} : {
|
|
@@ -13985,7 +14159,7 @@ export type GetDatasetsDatasetIdItemsItemId_PathParams = {
|
|
|
13985
14159
|
/** Unique identifier for the dataset item */
|
|
13986
14160
|
itemId: string;
|
|
13987
14161
|
};
|
|
13988
|
-
export type GetDatasetsDatasetIdItemsItemId_Response =
|
|
14162
|
+
export type GetDatasetsDatasetIdItemsItemId_Response = Shared_Type_132 | null;
|
|
13989
14163
|
export type GetDatasetsDatasetIdItemsItemId_Request = Simplify<(GetDatasetsDatasetIdItemsItemId_PathParams extends never ? {} : {
|
|
13990
14164
|
params: GetDatasetsDatasetIdItemsItemId_PathParams;
|
|
13991
14165
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14012,9 +14186,9 @@ export type PatchDatasetsDatasetIdItemsItemId_Body = {
|
|
|
14012
14186
|
/** Expected output for comparison */
|
|
14013
14187
|
groundTruth?: unknown | undefined;
|
|
14014
14188
|
/** Expected trajectory configuration for trajectory scoring */
|
|
14015
|
-
expectedTrajectory?: (
|
|
14189
|
+
expectedTrajectory?: (Shared_Type_147 | undefined) | null;
|
|
14016
14190
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
14017
|
-
toolMocks?:
|
|
14191
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
14018
14192
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
14019
14193
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
14020
14194
|
/** IDs of scorers selected for this item */
|
|
@@ -14028,7 +14202,7 @@ export type PatchDatasetsDatasetIdItemsItemId_Body = {
|
|
|
14028
14202
|
[key: string]: unknown;
|
|
14029
14203
|
} | undefined;
|
|
14030
14204
|
/** Source/provenance of this dataset item */
|
|
14031
|
-
source?:
|
|
14205
|
+
source?: Shared_Type_131 | undefined;
|
|
14032
14206
|
};
|
|
14033
14207
|
export type PatchDatasetsDatasetIdItemsItemId_Response = PostDatasetsDatasetIdItems_Response;
|
|
14034
14208
|
export type PatchDatasetsDatasetIdItemsItemId_Request = Simplify<(PatchDatasetsDatasetIdItemsItemId_PathParams extends never ? {} : {
|
|
@@ -14116,7 +14290,7 @@ export type GetDatasetsDatasetIdItemsItemIdHistory_Response = {
|
|
|
14116
14290
|
groundTruth?: unknown | undefined;
|
|
14117
14291
|
expectedTrajectory?: unknown | undefined;
|
|
14118
14292
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
14119
|
-
toolMocks?:
|
|
14293
|
+
toolMocks?: Shared_Type_130[] | undefined;
|
|
14120
14294
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
14121
14295
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
14122
14296
|
scorerIds?: string[] | undefined;
|
|
@@ -14185,7 +14359,7 @@ export type GetExperiments_QueryParams = {
|
|
|
14185
14359
|
trialIndex?: number | undefined;
|
|
14186
14360
|
};
|
|
14187
14361
|
export type GetExperiments_Response = {
|
|
14188
|
-
experiments:
|
|
14362
|
+
experiments: Shared_Type_149[];
|
|
14189
14363
|
pagination: {
|
|
14190
14364
|
total: number;
|
|
14191
14365
|
page: number;
|
|
@@ -14344,7 +14518,7 @@ export type PostDatasetsDatasetIdExperiments_Response = {
|
|
|
14344
14518
|
completedAt: Date;
|
|
14345
14519
|
retryCount: number;
|
|
14346
14520
|
/** Diagnostic receipt for item-level tool mocks */
|
|
14347
|
-
toolMockReport?: (
|
|
14521
|
+
toolMockReport?: (Shared_Type_150 | undefined) | null;
|
|
14348
14522
|
scores: {
|
|
14349
14523
|
scorerId: string;
|
|
14350
14524
|
scorerName: string;
|
|
@@ -14390,7 +14564,7 @@ export type PostDatasetsDatasetIdExperimentsExperimentIdItemsItemIdRun_Body = {
|
|
|
14390
14564
|
} | undefined;
|
|
14391
14565
|
};
|
|
14392
14566
|
export type PostDatasetsDatasetIdExperimentsExperimentIdItemsItemIdRun_Response = {
|
|
14393
|
-
result:
|
|
14567
|
+
result: Shared_Type_151;
|
|
14394
14568
|
scores: {
|
|
14395
14569
|
scorerId: string;
|
|
14396
14570
|
scorerName: string;
|
|
@@ -14459,7 +14633,7 @@ export type PostDatasetsDatasetIdExperimentsExperimentIdResults_Body = {
|
|
|
14459
14633
|
} | undefined;
|
|
14460
14634
|
}[] | undefined;
|
|
14461
14635
|
};
|
|
14462
|
-
export type PostDatasetsDatasetIdExperimentsExperimentIdResults_Response =
|
|
14636
|
+
export type PostDatasetsDatasetIdExperimentsExperimentIdResults_Response = Shared_Type_151;
|
|
14463
14637
|
export type PostDatasetsDatasetIdExperimentsExperimentIdResults_Request = Simplify<(PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams extends never ? {} : {
|
|
14464
14638
|
params: PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14465
14639
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14480,7 +14654,7 @@ export interface PostDatasetsDatasetIdExperimentsExperimentIdResults_RouteContra
|
|
|
14480
14654
|
responseType: 'json';
|
|
14481
14655
|
}
|
|
14482
14656
|
export type PostDatasetsDatasetIdExperimentsExperimentIdFinalize_PathParams = PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14483
|
-
export type PostDatasetsDatasetIdExperimentsExperimentIdFinalize_Response =
|
|
14657
|
+
export type PostDatasetsDatasetIdExperimentsExperimentIdFinalize_Response = Shared_Type_149;
|
|
14484
14658
|
export type PostDatasetsDatasetIdExperimentsExperimentIdFinalize_Request = Simplify<(PostDatasetsDatasetIdExperimentsExperimentIdFinalize_PathParams extends never ? {} : {
|
|
14485
14659
|
params: PostDatasetsDatasetIdExperimentsExperimentIdFinalize_PathParams;
|
|
14486
14660
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14501,7 +14675,7 @@ export interface PostDatasetsDatasetIdExperimentsExperimentIdFinalize_RouteContr
|
|
|
14501
14675
|
responseType: 'json';
|
|
14502
14676
|
}
|
|
14503
14677
|
export type GetDatasetsDatasetIdExperimentsExperimentId_PathParams = PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14504
|
-
export type GetDatasetsDatasetIdExperimentsExperimentId_Response =
|
|
14678
|
+
export type GetDatasetsDatasetIdExperimentsExperimentId_Response = Shared_Type_149 | null;
|
|
14505
14679
|
export type GetDatasetsDatasetIdExperimentsExperimentId_Request = Simplify<(GetDatasetsDatasetIdExperimentsExperimentId_PathParams extends never ? {} : {
|
|
14506
14680
|
params: GetDatasetsDatasetIdExperimentsExperimentId_PathParams;
|
|
14507
14681
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14521,10 +14695,41 @@ export interface GetDatasetsDatasetIdExperimentsExperimentId_RouteContract {
|
|
|
14521
14695
|
response: GetDatasetsDatasetIdExperimentsExperimentId_Response;
|
|
14522
14696
|
responseType: 'json';
|
|
14523
14697
|
}
|
|
14698
|
+
export type PatchDatasetsDatasetIdExperimentsExperimentId_PathParams = PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14699
|
+
export type PatchDatasetsDatasetIdExperimentsExperimentId_Body = {
|
|
14700
|
+
/** New name of the experiment */
|
|
14701
|
+
name?: string | undefined;
|
|
14702
|
+
/** New description of the experiment */
|
|
14703
|
+
description?: string | undefined;
|
|
14704
|
+
/** Replacement metadata for the experiment */
|
|
14705
|
+
metadata?: {
|
|
14706
|
+
[key: string]: unknown;
|
|
14707
|
+
} | undefined;
|
|
14708
|
+
};
|
|
14709
|
+
export type PatchDatasetsDatasetIdExperimentsExperimentId_Response = PostDatasetsDatasetIdExperimentsExperimentIdFinalize_Response;
|
|
14710
|
+
export type PatchDatasetsDatasetIdExperimentsExperimentId_Request = Simplify<(PatchDatasetsDatasetIdExperimentsExperimentId_PathParams extends never ? {} : {
|
|
14711
|
+
params: PatchDatasetsDatasetIdExperimentsExperimentId_PathParams;
|
|
14712
|
+
}) & (never extends never ? {} : {} extends never ? {
|
|
14713
|
+
query?: never;
|
|
14714
|
+
} : {
|
|
14715
|
+
query: never;
|
|
14716
|
+
}) & (PatchDatasetsDatasetIdExperimentsExperimentId_Body extends never ? {} : {} extends PatchDatasetsDatasetIdExperimentsExperimentId_Body ? {
|
|
14717
|
+
body?: PatchDatasetsDatasetIdExperimentsExperimentId_Body;
|
|
14718
|
+
} : {
|
|
14719
|
+
body: PatchDatasetsDatasetIdExperimentsExperimentId_Body;
|
|
14720
|
+
})>;
|
|
14721
|
+
export interface PatchDatasetsDatasetIdExperimentsExperimentId_RouteContract {
|
|
14722
|
+
pathParams: PatchDatasetsDatasetIdExperimentsExperimentId_PathParams;
|
|
14723
|
+
queryParams: never;
|
|
14724
|
+
body: PatchDatasetsDatasetIdExperimentsExperimentId_Body;
|
|
14725
|
+
request: PatchDatasetsDatasetIdExperimentsExperimentId_Request;
|
|
14726
|
+
response: PatchDatasetsDatasetIdExperimentsExperimentId_Response;
|
|
14727
|
+
responseType: 'json';
|
|
14728
|
+
}
|
|
14524
14729
|
export type GetDatasetsDatasetIdExperimentsExperimentIdResults_PathParams = PostDatasetsDatasetIdExperimentsExperimentIdResults_PathParams;
|
|
14525
14730
|
export type GetDatasetsDatasetIdExperimentsExperimentIdResults_QueryParams = GetScoresRunRunId_QueryParams;
|
|
14526
14731
|
export type GetDatasetsDatasetIdExperimentsExperimentIdResults_Response = {
|
|
14527
|
-
results:
|
|
14732
|
+
results: Shared_Type_151[];
|
|
14528
14733
|
pagination: {
|
|
14529
14734
|
total: number;
|
|
14530
14735
|
page: number;
|
|
@@ -14767,7 +14972,7 @@ export type GetBackgroundTasks_QueryParams = {
|
|
|
14767
14972
|
perPage?: number | undefined;
|
|
14768
14973
|
};
|
|
14769
14974
|
export type GetBackgroundTasks_Response = {
|
|
14770
|
-
tasks:
|
|
14975
|
+
tasks: Shared_Type_152[];
|
|
14771
14976
|
total: number;
|
|
14772
14977
|
};
|
|
14773
14978
|
export type GetBackgroundTasks_Request = Simplify<(never extends never ? {} : {
|
|
@@ -14792,7 +14997,7 @@ export interface GetBackgroundTasks_RouteContract {
|
|
|
14792
14997
|
export type GetBackgroundTasksBackgroundTaskId_PathParams = {
|
|
14793
14998
|
backgroundTaskId: string;
|
|
14794
14999
|
};
|
|
14795
|
-
export type GetBackgroundTasksBackgroundTaskId_Response =
|
|
15000
|
+
export type GetBackgroundTasksBackgroundTaskId_Response = Shared_Type_152;
|
|
14796
15001
|
export type GetBackgroundTasksBackgroundTaskId_Request = Simplify<(GetBackgroundTasksBackgroundTaskId_PathParams extends never ? {} : {
|
|
14797
15002
|
params: GetBackgroundTasksBackgroundTaskId_PathParams;
|
|
14798
15003
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14832,8 +15037,8 @@ export type GetEditorBuilderSettings_Response = {
|
|
|
14832
15037
|
configuration?: {
|
|
14833
15038
|
agent?: {
|
|
14834
15039
|
models?: {
|
|
14835
|
-
allowed?:
|
|
14836
|
-
default?:
|
|
15040
|
+
allowed?: Shared_Type_153[] | undefined;
|
|
15041
|
+
default?: Shared_Type_154 | undefined;
|
|
14837
15042
|
} | undefined;
|
|
14838
15043
|
tools?: {
|
|
14839
15044
|
allowed?: string[] | undefined;
|
|
@@ -14850,8 +15055,8 @@ export type GetEditorBuilderSettings_Response = {
|
|
|
14850
15055
|
modelPolicy?: {
|
|
14851
15056
|
active: boolean;
|
|
14852
15057
|
pickerVisible?: boolean | undefined;
|
|
14853
|
-
allowed?:
|
|
14854
|
-
default?:
|
|
15058
|
+
allowed?: Shared_Type_153[] | undefined;
|
|
15059
|
+
default?: Shared_Type_154 | undefined;
|
|
14855
15060
|
} | undefined;
|
|
14856
15061
|
picker?: {
|
|
14857
15062
|
visibleTools: string[] | null;
|
|
@@ -15485,7 +15690,7 @@ export type GetSchedules_QueryParams = {
|
|
|
15485
15690
|
name?: string | undefined;
|
|
15486
15691
|
};
|
|
15487
15692
|
export type GetSchedules_Response = {
|
|
15488
|
-
schedules: (
|
|
15693
|
+
schedules: (Shared_Type_157 | Shared_Type_159)[];
|
|
15489
15694
|
};
|
|
15490
15695
|
export type GetSchedules_Request = Simplify<(never extends never ? {} : {
|
|
15491
15696
|
params: never;
|
|
@@ -15509,7 +15714,7 @@ export interface GetSchedules_RouteContract {
|
|
|
15509
15714
|
export type GetSchedulesScheduleId_PathParams = {
|
|
15510
15715
|
scheduleId: string;
|
|
15511
15716
|
};
|
|
15512
|
-
export type GetSchedulesScheduleId_Response =
|
|
15717
|
+
export type GetSchedulesScheduleId_Response = Shared_Type_157 | Shared_Type_159;
|
|
15513
15718
|
export type GetSchedulesScheduleId_Request = Simplify<(GetSchedulesScheduleId_PathParams extends never ? {} : {
|
|
15514
15719
|
params: GetSchedulesScheduleId_PathParams;
|
|
15515
15720
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -15543,8 +15748,8 @@ export type PostSchedules_Body = {
|
|
|
15543
15748
|
attributes?: {
|
|
15544
15749
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
15545
15750
|
} | undefined;
|
|
15546
|
-
ifActive?:
|
|
15547
|
-
ifIdle?:
|
|
15751
|
+
ifActive?: Shared_Type_155 | undefined;
|
|
15752
|
+
ifIdle?: Shared_Type_156 | undefined;
|
|
15548
15753
|
providerOptions?: {
|
|
15549
15754
|
[key: string]: unknown;
|
|
15550
15755
|
} | undefined;
|
|
@@ -15600,8 +15805,8 @@ export type PatchSchedulesScheduleId_Body = {
|
|
|
15600
15805
|
attributes?: {
|
|
15601
15806
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
15602
15807
|
} | undefined;
|
|
15603
|
-
ifActive?:
|
|
15604
|
-
ifIdle?:
|
|
15808
|
+
ifActive?: Shared_Type_155 | undefined;
|
|
15809
|
+
ifIdle?: Shared_Type_156 | undefined;
|
|
15605
15810
|
providerOptions?: {
|
|
15606
15811
|
[key: string]: unknown;
|
|
15607
15812
|
} | undefined;
|
|
@@ -15672,7 +15877,7 @@ export type GetSchedulesScheduleIdTriggers_Response = {
|
|
|
15672
15877
|
metadata?: {
|
|
15673
15878
|
[key: string]: unknown;
|
|
15674
15879
|
} | undefined;
|
|
15675
|
-
run?:
|
|
15880
|
+
run?: Shared_Type_158 | undefined;
|
|
15676
15881
|
}[];
|
|
15677
15882
|
};
|
|
15678
15883
|
export type GetSchedulesScheduleIdTriggers_Request = Simplify<(GetSchedulesScheduleIdTriggers_PathParams extends never ? {} : {
|
|
@@ -17061,6 +17266,7 @@ export interface RouteTypes {
|
|
|
17061
17266
|
'GET /observability/traces/:traceId/trajectory': GetObservabilityTracesTraceIdTrajectory_RouteContract;
|
|
17062
17267
|
'POST /observability/traces/score': PostObservabilityTracesScore_RouteContract;
|
|
17063
17268
|
'GET /observability/traces/:traceId/:spanId/scores': GetObservabilityTracesTraceIdSpanIdScores_RouteContract;
|
|
17269
|
+
'POST /observability/traces/query': PostObservabilityTracesQuery_RouteContract;
|
|
17064
17270
|
'GET /observability/metrics': GetObservabilityMetrics_RouteContract;
|
|
17065
17271
|
'GET /observability/logs': GetObservabilityLogs_RouteContract;
|
|
17066
17272
|
'GET /observability/scores': GetObservabilityScores_RouteContract;
|
|
@@ -17248,6 +17454,7 @@ export interface RouteTypes {
|
|
|
17248
17454
|
'POST /datasets/:datasetId/experiments/:experimentId/results': PostDatasetsDatasetIdExperimentsExperimentIdResults_RouteContract;
|
|
17249
17455
|
'POST /datasets/:datasetId/experiments/:experimentId/finalize': PostDatasetsDatasetIdExperimentsExperimentIdFinalize_RouteContract;
|
|
17250
17456
|
'GET /datasets/:datasetId/experiments/:experimentId': GetDatasetsDatasetIdExperimentsExperimentId_RouteContract;
|
|
17457
|
+
'PATCH /datasets/:datasetId/experiments/:experimentId': PatchDatasetsDatasetIdExperimentsExperimentId_RouteContract;
|
|
17251
17458
|
'GET /datasets/:datasetId/experiments/:experimentId/results': GetDatasetsDatasetIdExperimentsExperimentIdResults_RouteContract;
|
|
17252
17459
|
'PATCH /datasets/:datasetId/experiments/:experimentId/results/:resultId': PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_RouteContract;
|
|
17253
17460
|
'POST /datasets/:datasetId/compare': PostDatasetsDatasetIdCompare_RouteContract;
|
|
@@ -17699,6 +17906,7 @@ export interface Client {
|
|
|
17699
17906
|
};
|
|
17700
17907
|
'/datasets/:datasetId/experiments/:experimentId': {
|
|
17701
17908
|
GET: GetDatasetsDatasetIdExperimentsExperimentId_RouteContract;
|
|
17909
|
+
PATCH: PatchDatasetsDatasetIdExperimentsExperimentId_RouteContract;
|
|
17702
17910
|
};
|
|
17703
17911
|
'/datasets/:datasetId/experiments/:experimentId/finalize': {
|
|
17704
17912
|
POST: PostDatasetsDatasetIdExperimentsExperimentIdFinalize_RouteContract;
|
|
@@ -17981,6 +18189,9 @@ export interface Client {
|
|
|
17981
18189
|
'/observability/traces/light': {
|
|
17982
18190
|
GET: GetObservabilityTracesLight_RouteContract;
|
|
17983
18191
|
};
|
|
18192
|
+
'/observability/traces/query': {
|
|
18193
|
+
POST: PostObservabilityTracesQuery_RouteContract;
|
|
18194
|
+
};
|
|
17984
18195
|
'/observability/traces/score': {
|
|
17985
18196
|
POST: PostObservabilityTracesScore_RouteContract;
|
|
17986
18197
|
};
|