@ancplua/qyl-api-schema 1.0.4 → 1.0.5
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.
|
@@ -348,8 +348,6 @@ export type RunnerMcpEvaluationExportStatus = typeof RunnerMcpEvaluationExportSt
|
|
|
348
348
|
export declare const RunnerMcpTransportKindValues: {
|
|
349
349
|
readonly stdio: "stdio";
|
|
350
350
|
readonly streamableHttp: "streamable_http";
|
|
351
|
-
readonly sse: "sse";
|
|
352
|
-
readonly inproc: "inproc";
|
|
353
351
|
readonly builtin: "builtin";
|
|
354
352
|
};
|
|
355
353
|
export type RunnerMcpTransportKind = typeof RunnerMcpTransportKindValues[keyof typeof RunnerMcpTransportKindValues];
|
|
@@ -369,7 +367,7 @@ export type AttributeDouble = number | "NaN" | "Infinity" | "-Infinity";
|
|
|
369
367
|
export type AttributeValue = null | string | boolean | AttributeIntValue | AttributeDoubleValue | AttributeBytesValue | AttributeValue[] | AttributeKeyValueListValue;
|
|
370
368
|
export type ApiError = NotFoundError | ValidationError | UnauthorizedError | ForbiddenError | ConflictError | RateLimitError | InternalServerError | BadGatewayError | ServiceUnavailableError;
|
|
371
369
|
export type LogBody = LogBodyString | LogBodyKvList | LogBodyArray | LogBodyBytes;
|
|
372
|
-
export type RunnerMcpServerConfiguration = RunnerMcpStdioServerConfiguration | RunnerMcpStreamableHttpServerConfiguration |
|
|
370
|
+
export type RunnerMcpServerConfiguration = RunnerMcpStdioServerConfiguration | RunnerMcpStreamableHttpServerConfiguration | RunnerMcpBuiltinServerConfiguration;
|
|
373
371
|
export type RunnerMcpTestAssertion = RunnerMcpStatusAssertion | RunnerMcpExactAssertion | RunnerMcpPartialAssertion | RunnerMcpSchemaAssertion | RunnerMcpPatternAssertion | RunnerMcpLatencyAssertion;
|
|
374
372
|
export type RunnerMcpEvaluationExportPayload = RunnerMcpEvaluationJsonExportPayload | RunnerMcpEvaluationReportExportPayload;
|
|
375
373
|
export type RunnerResourceEvents = RunnerResourceState;
|
|
@@ -798,15 +796,6 @@ export interface RunnerMcpStreamableHttpServerConfiguration {
|
|
|
798
796
|
"endpoint": string;
|
|
799
797
|
"headers"?: RunnerMcpHeaderSecretReference[];
|
|
800
798
|
}
|
|
801
|
-
export interface RunnerMcpSseServerConfiguration {
|
|
802
|
-
"transport": "sse";
|
|
803
|
-
"endpoint": string;
|
|
804
|
-
"headers"?: RunnerMcpHeaderSecretReference[];
|
|
805
|
-
}
|
|
806
|
-
export interface RunnerMcpInProcessServerConfiguration {
|
|
807
|
-
"transport": "inproc";
|
|
808
|
-
"implementation": string;
|
|
809
|
-
}
|
|
810
799
|
export interface RunnerMcpBuiltinServerConfiguration {
|
|
811
800
|
"transport": "builtin";
|
|
812
801
|
"name": string;
|
|
@@ -278,8 +278,6 @@ export const RunnerMcpEvaluationExportStatusValues = {
|
|
|
278
278
|
export const RunnerMcpTransportKindValues = {
|
|
279
279
|
"stdio": "stdio",
|
|
280
280
|
"streamableHttp": "streamable_http",
|
|
281
|
-
"sse": "sse",
|
|
282
|
-
"inproc": "inproc",
|
|
283
281
|
"builtin": "builtin",
|
|
284
282
|
};
|
|
285
283
|
export const McpDataModeValues = {
|
package/models/runner-mcp.tsp
CHANGED
|
@@ -154,8 +154,6 @@ model RunnerMcpWorkspacePreferencesUpdateRequest {
|
|
|
154
154
|
enum RunnerMcpTransportKind {
|
|
155
155
|
stdio: "stdio",
|
|
156
156
|
streamableHttp: "streamable_http",
|
|
157
|
-
sse: "sse",
|
|
158
|
-
inproc: "inproc",
|
|
159
157
|
builtin: "builtin",
|
|
160
158
|
}
|
|
161
159
|
|
|
@@ -211,21 +209,6 @@ model RunnerMcpStreamableHttpServerConfiguration {
|
|
|
211
209
|
headers?: RunnerMcpHeaderSecretReference[];
|
|
212
210
|
}
|
|
213
211
|
|
|
214
|
-
@doc("Sanitized legacy MCP SSE transport configuration.")
|
|
215
|
-
model RunnerMcpSseServerConfiguration {
|
|
216
|
-
transport: "sse";
|
|
217
|
-
endpoint: url;
|
|
218
|
-
headers?: RunnerMcpHeaderSecretReference[];
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
@doc("Sanitized in-process MCP server configuration.")
|
|
222
|
-
model RunnerMcpInProcessServerConfiguration {
|
|
223
|
-
transport: "inproc";
|
|
224
|
-
|
|
225
|
-
@minLength(1)
|
|
226
|
-
implementation: string;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
212
|
@doc("Sanitized built-in MCP server configuration.")
|
|
230
213
|
model RunnerMcpBuiltinServerConfiguration {
|
|
231
214
|
transport: "builtin";
|
|
@@ -239,8 +222,6 @@ model RunnerMcpBuiltinServerConfiguration {
|
|
|
239
222
|
union RunnerMcpServerConfiguration {
|
|
240
223
|
stdio: RunnerMcpStdioServerConfiguration,
|
|
241
224
|
streamableHttp: RunnerMcpStreamableHttpServerConfiguration,
|
|
242
|
-
sse: RunnerMcpSseServerConfiguration,
|
|
243
|
-
inproc: RunnerMcpInProcessServerConfiguration,
|
|
244
225
|
builtin: RunnerMcpBuiltinServerConfiguration,
|
|
245
226
|
}
|
|
246
227
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ancplua/qyl-api-schema",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "TypeSpec source of truth for qyl API contracts. Emits OpenAPI, JSON Schema, Qyl.Api.Contracts DTOs, and TypeScript contract types; not an OpenTelemetry package, storage schema, or server implementation.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|