@nomalism-com/types 0.40.10 → 0.40.11

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
@@ -4691,6 +4691,7 @@ var printLabelQueryKeys2 = {
4691
4691
  pc_document_number: joi85.number().integer().positive().allow(null).optional(),
4692
4692
  prison: joi85.boolean().required(),
4693
4693
  quantity: joi85.number().positive().required(),
4694
+ availableStock: joi85.number().required(),
4694
4695
  note: joi85.string().allow(null, "").optional(),
4695
4696
  token: joi85.string().required()
4696
4697
  };
package/dist/index.js CHANGED
@@ -4691,6 +4691,7 @@ var printLabelQueryKeys2 = {
4691
4691
  pc_document_number: joi85.number().integer().positive().allow(null).optional(),
4692
4692
  prison: joi85.boolean().required(),
4693
4693
  quantity: joi85.number().positive().required(),
4694
+ availableStock: joi85.number().required(),
4694
4695
  note: joi85.string().allow(null, "").optional(),
4695
4696
  token: joi85.string().required()
4696
4697
  };
@@ -110,6 +110,7 @@ export interface IPrintLabelQueryRequest {
110
110
  ef_name: string;
111
111
  pc_document_number?: number | null;
112
112
  prison: boolean;
113
+ availableStock: number;
113
114
  quantity: number;
114
115
  note?: string;
115
116
  }
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.10",
4
+ "version": "0.40.11",
5
5
  "author": "Nomalism <it.nomalism@gmail.com> (https://nomalism.com/)",
6
6
  "license": "UNLICENSED",
7
7
  "type": "module",