@erp-galoper/types 1.0.280 → 1.0.282

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 -3
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26645,7 +26645,7 @@ export interface components {
26645
26645
  /**
26646
26646
  * Id
26647
26647
  * Format: uuid
26648
- * @example ef93c70f-fe25-4625-88a5-e6e9fafffa59
26648
+ * @example 27964012-ef4a-41c8-9a7e-71f437219e26
26649
26649
  */
26650
26650
  id: string;
26651
26651
  /**
@@ -41475,8 +41475,22 @@ export interface components {
41475
41475
  * Pricelist
41476
41476
  * Format: uuid
41477
41477
  * @description
41478
- * - This field is required when the price list is active in sales settings, and visible if inventory is on.
41479
- * - /api/v1/sales/price-list/
41478
+ * - This field is required when the price list feature is enabled in sales settings. (AND)
41479
+ * - It is visible only if inventory is enabled. (AND)
41480
+ *
41481
+ * - Endpoint: /api/v1/sales/price-list/
41482
+ * - Filters:
41483
+ *
41484
+ * 1. **Active Date Range** (AND):
41485
+ * - `start_date` must be on or before the current date.
41486
+ * - AND `end_date` must be either null or on/after the current date.
41487
+ *
41488
+ * 2. **Target Matching** (OR):
41489
+ * - The price list must match one of the following:
41490
+ * - The specific customer (`customers` field).
41491
+ * - OR the customer's region (`regions` field).
41492
+ * - OR the customer's group (`customer_groups` field).
41493
+ *
41480
41494
  *
41481
41495
  */
41482
41496
  priceList?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.280",
3
+ "version": "1.0.282",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],