@erp-galoper/types 1.0.1456 → 1.0.1458

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.
Files changed (2) hide show
  1. package/openapi.ts +5 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -30972,7 +30972,7 @@ export interface components {
30972
30972
  quantity: number | null;
30973
30973
  /**
30974
30974
  * Expirydate
30975
- * @description Expiry date for the item if item has_expiry is true
30975
+ * @description Expiry date for the item if applicable
30976
30976
  */
30977
30977
  expiryDate?: string | null;
30978
30978
  };
@@ -53168,11 +53168,10 @@ export interface components {
53168
53168
  * Format: uuid
53169
53169
  */
53170
53170
  id: string;
53171
- /**
53172
- * Number
53173
- * @description Serial number or batch number based on the tracking method
53174
- */
53175
- number?: string | null;
53171
+ /** @description Serial number */
53172
+ serial?: components["schemas"]["BatchSerialSummarySchema"] | null;
53173
+ /** @description Batch number */
53174
+ batch?: components["schemas"]["BatchSerialSummarySchema"] | null;
53176
53175
  /**
53177
53176
  * Quantity
53178
53177
  * @default 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1456",
3
+ "version": "1.0.1458",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],