@erp-galoper/types 1.0.1700 → 1.0.1702
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/openapi.ts +19 -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
|
|
@@ -47006,6 +47006,11 @@ export interface components {
|
|
|
47006
47006
|
* @description This field is a number
|
|
47007
47007
|
*/
|
|
47008
47008
|
cost: string | null;
|
|
47009
|
+
/**
|
|
47010
|
+
* Livecost
|
|
47011
|
+
* @description This field is a number representing the current live cost of the item
|
|
47012
|
+
*/
|
|
47013
|
+
liveCost?: string | null;
|
|
47009
47014
|
/**
|
|
47010
47015
|
* Secondaryrate
|
|
47011
47016
|
* @description - This field is a number.
|
|
@@ -57387,6 +57392,12 @@ export interface components {
|
|
|
57387
57392
|
name: string;
|
|
57388
57393
|
/** Skucode */
|
|
57389
57394
|
skuCode?: string | null;
|
|
57395
|
+
/**
|
|
57396
|
+
* Unitsofmeasure
|
|
57397
|
+
* @description All available units of measure for this item
|
|
57398
|
+
* @default []
|
|
57399
|
+
*/
|
|
57400
|
+
unitsOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"][];
|
|
57390
57401
|
};
|
|
57391
57402
|
/** SalesByItemListSchema */
|
|
57392
57403
|
SalesByItemListSchema: {
|
|
@@ -57408,6 +57419,12 @@ export interface components {
|
|
|
57408
57419
|
categories: components["schemas"]["CategorySummarySchema"][];
|
|
57409
57420
|
brand?: components["schemas"]["BrandSummarySchema"] | null;
|
|
57410
57421
|
family?: components["schemas"]["FamilySummarySchema"] | null;
|
|
57422
|
+
/**
|
|
57423
|
+
* Unitsofmeasure
|
|
57424
|
+
* @description Units of measure used in sales for this item
|
|
57425
|
+
* @default []
|
|
57426
|
+
*/
|
|
57427
|
+
unitsOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"][];
|
|
57411
57428
|
/** Quantitysold */
|
|
57412
57429
|
quantitySold: number;
|
|
57413
57430
|
/** @description Total sales before discounts */
|