kcommons 3.10.0 → 3.12.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.
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -44,3 +44,4 @@ __exportStar(require("./typings/pr/pr_priority"), exports);
|
|
|
44
44
|
__exportStar(require("./typings/dept-type/deptType.typings"), exports);
|
|
45
45
|
__exportStar(require("./typings/mi/mi.typings"), exports);
|
|
46
46
|
__exportStar(require("./typings/rfq.typings"), exports);
|
|
47
|
+
__exportStar(require("./typings/company.typings"), exports);
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare enum COMPANY_INCLUDE {
|
|
2
|
+
contact_person = "contact_person",
|
|
3
|
+
associated_purchase_locations = "associated_purchase_locations",
|
|
4
|
+
associated_vendors = "associated_vendors",
|
|
5
|
+
associated_permissions = "associated_permissions",
|
|
6
|
+
associated_roles = "associated_roles",
|
|
7
|
+
approval_configs = "approval_configs",
|
|
8
|
+
subdepartments = "subdepartments",
|
|
9
|
+
subcategories = "subcategories",
|
|
10
|
+
categories = "categories",
|
|
11
|
+
items = "items",
|
|
12
|
+
offices = "offices",
|
|
13
|
+
stores = "stores",
|
|
14
|
+
employees = "employees",
|
|
15
|
+
departments = "departments",
|
|
16
|
+
vendor_groups = "vendor_groups",
|
|
17
|
+
company_indents = "company_indents",
|
|
18
|
+
indent_items = "indent_items",
|
|
19
|
+
company_mis = "company_mis",
|
|
20
|
+
mi_items = "mi_items",
|
|
21
|
+
company_prs = "company_prs",
|
|
22
|
+
pr_items = "pr_items",
|
|
23
|
+
company_rfqs = "company_rfqs",
|
|
24
|
+
company_quotes = "company_quotes",
|
|
25
|
+
entity_approval_chain_entries = "entity_approval_chain_entries"
|
|
26
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.COMPANY_INCLUDE = void 0;
|
|
4
|
+
var COMPANY_INCLUDE;
|
|
5
|
+
(function (COMPANY_INCLUDE) {
|
|
6
|
+
COMPANY_INCLUDE["contact_person"] = "contact_person";
|
|
7
|
+
COMPANY_INCLUDE["associated_purchase_locations"] = "associated_purchase_locations";
|
|
8
|
+
COMPANY_INCLUDE["associated_vendors"] = "associated_vendors";
|
|
9
|
+
COMPANY_INCLUDE["associated_permissions"] = "associated_permissions";
|
|
10
|
+
COMPANY_INCLUDE["associated_roles"] = "associated_roles";
|
|
11
|
+
COMPANY_INCLUDE["approval_configs"] = "approval_configs";
|
|
12
|
+
COMPANY_INCLUDE["subdepartments"] = "subdepartments";
|
|
13
|
+
COMPANY_INCLUDE["subcategories"] = "subcategories";
|
|
14
|
+
COMPANY_INCLUDE["categories"] = "categories";
|
|
15
|
+
COMPANY_INCLUDE["items"] = "items";
|
|
16
|
+
COMPANY_INCLUDE["offices"] = "offices";
|
|
17
|
+
COMPANY_INCLUDE["stores"] = "stores";
|
|
18
|
+
COMPANY_INCLUDE["employees"] = "employees";
|
|
19
|
+
COMPANY_INCLUDE["departments"] = "departments";
|
|
20
|
+
COMPANY_INCLUDE["vendor_groups"] = "vendor_groups";
|
|
21
|
+
COMPANY_INCLUDE["company_indents"] = "company_indents";
|
|
22
|
+
COMPANY_INCLUDE["indent_items"] = "indent_items";
|
|
23
|
+
COMPANY_INCLUDE["company_mis"] = "company_mis";
|
|
24
|
+
COMPANY_INCLUDE["mi_items"] = "mi_items";
|
|
25
|
+
COMPANY_INCLUDE["company_prs"] = "company_prs";
|
|
26
|
+
COMPANY_INCLUDE["pr_items"] = "pr_items";
|
|
27
|
+
COMPANY_INCLUDE["company_rfqs"] = "company_rfqs";
|
|
28
|
+
COMPANY_INCLUDE["company_quotes"] = "company_quotes";
|
|
29
|
+
COMPANY_INCLUDE["entity_approval_chain_entries"] = "entity_approval_chain_entries";
|
|
30
|
+
})(COMPANY_INCLUDE = exports.COMPANY_INCLUDE || (exports.COMPANY_INCLUDE = {}));
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RFQ_ITEM_TYPE = exports.RFQ_STATUS = exports.RFQ_INCLUDES = void 0;
|
|
3
|
+
exports.BIDDING_TYPES = exports.RFQ_ITEM_TYPE = exports.RFQ_STATUS = exports.RFQ_INCLUDES = void 0;
|
|
4
4
|
var RFQ_INCLUDES;
|
|
5
5
|
(function (RFQ_INCLUDES) {
|
|
6
6
|
RFQ_INCLUDES["approval_chain"] = "approval_chain";
|
|
@@ -21,3 +21,8 @@ var RFQ_ITEM_TYPE;
|
|
|
21
21
|
RFQ_ITEM_TYPE["PR_ASCENDANT"] = "pr_ascendant";
|
|
22
22
|
RFQ_ITEM_TYPE["EXTRA"] = "extra";
|
|
23
23
|
})(RFQ_ITEM_TYPE = exports.RFQ_ITEM_TYPE || (exports.RFQ_ITEM_TYPE = {}));
|
|
24
|
+
var BIDDING_TYPES;
|
|
25
|
+
(function (BIDDING_TYPES) {
|
|
26
|
+
BIDDING_TYPES["OPEN"] = "open_bidding";
|
|
27
|
+
BIDDING_TYPES["CLOSED"] = "closed_bidding";
|
|
28
|
+
})(BIDDING_TYPES = exports.BIDDING_TYPES || (exports.BIDDING_TYPES = {}));
|