@etainabl/nodejs-sdk 1.3.150 → 1.3.151

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
@@ -9090,7 +9090,7 @@ var errorCodeMap = {
9090
9090
  status: "error",
9091
9091
  message: "Account not found for the provided device ID or MPAN.",
9092
9092
  isUnique: ({ details }, problems) => {
9093
- return !problems.some((p4) => p4.code === "ACCOUNT_NOT_FOUND" && p4.details?.value === details?.value) || true;
9093
+ return !problems.some((p4) => p4.code === "ACCOUNT_NOT_FOUND" && p4.details?.value === details?.value);
9094
9094
  }
9095
9095
  },
9096
9096
  INVALID_DATE_FORMAT: {