@hiennc24/constant 1.4.5 → 1.4.7
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.
|
@@ -58,6 +58,8 @@ declare const COLLECTIONS: {
|
|
|
58
58
|
EMPLOYEE_HISTORY_COLLECTION_NAME: string;
|
|
59
59
|
EMPLOYEE_SETTING_REPOSITORY_NAME: string;
|
|
60
60
|
EMPLOYEE_SETTING_COLLECTION_NAME: string;
|
|
61
|
+
EMPLOYEE_CHANGE_HISTORY_REPOSITORY_NAME: string;
|
|
62
|
+
EMPLOYEE_CHANGE_HISTORY_COLLECTION_NAME: string;
|
|
61
63
|
ORGANIZATION_REPOSITORY_NAME: string;
|
|
62
64
|
ORGANIZATION_COLLECTION_NAME: string;
|
|
63
65
|
DEPARTMENT_REPOSITORY_NAME: string;
|
|
@@ -326,6 +328,8 @@ declare const COLLECTIONS: {
|
|
|
326
328
|
SETTING_SALARY_COLLECTION_NAME: string;
|
|
327
329
|
SETTING_TAX_REPOSITORY_NAME: string;
|
|
328
330
|
SETTING_TAX_COLLECTION_NAME: string;
|
|
331
|
+
SETTING_LEAVE_REPOSITORY_NAME: string;
|
|
332
|
+
SETTING_LEAVE_COLLECTION_NAME: string;
|
|
329
333
|
SETTING_OLE_TARGET_REPOSITORY_NAME: string;
|
|
330
334
|
SETTING_OLE_TARGET_COLLECTION_NAME: string;
|
|
331
335
|
PAYSLIP_REPOSITORY_NAME: string;
|
|
@@ -76,6 +76,8 @@ const COLLECTIONS = {
|
|
|
76
76
|
EMPLOYEE_HISTORY_COLLECTION_NAME: "employee_histories",
|
|
77
77
|
EMPLOYEE_SETTING_REPOSITORY_NAME: "employeeSetting",
|
|
78
78
|
EMPLOYEE_SETTING_COLLECTION_NAME: "employee_settings",
|
|
79
|
+
EMPLOYEE_CHANGE_HISTORY_REPOSITORY_NAME: "employeeChangeHistory",
|
|
80
|
+
EMPLOYEE_CHANGE_HISTORY_COLLECTION_NAME: "employee_change_histories",
|
|
79
81
|
// Organization
|
|
80
82
|
ORGANIZATION_REPOSITORY_NAME: "organization",
|
|
81
83
|
ORGANIZATION_COLLECTION_NAME: "organizations",
|
|
@@ -418,6 +420,8 @@ const COLLECTIONS = {
|
|
|
418
420
|
SETTING_SALARY_COLLECTION_NAME: "setting_salaries",
|
|
419
421
|
SETTING_TAX_REPOSITORY_NAME: "settingTax",
|
|
420
422
|
SETTING_TAX_COLLECTION_NAME: "setting_taxes",
|
|
423
|
+
SETTING_LEAVE_REPOSITORY_NAME: "settingLeave",
|
|
424
|
+
SETTING_LEAVE_COLLECTION_NAME: "setting_leaves",
|
|
421
425
|
// Salary Component
|
|
422
426
|
SETTING_OLE_TARGET_REPOSITORY_NAME: "settingOleTarget",
|
|
423
427
|
SETTING_OLE_TARGET_COLLECTION_NAME: "setting_ole_targets",
|
|
@@ -1115,6 +1115,15 @@
|
|
|
1115
1115
|
"ACTION_DELETE_MANY": "deleteMany",
|
|
1116
1116
|
"ACTION_SYNC_EMPLOYEE": "syncEmployee"
|
|
1117
1117
|
},
|
|
1118
|
+
"API_HCM_SETTING_LEAVE": {
|
|
1119
|
+
"NAME": "api-hcm.setting-leave",
|
|
1120
|
+
"ACTION_GET_LIST_BY_EMPLOYEE": "getListByEmployee",
|
|
1121
|
+
"ACTION_GET_LIST": "getList",
|
|
1122
|
+
"ACTION_GET_DETAIL": "getDetail",
|
|
1123
|
+
"ACTION_CREATE": "create",
|
|
1124
|
+
"ACTION_UPDATE": "update",
|
|
1125
|
+
"ACTION_DELETE_MANY": "deleteMany"
|
|
1126
|
+
},
|
|
1118
1127
|
"API_HCM_BONUS_ITEMS": {
|
|
1119
1128
|
"NAME": "api-hcm.bonusItems",
|
|
1120
1129
|
"ACTION_GET_PAGE_SPREADSHEET_VIEW": "getPageSpreadsheetView",
|
|
@@ -1413,6 +1422,12 @@
|
|
|
1413
1422
|
"ACTION_CREATE": "create",
|
|
1414
1423
|
"ACTION_COUNT": "count"
|
|
1415
1424
|
},
|
|
1425
|
+
"SVC_ORGANIZATION_EMPLOYEE_CHANGE_HISTORIES": {
|
|
1426
|
+
"NAME": "svc-organization.employee-change-histories",
|
|
1427
|
+
"ACTION_GET_LIST": "getList",
|
|
1428
|
+
"ACTION_GET_CRITICAL_CHANGES": "getCriticalChanges",
|
|
1429
|
+
"ACTION_GET_ANALYTICS_CHANGES": "getAnalyticsChange"
|
|
1430
|
+
},
|
|
1416
1431
|
"SVC_ORGANIZATION_EMPLOYEE_HISTORIES": {
|
|
1417
1432
|
"NAME": "svc-organization.employee-histories"
|
|
1418
1433
|
},
|