@hiennc24/constant 1.3.30 → 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.
|
@@ -56,8 +56,6 @@ declare const COLLECTIONS: {
|
|
|
56
56
|
EMPLOYEE_PROFILE_COLLECTION_NAME: string;
|
|
57
57
|
EMPLOYEE_HISTORY_REPOSITORY_NAME: string;
|
|
58
58
|
EMPLOYEE_HISTORY_COLLECTION_NAME: string;
|
|
59
|
-
EMPLOYEE_CHANGE_HISTORY_REPOSITORY_NAME: string;
|
|
60
|
-
EMPLOYEE_CHANGE_HISTORY_COLLECTION_NAME: string;
|
|
61
59
|
EMPLOYEE_SETTING_REPOSITORY_NAME: string;
|
|
62
60
|
EMPLOYEE_SETTING_COLLECTION_NAME: string;
|
|
63
61
|
ORGANIZATION_REPOSITORY_NAME: string;
|
|
@@ -314,6 +312,8 @@ declare const COLLECTIONS: {
|
|
|
314
312
|
PAYCHECK_SETTING_COLLECTION_NAME: string;
|
|
315
313
|
PAYCHECK_EMPLOYEE_REPOSITORY_NAME: string;
|
|
316
314
|
PAYCHECK_EMPLOYEE_COLLECTION_NAME: string;
|
|
315
|
+
OLE_REPOSITORY_NAME: string;
|
|
316
|
+
OLE_COLLECTION_NAME: string;
|
|
317
317
|
SALARY_COMPONENT_REPOSITORY_NAME: string;
|
|
318
318
|
SALARY_COMPONENT_COLLECTION_NAME: string;
|
|
319
319
|
HCM_SETTING_REPOSITORY_NAME: string;
|
|
@@ -328,6 +328,8 @@ declare const COLLECTIONS: {
|
|
|
328
328
|
PAYROLL_DETAIL_COLLECTION_NAME: string;
|
|
329
329
|
PAYROLL_ADVANCE_REPOSITORY_NAME: string;
|
|
330
330
|
PAYROLL_ADVANCE_COLLECTION_NAME: string;
|
|
331
|
+
PAYROLL_ADVANCE_DETAIL_REPOSITORY_NAME: string;
|
|
332
|
+
PAYROLL_ADVANCE_DETAIL_COLLECTION_NAME: string;
|
|
331
333
|
BONUS_ITEM_REPOSITORY_NAME: string;
|
|
332
334
|
BONUS_ITEM_COLLECTION_NAME: string;
|
|
333
335
|
BONUS_RANGE_REPOSITORY_NAME: string;
|
|
@@ -74,8 +74,6 @@ const COLLECTIONS = {
|
|
|
74
74
|
EMPLOYEE_PROFILE_COLLECTION_NAME: "employee_profiles",
|
|
75
75
|
EMPLOYEE_HISTORY_REPOSITORY_NAME: "employeeHistory",
|
|
76
76
|
EMPLOYEE_HISTORY_COLLECTION_NAME: "employee_histories",
|
|
77
|
-
EMPLOYEE_CHANGE_HISTORY_REPOSITORY_NAME: "employeeChangeHistory",
|
|
78
|
-
EMPLOYEE_CHANGE_HISTORY_COLLECTION_NAME: "employee_change_histories",
|
|
79
77
|
EMPLOYEE_SETTING_REPOSITORY_NAME: "employeeSetting",
|
|
80
78
|
EMPLOYEE_SETTING_COLLECTION_NAME: "employee_settings",
|
|
81
79
|
// Organization
|
|
@@ -404,6 +402,8 @@ const COLLECTIONS = {
|
|
|
404
402
|
PAYCHECK_SETTING_COLLECTION_NAME: "paycheck_settings",
|
|
405
403
|
PAYCHECK_EMPLOYEE_REPOSITORY_NAME: "paycheckEmployee",
|
|
406
404
|
PAYCHECK_EMPLOYEE_COLLECTION_NAME: "paycheck_employees",
|
|
405
|
+
OLE_REPOSITORY_NAME: "ole",
|
|
406
|
+
OLE_COLLECTION_NAME: "oles",
|
|
407
407
|
// Salary Component
|
|
408
408
|
SALARY_COMPONENT_REPOSITORY_NAME: "salaryComponent",
|
|
409
409
|
SALARY_COMPONENT_COLLECTION_NAME: "salary_components",
|
|
@@ -421,6 +421,8 @@ const COLLECTIONS = {
|
|
|
421
421
|
PAYROLL_DETAIL_COLLECTION_NAME: "payroll_details",
|
|
422
422
|
PAYROLL_ADVANCE_REPOSITORY_NAME: "payrollAdvance",
|
|
423
423
|
PAYROLL_ADVANCE_COLLECTION_NAME: "payroll_advances",
|
|
424
|
+
PAYROLL_ADVANCE_DETAIL_REPOSITORY_NAME: "payrollAdvanceDetail",
|
|
425
|
+
PAYROLL_ADVANCE_DETAIL_COLLECTION_NAME: "payroll_advance_details",
|
|
424
426
|
// Bonus Mechanism
|
|
425
427
|
BONUS_ITEM_REPOSITORY_NAME: "bonusItem",
|
|
426
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",
|
|
@@ -1303,12 +1320,6 @@
|
|
|
1303
1320
|
"ACTION_CREATE": "create",
|
|
1304
1321
|
"ACTION_COUNT": "count"
|
|
1305
1322
|
},
|
|
1306
|
-
"SVC_ORGANIZATION_EMPLOYEE_CHANGE_HISTORIES": {
|
|
1307
|
-
"NAME": "svc-organization.employee-change-histories",
|
|
1308
|
-
"ACTION_GET_LIST": "getList",
|
|
1309
|
-
"ACTION_GET_CRITICAL_CHANGES": "getCriticalChanges",
|
|
1310
|
-
"ACTION_GET_ANALYTICS_CHANGES": "getAnalyticsChange"
|
|
1311
|
-
},
|
|
1312
1323
|
"SVC_ORGANIZATION_EMPLOYEE_HISTORIES": {
|
|
1313
1324
|
"NAME": "svc-organization.employee-histories"
|
|
1314
1325
|
},
|
|
@@ -1334,6 +1345,7 @@
|
|
|
1334
1345
|
"ACTION_GET_LIST_DEPARTMENT": "getListDepartment",
|
|
1335
1346
|
"ACTION_CREATE_DEPARTMENT": "createDepartment",
|
|
1336
1347
|
"ACTION_CLONE_DEPARTMENT": "cloneDepartment",
|
|
1348
|
+
"ACTION_GET_DEPARTMENT_LISTS_FOR_EMPLOYEE": "getDepartmentListsForEmployee",
|
|
1337
1349
|
"ACTION_GET_DEPARTMENT_FLAT_LISTS": "getDepartmentFlatLists",
|
|
1338
1350
|
"ACTION_GET_TREE_DEPARTMENTS": "getTreeDepartments",
|
|
1339
1351
|
"ACTION_GET_DEPARTMENT_DETAIL": "getDepartmentDetail",
|
|
@@ -1342,14 +1354,10 @@
|
|
|
1342
1354
|
"ACTION_CHANGE_COLOR_DEPARTMENTS": "changeColorDepartments",
|
|
1343
1355
|
"ACTION_DELETE_DEPARTMENT": "deleteDepartment",
|
|
1344
1356
|
"ACTION_UPDATE_DEPARTMENT": "updateDepartment",
|
|
1345
|
-
"ACTION_GET_LIST_BY_POSITION": "getListByPosition"
|
|
1346
|
-
"ACTION_GET_LIST_BY_POSITION_LIST": "getListDepartmentByPositionList",
|
|
1347
|
-
"ACTION_GET_DEPARTMENT_LISTS_FOR_EMPLOYEE": "getDepartmentListsForEmployee",
|
|
1348
|
-
"ACTION_VALIDATE_DEPARTMENT_POSITION_EMPLOYEES": "validateDepartmentPositionEmployees"
|
|
1357
|
+
"ACTION_GET_LIST_BY_POSITION": "getListByPosition"
|
|
1349
1358
|
},
|
|
1350
1359
|
"SVC_ORGANIZATION_POSITIONS": {
|
|
1351
1360
|
"NAME": "svc-organization.positions",
|
|
1352
|
-
"ACTION_GET_LIST_BY_DEPARTMENT_LIST": "getPositionListByDepartmentList",
|
|
1353
1361
|
"ACTION_GET_LIST_BY_DEPARTMENT": "getListByDepartment",
|
|
1354
1362
|
"ACTION_GET_DETAIL": "getDetail",
|
|
1355
1363
|
"ACTION_GET_LIST": "getList",
|