@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 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: unknown().describe("The candidate ShwfedConfig JSON value")
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shwfed",
3
3
  "configKey": "shwfed",
4
- "version": "2.3.8",
4
+ "version": "2.3.9",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "unknown"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shwfed/config",
3
- "version": "2.3.8",
3
+ "version": "2.3.9",
4
4
  "description": "Configurable UI for SHWFED",
5
5
  "type": "module",
6
6
  "publishConfig": {