@hiennc24/constant 1.0.3 → 1.0.5

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.
@@ -4,6 +4,10 @@
4
4
  "ACTION_INIT_MASTER_DATA": "initMasterData",
5
5
  "ACTION_MIGRATION_MASTER": "migrationsMaster"
6
6
  },
7
+ "BANKS": {
8
+ "NAME": "svc-banks",
9
+ "ACTION_GET_LIST": "getList"
10
+ },
7
11
  "SVC_ADMINISTRATION_LIST_CUSTOMER": {
8
12
  "NAME": "svc-administration-list.customers",
9
13
  "ACTION_GET_PAGE": "getPage",
@@ -588,6 +592,12 @@
588
592
  "API_HCM_SETTINGS": {
589
593
  "NAME": "api-hcm.settings"
590
594
  },
595
+ "API_HCM_SETTING_HOLIDAYS": {
596
+ "NAME": "api-hcm.setting-holidays"
597
+ },
598
+ "API_HCM_SETTING_WORKING_DAYS": {
599
+ "NAME": "api-hcm.setting-working-days"
600
+ },
591
601
  "API_HCM_LEAVES": {
592
602
  "NAME": "api-hcm.leaves",
593
603
  "ACTION_CREATE": "create",
@@ -715,6 +725,7 @@
715
725
  "NAME": "svc-organization.employees",
716
726
  "ACTION_GET_PAGE": "getPage",
717
727
  "ACTION_GET_DETAIL": "getDetail",
728
+ "ACTION_GET_DETAIL_BY_PASS_AUTH": "getDetailByPassAuth",
718
729
  "ACTION_GENERATE_CODE": "generateCode",
719
730
  "ACTION_LOCK_UNLOCK": "lockOrUnlock",
720
731
  "ACTION_COUNT": "count",
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.0.3",
4
- "main": "dist/index.js",
5
- "types": "dist/index.d.ts",
3
+ "version": "1.0.5",
4
+ "main": "lib/index.js",
5
+ "types": "lib/index.d.ts",
6
6
  "scripts": {
7
7
  "build": "tsc",
8
- "clean": "rimraf dist",
8
+ "clean": "rimraf lib",
9
9
  "prepare": "npm run clean && npm run build",
10
10
  "prepublishOnly": "npm run build"
11
11
  },