kcommons 3.12.2 → 3.14.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 +1 -0
- package/build/index.js +1 -0
- package/build/typings/includes/department.include.d.ts +10 -1
- package/build/typings/includes/department.include.js +9 -0
- package/build/typings/includes/purchaseLocation.include.d.ts +6 -1
- package/build/typings/includes/purchaseLocation.include.js +5 -0
- package/build/typings/includes/storeLocation.include.d.ts +6 -1
- package/build/typings/includes/storeLocation.include.js +5 -0
- package/build/typings/storeInventory.include.d.ts +4 -0
- package/build/typings/storeInventory.include.js +8 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -45,3 +45,4 @@ __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
47
|
__exportStar(require("./typings/company.typings"), exports);
|
|
48
|
+
__exportStar(require("./typings/storeInventory.include"), exports);
|
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
export declare enum DepartmentInclude {
|
|
2
2
|
subdepartments = "subdepartments",
|
|
3
|
-
roles = "roles"
|
|
3
|
+
roles = "roles",
|
|
4
|
+
company = "company",
|
|
5
|
+
hod = "hod",
|
|
6
|
+
parent_office = "parent_office",
|
|
7
|
+
parent_store_location = "parent_store_location",
|
|
8
|
+
parent_purchase_location = "parent_purchase_location",
|
|
9
|
+
parent_gate = "parent_gate",
|
|
10
|
+
indents = "indents",
|
|
11
|
+
mis = "mis",
|
|
12
|
+
prs = "prs"
|
|
4
13
|
}
|
|
@@ -5,4 +5,13 @@ var DepartmentInclude;
|
|
|
5
5
|
(function (DepartmentInclude) {
|
|
6
6
|
DepartmentInclude["subdepartments"] = "subdepartments";
|
|
7
7
|
DepartmentInclude["roles"] = "roles";
|
|
8
|
+
DepartmentInclude["company"] = "company";
|
|
9
|
+
DepartmentInclude["hod"] = "hod";
|
|
10
|
+
DepartmentInclude["parent_office"] = "parent_office";
|
|
11
|
+
DepartmentInclude["parent_store_location"] = "parent_store_location";
|
|
12
|
+
DepartmentInclude["parent_purchase_location"] = "parent_purchase_location";
|
|
13
|
+
DepartmentInclude["parent_gate"] = "parent_gate";
|
|
14
|
+
DepartmentInclude["indents"] = "indents";
|
|
15
|
+
DepartmentInclude["mis"] = "mis";
|
|
16
|
+
DepartmentInclude["prs"] = "prs";
|
|
8
17
|
})(DepartmentInclude = exports.DepartmentInclude || (exports.DepartmentInclude = {}));
|
|
@@ -2,5 +2,10 @@ export declare enum PurchaseLocationInclude {
|
|
|
2
2
|
departments = "departments",
|
|
3
3
|
roles = "roles",
|
|
4
4
|
associated_offices = "associated_offices",
|
|
5
|
-
target_store_locations = "target_store_locations"
|
|
5
|
+
target_store_locations = "target_store_locations",
|
|
6
|
+
company = "company",
|
|
7
|
+
incharge = "incharge",
|
|
8
|
+
approvalConfigs = "approvalConfigs",
|
|
9
|
+
prs = "prs",
|
|
10
|
+
rfqs = "rfqs"
|
|
6
11
|
}
|
|
@@ -7,4 +7,9 @@ var PurchaseLocationInclude;
|
|
|
7
7
|
PurchaseLocationInclude["roles"] = "roles";
|
|
8
8
|
PurchaseLocationInclude["associated_offices"] = "associated_offices";
|
|
9
9
|
PurchaseLocationInclude["target_store_locations"] = "target_store_locations";
|
|
10
|
+
PurchaseLocationInclude["company"] = "company";
|
|
11
|
+
PurchaseLocationInclude["incharge"] = "incharge";
|
|
12
|
+
PurchaseLocationInclude["approvalConfigs"] = "approvalConfigs";
|
|
13
|
+
PurchaseLocationInclude["prs"] = "prs";
|
|
14
|
+
PurchaseLocationInclude["rfqs"] = "rfqs";
|
|
10
15
|
})(PurchaseLocationInclude = exports.PurchaseLocationInclude || (exports.PurchaseLocationInclude = {}));
|
|
@@ -4,5 +4,10 @@ export declare enum StoreLocationInclude {
|
|
|
4
4
|
departments = "departments",
|
|
5
5
|
roles = "roles",
|
|
6
6
|
target_offices = "target_offices",
|
|
7
|
-
served_by_purchase_locations = "served_by_purchase_locations"
|
|
7
|
+
served_by_purchase_locations = "served_by_purchase_locations",
|
|
8
|
+
company = "company",
|
|
9
|
+
store_incharge = "store_incharge",
|
|
10
|
+
indents = "indents",
|
|
11
|
+
mis = "mis",
|
|
12
|
+
as_shipping_location_for_rfqs = "as_shipping_location_for_rfqs"
|
|
8
13
|
}
|
|
@@ -9,4 +9,9 @@ var StoreLocationInclude;
|
|
|
9
9
|
StoreLocationInclude["roles"] = "roles";
|
|
10
10
|
StoreLocationInclude["target_offices"] = "target_offices";
|
|
11
11
|
StoreLocationInclude["served_by_purchase_locations"] = "served_by_purchase_locations";
|
|
12
|
+
StoreLocationInclude["company"] = "company";
|
|
13
|
+
StoreLocationInclude["store_incharge"] = "store_incharge";
|
|
14
|
+
StoreLocationInclude["indents"] = "indents";
|
|
15
|
+
StoreLocationInclude["mis"] = "mis";
|
|
16
|
+
StoreLocationInclude["as_shipping_location_for_rfqs"] = "as_shipping_location_for_rfqs";
|
|
12
17
|
})(StoreLocationInclude = exports.StoreLocationInclude || (exports.StoreLocationInclude = {}));
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.STORE_INVENTORY_INCLUDE = void 0;
|
|
4
|
+
var STORE_INVENTORY_INCLUDE;
|
|
5
|
+
(function (STORE_INVENTORY_INCLUDE) {
|
|
6
|
+
STORE_INVENTORY_INCLUDE["store"] = "store";
|
|
7
|
+
STORE_INVENTORY_INCLUDE["item"] = "item";
|
|
8
|
+
})(STORE_INVENTORY_INCLUDE = exports.STORE_INVENTORY_INCLUDE || (exports.STORE_INVENTORY_INCLUDE = {}));
|