@erp-galoper/types 1.0.1856 → 1.0.1857

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 +4 -4
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -103066,15 +103066,15 @@ export interface operations {
103066
103066
  regionIds?: number[] | null;
103067
103067
  /** @description Show invoices unpaid as of this date */
103068
103068
  asOfDate?: string | null;
103069
- /** @description Filter by assigned sales manager */
103070
- salesManagerId?: string | null;
103071
- /** @description Filter by customer category */
103069
+ /** @description Filter by assigned sales persons using route /api/v1/commissions/sales-persons */
103070
+ salesPersonId?: string | null;
103071
+ /** @description Filter by customer group using route api/v1/common/contact-segmentation/ and filter by type equals customer */
103072
103072
  customerGroupIds?: string[] | null;
103073
103073
  /** @description Only include customers with overdue invoices */
103074
103074
  includeOverdueOnly?: boolean;
103075
103075
  /** @description Sort customers by city or sort regions alphabetically */
103076
103076
  sortBy?: "region" | "city";
103077
- /** @description Branch filter (defaults to current branch) */
103077
+ /** @description Branch filter (only for users with access to multiple branches) */
103078
103078
  branchesIds?: string[] | null;
103079
103079
  };
103080
103080
  header?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1856",
3
+ "version": "1.0.1857",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],