@erp-galoper/types 1.0.752 → 1.0.753

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 +15 -4
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -27572,7 +27572,7 @@ export interface components {
27572
27572
  /**
27573
27573
  * Id
27574
27574
  * Format: uuid
27575
- * @example 2b52167d-5b41-469b-a1d0-b1107bdfaaab
27575
+ * @example fecfa4a9-f34d-4497-b991-cce520822c15
27576
27576
  */
27577
27577
  id: string;
27578
27578
  /**
@@ -38715,19 +38715,30 @@ export interface components {
38715
38715
  currency: number | null;
38716
38716
  /**
38717
38717
  * Regions
38718
- * @description List of region IDs where the price list applies. If regions are provided, customers will be filtered to those belonging to the selected regions.
38718
+ * @description
38719
+ * List of region IDs where the price list applies.
38720
+ * If regions are provided, customers will be filtered to those belonging to the selected regions.
38721
+ * If type is retail, this field should be hidden and not required.
38719
38722
  * @default []
38720
38723
  */
38721
38724
  regions: number[];
38722
38725
  /**
38723
38726
  * Customers
38724
- * @description List of customer IDs to whom this price list applies. If regions are selected, the customers must belong to the selected regions.
38727
+ * @description "
38728
+ * List of customer IDs to whom this price list applies.
38729
+ * If regions are selected, the customers must belong to the selected regions.
38730
+ * If type is retail, this field should be hidden and not required.
38731
+ *
38725
38732
  * @default []
38726
38733
  */
38727
38734
  customers: number[];
38728
38735
  /**
38729
38736
  * Customergroups
38730
- * @description List of segmentation group IDs to which the price list applies, should be filtered by type customer. If segmentation groups are defined, the customers must belong to those groups.
38737
+ * @description
38738
+ * List of segmentation group IDs to which the price list applies, should be filtered by type customer.
38739
+ * If segmentation groups are defined, the customers must belong to those groups.
38740
+ * If type is retail, this field should be hidden and not required.
38741
+ *
38731
38742
  * @default []
38732
38743
  */
38733
38744
  customerGroups: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.752",
3
+ "version": "1.0.753",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],