@hapl/api-queries 0.1.191 → 0.1.192

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.
@@ -34,6 +34,7 @@ export declare const UserDictionary: {
34
34
  mentor: string;
35
35
  invest: string;
36
36
  teamlead: string;
37
+ group_lead: string;
37
38
  call_operator: string;
38
39
  admin: string;
39
40
  developer: string;
@@ -39,6 +39,7 @@ export declare enum UserRole {
39
39
  Mentor = "mentor",
40
40
  Invest = "invest",
41
41
  Teamlead = "teamlead",
42
+ GroupLead = "group_lead",
42
43
  CallOperator = "call_operator",
43
44
  Admin = "admin",
44
45
  Developer = "developer",
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.191",
2
+ "version": "0.1.192",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -45,6 +45,7 @@ export const UserDictionary = {
45
45
  [UserRole.Mentor]: 'Наставник',
46
46
  [UserRole.Invest]: 'Сотрудник инвестотдела',
47
47
  [UserRole.Teamlead]: 'Руководитель отдела продаж',
48
+ [UserRole.GroupLead]: 'Руководитель группы',
48
49
  [UserRole.CallOperator]: 'Оператор',
49
50
  [UserRole.Admin]: 'Администратор',
50
51
  [UserRole.Developer]: 'Разработчик',
@@ -45,6 +45,7 @@ export enum UserRole {
45
45
  Mentor = 'mentor',
46
46
  Invest = 'invest',
47
47
  Teamlead = 'teamlead',
48
+ GroupLead = 'group_lead',
48
49
  CallOperator = 'call_operator',
49
50
  Admin = 'admin',
50
51
  Developer = 'developer',