@mastra/client-js 1.37.1-alpha.1 → 1.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +54 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/reference-client-js-workflows.md +92 -0
- package/dist/route-types.generated.d.ts +399 -379
- package/dist/route-types.generated.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -10,7 +10,7 @@ export type Simplify<T> = {
|
|
|
10
10
|
type Shared_Auxiliary_290 = string | number | boolean | null | Shared_Auxiliary_290[] | {
|
|
11
11
|
[key: string]: Shared_Auxiliary_290;
|
|
12
12
|
};
|
|
13
|
-
type
|
|
13
|
+
type Shared_Auxiliary_1074 = {
|
|
14
14
|
op: 'eq' | 'ne' | 'lt' | 'lte' | 'gt' | 'gte';
|
|
15
15
|
left: {
|
|
16
16
|
path: string;
|
|
@@ -42,17 +42,17 @@ type Shared_Auxiliary_1073 = {
|
|
|
42
42
|
};
|
|
43
43
|
} | {
|
|
44
44
|
op: 'and' | 'or';
|
|
45
|
-
args:
|
|
45
|
+
args: Shared_Auxiliary_1074[];
|
|
46
46
|
} | {
|
|
47
47
|
op: 'not';
|
|
48
|
-
arg:
|
|
48
|
+
arg: Shared_Auxiliary_1074;
|
|
49
49
|
};
|
|
50
|
-
type
|
|
50
|
+
type Shared_Auxiliary_1215 = {
|
|
51
51
|
id?: string | undefined;
|
|
52
52
|
name: string;
|
|
53
53
|
type: 'file' | 'folder';
|
|
54
54
|
content?: string | undefined;
|
|
55
|
-
children?:
|
|
55
|
+
children?: Shared_Auxiliary_1215[] | undefined;
|
|
56
56
|
};
|
|
57
57
|
type Shared_Type_0 = {
|
|
58
58
|
id: string;
|
|
@@ -262,7 +262,7 @@ type Shared_Type_16 = {
|
|
|
262
262
|
[key: string]: unknown;
|
|
263
263
|
};
|
|
264
264
|
/** Which processor phases to enable */
|
|
265
|
-
enabledPhases: ('processInput' | 'processInputStep' | 'processOutputStream' | 'processOutputResult' | 'processOutputStep')[];
|
|
265
|
+
enabledPhases: ('processInput' | 'processInputStep' | 'processOutputStream' | 'processOutputResult' | 'processOutputStep' | 'processToolResult')[];
|
|
266
266
|
};
|
|
267
267
|
type Shared_Type_17 = {
|
|
268
268
|
type: 'conditional';
|
|
@@ -854,7 +854,6 @@ type Shared_Type_54 = {
|
|
|
854
854
|
attributes?: {
|
|
855
855
|
[key: string]: string | number | boolean | null | undefined;
|
|
856
856
|
} | undefined;
|
|
857
|
-
type: 'user' | 'state' | 'reactive' | 'notification' | 'user-message' | 'system-reminder';
|
|
858
857
|
tagName?: string | undefined;
|
|
859
858
|
contents: string | (Shared_Type_49 | Shared_Type_50)[];
|
|
860
859
|
providerOptions?: {
|
|
@@ -862,8 +861,29 @@ type Shared_Type_54 = {
|
|
|
862
861
|
[key: string]: Shared_Auxiliary_290;
|
|
863
862
|
};
|
|
864
863
|
} | undefined;
|
|
864
|
+
type: 'state';
|
|
865
|
+
transient?: never | undefined;
|
|
865
866
|
};
|
|
866
867
|
type Shared_Type_55 = {
|
|
868
|
+
id?: string | undefined;
|
|
869
|
+
createdAt?: (string | Date) | undefined;
|
|
870
|
+
metadata?: {
|
|
871
|
+
[key: string]: Shared_Auxiliary_290;
|
|
872
|
+
} | undefined;
|
|
873
|
+
attributes?: {
|
|
874
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
875
|
+
} | undefined;
|
|
876
|
+
tagName?: string | undefined;
|
|
877
|
+
contents: string | (Shared_Type_49 | Shared_Type_50)[];
|
|
878
|
+
providerOptions?: {
|
|
879
|
+
[key: string]: {
|
|
880
|
+
[key: string]: Shared_Auxiliary_290;
|
|
881
|
+
};
|
|
882
|
+
} | undefined;
|
|
883
|
+
type: 'user' | 'reactive' | 'notification' | 'user-message' | 'system-reminder';
|
|
884
|
+
transient?: boolean | undefined;
|
|
885
|
+
};
|
|
886
|
+
type Shared_Type_56 = {
|
|
867
887
|
type: 'sso' | 'credentials' | 'both';
|
|
868
888
|
sso?: {
|
|
869
889
|
provider: string;
|
|
@@ -875,7 +895,7 @@ type Shared_Type_55 = {
|
|
|
875
895
|
signUpEnabled?: boolean | undefined;
|
|
876
896
|
description?: string | undefined;
|
|
877
897
|
};
|
|
878
|
-
type
|
|
898
|
+
type Shared_Type_57 = {
|
|
879
899
|
id: string;
|
|
880
900
|
description?: string | undefined;
|
|
881
901
|
stateSchema?: string | undefined;
|
|
@@ -889,12 +909,12 @@ type Shared_Type_56 = {
|
|
|
889
909
|
[key: string]: unknown;
|
|
890
910
|
} | undefined;
|
|
891
911
|
};
|
|
892
|
-
type
|
|
912
|
+
type Shared_Type_58 = {
|
|
893
913
|
steps: {
|
|
894
|
-
[key: string]:
|
|
914
|
+
[key: string]: Shared_Type_57;
|
|
895
915
|
};
|
|
896
916
|
allSteps: {
|
|
897
|
-
[key: string]:
|
|
917
|
+
[key: string]: Shared_Type_57;
|
|
898
918
|
};
|
|
899
919
|
name?: string | undefined;
|
|
900
920
|
description?: string | undefined;
|
|
@@ -911,7 +931,7 @@ type Shared_Type_57 = {
|
|
|
911
931
|
isProcessorWorkflow?: boolean | undefined;
|
|
912
932
|
origin?: ('code' | 'stored') | undefined;
|
|
913
933
|
};
|
|
914
|
-
type
|
|
934
|
+
type Shared_Type_59 = {
|
|
915
935
|
id: string;
|
|
916
936
|
role: 'user' | 'assistant' | 'system' | 'tool' | 'signal';
|
|
917
937
|
createdAt?: Date | undefined;
|
|
@@ -923,7 +943,7 @@ type Shared_Type_58 = {
|
|
|
923
943
|
} | string;
|
|
924
944
|
[x: string]: unknown;
|
|
925
945
|
};
|
|
926
|
-
type
|
|
946
|
+
type Shared_Type_60 = {
|
|
927
947
|
type: 'json_schema';
|
|
928
948
|
name: string;
|
|
929
949
|
description?: string | undefined;
|
|
@@ -932,7 +952,7 @@ type Shared_Type_59 = {
|
|
|
932
952
|
};
|
|
933
953
|
strict?: boolean | undefined;
|
|
934
954
|
};
|
|
935
|
-
type
|
|
955
|
+
type Shared_Type_61 = {
|
|
936
956
|
/** OpenAI provider options such as previousResponseId, conversation, or responseId */
|
|
937
957
|
openai?: {
|
|
938
958
|
[key: string]: unknown;
|
|
@@ -943,7 +963,7 @@ type Shared_Type_60 = {
|
|
|
943
963
|
} | undefined;
|
|
944
964
|
[x: string]: unknown;
|
|
945
965
|
};
|
|
946
|
-
type
|
|
966
|
+
type Shared_Type_62 = {
|
|
947
967
|
id: string;
|
|
948
968
|
type: 'function_call';
|
|
949
969
|
call_id: string;
|
|
@@ -951,7 +971,7 @@ type Shared_Type_61 = {
|
|
|
951
971
|
arguments: string;
|
|
952
972
|
status?: ('in_progress' | 'completed' | 'incomplete') | undefined;
|
|
953
973
|
};
|
|
954
|
-
type
|
|
974
|
+
type Shared_Type_63 = {
|
|
955
975
|
id: string;
|
|
956
976
|
title?: string | undefined;
|
|
957
977
|
resourceId: string;
|
|
@@ -961,7 +981,7 @@ type Shared_Type_62 = {
|
|
|
961
981
|
[key: string]: unknown;
|
|
962
982
|
} | undefined;
|
|
963
983
|
};
|
|
964
|
-
type
|
|
984
|
+
type Shared_Type_64 = {
|
|
965
985
|
id?: string | undefined;
|
|
966
986
|
cycleId: string;
|
|
967
987
|
observations: string;
|
|
@@ -981,14 +1001,14 @@ type Shared_Type_63 = {
|
|
|
981
1001
|
error: string;
|
|
982
1002
|
}[] | undefined;
|
|
983
1003
|
};
|
|
984
|
-
type
|
|
1004
|
+
type Shared_Type_65 = {
|
|
985
1005
|
id: string;
|
|
986
1006
|
scope: 'thread' | 'resource';
|
|
987
1007
|
resourceId: string;
|
|
988
1008
|
threadId: string | null;
|
|
989
1009
|
activeObservations: string;
|
|
990
1010
|
bufferedObservations?: string | undefined;
|
|
991
|
-
bufferedObservationChunks?:
|
|
1011
|
+
bufferedObservationChunks?: Shared_Type_64[] | undefined;
|
|
992
1012
|
bufferedReflection?: string | undefined;
|
|
993
1013
|
originType: 'initial' | 'observation' | 'reflection';
|
|
994
1014
|
generationCount: number;
|
|
@@ -1007,7 +1027,7 @@ type Shared_Type_64 = {
|
|
|
1007
1027
|
createdAt: Date;
|
|
1008
1028
|
updatedAt: Date;
|
|
1009
1029
|
};
|
|
1010
|
-
type
|
|
1030
|
+
type Shared_Type_66 = {
|
|
1011
1031
|
dateRange?: {
|
|
1012
1032
|
start?: Date | undefined;
|
|
1013
1033
|
end?: Date | undefined;
|
|
@@ -1019,7 +1039,7 @@ type Shared_Type_65 = {
|
|
|
1019
1039
|
[key: string]: string | number | boolean | null;
|
|
1020
1040
|
} | undefined;
|
|
1021
1041
|
};
|
|
1022
|
-
type
|
|
1042
|
+
type Shared_Type_67 = {
|
|
1023
1043
|
config: {
|
|
1024
1044
|
id: string;
|
|
1025
1045
|
name?: string | undefined;
|
|
@@ -1028,8 +1048,8 @@ type Shared_Type_66 = {
|
|
|
1028
1048
|
judge?: unknown | undefined;
|
|
1029
1049
|
};
|
|
1030
1050
|
};
|
|
1031
|
-
type
|
|
1032
|
-
scorer:
|
|
1051
|
+
type Shared_Type_68 = {
|
|
1052
|
+
scorer: Shared_Type_67;
|
|
1033
1053
|
sampling?: {} | undefined;
|
|
1034
1054
|
agentIds: string[];
|
|
1035
1055
|
agentNames: string[];
|
|
@@ -1037,7 +1057,7 @@ type Shared_Type_67 = {
|
|
|
1037
1057
|
isRegistered: boolean;
|
|
1038
1058
|
source: 'code' | 'stored' | 'fs';
|
|
1039
1059
|
};
|
|
1040
|
-
type
|
|
1060
|
+
type Shared_Type_69 = {
|
|
1041
1061
|
/** Start of date range (inclusive by default) */
|
|
1042
1062
|
start?: Date | undefined;
|
|
1043
1063
|
/** End of date range (inclusive by default) */
|
|
@@ -1047,9 +1067,9 @@ type Shared_Type_68 = {
|
|
|
1047
1067
|
/** When true, excludes the end date from results (uses < instead of <=) */
|
|
1048
1068
|
endExclusive?: boolean | undefined;
|
|
1049
1069
|
};
|
|
1050
|
-
type
|
|
1051
|
-
type
|
|
1052
|
-
type
|
|
1070
|
+
type Shared_Type_70 = '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';
|
|
1071
|
+
type Shared_Type_71 = 'agent' | 'scorer' | 'rag_ingestion' | 'trajectory' | 'input_processor' | 'input_step_processor' | 'output_processor' | 'output_step_processor' | 'tool_result_processor' | 'workflow_step' | 'tool' | 'workflow_run' | 'memory';
|
|
1072
|
+
type Shared_Type_72 = {
|
|
1053
1073
|
/** Total number of items available */
|
|
1054
1074
|
total: number;
|
|
1055
1075
|
/** Current page */
|
|
@@ -1059,13 +1079,13 @@ type Shared_Type_71 = {
|
|
|
1059
1079
|
/** True if more pages are available */
|
|
1060
1080
|
hasMore: boolean;
|
|
1061
1081
|
};
|
|
1062
|
-
type
|
|
1082
|
+
type Shared_Type_73 = {
|
|
1063
1083
|
/** Maximum number of updates requested for this delta poll */
|
|
1064
1084
|
limit: number;
|
|
1065
1085
|
/** True when more matching updates remain after this response */
|
|
1066
1086
|
hasMore: boolean;
|
|
1067
1087
|
};
|
|
1068
|
-
type
|
|
1088
|
+
type Shared_Type_74 = {
|
|
1069
1089
|
/** Unique trace identifier */
|
|
1070
1090
|
traceId: string;
|
|
1071
1091
|
/** Unique span identifier within a trace */
|
|
@@ -1073,19 +1093,19 @@ type Shared_Type_73 = {
|
|
|
1073
1093
|
/** Human-readable span name */
|
|
1074
1094
|
name: string;
|
|
1075
1095
|
/** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
|
|
1076
|
-
spanType:
|
|
1096
|
+
spanType: Shared_Type_70;
|
|
1077
1097
|
/** Whether this is an event (point-in-time) vs a span (duration) */
|
|
1078
1098
|
isEvent: boolean;
|
|
1079
1099
|
/** When the span started */
|
|
1080
1100
|
startedAt: Date;
|
|
1081
1101
|
parentSpanId?: (string | null) | undefined;
|
|
1082
|
-
entityType?: (
|
|
1102
|
+
entityType?: (Shared_Type_71 | null) | undefined;
|
|
1083
1103
|
entityId?: (string | null) | undefined;
|
|
1084
1104
|
entityName?: (string | null) | undefined;
|
|
1085
|
-
parentEntityType?: (
|
|
1105
|
+
parentEntityType?: (Shared_Type_71 | null) | undefined;
|
|
1086
1106
|
parentEntityId?: (string | null) | undefined;
|
|
1087
1107
|
parentEntityName?: (string | null) | undefined;
|
|
1088
|
-
rootEntityType?: (
|
|
1108
|
+
rootEntityType?: (Shared_Type_71 | null) | undefined;
|
|
1089
1109
|
rootEntityId?: (string | null) | undefined;
|
|
1090
1110
|
rootEntityName?: (string | null) | undefined;
|
|
1091
1111
|
userId?: (string | null) | undefined;
|
|
@@ -1129,7 +1149,7 @@ type Shared_Type_73 = {
|
|
|
1129
1149
|
/** Current status of the trace */
|
|
1130
1150
|
status: 'success' | 'error' | 'running';
|
|
1131
1151
|
};
|
|
1132
|
-
type
|
|
1152
|
+
type Shared_Type_75 = {
|
|
1133
1153
|
/** Unique trace identifier */
|
|
1134
1154
|
traceId: string;
|
|
1135
1155
|
/** Unique span identifier within a trace */
|
|
@@ -1137,7 +1157,7 @@ type Shared_Type_74 = {
|
|
|
1137
1157
|
/** Human-readable span name */
|
|
1138
1158
|
name: string;
|
|
1139
1159
|
/** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
|
|
1140
|
-
spanType:
|
|
1160
|
+
spanType: Shared_Type_70;
|
|
1141
1161
|
/** Whether this is an event (point-in-time) vs a span (duration) */
|
|
1142
1162
|
isEvent: boolean;
|
|
1143
1163
|
/** When the span started */
|
|
@@ -1145,7 +1165,7 @@ type Shared_Type_74 = {
|
|
|
1145
1165
|
parentSpanId?: (string | null) | undefined;
|
|
1146
1166
|
endedAt?: (Date | null) | undefined;
|
|
1147
1167
|
error?: (unknown | null) | undefined;
|
|
1148
|
-
entityType?: (
|
|
1168
|
+
entityType?: (Shared_Type_71 | null) | undefined;
|
|
1149
1169
|
entityId?: (string | null) | undefined;
|
|
1150
1170
|
entityName?: (string | null) | undefined;
|
|
1151
1171
|
/** Database record creation time */
|
|
@@ -1153,7 +1173,7 @@ type Shared_Type_74 = {
|
|
|
1153
1173
|
/** Database record last update time */
|
|
1154
1174
|
updatedAt: Date | null;
|
|
1155
1175
|
};
|
|
1156
|
-
type
|
|
1176
|
+
type Shared_Type_76 = {
|
|
1157
1177
|
/** Unique trace identifier */
|
|
1158
1178
|
traceId: string;
|
|
1159
1179
|
/** Unique span identifier within a trace */
|
|
@@ -1161,19 +1181,19 @@ type Shared_Type_75 = {
|
|
|
1161
1181
|
/** Human-readable span name */
|
|
1162
1182
|
name: string;
|
|
1163
1183
|
/** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
|
|
1164
|
-
spanType:
|
|
1184
|
+
spanType: Shared_Type_70;
|
|
1165
1185
|
/** Whether this is an event (point-in-time) vs a span (duration) */
|
|
1166
1186
|
isEvent: boolean;
|
|
1167
1187
|
/** When the span started */
|
|
1168
1188
|
startedAt: Date;
|
|
1169
1189
|
parentSpanId?: (string | null) | undefined;
|
|
1170
|
-
entityType?: (
|
|
1190
|
+
entityType?: (Shared_Type_71 | null) | undefined;
|
|
1171
1191
|
entityId?: (string | null) | undefined;
|
|
1172
1192
|
entityName?: (string | null) | undefined;
|
|
1173
|
-
parentEntityType?: (
|
|
1193
|
+
parentEntityType?: (Shared_Type_71 | null) | undefined;
|
|
1174
1194
|
parentEntityId?: (string | null) | undefined;
|
|
1175
1195
|
parentEntityName?: (string | null) | undefined;
|
|
1176
|
-
rootEntityType?: (
|
|
1196
|
+
rootEntityType?: (Shared_Type_71 | null) | undefined;
|
|
1177
1197
|
rootEntityId?: (string | null) | undefined;
|
|
1178
1198
|
rootEntityName?: (string | null) | undefined;
|
|
1179
1199
|
userId?: (string | null) | undefined;
|
|
@@ -1215,7 +1235,7 @@ type Shared_Type_75 = {
|
|
|
1215
1235
|
/** Database record last update time */
|
|
1216
1236
|
updatedAt: Date | null;
|
|
1217
1237
|
};
|
|
1218
|
-
type
|
|
1238
|
+
type Shared_Type_77 = {
|
|
1219
1239
|
/** Unique id for this score event */
|
|
1220
1240
|
scoreId?: (string | null) | undefined;
|
|
1221
1241
|
/** When the score was recorded */
|
|
@@ -1233,13 +1253,13 @@ type Shared_Type_76 = {
|
|
|
1233
1253
|
/** Score value (range defined by scorer) */
|
|
1234
1254
|
score: number;
|
|
1235
1255
|
reason?: (string | null) | undefined;
|
|
1236
|
-
entityType?: (
|
|
1256
|
+
entityType?: (Shared_Type_71 | null) | undefined;
|
|
1237
1257
|
entityId?: (string | null) | undefined;
|
|
1238
1258
|
entityName?: (string | null) | undefined;
|
|
1239
|
-
parentEntityType?: (
|
|
1259
|
+
parentEntityType?: (Shared_Type_71 | null) | undefined;
|
|
1240
1260
|
parentEntityId?: (string | null) | undefined;
|
|
1241
1261
|
parentEntityName?: (string | null) | undefined;
|
|
1242
|
-
rootEntityType?: (
|
|
1262
|
+
rootEntityType?: (Shared_Type_71 | null) | undefined;
|
|
1243
1263
|
rootEntityId?: (string | null) | undefined;
|
|
1244
1264
|
rootEntityName?: (string | null) | undefined;
|
|
1245
1265
|
userId?: (string | null) | undefined;
|
|
@@ -1267,15 +1287,15 @@ type Shared_Type_76 = {
|
|
|
1267
1287
|
[key: string]: unknown;
|
|
1268
1288
|
} | null) | undefined;
|
|
1269
1289
|
};
|
|
1270
|
-
type
|
|
1290
|
+
type Shared_Type_78 = {
|
|
1271
1291
|
/** Filter by timestamp range */
|
|
1272
|
-
timestamp?:
|
|
1292
|
+
timestamp?: Shared_Type_69 | undefined;
|
|
1273
1293
|
/** Filter by trace ID */
|
|
1274
1294
|
traceId?: string | undefined;
|
|
1275
1295
|
/** Filter by span ID */
|
|
1276
1296
|
spanId?: string | undefined;
|
|
1277
1297
|
/** Entity type (e.g., 'agent' | 'processor' | 'tool' | 'workflow') */
|
|
1278
|
-
entityType?:
|
|
1298
|
+
entityType?: Shared_Type_71 | undefined;
|
|
1279
1299
|
/** Name of the entity */
|
|
1280
1300
|
entityName?: string | undefined;
|
|
1281
1301
|
/** Version ID of the entity that produced this signal (e.g., agent version, workflow version) */
|
|
@@ -1295,11 +1315,11 @@ type Shared_Type_77 = {
|
|
|
1295
1315
|
/** Environment (e.g., "production" | "staging" | "development") */
|
|
1296
1316
|
environment?: string | undefined;
|
|
1297
1317
|
/** Entity type of the parent entity */
|
|
1298
|
-
parentEntityType?:
|
|
1318
|
+
parentEntityType?: Shared_Type_71 | undefined;
|
|
1299
1319
|
/** Name of the parent entity */
|
|
1300
1320
|
parentEntityName?: string | undefined;
|
|
1301
1321
|
/** Entity type of the root entity */
|
|
1302
|
-
rootEntityType?:
|
|
1322
|
+
rootEntityType?: Shared_Type_71 | undefined;
|
|
1303
1323
|
/** Name of the root entity */
|
|
1304
1324
|
rootEntityName?: string | undefined;
|
|
1305
1325
|
/** Broader resource context (Mastra memory compatibility) */
|
|
@@ -1323,15 +1343,15 @@ type Shared_Type_77 = {
|
|
|
1323
1343
|
/** Filter by how the score was produced */
|
|
1324
1344
|
source?: string | undefined;
|
|
1325
1345
|
};
|
|
1326
|
-
type
|
|
1346
|
+
type Shared_Type_79 = {
|
|
1327
1347
|
/** Filter by timestamp range */
|
|
1328
|
-
timestamp?:
|
|
1348
|
+
timestamp?: Shared_Type_69 | undefined;
|
|
1329
1349
|
/** Filter by trace ID */
|
|
1330
1350
|
traceId?: string | undefined;
|
|
1331
1351
|
/** Filter by span ID */
|
|
1332
1352
|
spanId?: string | undefined;
|
|
1333
1353
|
/** Entity type (e.g., 'agent' | 'processor' | 'tool' | 'workflow') */
|
|
1334
|
-
entityType?:
|
|
1354
|
+
entityType?: Shared_Type_71 | undefined;
|
|
1335
1355
|
/** Name of the entity */
|
|
1336
1356
|
entityName?: string | undefined;
|
|
1337
1357
|
/** Version ID of the entity that produced this signal (e.g., agent version, workflow version) */
|
|
@@ -1351,11 +1371,11 @@ type Shared_Type_78 = {
|
|
|
1351
1371
|
/** Environment (e.g., "production" | "staging" | "development") */
|
|
1352
1372
|
environment?: string | undefined;
|
|
1353
1373
|
/** Entity type of the parent entity */
|
|
1354
|
-
parentEntityType?:
|
|
1374
|
+
parentEntityType?: Shared_Type_71 | undefined;
|
|
1355
1375
|
/** Name of the parent entity */
|
|
1356
1376
|
parentEntityName?: string | undefined;
|
|
1357
1377
|
/** Entity type of the root entity */
|
|
1358
|
-
rootEntityType?:
|
|
1378
|
+
rootEntityType?: Shared_Type_71 | undefined;
|
|
1359
1379
|
/** Name of the root entity */
|
|
1360
1380
|
rootEntityName?: string | undefined;
|
|
1361
1381
|
/** Broader resource context (Mastra memory compatibility) */
|
|
@@ -1381,16 +1401,16 @@ type Shared_Type_78 = {
|
|
|
1381
1401
|
/** User who provided the feedback */
|
|
1382
1402
|
feedbackUserId?: string | undefined;
|
|
1383
1403
|
};
|
|
1384
|
-
type
|
|
1385
|
-
type
|
|
1404
|
+
type Shared_Type_80 = 'entityType' | 'entityName' | 'parentEntityType' | 'parentEntityName' | 'rootEntityType' | 'rootEntityName' | 'name' | 'provider' | 'model' | 'environment' | 'executionSource' | 'serviceName' | 'threadId' | 'resourceId';
|
|
1405
|
+
type Shared_Type_81 = {
|
|
1386
1406
|
/** Filter by timestamp range */
|
|
1387
|
-
timestamp?:
|
|
1407
|
+
timestamp?: Shared_Type_69 | undefined;
|
|
1388
1408
|
/** Filter by trace ID */
|
|
1389
1409
|
traceId?: string | undefined;
|
|
1390
1410
|
/** Filter by span ID */
|
|
1391
1411
|
spanId?: string | undefined;
|
|
1392
1412
|
/** Entity type (e.g., 'agent' | 'processor' | 'tool' | 'workflow') */
|
|
1393
|
-
entityType?:
|
|
1413
|
+
entityType?: Shared_Type_71 | undefined;
|
|
1394
1414
|
/** Name of the entity */
|
|
1395
1415
|
entityName?: string | undefined;
|
|
1396
1416
|
/** Version ID of the entity that produced this signal (e.g., agent version, workflow version) */
|
|
@@ -1410,11 +1430,11 @@ type Shared_Type_80 = {
|
|
|
1410
1430
|
/** Environment (e.g., "production" | "staging" | "development") */
|
|
1411
1431
|
environment?: string | undefined;
|
|
1412
1432
|
/** Entity type of the parent entity */
|
|
1413
|
-
parentEntityType?:
|
|
1433
|
+
parentEntityType?: Shared_Type_71 | undefined;
|
|
1414
1434
|
/** Name of the parent entity */
|
|
1415
1435
|
parentEntityName?: string | undefined;
|
|
1416
1436
|
/** Entity type of the root entity */
|
|
1417
|
-
rootEntityType?:
|
|
1437
|
+
rootEntityType?: Shared_Type_71 | undefined;
|
|
1418
1438
|
/** Name of the root entity */
|
|
1419
1439
|
rootEntityName?: string | undefined;
|
|
1420
1440
|
/** Broader resource context (Mastra memory compatibility) */
|
|
@@ -1448,7 +1468,7 @@ type Shared_Type_80 = {
|
|
|
1448
1468
|
[key: string]: string;
|
|
1449
1469
|
} | undefined;
|
|
1450
1470
|
};
|
|
1451
|
-
type
|
|
1471
|
+
type Shared_Type_82 = {
|
|
1452
1472
|
/** Part type - text for TextParts */
|
|
1453
1473
|
kind: 'text';
|
|
1454
1474
|
/** Text content */
|
|
@@ -1458,7 +1478,7 @@ type Shared_Type_81 = {
|
|
|
1458
1478
|
[key: string]: unknown;
|
|
1459
1479
|
} | undefined;
|
|
1460
1480
|
};
|
|
1461
|
-
type
|
|
1481
|
+
type Shared_Type_83 = {
|
|
1462
1482
|
/** base64 encoded content of the file */
|
|
1463
1483
|
bytes: string;
|
|
1464
1484
|
/** Optional mimeType for the file */
|
|
@@ -1466,7 +1486,7 @@ type Shared_Type_82 = {
|
|
|
1466
1486
|
/** Optional name for the file */
|
|
1467
1487
|
name?: string | undefined;
|
|
1468
1488
|
};
|
|
1469
|
-
type
|
|
1489
|
+
type Shared_Type_84 = {
|
|
1470
1490
|
/** URL for the File content */
|
|
1471
1491
|
uri: string;
|
|
1472
1492
|
/** Optional mimeType for the file */
|
|
@@ -1474,17 +1494,17 @@ type Shared_Type_83 = {
|
|
|
1474
1494
|
/** Optional name for the file */
|
|
1475
1495
|
name?: string | undefined;
|
|
1476
1496
|
};
|
|
1477
|
-
type
|
|
1497
|
+
type Shared_Type_85 = {
|
|
1478
1498
|
/** Part type - file for FileParts */
|
|
1479
1499
|
kind: 'file';
|
|
1480
1500
|
/** File content either as url or bytes */
|
|
1481
|
-
file:
|
|
1501
|
+
file: Shared_Type_83 | Shared_Type_84;
|
|
1482
1502
|
/** Optional metadata associated with the part */
|
|
1483
1503
|
metadata?: {
|
|
1484
1504
|
[key: string]: unknown;
|
|
1485
1505
|
} | undefined;
|
|
1486
1506
|
};
|
|
1487
|
-
type
|
|
1507
|
+
type Shared_Type_86 = {
|
|
1488
1508
|
/** Part type - data for DataParts */
|
|
1489
1509
|
kind: 'data';
|
|
1490
1510
|
/** Structured data content */
|
|
@@ -1496,7 +1516,7 @@ type Shared_Type_85 = {
|
|
|
1496
1516
|
[key: string]: unknown;
|
|
1497
1517
|
} | undefined;
|
|
1498
1518
|
};
|
|
1499
|
-
type
|
|
1519
|
+
type Shared_Type_87 = {
|
|
1500
1520
|
/** Event type */
|
|
1501
1521
|
kind: 'message';
|
|
1502
1522
|
/** Identifier created by the message creator */
|
|
@@ -1504,7 +1524,7 @@ type Shared_Type_86 = {
|
|
|
1504
1524
|
/** Message sender's role */
|
|
1505
1525
|
role: 'user' | 'agent';
|
|
1506
1526
|
/** Message content */
|
|
1507
|
-
parts: (
|
|
1527
|
+
parts: (Shared_Type_82 | Shared_Type_85 | Shared_Type_86)[];
|
|
1508
1528
|
/** The context the message is associated with */
|
|
1509
1529
|
contextId?: string | undefined;
|
|
1510
1530
|
/** Identifier of task the message is related to */
|
|
@@ -1518,39 +1538,39 @@ type Shared_Type_86 = {
|
|
|
1518
1538
|
[key: string]: unknown;
|
|
1519
1539
|
} | undefined;
|
|
1520
1540
|
};
|
|
1521
|
-
type
|
|
1541
|
+
type Shared_Type_88 = {
|
|
1522
1542
|
/** Supported authentication schemes - e.g. Basic, Bearer */
|
|
1523
1543
|
schemes: string[];
|
|
1524
1544
|
/** Optional credentials */
|
|
1525
1545
|
credentials?: string | undefined;
|
|
1526
1546
|
};
|
|
1527
|
-
type
|
|
1547
|
+
type Shared_Type_89 = {
|
|
1528
1548
|
/** URL for sending the push notifications */
|
|
1529
1549
|
url: string;
|
|
1530
1550
|
/** Push Notification ID - created by server to support multiple callbacks */
|
|
1531
1551
|
id?: string | undefined;
|
|
1532
1552
|
/** Token unique to this task/session */
|
|
1533
1553
|
token?: string | undefined;
|
|
1534
|
-
authentication?:
|
|
1554
|
+
authentication?: Shared_Type_88 | undefined;
|
|
1535
1555
|
};
|
|
1536
|
-
type
|
|
1556
|
+
type Shared_Type_90 = {
|
|
1537
1557
|
/** Accepted output modalities by the client */
|
|
1538
1558
|
acceptedOutputModes?: string[] | undefined;
|
|
1539
1559
|
/** If the server should treat the client as a blocking request */
|
|
1540
1560
|
blocking?: boolean | undefined;
|
|
1541
1561
|
/** Number of recent messages to be retrieved */
|
|
1542
1562
|
historyLength?: number | undefined;
|
|
1543
|
-
pushNotificationConfig?:
|
|
1563
|
+
pushNotificationConfig?: Shared_Type_89 | undefined;
|
|
1544
1564
|
};
|
|
1545
|
-
type
|
|
1546
|
-
message:
|
|
1547
|
-
configuration?:
|
|
1565
|
+
type Shared_Type_91 = {
|
|
1566
|
+
message: Shared_Type_87;
|
|
1567
|
+
configuration?: Shared_Type_90 | undefined;
|
|
1548
1568
|
/** Extension metadata */
|
|
1549
1569
|
metadata?: {
|
|
1550
1570
|
[key: string]: unknown;
|
|
1551
1571
|
} | undefined;
|
|
1552
1572
|
};
|
|
1553
|
-
type
|
|
1573
|
+
type Shared_Type_92 = {
|
|
1554
1574
|
name: string;
|
|
1555
1575
|
description?: string | undefined;
|
|
1556
1576
|
inputSchema: unknown;
|
|
@@ -1560,18 +1580,18 @@ type Shared_Type_91 = {
|
|
|
1560
1580
|
[key: string]: unknown;
|
|
1561
1581
|
} | undefined;
|
|
1562
1582
|
};
|
|
1563
|
-
type
|
|
1583
|
+
type Shared_Type_93 = (({
|
|
1564
1584
|
[key: string]: {
|
|
1565
1585
|
description?: string | undefined;
|
|
1566
1586
|
rules?: Shared_Type_9 | undefined;
|
|
1567
1587
|
};
|
|
1568
1588
|
} | Shared_Type_12[]) | undefined) | undefined;
|
|
1569
|
-
type
|
|
1589
|
+
type Shared_Type_94 = ((Shared_Type_4 | {
|
|
1570
1590
|
/** Default options for agent execution */
|
|
1571
1591
|
value: Shared_Type_4;
|
|
1572
1592
|
rules?: Shared_Type_9 | undefined;
|
|
1573
1593
|
}[]) | undefined) | undefined;
|
|
1574
|
-
type
|
|
1594
|
+
type Shared_Type_95 = (({
|
|
1575
1595
|
[key: string]: Shared_Type_13;
|
|
1576
1596
|
} | {
|
|
1577
1597
|
value: {
|
|
@@ -1579,7 +1599,7 @@ type Shared_Type_94 = (({
|
|
|
1579
1599
|
};
|
|
1580
1600
|
rules?: Shared_Type_9 | undefined;
|
|
1581
1601
|
}[]) | undefined) | undefined;
|
|
1582
|
-
type
|
|
1602
|
+
type Shared_Type_96 = (({
|
|
1583
1603
|
[key: string]: Shared_Type_15;
|
|
1584
1604
|
} | {
|
|
1585
1605
|
value: {
|
|
@@ -1587,7 +1607,7 @@ type Shared_Type_95 = (({
|
|
|
1587
1607
|
};
|
|
1588
1608
|
rules?: Shared_Type_9 | undefined;
|
|
1589
1609
|
}[]) | undefined) | undefined;
|
|
1590
|
-
type
|
|
1610
|
+
type Shared_Type_97 = (({
|
|
1591
1611
|
[key: string]: Shared_Type_28;
|
|
1592
1612
|
} | {
|
|
1593
1613
|
value: {
|
|
@@ -1595,14 +1615,14 @@ type Shared_Type_96 = (({
|
|
|
1595
1615
|
};
|
|
1596
1616
|
rules?: Shared_Type_9 | undefined;
|
|
1597
1617
|
}[]) | undefined) | undefined;
|
|
1598
|
-
type
|
|
1618
|
+
type Shared_Type_98 = ((({
|
|
1599
1619
|
type: 'id';
|
|
1600
1620
|
workspaceId: string;
|
|
1601
1621
|
} | {
|
|
1602
1622
|
type: 'inline';
|
|
1603
1623
|
config: Shared_Type_36;
|
|
1604
1624
|
} | Shared_Type_37) | Shared_Type_38[]) | undefined) | undefined;
|
|
1605
|
-
type
|
|
1625
|
+
type Shared_Type_99 = {
|
|
1606
1626
|
/** Unique identifier for the version (UUID) */
|
|
1607
1627
|
id: string;
|
|
1608
1628
|
/** ID of the agent this version belongs to */
|
|
@@ -1694,7 +1714,7 @@ type Shared_Type_98 = {
|
|
|
1694
1714
|
/** When this version was created */
|
|
1695
1715
|
createdAt: Date;
|
|
1696
1716
|
};
|
|
1697
|
-
type
|
|
1717
|
+
type Shared_Type_100 = {
|
|
1698
1718
|
/** The field path that changed */
|
|
1699
1719
|
field: string;
|
|
1700
1720
|
/** The value in the "from" version */
|
|
@@ -1702,7 +1722,7 @@ type Shared_Type_99 = {
|
|
|
1702
1722
|
/** The value in the "to" version */
|
|
1703
1723
|
currentValue: unknown;
|
|
1704
1724
|
};
|
|
1705
|
-
type
|
|
1725
|
+
type Shared_Type_101 = {
|
|
1706
1726
|
id: string;
|
|
1707
1727
|
description?: string | undefined;
|
|
1708
1728
|
metadata?: {
|
|
@@ -1719,7 +1739,7 @@ type Shared_Type_100 = {
|
|
|
1719
1739
|
createdAt: Date | string;
|
|
1720
1740
|
updatedAt: Date | string;
|
|
1721
1741
|
};
|
|
1722
|
-
type
|
|
1742
|
+
type Shared_Type_102 = {
|
|
1723
1743
|
type: 'agent';
|
|
1724
1744
|
id: string;
|
|
1725
1745
|
agentId: string;
|
|
@@ -1734,7 +1754,7 @@ type Shared_Type_101 = {
|
|
|
1734
1754
|
} | undefined;
|
|
1735
1755
|
} | undefined;
|
|
1736
1756
|
};
|
|
1737
|
-
type
|
|
1757
|
+
type Shared_Type_103 = {
|
|
1738
1758
|
type: 'tool';
|
|
1739
1759
|
id: string;
|
|
1740
1760
|
toolId: string;
|
|
@@ -1746,7 +1766,7 @@ type Shared_Type_102 = {
|
|
|
1746
1766
|
} | undefined;
|
|
1747
1767
|
} | undefined;
|
|
1748
1768
|
};
|
|
1749
|
-
type
|
|
1769
|
+
type Shared_Type_104 = Shared_Type_102 | Shared_Type_103 | {
|
|
1750
1770
|
type: 'mapping';
|
|
1751
1771
|
id: string;
|
|
1752
1772
|
mapConfig: string;
|
|
@@ -1756,9 +1776,9 @@ type Shared_Type_103 = Shared_Type_101 | Shared_Type_102 | {
|
|
|
1756
1776
|
workflowId: string;
|
|
1757
1777
|
description?: string | undefined;
|
|
1758
1778
|
};
|
|
1759
|
-
type
|
|
1779
|
+
type Shared_Type_105 = {
|
|
1760
1780
|
type: 'foreach';
|
|
1761
|
-
step:
|
|
1781
|
+
step: Shared_Type_102 | Shared_Type_103 | {
|
|
1762
1782
|
type: 'workflow';
|
|
1763
1783
|
id: string;
|
|
1764
1784
|
workflowId: string;
|
|
@@ -1768,7 +1788,7 @@ type Shared_Type_104 = {
|
|
|
1768
1788
|
concurrency: number;
|
|
1769
1789
|
} | undefined;
|
|
1770
1790
|
};
|
|
1771
|
-
type
|
|
1791
|
+
type Shared_Type_106 = Shared_Type_102 | Shared_Type_103 | {
|
|
1772
1792
|
type: 'mapping';
|
|
1773
1793
|
id: string;
|
|
1774
1794
|
mapConfig: string;
|
|
@@ -1779,8 +1799,8 @@ type Shared_Type_105 = Shared_Type_101 | Shared_Type_102 | {
|
|
|
1779
1799
|
description?: string | undefined;
|
|
1780
1800
|
} | {
|
|
1781
1801
|
type: 'parallel';
|
|
1782
|
-
steps:
|
|
1783
|
-
} |
|
|
1802
|
+
steps: Shared_Type_104[];
|
|
1803
|
+
} | Shared_Type_105 | {
|
|
1784
1804
|
type: 'sleep';
|
|
1785
1805
|
id: string;
|
|
1786
1806
|
duration: number;
|
|
@@ -1790,15 +1810,15 @@ type Shared_Type_105 = Shared_Type_101 | Shared_Type_102 | {
|
|
|
1790
1810
|
date: string;
|
|
1791
1811
|
} | {
|
|
1792
1812
|
type: 'conditional';
|
|
1793
|
-
steps:
|
|
1794
|
-
predicates:
|
|
1813
|
+
steps: Shared_Type_104[];
|
|
1814
|
+
predicates: Shared_Auxiliary_1074[];
|
|
1795
1815
|
} | {
|
|
1796
1816
|
type: 'loop';
|
|
1797
|
-
step:
|
|
1817
|
+
step: Shared_Type_104;
|
|
1798
1818
|
loopType: 'dowhile' | 'dountil';
|
|
1799
|
-
predicate:
|
|
1819
|
+
predicate: Shared_Auxiliary_1074;
|
|
1800
1820
|
};
|
|
1801
|
-
type
|
|
1821
|
+
type Shared_Type_107 = {
|
|
1802
1822
|
/** Transport type: stdio for local processes, http for remote servers */
|
|
1803
1823
|
type: 'stdio' | 'http';
|
|
1804
1824
|
/** Command to run (stdio only) */
|
|
@@ -1814,7 +1834,7 @@ type Shared_Type_106 = {
|
|
|
1814
1834
|
/** Connection timeout in milliseconds */
|
|
1815
1835
|
timeout?: number | undefined;
|
|
1816
1836
|
};
|
|
1817
|
-
type
|
|
1837
|
+
type Shared_Type_108 = {
|
|
1818
1838
|
id: string;
|
|
1819
1839
|
/** MCP client status: draft, published, or archived */
|
|
1820
1840
|
status: string;
|
|
@@ -1831,10 +1851,10 @@ type Shared_Type_107 = {
|
|
|
1831
1851
|
description?: string | undefined;
|
|
1832
1852
|
/** Map of server name to server configuration */
|
|
1833
1853
|
servers: {
|
|
1834
|
-
[key: string]:
|
|
1854
|
+
[key: string]: Shared_Type_107;
|
|
1835
1855
|
};
|
|
1836
1856
|
};
|
|
1837
|
-
type
|
|
1857
|
+
type Shared_Type_109 = {
|
|
1838
1858
|
type: 'stdio' | 'http';
|
|
1839
1859
|
command?: string | undefined;
|
|
1840
1860
|
args?: string[] | undefined;
|
|
@@ -1844,7 +1864,7 @@ type Shared_Type_108 = {
|
|
|
1844
1864
|
url?: string | undefined;
|
|
1845
1865
|
timeout?: number | undefined;
|
|
1846
1866
|
};
|
|
1847
|
-
type
|
|
1867
|
+
type Shared_Type_110 = {
|
|
1848
1868
|
/** Unique identifier for the version (UUID) */
|
|
1849
1869
|
id: string;
|
|
1850
1870
|
/** ID of the MCP client this version belongs to */
|
|
@@ -1856,7 +1876,7 @@ type Shared_Type_109 = {
|
|
|
1856
1876
|
/** Description of the MCP client */
|
|
1857
1877
|
description?: string | undefined;
|
|
1858
1878
|
servers: {
|
|
1859
|
-
[key: string]:
|
|
1879
|
+
[key: string]: Shared_Type_109;
|
|
1860
1880
|
};
|
|
1861
1881
|
/** Array of field names that changed from the previous version */
|
|
1862
1882
|
changedFields?: string[] | undefined;
|
|
@@ -1865,7 +1885,7 @@ type Shared_Type_109 = {
|
|
|
1865
1885
|
/** When this version was created */
|
|
1866
1886
|
createdAt: Date;
|
|
1867
1887
|
};
|
|
1868
|
-
type
|
|
1888
|
+
type Shared_Type_111 = {
|
|
1869
1889
|
id: string;
|
|
1870
1890
|
/** Prompt block status: draft, published, or archived */
|
|
1871
1891
|
status: string;
|
|
@@ -1891,7 +1911,7 @@ type Shared_Type_110 = {
|
|
|
1891
1911
|
[key: string]: unknown;
|
|
1892
1912
|
} | undefined;
|
|
1893
1913
|
};
|
|
1894
|
-
type
|
|
1914
|
+
type Shared_Type_112 = {
|
|
1895
1915
|
/** Unique identifier for the version (UUID) */
|
|
1896
1916
|
id: string;
|
|
1897
1917
|
/** ID of the prompt block this version belongs to */
|
|
@@ -1917,8 +1937,8 @@ type Shared_Type_111 = {
|
|
|
1917
1937
|
/** When this version was created */
|
|
1918
1938
|
createdAt: Date;
|
|
1919
1939
|
};
|
|
1920
|
-
type
|
|
1921
|
-
type
|
|
1940
|
+
type Shared_Type_113 = 'llm-judge' | 'answer-relevancy' | 'answer-similarity' | 'bias' | 'context-precision' | 'context-relevance' | 'faithfulness' | 'hallucination' | 'noise-sensitivity' | 'prompt-alignment' | 'tool-call-accuracy' | 'toxicity';
|
|
1941
|
+
type Shared_Type_114 = {
|
|
1922
1942
|
id: string;
|
|
1923
1943
|
/** Scorer status: draft, published, or archived */
|
|
1924
1944
|
status: string;
|
|
@@ -1934,7 +1954,7 @@ type Shared_Type_113 = {
|
|
|
1934
1954
|
/** Description of the scorer */
|
|
1935
1955
|
description?: string | undefined;
|
|
1936
1956
|
/** Scorer type: llm-judge for custom, or a preset type name */
|
|
1937
|
-
type:
|
|
1957
|
+
type: Shared_Type_113;
|
|
1938
1958
|
model?: Shared_Type_11 | undefined;
|
|
1939
1959
|
/** System instructions for the judge LLM */
|
|
1940
1960
|
instructions?: string | undefined;
|
|
@@ -1952,13 +1972,13 @@ type Shared_Type_113 = {
|
|
|
1952
1972
|
rate: number;
|
|
1953
1973
|
}) | undefined;
|
|
1954
1974
|
};
|
|
1955
|
-
type
|
|
1975
|
+
type Shared_Type_115 = {
|
|
1956
1976
|
/** Minimum score value (default: 0) */
|
|
1957
1977
|
min?: number | undefined;
|
|
1958
1978
|
/** Maximum score value (default: 1) */
|
|
1959
1979
|
max?: number | undefined;
|
|
1960
1980
|
} | undefined;
|
|
1961
|
-
type
|
|
1981
|
+
type Shared_Type_116 = {
|
|
1962
1982
|
/** Unique identifier for the version (UUID) */
|
|
1963
1983
|
id: string;
|
|
1964
1984
|
/** ID of the scorer this version belongs to */
|
|
@@ -1969,7 +1989,7 @@ type Shared_Type_115 = {
|
|
|
1969
1989
|
name: string;
|
|
1970
1990
|
/** Description of the scorer */
|
|
1971
1991
|
description?: string | undefined;
|
|
1972
|
-
type:
|
|
1992
|
+
type: Shared_Type_113;
|
|
1973
1993
|
model?: Shared_Type_11 | undefined;
|
|
1974
1994
|
instructions?: string | undefined;
|
|
1975
1995
|
scoreRange?: {
|
|
@@ -1992,7 +2012,7 @@ type Shared_Type_115 = {
|
|
|
1992
2012
|
/** When this version was created */
|
|
1993
2013
|
createdAt: Date;
|
|
1994
2014
|
};
|
|
1995
|
-
type
|
|
2015
|
+
type Shared_Type_117 = {
|
|
1996
2016
|
id: string;
|
|
1997
2017
|
/** Workspace status: draft, published, or archived */
|
|
1998
2018
|
status: string;
|
|
@@ -2024,7 +2044,7 @@ type Shared_Type_116 = {
|
|
|
2024
2044
|
/** Operation timeout in milliseconds */
|
|
2025
2045
|
operationTimeout?: number | undefined;
|
|
2026
2046
|
};
|
|
2027
|
-
type
|
|
2047
|
+
type Shared_Type_118 = {
|
|
2028
2048
|
type: 'external';
|
|
2029
2049
|
/** Package path for external source */
|
|
2030
2050
|
packagePath: string;
|
|
@@ -2037,7 +2057,7 @@ type Shared_Type_117 = {
|
|
|
2037
2057
|
/** Mastra path for managed source */
|
|
2038
2058
|
mastraPath: string;
|
|
2039
2059
|
};
|
|
2040
|
-
type
|
|
2060
|
+
type Shared_Type_119 = {
|
|
2041
2061
|
id: string;
|
|
2042
2062
|
/** Skill status: draft, published, or archived */
|
|
2043
2063
|
status: string;
|
|
@@ -2061,7 +2081,7 @@ type Shared_Type_118 = {
|
|
|
2061
2081
|
/** Compatibility requirements */
|
|
2062
2082
|
compatibility?: unknown | undefined;
|
|
2063
2083
|
/** Source location of the skill */
|
|
2064
|
-
source?:
|
|
2084
|
+
source?: Shared_Type_118 | undefined;
|
|
2065
2085
|
/** List of reference file paths */
|
|
2066
2086
|
references?: string[] | undefined;
|
|
2067
2087
|
/** List of script file paths */
|
|
@@ -2069,13 +2089,13 @@ type Shared_Type_118 = {
|
|
|
2069
2089
|
/** List of asset file paths */
|
|
2070
2090
|
assets?: string[] | undefined;
|
|
2071
2091
|
/** Full file tree structure for the skill */
|
|
2072
|
-
files?:
|
|
2092
|
+
files?: Shared_Auxiliary_1215[] | undefined;
|
|
2073
2093
|
/** Additional metadata for the skill */
|
|
2074
2094
|
metadata?: {
|
|
2075
2095
|
[key: string]: unknown;
|
|
2076
2096
|
} | undefined;
|
|
2077
2097
|
};
|
|
2078
|
-
type
|
|
2098
|
+
type Shared_Type_120 = {
|
|
2079
2099
|
id: string;
|
|
2080
2100
|
name: string;
|
|
2081
2101
|
description?: (string | undefined) | null;
|
|
@@ -2099,7 +2119,7 @@ type Shared_Type_119 = {
|
|
|
2099
2119
|
createdAt: Date;
|
|
2100
2120
|
updatedAt: Date;
|
|
2101
2121
|
};
|
|
2102
|
-
type
|
|
2122
|
+
type Shared_Type_121 = {
|
|
2103
2123
|
/** Name of the tool this mock applies to */
|
|
2104
2124
|
toolName: string;
|
|
2105
2125
|
/** Arguments to match against the tool call */
|
|
@@ -2111,13 +2131,13 @@ type Shared_Type_120 = {
|
|
|
2111
2131
|
/** Argument matching mode. 'strict' (default) deep-equals args; 'ignore' matches on toolName only */
|
|
2112
2132
|
matchArgs?: ('strict' | 'ignore') | undefined;
|
|
2113
2133
|
};
|
|
2114
|
-
type
|
|
2134
|
+
type Shared_Type_122 = {
|
|
2115
2135
|
/** How this item was created */
|
|
2116
2136
|
type: 'csv' | 'json' | 'trace' | 'llm' | 'experiment-result' | 'candidate-screener';
|
|
2117
2137
|
/** Reference identifier (e.g., trace id, csv filename) */
|
|
2118
2138
|
referenceId?: string | undefined;
|
|
2119
2139
|
};
|
|
2120
|
-
type
|
|
2140
|
+
type Shared_Type_123 = {
|
|
2121
2141
|
id: string;
|
|
2122
2142
|
datasetId: string;
|
|
2123
2143
|
datasetVersion: number;
|
|
@@ -2126,7 +2146,7 @@ type Shared_Type_122 = {
|
|
|
2126
2146
|
groundTruth?: unknown | undefined;
|
|
2127
2147
|
expectedTrajectory?: unknown | undefined;
|
|
2128
2148
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
2129
|
-
toolMocks?:
|
|
2149
|
+
toolMocks?: Shared_Type_121[] | undefined;
|
|
2130
2150
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
2131
2151
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
2132
2152
|
scorerIds?: string[] | undefined;
|
|
@@ -2137,11 +2157,11 @@ type Shared_Type_122 = {
|
|
|
2137
2157
|
[key: string]: unknown;
|
|
2138
2158
|
} | undefined;
|
|
2139
2159
|
/** Source/provenance of this dataset item */
|
|
2140
|
-
source?:
|
|
2160
|
+
source?: Shared_Type_122 | undefined;
|
|
2141
2161
|
createdAt: Date;
|
|
2142
2162
|
updatedAt: Date;
|
|
2143
2163
|
};
|
|
2144
|
-
type
|
|
2164
|
+
type Shared_Type_124 = {
|
|
2145
2165
|
/** Step name to match */
|
|
2146
2166
|
name: string;
|
|
2147
2167
|
durationMs?: number | undefined;
|
|
@@ -2159,7 +2179,7 @@ type Shared_Type_123 = {
|
|
|
2159
2179
|
} | undefined;
|
|
2160
2180
|
success?: boolean | undefined;
|
|
2161
2181
|
};
|
|
2162
|
-
type
|
|
2182
|
+
type Shared_Type_125 = {
|
|
2163
2183
|
/** Step name to match */
|
|
2164
2184
|
name: string;
|
|
2165
2185
|
durationMs?: number | undefined;
|
|
@@ -2178,7 +2198,7 @@ type Shared_Type_124 = {
|
|
|
2178
2198
|
mcpServer?: string | undefined;
|
|
2179
2199
|
success?: boolean | undefined;
|
|
2180
2200
|
};
|
|
2181
|
-
type
|
|
2201
|
+
type Shared_Type_126 = {
|
|
2182
2202
|
/** Step name to match */
|
|
2183
2203
|
name: string;
|
|
2184
2204
|
durationMs?: number | undefined;
|
|
@@ -2193,7 +2213,7 @@ type Shared_Type_125 = {
|
|
|
2193
2213
|
completionTokens?: number | undefined;
|
|
2194
2214
|
finishReason?: string | undefined;
|
|
2195
2215
|
};
|
|
2196
|
-
type
|
|
2216
|
+
type Shared_Type_127 = {
|
|
2197
2217
|
/** Step name to match */
|
|
2198
2218
|
name: string;
|
|
2199
2219
|
durationMs?: number | undefined;
|
|
@@ -2205,7 +2225,7 @@ type Shared_Type_126 = {
|
|
|
2205
2225
|
stepType: 'agent_run';
|
|
2206
2226
|
agentId?: string | undefined;
|
|
2207
2227
|
};
|
|
2208
|
-
type
|
|
2228
|
+
type Shared_Type_128 = {
|
|
2209
2229
|
/** Step name to match */
|
|
2210
2230
|
name: string;
|
|
2211
2231
|
durationMs?: number | undefined;
|
|
@@ -2221,7 +2241,7 @@ type Shared_Type_127 = {
|
|
|
2221
2241
|
[key: string]: unknown;
|
|
2222
2242
|
} | undefined;
|
|
2223
2243
|
};
|
|
2224
|
-
type
|
|
2244
|
+
type Shared_Type_129 = {
|
|
2225
2245
|
/** Step name to match */
|
|
2226
2246
|
name: string;
|
|
2227
2247
|
durationMs?: number | undefined;
|
|
@@ -2234,7 +2254,7 @@ type Shared_Type_128 = {
|
|
|
2234
2254
|
workflowId?: string | undefined;
|
|
2235
2255
|
status?: string | undefined;
|
|
2236
2256
|
};
|
|
2237
|
-
type
|
|
2257
|
+
type Shared_Type_130 = {
|
|
2238
2258
|
/** Step name to match */
|
|
2239
2259
|
name: string;
|
|
2240
2260
|
durationMs?: number | undefined;
|
|
@@ -2247,7 +2267,7 @@ type Shared_Type_129 = {
|
|
|
2247
2267
|
conditionCount?: number | undefined;
|
|
2248
2268
|
selectedSteps?: string[] | undefined;
|
|
2249
2269
|
};
|
|
2250
|
-
type
|
|
2270
|
+
type Shared_Type_131 = {
|
|
2251
2271
|
/** Step name to match */
|
|
2252
2272
|
name: string;
|
|
2253
2273
|
durationMs?: number | undefined;
|
|
@@ -2260,7 +2280,7 @@ type Shared_Type_130 = {
|
|
|
2260
2280
|
branchCount?: number | undefined;
|
|
2261
2281
|
parallelSteps?: string[] | undefined;
|
|
2262
2282
|
};
|
|
2263
|
-
type
|
|
2283
|
+
type Shared_Type_132 = {
|
|
2264
2284
|
/** Step name to match */
|
|
2265
2285
|
name: string;
|
|
2266
2286
|
durationMs?: number | undefined;
|
|
@@ -2273,7 +2293,7 @@ type Shared_Type_131 = {
|
|
|
2273
2293
|
loopType?: string | undefined;
|
|
2274
2294
|
totalIterations?: number | undefined;
|
|
2275
2295
|
};
|
|
2276
|
-
type
|
|
2296
|
+
type Shared_Type_133 = {
|
|
2277
2297
|
/** Step name to match */
|
|
2278
2298
|
name: string;
|
|
2279
2299
|
durationMs?: number | undefined;
|
|
@@ -2286,7 +2306,7 @@ type Shared_Type_132 = {
|
|
|
2286
2306
|
sleepDurationMs?: number | undefined;
|
|
2287
2307
|
sleepType?: string | undefined;
|
|
2288
2308
|
};
|
|
2289
|
-
type
|
|
2309
|
+
type Shared_Type_134 = {
|
|
2290
2310
|
/** Step name to match */
|
|
2291
2311
|
name: string;
|
|
2292
2312
|
durationMs?: number | undefined;
|
|
@@ -2299,7 +2319,7 @@ type Shared_Type_133 = {
|
|
|
2299
2319
|
eventName?: string | undefined;
|
|
2300
2320
|
eventReceived?: boolean | undefined;
|
|
2301
2321
|
};
|
|
2302
|
-
type
|
|
2322
|
+
type Shared_Type_135 = {
|
|
2303
2323
|
/** Step name to match */
|
|
2304
2324
|
name: string;
|
|
2305
2325
|
durationMs?: number | undefined;
|
|
@@ -2311,8 +2331,8 @@ type Shared_Type_134 = {
|
|
|
2311
2331
|
stepType: 'processor_run';
|
|
2312
2332
|
processorId?: string | undefined;
|
|
2313
2333
|
};
|
|
2314
|
-
type
|
|
2315
|
-
type
|
|
2334
|
+
type Shared_Type_136 = Shared_Type_124 | Shared_Type_125 | Shared_Type_126 | Shared_Type_127 | Shared_Type_128 | Shared_Type_129 | Shared_Type_130 | Shared_Type_131 | Shared_Type_132 | Shared_Type_133 | Shared_Type_134 | Shared_Type_135;
|
|
2335
|
+
type Shared_Type_137 = {
|
|
2316
2336
|
/** Step name to match */
|
|
2317
2337
|
name: string;
|
|
2318
2338
|
durationMs?: number | undefined;
|
|
@@ -2323,9 +2343,9 @@ type Shared_Type_136 = {
|
|
|
2323
2343
|
children?: unknown | undefined;
|
|
2324
2344
|
stepType?: undefined | undefined;
|
|
2325
2345
|
};
|
|
2326
|
-
type
|
|
2346
|
+
type Shared_Type_138 = {
|
|
2327
2347
|
/** Expected steps for accuracy checking */
|
|
2328
|
-
steps?: (
|
|
2348
|
+
steps?: (Shared_Type_136 | Shared_Type_137)[] | undefined;
|
|
2329
2349
|
/** How to compare step ordering (default: relaxed) */
|
|
2330
2350
|
ordering?: ('strict' | 'relaxed' | 'unordered') | undefined;
|
|
2331
2351
|
/** Whether to allow repeated steps (default: true) */
|
|
@@ -2345,7 +2365,7 @@ type Shared_Type_137 = {
|
|
|
2345
2365
|
/** Maximum retries per tool before penalizing (default: 2) */
|
|
2346
2366
|
maxRetriesPerTool?: number | undefined;
|
|
2347
2367
|
};
|
|
2348
|
-
type
|
|
2368
|
+
type Shared_Type_139 = {
|
|
2349
2369
|
id: string;
|
|
2350
2370
|
datasetId: string | null;
|
|
2351
2371
|
datasetVersion: number | null;
|
|
@@ -2367,7 +2387,7 @@ type Shared_Type_138 = {
|
|
|
2367
2387
|
createdAt: Date;
|
|
2368
2388
|
updatedAt: Date;
|
|
2369
2389
|
};
|
|
2370
|
-
type
|
|
2390
|
+
type Shared_Type_140 = {
|
|
2371
2391
|
served: {
|
|
2372
2392
|
mockIndex: number;
|
|
2373
2393
|
toolName: string;
|
|
@@ -2388,7 +2408,7 @@ type Shared_Type_139 = {
|
|
|
2388
2408
|
args: unknown;
|
|
2389
2409
|
} | undefined;
|
|
2390
2410
|
};
|
|
2391
|
-
type
|
|
2411
|
+
type Shared_Type_141 = {
|
|
2392
2412
|
id: string;
|
|
2393
2413
|
experimentId: string;
|
|
2394
2414
|
itemId: string;
|
|
@@ -2410,10 +2430,10 @@ type Shared_Type_140 = {
|
|
|
2410
2430
|
tags?: (string[] | null) | undefined;
|
|
2411
2431
|
comment?: (string | null) | undefined;
|
|
2412
2432
|
/** Diagnostic receipt for item-level tool mocks */
|
|
2413
|
-
toolMockReport?: (
|
|
2433
|
+
toolMockReport?: (Shared_Type_140 | undefined) | null;
|
|
2414
2434
|
createdAt: Date;
|
|
2415
2435
|
};
|
|
2416
|
-
type
|
|
2436
|
+
type Shared_Type_142 = {
|
|
2417
2437
|
id: string;
|
|
2418
2438
|
status: 'pending' | 'running' | 'suspended' | 'completed' | 'failed' | 'cancelled' | 'timed_out';
|
|
2419
2439
|
toolName: string;
|
|
@@ -2438,7 +2458,7 @@ type Shared_Type_141 = {
|
|
|
2438
2458
|
timeoutMs: number;
|
|
2439
2459
|
suspendPayload?: unknown | undefined;
|
|
2440
2460
|
};
|
|
2441
|
-
type
|
|
2461
|
+
type Shared_Type_143 = {
|
|
2442
2462
|
kind: 'custom';
|
|
2443
2463
|
provider: string;
|
|
2444
2464
|
modelId?: string | undefined;
|
|
@@ -2446,7 +2466,7 @@ type Shared_Type_142 = {
|
|
|
2446
2466
|
provider: string;
|
|
2447
2467
|
modelId?: string | undefined;
|
|
2448
2468
|
};
|
|
2449
|
-
type
|
|
2469
|
+
type Shared_Type_144 = {
|
|
2450
2470
|
kind: 'custom';
|
|
2451
2471
|
provider: string;
|
|
2452
2472
|
modelId: string;
|
|
@@ -2454,13 +2474,13 @@ type Shared_Type_143 = {
|
|
|
2454
2474
|
provider: string;
|
|
2455
2475
|
modelId: string;
|
|
2456
2476
|
};
|
|
2457
|
-
type
|
|
2477
|
+
type Shared_Type_145 = {
|
|
2458
2478
|
behavior?: ('deliver' | 'persist' | 'discard') | undefined;
|
|
2459
2479
|
attributes?: {
|
|
2460
2480
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
2461
2481
|
} | undefined;
|
|
2462
2482
|
};
|
|
2463
|
-
type
|
|
2483
|
+
type Shared_Type_146 = {
|
|
2464
2484
|
behavior?: ('wake' | 'persist' | 'discard') | undefined;
|
|
2465
2485
|
attributes?: {
|
|
2466
2486
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
@@ -2471,7 +2491,7 @@ type Shared_Type_145 = {
|
|
|
2471
2491
|
} | undefined;
|
|
2472
2492
|
} | undefined;
|
|
2473
2493
|
};
|
|
2474
|
-
type
|
|
2494
|
+
type Shared_Type_147 = {
|
|
2475
2495
|
id: string;
|
|
2476
2496
|
agentId: string;
|
|
2477
2497
|
workflowId?: undefined | undefined;
|
|
@@ -2491,8 +2511,8 @@ type Shared_Type_146 = {
|
|
|
2491
2511
|
attributes?: {
|
|
2492
2512
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
2493
2513
|
} | undefined;
|
|
2494
|
-
ifActive?:
|
|
2495
|
-
ifIdle?:
|
|
2514
|
+
ifActive?: Shared_Type_145 | undefined;
|
|
2515
|
+
ifIdle?: Shared_Type_146 | undefined;
|
|
2496
2516
|
providerOptions?: {
|
|
2497
2517
|
[key: string]: unknown;
|
|
2498
2518
|
} | undefined;
|
|
@@ -2502,14 +2522,14 @@ type Shared_Type_146 = {
|
|
|
2502
2522
|
createdAt: number;
|
|
2503
2523
|
updatedAt: number;
|
|
2504
2524
|
};
|
|
2505
|
-
type
|
|
2525
|
+
type Shared_Type_148 = {
|
|
2506
2526
|
status: 'running' | 'success' | 'failed' | 'tripwire' | 'suspended' | 'waiting' | 'pending' | 'canceled' | 'bailed' | 'paused' | 'skipped';
|
|
2507
2527
|
startedAt?: number | undefined;
|
|
2508
2528
|
completedAt?: number | undefined;
|
|
2509
2529
|
durationMs?: number | undefined;
|
|
2510
2530
|
error?: string | undefined;
|
|
2511
2531
|
};
|
|
2512
|
-
type
|
|
2532
|
+
type Shared_Type_149 = {
|
|
2513
2533
|
id: string;
|
|
2514
2534
|
workflowId: string;
|
|
2515
2535
|
agentId?: undefined | undefined;
|
|
@@ -2519,7 +2539,7 @@ type Shared_Type_148 = {
|
|
|
2519
2539
|
nextFireAt: number;
|
|
2520
2540
|
lastFireAt?: number | undefined;
|
|
2521
2541
|
lastRunId?: string | undefined;
|
|
2522
|
-
lastRun?:
|
|
2542
|
+
lastRun?: Shared_Type_148 | undefined;
|
|
2523
2543
|
inputData?: unknown | undefined;
|
|
2524
2544
|
initialState?: unknown | undefined;
|
|
2525
2545
|
requestContext?: {
|
|
@@ -2993,14 +3013,14 @@ export type PostAgentsAgentIdSignals_Body = {
|
|
|
2993
3013
|
resourceId?: string | undefined;
|
|
2994
3014
|
threadId?: string | undefined;
|
|
2995
3015
|
ifIdle?: undefined | undefined;
|
|
2996
|
-
signal: Shared_Type_54;
|
|
3016
|
+
signal: Shared_Type_54 | Shared_Type_55;
|
|
2997
3017
|
} | {
|
|
2998
3018
|
ifActive?: Shared_Type_48 | undefined;
|
|
2999
3019
|
runId?: undefined | undefined;
|
|
3000
3020
|
resourceId: string;
|
|
3001
3021
|
threadId: string;
|
|
3002
3022
|
ifIdle?: Shared_Type_53 | undefined;
|
|
3003
|
-
signal: Shared_Type_54;
|
|
3023
|
+
signal: Shared_Type_54 | Shared_Type_55;
|
|
3004
3024
|
};
|
|
3005
3025
|
export type PostAgentsAgentIdSignals_Response = PostAgentsAgentIdSendMessage_Response;
|
|
3006
3026
|
export type PostAgentsAgentIdSignals_Request = Simplify<(PostAgentsAgentIdSignals_PathParams extends never ? {} : {
|
|
@@ -3955,7 +3975,7 @@ export interface PostAgentsAgentIdStreamUi_RouteContract {
|
|
|
3955
3975
|
}
|
|
3956
3976
|
export type GetAuthCapabilities_Response = {
|
|
3957
3977
|
enabled: boolean;
|
|
3958
|
-
login:
|
|
3978
|
+
login: Shared_Type_56 | null;
|
|
3959
3979
|
user: {
|
|
3960
3980
|
id: string;
|
|
3961
3981
|
email?: string | undefined;
|
|
@@ -3975,7 +3995,7 @@ export type GetAuthCapabilities_Response = {
|
|
|
3975
3995
|
} | null;
|
|
3976
3996
|
} | {
|
|
3977
3997
|
enabled: boolean;
|
|
3978
|
-
login:
|
|
3998
|
+
login: Shared_Type_56 | null;
|
|
3979
3999
|
};
|
|
3980
4000
|
export type GetAuthCapabilities_Request = Simplify<(never extends never ? {} : {
|
|
3981
4001
|
params: never;
|
|
@@ -4206,7 +4226,7 @@ export interface GetAuthPermissionPatterns_RouteContract {
|
|
|
4206
4226
|
}
|
|
4207
4227
|
export type GetWorkflows_QueryParams = GetAgents_QueryParams;
|
|
4208
4228
|
export type GetWorkflows_Response = {
|
|
4209
|
-
[key: string]:
|
|
4229
|
+
[key: string]: Shared_Type_58;
|
|
4210
4230
|
};
|
|
4211
4231
|
export type GetWorkflows_Request = Simplify<(never extends never ? {} : {
|
|
4212
4232
|
params: never;
|
|
@@ -4231,7 +4251,7 @@ export type GetWorkflowsWorkflowId_PathParams = {
|
|
|
4231
4251
|
/** Unique identifier for the workflow */
|
|
4232
4252
|
workflowId: string;
|
|
4233
4253
|
};
|
|
4234
|
-
export type GetWorkflowsWorkflowId_Response =
|
|
4254
|
+
export type GetWorkflowsWorkflowId_Response = Shared_Type_58;
|
|
4235
4255
|
export type GetWorkflowsWorkflowId_Request = Simplify<(GetWorkflowsWorkflowId_PathParams extends never ? {} : {
|
|
4236
4256
|
params: GetWorkflowsWorkflowId_PathParams;
|
|
4237
4257
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -4982,7 +5002,7 @@ export type GetProcessors_Response = {
|
|
|
4982
5002
|
id: string;
|
|
4983
5003
|
name?: string | undefined;
|
|
4984
5004
|
description?: string | undefined;
|
|
4985
|
-
phases: ('input' | 'inputStep' | 'outputStream' | 'outputResult' | 'outputStep')[];
|
|
5005
|
+
phases: ('input' | 'inputStep' | 'outputStream' | 'outputResult' | 'outputStep' | 'toolResult')[];
|
|
4986
5006
|
agentIds: string[];
|
|
4987
5007
|
configurations: {
|
|
4988
5008
|
agentId: string;
|
|
@@ -5018,7 +5038,7 @@ export type GetProcessorsProcessorId_Response = {
|
|
|
5018
5038
|
id: string;
|
|
5019
5039
|
name?: string | undefined;
|
|
5020
5040
|
description?: string | undefined;
|
|
5021
|
-
phases: ('input' | 'inputStep' | 'outputStream' | 'outputResult' | 'outputStep')[];
|
|
5041
|
+
phases: ('input' | 'inputStep' | 'outputStream' | 'outputResult' | 'outputStep' | 'toolResult')[];
|
|
5022
5042
|
configurations: {
|
|
5023
5043
|
agentId: string;
|
|
5024
5044
|
agentName: string;
|
|
@@ -5047,8 +5067,8 @@ export interface GetProcessorsProcessorId_RouteContract {
|
|
|
5047
5067
|
}
|
|
5048
5068
|
export type PostProcessorsProcessorIdExecute_PathParams = GetProcessorsProcessorId_PathParams;
|
|
5049
5069
|
export type PostProcessorsProcessorIdExecute_Body = {
|
|
5050
|
-
phase: 'input' | 'inputStep' | 'outputStream' | 'outputResult' | 'outputStep';
|
|
5051
|
-
messages:
|
|
5070
|
+
phase: 'input' | 'inputStep' | 'outputStream' | 'outputResult' | 'outputStep' | 'toolResult';
|
|
5071
|
+
messages: Shared_Type_59[];
|
|
5052
5072
|
agentId?: string | undefined;
|
|
5053
5073
|
requestContext?: {
|
|
5054
5074
|
[key: string]: unknown;
|
|
@@ -5057,9 +5077,9 @@ export type PostProcessorsProcessorIdExecute_Body = {
|
|
|
5057
5077
|
export type PostProcessorsProcessorIdExecute_Response = {
|
|
5058
5078
|
success: boolean;
|
|
5059
5079
|
phase: string;
|
|
5060
|
-
messages?:
|
|
5080
|
+
messages?: Shared_Type_59[] | undefined;
|
|
5061
5081
|
messageList?: {
|
|
5062
|
-
messages:
|
|
5082
|
+
messages: Shared_Type_59[];
|
|
5063
5083
|
} | undefined;
|
|
5064
5084
|
tripwire?: {
|
|
5065
5085
|
triggered: boolean;
|
|
@@ -5105,12 +5125,12 @@ export type PostV1Responses_Body = {
|
|
|
5105
5125
|
format: {
|
|
5106
5126
|
/** Requests JSON object output compatibility for the response */
|
|
5107
5127
|
type: 'json_object';
|
|
5108
|
-
} |
|
|
5128
|
+
} | Shared_Type_60;
|
|
5109
5129
|
} | undefined;
|
|
5110
5130
|
/** Optional conversation ID. In Mastra this is the raw threadId. */
|
|
5111
5131
|
conversation_id?: string | undefined;
|
|
5112
5132
|
/** Optional provider-specific options passed through to the underlying model call */
|
|
5113
|
-
providerOptions?:
|
|
5133
|
+
providerOptions?: Shared_Type_61 | undefined;
|
|
5114
5134
|
stream: boolean | undefined;
|
|
5115
5135
|
store: boolean | undefined;
|
|
5116
5136
|
previous_response_id?: string | undefined;
|
|
@@ -5134,7 +5154,7 @@ export type PostV1Responses_Response = {
|
|
|
5134
5154
|
annotations?: unknown[] | undefined;
|
|
5135
5155
|
logprobs?: unknown[] | undefined;
|
|
5136
5156
|
}[];
|
|
5137
|
-
} |
|
|
5157
|
+
} | Shared_Type_62 | {
|
|
5138
5158
|
id: string;
|
|
5139
5159
|
type: 'function_call_output';
|
|
5140
5160
|
call_id: string;
|
|
@@ -5158,11 +5178,11 @@ export type PostV1Responses_Response = {
|
|
|
5158
5178
|
format: {
|
|
5159
5179
|
/** Requests JSON object output compatibility for the response */
|
|
5160
5180
|
type: 'json_object';
|
|
5161
|
-
} |
|
|
5181
|
+
} | Shared_Type_60;
|
|
5162
5182
|
} | null) | undefined;
|
|
5163
5183
|
previous_response_id?: (string | null) | undefined;
|
|
5164
5184
|
conversation_id?: (string | null) | undefined;
|
|
5165
|
-
providerOptions?:
|
|
5185
|
+
providerOptions?: Shared_Type_61 | undefined;
|
|
5166
5186
|
tools?: {
|
|
5167
5187
|
type: 'function';
|
|
5168
5188
|
name: string;
|
|
@@ -5254,7 +5274,7 @@ export type PostV1Conversations_Body = {
|
|
|
5254
5274
|
export type PostV1Conversations_Response = {
|
|
5255
5275
|
id: string;
|
|
5256
5276
|
object: 'conversation';
|
|
5257
|
-
thread:
|
|
5277
|
+
thread: Shared_Type_63;
|
|
5258
5278
|
};
|
|
5259
5279
|
export type PostV1Conversations_Request = Simplify<(never extends never ? {} : {
|
|
5260
5280
|
params: never;
|
|
@@ -5316,7 +5336,7 @@ export type GetV1ConversationsConversationIdItems_Response = {
|
|
|
5316
5336
|
annotations?: unknown[] | undefined;
|
|
5317
5337
|
logprobs?: unknown[] | undefined;
|
|
5318
5338
|
})[];
|
|
5319
|
-
} |
|
|
5339
|
+
} | Shared_Type_62 | {
|
|
5320
5340
|
id: string;
|
|
5321
5341
|
type: 'function_call_output';
|
|
5322
5342
|
call_id: string;
|
|
@@ -5478,8 +5498,8 @@ export type GetMemoryObservationalMemory_QueryParams = {
|
|
|
5478
5498
|
limit?: number | undefined;
|
|
5479
5499
|
};
|
|
5480
5500
|
export type GetMemoryObservationalMemory_Response = {
|
|
5481
|
-
record:
|
|
5482
|
-
history?:
|
|
5501
|
+
record: Shared_Type_65 | null;
|
|
5502
|
+
history?: Shared_Type_65[] | undefined;
|
|
5483
5503
|
};
|
|
5484
5504
|
export type GetMemoryObservationalMemory_Request = Simplify<(never extends never ? {} : {
|
|
5485
5505
|
params: never;
|
|
@@ -5502,7 +5522,7 @@ export interface GetMemoryObservationalMemory_RouteContract {
|
|
|
5502
5522
|
}
|
|
5503
5523
|
export type PostMemoryObservationalMemoryBufferStatus_Body = GetMemoryStatus_QueryParams;
|
|
5504
5524
|
export type PostMemoryObservationalMemoryBufferStatus_Response = {
|
|
5505
|
-
record:
|
|
5525
|
+
record: Shared_Type_65 | null;
|
|
5506
5526
|
};
|
|
5507
5527
|
export type PostMemoryObservationalMemoryBufferStatus_Request = Simplify<(never extends never ? {} : {
|
|
5508
5528
|
params: never;
|
|
@@ -5541,7 +5561,7 @@ export type GetMemoryThreads_Response = {
|
|
|
5541
5561
|
page: number;
|
|
5542
5562
|
perPage: number | false;
|
|
5543
5563
|
hasMore: boolean;
|
|
5544
|
-
threads:
|
|
5564
|
+
threads: Shared_Type_63[];
|
|
5545
5565
|
};
|
|
5546
5566
|
export type GetMemoryThreads_Request = Simplify<(never extends never ? {} : {
|
|
5547
5567
|
params: never;
|
|
@@ -5570,7 +5590,7 @@ export type GetMemoryThreadsThreadId_QueryParams = {
|
|
|
5570
5590
|
agentId?: string | undefined;
|
|
5571
5591
|
resourceId?: string | undefined;
|
|
5572
5592
|
};
|
|
5573
|
-
export type GetMemoryThreadsThreadId_Response =
|
|
5593
|
+
export type GetMemoryThreadsThreadId_Response = Shared_Type_63;
|
|
5574
5594
|
export type GetMemoryThreadsThreadId_Request = Simplify<(GetMemoryThreadsThreadId_PathParams extends never ? {} : {
|
|
5575
5595
|
params: GetMemoryThreadsThreadId_PathParams;
|
|
5576
5596
|
}) & (GetMemoryThreadsThreadId_QueryParams extends never ? {} : {} extends GetMemoryThreadsThreadId_QueryParams ? {
|
|
@@ -5606,7 +5626,7 @@ export type GetMemoryThreadsThreadIdMessages_QueryParams = {
|
|
|
5606
5626
|
withPreviousMessages?: number | undefined;
|
|
5607
5627
|
withNextMessages?: number | undefined;
|
|
5608
5628
|
}[] | undefined;
|
|
5609
|
-
filter?:
|
|
5629
|
+
filter?: Shared_Type_66 | undefined;
|
|
5610
5630
|
includeSystemReminders?: boolean | undefined;
|
|
5611
5631
|
};
|
|
5612
5632
|
export type GetMemoryThreadsThreadIdMessages_Response = {
|
|
@@ -5793,7 +5813,7 @@ export type PostMemoryThreadsThreadIdClone_Body = {
|
|
|
5793
5813
|
} | undefined;
|
|
5794
5814
|
};
|
|
5795
5815
|
export type PostMemoryThreadsThreadIdClone_Response = {
|
|
5796
|
-
thread:
|
|
5816
|
+
thread: Shared_Type_63;
|
|
5797
5817
|
clonedMessages: unknown[];
|
|
5798
5818
|
};
|
|
5799
5819
|
export type PostMemoryThreadsThreadIdClone_Request = Simplify<(PostMemoryThreadsThreadIdClone_PathParams extends never ? {} : {
|
|
@@ -5991,7 +6011,7 @@ export type GetMemoryNetworkThreadsThreadIdMessages_QueryParams = {
|
|
|
5991
6011
|
withPreviousMessages?: number | undefined;
|
|
5992
6012
|
withNextMessages?: number | undefined;
|
|
5993
6013
|
}[] | undefined;
|
|
5994
|
-
filter?:
|
|
6014
|
+
filter?: Shared_Type_66 | undefined;
|
|
5995
6015
|
};
|
|
5996
6016
|
export type GetMemoryNetworkThreadsThreadIdMessages_Response = GetMemoryThreadsThreadIdMessages_Response;
|
|
5997
6017
|
export type GetMemoryNetworkThreadsThreadIdMessages_Request = Simplify<(GetMemoryNetworkThreadsThreadIdMessages_PathParams extends never ? {} : {
|
|
@@ -6125,7 +6145,7 @@ export interface PostMemoryNetworkMessagesDelete_RouteContract {
|
|
|
6125
6145
|
responseType: 'json';
|
|
6126
6146
|
}
|
|
6127
6147
|
export type GetScoresScorers_Response = {
|
|
6128
|
-
[key: string]:
|
|
6148
|
+
[key: string]: Shared_Type_68;
|
|
6129
6149
|
};
|
|
6130
6150
|
export type GetScoresScorers_Request = Simplify<(never extends never ? {} : {
|
|
6131
6151
|
params: never;
|
|
@@ -6150,7 +6170,7 @@ export type GetScoresScorersScorerId_PathParams = {
|
|
|
6150
6170
|
/** Unique identifier for the scorer */
|
|
6151
6171
|
scorerId: string;
|
|
6152
6172
|
};
|
|
6153
|
-
export type GetScoresScorersScorerId_Response =
|
|
6173
|
+
export type GetScoresScorersScorerId_Response = Shared_Type_68 | null;
|
|
6154
6174
|
export type GetScoresScorersScorerId_Request = Simplify<(GetScoresScorersScorerId_PathParams extends never ? {} : {
|
|
6155
6175
|
params: GetScoresScorersScorerId_PathParams;
|
|
6156
6176
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -6281,18 +6301,18 @@ export interface PostScores_RouteContract {
|
|
|
6281
6301
|
responseType: 'json';
|
|
6282
6302
|
}
|
|
6283
6303
|
export type GetObservabilityTraces_QueryParams = {
|
|
6284
|
-
startedAt?: ((
|
|
6285
|
-
endedAt?: ((
|
|
6286
|
-
spanType?: (
|
|
6304
|
+
startedAt?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6305
|
+
endedAt?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6306
|
+
spanType?: (Shared_Type_70 | undefined) | undefined;
|
|
6287
6307
|
/** Filter by trace ID (matches root span) */
|
|
6288
6308
|
traceId?: (string | undefined) | undefined;
|
|
6289
|
-
entityType?: ((
|
|
6309
|
+
entityType?: ((Shared_Type_71 | null) | undefined) | undefined;
|
|
6290
6310
|
entityId?: ((string | null) | undefined) | undefined;
|
|
6291
6311
|
entityName?: ((string | null) | undefined) | undefined;
|
|
6292
|
-
parentEntityType?: ((
|
|
6312
|
+
parentEntityType?: ((Shared_Type_71 | null) | undefined) | undefined;
|
|
6293
6313
|
parentEntityId?: ((string | null) | undefined) | undefined;
|
|
6294
6314
|
parentEntityName?: ((string | null) | undefined) | undefined;
|
|
6295
|
-
rootEntityType?: ((
|
|
6315
|
+
rootEntityType?: ((Shared_Type_71 | null) | undefined) | undefined;
|
|
6296
6316
|
rootEntityId?: ((string | null) | undefined) | undefined;
|
|
6297
6317
|
rootEntityName?: ((string | null) | undefined) | undefined;
|
|
6298
6318
|
userId?: ((string | null) | undefined) | undefined;
|
|
@@ -6318,7 +6338,7 @@ export type GetObservabilityTraces_QueryParams = {
|
|
|
6318
6338
|
tags?: (((string[] | null) | undefined) | undefined) | unknown;
|
|
6319
6339
|
status?: (('success' | 'error' | 'running') | undefined) | undefined;
|
|
6320
6340
|
hasChildError?: (boolean | undefined) | undefined;
|
|
6321
|
-
dateRange?: ((
|
|
6341
|
+
dateRange?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6322
6342
|
name?: (string | undefined) | undefined;
|
|
6323
6343
|
page?: (number | undefined) | undefined;
|
|
6324
6344
|
perPage?: (number | undefined) | undefined;
|
|
@@ -6332,12 +6352,12 @@ export type GetObservabilityTraces_QueryParams = {
|
|
|
6332
6352
|
limit?: (number | undefined) | undefined;
|
|
6333
6353
|
};
|
|
6334
6354
|
export type GetObservabilityTraces_Response = {
|
|
6335
|
-
pagination?:
|
|
6355
|
+
pagination?: Shared_Type_72 | undefined;
|
|
6336
6356
|
/** Incremental polling metadata */
|
|
6337
|
-
delta?:
|
|
6357
|
+
delta?: Shared_Type_73 | undefined;
|
|
6338
6358
|
/** Opaque cursor value for incremental polling */
|
|
6339
6359
|
deltaCursor?: string | undefined;
|
|
6340
|
-
spans:
|
|
6360
|
+
spans: Shared_Type_74[];
|
|
6341
6361
|
};
|
|
6342
6362
|
export type GetObservabilityTraces_Request = Simplify<(never extends never ? {} : {
|
|
6343
6363
|
params: never;
|
|
@@ -6359,18 +6379,18 @@ export interface GetObservabilityTraces_RouteContract {
|
|
|
6359
6379
|
responseType: 'json';
|
|
6360
6380
|
}
|
|
6361
6381
|
export type GetObservabilityTracesLight_QueryParams = {
|
|
6362
|
-
startedAt?: ((
|
|
6363
|
-
endedAt?: ((
|
|
6364
|
-
spanType?: (
|
|
6382
|
+
startedAt?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6383
|
+
endedAt?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6384
|
+
spanType?: (Shared_Type_70 | undefined) | undefined;
|
|
6365
6385
|
/** Filter by trace ID (matches root span) */
|
|
6366
6386
|
traceId?: (string | undefined) | undefined;
|
|
6367
6387
|
entityType?: (string | undefined) | undefined;
|
|
6368
6388
|
entityId?: ((string | null) | undefined) | undefined;
|
|
6369
6389
|
entityName?: ((string | null) | undefined) | undefined;
|
|
6370
|
-
parentEntityType?: ((
|
|
6390
|
+
parentEntityType?: ((Shared_Type_71 | null) | undefined) | undefined;
|
|
6371
6391
|
parentEntityId?: ((string | null) | undefined) | undefined;
|
|
6372
6392
|
parentEntityName?: ((string | null) | undefined) | undefined;
|
|
6373
|
-
rootEntityType?: ((
|
|
6393
|
+
rootEntityType?: ((Shared_Type_71 | null) | undefined) | undefined;
|
|
6374
6394
|
rootEntityId?: ((string | null) | undefined) | undefined;
|
|
6375
6395
|
rootEntityName?: ((string | null) | undefined) | undefined;
|
|
6376
6396
|
userId?: ((string | null) | undefined) | undefined;
|
|
@@ -6404,12 +6424,12 @@ export type GetObservabilityTracesLight_QueryParams = {
|
|
|
6404
6424
|
field?: ('startedAt' | 'endedAt') | undefined;
|
|
6405
6425
|
/** Sort direction */
|
|
6406
6426
|
direction?: ('ASC' | 'DESC') | undefined;
|
|
6407
|
-
dateRange?: ((
|
|
6427
|
+
dateRange?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6408
6428
|
name?: (string | undefined) | undefined;
|
|
6409
6429
|
};
|
|
6410
6430
|
export type GetObservabilityTracesLight_Response = {
|
|
6411
|
-
pagination:
|
|
6412
|
-
spans:
|
|
6431
|
+
pagination: Shared_Type_72;
|
|
6432
|
+
spans: Shared_Type_75[];
|
|
6413
6433
|
};
|
|
6414
6434
|
export type GetObservabilityTracesLight_Request = Simplify<(never extends never ? {} : {
|
|
6415
6435
|
params: never;
|
|
@@ -6431,18 +6451,18 @@ export interface GetObservabilityTracesLight_RouteContract {
|
|
|
6431
6451
|
responseType: 'json';
|
|
6432
6452
|
}
|
|
6433
6453
|
export type GetObservabilityBranches_QueryParams = {
|
|
6434
|
-
startedAt?: ((
|
|
6435
|
-
endedAt?: ((
|
|
6436
|
-
spanType?: (
|
|
6454
|
+
startedAt?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6455
|
+
endedAt?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6456
|
+
spanType?: (Shared_Type_70 | undefined) | undefined;
|
|
6437
6457
|
/** Filter by parent trace ID */
|
|
6438
6458
|
traceId?: (string | undefined) | undefined;
|
|
6439
|
-
entityType?: ((
|
|
6459
|
+
entityType?: ((Shared_Type_71 | null) | undefined) | undefined;
|
|
6440
6460
|
entityId?: ((string | null) | undefined) | undefined;
|
|
6441
6461
|
entityName?: ((string | null) | undefined) | undefined;
|
|
6442
|
-
parentEntityType?: ((
|
|
6462
|
+
parentEntityType?: ((Shared_Type_71 | null) | undefined) | undefined;
|
|
6443
6463
|
parentEntityId?: ((string | null) | undefined) | undefined;
|
|
6444
6464
|
parentEntityName?: ((string | null) | undefined) | undefined;
|
|
6445
|
-
rootEntityType?: ((
|
|
6465
|
+
rootEntityType?: ((Shared_Type_71 | null) | undefined) | undefined;
|
|
6446
6466
|
rootEntityId?: ((string | null) | undefined) | undefined;
|
|
6447
6467
|
rootEntityName?: ((string | null) | undefined) | undefined;
|
|
6448
6468
|
userId?: ((string | null) | undefined) | undefined;
|
|
@@ -6479,12 +6499,12 @@ export type GetObservabilityBranches_QueryParams = {
|
|
|
6479
6499
|
limit?: (number | undefined) | undefined;
|
|
6480
6500
|
};
|
|
6481
6501
|
export type GetObservabilityBranches_Response = {
|
|
6482
|
-
pagination?:
|
|
6502
|
+
pagination?: Shared_Type_72 | undefined;
|
|
6483
6503
|
/** Incremental polling metadata */
|
|
6484
|
-
delta?:
|
|
6504
|
+
delta?: Shared_Type_73 | undefined;
|
|
6485
6505
|
/** Opaque cursor value for incremental polling */
|
|
6486
6506
|
deltaCursor?: string | undefined;
|
|
6487
|
-
branches:
|
|
6507
|
+
branches: Shared_Type_74[];
|
|
6488
6508
|
};
|
|
6489
6509
|
export type GetObservabilityBranches_Request = Simplify<(never extends never ? {} : {
|
|
6490
6510
|
params: never;
|
|
@@ -6518,7 +6538,7 @@ export type GetObservabilityTracesTraceIdBranchesSpanId_QueryParams = {
|
|
|
6518
6538
|
export type GetObservabilityTracesTraceIdBranchesSpanId_Response = {
|
|
6519
6539
|
/** Unique trace identifier */
|
|
6520
6540
|
traceId: string;
|
|
6521
|
-
spans:
|
|
6541
|
+
spans: Shared_Type_76[];
|
|
6522
6542
|
};
|
|
6523
6543
|
export type GetObservabilityTracesTraceIdBranchesSpanId_Request = Simplify<(GetObservabilityTracesTraceIdBranchesSpanId_PathParams extends never ? {} : {
|
|
6524
6544
|
params: GetObservabilityTracesTraceIdBranchesSpanId_PathParams;
|
|
@@ -6567,7 +6587,7 @@ export type GetObservabilityTracesTraceIdLight_PathParams = GetObservabilityTrac
|
|
|
6567
6587
|
export type GetObservabilityTracesTraceIdLight_Response = {
|
|
6568
6588
|
/** Unique trace identifier */
|
|
6569
6589
|
traceId: string;
|
|
6570
|
-
spans:
|
|
6590
|
+
spans: Shared_Type_75[];
|
|
6571
6591
|
};
|
|
6572
6592
|
export type GetObservabilityTracesTraceIdLight_Request = Simplify<(GetObservabilityTracesTraceIdLight_PathParams extends never ? {} : {
|
|
6573
6593
|
params: GetObservabilityTracesTraceIdLight_PathParams;
|
|
@@ -6591,7 +6611,7 @@ export interface GetObservabilityTracesTraceIdLight_RouteContract {
|
|
|
6591
6611
|
export type GetObservabilityTracesTraceIdSpansSpanId_PathParams = GetObservabilityTracesTraceIdBranchesSpanId_PathParams;
|
|
6592
6612
|
export type GetObservabilityTracesTraceIdSpansSpanId_Response = {
|
|
6593
6613
|
/** Span record data */
|
|
6594
|
-
span:
|
|
6614
|
+
span: Shared_Type_76;
|
|
6595
6615
|
};
|
|
6596
6616
|
export type GetObservabilityTracesTraceIdSpansSpanId_Request = Simplify<(GetObservabilityTracesTraceIdSpansSpanId_PathParams extends never ? {} : {
|
|
6597
6617
|
params: GetObservabilityTracesTraceIdSpansSpanId_PathParams;
|
|
@@ -6679,7 +6699,7 @@ export type GetObservabilityTracesTraceIdSpanIdScores_QueryParams = {
|
|
|
6679
6699
|
perPage?: (number | undefined) | undefined;
|
|
6680
6700
|
};
|
|
6681
6701
|
export type GetObservabilityTracesTraceIdSpanIdScores_Response = {
|
|
6682
|
-
pagination:
|
|
6702
|
+
pagination: Shared_Type_72;
|
|
6683
6703
|
scores: {
|
|
6684
6704
|
id: string;
|
|
6685
6705
|
scorerId: string;
|
|
@@ -6757,12 +6777,12 @@ export interface GetObservabilityTracesTraceIdSpanIdScores_RouteContract {
|
|
|
6757
6777
|
responseType: 'json';
|
|
6758
6778
|
}
|
|
6759
6779
|
export type GetObservabilityMetrics_QueryParams = {
|
|
6760
|
-
timestamp?: ((
|
|
6780
|
+
timestamp?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6761
6781
|
/** Filter by trace ID */
|
|
6762
6782
|
traceId?: (string | undefined) | undefined;
|
|
6763
6783
|
/** Filter by span ID */
|
|
6764
6784
|
spanId?: (string | undefined) | undefined;
|
|
6765
|
-
entityType?: (
|
|
6785
|
+
entityType?: (Shared_Type_71 | undefined) | undefined;
|
|
6766
6786
|
entityName?: (string | undefined) | undefined;
|
|
6767
6787
|
entityVersionId?: (string | undefined) | undefined;
|
|
6768
6788
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -6772,9 +6792,9 @@ export type GetObservabilityMetrics_QueryParams = {
|
|
|
6772
6792
|
experimentId?: (string | undefined) | undefined;
|
|
6773
6793
|
serviceName?: (string | undefined) | undefined;
|
|
6774
6794
|
environment?: (string | undefined) | undefined;
|
|
6775
|
-
parentEntityType?: (
|
|
6795
|
+
parentEntityType?: (Shared_Type_71 | undefined) | undefined;
|
|
6776
6796
|
parentEntityName?: (string | undefined) | undefined;
|
|
6777
|
-
rootEntityType?: (
|
|
6797
|
+
rootEntityType?: (Shared_Type_71 | undefined) | undefined;
|
|
6778
6798
|
rootEntityName?: (string | undefined) | undefined;
|
|
6779
6799
|
resourceId?: (string | undefined) | undefined;
|
|
6780
6800
|
runId?: (string | undefined) | undefined;
|
|
@@ -6805,9 +6825,9 @@ export type GetObservabilityMetrics_QueryParams = {
|
|
|
6805
6825
|
limit?: (number | undefined) | undefined;
|
|
6806
6826
|
};
|
|
6807
6827
|
export type GetObservabilityMetrics_Response = {
|
|
6808
|
-
pagination?:
|
|
6828
|
+
pagination?: Shared_Type_72 | undefined;
|
|
6809
6829
|
/** Incremental polling metadata */
|
|
6810
|
-
delta?:
|
|
6830
|
+
delta?: Shared_Type_73 | undefined;
|
|
6811
6831
|
/** Opaque cursor value for incremental polling */
|
|
6812
6832
|
deltaCursor?: string | undefined;
|
|
6813
6833
|
metrics: {
|
|
@@ -6821,13 +6841,13 @@ export type GetObservabilityMetrics_Response = {
|
|
|
6821
6841
|
value: number;
|
|
6822
6842
|
traceId?: (string | null) | undefined;
|
|
6823
6843
|
spanId?: (string | null) | undefined;
|
|
6824
|
-
entityType?: (
|
|
6844
|
+
entityType?: (Shared_Type_71 | null) | undefined;
|
|
6825
6845
|
entityId?: (string | null) | undefined;
|
|
6826
6846
|
entityName?: (string | null) | undefined;
|
|
6827
|
-
parentEntityType?: (
|
|
6847
|
+
parentEntityType?: (Shared_Type_71 | null) | undefined;
|
|
6828
6848
|
parentEntityId?: (string | null) | undefined;
|
|
6829
6849
|
parentEntityName?: (string | null) | undefined;
|
|
6830
|
-
rootEntityType?: (
|
|
6850
|
+
rootEntityType?: (Shared_Type_71 | null) | undefined;
|
|
6831
6851
|
rootEntityId?: (string | null) | undefined;
|
|
6832
6852
|
rootEntityName?: (string | null) | undefined;
|
|
6833
6853
|
userId?: (string | null) | undefined;
|
|
@@ -6886,12 +6906,12 @@ export interface GetObservabilityMetrics_RouteContract {
|
|
|
6886
6906
|
responseType: 'json';
|
|
6887
6907
|
}
|
|
6888
6908
|
export type GetObservabilityLogs_QueryParams = {
|
|
6889
|
-
timestamp?: ((
|
|
6909
|
+
timestamp?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
6890
6910
|
/** Filter by trace ID */
|
|
6891
6911
|
traceId?: (string | undefined) | undefined;
|
|
6892
6912
|
/** Filter by span ID */
|
|
6893
6913
|
spanId?: (string | undefined) | undefined;
|
|
6894
|
-
entityType?: (
|
|
6914
|
+
entityType?: (Shared_Type_71 | undefined) | undefined;
|
|
6895
6915
|
entityName?: (string | undefined) | undefined;
|
|
6896
6916
|
entityVersionId?: (string | undefined) | undefined;
|
|
6897
6917
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -6901,9 +6921,9 @@ export type GetObservabilityLogs_QueryParams = {
|
|
|
6901
6921
|
experimentId?: (string | undefined) | undefined;
|
|
6902
6922
|
serviceName?: (string | undefined) | undefined;
|
|
6903
6923
|
environment?: (string | undefined) | undefined;
|
|
6904
|
-
parentEntityType?: (
|
|
6924
|
+
parentEntityType?: (Shared_Type_71 | undefined) | undefined;
|
|
6905
6925
|
parentEntityName?: (string | undefined) | undefined;
|
|
6906
|
-
rootEntityType?: (
|
|
6926
|
+
rootEntityType?: (Shared_Type_71 | undefined) | undefined;
|
|
6907
6927
|
rootEntityName?: (string | undefined) | undefined;
|
|
6908
6928
|
resourceId?: (string | undefined) | undefined;
|
|
6909
6929
|
runId?: (string | undefined) | undefined;
|
|
@@ -6928,9 +6948,9 @@ export type GetObservabilityLogs_QueryParams = {
|
|
|
6928
6948
|
limit?: (number | undefined) | undefined;
|
|
6929
6949
|
};
|
|
6930
6950
|
export type GetObservabilityLogs_Response = {
|
|
6931
|
-
pagination?:
|
|
6951
|
+
pagination?: Shared_Type_72 | undefined;
|
|
6932
6952
|
/** Incremental polling metadata */
|
|
6933
|
-
delta?:
|
|
6953
|
+
delta?: Shared_Type_73 | undefined;
|
|
6934
6954
|
/** Opaque cursor value for incremental polling */
|
|
6935
6955
|
deltaCursor?: string | undefined;
|
|
6936
6956
|
logs: {
|
|
@@ -6947,13 +6967,13 @@ export type GetObservabilityLogs_Response = {
|
|
|
6947
6967
|
} | null) | undefined;
|
|
6948
6968
|
traceId?: (string | null) | undefined;
|
|
6949
6969
|
spanId?: (string | null) | undefined;
|
|
6950
|
-
entityType?: (
|
|
6970
|
+
entityType?: (Shared_Type_71 | null) | undefined;
|
|
6951
6971
|
entityId?: (string | null) | undefined;
|
|
6952
6972
|
entityName?: (string | null) | undefined;
|
|
6953
|
-
parentEntityType?: (
|
|
6973
|
+
parentEntityType?: (Shared_Type_71 | null) | undefined;
|
|
6954
6974
|
parentEntityId?: (string | null) | undefined;
|
|
6955
6975
|
parentEntityName?: (string | null) | undefined;
|
|
6956
|
-
rootEntityType?: (
|
|
6976
|
+
rootEntityType?: (Shared_Type_71 | null) | undefined;
|
|
6957
6977
|
rootEntityId?: (string | null) | undefined;
|
|
6958
6978
|
rootEntityName?: (string | null) | undefined;
|
|
6959
6979
|
userId?: (string | null) | undefined;
|
|
@@ -7001,12 +7021,12 @@ export interface GetObservabilityLogs_RouteContract {
|
|
|
7001
7021
|
responseType: 'json';
|
|
7002
7022
|
}
|
|
7003
7023
|
export type GetObservabilityScores_QueryParams = {
|
|
7004
|
-
timestamp?: ((
|
|
7024
|
+
timestamp?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
7005
7025
|
/** Filter by trace ID */
|
|
7006
7026
|
traceId?: (string | undefined) | undefined;
|
|
7007
7027
|
/** Filter by span ID */
|
|
7008
7028
|
spanId?: (string | undefined) | undefined;
|
|
7009
|
-
entityType?: (
|
|
7029
|
+
entityType?: (Shared_Type_71 | undefined) | undefined;
|
|
7010
7030
|
entityName?: (string | undefined) | undefined;
|
|
7011
7031
|
entityVersionId?: (string | undefined) | undefined;
|
|
7012
7032
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -7016,9 +7036,9 @@ export type GetObservabilityScores_QueryParams = {
|
|
|
7016
7036
|
experimentId?: (string | undefined) | undefined;
|
|
7017
7037
|
serviceName?: (string | undefined) | undefined;
|
|
7018
7038
|
environment?: (string | undefined) | undefined;
|
|
7019
|
-
parentEntityType?: (
|
|
7039
|
+
parentEntityType?: (Shared_Type_71 | undefined) | undefined;
|
|
7020
7040
|
parentEntityName?: (string | undefined) | undefined;
|
|
7021
|
-
rootEntityType?: (
|
|
7041
|
+
rootEntityType?: (Shared_Type_71 | undefined) | undefined;
|
|
7022
7042
|
rootEntityName?: (string | undefined) | undefined;
|
|
7023
7043
|
resourceId?: (string | undefined) | undefined;
|
|
7024
7044
|
runId?: (string | undefined) | undefined;
|
|
@@ -7045,12 +7065,12 @@ export type GetObservabilityScores_QueryParams = {
|
|
|
7045
7065
|
limit?: (number | undefined) | undefined;
|
|
7046
7066
|
};
|
|
7047
7067
|
export type GetObservabilityScores_Response = {
|
|
7048
|
-
pagination?:
|
|
7068
|
+
pagination?: Shared_Type_72 | undefined;
|
|
7049
7069
|
/** Incremental polling metadata */
|
|
7050
|
-
delta?:
|
|
7070
|
+
delta?: Shared_Type_73 | undefined;
|
|
7051
7071
|
/** Opaque cursor value for incremental polling */
|
|
7052
7072
|
deltaCursor?: string | undefined;
|
|
7053
|
-
scores:
|
|
7073
|
+
scores: Shared_Type_77[];
|
|
7054
7074
|
};
|
|
7055
7075
|
export type GetObservabilityScores_Request = Simplify<(never extends never ? {} : {
|
|
7056
7076
|
params: never;
|
|
@@ -7088,13 +7108,13 @@ export type PostObservabilityScores_Body = {
|
|
|
7088
7108
|
/** Score value (range defined by scorer) */
|
|
7089
7109
|
score: number;
|
|
7090
7110
|
reason?: (string | null) | undefined;
|
|
7091
|
-
entityType?: (
|
|
7111
|
+
entityType?: (Shared_Type_71 | null) | undefined;
|
|
7092
7112
|
entityId?: (string | null) | undefined;
|
|
7093
7113
|
entityName?: (string | null) | undefined;
|
|
7094
|
-
parentEntityType?: (
|
|
7114
|
+
parentEntityType?: (Shared_Type_71 | null) | undefined;
|
|
7095
7115
|
parentEntityId?: (string | null) | undefined;
|
|
7096
7116
|
parentEntityName?: (string | null) | undefined;
|
|
7097
|
-
rootEntityType?: (
|
|
7117
|
+
rootEntityType?: (Shared_Type_71 | null) | undefined;
|
|
7098
7118
|
rootEntityId?: (string | null) | undefined;
|
|
7099
7119
|
rootEntityName?: (string | null) | undefined;
|
|
7100
7120
|
userId?: (string | null) | undefined;
|
|
@@ -7148,7 +7168,7 @@ export type GetObservabilityScoresScoreId_PathParams = {
|
|
|
7148
7168
|
};
|
|
7149
7169
|
export type GetObservabilityScoresScoreId_Response = {
|
|
7150
7170
|
/** Score record as stored in the database */
|
|
7151
|
-
score:
|
|
7171
|
+
score: Shared_Type_77 | null;
|
|
7152
7172
|
};
|
|
7153
7173
|
export type GetObservabilityScoresScoreId_Request = Simplify<(GetObservabilityScoresScoreId_PathParams extends never ? {} : {
|
|
7154
7174
|
params: GetObservabilityScoresScoreId_PathParams;
|
|
@@ -7177,7 +7197,7 @@ export type PostObservabilityScoresAggregate_Body = {
|
|
|
7177
7197
|
/** Aggregation function */
|
|
7178
7198
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7179
7199
|
/** Filters for querying scores */
|
|
7180
|
-
filters?:
|
|
7200
|
+
filters?: Shared_Type_78 | undefined;
|
|
7181
7201
|
/** Comparison period for aggregate queries */
|
|
7182
7202
|
comparePeriod?: ('previous_period' | 'previous_day' | 'previous_week') | undefined;
|
|
7183
7203
|
};
|
|
@@ -7218,7 +7238,7 @@ export type PostObservabilityScoresBreakdown_Body = {
|
|
|
7218
7238
|
/** Aggregation function */
|
|
7219
7239
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7220
7240
|
/** Filters for querying scores */
|
|
7221
|
-
filters?:
|
|
7241
|
+
filters?: Shared_Type_78 | undefined;
|
|
7222
7242
|
};
|
|
7223
7243
|
export type PostObservabilityScoresBreakdown_Response = {
|
|
7224
7244
|
groups: {
|
|
@@ -7259,7 +7279,7 @@ export type PostObservabilityScoresTimeseries_Body = {
|
|
|
7259
7279
|
/** Aggregation function */
|
|
7260
7280
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7261
7281
|
/** Filters for querying scores */
|
|
7262
|
-
filters?:
|
|
7282
|
+
filters?: Shared_Type_78 | undefined;
|
|
7263
7283
|
/** Fields to group by */
|
|
7264
7284
|
groupBy?: string[] | undefined;
|
|
7265
7285
|
};
|
|
@@ -7304,7 +7324,7 @@ export type PostObservabilityScoresPercentiles_Body = {
|
|
|
7304
7324
|
/** Time bucket interval */
|
|
7305
7325
|
interval: '1m' | '5m' | '15m' | '1h' | '1d';
|
|
7306
7326
|
/** Filters for querying scores */
|
|
7307
|
-
filters?:
|
|
7327
|
+
filters?: Shared_Type_78 | undefined;
|
|
7308
7328
|
};
|
|
7309
7329
|
export type PostObservabilityScoresPercentiles_Response = {
|
|
7310
7330
|
series: {
|
|
@@ -7338,12 +7358,12 @@ export interface PostObservabilityScoresPercentiles_RouteContract {
|
|
|
7338
7358
|
responseType: 'json';
|
|
7339
7359
|
}
|
|
7340
7360
|
export type GetObservabilityFeedback_QueryParams = {
|
|
7341
|
-
timestamp?: ((
|
|
7361
|
+
timestamp?: ((Shared_Type_69 | undefined) | undefined) | unknown;
|
|
7342
7362
|
/** Filter by trace ID */
|
|
7343
7363
|
traceId?: (string | undefined) | undefined;
|
|
7344
7364
|
/** Filter by span ID */
|
|
7345
7365
|
spanId?: (string | undefined) | undefined;
|
|
7346
|
-
entityType?: (
|
|
7366
|
+
entityType?: (Shared_Type_71 | undefined) | undefined;
|
|
7347
7367
|
entityName?: (string | undefined) | undefined;
|
|
7348
7368
|
entityVersionId?: (string | undefined) | undefined;
|
|
7349
7369
|
parentEntityVersionId?: (string | undefined) | undefined;
|
|
@@ -7353,9 +7373,9 @@ export type GetObservabilityFeedback_QueryParams = {
|
|
|
7353
7373
|
experimentId?: (string | undefined) | undefined;
|
|
7354
7374
|
serviceName?: (string | undefined) | undefined;
|
|
7355
7375
|
environment?: (string | undefined) | undefined;
|
|
7356
|
-
parentEntityType?: (
|
|
7376
|
+
parentEntityType?: (Shared_Type_71 | undefined) | undefined;
|
|
7357
7377
|
parentEntityName?: (string | undefined) | undefined;
|
|
7358
|
-
rootEntityType?: (
|
|
7378
|
+
rootEntityType?: (Shared_Type_71 | undefined) | undefined;
|
|
7359
7379
|
rootEntityName?: (string | undefined) | undefined;
|
|
7360
7380
|
resourceId?: (string | undefined) | undefined;
|
|
7361
7381
|
runId?: (string | undefined) | undefined;
|
|
@@ -7381,9 +7401,9 @@ export type GetObservabilityFeedback_QueryParams = {
|
|
|
7381
7401
|
limit?: (number | undefined) | undefined;
|
|
7382
7402
|
};
|
|
7383
7403
|
export type GetObservabilityFeedback_Response = {
|
|
7384
|
-
pagination?:
|
|
7404
|
+
pagination?: Shared_Type_72 | undefined;
|
|
7385
7405
|
/** Incremental polling metadata */
|
|
7386
|
-
delta?:
|
|
7406
|
+
delta?: Shared_Type_73 | undefined;
|
|
7387
7407
|
/** Opaque cursor value for incremental polling */
|
|
7388
7408
|
deltaCursor?: string | undefined;
|
|
7389
7409
|
feedback: {
|
|
@@ -7403,13 +7423,13 @@ export type GetObservabilityFeedback_Response = {
|
|
|
7403
7423
|
value: number | string;
|
|
7404
7424
|
comment?: (string | null) | undefined;
|
|
7405
7425
|
feedbackUserId?: (string | null) | undefined;
|
|
7406
|
-
entityType?: (
|
|
7426
|
+
entityType?: (Shared_Type_71 | null) | undefined;
|
|
7407
7427
|
entityId?: (string | null) | undefined;
|
|
7408
7428
|
entityName?: (string | null) | undefined;
|
|
7409
|
-
parentEntityType?: (
|
|
7429
|
+
parentEntityType?: (Shared_Type_71 | null) | undefined;
|
|
7410
7430
|
parentEntityId?: (string | null) | undefined;
|
|
7411
7431
|
parentEntityName?: (string | null) | undefined;
|
|
7412
|
-
rootEntityType?: (
|
|
7432
|
+
rootEntityType?: (Shared_Type_71 | null) | undefined;
|
|
7413
7433
|
rootEntityId?: (string | null) | undefined;
|
|
7414
7434
|
rootEntityName?: (string | null) | undefined;
|
|
7415
7435
|
userId?: (string | null) | undefined;
|
|
@@ -7473,13 +7493,13 @@ export type PostObservabilityFeedback_Body = {
|
|
|
7473
7493
|
value: number | string;
|
|
7474
7494
|
comment?: (string | null) | undefined;
|
|
7475
7495
|
feedbackUserId?: (string | null) | undefined;
|
|
7476
|
-
entityType?: (
|
|
7496
|
+
entityType?: (Shared_Type_71 | null) | undefined;
|
|
7477
7497
|
entityId?: (string | null) | undefined;
|
|
7478
7498
|
entityName?: (string | null) | undefined;
|
|
7479
|
-
parentEntityType?: (
|
|
7499
|
+
parentEntityType?: (Shared_Type_71 | null) | undefined;
|
|
7480
7500
|
parentEntityId?: (string | null) | undefined;
|
|
7481
7501
|
parentEntityName?: (string | null) | undefined;
|
|
7482
|
-
rootEntityType?: (
|
|
7502
|
+
rootEntityType?: (Shared_Type_71 | null) | undefined;
|
|
7483
7503
|
rootEntityId?: (string | null) | undefined;
|
|
7484
7504
|
rootEntityName?: (string | null) | undefined;
|
|
7485
7505
|
userId?: (string | null) | undefined;
|
|
@@ -7536,7 +7556,7 @@ export type PostObservabilityFeedbackAggregate_Body = {
|
|
|
7536
7556
|
/** Aggregation function */
|
|
7537
7557
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7538
7558
|
/** Filters for querying feedback */
|
|
7539
|
-
filters?:
|
|
7559
|
+
filters?: Shared_Type_79 | undefined;
|
|
7540
7560
|
/** Comparison period for aggregate queries */
|
|
7541
7561
|
comparePeriod?: ('previous_period' | 'previous_day' | 'previous_week') | undefined;
|
|
7542
7562
|
};
|
|
@@ -7570,7 +7590,7 @@ export type PostObservabilityFeedbackBreakdown_Body = {
|
|
|
7570
7590
|
/** Aggregation function */
|
|
7571
7591
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7572
7592
|
/** Filters for querying feedback */
|
|
7573
|
-
filters?:
|
|
7593
|
+
filters?: Shared_Type_79 | undefined;
|
|
7574
7594
|
};
|
|
7575
7595
|
export type PostObservabilityFeedbackBreakdown_Response = PostObservabilityScoresBreakdown_Response;
|
|
7576
7596
|
export type PostObservabilityFeedbackBreakdown_Request = Simplify<(never extends never ? {} : {
|
|
@@ -7602,7 +7622,7 @@ export type PostObservabilityFeedbackTimeseries_Body = {
|
|
|
7602
7622
|
/** Aggregation function */
|
|
7603
7623
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7604
7624
|
/** Filters for querying feedback */
|
|
7605
|
-
filters?:
|
|
7625
|
+
filters?: Shared_Type_79 | undefined;
|
|
7606
7626
|
/** Fields to group by */
|
|
7607
7627
|
groupBy?: string[] | undefined;
|
|
7608
7628
|
};
|
|
@@ -7647,7 +7667,7 @@ export type PostObservabilityFeedbackPercentiles_Body = {
|
|
|
7647
7667
|
/** Time bucket interval */
|
|
7648
7668
|
interval: '1m' | '5m' | '15m' | '1h' | '1d';
|
|
7649
7669
|
/** Filters for querying feedback */
|
|
7650
|
-
filters?:
|
|
7670
|
+
filters?: Shared_Type_79 | undefined;
|
|
7651
7671
|
};
|
|
7652
7672
|
export type PostObservabilityFeedbackPercentiles_Response = PostObservabilityScoresPercentiles_Response;
|
|
7653
7673
|
export type PostObservabilityFeedbackPercentiles_Request = Simplify<(never extends never ? {} : {
|
|
@@ -7675,9 +7695,9 @@ export type PostObservabilityMetricsAggregate_Body = {
|
|
|
7675
7695
|
/** Aggregation function */
|
|
7676
7696
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7677
7697
|
/** Column to apply count_distinct over (required when aggregation is 'count_distinct'). Restricted to allowlisted metric dimensions. */
|
|
7678
|
-
distinctColumn?:
|
|
7698
|
+
distinctColumn?: Shared_Type_80 | undefined;
|
|
7679
7699
|
/** Filters for querying metrics */
|
|
7680
|
-
filters?:
|
|
7700
|
+
filters?: Shared_Type_81 | undefined;
|
|
7681
7701
|
/** Comparison period for aggregate queries */
|
|
7682
7702
|
comparePeriod?: ('previous_period' | 'previous_day' | 'previous_week') | undefined;
|
|
7683
7703
|
};
|
|
@@ -7724,9 +7744,9 @@ export type PostObservabilityMetricsBreakdown_Body = {
|
|
|
7724
7744
|
/** Aggregation function */
|
|
7725
7745
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7726
7746
|
/** Column to apply count_distinct over (required when aggregation is 'count_distinct'). Restricted to allowlisted metric dimensions. */
|
|
7727
|
-
distinctColumn?:
|
|
7747
|
+
distinctColumn?: Shared_Type_80 | undefined;
|
|
7728
7748
|
/** Filters for querying metrics */
|
|
7729
|
-
filters?:
|
|
7749
|
+
filters?: Shared_Type_81 | undefined;
|
|
7730
7750
|
/** Maximum number of groups to return (server-side TopK). Required for high-cardinality groupBy. */
|
|
7731
7751
|
limit?: number | undefined;
|
|
7732
7752
|
/** Sort direction for the aggregated value (defaults to 'DESC' at the storage layer; pairs with limit for top/bottom-N). */
|
|
@@ -7773,9 +7793,9 @@ export type PostObservabilityMetricsTimeseries_Body = {
|
|
|
7773
7793
|
/** Aggregation function */
|
|
7774
7794
|
aggregation: 'sum' | 'avg' | 'min' | 'max' | 'count' | 'count_distinct' | 'last';
|
|
7775
7795
|
/** Column to apply count_distinct over (required when aggregation is 'count_distinct'). Restricted to allowlisted metric dimensions. */
|
|
7776
|
-
distinctColumn?:
|
|
7796
|
+
distinctColumn?: Shared_Type_80 | undefined;
|
|
7777
7797
|
/** Filters for querying metrics */
|
|
7778
|
-
filters?:
|
|
7798
|
+
filters?: Shared_Type_81 | undefined;
|
|
7779
7799
|
/** Fields to group by */
|
|
7780
7800
|
groupBy?: string[] | undefined;
|
|
7781
7801
|
};
|
|
@@ -7822,7 +7842,7 @@ export type PostObservabilityMetricsPercentiles_Body = {
|
|
|
7822
7842
|
/** Time bucket interval */
|
|
7823
7843
|
interval: '1m' | '5m' | '15m' | '1h' | '1d';
|
|
7824
7844
|
/** Filters for querying metrics */
|
|
7825
|
-
filters?:
|
|
7845
|
+
filters?: Shared_Type_81 | undefined;
|
|
7826
7846
|
};
|
|
7827
7847
|
export type PostObservabilityMetricsPercentiles_Response = PostObservabilityScoresPercentiles_Response;
|
|
7828
7848
|
export type PostObservabilityMetricsPercentiles_Request = Simplify<(never extends never ? {} : {
|
|
@@ -7935,7 +7955,7 @@ export interface GetObservabilityDiscoveryMetricLabelValues_RouteContract {
|
|
|
7935
7955
|
}
|
|
7936
7956
|
export type GetObservabilityDiscoveryEntityTypes_Response = {
|
|
7937
7957
|
/** Distinct entity types */
|
|
7938
|
-
entityTypes:
|
|
7958
|
+
entityTypes: Shared_Type_71[];
|
|
7939
7959
|
};
|
|
7940
7960
|
export type GetObservabilityDiscoveryEntityTypes_Request = Simplify<(never extends never ? {} : {
|
|
7941
7961
|
params: never;
|
|
@@ -7958,7 +7978,7 @@ export interface GetObservabilityDiscoveryEntityTypes_RouteContract {
|
|
|
7958
7978
|
}
|
|
7959
7979
|
export type GetObservabilityDiscoveryEntityNames_QueryParams = {
|
|
7960
7980
|
/** Optional entity type filter */
|
|
7961
|
-
entityType?: (
|
|
7981
|
+
entityType?: (Shared_Type_71 | undefined) | undefined;
|
|
7962
7982
|
};
|
|
7963
7983
|
export type GetObservabilityDiscoveryEntityNames_Response = {
|
|
7964
7984
|
/** Distinct entity names */
|
|
@@ -8426,12 +8446,12 @@ export type PostA2aAgentId_Body = {
|
|
|
8426
8446
|
jsonrpc: '2.0';
|
|
8427
8447
|
id: string | number;
|
|
8428
8448
|
method: 'message/send';
|
|
8429
|
-
params:
|
|
8449
|
+
params: Shared_Type_91;
|
|
8430
8450
|
} | {
|
|
8431
8451
|
jsonrpc: '2.0';
|
|
8432
8452
|
id: string | number;
|
|
8433
8453
|
method: 'message/stream';
|
|
8434
|
-
params:
|
|
8454
|
+
params: Shared_Type_91;
|
|
8435
8455
|
} | {
|
|
8436
8456
|
jsonrpc: '2.0';
|
|
8437
8457
|
id: string | number;
|
|
@@ -8474,7 +8494,7 @@ export type PostA2aAgentId_Body = {
|
|
|
8474
8494
|
params: {
|
|
8475
8495
|
/** Task id */
|
|
8476
8496
|
taskId: string;
|
|
8477
|
-
pushNotificationConfig:
|
|
8497
|
+
pushNotificationConfig: Shared_Type_89;
|
|
8478
8498
|
};
|
|
8479
8499
|
} | {
|
|
8480
8500
|
jsonrpc: '2.0';
|
|
@@ -9540,7 +9560,7 @@ export type GetMcpServerIdTools_PathParams = {
|
|
|
9540
9560
|
serverId: string;
|
|
9541
9561
|
};
|
|
9542
9562
|
export type GetMcpServerIdTools_Response = {
|
|
9543
|
-
tools:
|
|
9563
|
+
tools: Shared_Type_92[];
|
|
9544
9564
|
};
|
|
9545
9565
|
export type GetMcpServerIdTools_Request = Simplify<(GetMcpServerIdTools_PathParams extends never ? {} : {
|
|
9546
9566
|
params: GetMcpServerIdTools_PathParams;
|
|
@@ -9567,7 +9587,7 @@ export type GetMcpServerIdToolsToolId_PathParams = {
|
|
|
9567
9587
|
/** Tool ID */
|
|
9568
9588
|
toolId: string;
|
|
9569
9589
|
};
|
|
9570
|
-
export type GetMcpServerIdToolsToolId_Response =
|
|
9590
|
+
export type GetMcpServerIdToolsToolId_Response = Shared_Type_92;
|
|
9571
9591
|
export type GetMcpServerIdToolsToolId_Request = Simplify<(GetMcpServerIdToolsToolId_PathParams extends never ? {} : {
|
|
9572
9592
|
params: GetMcpServerIdToolsToolId_PathParams;
|
|
9573
9593
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -9858,19 +9878,19 @@ export type PostStoredAgentsStoredAgentIdExport_Body = {
|
|
|
9858
9878
|
rules?: Shared_Type_9 | undefined;
|
|
9859
9879
|
}[]) | undefined;
|
|
9860
9880
|
/** Tool keys mapped to per-tool config — static or conditional */
|
|
9861
|
-
tools?:
|
|
9881
|
+
tools?: Shared_Type_93;
|
|
9862
9882
|
/** Default options for generate/stream calls — static or conditional */
|
|
9863
|
-
defaultOptions?:
|
|
9883
|
+
defaultOptions?: Shared_Type_94;
|
|
9864
9884
|
/** Workflow keys with optional per-workflow config — static or conditional */
|
|
9865
|
-
workflows?:
|
|
9885
|
+
workflows?: Shared_Type_93;
|
|
9866
9886
|
/** Agent keys with optional per-agent config — static or conditional */
|
|
9867
|
-
agents?:
|
|
9887
|
+
agents?: Shared_Type_93;
|
|
9868
9888
|
/** Map of tool provider IDs to their tool configurations — static or conditional */
|
|
9869
|
-
integrationTools?:
|
|
9889
|
+
integrationTools?: Shared_Type_95;
|
|
9870
9890
|
/** Tool provider connections and per-tool config (provider-agnostic). Coexists with the deprecated `integrationTools` field. */
|
|
9871
|
-
toolProviders?:
|
|
9891
|
+
toolProviders?: Shared_Type_96;
|
|
9872
9892
|
/** Map of stored MCP client IDs to their tool configurations — static or conditional */
|
|
9873
|
-
mcpClients?:
|
|
9893
|
+
mcpClients?: Shared_Type_95;
|
|
9874
9894
|
/** Input processor graph — static or conditional */
|
|
9875
9895
|
inputProcessors?: (Shared_Type_20 | undefined) | undefined;
|
|
9876
9896
|
/** Output processor graph — static or conditional */
|
|
@@ -9881,14 +9901,14 @@ export type PostStoredAgentsStoredAgentIdExport_Body = {
|
|
|
9881
9901
|
rules?: Shared_Type_9 | undefined;
|
|
9882
9902
|
}[]) | null) | undefined) | undefined;
|
|
9883
9903
|
/** Scorer keys with optional sampling config — static or conditional */
|
|
9884
|
-
scorers?:
|
|
9904
|
+
scorers?: Shared_Type_97;
|
|
9885
9905
|
/** Skill IDs mapped to per-skill config — static or conditional */
|
|
9886
9906
|
skills?: ((Shared_Type_29 | {
|
|
9887
9907
|
value: Shared_Type_29;
|
|
9888
9908
|
rules?: Shared_Type_9 | undefined;
|
|
9889
9909
|
}[]) | undefined) | undefined;
|
|
9890
9910
|
/** Workspace reference (stored ID or inline config) — static or conditional */
|
|
9891
|
-
workspace?:
|
|
9911
|
+
workspace?: Shared_Type_98;
|
|
9892
9912
|
/** Browser configuration — object config, true (apply default), false/null (disable) */
|
|
9893
9913
|
browser?: ((Shared_Type_41 | boolean | null) | undefined) | undefined;
|
|
9894
9914
|
/** JSON Schema defining valid request context variables for conditional rule evaluation */
|
|
@@ -9937,19 +9957,19 @@ export type PostStoredAgentsStoredAgentIdChangeRequest_Body = {
|
|
|
9937
9957
|
rules?: Shared_Type_9 | undefined;
|
|
9938
9958
|
}[]) | undefined;
|
|
9939
9959
|
/** Tool keys mapped to per-tool config — static or conditional */
|
|
9940
|
-
tools?:
|
|
9960
|
+
tools?: Shared_Type_93;
|
|
9941
9961
|
/** Default options for generate/stream calls — static or conditional */
|
|
9942
|
-
defaultOptions?:
|
|
9962
|
+
defaultOptions?: Shared_Type_94;
|
|
9943
9963
|
/** Workflow keys with optional per-workflow config — static or conditional */
|
|
9944
|
-
workflows?:
|
|
9964
|
+
workflows?: Shared_Type_93;
|
|
9945
9965
|
/** Agent keys with optional per-agent config — static or conditional */
|
|
9946
|
-
agents?:
|
|
9966
|
+
agents?: Shared_Type_93;
|
|
9947
9967
|
/** Map of tool provider IDs to their tool configurations — static or conditional */
|
|
9948
|
-
integrationTools?:
|
|
9968
|
+
integrationTools?: Shared_Type_95;
|
|
9949
9969
|
/** Tool provider connections and per-tool config (provider-agnostic). Coexists with the deprecated `integrationTools` field. */
|
|
9950
|
-
toolProviders?:
|
|
9970
|
+
toolProviders?: Shared_Type_96;
|
|
9951
9971
|
/** Map of stored MCP client IDs to their tool configurations — static or conditional */
|
|
9952
|
-
mcpClients?:
|
|
9972
|
+
mcpClients?: Shared_Type_95;
|
|
9953
9973
|
/** Input processor graph — static or conditional */
|
|
9954
9974
|
inputProcessors?: (Shared_Type_20 | undefined) | undefined;
|
|
9955
9975
|
/** Output processor graph — static or conditional */
|
|
@@ -9960,14 +9980,14 @@ export type PostStoredAgentsStoredAgentIdChangeRequest_Body = {
|
|
|
9960
9980
|
rules?: Shared_Type_9 | undefined;
|
|
9961
9981
|
}[]) | null) | undefined) | undefined;
|
|
9962
9982
|
/** Scorer keys with optional sampling config — static or conditional */
|
|
9963
|
-
scorers?:
|
|
9983
|
+
scorers?: Shared_Type_97;
|
|
9964
9984
|
/** Skill IDs mapped to per-skill config — static or conditional */
|
|
9965
9985
|
skills?: ((Shared_Type_29 | {
|
|
9966
9986
|
value: Shared_Type_29;
|
|
9967
9987
|
rules?: Shared_Type_9 | undefined;
|
|
9968
9988
|
}[]) | undefined) | undefined;
|
|
9969
9989
|
/** Workspace reference (stored ID or inline config) — static or conditional */
|
|
9970
|
-
workspace?:
|
|
9990
|
+
workspace?: Shared_Type_98;
|
|
9971
9991
|
/** Browser configuration — object config, true (apply default), false/null (disable) */
|
|
9972
9992
|
browser?: ((Shared_Type_41 | boolean | null) | undefined) | undefined;
|
|
9973
9993
|
/** JSON Schema defining valid request context variables for conditional rule evaluation */
|
|
@@ -10349,7 +10369,7 @@ export type GetStoredAgentsAgentIdVersions_Response = {
|
|
|
10349
10369
|
page: number;
|
|
10350
10370
|
perPage: number | false;
|
|
10351
10371
|
hasMore: boolean;
|
|
10352
|
-
versions:
|
|
10372
|
+
versions: Shared_Type_99[];
|
|
10353
10373
|
};
|
|
10354
10374
|
export type GetStoredAgentsAgentIdVersions_Request = Simplify<(GetStoredAgentsAgentIdVersions_PathParams extends never ? {} : {
|
|
10355
10375
|
params: GetStoredAgentsAgentIdVersions_PathParams;
|
|
@@ -10495,7 +10515,7 @@ export type GetStoredAgentsAgentIdVersionsCompare_QueryParams = {
|
|
|
10495
10515
|
};
|
|
10496
10516
|
export type GetStoredAgentsAgentIdVersionsCompare_Response = {
|
|
10497
10517
|
/** List of differences between versions */
|
|
10498
|
-
diffs:
|
|
10518
|
+
diffs: Shared_Type_100[];
|
|
10499
10519
|
/** The source version */
|
|
10500
10520
|
fromVersion: {
|
|
10501
10521
|
/** Unique identifier for the version (UUID) */
|
|
@@ -10708,7 +10728,7 @@ export type GetStoredAgentsAgentIdVersionsVersionId_PathParams = {
|
|
|
10708
10728
|
/** Unique identifier for the version (UUID) */
|
|
10709
10729
|
versionId: string;
|
|
10710
10730
|
};
|
|
10711
|
-
export type GetStoredAgentsAgentIdVersionsVersionId_Response =
|
|
10731
|
+
export type GetStoredAgentsAgentIdVersionsVersionId_Response = Shared_Type_99;
|
|
10712
10732
|
export type GetStoredAgentsAgentIdVersionsVersionId_Request = Simplify<(GetStoredAgentsAgentIdVersionsVersionId_PathParams extends never ? {} : {
|
|
10713
10733
|
params: GetStoredAgentsAgentIdVersionsVersionId_PathParams;
|
|
10714
10734
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -10940,7 +10960,7 @@ export type GetStoredWorkflows_QueryParams = {
|
|
|
10940
10960
|
authorId?: string | undefined;
|
|
10941
10961
|
};
|
|
10942
10962
|
export type GetStoredWorkflows_Response = {
|
|
10943
|
-
workflows:
|
|
10963
|
+
workflows: Shared_Type_101[];
|
|
10944
10964
|
total: number;
|
|
10945
10965
|
};
|
|
10946
10966
|
export type GetStoredWorkflows_Request = Simplify<(never extends never ? {} : {
|
|
@@ -10984,7 +11004,7 @@ export type PostStoredWorkflows_Body = {
|
|
|
10984
11004
|
[key: string]: unknown;
|
|
10985
11005
|
} | undefined;
|
|
10986
11006
|
/** Static workflow graph — ordered array of serialized step entries with all refs as ids. */
|
|
10987
|
-
graph:
|
|
11007
|
+
graph: Shared_Type_106[];
|
|
10988
11008
|
/** 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 stored workflow in its own right. */
|
|
10989
11009
|
dependencies?: {
|
|
10990
11010
|
/** Workflow id — kebab-case, descriptive */
|
|
@@ -11008,7 +11028,7 @@ export type PostStoredWorkflows_Body = {
|
|
|
11008
11028
|
[key: string]: unknown;
|
|
11009
11029
|
} | undefined;
|
|
11010
11030
|
/** Static workflow graph — ordered array of serialized step entries with all refs as ids. */
|
|
11011
|
-
graph:
|
|
11031
|
+
graph: Shared_Type_106[];
|
|
11012
11032
|
}[] | undefined;
|
|
11013
11033
|
};
|
|
11014
11034
|
export type PostStoredWorkflows_Response = {
|
|
@@ -11040,7 +11060,7 @@ export type GetStoredWorkflowsStoredWorkflowId_PathParams = {
|
|
|
11040
11060
|
/** Unique identifier for the stored workflow definition */
|
|
11041
11061
|
storedWorkflowId: string;
|
|
11042
11062
|
};
|
|
11043
|
-
export type GetStoredWorkflowsStoredWorkflowId_Response =
|
|
11063
|
+
export type GetStoredWorkflowsStoredWorkflowId_Response = Shared_Type_101;
|
|
11044
11064
|
export type GetStoredWorkflowsStoredWorkflowId_Request = Simplify<(GetStoredWorkflowsStoredWorkflowId_PathParams extends never ? {} : {
|
|
11045
11065
|
params: GetStoredWorkflowsStoredWorkflowId_PathParams;
|
|
11046
11066
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11105,7 +11125,7 @@ export type GetStoredMcpClients_Response = {
|
|
|
11105
11125
|
page: number;
|
|
11106
11126
|
perPage: number | false;
|
|
11107
11127
|
hasMore: boolean;
|
|
11108
|
-
mcpClients:
|
|
11128
|
+
mcpClients: Shared_Type_108[];
|
|
11109
11129
|
};
|
|
11110
11130
|
export type GetStoredMcpClients_Request = Simplify<(never extends never ? {} : {
|
|
11111
11131
|
params: never;
|
|
@@ -11131,7 +11151,7 @@ export type GetStoredMcpClientsStoredMCPClientId_PathParams = {
|
|
|
11131
11151
|
storedMCPClientId: string;
|
|
11132
11152
|
};
|
|
11133
11153
|
export type GetStoredMcpClientsStoredMCPClientId_QueryParams = GetStoredAgentsStoredAgentId_QueryParams;
|
|
11134
|
-
export type GetStoredMcpClientsStoredMCPClientId_Response =
|
|
11154
|
+
export type GetStoredMcpClientsStoredMCPClientId_Response = Shared_Type_108;
|
|
11135
11155
|
export type GetStoredMcpClientsStoredMCPClientId_Request = Simplify<(GetStoredMcpClientsStoredMCPClientId_PathParams extends never ? {} : {
|
|
11136
11156
|
params: GetStoredMcpClientsStoredMCPClientId_PathParams;
|
|
11137
11157
|
}) & (GetStoredMcpClientsStoredMCPClientId_QueryParams extends never ? {} : {} extends GetStoredMcpClientsStoredMCPClientId_QueryParams ? {
|
|
@@ -11166,7 +11186,7 @@ export type PostStoredMcpClients_Body = {
|
|
|
11166
11186
|
description?: string | undefined;
|
|
11167
11187
|
/** Map of server name to server configuration */
|
|
11168
11188
|
servers: {
|
|
11169
|
-
[key: string]:
|
|
11189
|
+
[key: string]: Shared_Type_107;
|
|
11170
11190
|
};
|
|
11171
11191
|
};
|
|
11172
11192
|
export type PostStoredMcpClients_Response = GetStoredMcpClientsStoredMCPClientId_Response;
|
|
@@ -11201,7 +11221,7 @@ export type PatchStoredMcpClientsStoredMCPClientId_Body = {
|
|
|
11201
11221
|
description?: (string | undefined) | undefined;
|
|
11202
11222
|
/** Map of server name to server configuration */
|
|
11203
11223
|
servers?: {
|
|
11204
|
-
[key: string]:
|
|
11224
|
+
[key: string]: Shared_Type_107;
|
|
11205
11225
|
} | undefined;
|
|
11206
11226
|
};
|
|
11207
11227
|
export type PatchStoredMcpClientsStoredMCPClientId_Response = {
|
|
@@ -11214,7 +11234,7 @@ export type PatchStoredMcpClientsStoredMCPClientId_Response = {
|
|
|
11214
11234
|
} | undefined;
|
|
11215
11235
|
createdAt: Date;
|
|
11216
11236
|
updatedAt: Date;
|
|
11217
|
-
} |
|
|
11237
|
+
} | Shared_Type_108;
|
|
11218
11238
|
export type PatchStoredMcpClientsStoredMCPClientId_Request = Simplify<(PatchStoredMcpClientsStoredMCPClientId_PathParams extends never ? {} : {
|
|
11219
11239
|
params: PatchStoredMcpClientsStoredMCPClientId_PathParams;
|
|
11220
11240
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11265,7 +11285,7 @@ export type GetStoredMcpClientsMcpClientIdVersions_Response = {
|
|
|
11265
11285
|
page: number;
|
|
11266
11286
|
perPage: number | false;
|
|
11267
11287
|
hasMore: boolean;
|
|
11268
|
-
versions:
|
|
11288
|
+
versions: Shared_Type_110[];
|
|
11269
11289
|
};
|
|
11270
11290
|
export type GetStoredMcpClientsMcpClientIdVersions_Request = Simplify<(GetStoredMcpClientsMcpClientIdVersions_PathParams extends never ? {} : {
|
|
11271
11291
|
params: GetStoredMcpClientsMcpClientIdVersions_PathParams;
|
|
@@ -11297,7 +11317,7 @@ export type PostStoredMcpClientsMcpClientIdVersions_Response = {
|
|
|
11297
11317
|
/** Description of the MCP client */
|
|
11298
11318
|
description?: (string | undefined) | undefined;
|
|
11299
11319
|
servers?: {
|
|
11300
|
-
[key: string]:
|
|
11320
|
+
[key: string]: Shared_Type_109;
|
|
11301
11321
|
} | undefined;
|
|
11302
11322
|
/** Array of field names that changed from the previous version */
|
|
11303
11323
|
changedFields?: (string[] | undefined) | undefined;
|
|
@@ -11328,7 +11348,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsCompare_PathParams = GetStored
|
|
|
11328
11348
|
export type GetStoredMcpClientsMcpClientIdVersionsCompare_QueryParams = GetStoredAgentsAgentIdVersionsCompare_QueryParams;
|
|
11329
11349
|
export type GetStoredMcpClientsMcpClientIdVersionsCompare_Response = {
|
|
11330
11350
|
/** List of differences between versions */
|
|
11331
|
-
diffs:
|
|
11351
|
+
diffs: Shared_Type_100[];
|
|
11332
11352
|
/** The source version */
|
|
11333
11353
|
fromVersion: {
|
|
11334
11354
|
/** Unique identifier for the version (UUID) */
|
|
@@ -11342,7 +11362,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsCompare_Response = {
|
|
|
11342
11362
|
/** Description of the MCP client */
|
|
11343
11363
|
description?: string | undefined;
|
|
11344
11364
|
servers: {
|
|
11345
|
-
[key: string]:
|
|
11365
|
+
[key: string]: Shared_Type_109;
|
|
11346
11366
|
};
|
|
11347
11367
|
/** Array of field names that changed from the previous version */
|
|
11348
11368
|
changedFields?: string[] | undefined;
|
|
@@ -11364,7 +11384,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsCompare_Response = {
|
|
|
11364
11384
|
/** Description of the MCP client */
|
|
11365
11385
|
description?: string | undefined;
|
|
11366
11386
|
servers: {
|
|
11367
|
-
[key: string]:
|
|
11387
|
+
[key: string]: Shared_Type_109;
|
|
11368
11388
|
};
|
|
11369
11389
|
/** Array of field names that changed from the previous version */
|
|
11370
11390
|
changedFields?: string[] | undefined;
|
|
@@ -11399,7 +11419,7 @@ export type GetStoredMcpClientsMcpClientIdVersionsVersionId_PathParams = {
|
|
|
11399
11419
|
/** Unique identifier for the version (UUID) */
|
|
11400
11420
|
versionId: string;
|
|
11401
11421
|
};
|
|
11402
|
-
export type GetStoredMcpClientsMcpClientIdVersionsVersionId_Response =
|
|
11422
|
+
export type GetStoredMcpClientsMcpClientIdVersionsVersionId_Response = Shared_Type_110;
|
|
11403
11423
|
export type GetStoredMcpClientsMcpClientIdVersionsVersionId_Request = Simplify<(GetStoredMcpClientsMcpClientIdVersionsVersionId_PathParams extends never ? {} : {
|
|
11404
11424
|
params: GetStoredMcpClientsMcpClientIdVersionsVersionId_PathParams;
|
|
11405
11425
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11503,7 +11523,7 @@ export type GetStoredPromptBlocks_Response = {
|
|
|
11503
11523
|
page: number;
|
|
11504
11524
|
perPage: number | false;
|
|
11505
11525
|
hasMore: boolean;
|
|
11506
|
-
promptBlocks:
|
|
11526
|
+
promptBlocks: Shared_Type_111[];
|
|
11507
11527
|
};
|
|
11508
11528
|
export type GetStoredPromptBlocks_Request = Simplify<(never extends never ? {} : {
|
|
11509
11529
|
params: never;
|
|
@@ -11529,7 +11549,7 @@ export type GetStoredPromptBlocksStoredPromptBlockId_PathParams = {
|
|
|
11529
11549
|
storedPromptBlockId: string;
|
|
11530
11550
|
};
|
|
11531
11551
|
export type GetStoredPromptBlocksStoredPromptBlockId_QueryParams = GetStoredAgentsStoredAgentId_QueryParams;
|
|
11532
|
-
export type GetStoredPromptBlocksStoredPromptBlockId_Response =
|
|
11552
|
+
export type GetStoredPromptBlocksStoredPromptBlockId_Response = Shared_Type_111;
|
|
11533
11553
|
export type GetStoredPromptBlocksStoredPromptBlockId_Request = Simplify<(GetStoredPromptBlocksStoredPromptBlockId_PathParams extends never ? {} : {
|
|
11534
11554
|
params: GetStoredPromptBlocksStoredPromptBlockId_PathParams;
|
|
11535
11555
|
}) & (GetStoredPromptBlocksStoredPromptBlockId_QueryParams extends never ? {} : {} extends GetStoredPromptBlocksStoredPromptBlockId_QueryParams ? {
|
|
@@ -11620,7 +11640,7 @@ export type PatchStoredPromptBlocksStoredPromptBlockId_Response = {
|
|
|
11620
11640
|
} | undefined;
|
|
11621
11641
|
createdAt: Date;
|
|
11622
11642
|
updatedAt: Date;
|
|
11623
|
-
} |
|
|
11643
|
+
} | Shared_Type_111;
|
|
11624
11644
|
export type PatchStoredPromptBlocksStoredPromptBlockId_Request = Simplify<(PatchStoredPromptBlocksStoredPromptBlockId_PathParams extends never ? {} : {
|
|
11625
11645
|
params: PatchStoredPromptBlocksStoredPromptBlockId_PathParams;
|
|
11626
11646
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11671,7 +11691,7 @@ export type GetStoredPromptBlocksPromptBlockIdVersions_Response = {
|
|
|
11671
11691
|
page: number;
|
|
11672
11692
|
perPage: number | false;
|
|
11673
11693
|
hasMore: boolean;
|
|
11674
|
-
versions:
|
|
11694
|
+
versions: Shared_Type_112[];
|
|
11675
11695
|
};
|
|
11676
11696
|
export type GetStoredPromptBlocksPromptBlockIdVersions_Request = Simplify<(GetStoredPromptBlocksPromptBlockIdVersions_PathParams extends never ? {} : {
|
|
11677
11697
|
params: GetStoredPromptBlocksPromptBlockIdVersions_PathParams;
|
|
@@ -11739,7 +11759,7 @@ export type GetStoredPromptBlocksPromptBlockIdVersionsCompare_PathParams = GetSt
|
|
|
11739
11759
|
export type GetStoredPromptBlocksPromptBlockIdVersionsCompare_QueryParams = GetStoredAgentsAgentIdVersionsCompare_QueryParams;
|
|
11740
11760
|
export type GetStoredPromptBlocksPromptBlockIdVersionsCompare_Response = {
|
|
11741
11761
|
/** List of differences between versions */
|
|
11742
|
-
diffs:
|
|
11762
|
+
diffs: Shared_Type_100[];
|
|
11743
11763
|
/** The source version */
|
|
11744
11764
|
fromVersion: {
|
|
11745
11765
|
/** Unique identifier for the version (UUID) */
|
|
@@ -11820,7 +11840,7 @@ export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_PathParams = {
|
|
|
11820
11840
|
/** Unique identifier for the version (UUID) */
|
|
11821
11841
|
versionId: string;
|
|
11822
11842
|
};
|
|
11823
|
-
export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_Response =
|
|
11843
|
+
export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_Response = Shared_Type_112;
|
|
11824
11844
|
export type GetStoredPromptBlocksPromptBlockIdVersionsVersionId_Request = Simplify<(GetStoredPromptBlocksPromptBlockIdVersionsVersionId_PathParams extends never ? {} : {
|
|
11825
11845
|
params: GetStoredPromptBlocksPromptBlockIdVersionsVersionId_PathParams;
|
|
11826
11846
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -11924,7 +11944,7 @@ export type GetStoredScorers_Response = {
|
|
|
11924
11944
|
page: number;
|
|
11925
11945
|
perPage: number | false;
|
|
11926
11946
|
hasMore: boolean;
|
|
11927
|
-
scorerDefinitions:
|
|
11947
|
+
scorerDefinitions: Shared_Type_114[];
|
|
11928
11948
|
};
|
|
11929
11949
|
export type GetStoredScorers_Request = Simplify<(never extends never ? {} : {
|
|
11930
11950
|
params: never;
|
|
@@ -11950,7 +11970,7 @@ export type GetStoredScorersStoredScorerId_PathParams = {
|
|
|
11950
11970
|
storedScorerId: string;
|
|
11951
11971
|
};
|
|
11952
11972
|
export type GetStoredScorersStoredScorerId_QueryParams = GetStoredAgentsStoredAgentId_QueryParams;
|
|
11953
|
-
export type GetStoredScorersStoredScorerId_Response =
|
|
11973
|
+
export type GetStoredScorersStoredScorerId_Response = Shared_Type_114;
|
|
11954
11974
|
export type GetStoredScorersStoredScorerId_Request = Simplify<(GetStoredScorersStoredScorerId_PathParams extends never ? {} : {
|
|
11955
11975
|
params: GetStoredScorersStoredScorerId_PathParams;
|
|
11956
11976
|
}) & (GetStoredScorersStoredScorerId_QueryParams extends never ? {} : {} extends GetStoredScorersStoredScorerId_QueryParams ? {
|
|
@@ -11984,13 +12004,13 @@ export type PostStoredScorers_Body = {
|
|
|
11984
12004
|
/** Description of the scorer */
|
|
11985
12005
|
description?: string | undefined;
|
|
11986
12006
|
/** Scorer type: llm-judge for custom, or a preset type name */
|
|
11987
|
-
type:
|
|
12007
|
+
type: Shared_Type_113;
|
|
11988
12008
|
/** Model configuration for LLM judge */
|
|
11989
12009
|
model?: Shared_Type_11 | undefined;
|
|
11990
12010
|
/** System instructions for the judge LLM (used when type is llm-judge) */
|
|
11991
12011
|
instructions?: string | undefined;
|
|
11992
12012
|
/** Score range configuration (used when type is llm-judge) */
|
|
11993
|
-
scoreRange?:
|
|
12013
|
+
scoreRange?: Shared_Type_115;
|
|
11994
12014
|
/** Serializable config options for preset scorers */
|
|
11995
12015
|
presetConfig?: {
|
|
11996
12016
|
[key: string]: unknown;
|
|
@@ -12034,13 +12054,13 @@ export type PatchStoredScorersStoredScorerId_Body = {
|
|
|
12034
12054
|
/** Description of the scorer */
|
|
12035
12055
|
description?: (string | undefined) | undefined;
|
|
12036
12056
|
/** Scorer type: llm-judge for custom, or a preset type name */
|
|
12037
|
-
type?:
|
|
12057
|
+
type?: Shared_Type_113 | undefined;
|
|
12038
12058
|
/** Model configuration for LLM judge */
|
|
12039
12059
|
model?: (Shared_Type_11 | undefined) | undefined;
|
|
12040
12060
|
/** System instructions for the judge LLM (used when type is llm-judge) */
|
|
12041
12061
|
instructions?: (string | undefined) | undefined;
|
|
12042
12062
|
/** Score range configuration (used when type is llm-judge) */
|
|
12043
|
-
scoreRange?:
|
|
12063
|
+
scoreRange?: Shared_Type_115 | undefined;
|
|
12044
12064
|
/** Serializable config options for preset scorers */
|
|
12045
12065
|
presetConfig?: ({
|
|
12046
12066
|
[key: string]: unknown;
|
|
@@ -12063,7 +12083,7 @@ export type PatchStoredScorersStoredScorerId_Response = {
|
|
|
12063
12083
|
} | undefined;
|
|
12064
12084
|
createdAt: Date;
|
|
12065
12085
|
updatedAt: Date;
|
|
12066
|
-
} |
|
|
12086
|
+
} | Shared_Type_114;
|
|
12067
12087
|
export type PatchStoredScorersStoredScorerId_Request = Simplify<(PatchStoredScorersStoredScorerId_PathParams extends never ? {} : {
|
|
12068
12088
|
params: PatchStoredScorersStoredScorerId_PathParams;
|
|
12069
12089
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12114,7 +12134,7 @@ export type GetStoredScorersScorerIdVersions_Response = {
|
|
|
12114
12134
|
page: number;
|
|
12115
12135
|
perPage: number | false;
|
|
12116
12136
|
hasMore: boolean;
|
|
12117
|
-
versions:
|
|
12137
|
+
versions: Shared_Type_116[];
|
|
12118
12138
|
};
|
|
12119
12139
|
export type GetStoredScorersScorerIdVersions_Request = Simplify<(GetStoredScorersScorerIdVersions_PathParams extends never ? {} : {
|
|
12120
12140
|
params: GetStoredScorersScorerIdVersions_PathParams;
|
|
@@ -12145,7 +12165,7 @@ export type PostStoredScorersScorerIdVersions_Response = {
|
|
|
12145
12165
|
name?: string | undefined;
|
|
12146
12166
|
/** Description of the scorer */
|
|
12147
12167
|
description?: (string | undefined) | undefined;
|
|
12148
|
-
type?:
|
|
12168
|
+
type?: Shared_Type_113 | undefined;
|
|
12149
12169
|
model?: (Shared_Type_11 | undefined) | undefined;
|
|
12150
12170
|
instructions?: (string | undefined) | undefined;
|
|
12151
12171
|
scoreRange?: ({
|
|
@@ -12190,7 +12210,7 @@ export type GetStoredScorersScorerIdVersionsCompare_PathParams = GetStoredScorer
|
|
|
12190
12210
|
export type GetStoredScorersScorerIdVersionsCompare_QueryParams = GetStoredAgentsAgentIdVersionsCompare_QueryParams;
|
|
12191
12211
|
export type GetStoredScorersScorerIdVersionsCompare_Response = {
|
|
12192
12212
|
/** List of differences between versions */
|
|
12193
|
-
diffs:
|
|
12213
|
+
diffs: Shared_Type_100[];
|
|
12194
12214
|
/** The source version */
|
|
12195
12215
|
fromVersion: {
|
|
12196
12216
|
/** Unique identifier for the version (UUID) */
|
|
@@ -12203,7 +12223,7 @@ export type GetStoredScorersScorerIdVersionsCompare_Response = {
|
|
|
12203
12223
|
name: string;
|
|
12204
12224
|
/** Description of the scorer */
|
|
12205
12225
|
description?: string | undefined;
|
|
12206
|
-
type:
|
|
12226
|
+
type: Shared_Type_113;
|
|
12207
12227
|
model?: Shared_Type_11 | undefined;
|
|
12208
12228
|
instructions?: string | undefined;
|
|
12209
12229
|
scoreRange?: {
|
|
@@ -12238,7 +12258,7 @@ export type GetStoredScorersScorerIdVersionsCompare_Response = {
|
|
|
12238
12258
|
name: string;
|
|
12239
12259
|
/** Description of the scorer */
|
|
12240
12260
|
description?: string | undefined;
|
|
12241
|
-
type:
|
|
12261
|
+
type: Shared_Type_113;
|
|
12242
12262
|
model?: Shared_Type_11 | undefined;
|
|
12243
12263
|
instructions?: string | undefined;
|
|
12244
12264
|
scoreRange?: {
|
|
@@ -12287,7 +12307,7 @@ export type GetStoredScorersScorerIdVersionsVersionId_PathParams = {
|
|
|
12287
12307
|
/** Unique identifier for the version (UUID) */
|
|
12288
12308
|
versionId: string;
|
|
12289
12309
|
};
|
|
12290
|
-
export type GetStoredScorersScorerIdVersionsVersionId_Response =
|
|
12310
|
+
export type GetStoredScorersScorerIdVersionsVersionId_Response = Shared_Type_116;
|
|
12291
12311
|
export type GetStoredScorersScorerIdVersionsVersionId_Request = Simplify<(GetStoredScorersScorerIdVersionsVersionId_PathParams extends never ? {} : {
|
|
12292
12312
|
params: GetStoredScorersScorerIdVersionsVersionId_PathParams;
|
|
12293
12313
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12447,7 +12467,7 @@ export type GetStoredWorkspacesStoredWorkspaceId_PathParams = {
|
|
|
12447
12467
|
/** Unique identifier for the stored workspace */
|
|
12448
12468
|
storedWorkspaceId: string;
|
|
12449
12469
|
};
|
|
12450
|
-
export type GetStoredWorkspacesStoredWorkspaceId_Response =
|
|
12470
|
+
export type GetStoredWorkspacesStoredWorkspaceId_Response = Shared_Type_117;
|
|
12451
12471
|
export type GetStoredWorkspacesStoredWorkspaceId_Request = Simplify<(GetStoredWorkspacesStoredWorkspaceId_PathParams extends never ? {} : {
|
|
12452
12472
|
params: GetStoredWorkspacesStoredWorkspaceId_PathParams;
|
|
12453
12473
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12553,7 +12573,7 @@ export type PatchStoredWorkspacesStoredWorkspaceId_Response = {
|
|
|
12553
12573
|
} | undefined;
|
|
12554
12574
|
createdAt: Date;
|
|
12555
12575
|
updatedAt: Date;
|
|
12556
|
-
} |
|
|
12576
|
+
} | Shared_Type_117;
|
|
12557
12577
|
export type PatchStoredWorkspacesStoredWorkspaceId_Request = Simplify<(PatchStoredWorkspacesStoredWorkspaceId_PathParams extends never ? {} : {
|
|
12558
12578
|
params: PatchStoredWorkspacesStoredWorkspaceId_PathParams;
|
|
12559
12579
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12621,7 +12641,7 @@ export type GetStoredSkills_Response = {
|
|
|
12621
12641
|
page: number;
|
|
12622
12642
|
perPage: number | false;
|
|
12623
12643
|
hasMore: boolean;
|
|
12624
|
-
skills:
|
|
12644
|
+
skills: Shared_Type_119[];
|
|
12625
12645
|
};
|
|
12626
12646
|
export type GetStoredSkills_Request = Simplify<(never extends never ? {} : {
|
|
12627
12647
|
params: never;
|
|
@@ -12646,7 +12666,7 @@ export type GetStoredSkillsStoredSkillId_PathParams = {
|
|
|
12646
12666
|
/** Unique identifier for the stored skill */
|
|
12647
12667
|
storedSkillId: string;
|
|
12648
12668
|
};
|
|
12649
|
-
export type GetStoredSkillsStoredSkillId_Response =
|
|
12669
|
+
export type GetStoredSkillsStoredSkillId_Response = Shared_Type_119;
|
|
12650
12670
|
export type GetStoredSkillsStoredSkillId_Request = Simplify<(GetStoredSkillsStoredSkillId_PathParams extends never ? {} : {
|
|
12651
12671
|
params: GetStoredSkillsStoredSkillId_PathParams;
|
|
12652
12672
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -12684,7 +12704,7 @@ export type PostStoredSkills_Body = {
|
|
|
12684
12704
|
/** Compatibility requirements */
|
|
12685
12705
|
compatibility?: unknown | undefined;
|
|
12686
12706
|
/** Source location of the skill */
|
|
12687
|
-
source?:
|
|
12707
|
+
source?: Shared_Type_118 | undefined;
|
|
12688
12708
|
/** List of reference file paths */
|
|
12689
12709
|
references?: string[] | undefined;
|
|
12690
12710
|
/** List of script file paths */
|
|
@@ -12692,7 +12712,7 @@ export type PostStoredSkills_Body = {
|
|
|
12692
12712
|
/** List of asset file paths */
|
|
12693
12713
|
assets?: string[] | undefined;
|
|
12694
12714
|
/** Full file tree structure for the skill */
|
|
12695
|
-
files?:
|
|
12715
|
+
files?: Shared_Auxiliary_1215[] | undefined;
|
|
12696
12716
|
/** Additional metadata for the skill */
|
|
12697
12717
|
metadata?: {
|
|
12698
12718
|
[key: string]: unknown;
|
|
@@ -12734,7 +12754,7 @@ export type PatchStoredSkillsStoredSkillId_Body = {
|
|
|
12734
12754
|
/** Compatibility requirements */
|
|
12735
12755
|
compatibility?: (unknown | undefined) | undefined;
|
|
12736
12756
|
/** Source location of the skill */
|
|
12737
|
-
source?: (
|
|
12757
|
+
source?: (Shared_Type_118 | undefined) | undefined;
|
|
12738
12758
|
/** List of reference file paths */
|
|
12739
12759
|
references?: (string[] | undefined) | undefined;
|
|
12740
12760
|
/** List of script file paths */
|
|
@@ -12742,7 +12762,7 @@ export type PatchStoredSkillsStoredSkillId_Body = {
|
|
|
12742
12762
|
/** List of asset file paths */
|
|
12743
12763
|
assets?: (string[] | undefined) | undefined;
|
|
12744
12764
|
/** Full file tree structure for the skill */
|
|
12745
|
-
files?: (
|
|
12765
|
+
files?: (Shared_Auxiliary_1215[] | undefined) | undefined;
|
|
12746
12766
|
/** Additional metadata for the skill */
|
|
12747
12767
|
metadata?: ({
|
|
12748
12768
|
[key: string]: unknown;
|
|
@@ -12756,7 +12776,7 @@ export type PatchStoredSkillsStoredSkillId_Response = {
|
|
|
12756
12776
|
visibility?: ('private' | 'public') | undefined;
|
|
12757
12777
|
createdAt: Date;
|
|
12758
12778
|
updatedAt: Date;
|
|
12759
|
-
} |
|
|
12779
|
+
} | Shared_Type_119;
|
|
12760
12780
|
export type PatchStoredSkillsStoredSkillId_Request = Simplify<(PatchStoredSkillsStoredSkillId_PathParams extends never ? {} : {
|
|
12761
12781
|
params: PatchStoredSkillsStoredSkillId_PathParams;
|
|
12762
12782
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13320,7 +13340,7 @@ export type GetProcessorProviders_Response = {
|
|
|
13320
13340
|
id: string;
|
|
13321
13341
|
name: string;
|
|
13322
13342
|
description?: string | undefined;
|
|
13323
|
-
availablePhases: ('processInput' | 'processInputStep' | 'processOutputStream' | 'processOutputResult' | 'processOutputStep')[];
|
|
13343
|
+
availablePhases: ('processInput' | 'processInputStep' | 'processOutputStream' | 'processOutputResult' | 'processOutputStep' | 'processToolResult')[];
|
|
13324
13344
|
}[];
|
|
13325
13345
|
};
|
|
13326
13346
|
export type GetProcessorProviders_Request = Simplify<(never extends never ? {} : {
|
|
@@ -13350,7 +13370,7 @@ export type GetProcessorProvidersProviderId_Response = {
|
|
|
13350
13370
|
id: string;
|
|
13351
13371
|
name: string;
|
|
13352
13372
|
description?: string | undefined;
|
|
13353
|
-
availablePhases: ('processInput' | 'processInputStep' | 'processOutputStream' | 'processOutputResult' | 'processOutputStep')[];
|
|
13373
|
+
availablePhases: ('processInput' | 'processInputStep' | 'processOutputStream' | 'processOutputResult' | 'processOutputStep' | 'processToolResult')[];
|
|
13354
13374
|
configSchema: {
|
|
13355
13375
|
[key: string]: unknown;
|
|
13356
13376
|
};
|
|
@@ -13467,7 +13487,7 @@ export interface GetSystemApiSchema_RouteContract {
|
|
|
13467
13487
|
}
|
|
13468
13488
|
export type GetDatasets_QueryParams = GetScoresRunRunId_QueryParams;
|
|
13469
13489
|
export type GetDatasets_Response = {
|
|
13470
|
-
datasets:
|
|
13490
|
+
datasets: Shared_Type_120[];
|
|
13471
13491
|
pagination: {
|
|
13472
13492
|
total: number;
|
|
13473
13493
|
page: number;
|
|
@@ -13522,7 +13542,7 @@ export type PostDatasets_Body = {
|
|
|
13522
13542
|
/** IDs of scorers attached to this dataset */
|
|
13523
13543
|
scorerIds?: string[] | undefined;
|
|
13524
13544
|
};
|
|
13525
|
-
export type PostDatasets_Response =
|
|
13545
|
+
export type PostDatasets_Response = Shared_Type_120;
|
|
13526
13546
|
export type PostDatasets_Request = Simplify<(never extends never ? {} : {
|
|
13527
13547
|
params: never;
|
|
13528
13548
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13552,7 +13572,7 @@ export type GetDatasetsDatasetId_QueryParams = {
|
|
|
13552
13572
|
/** Restrict lookup to the given project */
|
|
13553
13573
|
projectId?: string | undefined;
|
|
13554
13574
|
};
|
|
13555
|
-
export type GetDatasetsDatasetId_Response =
|
|
13575
|
+
export type GetDatasetsDatasetId_Response = Shared_Type_120 | null;
|
|
13556
13576
|
export type GetDatasetsDatasetId_Request = Simplify<(GetDatasetsDatasetId_PathParams extends never ? {} : {
|
|
13557
13577
|
params: GetDatasetsDatasetId_PathParams;
|
|
13558
13578
|
}) & (GetDatasetsDatasetId_QueryParams extends never ? {} : {} extends GetDatasetsDatasetId_QueryParams ? {
|
|
@@ -13654,7 +13674,7 @@ export type GetDatasetsDatasetIdItems_QueryParams = {
|
|
|
13654
13674
|
search?: string | undefined;
|
|
13655
13675
|
};
|
|
13656
13676
|
export type GetDatasetsDatasetIdItems_Response = {
|
|
13657
|
-
items:
|
|
13677
|
+
items: Shared_Type_123[];
|
|
13658
13678
|
pagination: {
|
|
13659
13679
|
total: number;
|
|
13660
13680
|
page: number;
|
|
@@ -13690,9 +13710,9 @@ export type PostDatasetsDatasetIdItems_Body = {
|
|
|
13690
13710
|
/** Expected output for comparison */
|
|
13691
13711
|
groundTruth?: unknown | undefined;
|
|
13692
13712
|
/** Expected trajectory configuration for trajectory scoring */
|
|
13693
|
-
expectedTrajectory?: (
|
|
13713
|
+
expectedTrajectory?: (Shared_Type_138 | undefined) | null;
|
|
13694
13714
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
13695
|
-
toolMocks?:
|
|
13715
|
+
toolMocks?: Shared_Type_121[] | undefined;
|
|
13696
13716
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13697
13717
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13698
13718
|
/** IDs of scorers selected for this item */
|
|
@@ -13706,9 +13726,9 @@ export type PostDatasetsDatasetIdItems_Body = {
|
|
|
13706
13726
|
[key: string]: unknown;
|
|
13707
13727
|
} | undefined;
|
|
13708
13728
|
/** Source/provenance of this dataset item */
|
|
13709
|
-
source?:
|
|
13729
|
+
source?: Shared_Type_122 | undefined;
|
|
13710
13730
|
};
|
|
13711
|
-
export type PostDatasetsDatasetIdItems_Response =
|
|
13731
|
+
export type PostDatasetsDatasetIdItems_Response = Shared_Type_123;
|
|
13712
13732
|
export type PostDatasetsDatasetIdItems_Request = Simplify<(PostDatasetsDatasetIdItems_PathParams extends never ? {} : {
|
|
13713
13733
|
params: PostDatasetsDatasetIdItems_PathParams;
|
|
13714
13734
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13735,9 +13755,9 @@ export type PostDatasetsDatasetIdItemsBatch_Body = {
|
|
|
13735
13755
|
input: unknown;
|
|
13736
13756
|
groundTruth?: unknown | undefined;
|
|
13737
13757
|
/** Expected trajectory configuration for trajectory scoring */
|
|
13738
|
-
expectedTrajectory?: (
|
|
13758
|
+
expectedTrajectory?: (Shared_Type_138 | undefined) | null;
|
|
13739
13759
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
13740
|
-
toolMocks?:
|
|
13760
|
+
toolMocks?: Shared_Type_121[] | undefined;
|
|
13741
13761
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13742
13762
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13743
13763
|
scorerIds?: string[] | undefined;
|
|
@@ -13748,11 +13768,11 @@ export type PostDatasetsDatasetIdItemsBatch_Body = {
|
|
|
13748
13768
|
[key: string]: unknown;
|
|
13749
13769
|
} | undefined;
|
|
13750
13770
|
/** Source/provenance of this dataset item */
|
|
13751
|
-
source?:
|
|
13771
|
+
source?: Shared_Type_122 | undefined;
|
|
13752
13772
|
}[];
|
|
13753
13773
|
};
|
|
13754
13774
|
export type PostDatasetsDatasetIdItemsBatch_Response = {
|
|
13755
|
-
items:
|
|
13775
|
+
items: Shared_Type_123[];
|
|
13756
13776
|
count: number;
|
|
13757
13777
|
};
|
|
13758
13778
|
export type PostDatasetsDatasetIdItemsBatch_Request = Simplify<(PostDatasetsDatasetIdItemsBatch_PathParams extends never ? {} : {
|
|
@@ -13807,7 +13827,7 @@ export type GetDatasetsDatasetIdItemsItemId_PathParams = {
|
|
|
13807
13827
|
/** Unique identifier for the dataset item */
|
|
13808
13828
|
itemId: string;
|
|
13809
13829
|
};
|
|
13810
|
-
export type GetDatasetsDatasetIdItemsItemId_Response =
|
|
13830
|
+
export type GetDatasetsDatasetIdItemsItemId_Response = Shared_Type_123 | null;
|
|
13811
13831
|
export type GetDatasetsDatasetIdItemsItemId_Request = Simplify<(GetDatasetsDatasetIdItemsItemId_PathParams extends never ? {} : {
|
|
13812
13832
|
params: GetDatasetsDatasetIdItemsItemId_PathParams;
|
|
13813
13833
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -13834,9 +13854,9 @@ export type PatchDatasetsDatasetIdItemsItemId_Body = {
|
|
|
13834
13854
|
/** Expected output for comparison */
|
|
13835
13855
|
groundTruth?: unknown | undefined;
|
|
13836
13856
|
/** Expected trajectory configuration for trajectory scoring */
|
|
13837
|
-
expectedTrajectory?: (
|
|
13857
|
+
expectedTrajectory?: (Shared_Type_138 | undefined) | null;
|
|
13838
13858
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
13839
|
-
toolMocks?:
|
|
13859
|
+
toolMocks?: Shared_Type_121[] | undefined;
|
|
13840
13860
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13841
13861
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13842
13862
|
/** IDs of scorers selected for this item */
|
|
@@ -13850,7 +13870,7 @@ export type PatchDatasetsDatasetIdItemsItemId_Body = {
|
|
|
13850
13870
|
[key: string]: unknown;
|
|
13851
13871
|
} | undefined;
|
|
13852
13872
|
/** Source/provenance of this dataset item */
|
|
13853
|
-
source?:
|
|
13873
|
+
source?: Shared_Type_122 | undefined;
|
|
13854
13874
|
};
|
|
13855
13875
|
export type PatchDatasetsDatasetIdItemsItemId_Response = PostDatasetsDatasetIdItems_Response;
|
|
13856
13876
|
export type PatchDatasetsDatasetIdItemsItemId_Request = Simplify<(PatchDatasetsDatasetIdItemsItemId_PathParams extends never ? {} : {
|
|
@@ -13938,7 +13958,7 @@ export type GetDatasetsDatasetIdItemsItemIdHistory_Response = {
|
|
|
13938
13958
|
groundTruth?: unknown | undefined;
|
|
13939
13959
|
expectedTrajectory?: unknown | undefined;
|
|
13940
13960
|
/** Ordered item-level static tool mocks served in place of executing the real tool */
|
|
13941
|
-
toolMocks?:
|
|
13961
|
+
toolMocks?: Shared_Type_121[] | undefined;
|
|
13942
13962
|
/** Policy for undeclared tool calls. 'allow' runs them live; 'deny' fails the experiment item */
|
|
13943
13963
|
unmockedToolPolicy?: ('allow' | 'deny') | undefined;
|
|
13944
13964
|
scorerIds?: string[] | undefined;
|
|
@@ -14000,7 +14020,7 @@ export interface GetDatasetsDatasetIdItemsItemIdVersionsDatasetVersion_RouteCont
|
|
|
14000
14020
|
}
|
|
14001
14021
|
export type GetExperiments_QueryParams = GetScoresRunRunId_QueryParams;
|
|
14002
14022
|
export type GetExperiments_Response = {
|
|
14003
|
-
experiments:
|
|
14023
|
+
experiments: Shared_Type_139[];
|
|
14004
14024
|
pagination: {
|
|
14005
14025
|
total: number;
|
|
14006
14026
|
page: number;
|
|
@@ -14126,7 +14146,7 @@ export type PostDatasetsDatasetIdExperiments_Response = {
|
|
|
14126
14146
|
completedAt: Date;
|
|
14127
14147
|
retryCount: number;
|
|
14128
14148
|
/** Diagnostic receipt for item-level tool mocks */
|
|
14129
|
-
toolMockReport?: (
|
|
14149
|
+
toolMockReport?: (Shared_Type_140 | undefined) | null;
|
|
14130
14150
|
scores: {
|
|
14131
14151
|
scorerId: string;
|
|
14132
14152
|
scorerName: string;
|
|
@@ -14161,7 +14181,7 @@ export type GetDatasetsDatasetIdExperimentsExperimentId_PathParams = {
|
|
|
14161
14181
|
/** Unique identifier for the experiment */
|
|
14162
14182
|
experimentId: string;
|
|
14163
14183
|
};
|
|
14164
|
-
export type GetDatasetsDatasetIdExperimentsExperimentId_Response =
|
|
14184
|
+
export type GetDatasetsDatasetIdExperimentsExperimentId_Response = Shared_Type_139 | null;
|
|
14165
14185
|
export type GetDatasetsDatasetIdExperimentsExperimentId_Request = Simplify<(GetDatasetsDatasetIdExperimentsExperimentId_PathParams extends never ? {} : {
|
|
14166
14186
|
params: GetDatasetsDatasetIdExperimentsExperimentId_PathParams;
|
|
14167
14187
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14184,7 +14204,7 @@ export interface GetDatasetsDatasetIdExperimentsExperimentId_RouteContract {
|
|
|
14184
14204
|
export type GetDatasetsDatasetIdExperimentsExperimentIdResults_PathParams = GetDatasetsDatasetIdExperimentsExperimentId_PathParams;
|
|
14185
14205
|
export type GetDatasetsDatasetIdExperimentsExperimentIdResults_QueryParams = GetScoresRunRunId_QueryParams;
|
|
14186
14206
|
export type GetDatasetsDatasetIdExperimentsExperimentIdResults_Response = {
|
|
14187
|
-
results:
|
|
14207
|
+
results: Shared_Type_141[];
|
|
14188
14208
|
pagination: {
|
|
14189
14209
|
total: number;
|
|
14190
14210
|
page: number;
|
|
@@ -14224,7 +14244,7 @@ export type PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_Body =
|
|
|
14224
14244
|
tags?: string[] | undefined;
|
|
14225
14245
|
comment?: (string | null) | undefined;
|
|
14226
14246
|
};
|
|
14227
|
-
export type PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_Response =
|
|
14247
|
+
export type PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_Response = Shared_Type_141;
|
|
14228
14248
|
export type PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_Request = Simplify<(PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_PathParams extends never ? {} : {
|
|
14229
14249
|
params: PatchDatasetsDatasetIdExperimentsExperimentIdResultsResultId_PathParams;
|
|
14230
14250
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14427,7 +14447,7 @@ export type GetBackgroundTasks_QueryParams = {
|
|
|
14427
14447
|
perPage?: number | undefined;
|
|
14428
14448
|
};
|
|
14429
14449
|
export type GetBackgroundTasks_Response = {
|
|
14430
|
-
tasks:
|
|
14450
|
+
tasks: Shared_Type_142[];
|
|
14431
14451
|
total: number;
|
|
14432
14452
|
};
|
|
14433
14453
|
export type GetBackgroundTasks_Request = Simplify<(never extends never ? {} : {
|
|
@@ -14452,7 +14472,7 @@ export interface GetBackgroundTasks_RouteContract {
|
|
|
14452
14472
|
export type GetBackgroundTasksBackgroundTaskId_PathParams = {
|
|
14453
14473
|
backgroundTaskId: string;
|
|
14454
14474
|
};
|
|
14455
|
-
export type GetBackgroundTasksBackgroundTaskId_Response =
|
|
14475
|
+
export type GetBackgroundTasksBackgroundTaskId_Response = Shared_Type_142;
|
|
14456
14476
|
export type GetBackgroundTasksBackgroundTaskId_Request = Simplify<(GetBackgroundTasksBackgroundTaskId_PathParams extends never ? {} : {
|
|
14457
14477
|
params: GetBackgroundTasksBackgroundTaskId_PathParams;
|
|
14458
14478
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -14492,8 +14512,8 @@ export type GetEditorBuilderSettings_Response = {
|
|
|
14492
14512
|
configuration?: {
|
|
14493
14513
|
agent?: {
|
|
14494
14514
|
models?: {
|
|
14495
|
-
allowed?:
|
|
14496
|
-
default?:
|
|
14515
|
+
allowed?: Shared_Type_143[] | undefined;
|
|
14516
|
+
default?: Shared_Type_144 | undefined;
|
|
14497
14517
|
} | undefined;
|
|
14498
14518
|
tools?: {
|
|
14499
14519
|
allowed?: string[] | undefined;
|
|
@@ -14510,8 +14530,8 @@ export type GetEditorBuilderSettings_Response = {
|
|
|
14510
14530
|
modelPolicy?: {
|
|
14511
14531
|
active: boolean;
|
|
14512
14532
|
pickerVisible?: boolean | undefined;
|
|
14513
|
-
allowed?:
|
|
14514
|
-
default?:
|
|
14533
|
+
allowed?: Shared_Type_143[] | undefined;
|
|
14534
|
+
default?: Shared_Type_144 | undefined;
|
|
14515
14535
|
} | undefined;
|
|
14516
14536
|
picker?: {
|
|
14517
14537
|
visibleTools: string[] | null;
|
|
@@ -15145,7 +15165,7 @@ export type GetSchedules_QueryParams = {
|
|
|
15145
15165
|
name?: string | undefined;
|
|
15146
15166
|
};
|
|
15147
15167
|
export type GetSchedules_Response = {
|
|
15148
|
-
schedules: (
|
|
15168
|
+
schedules: (Shared_Type_147 | Shared_Type_149)[];
|
|
15149
15169
|
};
|
|
15150
15170
|
export type GetSchedules_Request = Simplify<(never extends never ? {} : {
|
|
15151
15171
|
params: never;
|
|
@@ -15169,7 +15189,7 @@ export interface GetSchedules_RouteContract {
|
|
|
15169
15189
|
export type GetSchedulesScheduleId_PathParams = {
|
|
15170
15190
|
scheduleId: string;
|
|
15171
15191
|
};
|
|
15172
|
-
export type GetSchedulesScheduleId_Response =
|
|
15192
|
+
export type GetSchedulesScheduleId_Response = Shared_Type_147 | Shared_Type_149;
|
|
15173
15193
|
export type GetSchedulesScheduleId_Request = Simplify<(GetSchedulesScheduleId_PathParams extends never ? {} : {
|
|
15174
15194
|
params: GetSchedulesScheduleId_PathParams;
|
|
15175
15195
|
}) & (never extends never ? {} : {} extends never ? {
|
|
@@ -15203,8 +15223,8 @@ export type PostSchedules_Body = {
|
|
|
15203
15223
|
attributes?: {
|
|
15204
15224
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
15205
15225
|
} | undefined;
|
|
15206
|
-
ifActive?:
|
|
15207
|
-
ifIdle?:
|
|
15226
|
+
ifActive?: Shared_Type_145 | undefined;
|
|
15227
|
+
ifIdle?: Shared_Type_146 | undefined;
|
|
15208
15228
|
providerOptions?: {
|
|
15209
15229
|
[key: string]: unknown;
|
|
15210
15230
|
} | undefined;
|
|
@@ -15260,8 +15280,8 @@ export type PatchSchedulesScheduleId_Body = {
|
|
|
15260
15280
|
attributes?: {
|
|
15261
15281
|
[key: string]: (string | number | boolean | null) | undefined;
|
|
15262
15282
|
} | undefined;
|
|
15263
|
-
ifActive?:
|
|
15264
|
-
ifIdle?:
|
|
15283
|
+
ifActive?: Shared_Type_145 | undefined;
|
|
15284
|
+
ifIdle?: Shared_Type_146 | undefined;
|
|
15265
15285
|
providerOptions?: {
|
|
15266
15286
|
[key: string]: unknown;
|
|
15267
15287
|
} | undefined;
|
|
@@ -15332,7 +15352,7 @@ export type GetSchedulesScheduleIdTriggers_Response = {
|
|
|
15332
15352
|
metadata?: {
|
|
15333
15353
|
[key: string]: unknown;
|
|
15334
15354
|
} | undefined;
|
|
15335
|
-
run?:
|
|
15355
|
+
run?: Shared_Type_148 | undefined;
|
|
15336
15356
|
}[];
|
|
15337
15357
|
};
|
|
15338
15358
|
export type GetSchedulesScheduleIdTriggers_Request = Simplify<(GetSchedulesScheduleIdTriggers_PathParams extends never ? {} : {
|