interaqt 0.4.9 → 0.4.10
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8993,7 +8993,7 @@ class Ae {
|
|
|
8993
8993
|
if (i.required && !(i.name in t.payload))
|
|
8994
8994
|
throw O.payloadValidationFailed(i.name, "missing", t.payload);
|
|
8995
8995
|
const s = t.payload[i.name];
|
|
8996
|
-
if (
|
|
8996
|
+
if (s === void 0) return;
|
|
8997
8997
|
if (i.isCollection && !Array.isArray(s))
|
|
8998
8998
|
throw O.payloadValidationFailed(i.name, "data is not array", s);
|
|
8999
8999
|
if (i.isCollection) {
|