@avallon-labs/mcp 51.0.0-staging.1135 → 51.1.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/dist/index.js
CHANGED
|
@@ -8985,7 +8985,7 @@ var RunEvalResponse = zod.object({
|
|
|
8985
8985
|
"id": zod.string().uuid(),
|
|
8986
8986
|
"eval_id": zod.string().uuid(),
|
|
8987
8987
|
"target_version": zod.number().int().min(runEvalResponseDataTargetVersionMin).max(runEvalResponseDataTargetVersionMax),
|
|
8988
|
-
"status": zod.enum(["queued", "running", "passed", "failed", "error"]),
|
|
8988
|
+
"status": zod.enum(["queued", "running", "judging", "passed", "failed", "error"]),
|
|
8989
8989
|
"passed": zod.union([zod.boolean(), zod.null()]),
|
|
8990
8990
|
"reason": zod.union([zod.string(), zod.null()]),
|
|
8991
8991
|
"error": zod.union([zod.string(), zod.null()]),
|
|
@@ -9056,7 +9056,7 @@ var GetEvalRunResponse = zod.object({
|
|
|
9056
9056
|
"id": zod.string().uuid(),
|
|
9057
9057
|
"eval_id": zod.string().uuid(),
|
|
9058
9058
|
"target_version": zod.number().int().min(getEvalRunResponseDataTargetVersionMin).max(getEvalRunResponseDataTargetVersionMax),
|
|
9059
|
-
"status": zod.enum(["queued", "running", "passed", "failed", "error"]),
|
|
9059
|
+
"status": zod.enum(["queued", "running", "judging", "passed", "failed", "error"]),
|
|
9060
9060
|
"passed": zod.union([zod.boolean(), zod.null()]),
|
|
9061
9061
|
"reason": zod.union([zod.string(), zod.null()]),
|
|
9062
9062
|
"error": zod.union([zod.string(), zod.null()]),
|
|
@@ -9209,7 +9209,7 @@ var CreateEvalBenchmarkResponse = zod.object({
|
|
|
9209
9209
|
"id": zod.string().uuid(),
|
|
9210
9210
|
"eval_id": zod.string().uuid(),
|
|
9211
9211
|
"target_version": zod.number().int().min(createEvalBenchmarkResponseDataRunsItemTargetVersionMin).max(createEvalBenchmarkResponseDataRunsItemTargetVersionMax),
|
|
9212
|
-
"status": zod.enum(["queued", "running", "passed", "failed", "error"]),
|
|
9212
|
+
"status": zod.enum(["queued", "running", "judging", "passed", "failed", "error"]),
|
|
9213
9213
|
"passed": zod.union([zod.boolean(), zod.null()]),
|
|
9214
9214
|
"reason": zod.union([zod.string(), zod.null()]),
|
|
9215
9215
|
"error": zod.union([zod.string(), zod.null()]),
|
|
@@ -9355,7 +9355,7 @@ var GetBenchmarkResponse = zod.object({
|
|
|
9355
9355
|
"id": zod.string().uuid(),
|
|
9356
9356
|
"eval_id": zod.string().uuid(),
|
|
9357
9357
|
"target_version": zod.number().int().min(getBenchmarkResponseDataRunsItemTargetVersionMin).max(getBenchmarkResponseDataRunsItemTargetVersionMax),
|
|
9358
|
-
"status": zod.enum(["queued", "running", "passed", "failed", "error"]),
|
|
9358
|
+
"status": zod.enum(["queued", "running", "judging", "passed", "failed", "error"]),
|
|
9359
9359
|
"passed": zod.union([zod.boolean(), zod.null()]),
|
|
9360
9360
|
"reason": zod.union([zod.string(), zod.null()]),
|
|
9361
9361
|
"error": zod.union([zod.string(), zod.null()]),
|
|
@@ -14454,4 +14454,4 @@ var transport = new StdioServerTransport();
|
|
|
14454
14454
|
server.connect(transport).then(() => {
|
|
14455
14455
|
console.error("MCP server running on stdio");
|
|
14456
14456
|
}).catch(console.error);
|
|
14457
|
-
//# sourceMappingURL=server-
|
|
14457
|
+
//# sourceMappingURL=server-6DAEBJ2W.js.map
|