@hiennc24/constant 1.3.29 → 1.3.32

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.
@@ -312,6 +312,8 @@ declare const COLLECTIONS: {
312
312
  PAYCHECK_SETTING_COLLECTION_NAME: string;
313
313
  PAYCHECK_EMPLOYEE_REPOSITORY_NAME: string;
314
314
  PAYCHECK_EMPLOYEE_COLLECTION_NAME: string;
315
+ OLE_REPOSITORY_NAME: string;
316
+ OLE_COLLECTION_NAME: string;
315
317
  SALARY_COMPONENT_REPOSITORY_NAME: string;
316
318
  SALARY_COMPONENT_COLLECTION_NAME: string;
317
319
  HCM_SETTING_REPOSITORY_NAME: string;
@@ -326,6 +328,8 @@ declare const COLLECTIONS: {
326
328
  PAYROLL_DETAIL_COLLECTION_NAME: string;
327
329
  PAYROLL_ADVANCE_REPOSITORY_NAME: string;
328
330
  PAYROLL_ADVANCE_COLLECTION_NAME: string;
331
+ PAYROLL_ADVANCE_DETAIL_REPOSITORY_NAME: string;
332
+ PAYROLL_ADVANCE_DETAIL_COLLECTION_NAME: string;
329
333
  BONUS_ITEM_REPOSITORY_NAME: string;
330
334
  BONUS_ITEM_COLLECTION_NAME: string;
331
335
  BONUS_RANGE_REPOSITORY_NAME: string;
@@ -402,6 +402,8 @@ const COLLECTIONS = {
402
402
  PAYCHECK_SETTING_COLLECTION_NAME: "paycheck_settings",
403
403
  PAYCHECK_EMPLOYEE_REPOSITORY_NAME: "paycheckEmployee",
404
404
  PAYCHECK_EMPLOYEE_COLLECTION_NAME: "paycheck_employees",
405
+ OLE_REPOSITORY_NAME: "ole",
406
+ OLE_COLLECTION_NAME: "oles",
405
407
  // Salary Component
406
408
  SALARY_COMPONENT_REPOSITORY_NAME: "salaryComponent",
407
409
  SALARY_COMPONENT_COLLECTION_NAME: "salary_components",
@@ -419,6 +421,8 @@ const COLLECTIONS = {
419
421
  PAYROLL_DETAIL_COLLECTION_NAME: "payroll_details",
420
422
  PAYROLL_ADVANCE_REPOSITORY_NAME: "payrollAdvance",
421
423
  PAYROLL_ADVANCE_COLLECTION_NAME: "payroll_advances",
424
+ PAYROLL_ADVANCE_DETAIL_REPOSITORY_NAME: "payrollAdvanceDetail",
425
+ PAYROLL_ADVANCE_DETAIL_COLLECTION_NAME: "payroll_advance_details",
422
426
  // Bonus Mechanism
423
427
  BONUS_ITEM_REPOSITORY_NAME: "bonusItem",
424
428
  BONUS_ITEM_COLLECTION_NAME: "bonus_items",
@@ -926,6 +926,15 @@
926
926
  "ACTION_UPDATE_STATUS": "updateStatus",
927
927
  "ACTION_DELETE_MANY": "deleteMany"
928
928
  },
929
+ "API_HCM_PAYROLL_ADVANCE_DETAILS": {
930
+ "NAME": "api-hcm.payroll-advance-details",
931
+ "ACTION_GET_LIST": "getList",
932
+ "ACTION_GET_DETAIL": "getDetail",
933
+ "ACTION_CREATE": "create",
934
+ "ACTION_UPDATE": "update",
935
+ "ACTION_UPDATE_MANY": "updateMany",
936
+ "ACTION_DELETE_MANY": "deleteMany"
937
+ },
929
938
  "API_HCM_PAYROLL": {
930
939
  "NAME": "api-hcm.payrolls",
931
940
  "ACTION_GET_LIST": "getList",
@@ -961,7 +970,15 @@
961
970
  "ACTION_CONFIRM_PAYCHECK": "confirmPaycheck",
962
971
  "ACTION_CONFIRM_PAYCHECK_WORKSPACE": "confirmPaycheckWorkspace",
963
972
  "ACTION_STATISTICS": "statistics",
964
- "ACTION_DOWNLOAD": "download"
973
+ "ACTION_DOWNLOAD": "download",
974
+ "ACTION_CREATE_MANY": "createMany"
975
+ },
976
+ "API_HCM_OLE": {
977
+ "NAME": "api-hcm.oles",
978
+ "ACTION_GET_PAGE": "getPage",
979
+ "ACTION_CREATE": "create",
980
+ "ACTION_DELETE_MANY": "deleteMany",
981
+ "ACTION_APPROVE": "approve"
965
982
  },
966
983
  "API_HCM_PAYCHECK_SETTINGS": {
967
984
  "NAME": "api-hcm.paycheckSettings",
@@ -1328,6 +1345,7 @@
1328
1345
  "ACTION_GET_LIST_DEPARTMENT": "getListDepartment",
1329
1346
  "ACTION_CREATE_DEPARTMENT": "createDepartment",
1330
1347
  "ACTION_CLONE_DEPARTMENT": "cloneDepartment",
1348
+ "ACTION_GET_DEPARTMENT_LISTS_FOR_EMPLOYEE": "getDepartmentListsForEmployee",
1331
1349
  "ACTION_GET_DEPARTMENT_FLAT_LISTS": "getDepartmentFlatLists",
1332
1350
  "ACTION_GET_TREE_DEPARTMENTS": "getTreeDepartments",
1333
1351
  "ACTION_GET_DEPARTMENT_DETAIL": "getDepartmentDetail",
@@ -1336,14 +1354,10 @@
1336
1354
  "ACTION_CHANGE_COLOR_DEPARTMENTS": "changeColorDepartments",
1337
1355
  "ACTION_DELETE_DEPARTMENT": "deleteDepartment",
1338
1356
  "ACTION_UPDATE_DEPARTMENT": "updateDepartment",
1339
- "ACTION_GET_LIST_BY_POSITION": "getListByPosition",
1340
- "ACTION_GET_LIST_BY_POSITION_LIST": "getListDepartmentByPositionList",
1341
- "ACTION_GET_DEPARTMENT_LISTS_FOR_EMPLOYEE": "getDepartmentListsForEmployee",
1342
- "ACTION_VALIDATE_DEPARTMENT_POSITION_EMPLOYEES": "validateDepartmentPositionEmployees"
1357
+ "ACTION_GET_LIST_BY_POSITION": "getListByPosition"
1343
1358
  },
1344
1359
  "SVC_ORGANIZATION_POSITIONS": {
1345
1360
  "NAME": "svc-organization.positions",
1346
- "ACTION_GET_LIST_BY_DEPARTMENT_LIST": "getPositionListByDepartmentList",
1347
1361
  "ACTION_GET_LIST_BY_DEPARTMENT": "getListByDepartment",
1348
1362
  "ACTION_GET_DETAIL": "getDetail",
1349
1363
  "ACTION_GET_LIST": "getList",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.3.29",
3
+ "version": "1.3.32",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {