kcommons 9.22.0 → 9.23.1
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 { INestedComparative, INestedComparativeItem } from "./comparative.typings";
|
|
3
4
|
import { ITaxRelatedItemInputs } from "./docItems.typings";
|
|
@@ -101,3 +102,9 @@ export interface IQUOTE_TOKEN_PAYLOAD {
|
|
|
101
102
|
}
|
|
102
103
|
export interface IOPEN_QUOTE_TOKEN_PAYLOAD extends Pick<IQUOTE_TOKEN_PAYLOAD, "quote_id">, Pick<IVENDOR_TOKEN_PAYLOAD, "id"> {
|
|
103
104
|
}
|
|
105
|
+
export interface IQuoteFilters {
|
|
106
|
+
company_id?: string;
|
|
107
|
+
include?: QUOTE_INCLUDES[];
|
|
108
|
+
}
|
|
109
|
+
export interface IQuoteFiltersWithPagination extends IPaginationFilters, IQuoteFilters {
|
|
110
|
+
}
|