codify-plugin-lib 1.0.182-beta30 → 1.0.182-beta31

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.
@@ -374,8 +374,8 @@ ${JSON.stringify(refresh, null, 2)}
374
374
  .sort((a, b) => this.parsedSettings.statefulParameterOrder.get(a.name) - this.parsedSettings.statefulParameterOrder.get(b.name));
375
375
  }
376
376
  getAllParameterKeys() {
377
- return this.settings.schema
378
- ? Object.keys(this.settings.schema?.properties)
377
+ return this.parsedSettings.schema
378
+ ? Object.keys(this.parsedSettings.schema?.properties)
379
379
  : Object.keys(this.parsedSettings.parameterSettings);
380
380
  }
381
381
  getParametersToRefreshForImport(parameters, context) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.182-beta30",
3
+ "version": "1.0.182-beta31",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -525,8 +525,8 @@ ${JSON.stringify(refresh, null, 2)}
525
525
  }
526
526
 
527
527
  private getAllParameterKeys(): string[] {
528
- return this.settings.schema
529
- ? Object.keys((this.settings.schema as any)?.properties)
528
+ return this.parsedSettings.schema
529
+ ? Object.keys((this.parsedSettings.schema as any)?.properties)
530
530
  : Object.keys(this.parsedSettings.parameterSettings);
531
531
  }
532
532