codify-plugin-lib 1.0.182-beta75 → 1.0.182-beta76
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, filterArrayParameterForDeletes(k, v)]));
|
|
209
|
+
console.log('Result for destroy filtering', { ...filteredCurrent, ...arrayStatefulParameters });
|
|
209
210
|
return { ...filteredCurrent, ...arrayStatefulParameters };
|
|
210
211
|
}
|
|
211
212
|
// TODO: Add object handling here in addition to arrays in the future
|
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, filterArrayParameterForDeletes(k, v)])
|
|
340
340
|
)
|
|
341
341
|
|
|
342
|
+
console.log('Result for destroy filtering', { ...filteredCurrent, ...arrayStatefulParameters });
|
|
343
|
+
|
|
342
344
|
return { ...filteredCurrent, ...arrayStatefulParameters }
|
|
343
345
|
}
|
|
344
346
|
|