@nomalism-com/types 0.43.55 → 0.43.56

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
@@ -1648,6 +1648,8 @@ var transferClientOwnershipBodyKeys = {
1648
1648
  var transferClientOwnershipBody = joi10.object().keys(transferClientOwnershipBodyKeys).messages(messages);
1649
1649
  var updateManyWithPersonaBodyKeys = {
1650
1650
  id: joi10.string().uuid().required(),
1651
+ owner_id: joi10.string().uuid().required(),
1652
+ owner_name: joi10.string().required(),
1651
1653
  name: joi10.string().allow(null).optional(),
1652
1654
  telephone: joi10.string().allow(null).optional(),
1653
1655
  email: joi10.string().email({ tlds: { allow: false } }).allow(null).optional(),
package/dist/index.js CHANGED
@@ -1648,6 +1648,8 @@ var transferClientOwnershipBodyKeys = {
1648
1648
  var transferClientOwnershipBody = joi10.object().keys(transferClientOwnershipBodyKeys).messages(messages);
1649
1649
  var updateManyWithPersonaBodyKeys = {
1650
1650
  id: joi10.string().uuid().required(),
1651
+ owner_id: joi10.string().uuid().required(),
1652
+ owner_name: joi10.string().required(),
1651
1653
  name: joi10.string().allow(null).optional(),
1652
1654
  telephone: joi10.string().allow(null).optional(),
1653
1655
  email: joi10.string().email({ tlds: { allow: false } }).allow(null).optional(),
@@ -218,6 +218,8 @@ export interface IFindResponse {
218
218
  }
219
219
  export type IUpdateManyWithPersona = {
220
220
  id: string;
221
+ owner_id: string;
222
+ owner_name: string;
221
223
  name: string | null;
222
224
  telephone: string | null;
223
225
  email: 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.43.55",
4
+ "version": "0.43.56",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",