@codifycli/plugin-core 1.1.0-beta19 → 1.1.0-beta20

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.
@@ -177,7 +177,7 @@ export class Plugin {
177
177
  return result;
178
178
  });
179
179
  if (validationPlan.requiresChanges()) {
180
- throw new ApplyValidationError(plan);
180
+ throw new ApplyValidationError(validationPlan);
181
181
  }
182
182
  }
183
183
  async setVerbosityLevel(data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codifycli/plugin-core",
3
- "version": "1.1.0-beta19",
3
+ "version": "1.1.0-beta20",
4
4
  "description": "TypeScript library for building Codify plugins to manage system resources (applications, CLI tools, settings) through infrastructure-as-code",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -268,7 +268,7 @@ export class Plugin {
268
268
  })
269
269
 
270
270
  if (validationPlan.requiresChanges()) {
271
- throw new ApplyValidationError(plan);
271
+ throw new ApplyValidationError(validationPlan);
272
272
  }
273
273
  }
274
274