codify-plugin-lib 1.0.143 → 1.0.144

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.
@@ -40,7 +40,7 @@ export class Plugin {
40
40
  const schema = resource.settings.schema;
41
41
  const requiredPropertyNames = (resource.settings.importAndDestroy?.requiredParameters
42
42
  ?? schema?.required
43
- ?? null);
43
+ ?? undefined);
44
44
  const allowMultiple = resource.settings.allowMultiple !== undefined
45
45
  ? (typeof resource.settings.allowMultiple === 'boolean'
46
46
  ? { identifyingParameters: schema?.required ?? [] }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.143",
3
+ "version": "1.0.144",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -69,8 +69,8 @@ export class Plugin {
69
69
  const requiredPropertyNames = (
70
70
  resource.settings.importAndDestroy?.requiredParameters
71
71
  ?? schema?.required
72
- ?? null
73
- ) as null | string[];
72
+ ?? undefined
73
+ ) as any;
74
74
 
75
75
  const allowMultiple = resource.settings.allowMultiple !== undefined
76
76
  ? (typeof resource.settings.allowMultiple === 'boolean'