kcommons 6.4.34 → 6.4.35
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.
|
@@ -17,6 +17,9 @@ export declare enum QUOTE_STATUS {
|
|
|
17
17
|
PENDING = "PENDING",
|
|
18
18
|
QUOTED = "QUOTED"
|
|
19
19
|
}
|
|
20
|
+
export declare enum QUOTE_META_INCLUDES {
|
|
21
|
+
rank = "rank"
|
|
22
|
+
}
|
|
20
23
|
export declare enum QUOTE_INCLUDES {
|
|
21
24
|
parent_rfq = "parent_rfq",
|
|
22
25
|
contact_person = "contact_person",
|
|
@@ -29,6 +32,9 @@ export declare enum QUOTE_INCLUDES {
|
|
|
29
32
|
negotiations = "negotiations",
|
|
30
33
|
comparative = "comparative"
|
|
31
34
|
}
|
|
35
|
+
export interface IQuoteMetaFields {
|
|
36
|
+
rank?: number | null;
|
|
37
|
+
}
|
|
32
38
|
export interface IQuote {
|
|
33
39
|
id: string;
|
|
34
40
|
quote_type: QUOTE_TYPE;
|
|
@@ -64,6 +70,7 @@ export interface IQuote {
|
|
|
64
70
|
taxes: INestedDocumentTaxes[] | null;
|
|
65
71
|
child_pos: INestedPo[] | null;
|
|
66
72
|
negotiations: INestedNegotiation[] | null;
|
|
73
|
+
meta_fields?: IQuoteMetaFields | null;
|
|
67
74
|
}
|
|
68
75
|
export interface INestedQuote extends Omit<IQuote, "parent_rfq" | "vendor" | "shipping_store_location" | "contact_person" | "company" | "items" | "taxes" | "child_pos" | "negotiaitons" | "comparative"> {
|
|
69
76
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.QUOTE_ITEM_INCLUDES = exports.QUOTE_INCLUDES = exports.QUOTE_STATUS = exports.QUOTE_TYPE = void 0;
|
|
3
|
+
exports.QUOTE_ITEM_INCLUDES = exports.QUOTE_INCLUDES = exports.QUOTE_META_INCLUDES = exports.QUOTE_STATUS = exports.QUOTE_TYPE = void 0;
|
|
4
4
|
var QUOTE_TYPE;
|
|
5
5
|
(function (QUOTE_TYPE) {
|
|
6
6
|
QUOTE_TYPE["RFQ_ASCENDANT"] = "RFQ_ASCENDANT";
|
|
@@ -11,6 +11,10 @@ var QUOTE_STATUS;
|
|
|
11
11
|
QUOTE_STATUS["PENDING"] = "PENDING";
|
|
12
12
|
QUOTE_STATUS["QUOTED"] = "QUOTED";
|
|
13
13
|
})(QUOTE_STATUS || (exports.QUOTE_STATUS = QUOTE_STATUS = {}));
|
|
14
|
+
var QUOTE_META_INCLUDES;
|
|
15
|
+
(function (QUOTE_META_INCLUDES) {
|
|
16
|
+
QUOTE_META_INCLUDES["rank"] = "rank";
|
|
17
|
+
})(QUOTE_META_INCLUDES || (exports.QUOTE_META_INCLUDES = QUOTE_META_INCLUDES = {}));
|
|
14
18
|
var QUOTE_INCLUDES;
|
|
15
19
|
(function (QUOTE_INCLUDES) {
|
|
16
20
|
QUOTE_INCLUDES["parent_rfq"] = "parent_rfq";
|