idosell 0.4.32 → 0.4.38

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/request.js CHANGED
@@ -117,7 +117,7 @@ const isMissingRequirement = (obj, required) => {
117
117
  return false;
118
118
  }
119
119
  for (const field of required.any) {
120
- if (obj[field])
120
+ if (obj[field] === undefined || obj[field] === null)
121
121
  return false;
122
122
  }
123
123
  return required.any.join(' | ');