@erp-galoper/types 1.0.281 → 1.0.283
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 +17 -3
- 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
|
|
26648
|
+
* @example 01a34e4f-60bc-4e07-a32f-2fb79c41f4b3
|
|
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
|
-
*
|
|
41479
|
-
*
|
|
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;
|