medusa-core-utils
Advanced tools
Comparing version 1.0.12-alpha.551 to 1.0.12-alpha.786
@@ -19,9 +19,9 @@ "use strict"; | ||
address_1: _joi["default"].string().required(), | ||
address_2: _joi["default"].string().allow(""), | ||
address_2: _joi["default"].string().allow(null), | ||
city: _joi["default"].string().required(), | ||
country_code: _joi["default"].string().required(), | ||
province: _joi["default"].string().allow(""), | ||
province: _joi["default"].string().allow(null), | ||
postal_code: _joi["default"].string().required(), | ||
phone: _joi["default"].string().optional(), | ||
metadata: _joi["default"].object() | ||
metadata: _joi["default"].object().allow(null) | ||
}); | ||
@@ -28,0 +28,0 @@ }; |
{ | ||
"name": "medusa-core-utils", | ||
"version": "1.0.12-alpha.551+c92360c", | ||
"version": "1.0.12-alpha.786+b1ef315", | ||
"description": "Core utils for Medusa", | ||
@@ -33,6 +33,6 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"joi": "^17.2.1", | ||
"joi": "^17.3.0", | ||
"joi-objectid": "^3.0.1" | ||
}, | ||
"gitHead": "c92360ce581d2a7aa30e3a77bb078d30b3d1ccfb" | ||
"gitHead": "b1ef315fb61cb0dba290f9d17a7922ae4e0eec0b" | ||
} |
@@ -10,9 +10,9 @@ import Joi from "joi" | ||
address_1: Joi.string().required(), | ||
address_2: Joi.string().allow(""), | ||
address_2: Joi.string().allow(null), | ||
city: Joi.string().required(), | ||
country_code: Joi.string().required(), | ||
province: Joi.string().allow(""), | ||
province: Joi.string().allow(null), | ||
postal_code: Joi.string().required(), | ||
phone: Joi.string().optional(), | ||
metadata: Joi.object(), | ||
metadata: Joi.object().allow(null), | ||
}) | ||
@@ -19,0 +19,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
8
59668
22
2058
Updatedjoi@^17.3.0