data-validation-proximity 1.4.3 → 1.4.4

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.
Files changed (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -656,6 +656,8 @@ const schemaStore = joi.object({
656
656
  date: joi.string().allow('').allow(null),
657
657
  location: joi.string().allow('').allow(null),
658
658
  marketName: joi.string().allow('').allow(null),
659
+ latitude: joi.number().allow(null),
660
+ longitude: joi.number().allow(null),
659
661
  })
660
662
  )
661
663
  .allow(null),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "data-validation-proximity",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "A library of Joi-based validation middlewares for Express.js",
5
5
  "main": "index.js",
6
6
  "license": "MIT",