kcommons 9.47.0 → 9.48.0
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.
|
@@ -9,7 +9,7 @@ import { INestedPo } from "./po.typings";
|
|
|
9
9
|
import { INestedRFQ, INestedRFQItem } from "./rfq.typings";
|
|
10
10
|
import { INestedStoreLocation } from "./storeLocation.typings";
|
|
11
11
|
import { INestedUser } from "./user.typings";
|
|
12
|
-
import { INestedVendor
|
|
12
|
+
import { INestedVendor } from "./vendor.typings";
|
|
13
13
|
export declare enum QUOTE_TYPE {
|
|
14
14
|
RFQ_ASCENDANT = "RFQ_ASCENDANT",
|
|
15
15
|
DIRECT = "DIRECT"
|
|
@@ -97,11 +97,9 @@ export interface IQuoteItems extends ITaxRelatedItemInputs {
|
|
|
97
97
|
}
|
|
98
98
|
export interface INestedQuoteItems extends Omit<IQuoteItems, "quote" | "item" | "rfq_item" | "referenced_comparative_item"> {
|
|
99
99
|
}
|
|
100
|
-
export interface
|
|
100
|
+
export interface IOPEN_QUOTE_TOKEN_PAYLOAD {
|
|
101
101
|
quote_id: string;
|
|
102
102
|
}
|
|
103
|
-
export interface IOPEN_QUOTE_TOKEN_PAYLOAD extends Pick<IQUOTE_TOKEN_PAYLOAD, "quote_id">, Pick<IVENDOR_TOKEN_PAYLOAD, "id"> {
|
|
104
|
-
}
|
|
105
103
|
export interface IQuoteFilters {
|
|
106
104
|
company_id?: string;
|
|
107
105
|
include?: QUOTE_INCLUDES[];
|