@ancplua/qyl-api-schema 0.6.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/api/runner.tsp +48 -0
- package/common/types.tsp +59 -6
- package/generated/json-schema/qyl-api-schema.json +269 -33
- package/generated/openapi/qyl.openapi.json +882 -63
- package/generated/ts-runtime/api.d.ts +33 -14
- package/otel/logs.tsp +1 -1
- package/otel/metrics.tsp +35 -13
- package/otel/resource.tsp +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -69,8 +69,10 @@ Important generated outputs include:
|
|
|
69
69
|
|
|
70
70
|
Generated files are not editing surfaces. OpenAPI comes from the official TypeSpec
|
|
71
71
|
emitter; the bundled JSON Schema is a deterministic projection of its component
|
|
72
|
-
schemas
|
|
73
|
-
|
|
72
|
+
schemas and exposes inline route bodies as stable
|
|
73
|
+
`Operations.<operationId>.Request` and
|
|
74
|
+
`Operations.<operationId>.Response.<status>` definitions. Both artifacts preserve
|
|
75
|
+
the same wire names. Change TypeSpec or the owning generator and regenerate.
|
|
74
76
|
|
|
75
77
|
## Publish
|
|
76
78
|
|
package/api/runner.tsp
CHANGED
|
@@ -130,6 +130,54 @@ namespace Qyl.Api.Contracts.Runner {
|
|
|
130
130
|
| InternalServerError;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
+
@route("/runner/mcp/{resource}")
|
|
134
|
+
@tag("Runner MCP")
|
|
135
|
+
interface RunnerMcpApi {
|
|
136
|
+
@doc("Returns the MCP SDK-owned tools/list result without redefining its protocol body.")
|
|
137
|
+
@get
|
|
138
|
+
@route("/tools")
|
|
139
|
+
listTools(@path resource: string):
|
|
140
|
+
| unknown
|
|
141
|
+
| ForbiddenError
|
|
142
|
+
| NotFoundError
|
|
143
|
+
| ConflictError
|
|
144
|
+
| BadGatewayError
|
|
145
|
+
| ServiceUnavailableError
|
|
146
|
+
| InternalServerError;
|
|
147
|
+
|
|
148
|
+
@doc("Accepts and returns MCP SDK-owned tools/call bodies without redefining the protocol DTOs.")
|
|
149
|
+
@post
|
|
150
|
+
@route("/tools/call")
|
|
151
|
+
callTool(
|
|
152
|
+
@path resource: string,
|
|
153
|
+
@body request: unknown,
|
|
154
|
+
):
|
|
155
|
+
| unknown
|
|
156
|
+
| ValidationError
|
|
157
|
+
| ForbiddenError
|
|
158
|
+
| NotFoundError
|
|
159
|
+
| ConflictError
|
|
160
|
+
| BadGatewayError
|
|
161
|
+
| ServiceUnavailableError
|
|
162
|
+
| InternalServerError;
|
|
163
|
+
|
|
164
|
+
@doc("Accepts and returns MCP SDK-owned resources/read bodies without redefining the protocol DTOs.")
|
|
165
|
+
@post
|
|
166
|
+
@route("/resources/read")
|
|
167
|
+
readResource(
|
|
168
|
+
@path resource: string,
|
|
169
|
+
@body request: unknown,
|
|
170
|
+
):
|
|
171
|
+
| unknown
|
|
172
|
+
| ValidationError
|
|
173
|
+
| ForbiddenError
|
|
174
|
+
| NotFoundError
|
|
175
|
+
| ConflictError
|
|
176
|
+
| BadGatewayError
|
|
177
|
+
| ServiceUnavailableError
|
|
178
|
+
| InternalServerError;
|
|
179
|
+
}
|
|
180
|
+
|
|
133
181
|
@route("/runner/workspaces")
|
|
134
182
|
@tag("Runner workspaces")
|
|
135
183
|
@useAuth(RunnerMcpSessionCookieAuth)
|
package/common/types.tsp
CHANGED
|
@@ -215,24 +215,53 @@ model AttributeBytesValue {
|
|
|
215
215
|
base64: bytes;
|
|
216
216
|
}
|
|
217
217
|
|
|
218
|
-
@doc("
|
|
218
|
+
@doc("An OTLP signed 64-bit attribute integer encoded without JavaScript precision loss.")
|
|
219
|
+
@encode(string)
|
|
220
|
+
@TypeSpec.OpenAPI.extension("x-csharp-type", "long")
|
|
221
|
+
scalar AttributeInt64 extends int64;
|
|
222
|
+
|
|
223
|
+
@doc("An OTLP attribute double encoded as a JSON number when finite or a canonical named string when non-finite.")
|
|
224
|
+
union AttributeDouble {
|
|
225
|
+
finite: float64,
|
|
226
|
+
nan: "NaN",
|
|
227
|
+
positiveInfinity: "Infinity",
|
|
228
|
+
negativeInfinity: "-Infinity",
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@doc("Tagged OTLP signed 64-bit integer attribute.")
|
|
232
|
+
model AttributeIntValue {
|
|
233
|
+
type: "int";
|
|
234
|
+
value: AttributeInt64;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
@doc("Tagged OTLP double attribute.")
|
|
238
|
+
model AttributeDoubleValue {
|
|
239
|
+
type: "double";
|
|
240
|
+
value: AttributeDouble;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
@doc("Tagged recursive OTLP key-value-list, distinct from other object-shaped attribute variants.")
|
|
219
244
|
model AttributeKeyValueListValue {
|
|
220
|
-
|
|
245
|
+
type: "kvlist";
|
|
246
|
+
values: Record<AttributeValue>;
|
|
221
247
|
}
|
|
222
248
|
|
|
223
249
|
@doc("Lossless JSON projection of an OpenTelemetry AnyValue attribute.")
|
|
224
250
|
union AttributeValue {
|
|
251
|
+
@doc("Empty AnyValue")
|
|
252
|
+
emptyValue: null,
|
|
253
|
+
|
|
225
254
|
@doc("String value")
|
|
226
255
|
stringValue: string,
|
|
227
256
|
|
|
228
257
|
@doc("Boolean value")
|
|
229
258
|
boolValue: boolean,
|
|
230
259
|
|
|
231
|
-
@doc("64-bit integer value")
|
|
232
|
-
intValue:
|
|
260
|
+
@doc("Lossless 64-bit integer value")
|
|
261
|
+
intValue: AttributeIntValue,
|
|
233
262
|
|
|
234
|
-
@doc("64-bit floating point value")
|
|
235
|
-
doubleValue:
|
|
263
|
+
@doc("Lossless finite or non-finite 64-bit floating point value")
|
|
264
|
+
doubleValue: AttributeDoubleValue,
|
|
236
265
|
|
|
237
266
|
@doc("Bytes value projected as an explicit tagged object")
|
|
238
267
|
bytesValue: AttributeBytesValue,
|
|
@@ -261,6 +290,30 @@ model Attributes {
|
|
|
261
290
|
items: Attribute[];
|
|
262
291
|
}
|
|
263
292
|
|
|
293
|
+
@doc("A non-empty Resource attribute key referenced by an OpenTelemetry entity.")
|
|
294
|
+
@minLength(1)
|
|
295
|
+
scalar EntityAttributeKey extends string;
|
|
296
|
+
|
|
297
|
+
@doc("A reference to an OpenTelemetry entity described by attributes on the containing Resource.")
|
|
298
|
+
model EntityRef {
|
|
299
|
+
@doc("Schema URL applying to the entity and its referenced Resource attributes, when known.")
|
|
300
|
+
@encodedName("application/json", "schema_url")
|
|
301
|
+
schemaUrl?: string;
|
|
302
|
+
|
|
303
|
+
@doc("Stable non-empty entity type, such as service or host.")
|
|
304
|
+
@minLength(1)
|
|
305
|
+
type: string;
|
|
306
|
+
|
|
307
|
+
@doc("Non-empty set of Resource attribute keys that identify the entity.")
|
|
308
|
+
@encodedName("application/json", "id_keys")
|
|
309
|
+
@minItems(1)
|
|
310
|
+
idKeys: EntityAttributeKey[];
|
|
311
|
+
|
|
312
|
+
@doc("Resource attribute keys that describe but do not identify the entity.")
|
|
313
|
+
@encodedName("application/json", "description_keys")
|
|
314
|
+
descriptionKeys?: EntityAttributeKey[];
|
|
315
|
+
}
|
|
316
|
+
|
|
264
317
|
// =============================================================================
|
|
265
318
|
// Instrumentation Scope
|
|
266
319
|
// =============================================================================
|
|
@@ -52,15 +52,105 @@
|
|
|
52
52
|
},
|
|
53
53
|
"description": "Base64 bytes projected by qyl without colliding with an ordinary string attribute."
|
|
54
54
|
},
|
|
55
|
+
"Common.AttributeDouble": {
|
|
56
|
+
"anyOf": [
|
|
57
|
+
{
|
|
58
|
+
"type": "number",
|
|
59
|
+
"format": "double"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"type": "string",
|
|
63
|
+
"enum": [
|
|
64
|
+
"NaN",
|
|
65
|
+
"Infinity",
|
|
66
|
+
"-Infinity"
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"description": "An OTLP attribute double encoded as a JSON number when finite or a canonical named string when non-finite."
|
|
71
|
+
},
|
|
72
|
+
"Common.AttributeDoubleValue": {
|
|
73
|
+
"type": "object",
|
|
74
|
+
"required": [
|
|
75
|
+
"type",
|
|
76
|
+
"value"
|
|
77
|
+
],
|
|
78
|
+
"properties": {
|
|
79
|
+
"type": {
|
|
80
|
+
"type": "string",
|
|
81
|
+
"enum": [
|
|
82
|
+
"double"
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
"value": {
|
|
86
|
+
"$ref": "#/$defs/Common.AttributeDouble"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"unevaluatedProperties": {
|
|
90
|
+
"not": {}
|
|
91
|
+
},
|
|
92
|
+
"description": "Tagged OTLP double attribute."
|
|
93
|
+
},
|
|
94
|
+
"Common.AttributeInt64": {
|
|
95
|
+
"type": "string",
|
|
96
|
+
"format": "int64",
|
|
97
|
+
"description": "An OTLP signed 64-bit attribute integer encoded without JavaScript precision loss.",
|
|
98
|
+
"x-csharp-type": "long",
|
|
99
|
+
"pattern": "^(0|-?[1-9][0-9]*)$",
|
|
100
|
+
"maxLength": 20
|
|
101
|
+
},
|
|
102
|
+
"Common.AttributeIntValue": {
|
|
103
|
+
"type": "object",
|
|
104
|
+
"required": [
|
|
105
|
+
"type",
|
|
106
|
+
"value"
|
|
107
|
+
],
|
|
108
|
+
"properties": {
|
|
109
|
+
"type": {
|
|
110
|
+
"type": "string",
|
|
111
|
+
"enum": [
|
|
112
|
+
"int"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"value": {
|
|
116
|
+
"$ref": "#/$defs/Common.AttributeInt64"
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"unevaluatedProperties": {
|
|
120
|
+
"not": {}
|
|
121
|
+
},
|
|
122
|
+
"description": "Tagged OTLP signed 64-bit integer attribute."
|
|
123
|
+
},
|
|
55
124
|
"Common.AttributeKeyValueListValue": {
|
|
56
125
|
"type": "object",
|
|
126
|
+
"required": [
|
|
127
|
+
"type",
|
|
128
|
+
"values"
|
|
129
|
+
],
|
|
130
|
+
"properties": {
|
|
131
|
+
"type": {
|
|
132
|
+
"type": "string",
|
|
133
|
+
"enum": [
|
|
134
|
+
"kvlist"
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
"values": {
|
|
138
|
+
"type": "object",
|
|
139
|
+
"unevaluatedProperties": {
|
|
140
|
+
"$ref": "#/$defs/Common.AttributeValue"
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
57
144
|
"unevaluatedProperties": {
|
|
58
|
-
"
|
|
145
|
+
"not": {}
|
|
59
146
|
},
|
|
60
|
-
"description": "
|
|
147
|
+
"description": "Tagged recursive OTLP key-value-list, distinct from other object-shaped attribute variants."
|
|
61
148
|
},
|
|
62
149
|
"Common.AttributeValue": {
|
|
63
150
|
"anyOf": [
|
|
151
|
+
{
|
|
152
|
+
"type": "null"
|
|
153
|
+
},
|
|
64
154
|
{
|
|
65
155
|
"type": "string"
|
|
66
156
|
},
|
|
@@ -68,12 +158,10 @@
|
|
|
68
158
|
"type": "boolean"
|
|
69
159
|
},
|
|
70
160
|
{
|
|
71
|
-
"
|
|
72
|
-
"format": "int64"
|
|
161
|
+
"$ref": "#/$defs/Common.AttributeIntValue"
|
|
73
162
|
},
|
|
74
163
|
{
|
|
75
|
-
"
|
|
76
|
-
"format": "double"
|
|
164
|
+
"$ref": "#/$defs/Common.AttributeDoubleValue"
|
|
77
165
|
},
|
|
78
166
|
{
|
|
79
167
|
"$ref": "#/$defs/Common.AttributeBytesValue"
|
|
@@ -157,6 +245,48 @@
|
|
|
157
245
|
"minimum": 0,
|
|
158
246
|
"description": "Duration in seconds"
|
|
159
247
|
},
|
|
248
|
+
"Common.EntityAttributeKey": {
|
|
249
|
+
"type": "string",
|
|
250
|
+
"minLength": 1,
|
|
251
|
+
"description": "A non-empty Resource attribute key referenced by an OpenTelemetry entity."
|
|
252
|
+
},
|
|
253
|
+
"Common.EntityRef": {
|
|
254
|
+
"type": "object",
|
|
255
|
+
"required": [
|
|
256
|
+
"type",
|
|
257
|
+
"id_keys"
|
|
258
|
+
],
|
|
259
|
+
"properties": {
|
|
260
|
+
"schema_url": {
|
|
261
|
+
"type": "string",
|
|
262
|
+
"description": "Schema URL applying to the entity and its referenced Resource attributes, when known."
|
|
263
|
+
},
|
|
264
|
+
"type": {
|
|
265
|
+
"type": "string",
|
|
266
|
+
"minLength": 1,
|
|
267
|
+
"description": "Stable non-empty entity type, such as service or host."
|
|
268
|
+
},
|
|
269
|
+
"id_keys": {
|
|
270
|
+
"type": "array",
|
|
271
|
+
"items": {
|
|
272
|
+
"$ref": "#/$defs/Common.EntityAttributeKey"
|
|
273
|
+
},
|
|
274
|
+
"minItems": 1,
|
|
275
|
+
"description": "Non-empty set of Resource attribute keys that identify the entity."
|
|
276
|
+
},
|
|
277
|
+
"description_keys": {
|
|
278
|
+
"type": "array",
|
|
279
|
+
"items": {
|
|
280
|
+
"$ref": "#/$defs/Common.EntityAttributeKey"
|
|
281
|
+
},
|
|
282
|
+
"description": "Resource attribute keys that describe but do not identify the entity."
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"unevaluatedProperties": {
|
|
286
|
+
"not": {}
|
|
287
|
+
},
|
|
288
|
+
"description": "A reference to an OpenTelemetry entity described by attributes on the containing Resource."
|
|
289
|
+
},
|
|
160
290
|
"Common.Errors.ApiError": {
|
|
161
291
|
"anyOf": [
|
|
162
292
|
{
|
|
@@ -4214,7 +4344,7 @@
|
|
|
4214
4344
|
},
|
|
4215
4345
|
"event_name": {
|
|
4216
4346
|
"type": "string",
|
|
4217
|
-
"description": "
|
|
4347
|
+
"description": "Optional event category whose presence identifies this log record as an event; records with the same name are expected to share one body and attribute schema."
|
|
4218
4348
|
},
|
|
4219
4349
|
"resource": {
|
|
4220
4350
|
"allOf": [
|
|
@@ -4313,8 +4443,7 @@
|
|
|
4313
4443
|
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
4314
4444
|
},
|
|
4315
4445
|
"sum": {
|
|
4316
|
-
"
|
|
4317
|
-
"format": "double"
|
|
4446
|
+
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
4318
4447
|
},
|
|
4319
4448
|
"scale": {
|
|
4320
4449
|
"type": "integer",
|
|
@@ -4324,8 +4453,7 @@
|
|
|
4324
4453
|
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
4325
4454
|
},
|
|
4326
4455
|
"zero_threshold": {
|
|
4327
|
-
"
|
|
4328
|
-
"format": "double"
|
|
4456
|
+
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
4329
4457
|
},
|
|
4330
4458
|
"positive": {
|
|
4331
4459
|
"$ref": "#/$defs/OTel.Metrics.ExponentialHistogramBuckets"
|
|
@@ -4334,12 +4462,10 @@
|
|
|
4334
4462
|
"$ref": "#/$defs/OTel.Metrics.ExponentialHistogramBuckets"
|
|
4335
4463
|
},
|
|
4336
4464
|
"min": {
|
|
4337
|
-
"
|
|
4338
|
-
"format": "double"
|
|
4465
|
+
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
4339
4466
|
},
|
|
4340
4467
|
"max": {
|
|
4341
|
-
"
|
|
4342
|
-
"format": "double"
|
|
4468
|
+
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
4343
4469
|
},
|
|
4344
4470
|
"aggregation_temporality": {
|
|
4345
4471
|
"$ref": "#/$defs/OTel.Enums.AggregationTemporality"
|
|
@@ -4364,8 +4490,7 @@
|
|
|
4364
4490
|
"OTel.Metrics.GaugeMetricPoint": {
|
|
4365
4491
|
"type": "object",
|
|
4366
4492
|
"required": [
|
|
4367
|
-
"type"
|
|
4368
|
-
"value"
|
|
4493
|
+
"type"
|
|
4369
4494
|
],
|
|
4370
4495
|
"properties": {
|
|
4371
4496
|
"type": {
|
|
@@ -4375,7 +4500,12 @@
|
|
|
4375
4500
|
]
|
|
4376
4501
|
},
|
|
4377
4502
|
"value": {
|
|
4378
|
-
"
|
|
4503
|
+
"allOf": [
|
|
4504
|
+
{
|
|
4505
|
+
"$ref": "#/$defs/OTel.Metrics.MetricNumberValue"
|
|
4506
|
+
}
|
|
4507
|
+
],
|
|
4508
|
+
"description": "Recorded value, absent when flags contain NO_RECORDED_VALUE (bit 1)."
|
|
4379
4509
|
},
|
|
4380
4510
|
"exemplars": {
|
|
4381
4511
|
"type": "array",
|
|
@@ -4414,8 +4544,7 @@
|
|
|
4414
4544
|
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
4415
4545
|
},
|
|
4416
4546
|
"sum": {
|
|
4417
|
-
"
|
|
4418
|
-
"format": "double"
|
|
4547
|
+
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
4419
4548
|
},
|
|
4420
4549
|
"bucket_counts": {
|
|
4421
4550
|
"type": "array",
|
|
@@ -4431,12 +4560,10 @@
|
|
|
4431
4560
|
}
|
|
4432
4561
|
},
|
|
4433
4562
|
"min": {
|
|
4434
|
-
"
|
|
4435
|
-
"format": "double"
|
|
4563
|
+
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
4436
4564
|
},
|
|
4437
4565
|
"max": {
|
|
4438
|
-
"
|
|
4439
|
-
"format": "double"
|
|
4566
|
+
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
4440
4567
|
},
|
|
4441
4568
|
"aggregation_temporality": {
|
|
4442
4569
|
"$ref": "#/$defs/OTel.Enums.AggregationTemporality"
|
|
@@ -4458,6 +4585,23 @@
|
|
|
4458
4585
|
],
|
|
4459
4586
|
"description": "Explicit-bucket histogram measurement."
|
|
4460
4587
|
},
|
|
4588
|
+
"OTel.Metrics.MetricDouble": {
|
|
4589
|
+
"anyOf": [
|
|
4590
|
+
{
|
|
4591
|
+
"type": "number",
|
|
4592
|
+
"format": "double"
|
|
4593
|
+
},
|
|
4594
|
+
{
|
|
4595
|
+
"type": "string",
|
|
4596
|
+
"enum": [
|
|
4597
|
+
"NaN",
|
|
4598
|
+
"Infinity",
|
|
4599
|
+
"-Infinity"
|
|
4600
|
+
]
|
|
4601
|
+
}
|
|
4602
|
+
],
|
|
4603
|
+
"description": "An OTLP double encoded as a JSON number when finite or as a canonical named string when non-finite."
|
|
4604
|
+
},
|
|
4461
4605
|
"OTel.Metrics.MetricDoubleValue": {
|
|
4462
4606
|
"type": "object",
|
|
4463
4607
|
"required": [
|
|
@@ -4465,8 +4609,7 @@
|
|
|
4465
4609
|
],
|
|
4466
4610
|
"properties": {
|
|
4467
4611
|
"as_double": {
|
|
4468
|
-
"
|
|
4469
|
-
"format": "double"
|
|
4612
|
+
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
4470
4613
|
}
|
|
4471
4614
|
},
|
|
4472
4615
|
"unevaluatedProperties": {
|
|
@@ -4653,7 +4796,6 @@
|
|
|
4653
4796
|
"type": "object",
|
|
4654
4797
|
"required": [
|
|
4655
4798
|
"type",
|
|
4656
|
-
"value",
|
|
4657
4799
|
"aggregation_temporality",
|
|
4658
4800
|
"is_monotonic"
|
|
4659
4801
|
],
|
|
@@ -4665,7 +4807,12 @@
|
|
|
4665
4807
|
]
|
|
4666
4808
|
},
|
|
4667
4809
|
"value": {
|
|
4668
|
-
"
|
|
4810
|
+
"allOf": [
|
|
4811
|
+
{
|
|
4812
|
+
"$ref": "#/$defs/OTel.Metrics.MetricNumberValue"
|
|
4813
|
+
}
|
|
4814
|
+
],
|
|
4815
|
+
"description": "Recorded value, absent when flags contain NO_RECORDED_VALUE (bit 1)."
|
|
4669
4816
|
},
|
|
4670
4817
|
"aggregation_temporality": {
|
|
4671
4818
|
"$ref": "#/$defs/OTel.Enums.AggregationTemporality"
|
|
@@ -4709,8 +4856,7 @@
|
|
|
4709
4856
|
"$ref": "#/$defs/OTel.Metrics.MetricUInt64"
|
|
4710
4857
|
},
|
|
4711
4858
|
"sum": {
|
|
4712
|
-
"
|
|
4713
|
-
"format": "double"
|
|
4859
|
+
"$ref": "#/$defs/OTel.Metrics.MetricDouble"
|
|
4714
4860
|
},
|
|
4715
4861
|
"quantile_values": {
|
|
4716
4862
|
"type": "array",
|
|
@@ -4729,6 +4875,26 @@
|
|
|
4729
4875
|
],
|
|
4730
4876
|
"description": "Pre-aggregated summary measurement."
|
|
4731
4877
|
},
|
|
4878
|
+
"OTel.Metrics.SummaryQuantileDouble": {
|
|
4879
|
+
"anyOf": [
|
|
4880
|
+
{
|
|
4881
|
+
"$ref": "#/$defs/OTel.Metrics.SummaryQuantileFiniteValue"
|
|
4882
|
+
},
|
|
4883
|
+
{
|
|
4884
|
+
"type": "string",
|
|
4885
|
+
"enum": [
|
|
4886
|
+
"Infinity"
|
|
4887
|
+
]
|
|
4888
|
+
}
|
|
4889
|
+
],
|
|
4890
|
+
"description": "A non-negative OTLP summary quantile value, including canonical positive infinity."
|
|
4891
|
+
},
|
|
4892
|
+
"OTel.Metrics.SummaryQuantileFiniteValue": {
|
|
4893
|
+
"type": "number",
|
|
4894
|
+
"format": "double",
|
|
4895
|
+
"minimum": 0,
|
|
4896
|
+
"description": "A finite, non-negative value observed at an OTLP summary quantile."
|
|
4897
|
+
},
|
|
4732
4898
|
"OTel.Metrics.SummaryQuantileValue": {
|
|
4733
4899
|
"type": "object",
|
|
4734
4900
|
"required": [
|
|
@@ -4743,9 +4909,7 @@
|
|
|
4743
4909
|
"maximum": 1
|
|
4744
4910
|
},
|
|
4745
4911
|
"value": {
|
|
4746
|
-
"
|
|
4747
|
-
"format": "double",
|
|
4748
|
-
"minimum": 0
|
|
4912
|
+
"$ref": "#/$defs/OTel.Metrics.SummaryQuantileDouble"
|
|
4749
4913
|
}
|
|
4750
4914
|
},
|
|
4751
4915
|
"unevaluatedProperties": {
|
|
@@ -5529,6 +5693,13 @@
|
|
|
5529
5693
|
}
|
|
5530
5694
|
],
|
|
5531
5695
|
"description": "Dropped attributes count"
|
|
5696
|
+
},
|
|
5697
|
+
"entity_refs": {
|
|
5698
|
+
"type": "array",
|
|
5699
|
+
"items": {
|
|
5700
|
+
"$ref": "#/$defs/Common.EntityRef"
|
|
5701
|
+
},
|
|
5702
|
+
"description": "Entities participating in this Resource, keyed by attributes on the Resource."
|
|
5532
5703
|
}
|
|
5533
5704
|
},
|
|
5534
5705
|
"unevaluatedProperties": {
|
|
@@ -9158,6 +9329,71 @@
|
|
|
9158
9329
|
"Operations.ProfilesApi_list.Response.500": {
|
|
9159
9330
|
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9160
9331
|
},
|
|
9332
|
+
"Operations.RunnerMcpApi_callTool.Request": {},
|
|
9333
|
+
"Operations.RunnerMcpApi_callTool.Response.200": {},
|
|
9334
|
+
"Operations.RunnerMcpApi_callTool.Response.400": {
|
|
9335
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9336
|
+
},
|
|
9337
|
+
"Operations.RunnerMcpApi_callTool.Response.403": {
|
|
9338
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9339
|
+
},
|
|
9340
|
+
"Operations.RunnerMcpApi_callTool.Response.404": {
|
|
9341
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9342
|
+
},
|
|
9343
|
+
"Operations.RunnerMcpApi_callTool.Response.409": {
|
|
9344
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9345
|
+
},
|
|
9346
|
+
"Operations.RunnerMcpApi_callTool.Response.500": {
|
|
9347
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9348
|
+
},
|
|
9349
|
+
"Operations.RunnerMcpApi_callTool.Response.502": {
|
|
9350
|
+
"$ref": "#/$defs/Common.Errors.BadGatewayError"
|
|
9351
|
+
},
|
|
9352
|
+
"Operations.RunnerMcpApi_callTool.Response.503": {
|
|
9353
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9354
|
+
},
|
|
9355
|
+
"Operations.RunnerMcpApi_listTools.Response.200": {},
|
|
9356
|
+
"Operations.RunnerMcpApi_listTools.Response.403": {
|
|
9357
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9358
|
+
},
|
|
9359
|
+
"Operations.RunnerMcpApi_listTools.Response.404": {
|
|
9360
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9361
|
+
},
|
|
9362
|
+
"Operations.RunnerMcpApi_listTools.Response.409": {
|
|
9363
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9364
|
+
},
|
|
9365
|
+
"Operations.RunnerMcpApi_listTools.Response.500": {
|
|
9366
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9367
|
+
},
|
|
9368
|
+
"Operations.RunnerMcpApi_listTools.Response.502": {
|
|
9369
|
+
"$ref": "#/$defs/Common.Errors.BadGatewayError"
|
|
9370
|
+
},
|
|
9371
|
+
"Operations.RunnerMcpApi_listTools.Response.503": {
|
|
9372
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9373
|
+
},
|
|
9374
|
+
"Operations.RunnerMcpApi_readResource.Request": {},
|
|
9375
|
+
"Operations.RunnerMcpApi_readResource.Response.200": {},
|
|
9376
|
+
"Operations.RunnerMcpApi_readResource.Response.400": {
|
|
9377
|
+
"$ref": "#/$defs/Common.Errors.ValidationError"
|
|
9378
|
+
},
|
|
9379
|
+
"Operations.RunnerMcpApi_readResource.Response.403": {
|
|
9380
|
+
"$ref": "#/$defs/Common.Errors.ForbiddenError"
|
|
9381
|
+
},
|
|
9382
|
+
"Operations.RunnerMcpApi_readResource.Response.404": {
|
|
9383
|
+
"$ref": "#/$defs/Common.Errors.NotFoundError"
|
|
9384
|
+
},
|
|
9385
|
+
"Operations.RunnerMcpApi_readResource.Response.409": {
|
|
9386
|
+
"$ref": "#/$defs/Common.Errors.ConflictError"
|
|
9387
|
+
},
|
|
9388
|
+
"Operations.RunnerMcpApi_readResource.Response.500": {
|
|
9389
|
+
"$ref": "#/$defs/Common.Errors.InternalServerError"
|
|
9390
|
+
},
|
|
9391
|
+
"Operations.RunnerMcpApi_readResource.Response.502": {
|
|
9392
|
+
"$ref": "#/$defs/Common.Errors.BadGatewayError"
|
|
9393
|
+
},
|
|
9394
|
+
"Operations.RunnerMcpApi_readResource.Response.503": {
|
|
9395
|
+
"$ref": "#/$defs/Common.Errors.ServiceUnavailableError"
|
|
9396
|
+
},
|
|
9161
9397
|
"Operations.RunnerMcpEvaluationRunsApi_compare.Request": {
|
|
9162
9398
|
"$ref": "#/$defs/Runner.Mcp.RunnerMcpEvaluationComparisonRequest"
|
|
9163
9399
|
},
|