@nomalism-com/types 0.40.62 → 0.40.63

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
@@ -4275,6 +4275,7 @@ __export(route_schema_exports75, {
4275
4275
  import joi76 from "joi";
4276
4276
  var emailSchema = joi76.string().trim(true).lowercase().email({ tlds: { allow: false } }).allow(null, "");
4277
4277
  var createBodyKeys52 = {
4278
+ external: joi76.boolean().required(),
4278
4279
  name: joi76.string().allow(null, "").optional(),
4279
4280
  nif: joi76.string().allow(null, "").optional(),
4280
4281
  street: joi76.string().allow(null, "").optional(),
package/dist/index.js CHANGED
@@ -4275,6 +4275,7 @@ __export(route_schema_exports75, {
4275
4275
  import joi76 from "joi";
4276
4276
  var emailSchema = joi76.string().trim(true).lowercase().email({ tlds: { allow: false } }).allow(null, "");
4277
4277
  var createBodyKeys52 = {
4278
+ external: joi76.boolean().required(),
4278
4279
  name: joi76.string().allow(null, "").optional(),
4279
4280
  nif: joi76.string().allow(null, "").optional(),
4280
4281
  street: joi76.string().allow(null, "").optional(),
@@ -15,6 +15,7 @@ export interface IFindByOwnerIdResponse extends IEntityExtended {
15
15
  contact: boolean;
16
16
  }
17
17
  export interface ICreateRequest {
18
+ external: boolean;
18
19
  name: string | null;
19
20
  nif: string | null;
20
21
  street: string | null;
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.62",
4
+ "version": "0.40.63",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",