@shwfed/config 2.3.8 → 2.3.9
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/mcp.mjs +1 -1
- package/dist/module.json +1 -1
- package/package.json +1 -1
package/dist/mcp.mjs
CHANGED
|
@@ -92981,7 +92981,7 @@ server.registerTool("validate_config", {
|
|
|
92981
92981
|
title: "Validate ShwfedConfig JSON",
|
|
92982
92982
|
description: "Validates a candidate ShwfedConfig JSON value against the Effect Schema. Returns `{ valid: true }` on success, or `{ valid: false, message, issues: [{ path, message, tag }] }` on failure. CEL expressions are accepted as strings without evaluation.",
|
|
92983
92983
|
inputSchema: {
|
|
92984
|
-
config:
|
|
92984
|
+
config: looseObject({}).describe("The candidate ShwfedConfig JSON value")
|
|
92985
92985
|
}
|
|
92986
92986
|
}, async ({ config: config2 }) => {
|
|
92987
92987
|
const result = validateConfig(config2);
|
package/dist/module.json
CHANGED