codify-plugin-lib 1.0.182-beta68 → 1.0.182-beta69
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.
- package/dist/plan/plan.js +1 -0
- package/package.json +1 -1
- package/src/plan/plan.ts +2 -0
package/dist/plan/plan.js
CHANGED
|
@@ -206,6 +206,7 @@ export class Plan {
|
|
|
206
206
|
const arrayStatefulParameters = Object.fromEntries(Object.entries(filteredCurrent)
|
|
207
207
|
.filter(([k, v]) => isArrayParameterWithFiltering(k, v))
|
|
208
208
|
.map(([k, v]) => [k, filterArrayStatefulParameter(k, v)]));
|
|
209
|
+
console.log('Result', { ...filteredCurrent, ...arrayStatefulParameters });
|
|
209
210
|
return { ...filteredCurrent, ...arrayStatefulParameters };
|
|
210
211
|
function filterCurrent() {
|
|
211
212
|
if (!current) {
|
package/package.json
CHANGED
package/src/plan/plan.ts
CHANGED
|
@@ -339,6 +339,8 @@ export class Plan<T extends StringIndexedObject> {
|
|
|
339
339
|
.map(([k, v]) => [k, filterArrayStatefulParameter(k, v)])
|
|
340
340
|
)
|
|
341
341
|
|
|
342
|
+
console.log('Result', { ...filteredCurrent, ...arrayStatefulParameters });
|
|
343
|
+
|
|
342
344
|
return { ...filteredCurrent, ...arrayStatefulParameters }
|
|
343
345
|
|
|
344
346
|
function filterCurrent(): Partial<T> | null {
|