@erp-galoper/types 1.0.1701 → 1.0.1703

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 +17 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -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 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1701",
3
+ "version": "1.0.1703",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],