@ancplua/qyl-api-schema 0.5.15 → 0.6.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/api/runner.tsp +711 -31
- package/generated/json-schema/qyl-api-schema.json +2441 -402
- package/generated/openapi/qyl.openapi.json +16628 -5146
- package/generated/ts-runtime/api.d.ts +627 -109
- package/generated/ts-runtime/api.js +96 -8
- package/models/runner-mcp.tsp +990 -141
- package/models/runner.tsp +7 -7
- package/package.json +1 -1
|
@@ -225,18 +225,106 @@ export const RunnerLogStreamValues = {
|
|
|
225
225
|
"stdout": "out",
|
|
226
226
|
"stderr": "err",
|
|
227
227
|
};
|
|
228
|
-
export const
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
"
|
|
235
|
-
|
|
228
|
+
export const RunnerMcpToolInputModeValues = {
|
|
229
|
+
"form": "form",
|
|
230
|
+
"json": "json",
|
|
231
|
+
};
|
|
232
|
+
export const RunnerMcpHeaderSecretSchemeValues = {
|
|
233
|
+
"bearer": "bearer",
|
|
234
|
+
"basic": "basic",
|
|
235
|
+
};
|
|
236
|
+
export const RunnerMcpErrorCategoryValues = {
|
|
237
|
+
"authentication": "authentication",
|
|
238
|
+
"transport": "transport",
|
|
239
|
+
"protocol": "protocol",
|
|
240
|
+
"serialization": "serialization",
|
|
241
|
+
"schemaValidation": "schema_validation",
|
|
242
|
+
"toolError": "tool_error",
|
|
243
|
+
"timeout": "timeout",
|
|
244
|
+
"cancelled": "cancelled",
|
|
245
|
+
"internal": "internal",
|
|
246
|
+
};
|
|
247
|
+
export const RunnerMcpConnectionStatusValues = {
|
|
248
|
+
"disconnected": "disconnected",
|
|
249
|
+
"connecting": "connecting",
|
|
250
|
+
"connected": "connected",
|
|
251
|
+
"disconnecting": "disconnecting",
|
|
252
|
+
"reconnecting": "reconnecting",
|
|
253
|
+
"failed": "failed",
|
|
254
|
+
};
|
|
255
|
+
export const RunnerMcpProtocolDirectionValues = {
|
|
256
|
+
"clientToServer": "client_to_server",
|
|
257
|
+
"serverToClient": "server_to_client",
|
|
258
|
+
"local": "local",
|
|
259
|
+
};
|
|
260
|
+
export const RunnerMcpProtocolEventKindValues = {
|
|
261
|
+
"request": "request",
|
|
262
|
+
"response": "response",
|
|
263
|
+
"notification": "notification",
|
|
264
|
+
"error": "error",
|
|
265
|
+
"transport": "transport",
|
|
266
|
+
};
|
|
267
|
+
export const RunnerMcpExecutionEffectValues = {
|
|
268
|
+
"readOnly": "read_only",
|
|
269
|
+
"consequential": "consequential",
|
|
270
|
+
"unknown": "unknown",
|
|
271
|
+
};
|
|
272
|
+
export const RunnerMcpExecutionStatusValues = {
|
|
273
|
+
"queued": "queued",
|
|
274
|
+
"running": "running",
|
|
275
|
+
"cancelling": "cancelling",
|
|
276
|
+
"succeeded": "succeeded",
|
|
277
|
+
"failed": "failed",
|
|
278
|
+
"cancelled": "cancelled",
|
|
279
|
+
"timedOut": "timed_out",
|
|
280
|
+
};
|
|
281
|
+
export const RunnerMcpTelemetryAvailabilityValues = {
|
|
282
|
+
"available": "available",
|
|
283
|
+
"partial": "partial",
|
|
284
|
+
"unavailable": "unavailable",
|
|
285
|
+
};
|
|
286
|
+
export const RunnerMcpAssertionStatusValues = {
|
|
287
|
+
"passed": "passed",
|
|
288
|
+
"failed": "failed",
|
|
289
|
+
"error": "error",
|
|
290
|
+
"skipped": "skipped",
|
|
291
|
+
};
|
|
292
|
+
export const RunnerMcpEvaluationResultStatusValues = {
|
|
293
|
+
"passed": "passed",
|
|
294
|
+
"failed": "failed",
|
|
295
|
+
"error": "error",
|
|
296
|
+
"skipped": "skipped",
|
|
297
|
+
};
|
|
298
|
+
export const RunnerMcpEvaluationRunStatusValues = {
|
|
299
|
+
"queued": "queued",
|
|
300
|
+
"running": "running",
|
|
236
301
|
"completed": "completed",
|
|
237
302
|
"failed": "failed",
|
|
238
303
|
"cancelled": "cancelled",
|
|
239
304
|
};
|
|
305
|
+
export const RunnerMcpRegressionStatusValues = {
|
|
306
|
+
"improved": "improved",
|
|
307
|
+
"regressed": "regressed",
|
|
308
|
+
"unchanged": "unchanged",
|
|
309
|
+
"added": "added",
|
|
310
|
+
"removed": "removed",
|
|
311
|
+
};
|
|
312
|
+
export const RunnerMcpEvaluationExportFormatValues = {
|
|
313
|
+
"json": "json",
|
|
314
|
+
"report": "report",
|
|
315
|
+
};
|
|
316
|
+
export const RunnerMcpEvaluationExportStatusValues = {
|
|
317
|
+
"pending": "pending",
|
|
318
|
+
"ready": "ready",
|
|
319
|
+
"failed": "failed",
|
|
320
|
+
};
|
|
321
|
+
export const RunnerMcpTransportKindValues = {
|
|
322
|
+
"stdio": "stdio",
|
|
323
|
+
"streamableHttp": "streamable_http",
|
|
324
|
+
"sse": "sse",
|
|
325
|
+
"inproc": "inproc",
|
|
326
|
+
"builtin": "builtin",
|
|
327
|
+
};
|
|
240
328
|
export const McpDataModeValues = {
|
|
241
329
|
"live": "live",
|
|
242
330
|
"demo": "demo",
|