@nomalism-com/types 0.40.47 → 0.40.48

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.cjs CHANGED
@@ -4451,7 +4451,8 @@ var senEmailBodyKeys = {
4451
4451
  id: joi80.string().required(),
4452
4452
  filename: joi80.string().required()
4453
4453
  })
4454
- ).optional().allow([])
4454
+ ).optional()
4455
+ // REMOVED .allow([]) here
4455
4456
  }),
4456
4457
  address: joi80.string().optional().allow(""),
4457
4458
  email: joi80.string().trim(true).lowercase().email({ tlds: { allow: false } })
package/dist/index.js CHANGED
@@ -4451,7 +4451,8 @@ var senEmailBodyKeys = {
4451
4451
  id: joi80.string().required(),
4452
4452
  filename: joi80.string().required()
4453
4453
  })
4454
- ).optional().allow([])
4454
+ ).optional()
4455
+ // REMOVED .allow([]) here
4455
4456
  }),
4456
4457
  address: joi80.string().optional().allow(""),
4457
4458
  email: joi80.string().trim(true).lowercase().email({ tlds: { allow: false } })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nomalism-com/types",
3
3
  "description": "A nomalism package with all necessary types and validations for developing APIs",
4
- "version": "0.40.47",
4
+ "version": "0.40.48",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",