kcommons 5.22.0 → 5.22.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.
|
@@ -18,6 +18,11 @@ export interface IRFQFilters {
|
|
|
18
18
|
include?: RFQ_INCLUDES[];
|
|
19
19
|
name?: string;
|
|
20
20
|
}
|
|
21
|
+
export declare enum RFQVendorType {
|
|
22
|
+
DIRECT = "DIRECT",
|
|
23
|
+
VENDOR_GROUP = "VENDOR_GROUP",
|
|
24
|
+
ADDITIONAL_VENDORS = "ADDITIONAL_VENDORS"
|
|
25
|
+
}
|
|
21
26
|
export interface IRFQFiltersWithPagination extends IPaginationFilters, IRFQFilters {
|
|
22
27
|
}
|
|
23
28
|
export declare enum RFQ_INCLUDES {
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RFQ_BOM_INCLUDE = exports.RFQ_ITEM_INCLUDE = exports.BIDDING_TYPES = exports.RFQ_ITEM_TYPE = exports.RFQ_STATUS = exports.RFQ_INCLUDES = void 0;
|
|
3
|
+
exports.RFQ_BOM_INCLUDE = exports.RFQ_ITEM_INCLUDE = exports.BIDDING_TYPES = exports.RFQ_ITEM_TYPE = exports.RFQ_STATUS = exports.RFQ_INCLUDES = exports.RFQVendorType = void 0;
|
|
4
|
+
var RFQVendorType;
|
|
5
|
+
(function (RFQVendorType) {
|
|
6
|
+
RFQVendorType["DIRECT"] = "DIRECT";
|
|
7
|
+
RFQVendorType["VENDOR_GROUP"] = "VENDOR_GROUP";
|
|
8
|
+
RFQVendorType["ADDITIONAL_VENDORS"] = "ADDITIONAL_VENDORS";
|
|
9
|
+
})(RFQVendorType || (exports.RFQVendorType = RFQVendorType = {}));
|
|
4
10
|
var RFQ_INCLUDES;
|
|
5
11
|
(function (RFQ_INCLUDES) {
|
|
6
12
|
RFQ_INCLUDES["company"] = "company";
|