blueprint-extractor-mcp 2.0.1 → 2.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -3301,7 +3301,7 @@ RETURNS: JSON with validation summary, diagnostics, and dirtyPackages. Changes a
3301
3301
  if (slot)
3302
3302
  payload.slot = slot;
3303
3303
  if (class_defaults)
3304
- payload.class_defaults = class_defaults;
3304
+ payload.classDefaults = class_defaults;
3305
3305
  const variableFlag = maybeBoolean(is_variable);
3306
3306
  if (typeof variableFlag === 'boolean')
3307
3307
  payload.is_variable = variableFlag;
@@ -3685,7 +3685,7 @@ RETURNS: JSON with validation summary, diagnostics, and dirtyPackages. Changes a
3685
3685
  const result = await callSubsystemJson('ModifyWidgetBlueprintStructure', {
3686
3686
  AssetPath: asset_path,
3687
3687
  Operation: 'patch_class_defaults',
3688
- PayloadJson: JSON.stringify({ class_defaults }),
3688
+ PayloadJson: JSON.stringify({ classDefaults: class_defaults }),
3689
3689
  bValidateOnly: false,
3690
3690
  });
3691
3691
  steps.push({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blueprint-extractor-mcp",
3
- "version": "2.0.1",
3
+ "version": "2.1.0",
4
4
  "description": "MCP server for the Unreal Engine BlueprintExtractor plugin over Remote Control",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",