@nomalism-com/types 0.45.19 → 0.45.21

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
@@ -4971,6 +4971,7 @@ var findProductSheetByReferenceQuery = joi93.object().keys({
4971
4971
  selector: joi93.string().required()
4972
4972
  }).messages(messages);
4973
4973
  var productLocationBody = joi93.object().keys({
4974
+ location_type: joi93.valid("local_p", "local_e").required(),
4974
4975
  location_id: joi93.string().required(),
4975
4976
  product_id: joi93.array().items(joi93.string().uuid()).required()
4976
4977
  }).messages(messages);
package/dist/index.js CHANGED
@@ -4971,6 +4971,7 @@ var findProductSheetByReferenceQuery = joi93.object().keys({
4971
4971
  selector: joi93.string().required()
4972
4972
  }).messages(messages);
4973
4973
  var productLocationBody = joi93.object().keys({
4974
+ location_type: joi93.valid("local_p", "local_e").required(),
4974
4975
  location_id: joi93.string().required(),
4975
4976
  product_id: joi93.array().items(joi93.string().uuid()).required()
4976
4977
  }).messages(messages);
@@ -208,6 +208,7 @@ export type IFindForMobileRequest = {
208
208
  id: string;
209
209
  };
210
210
  export interface IProductLocation {
211
+ location_type: 'local_p' | 'local_e';
211
212
  location_id: string;
212
213
  product_id: string[];
213
214
  }
@@ -387,6 +387,7 @@ export type IBrokerTopicPayload = {
387
387
  reason_for_exemption: string | null;
388
388
  };
389
389
  [IBrokerTopic.portal_subscriber_events]: {
390
+ chat_document_header_id: string;
390
391
  target_subscriber_ids: string[];
391
392
  event: ChatSocketEvent;
392
393
  };
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.45.19",
4
+ "version": "0.45.21",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",