@hiennc24/constant 1.3.48 → 1.3.50

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.
@@ -322,6 +322,8 @@ declare const COLLECTIONS: {
322
322
  SETTING_WORKING_DAY_COLLECTION_NAME: string;
323
323
  SETTING_HOLIDAY_REPOSITORY_NAME: string;
324
324
  SETTING_HOLIDAY_COLLECTION_NAME: string;
325
+ PAYSLIP_REPOSITORY_NAME: string;
326
+ PAYSLIP_COLLECTION_NAME: string;
325
327
  PAYROLL_REPOSITORY_NAME: string;
326
328
  PAYROLL_COLLECTION_NAME: string;
327
329
  PAYROLL_DETAIL_REPOSITORY_NAME: string;
@@ -414,6 +414,9 @@ const COLLECTIONS = {
414
414
  SETTING_WORKING_DAY_COLLECTION_NAME: "setting_working_days",
415
415
  SETTING_HOLIDAY_REPOSITORY_NAME: "settingHoliday",
416
416
  SETTING_HOLIDAY_COLLECTION_NAME: "setting_holidays",
417
+ // Payslips
418
+ PAYSLIP_REPOSITORY_NAME: "paysLip",
419
+ PAYSLIP_COLLECTION_NAME: "payslips",
417
420
  // Payroll
418
421
  PAYROLL_REPOSITORY_NAME: "payroll",
419
422
  PAYROLL_COLLECTION_NAME: "payrolls",
@@ -968,13 +968,17 @@
968
968
  },
969
969
  "API_HCM_PAYROLL": {
970
970
  "NAME": "api-hcm.payrolls",
971
- "ACTION_GET_LIST": "getList",
972
- "ACTION_GET_DETAIL": "getDetail",
973
971
  "ACTION_CREATE": "create",
974
972
  "ACTION_UPDATE": "update",
973
+ "ACTION_GET_LIST": "getList",
974
+ "ACTION_GET_DETAIL": "getDetail",
975
975
  "ACTION_DELETE_MANY": "deleteMany",
976
- "ACTION_GET_GENERATED_MONTHS": "getGeneratedMonths",
977
- "ACTION_PREPARE_DATA_BEFORE_CREATE": "prepareDataBeforeCreate"
976
+ "ACTION_GET_DETAIL_EMPLOYEES": "getDetailEmployees",
977
+ "ACTION_UPDATE_MANY_EMPLOYEES": "updateManyEmployees",
978
+ "ACTION_INSERT_MANY_EMPLOYEES": "insertManyEmployees",
979
+ "ACTION_DELETE_MANY_EMPLOYEES": "deleteManyEmployees",
980
+ "ACTION_PREPARE_DATA_BEFORE_CREATE": "prepareDataBeforeCreate",
981
+ "ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured"
978
982
  },
979
983
  "API_HCM_PAYROLL_DETAILS": {
980
984
  "NAME": "api-hcm.payroll-details",
@@ -983,6 +987,17 @@
983
987
  "ACTION_CREATE": "create",
984
988
  "ACTION_UPDATE": "update"
985
989
  },
990
+ "API_HCM_PAYSLIPS": {
991
+ "NAME": "api-hcm.payslips",
992
+ "ACTION_CREATE": "create",
993
+ "ACTION_UPDATE": "update",
994
+ "ACTION_GET_LIST": "getList",
995
+ "ACTION_GET_DETAIL": "getDetail",
996
+ "ACTION_DELETE_MANY": "deleteMany",
997
+ "ACTION_SEND_PAYSLIPS": "sendPayslips",
998
+ "ACTION_UPDATE_STATUS": "updateStatus",
999
+ "ACTION_GET_PAYROLL_DATA_BY_PERIOD": "getPayrollDataByPeriod"
1000
+ },
986
1001
  "API_HCM_PAYROLL_SETTINGS": {
987
1002
  "NAME": "api-hcm.payrollSettings",
988
1003
  "ACTION_GET": "get",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.3.48",
3
+ "version": "1.3.50",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {