@hiennc24/constant 1.3.18 → 1.3.20
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.
|
@@ -68,6 +68,8 @@ declare const COLLECTIONS: {
|
|
|
68
68
|
DEPARTMENT_COLLECTION_NAME: string;
|
|
69
69
|
POSITION_REPOSITORY_NAME: string;
|
|
70
70
|
POSITION_COLLECTION_NAME: string;
|
|
71
|
+
DEPARTMENT_POSITION_REPOSITORY_NAME: string;
|
|
72
|
+
DEPARTMENT_POSITION_COLLECTION_NAME: string;
|
|
71
73
|
ORG_SETTING_REPOSITORY_NAME: string;
|
|
72
74
|
ORG_SETTING_COLLECTION_NAME: string;
|
|
73
75
|
TENANT_USER_REPOSITORY_NAME: string;
|
|
@@ -89,6 +89,9 @@ const COLLECTIONS = {
|
|
|
89
89
|
// Position
|
|
90
90
|
POSITION_REPOSITORY_NAME: "position",
|
|
91
91
|
POSITION_COLLECTION_NAME: "positions",
|
|
92
|
+
// Department Position
|
|
93
|
+
DEPARTMENT_POSITION_REPOSITORY_NAME: "departmentPosition",
|
|
94
|
+
DEPARTMENT_POSITION_COLLECTION_NAME: "department_positions",
|
|
92
95
|
// Org Setting
|
|
93
96
|
ORG_SETTING_REPOSITORY_NAME: "orgSetting",
|
|
94
97
|
ORG_SETTING_COLLECTION_NAME: "org_settings",
|
|
@@ -1334,32 +1334,28 @@
|
|
|
1334
1334
|
},
|
|
1335
1335
|
"SVC_ORGANIZATION_DEPARTMENTS": {
|
|
1336
1336
|
"NAME": "svc-organization.departments",
|
|
1337
|
-
"
|
|
1337
|
+
"ACTION_GET_LIST_DEPARTMENT": "getListDepartment",
|
|
1338
|
+
"ACTION_CREATE_DEPARTMENT": "createDepartment",
|
|
1339
|
+
"ACTION_CLONE_DEPARTMENT": "cloneDepartment",
|
|
1338
1340
|
"ACTION_GET_DEPARTMENT_LISTS_FOR_EMPLOYEE": "getDepartmentListsForEmployee",
|
|
1339
|
-
"ACTION_GET_ALL_DEPARTMENT_WITH_POSITION": "getAllDepartmentWithPosition",
|
|
1340
|
-
"ACTION_LIST_POSITION_BY_DEPARTMENT": "getListPositionByDepartment",
|
|
1341
|
-
"ACTION_GET_FLAT_TREE_DEPARTMENT_IDS": "getFlatTreeDepartmentIds",
|
|
1342
1341
|
"ACTION_GET_DEPARTMENT_FLAT_LISTS": "getDepartmentFlatLists",
|
|
1343
|
-
"ACTION_CHANGE_COLOR_DEPARTMENTS": "changeColorDepartments",
|
|
1344
|
-
"ACTION_GET_PLAIN_POSITION_LIST": "getPlainPositionList",
|
|
1345
|
-
"ACTION_UPDATE_MANY_DEPARTMENT": "updateManyDepartment",
|
|
1346
|
-
"ACTION_DELETE_MANY_DEPARTMENT": "deleteManyDepartment",
|
|
1347
|
-
"ACTION_DELETE_ALL_DEPARTMENT": "deleteAllDepartment",
|
|
1348
|
-
"ACTION_GET_DEPARTMENT_DETAIL": "getDepartmentDetail",
|
|
1349
1342
|
"ACTION_GET_TREE_DEPARTMENTS": "getTreeDepartments",
|
|
1350
|
-
"
|
|
1351
|
-
"
|
|
1352
|
-
"
|
|
1343
|
+
"ACTION_GET_DEPARTMENT_DETAIL": "getDepartmentDetail",
|
|
1344
|
+
"ACTION_GET_FLAT_TREE_DEPARTMENT_IDS": "getFlatTreeDepartmentIds",
|
|
1345
|
+
"ACTION_UPDATE_MANY_DEPARTMENT": "updateManyDepartment",
|
|
1346
|
+
"ACTION_CHANGE_COLOR_DEPARTMENTS": "changeColorDepartments",
|
|
1347
|
+
"ACTION_DELETE_DEPARTMENT": "deleteDepartment",
|
|
1353
1348
|
"ACTION_UPDATE_DEPARTMENT": "updateDepartment",
|
|
1354
|
-
"
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
"
|
|
1358
|
-
"
|
|
1359
|
-
"
|
|
1360
|
-
"
|
|
1361
|
-
"
|
|
1362
|
-
"
|
|
1349
|
+
"ACTION_GET_LIST_BY_POSITION": "getListByPosition"
|
|
1350
|
+
},
|
|
1351
|
+
"SVC_ORGANIZATION_POSITIONS": {
|
|
1352
|
+
"NAME": "svc-organization.positions",
|
|
1353
|
+
"ACTION_GET_LIST_BY_DEPARTMENT": "getListByDepartment",
|
|
1354
|
+
"ACTION_GET_DETAIL": "getDetail",
|
|
1355
|
+
"ACTION_GET_LIST": "getList",
|
|
1356
|
+
"ACTION_CREATE": "createPosition",
|
|
1357
|
+
"ACTION_UPDATE": "updatePosition",
|
|
1358
|
+
"ACTION_DELETE": "deletePosition"
|
|
1363
1359
|
},
|
|
1364
1360
|
"SVC_ORGANIZATION_ORG_SETTING": {
|
|
1365
1361
|
"NAME": "svc-organization.orgSetting",
|