codify-plugin-lib 1.0.84 → 1.0.85

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.
@@ -22,6 +22,7 @@ export class ResourceController {
22
22
  allErrors: true,
23
23
  strict: true,
24
24
  strictRequired: false,
25
+ allowUnionTypes: true
25
26
  });
26
27
  this.schemaValidator = this.ajv.compile(this.settings.schema);
27
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -41,6 +41,7 @@ export class ResourceController<T extends StringIndexedObject> {
41
41
  allErrors: true,
42
42
  strict: true,
43
43
  strictRequired: false,
44
+ allowUnionTypes: true
44
45
  })
45
46
  this.schemaValidator = this.ajv.compile(this.settings.schema);
46
47
  }