@erp-galoper/types 1.0.1792 → 1.0.1794

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 +12 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -14299,7 +14299,7 @@ export interface paths {
14299
14299
  * - paymentMethodDoesNotExist
14300
14300
  * - paymentMethodIsRequired
14301
14301
  * - startDateShouldBeLessThanEndDate
14302
- * - customerOrCustomerGroupIsRequired
14302
+ * - customersOrCustomerGroupsOnly
14303
14303
  * - targetAndTargetPeriodMustBeFilledIfOneOfThemIsSet
14304
14304
  * - commissionStructureAlreadyExistForSalesperson
14305
14305
  * - customerGroupShouldBelongsToCustomer
@@ -14369,7 +14369,7 @@ export interface paths {
14369
14369
  * - paymentMethodDoesNotExist
14370
14370
  * - paymentMethodIsRequired
14371
14371
  * - startDateShouldBeLessThanEndDate
14372
- * - customerOrCustomerGroupIsRequired
14372
+ * - customersOrCustomerGroupsOnly
14373
14373
  * - commissionStructureAlreadyExistForSalesperson
14374
14374
  * - customerGroupShouldBelongsToCustomer
14375
14375
  * - cantChangeMajorFields
@@ -47564,14 +47564,17 @@ export interface components {
47564
47564
  categories: number[];
47565
47565
  /**
47566
47566
  * Customergroups
47567
- * @description customers or customerGroups required , cannot both be empty
47567
+ * @description both customers and customerGroups can be left empty to include all active debtor child customers
47568
+ * otherwise choose either customers or customerGroups, not both
47569
+ * when selected, all customers in those groups are included
47568
47570
  * to get customer groups use route /api/v1/common/contact-segmentation/ and filter by type=customer
47569
47571
  * @default []
47570
47572
  */
47571
47573
  customerGroups: string[];
47572
47574
  /**
47573
47575
  * Customers
47574
- * @description customers or customerGroups required , cannot both be empty
47576
+ * @description both customers and customerGroups can be left empty to include all active debtor child customers
47577
+ * otherwise choose either customers or customerGroups, not both
47575
47578
  * to get customers use route /api/v1/customers/?type=children and filter by isActive=true
47576
47579
  * @default []
47577
47580
  */
@@ -47728,14 +47731,17 @@ export interface components {
47728
47731
  categories: number[];
47729
47732
  /**
47730
47733
  * Customergroups
47731
- * @description customers or customerGroups required , cannot both be empty
47734
+ * @description both customers and customerGroups can be left empty to include all active debtor child customers
47735
+ * otherwise choose either customers or customerGroups, not both
47736
+ * when selected, all customers in those groups are included
47732
47737
  * to get customer groups use route /api/v1/common/contact-segmentation/ and filter by type=customer
47733
47738
  * @default []
47734
47739
  */
47735
47740
  customerGroups: string[];
47736
47741
  /**
47737
47742
  * Customers
47738
- * @description customers or customerGroups required , cannot both be empty
47743
+ * @description both customers and customerGroups can be left empty to include all active debtor child customers
47744
+ * otherwise choose either customers or customerGroups, not both
47739
47745
  * to get customers use route /api/v1/customers/?type=children and filter by isActive=true
47740
47746
  * @default []
47741
47747
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1792",
3
+ "version": "1.0.1794",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],