@erp-galoper/types 1.0.1217 → 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.
- package/openapi.ts +14 -3
- 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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|