@hiennc24/constant 1.3.58 → 1.3.60

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.
@@ -326,6 +326,10 @@ declare const COLLECTIONS: {
326
326
  SETTING_OLE_TARGET_COLLECTION_NAME: string;
327
327
  PAYSLIP_REPOSITORY_NAME: string;
328
328
  PAYSLIP_COLLECTION_NAME: string;
329
+ REQUEST_CATEGORY_REPOSITORY_NAME: string;
330
+ REQUEST_CATEGORY_COLLECTION_NAME: string;
331
+ REQUEST_PROCESS_REPOSITORY_NAME: string;
332
+ REQUEST_PROCESS_COLLECTION_NAME: string;
329
333
  PAYROLL_REPOSITORY_NAME: string;
330
334
  PAYROLL_COLLECTION_NAME: string;
331
335
  PAYROLL_DETAIL_REPOSITORY_NAME: string;
@@ -420,6 +420,11 @@ const COLLECTIONS = {
420
420
  // Payslips
421
421
  PAYSLIP_REPOSITORY_NAME: "paysLip",
422
422
  PAYSLIP_COLLECTION_NAME: "payslips",
423
+ // Request management
424
+ REQUEST_CATEGORY_REPOSITORY_NAME: "requestCategory",
425
+ REQUEST_CATEGORY_COLLECTION_NAME: "request_categories",
426
+ REQUEST_PROCESS_REPOSITORY_NAME: "requestProcess",
427
+ REQUEST_PROCESS_COLLECTION_NAME: "request_processes",
423
428
  // Payroll
424
429
  PAYROLL_REPOSITORY_NAME: "payroll",
425
430
  PAYROLL_COLLECTION_NAME: "payrolls",
@@ -834,6 +834,21 @@
834
834
  "ACTION_DELETE_MANY": "deleteMany",
835
835
  "ACTION_GET_PAGE_CHILD_ITEMS": "getPageChildItems"
836
836
  },
837
+ "API_HCM_REQUEST_CATEGORY": {
838
+ "NAME": "api-hcm.request-category",
839
+ "ACTION_CREATE": "create",
840
+ "ACTION_UPDATE": "update",
841
+ "ACTION_GET_LIST": "getList",
842
+ "ACTION_UPDATE_MANY": "updateMany",
843
+ "ACTION_GET_DETAIL": "getDetail"
844
+ },
845
+ "API_HCM_REQUEST_PROCESS": {
846
+ "NAME": "api-hcm.request-process",
847
+ "ACTION_CREATE_PROCESS": "createProcess",
848
+ "ACTION_UPDATE_PROCESS": "updateProcess",
849
+ "ACTION_GET_LIST_PROCESS_BY_CATEGORY": "getListProcessByCategory",
850
+ "ACTION_GET_PROCESS_DETAIL": "getProcessDetail"
851
+ },
837
852
  "API_HCM_PROVINCE": {
838
853
  "NAME": "api-hcm.province",
839
854
  "ACTION_GET_LIST_PROVINCE": "getListProvince"
@@ -1030,6 +1045,7 @@
1030
1045
  "ACTION_GET_PAGE": "getPage",
1031
1046
  "ACTION_CREATE": "create",
1032
1047
  "ACTION_DELETE_MANY": "deleteMany",
1048
+ "ACTION_UPDATE": "update",
1033
1049
  "ACTION_APPROVE": "approve",
1034
1050
  "ACTION_GET_EMPLOYEES_WITHOUT_OLE": "getEmployeesWithoutOLE"
1035
1051
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.3.58",
3
+ "version": "1.3.60",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {