@erp-galoper/types 1.0.1455 → 1.0.1457

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 +10 -8
  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
  };
@@ -46690,8 +46690,11 @@ export interface components {
46690
46690
  };
46691
46691
  /** SalesItemTotal */
46692
46692
  SalesItemTotal: {
46693
- /** Required When Promotions And Offers Are Applied */
46694
- "required when promotions and offers are applied"?: number;
46693
+ /**
46694
+ * Item
46695
+ * @description Required when promotions and offers are applied
46696
+ */
46697
+ item?: number;
46695
46698
  /**
46696
46699
  * Quantity
46697
46700
  * @description - Disabled when item package is selected
@@ -53165,11 +53168,10 @@ export interface components {
53165
53168
  * Format: uuid
53166
53169
  */
53167
53170
  id: string;
53168
- /**
53169
- * Number
53170
- * @description Serial number or batch number based on the tracking method
53171
- */
53172
- number?: string | null;
53171
+ /** @description Serial number */
53172
+ serial?: components["schemas"]["BatchSerialSummarySchema"] | null;
53173
+ /** @description Batch number */
53174
+ batch?: components["schemas"]["BatchSerialSummarySchema"] | null;
53173
53175
  /**
53174
53176
  * Quantity
53175
53177
  * @default 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1455",
3
+ "version": "1.0.1457",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],