@webex/contact-center 3.11.0 → 3.12.0-mobius-socket.1
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.
- package/dist/cc.js +121 -28
- package/dist/cc.js.map +1 -1
- package/dist/constants.js +5 -1
- package/dist/constants.js.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/metrics/behavioral-events.js +13 -0
- package/dist/metrics/behavioral-events.js.map +1 -1
- package/dist/metrics/constants.js +9 -1
- package/dist/metrics/constants.js.map +1 -1
- package/dist/services/ApiAiAssistant.js +173 -0
- package/dist/services/ApiAiAssistant.js.map +1 -0
- package/dist/services/agent/types.js.map +1 -1
- package/dist/services/config/Util.js +6 -2
- package/dist/services/config/Util.js.map +1 -1
- package/dist/services/config/constants.js +12 -0
- package/dist/services/config/constants.js.map +1 -1
- package/dist/services/config/index.js +41 -2
- package/dist/services/config/index.js.map +1 -1
- package/dist/services/config/types.js +19 -1
- package/dist/services/config/types.js.map +1 -1
- package/dist/services/constants.js +27 -1
- package/dist/services/constants.js.map +1 -1
- package/dist/services/core/Err.js.map +1 -1
- package/dist/services/core/Utils.js +28 -6
- package/dist/services/core/Utils.js.map +1 -1
- package/dist/services/core/aqm-reqs.js +92 -17
- package/dist/services/core/aqm-reqs.js.map +1 -1
- package/dist/services/core/websocket/WebSocketManager.js +20 -5
- package/dist/services/core/websocket/WebSocketManager.js.map +1 -1
- package/dist/services/core/websocket/connection-service.js +3 -1
- package/dist/services/core/websocket/connection-service.js.map +1 -1
- package/dist/services/index.js +6 -0
- package/dist/services/index.js.map +1 -1
- package/dist/services/task/TaskManager.js +117 -24
- package/dist/services/task/TaskManager.js.map +1 -1
- package/dist/services/task/TaskUtils.js +16 -3
- package/dist/services/task/TaskUtils.js.map +1 -1
- package/dist/services/task/constants.js +15 -1
- package/dist/services/task/constants.js.map +1 -1
- package/dist/services/task/dialer.js +51 -0
- package/dist/services/task/dialer.js.map +1 -1
- package/dist/services/task/types.js +15 -0
- package/dist/services/task/types.js.map +1 -1
- package/dist/types/cc.d.ts +801 -0
- package/dist/types/config.d.ts +66 -0
- package/dist/types/constants.d.ts +50 -0
- package/dist/types/index.d.ts +184 -0
- package/dist/types/logger-proxy.d.ts +71 -0
- package/dist/types/metrics/MetricsManager.d.ts +223 -0
- package/dist/types/metrics/behavioral-events.d.ts +29 -0
- package/dist/types/metrics/constants.d.ts +161 -0
- package/dist/types/services/AddressBook.d.ts +74 -0
- package/dist/types/services/ApiAiAssistant.d.ts +31 -0
- package/dist/types/services/EntryPoint.d.ts +67 -0
- package/dist/types/services/Queue.d.ts +76 -0
- package/dist/types/services/WebCallingService.d.ts +1 -0
- package/dist/types/services/agent/index.d.ts +46 -0
- package/dist/types/services/agent/types.d.ts +413 -0
- package/dist/types/services/config/Util.d.ts +20 -0
- package/dist/types/services/config/constants.d.ts +249 -0
- package/dist/types/services/config/index.d.ts +177 -0
- package/dist/types/services/config/types.d.ts +1207 -0
- package/dist/types/services/constants.d.ts +110 -0
- package/dist/types/services/core/Err.d.ts +121 -0
- package/dist/types/services/core/GlobalTypes.d.ts +58 -0
- package/dist/types/services/core/Utils.d.ts +101 -0
- package/dist/types/services/core/WebexRequest.d.ts +22 -0
- package/dist/types/services/core/aqm-reqs.d.ts +65 -0
- package/dist/types/services/core/constants.d.ts +99 -0
- package/dist/types/services/core/types.d.ts +47 -0
- package/dist/types/services/core/websocket/WebSocketManager.d.ts +35 -0
- package/dist/types/services/core/websocket/connection-service.d.ts +27 -0
- package/dist/types/services/core/websocket/keepalive.worker.d.ts +2 -0
- package/dist/types/services/core/websocket/types.d.ts +37 -0
- package/dist/types/services/index.d.ts +54 -0
- package/dist/types/services/task/AutoWrapup.d.ts +40 -0
- package/dist/types/services/task/TaskManager.d.ts +1 -0
- package/dist/types/services/task/TaskUtils.d.ts +92 -0
- package/dist/types/services/task/constants.d.ts +84 -0
- package/dist/types/services/task/contact.d.ts +69 -0
- package/dist/types/services/task/dialer.d.ts +43 -0
- package/dist/types/services/task/index.d.ts +650 -0
- package/dist/types/services/task/types.d.ts +1319 -0
- package/dist/types/types.d.ts +643 -0
- package/dist/types/utils/PageCache.d.ts +173 -0
- package/dist/types/webex-config.d.ts +53 -0
- package/dist/types/webex.d.ts +7 -0
- package/dist/types.js +14 -1
- package/dist/types.js.map +1 -1
- package/dist/webex.js +1 -1
- package/package.json +9 -9
- package/src/cc.ts +157 -30
- package/src/constants.ts +4 -0
- package/src/index.ts +1 -0
- package/src/metrics/behavioral-events.ts +14 -0
- package/src/metrics/constants.ts +11 -0
- package/src/services/ApiAiAssistant.ts +217 -0
- package/src/services/agent/types.ts +1 -1
- package/src/services/config/Util.ts +8 -0
- package/src/services/config/constants.ts +12 -0
- package/src/services/config/index.ts +45 -1
- package/src/services/config/types.ts +67 -0
- package/src/services/constants.ts +29 -0
- package/src/services/core/Err.ts +1 -0
- package/src/services/core/Utils.ts +32 -5
- package/src/services/core/aqm-reqs.ts +100 -22
- package/src/services/core/websocket/WebSocketManager.ts +21 -6
- package/src/services/core/websocket/connection-service.ts +5 -1
- package/src/services/index.ts +4 -0
- package/src/services/task/TaskManager.ts +174 -27
- package/src/services/task/TaskUtils.ts +12 -0
- package/src/services/task/constants.ts +16 -0
- package/src/services/task/dialer.ts +56 -1
- package/src/services/task/types.ts +24 -0
- package/src/types.ts +40 -1
- package/test/unit/spec/cc.ts +163 -23
- package/test/unit/spec/services/ApiAiAssistant.ts +115 -0
- package/test/unit/spec/services/config/index.ts +56 -0
- package/test/unit/spec/services/core/Utils.ts +63 -1
- package/test/unit/spec/services/core/websocket/WebSocketManager.ts +82 -12
- package/test/unit/spec/services/core/websocket/connection-service.ts +3 -1
- package/test/unit/spec/services/task/TaskManager.ts +1119 -251
- package/test/unit/spec/services/task/dialer.ts +198 -112
- package/umd/contact-center.min.js +2 -2
- package/umd/contact-center.min.js.map +1 -1
|
@@ -0,0 +1,413 @@
|
|
|
1
|
+
import { Msg } from '../core/GlobalTypes';
|
|
2
|
+
/**
|
|
3
|
+
* Response type received when an agent successfully logs out from the system
|
|
4
|
+
* @public
|
|
5
|
+
* @remarks
|
|
6
|
+
* This type represents the response message sent by the server when an agent
|
|
7
|
+
* successfully logs out. It includes essential details about the logout action
|
|
8
|
+
* and the agent's final state.
|
|
9
|
+
*/
|
|
10
|
+
export type LogoutSuccess = Msg<{
|
|
11
|
+
/** Message type identifier for agent desktop events */
|
|
12
|
+
eventType: 'AgentDesktopMessage';
|
|
13
|
+
/** Unique identifier of the agent */
|
|
14
|
+
agentId: string;
|
|
15
|
+
/** Tracking ID for the logout request */
|
|
16
|
+
trackingId: string;
|
|
17
|
+
/** Current session ID of the agent */
|
|
18
|
+
agentSessionId: string;
|
|
19
|
+
/** Organization ID the agent belongs to */
|
|
20
|
+
orgId: string;
|
|
21
|
+
/** Current status of the agent (e.g., 'LoggedOut') */
|
|
22
|
+
status: string;
|
|
23
|
+
/** Detailed status information */
|
|
24
|
+
subStatus: string;
|
|
25
|
+
/** Identity of who initiated the logout if not the agent themselves */
|
|
26
|
+
loggedOutBy?: string;
|
|
27
|
+
/** List of roles assigned to the agent */
|
|
28
|
+
roles?: string[];
|
|
29
|
+
/** Type identifier for logout success event */
|
|
30
|
+
type: 'AgentLogoutSuccess';
|
|
31
|
+
}>;
|
|
32
|
+
/**
|
|
33
|
+
* Response type received when an agent successfully relogins to the system
|
|
34
|
+
* @public
|
|
35
|
+
* @remarks
|
|
36
|
+
* Represents the response message when an agent successfully re-authenticates.
|
|
37
|
+
* Contains comprehensive information about the agent's new session, including
|
|
38
|
+
* their state, assigned channels, and device information.
|
|
39
|
+
*/
|
|
40
|
+
export type ReloginSuccess = Msg<{
|
|
41
|
+
/** Message type identifier for agent desktop events */
|
|
42
|
+
eventType: 'AgentDesktopMessage';
|
|
43
|
+
/** Unique identifier of the agent */
|
|
44
|
+
agentId: string;
|
|
45
|
+
/** Tracking ID for the relogin request */
|
|
46
|
+
trackingId: string;
|
|
47
|
+
/** Auxiliary code ID for the agent's initial state */
|
|
48
|
+
auxCodeId: string;
|
|
49
|
+
/** ID of the team the agent belongs to */
|
|
50
|
+
teamId: string;
|
|
51
|
+
/** New session ID assigned to the agent */
|
|
52
|
+
agentSessionId: string;
|
|
53
|
+
/** Directory number assigned to the agent */
|
|
54
|
+
dn: string;
|
|
55
|
+
/** Organization ID the agent belongs to */
|
|
56
|
+
orgId: string;
|
|
57
|
+
/** List of active interaction IDs */
|
|
58
|
+
interactionIds: string[];
|
|
59
|
+
/** Indicates if login is via extension */
|
|
60
|
+
isExtension: boolean;
|
|
61
|
+
/** Current login status */
|
|
62
|
+
status: 'LoggedIn';
|
|
63
|
+
/** Current sub-status */
|
|
64
|
+
subStatus: 'Idle';
|
|
65
|
+
/** ID of the site where the agent is located */
|
|
66
|
+
siteId: string;
|
|
67
|
+
/** Timestamp of last idle code change */
|
|
68
|
+
lastIdleCodeChangeTimestamp: number;
|
|
69
|
+
/** Timestamp of last state change */
|
|
70
|
+
lastStateChangeTimestamp: number;
|
|
71
|
+
/** Reason for the last state change */
|
|
72
|
+
lastStateChangeReason?: string;
|
|
73
|
+
/** Type of agent profile */
|
|
74
|
+
profileType: string;
|
|
75
|
+
/** Map of channel types to channel IDs */
|
|
76
|
+
channelsMap: Record<string, string[]>;
|
|
77
|
+
/** Phone number for dialing */
|
|
78
|
+
dialNumber?: string;
|
|
79
|
+
/** List of roles assigned to the agent */
|
|
80
|
+
roles?: string[];
|
|
81
|
+
/** Type of device being used */
|
|
82
|
+
deviceType?: DeviceType;
|
|
83
|
+
/** Unique identifier of the device */
|
|
84
|
+
deviceId?: string | null;
|
|
85
|
+
/** Flag indicating if emergency modal was shown */
|
|
86
|
+
isEmergencyModalAlreadyDisplayed?: boolean;
|
|
87
|
+
/** Type identifier for relogin success event */
|
|
88
|
+
type: 'AgentReloginSuccess';
|
|
89
|
+
}>;
|
|
90
|
+
/**
|
|
91
|
+
* Response type received when an agent's state is successfully changed
|
|
92
|
+
* @public
|
|
93
|
+
* @remarks
|
|
94
|
+
* Contains information about the agent's new state, including who initiated
|
|
95
|
+
* the change and timestamps for tracking state transitions.
|
|
96
|
+
*/
|
|
97
|
+
export type StateChangeSuccess = Msg<{
|
|
98
|
+
/** Message type identifier for agent desktop events */
|
|
99
|
+
eventType: 'AgentDesktopMessage';
|
|
100
|
+
/** Unique identifier of the agent */
|
|
101
|
+
agentId: string;
|
|
102
|
+
/** Tracking ID for the state change request */
|
|
103
|
+
trackingId: string;
|
|
104
|
+
/** Auxiliary code ID associated with the new state */
|
|
105
|
+
auxCodeId: string;
|
|
106
|
+
/** Current session ID of the agent */
|
|
107
|
+
agentSessionId: string;
|
|
108
|
+
/** Organization ID the agent belongs to */
|
|
109
|
+
orgId: string;
|
|
110
|
+
/** Current status of the agent */
|
|
111
|
+
status: string;
|
|
112
|
+
/** Detailed status indicating availability */
|
|
113
|
+
subStatus: 'Available' | 'Idle';
|
|
114
|
+
/** Timestamp of last idle code change */
|
|
115
|
+
lastIdleCodeChangeTimestamp: number;
|
|
116
|
+
/** Timestamp of current state change */
|
|
117
|
+
lastStateChangeTimestamp: number;
|
|
118
|
+
/** Type identifier for state change success event */
|
|
119
|
+
type: 'AgentStateChangeSuccess';
|
|
120
|
+
/** Identity of who initiated the state change */
|
|
121
|
+
changedBy: string | null;
|
|
122
|
+
/** ID of the user who initiated the change */
|
|
123
|
+
changedById: string | null;
|
|
124
|
+
/** Name of the user who initiated the change */
|
|
125
|
+
changedByName: string | null;
|
|
126
|
+
/** Reason for the state change */
|
|
127
|
+
lastStateChangeReason: string;
|
|
128
|
+
}>;
|
|
129
|
+
/**
|
|
130
|
+
* Response type received when an agent successfully logs into their station
|
|
131
|
+
* @public
|
|
132
|
+
* @remarks
|
|
133
|
+
* Represents the success response when an agent logs into their workstation.
|
|
134
|
+
* Includes details about the agent's initial state, assigned teams, and channels.
|
|
135
|
+
*/
|
|
136
|
+
export type StationLoginSuccess = Msg<{
|
|
137
|
+
/** Message type identifier for agent desktop events */
|
|
138
|
+
eventType: 'AgentDesktopMessage';
|
|
139
|
+
/** Unique identifier of the agent */
|
|
140
|
+
agentId: string;
|
|
141
|
+
/** Tracking ID for the station login request */
|
|
142
|
+
trackingId: string;
|
|
143
|
+
/** Auxiliary code ID for initial state */
|
|
144
|
+
auxCodeId: string;
|
|
145
|
+
/** ID of the team the agent belongs to */
|
|
146
|
+
teamId: string;
|
|
147
|
+
/** New session ID assigned to the agent */
|
|
148
|
+
agentSessionId: string;
|
|
149
|
+
/** Organization ID the agent belongs to */
|
|
150
|
+
orgId: string;
|
|
151
|
+
/** List of active interaction IDs */
|
|
152
|
+
interactionIds: string[];
|
|
153
|
+
/** Current login status */
|
|
154
|
+
status: string;
|
|
155
|
+
/** Current availability status */
|
|
156
|
+
subStatus: 'Available' | 'Idle';
|
|
157
|
+
/** ID of the site where the agent is located */
|
|
158
|
+
siteId: string;
|
|
159
|
+
/** Timestamp of last idle code change */
|
|
160
|
+
lastIdleCodeChangeTimestamp: number;
|
|
161
|
+
/** Timestamp of last state change */
|
|
162
|
+
lastStateChangeTimestamp: number;
|
|
163
|
+
/** Type of agent profile */
|
|
164
|
+
profileType: string;
|
|
165
|
+
/** Map of channel types to channel IDs */
|
|
166
|
+
channelsMap: Record<string, string[]>;
|
|
167
|
+
/** Phone number for dialing */
|
|
168
|
+
dialNumber?: string;
|
|
169
|
+
/** List of roles assigned to the agent */
|
|
170
|
+
roles?: string[];
|
|
171
|
+
/** Session ID of the supervising agent if applicable */
|
|
172
|
+
supervisorSessionId?: string;
|
|
173
|
+
/** Type identifier for station login success event */
|
|
174
|
+
type: 'AgentStationLoginSuccess';
|
|
175
|
+
}>;
|
|
176
|
+
/**
|
|
177
|
+
* Extended response type for station login success that includes notification tracking
|
|
178
|
+
* @public
|
|
179
|
+
* @remarks
|
|
180
|
+
* Similar to StationLoginSuccess but includes additional fields for notification
|
|
181
|
+
* tracking and multimedia profile settings.
|
|
182
|
+
*/
|
|
183
|
+
export type StationLoginSuccessResponse = {
|
|
184
|
+
/** Message type identifier for agent desktop events */
|
|
185
|
+
eventType: 'AgentDesktopMessage';
|
|
186
|
+
/** Unique identifier of the agent */
|
|
187
|
+
agentId: string;
|
|
188
|
+
/** Tracking ID for the station login request */
|
|
189
|
+
trackingId: string;
|
|
190
|
+
/** Auxiliary code ID for initial state */
|
|
191
|
+
auxCodeId: string;
|
|
192
|
+
/** ID of the team the agent belongs to */
|
|
193
|
+
teamId: string;
|
|
194
|
+
/** New session ID assigned to the agent */
|
|
195
|
+
agentSessionId: string;
|
|
196
|
+
/** Organization ID the agent belongs to */
|
|
197
|
+
orgId: string;
|
|
198
|
+
/** List of active interaction IDs */
|
|
199
|
+
interactionIds: string[];
|
|
200
|
+
/** Current login status */
|
|
201
|
+
status: string;
|
|
202
|
+
/** Current availability status */
|
|
203
|
+
subStatus: 'Available' | 'Idle';
|
|
204
|
+
/** ID of the site where the agent is located */
|
|
205
|
+
siteId: string;
|
|
206
|
+
/** Timestamp of last idle code change */
|
|
207
|
+
lastIdleCodeChangeTimestamp: number;
|
|
208
|
+
/** Timestamp of last state change */
|
|
209
|
+
lastStateChangeTimestamp: number;
|
|
210
|
+
/** Type of agent profile */
|
|
211
|
+
profileType: string;
|
|
212
|
+
/** Multimedia profile capacity settings */
|
|
213
|
+
mmProfile: {
|
|
214
|
+
/** Maximum concurrent chat capacity */
|
|
215
|
+
chat: number;
|
|
216
|
+
/** Maximum concurrent email capacity */
|
|
217
|
+
email: number;
|
|
218
|
+
/** Maximum concurrent social media capacity */
|
|
219
|
+
social: number;
|
|
220
|
+
/** Maximum concurrent voice call capacity */
|
|
221
|
+
telephony: number;
|
|
222
|
+
};
|
|
223
|
+
/** Phone number for dialing */
|
|
224
|
+
dialNumber?: string;
|
|
225
|
+
/** List of roles assigned to the agent */
|
|
226
|
+
roles?: string[];
|
|
227
|
+
/** Session ID of the supervising agent if applicable */
|
|
228
|
+
supervisorSessionId?: string;
|
|
229
|
+
/** Type identifier for station login success event */
|
|
230
|
+
type: 'AgentStationLoginSuccess';
|
|
231
|
+
/** Tracking ID for notifications */
|
|
232
|
+
notifsTrackingId: string;
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* Extended response type for agent device type update success
|
|
236
|
+
* @public
|
|
237
|
+
* @remarks
|
|
238
|
+
* Represents the response when an agent's device type is successfully updated.
|
|
239
|
+
* Contains all the details of the agent's session and device configuration.
|
|
240
|
+
*/
|
|
241
|
+
export type DeviceTypeUpdateSuccess = Omit<StationLoginSuccessResponse, 'type'> & {
|
|
242
|
+
type: 'AgentDeviceTypeUpdateSuccess';
|
|
243
|
+
};
|
|
244
|
+
/**
|
|
245
|
+
* Parameters required for initiating an agent logout
|
|
246
|
+
* @public
|
|
247
|
+
* @remarks
|
|
248
|
+
* Defines the parameters that can be provided when logging out an agent,
|
|
249
|
+
* including the reason for logout which helps with reporting and auditing.
|
|
250
|
+
*/
|
|
251
|
+
export type Logout = {
|
|
252
|
+
/** Reason for the logout action */
|
|
253
|
+
logoutReason?: 'User requested logout' | 'Inactivity Logout' | 'User requested agent profile update';
|
|
254
|
+
};
|
|
255
|
+
/**
|
|
256
|
+
* Represents the possible states an agent can be in
|
|
257
|
+
* @public
|
|
258
|
+
* @remarks
|
|
259
|
+
* Defines the various states an agent can transition between during their session.
|
|
260
|
+
* Common states include 'Available' (ready to handle interactions), 'Idle' (on break
|
|
261
|
+
* or not ready), and 'RONA' (Response on No Answer).
|
|
262
|
+
*/
|
|
263
|
+
export type AgentState = 'Available' | 'Idle' | 'RONA' | string;
|
|
264
|
+
/**
|
|
265
|
+
* Parameters required for changing an agent's state
|
|
266
|
+
* @public
|
|
267
|
+
* @remarks
|
|
268
|
+
* Defines the necessary information for transitioning an agent from one state to another.
|
|
269
|
+
*/
|
|
270
|
+
export type StateChange = {
|
|
271
|
+
/** New state to transition the agent to */
|
|
272
|
+
state: AgentState;
|
|
273
|
+
/** Auxiliary code ID associated with the state change */
|
|
274
|
+
auxCodeId: string;
|
|
275
|
+
/** Reason for the state change */
|
|
276
|
+
lastStateChangeReason?: string;
|
|
277
|
+
/** ID of the agent whose state is being changed */
|
|
278
|
+
agentId?: string;
|
|
279
|
+
};
|
|
280
|
+
/**
|
|
281
|
+
* Parameters required for agent station login
|
|
282
|
+
* @public
|
|
283
|
+
* @remarks
|
|
284
|
+
* Contains all the necessary information for logging an agent into their workstation,
|
|
285
|
+
* including team assignments, roles, and device configurations.
|
|
286
|
+
*/
|
|
287
|
+
export type UserStationLogin = {
|
|
288
|
+
/** Phone number for dialing */
|
|
289
|
+
dialNumber?: string | null;
|
|
290
|
+
/** Directory number */
|
|
291
|
+
dn?: string | null;
|
|
292
|
+
/** ID of the team the agent belongs to */
|
|
293
|
+
teamId: string | null;
|
|
294
|
+
/** Name of the team */
|
|
295
|
+
teamName: string | null;
|
|
296
|
+
/** List of roles assigned to the agent */
|
|
297
|
+
roles?: Array<string>;
|
|
298
|
+
/** ID of the site where the agent is located */
|
|
299
|
+
siteId: string;
|
|
300
|
+
/** Indicates if agent uses a different DN than their assigned one */
|
|
301
|
+
usesOtherDN: boolean;
|
|
302
|
+
/** ID of the agent's skill profile */
|
|
303
|
+
skillProfileId?: string;
|
|
304
|
+
/** ID of the initial auxiliary state code */
|
|
305
|
+
auxCodeId: string;
|
|
306
|
+
/** Indicates if login is via extension */
|
|
307
|
+
isExtension?: boolean;
|
|
308
|
+
/** Type of device being used */
|
|
309
|
+
deviceType?: DeviceType;
|
|
310
|
+
/** Unique identifier of the device */
|
|
311
|
+
deviceId?: string | null;
|
|
312
|
+
/** Flag indicating if emergency modal was shown */
|
|
313
|
+
isEmergencyModalAlreadyDisplayed?: boolean;
|
|
314
|
+
};
|
|
315
|
+
/**
|
|
316
|
+
* Available options for agent login methods
|
|
317
|
+
* @public
|
|
318
|
+
* @remarks
|
|
319
|
+
* Defines the supported methods for agent login:
|
|
320
|
+
* - AGENT_DN: Login using agent's direct number
|
|
321
|
+
* - EXTENSION: Login using extension number
|
|
322
|
+
* - BROWSER: Browser-based login
|
|
323
|
+
*/
|
|
324
|
+
export type LoginOption = 'AGENT_DN' | 'EXTENSION' | 'BROWSER';
|
|
325
|
+
/**
|
|
326
|
+
* Type of device used for agent login
|
|
327
|
+
* @public
|
|
328
|
+
* @remarks
|
|
329
|
+
* Represents the type of device being used for login. Can be one of the standard
|
|
330
|
+
* LoginOptions or a custom device type string.
|
|
331
|
+
*/
|
|
332
|
+
export type DeviceType = LoginOption | string;
|
|
333
|
+
/**
|
|
334
|
+
* Parameters for retrieving buddy agent information
|
|
335
|
+
* @public
|
|
336
|
+
* @remarks
|
|
337
|
+
* Defines the criteria for fetching information about other agents (buddies)
|
|
338
|
+
* in the system, allowing filtering by profile, media type, and state.
|
|
339
|
+
*/
|
|
340
|
+
export type BuddyAgents = {
|
|
341
|
+
agentProfileId: string;
|
|
342
|
+
mediaType: string;
|
|
343
|
+
/** Filter for agent state eg : Available | Idle */
|
|
344
|
+
state?: string;
|
|
345
|
+
};
|
|
346
|
+
/**
|
|
347
|
+
* Detailed information about a buddy agent
|
|
348
|
+
* @public
|
|
349
|
+
* @remarks
|
|
350
|
+
* Contains comprehensive information about a buddy agent including their
|
|
351
|
+
* current state, assignments, and contact information.
|
|
352
|
+
*/
|
|
353
|
+
export type BuddyDetails = {
|
|
354
|
+
agentId: string;
|
|
355
|
+
state: string;
|
|
356
|
+
teamId: string;
|
|
357
|
+
dn: string;
|
|
358
|
+
agentName: string;
|
|
359
|
+
siteId: string;
|
|
360
|
+
};
|
|
361
|
+
/**
|
|
362
|
+
* Response type received when successfully retrieving buddy agent information
|
|
363
|
+
* @public
|
|
364
|
+
* @remarks
|
|
365
|
+
* Contains the list of buddy agents and their details returned from a buddy
|
|
366
|
+
* agent lookup request. Used for monitoring team member statuses and availability.
|
|
367
|
+
*/
|
|
368
|
+
export type BuddyAgentsSuccess = Msg<{
|
|
369
|
+
/** Message type identifier for agent desktop events */
|
|
370
|
+
eventType: 'AgentDesktopMessage';
|
|
371
|
+
/** Unique identifier of the requesting agent */
|
|
372
|
+
agentId: string;
|
|
373
|
+
/** Tracking ID for the buddy list request */
|
|
374
|
+
trackingId: string;
|
|
375
|
+
/** Current session ID of the requesting agent */
|
|
376
|
+
agentSessionId: string;
|
|
377
|
+
/** Organization ID the agent belongs to */
|
|
378
|
+
orgId: string;
|
|
379
|
+
/** Type identifier for buddy agents response */
|
|
380
|
+
type: 'BuddyAgents';
|
|
381
|
+
/** List of buddy agents and their details */
|
|
382
|
+
agentList: Array<BuddyDetails>;
|
|
383
|
+
}>;
|
|
384
|
+
/**
|
|
385
|
+
* Events emitted by the agent service for various state changes and actions
|
|
386
|
+
* @public
|
|
387
|
+
* @remarks
|
|
388
|
+
* Enumeration of all possible events that can be emitted by the agent service.
|
|
389
|
+
* These events can be used to track and respond to changes in agent state,
|
|
390
|
+
* login status, and other important agent-related activities.
|
|
391
|
+
*/
|
|
392
|
+
export declare enum AGENT_EVENTS {
|
|
393
|
+
/** Emitted when an agent's state changes (e.g., Available to Idle) */
|
|
394
|
+
AGENT_STATE_CHANGE = "agent:stateChange",
|
|
395
|
+
/** Emitted when multiple logins are detected for the same agent */
|
|
396
|
+
AGENT_MULTI_LOGIN = "agent:multiLogin",
|
|
397
|
+
/** Emitted when an agent successfully logs into their station */
|
|
398
|
+
AGENT_STATION_LOGIN_SUCCESS = "agent:stationLoginSuccess",
|
|
399
|
+
/** Emitted when station login attempt fails */
|
|
400
|
+
AGENT_STATION_LOGIN_FAILED = "agent:stationLoginFailed",
|
|
401
|
+
/** Emitted when an agent successfully logs out */
|
|
402
|
+
AGENT_LOGOUT_SUCCESS = "agent:logoutSuccess",
|
|
403
|
+
/** Emitted when logout attempt fails */
|
|
404
|
+
AGENT_LOGOUT_FAILED = "agent:logoutFailed",
|
|
405
|
+
/** Emitted when an agent's directory number is successfully registered */
|
|
406
|
+
AGENT_DN_REGISTERED = "agent:dnRegistered",
|
|
407
|
+
/** Emitted when an agent successfully re-authenticates */
|
|
408
|
+
AGENT_RELOGIN_SUCCESS = "agent:reloginSuccess",
|
|
409
|
+
/** Emitted when agent state change is successful */
|
|
410
|
+
AGENT_STATE_CHANGE_SUCCESS = "agent:stateChangeSuccess",
|
|
411
|
+
/** Emitted when agent state change attempt fails */
|
|
412
|
+
AGENT_STATE_CHANGE_FAILED = "agent:stateChangeFailed"
|
|
413
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { AgentResponse, AuxCode, DesktopProfileResponse, DialPlanEntity, OrgInfo, OrgSettings, Profile, Team, TenantData, URLMapping, AIFeatureFlagsResponse } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* Parse the agent configurations
|
|
4
|
+
* @param {Object} profileData
|
|
5
|
+
* @returns {Profile}
|
|
6
|
+
*/
|
|
7
|
+
declare function parseAgentConfigs(profileData: {
|
|
8
|
+
userData: AgentResponse;
|
|
9
|
+
teamData: Team[];
|
|
10
|
+
tenantData: TenantData;
|
|
11
|
+
orgInfoData: OrgInfo;
|
|
12
|
+
auxCodes: AuxCode[];
|
|
13
|
+
orgSettingsData: OrgSettings;
|
|
14
|
+
agentProfileData: DesktopProfileResponse;
|
|
15
|
+
dialPlanData: DialPlanEntity[];
|
|
16
|
+
urlMapping: URLMapping[];
|
|
17
|
+
multimediaProfileId: string;
|
|
18
|
+
aiFeatureFlags: AIFeatureFlagsResponse;
|
|
19
|
+
}): Profile;
|
|
20
|
+
export { parseAgentConfigs };
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
export declare const DEFAULT_PAGE = 0;
|
|
2
|
+
/**
|
|
3
|
+
* Default page size for paginated API requests.
|
|
4
|
+
* @type {number}
|
|
5
|
+
* @public
|
|
6
|
+
* @example
|
|
7
|
+
* const pageSize = DEFAULT_PAGE_SIZE; // 100
|
|
8
|
+
* @ignore
|
|
9
|
+
*/
|
|
10
|
+
export declare const DEFAULT_PAGE_SIZE = 100;
|
|
11
|
+
/**
|
|
12
|
+
* Agent state ID for 'Available'.
|
|
13
|
+
* @type {string}
|
|
14
|
+
* @public
|
|
15
|
+
* @ignore
|
|
16
|
+
*/
|
|
17
|
+
export declare const AGENT_STATE_AVAILABLE_ID = "0";
|
|
18
|
+
/**
|
|
19
|
+
* Agent state label for 'Available'.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @public
|
|
22
|
+
* @ignore
|
|
23
|
+
*/
|
|
24
|
+
export declare const AGENT_STATE_AVAILABLE = "Available";
|
|
25
|
+
/**
|
|
26
|
+
* Description for the 'Available' agent state.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @public
|
|
29
|
+
* @ignore
|
|
30
|
+
*/
|
|
31
|
+
export declare const AGENT_STATE_AVAILABLE_DESCRIPTION = "Agent is available to receive calls";
|
|
32
|
+
/**
|
|
33
|
+
* Default attributes for auxiliary code API requests.
|
|
34
|
+
* @type {string[]}
|
|
35
|
+
* @public
|
|
36
|
+
* @ignore
|
|
37
|
+
*/
|
|
38
|
+
export declare const DEFAULT_AUXCODE_ATTRIBUTES: string[];
|
|
39
|
+
export declare const METHODS: {
|
|
40
|
+
GET_AGENT_CONFIG: string;
|
|
41
|
+
GET_USER_USING_CI: string;
|
|
42
|
+
GET_DESKTOP_PROFILE_BY_ID: string;
|
|
43
|
+
GET_MULTIMEDIA_PROFILE_BY_ID: string;
|
|
44
|
+
GET_LIST_OF_TEAMS: string;
|
|
45
|
+
GET_ALL_TEAMS: string;
|
|
46
|
+
GET_LIST_OF_AUX_CODES: string;
|
|
47
|
+
GET_ALL_AUX_CODES: string;
|
|
48
|
+
GET_SITE_INFO: string;
|
|
49
|
+
GET_ORG_INFO: string;
|
|
50
|
+
GET_ORGANIZATION_SETTING: string;
|
|
51
|
+
GET_TENANT_DATA: string;
|
|
52
|
+
GET_URL_MAPPING: string;
|
|
53
|
+
GET_DIAL_PLAN_DATA: string;
|
|
54
|
+
GET_AI_FEATURE_FLAGS: string;
|
|
55
|
+
GET_QUEUES: string;
|
|
56
|
+
PARSE_AGENT_CONFIGS: string;
|
|
57
|
+
GET_URL_MAPPING_UTIL: string;
|
|
58
|
+
GET_MSFT_CONFIG: string;
|
|
59
|
+
GET_WEBEX_CONFIG: string;
|
|
60
|
+
GET_DEFAULT_AGENT_DN: string;
|
|
61
|
+
GET_FILTERED_DIALPLAN_ENTRIES: string;
|
|
62
|
+
GET_FILTER_AUX_CODES: string;
|
|
63
|
+
GET_DEFAULT_WRAP_UP_CODE: string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Maps API endpoint names to functions that generate endpoint URLs for various organization resources.
|
|
67
|
+
* @public
|
|
68
|
+
* @example
|
|
69
|
+
* const url = endPointMap.userByCI('org123', 'agent456');
|
|
70
|
+
*/
|
|
71
|
+
export declare const endPointMap: {
|
|
72
|
+
/**
|
|
73
|
+
* Gets the endpoint for a user by CI user ID.
|
|
74
|
+
* @param orgId - Organization ID.
|
|
75
|
+
* @param agentId - Agent ID.
|
|
76
|
+
* @returns The endpoint URL string.
|
|
77
|
+
* @public
|
|
78
|
+
* @example
|
|
79
|
+
* const url = endPointMap.userByCI('org123', 'agent456');
|
|
80
|
+
* @ignore
|
|
81
|
+
*/
|
|
82
|
+
userByCI: (orgId: string, agentId: string) => string;
|
|
83
|
+
/**
|
|
84
|
+
* Gets the endpoint for a desktop profile.
|
|
85
|
+
* @param orgId - Organization ID.
|
|
86
|
+
* @param desktopProfileId - Desktop profile ID.
|
|
87
|
+
* @returns The endpoint URL string.
|
|
88
|
+
* @public
|
|
89
|
+
* @example
|
|
90
|
+
* const url = endPointMap.desktopProfile('org123', 'profile789');
|
|
91
|
+
* @ignore
|
|
92
|
+
*/
|
|
93
|
+
desktopProfile: (orgId: string, desktopProfileId: string) => string;
|
|
94
|
+
/**
|
|
95
|
+
* Gets the endpoint for a multimedia profile.
|
|
96
|
+
* @param orgId - Organization ID.
|
|
97
|
+
* @param multimediaProfileId - Multimedia profile ID.
|
|
98
|
+
* @returns The endpoint URL string.
|
|
99
|
+
* @public
|
|
100
|
+
* @example
|
|
101
|
+
* const url = endPointMap.multimediaProfile('org123', 'multi456');
|
|
102
|
+
* @ignore
|
|
103
|
+
*/
|
|
104
|
+
multimediaProfile: (orgId: string, multimediaProfileId: string) => string;
|
|
105
|
+
/**
|
|
106
|
+
* Gets the endpoint for listing teams with optional filters.
|
|
107
|
+
* @param orgId - Organization ID.
|
|
108
|
+
* @param page - Page number.
|
|
109
|
+
* @param pageSize - Page size.
|
|
110
|
+
* @param filter - Array of team IDs to filter.
|
|
111
|
+
* @returns The endpoint URL string.
|
|
112
|
+
* @public
|
|
113
|
+
* @example
|
|
114
|
+
* const url = endPointMap.listTeams('org123', 0, 100, ['team1', 'team2']);
|
|
115
|
+
* @ignore
|
|
116
|
+
*/
|
|
117
|
+
listTeams: (orgId: string, page: number, pageSize: number, filter: string[]) => string;
|
|
118
|
+
/**
|
|
119
|
+
* Gets the endpoint for listing auxiliary codes with optional filters and attributes.
|
|
120
|
+
* @param orgId - Organization ID.
|
|
121
|
+
* @param page - Page number.
|
|
122
|
+
* @param pageSize - Page size.
|
|
123
|
+
* @param filter - Array of auxiliary code IDs to filter.
|
|
124
|
+
* @param attributes - Array of attribute names to include.
|
|
125
|
+
* @returns The endpoint URL string.
|
|
126
|
+
* @public
|
|
127
|
+
* @example
|
|
128
|
+
* const url = endPointMap.listAuxCodes('org123', 0, 100, ['aux1'], ['id', 'name']);
|
|
129
|
+
* @ignore
|
|
130
|
+
*/
|
|
131
|
+
listAuxCodes: (orgId: string, page: number, pageSize: number, filter: string[], attributes: string[]) => string;
|
|
132
|
+
/**
|
|
133
|
+
* Gets the endpoint for organization info.
|
|
134
|
+
* @param orgId - Organization ID.
|
|
135
|
+
* @returns The endpoint URL string.
|
|
136
|
+
* @public
|
|
137
|
+
* @example
|
|
138
|
+
* const url = endPointMap.orgInfo('org123');
|
|
139
|
+
* @ignore
|
|
140
|
+
*/
|
|
141
|
+
orgInfo: (orgId: string) => string;
|
|
142
|
+
/**
|
|
143
|
+
* Gets the endpoint for organization settings.
|
|
144
|
+
* @param orgId - Organization ID.
|
|
145
|
+
* @returns The endpoint URL string.
|
|
146
|
+
* @public
|
|
147
|
+
* @example
|
|
148
|
+
* const url = endPointMap.orgSettings('org123');
|
|
149
|
+
* @ignore
|
|
150
|
+
*/
|
|
151
|
+
orgSettings: (orgId: string) => string;
|
|
152
|
+
/**
|
|
153
|
+
* Gets the endpoint for site info.
|
|
154
|
+
* @param orgId - Organization ID.
|
|
155
|
+
* @param siteId - Site ID.
|
|
156
|
+
* @returns The endpoint URL string.
|
|
157
|
+
* @public
|
|
158
|
+
* @example
|
|
159
|
+
* const url = endPointMap.siteInfo('org123', 'site456');
|
|
160
|
+
* @ignore
|
|
161
|
+
*/
|
|
162
|
+
siteInfo: (orgId: string, siteId: string) => string;
|
|
163
|
+
/**
|
|
164
|
+
* Gets the endpoint for tenant configuration data.
|
|
165
|
+
* @param orgId - Organization ID.
|
|
166
|
+
* @returns The endpoint URL string.
|
|
167
|
+
* @public
|
|
168
|
+
* @example
|
|
169
|
+
* const url = endPointMap.tenantData('org123');
|
|
170
|
+
* @ignore
|
|
171
|
+
*/
|
|
172
|
+
tenantData: (orgId: string) => string;
|
|
173
|
+
/**
|
|
174
|
+
* Gets the endpoint for organization URL mapping.
|
|
175
|
+
* @param orgId - Organization ID.
|
|
176
|
+
* @returns The endpoint URL string.
|
|
177
|
+
* @public
|
|
178
|
+
* @example
|
|
179
|
+
* const url = endPointMap.urlMapping('org123');
|
|
180
|
+
* @ignore
|
|
181
|
+
*/
|
|
182
|
+
urlMapping: (orgId: string) => string;
|
|
183
|
+
/**
|
|
184
|
+
* Gets the endpoint for dial plan.
|
|
185
|
+
* @param orgId - Organization ID.
|
|
186
|
+
* @returns The endpoint URL string.
|
|
187
|
+
* @public
|
|
188
|
+
* @example
|
|
189
|
+
* const url = endPointMap.dialPlan('org123');
|
|
190
|
+
* @ignore
|
|
191
|
+
*/
|
|
192
|
+
dialPlan: (orgId: string) => string;
|
|
193
|
+
/**
|
|
194
|
+
* Gets the endpoint for listing AI feature flags.
|
|
195
|
+
* @param orgId - Organization ID.
|
|
196
|
+
* @returns The endpoint URL string.
|
|
197
|
+
* @public
|
|
198
|
+
* @example
|
|
199
|
+
* const url = endPointMap.aiFeatureFlags('org123');
|
|
200
|
+
* @ignore
|
|
201
|
+
*/
|
|
202
|
+
aiFeature: (orgId: string) => string;
|
|
203
|
+
/**
|
|
204
|
+
* Gets the endpoint for the queue list with custom query parameters.
|
|
205
|
+
* @param orgId - Organization ID.
|
|
206
|
+
* @param queryParams - Query parameters string.
|
|
207
|
+
* @returns The endpoint URL string.
|
|
208
|
+
* @public
|
|
209
|
+
* @example
|
|
210
|
+
* const url = endPointMap.queueList('org123', 'page=0&pageSize=10');
|
|
211
|
+
* @ignore
|
|
212
|
+
*/
|
|
213
|
+
queueList: (orgId: string, queryParams: string) => string;
|
|
214
|
+
/**
|
|
215
|
+
* Gets the endpoint for entry points list with custom query parameters.
|
|
216
|
+
* @param orgId - Organization ID.
|
|
217
|
+
* @param queryParams - Query parameters string.
|
|
218
|
+
* @returns The endpoint URL string.
|
|
219
|
+
* @public
|
|
220
|
+
* @example
|
|
221
|
+
* const url = endPointMap.entryPointList('org123', 'page=0&pageSize=10');
|
|
222
|
+
* @ignore
|
|
223
|
+
*/
|
|
224
|
+
entryPointList: (orgId: string, queryParams: string) => string;
|
|
225
|
+
/**
|
|
226
|
+
* Gets the endpoint for address book entries with custom query parameters.
|
|
227
|
+
* @param orgId - Organization ID.
|
|
228
|
+
* @param addressBookId - Address book ID.
|
|
229
|
+
* @param queryParams - Query parameters string.
|
|
230
|
+
* @returns The endpoint URL string.
|
|
231
|
+
* @public
|
|
232
|
+
* @example
|
|
233
|
+
* const url = endPointMap.addressBookEntries('org123', 'book456', 'page=0&pageSize=10');
|
|
234
|
+
* @ignore
|
|
235
|
+
*/
|
|
236
|
+
addressBookEntries: (orgId: string, addressBookId: string, queryParams: string) => string;
|
|
237
|
+
/**
|
|
238
|
+
* Gets the endpoint for outdial ANI entries with custom query parameters.
|
|
239
|
+
* @param orgId - Organization ID.
|
|
240
|
+
* @param outdialANI - Outdial ANI ID.
|
|
241
|
+
* @param queryParams - Query parameters string.
|
|
242
|
+
* @returns The endpoint URL string.
|
|
243
|
+
* @public
|
|
244
|
+
* @example
|
|
245
|
+
* const url = endPointMap.outdialAniEntries('org123', 'ani456', 'page=0&pageSize=10');
|
|
246
|
+
* @ignore
|
|
247
|
+
*/
|
|
248
|
+
outdialAniEntries: (orgId: string, outdialANI: string, queryParams: string) => string;
|
|
249
|
+
};
|