@punks/backend-entity-manager 0.0.384 → 0.0.385

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/esm/index.js CHANGED
@@ -22652,7 +22652,7 @@ const normalizeAddress = (value) => {
22652
22652
  const normalizeAddressField = (values, invalidValues) => {
22653
22653
  return distinct(values
22654
22654
  ?.map(normalizeAddress)
22655
- ?.filter((value) => value && !invalidValues?.map(normalizeAddress).includes(value)));
22655
+ ?.filter((value) => value && !invalidValues?.map(normalizeAddress).includes(value)) ?? []);
22656
22656
  };
22657
22657
  const normalizeAddresses = (input) => {
22658
22658
  return {