kcommons 6.4.38 → 6.4.40
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 { INestedCompanyVendors } from "./companyVendors.typings";
|
|
3
4
|
import { INestedItem } from "./item.typings";
|
|
@@ -21,6 +22,8 @@ export interface ICompanyItemVendorVersionFilters {
|
|
|
21
22
|
company_id?: string | null;
|
|
22
23
|
include?: COMPANY_VENDOR_ITEM_VERSION_INCLUDE[];
|
|
23
24
|
}
|
|
25
|
+
export interface ICompanyItemVendorVersionFiltersWithPagination extends ICompanyItemVendorVersionFilters, IPaginationFilters {
|
|
26
|
+
}
|
|
24
27
|
export interface ICompanyItemVendorVersion {
|
|
25
28
|
id: string;
|
|
26
29
|
company_id: string;
|
|
@@ -79,8 +79,7 @@ export interface INestedQuote extends Omit<IQuote, "parent_rfq" | "vendor" | "sh
|
|
|
79
79
|
export declare enum QUOTE_ITEM_INCLUDES {
|
|
80
80
|
parent_quote = "parent_quote",
|
|
81
81
|
item = "item",
|
|
82
|
-
referenced_comparative_item = "referenced_comparative_item"
|
|
83
|
-
lowest_rate_for_comparative_item = "lowest_rate_for_comparative_item"
|
|
82
|
+
referenced_comparative_item = "referenced_comparative_item"
|
|
84
83
|
}
|
|
85
84
|
export interface IQuoteItems extends ITaxRelatedItemInputs {
|
|
86
85
|
quote_id: string;
|
|
@@ -35,5 +35,4 @@ var QUOTE_ITEM_INCLUDES;
|
|
|
35
35
|
QUOTE_ITEM_INCLUDES["parent_quote"] = "parent_quote";
|
|
36
36
|
QUOTE_ITEM_INCLUDES["item"] = "item";
|
|
37
37
|
QUOTE_ITEM_INCLUDES["referenced_comparative_item"] = "referenced_comparative_item";
|
|
38
|
-
QUOTE_ITEM_INCLUDES["lowest_rate_for_comparative_item"] = "lowest_rate_for_comparative_item";
|
|
39
38
|
})(QUOTE_ITEM_INCLUDES || (exports.QUOTE_ITEM_INCLUDES = QUOTE_ITEM_INCLUDES = {}));
|