@mcp-use/cli 2.6.0-canary.17 → 2.6.0-canary.18
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.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -3594,7 +3594,10 @@ export default PostHog;
|
|
|
3594
3594
|
...mod.widgetMetadata,
|
|
3595
3595
|
title: mod.widgetMetadata.title || widgetName,
|
|
3596
3596
|
description: mod.widgetMetadata.description,
|
|
3597
|
-
|
|
3597
|
+
// Pass the full Zod schema object directly (don't extract .shape)
|
|
3598
|
+
// The SDK's normalizeObjectSchema() can handle both complete Zod schemas
|
|
3599
|
+
// and raw shapes, so we preserve the full schema here
|
|
3600
|
+
inputs: schemaField || {}
|
|
3598
3601
|
};
|
|
3599
3602
|
}
|
|
3600
3603
|
await new Promise((resolve) => setTimeout(resolve, 50));
|