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.
|
|
378
|
-
? Object.keys(this.
|
|
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
|
@@ -525,8 +525,8 @@ ${JSON.stringify(refresh, null, 2)}
|
|
|
525
525
|
}
|
|
526
526
|
|
|
527
527
|
private getAllParameterKeys(): string[] {
|
|
528
|
-
return this.
|
|
529
|
-
? Object.keys((this.
|
|
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
|
|