kcommons 5.11.1 → 5.11.2

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.
@@ -1,7 +1,16 @@
1
+ import { IPaginationFilters } from "./common/paginationFilters.typings";
1
2
  import { INestedCompany } from "./company.typings";
2
3
  import { INestedCompanyVendors } from "./companyVendors.typings";
3
4
  import { INestedRFQ } from "./rfq.typings";
4
5
  import { INestedUser } from "./user.typings";
6
+ export interface IVendorGroupFilters {
7
+ name?: string;
8
+ company_id?: string;
9
+ keywords?: string[];
10
+ include?: VENDOR_GROUP_INCLUDE[];
11
+ }
12
+ export interface IVendorGroupFiltersWithPagination extends IVendorGroupFilters, IPaginationFilters {
13
+ }
5
14
  export declare enum VENDOR_GROUP_INCLUDE {
6
15
  company = "company",
7
16
  created_by_user = "created_by_user",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "5.11.1",
3
+ "version": "5.11.2",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.js",