@erp-galoper/types 1.0.1218 → 1.0.1219

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 +14 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -23485,11 +23485,22 @@ export interface components {
23485
23485
  includeUom: boolean;
23486
23486
  /** @default 50x25 */
23487
23487
  labelSize: components["schemas"]["LabelSize"];
23488
- /** Pricelist */
23488
+ /**
23489
+ * Pricelist
23490
+ * @description when choosing price list, all items in the price list will be included if items data is empty,
23491
+ * else the price from the price list will be used for the items in the items data only
23492
+ */
23489
23493
  priceList?: string | null;
23490
- /** Companyrate */
23494
+ /**
23495
+ * Companyrate
23496
+ * @description "
23497
+ * required when price list is chosen and its pricing_method is profit
23498
+ */
23491
23499
  companyRate?: number | null;
23492
- /** Secondaryrate */
23500
+ /**
23501
+ * Secondaryrate
23502
+ * @description required when price list is chosen and its pricing_method is profit
23503
+ */
23493
23504
  secondaryRate?: number | null;
23494
23505
  /**
23495
23506
  * Itemsdata
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1218",
3
+ "version": "1.0.1219",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],