@erp-galoper/types 1.0.1439 → 1.0.1441

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 +6 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -46096,6 +46096,11 @@ export interface components {
46096
46096
  * @enum {string}
46097
46097
  */
46098
46098
  PriceListCurrencyEnum: "primary" | "secondary";
46099
+ /**
46100
+ * PricingModeEnum
46101
+ * @enum {string}
46102
+ */
46103
+ PricingModeEnum: "unit" | "ttc";
46099
46104
  /** ListPackageTypeSchema */
46100
46105
  ListPackageTypeSchema: {
46101
46106
  info: components["schemas"]["PageInfoSchema"];
@@ -86809,6 +86814,7 @@ export interface operations {
86809
86814
  priceListType?: "wholesale" | "retail";
86810
86815
  /** @description Currency of the price list */
86811
86816
  priceListCurrency?: "primary" | "secondary";
86817
+ pricing_mode?: "unit" | "ttc";
86812
86818
  };
86813
86819
  header?: never;
86814
86820
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1439",
3
+ "version": "1.0.1441",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],