@erp-galoper/types 1.0.1699 → 1.0.1701

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 +2 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -27447,7 +27447,7 @@ export interface components {
27447
27447
  * - Profit Margin: Commission is calculated on the profit of each item, after deducting both the discount and the cost of goods sold (COGS).
27448
27448
  * - Formula (per item): (Price - Discount - Cost) × Commission Rate
27449
27449
  */
27450
- commissionCalculation?: components["schemas"]["ItemCommissionCalculation"];
27450
+ commissionCalculation?: components["schemas"]["ItemCommissionCalculation"] | null;
27451
27451
  /**
27452
27452
  * Packages
27453
27453
  * @description Not applicable for service items - always empty list for type=service. Package and unit of measure should be unique
@@ -27814,7 +27814,7 @@ export interface components {
27814
27814
  * - Profit Margin: Commission is calculated on the profit of each item, after deducting both the discount and the cost of goods sold (COGS).
27815
27815
  * - Formula (per item): (Price - Discount - Cost) × Commission Rate
27816
27816
  */
27817
- commissionCalculation?: components["schemas"]["ItemCommissionCalculation"];
27817
+ commissionCalculation?: components["schemas"]["ItemCommissionCalculation"] | null;
27818
27818
  /**
27819
27819
  * @description - fifo(First In, First Out): Items purchased or produced first are sold or used first
27820
27820
  * - lifo(Last In, First Out): Items purchased or produced most recently are sold or used first
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1699",
3
+ "version": "1.0.1701",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],