kcommons 6.2.9 → 6.2.11
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,3 +1,4 @@
|
|
|
1
|
+
import { IPaginationFilters } from "./common/paginationFilters.typings";
|
|
1
2
|
import { INestedCompany } from "./company.typings";
|
|
2
3
|
import { INestedUser } from "./user.typings";
|
|
3
4
|
export declare enum CONTACT_PEOPLE_INCLUDE {
|
|
@@ -29,3 +30,5 @@ export interface IContactPeopleFilters extends Partial<Pick<IContactPeople, "is_
|
|
|
29
30
|
name?: string;
|
|
30
31
|
include?: CONTACT_PEOPLE_INCLUDE[];
|
|
31
32
|
}
|
|
33
|
+
export interface IContactPeopleFiltersWithPagination extends IContactPeopleFilters, IPaginationFilters {
|
|
34
|
+
}
|