webitel-sdk 0.1.148 → 0.1.151

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.
Files changed (40) hide show
  1. package/bundles/index.esm.js +41 -11
  2. package/bundles/index.esm.js.map +1 -1
  3. package/bundles/index.esm.min.js +1 -1
  4. package/bundles/index.esm.min.js.map +1 -1
  5. package/bundles/index.umd.js +56 -16
  6. package/bundles/index.umd.js.map +1 -1
  7. package/bundles/index.umd.min.js +1 -1
  8. package/bundles/index.umd.min.js.map +1 -1
  9. package/esm2015/api/call-service-api.js +14 -7
  10. package/esm2015/api/call-service-api.js.map +1 -1
  11. package/esm2015/socket/agent.js +4 -2
  12. package/esm2015/socket/agent.js.map +1 -1
  13. package/esm2015/socket/client.js +5 -1
  14. package/esm2015/socket/client.js.map +1 -1
  15. package/esm2015/socket/conversation.js +5 -0
  16. package/esm2015/socket/conversation.js.map +1 -1
  17. package/esm2015/socket/errors.js +12 -0
  18. package/esm2015/socket/errors.js.map +1 -1
  19. package/esm5/api/call-service-api.js +14 -7
  20. package/esm5/api/call-service-api.js.map +1 -1
  21. package/esm5/socket/agent.js +16 -7
  22. package/esm5/socket/agent.js.map +1 -1
  23. package/esm5/socket/client.js +6 -2
  24. package/esm5/socket/client.js.map +1 -1
  25. package/esm5/socket/conversation.js +5 -0
  26. package/esm5/socket/conversation.js.map +1 -1
  27. package/esm5/socket/errors.js +16 -0
  28. package/esm5/socket/errors.js.map +1 -1
  29. package/package.json +1 -1
  30. package/types/api/call-service-api.d.ts +8 -4
  31. package/types/api/call-service-api.d.ts.map +1 -1
  32. package/types/api/storage-create-import-template-request.d.ts +7 -0
  33. package/types/api/storage-create-import-template-request.d.ts.map +1 -1
  34. package/types/socket/agent.d.ts +6 -1
  35. package/types/socket/agent.d.ts.map +1 -1
  36. package/types/socket/client.d.ts.map +1 -1
  37. package/types/socket/conversation.d.ts +1 -0
  38. package/types/socket/conversation.d.ts.map +1 -1
  39. package/types/socket/errors.d.ts +14 -0
  40. package/types/socket/errors.d.ts.map +1 -1
@@ -7131,10 +7131,11 @@ const CallServiceApiAxiosParamCreator = function (configuration) {
7131
7131
  * @param {Array<string>} [directions]
7132
7132
  * @param {'undefined' | 'true' | 'false'} [hasTranscript]
7133
7133
  * @param {string} [agentDescription]
7134
+ * @param {Array<string>} [ownerId]
7134
7135
  * @param {*} [options] Override http request option.
7135
7136
  * @throws {RequiredError}
7136
7137
  */
7137
- searchHistoryCall: async (page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, options = {}) => {
7138
+ searchHistoryCall: async (page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, ownerId, options = {}) => {
7138
7139
  const localVarPath = `/calls/history`;
7139
7140
  const localVarUrlObj = parse(localVarPath, true);
7140
7141
  let baseOptions;
@@ -7266,6 +7267,9 @@ const CallServiceApiAxiosParamCreator = function (configuration) {
7266
7267
  if (agentDescription !== undefined) {
7267
7268
  localVarQueryParameter['agent_description'] = agentDescription;
7268
7269
  }
7270
+ if (ownerId) {
7271
+ localVarQueryParameter['owner_id'] = ownerId;
7272
+ }
7269
7273
  localVarUrlObj.query = {
7270
7274
  ...localVarUrlObj.query,
7271
7275
  ...localVarQueryParameter,
@@ -7689,11 +7693,12 @@ const CallServiceApiFp = function (configuration) {
7689
7693
  * @param {Array<string>} [directions]
7690
7694
  * @param {'undefined' | 'true' | 'false'} [hasTranscript]
7691
7695
  * @param {string} [agentDescription]
7696
+ * @param {Array<string>} [ownerId]
7692
7697
  * @param {*} [options] Override http request option.
7693
7698
  * @throws {RequiredError}
7694
7699
  */
7695
- async searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, options) {
7696
- const localVarAxiosArgs = await CallServiceApiAxiosParamCreator(configuration).searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, options);
7700
+ async searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, ownerId, options) {
7701
+ const localVarAxiosArgs = await CallServiceApiAxiosParamCreator(configuration).searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, ownerId, options);
7697
7702
  return (axios = globalAxios, basePath = BASE_PATH) => {
7698
7703
  const axiosRequestArgs = {
7699
7704
  ...localVarAxiosArgs.options,
@@ -7955,12 +7960,13 @@ const CallServiceApiFactory = function (configuration, basePath, axios) {
7955
7960
  * @param {Array<string>} [directions]
7956
7961
  * @param {'undefined' | 'true' | 'false'} [hasTranscript]
7957
7962
  * @param {string} [agentDescription]
7963
+ * @param {Array<string>} [ownerId]
7958
7964
  * @param {*} [options] Override http request option.
7959
7965
  * @throws {RequiredError}
7960
7966
  */
7961
- searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, options) {
7967
+ searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, ownerId, options) {
7962
7968
  return CallServiceApiFp(configuration)
7963
- .searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, options)
7969
+ .searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, ownerId, options)
7964
7970
  .then((request) => request(axios, basePath));
7965
7971
  },
7966
7972
  /**
@@ -8219,13 +8225,14 @@ class CallServiceApi extends BaseAPI {
8219
8225
  * @param {Array<string>} [directions]
8220
8226
  * @param {'undefined' | 'true' | 'false'} [hasTranscript]
8221
8227
  * @param {string} [agentDescription]
8228
+ * @param {Array<string>} [ownerId]
8222
8229
  * @param {*} [options] Override http request option.
8223
8230
  * @throws {RequiredError}
8224
8231
  * @memberof CallServiceApi
8225
8232
  */
8226
- searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, options) {
8233
+ searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, ownerId, options) {
8227
8234
  return CallServiceApiFp(this.configuration)
8228
- .searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, options)
8235
+ .searchHistoryCall(page, size, q, sort, fields, createdAtFrom, createdAtTo, userId, agentId, queueId, teamId, memberId, gatewayId, durationFrom, durationTo, skipParent, parentId, cause, hasFile, domainId, number, direction, answeredAtFrom, answeredAtTo, missed, storedAtFrom, storedAtTo, id, transferFrom, transferTo, dependencyId, tags, amdResult, fts, directions, hasTranscript, agentDescription, ownerId, options)
8229
8236
  .then((request) => request(this.axios, this.basePath));
8230
8237
  }
8231
8238
  /**
@@ -25556,7 +25563,7 @@ async function getMediaStream(constraints) {
25556
25563
 
25557
25564
  const getVersion = () => {
25558
25565
  // @ts-ignore
25559
- return '"0.1.148"';
25566
+ return '"0.1.151"';
25560
25567
  };
25561
25568
  var version = getVersion();
25562
25569
 
@@ -25809,6 +25816,7 @@ class Agent {
25809
25816
  this.info = info;
25810
25817
  this.task = new Map();
25811
25818
  this._channel = info.channels[0]; // todo
25819
+ this._listOfflineMembers = null;
25812
25820
  this.lastStatusChange = Date.now() - this.info.status_duration * 1000;
25813
25821
  }
25814
25822
  get agentId() {
@@ -26013,12 +26021,13 @@ class Agent {
26013
26021
  });
26014
26022
  }
26015
26023
  async offlineMembers(q, page, perPage) {
26016
- return this.client.request(`cc_fetch_offline_members`, {
26024
+ this._listOfflineMembers = (await this.client.request(`cc_fetch_offline_members`, {
26017
26025
  agent_id: this.agentId,
26018
26026
  page,
26019
26027
  q,
26020
26028
  per_page: perPage,
26021
- });
26029
+ }));
26030
+ return this._listOfflineMembers;
26022
26031
  }
26023
26032
  hasTask(task) {
26024
26033
  return this.task.has(task.id);
@@ -26501,6 +26510,7 @@ class Conversation {
26501
26510
  this.closedAt = 0;
26502
26511
  this.task = null;
26503
26512
  this.data = null;
26513
+ this.queue = null;
26504
26514
  this.members = (members || []).map((i) => wrapChannelMember(i));
26505
26515
  this._messages = messages || [];
26506
26516
  this.state = ConversationState.Invite;
@@ -26522,6 +26532,10 @@ class Conversation {
26522
26532
  if (variables &&
26523
26533
  variables.hasOwnProperty('cc_attempt_id') &&
26524
26534
  this.client.agent) {
26535
+ this.queue = {
26536
+ id: +variables.cc_queue_id || null,
26537
+ name: variables.cc_queue_name || '',
26538
+ };
26525
26539
  this.task = this.client.agent.task.get(+variables.cc_attempt_id) || null;
26526
26540
  }
26527
26541
  }
@@ -26777,6 +26791,10 @@ function wrapChannelMember(m) {
26777
26791
  return m;
26778
26792
  }
26779
26793
 
26794
+ var TypeError$1;
26795
+ (function (TypeError) {
26796
+ TypeError["RolePermission"] = "api.context.permissions.app_error";
26797
+ })(TypeError$1 || (TypeError$1 = {}));
26780
26798
  class DeviceNotFoundError extends Error {
26781
26799
  constructor(msg) {
26782
26800
  super(msg);
@@ -26792,6 +26810,14 @@ class DeviceNotAllowPermissionError extends Error {
26792
26810
  }
26793
26811
  }
26794
26812
  DeviceNotAllowPermissionError.id = `device_not_allow`;
26813
+ // tslint:disable-next-line: max-classes-per-file
26814
+ class RolePermissionError extends Error {
26815
+ constructor(msg) {
26816
+ super(msg);
26817
+ this.id = RolePermissionError.id;
26818
+ }
26819
+ }
26820
+ RolePermissionError.id = `api.context.permissions.app_error`;
26795
26821
 
26796
26822
  const SOCKET_URL_SUFFIX = 'websocket';
26797
26823
  const spamData = `\u0000\u0000\u0000\u0000`;
@@ -27311,6 +27337,10 @@ class Client extends EventEmitter {
27311
27337
  promise.resolve(message.data);
27312
27338
  }
27313
27339
  else {
27340
+ const err = message.data;
27341
+ if (err.id === TypeError$1.RolePermission) {
27342
+ this.emit('error', new RolePermissionError(err.detail));
27343
+ }
27314
27344
  promise.reject(message.error);
27315
27345
  }
27316
27346
  }
@@ -27994,5 +28024,5 @@ class ExternalClient extends ee_3 {
27994
28024
 
27995
28025
  // tslint:disable
27996
28026
 
27997
- export { AgentPauseCauseServiceApiAxiosParamCreator, AgentPauseCauseServiceApiFp, AgentPauseCauseServiceApiFactory, AgentPauseCauseServiceApi, AgentServiceApiAxiosParamCreator, AgentServiceApiFp, AgentServiceApiFactory, AgentServiceApi, AgentSkillServiceApiAxiosParamCreator, AgentSkillServiceApiFp, AgentSkillServiceApiFactory, AgentSkillServiceApi, AgentTeamServiceApiAxiosParamCreator, AgentTeamServiceApiFp, AgentTeamServiceApiFactory, AgentTeamServiceApi, BackendProfileServiceApiAxiosParamCreator, BackendProfileServiceApiFp, BackendProfileServiceApiFactory, BackendProfileServiceApi, BucketServiceApiAxiosParamCreator, BucketServiceApiFp, BucketServiceApiFactory, BucketServiceApi, CalendarServiceApiAxiosParamCreator, CalendarServiceApiFp, CalendarServiceApiFactory, CalendarServiceApi, CallServiceApiAxiosParamCreator, CallServiceApiFp, CallServiceApiFactory, CallServiceApi, CognitiveProfileServiceApiAxiosParamCreator, CognitiveProfileServiceApiFp, CognitiveProfileServiceApiFactory, CognitiveProfileServiceApi, CommunicationTypeServiceApiAxiosParamCreator, CommunicationTypeServiceApiFp, CommunicationTypeServiceApiFactory, CommunicationTypeServiceApi, EmailProfileServiceApiAxiosParamCreator, EmailProfileServiceApiFp, EmailProfileServiceApiFactory, EmailProfileServiceApi, FileServiceApiAxiosParamCreator, FileServiceApiFp, FileServiceApiFactory, FileServiceApi, FileTranscriptServiceApiAxiosParamCreator, FileTranscriptServiceApiFp, FileTranscriptServiceApiFactory, FileTranscriptServiceApi, ImportTemplateServiceApiAxiosParamCreator, ImportTemplateServiceApiFp, ImportTemplateServiceApiFactory, ImportTemplateServiceApi, ListServiceApiAxiosParamCreator, ListServiceApiFp, ListServiceApiFactory, ListServiceApi, MediaFileServiceApiAxiosParamCreator, MediaFileServiceApiFp, MediaFileServiceApiFactory, MediaFileServiceApi, MemberServiceApiAxiosParamCreator, MemberServiceApiFp, MemberServiceApiFactory, MemberServiceApi, OutboundResourceGroupServiceApiAxiosParamCreator, OutboundResourceGroupServiceApiFp, OutboundResourceGroupServiceApiFactory, OutboundResourceGroupServiceApi, OutboundResourceServiceApiAxiosParamCreator, OutboundResourceServiceApiFp, OutboundResourceServiceApiFactory, OutboundResourceServiceApi, QueueBucketServiceApiAxiosParamCreator, QueueBucketServiceApiFp, QueueBucketServiceApiFactory, QueueBucketServiceApi, QueueHookServiceApiAxiosParamCreator, QueueHookServiceApiFp, QueueHookServiceApiFactory, QueueHookServiceApi, QueueResourcesServiceApiAxiosParamCreator, QueueResourcesServiceApiFp, QueueResourcesServiceApiFactory, QueueResourcesServiceApi, QueueServiceApiAxiosParamCreator, QueueServiceApiFp, QueueServiceApiFactory, QueueServiceApi, QueueSkillServiceApiAxiosParamCreator, QueueSkillServiceApiFp, QueueSkillServiceApiFactory, QueueSkillServiceApi, RegionServiceApiAxiosParamCreator, RegionServiceApiFp, RegionServiceApiFactory, RegionServiceApi, RoutingChatPlanServiceApiAxiosParamCreator, RoutingChatPlanServiceApiFp, RoutingChatPlanServiceApiFactory, RoutingChatPlanServiceApi, RoutingOutboundCallServiceApiAxiosParamCreator, RoutingOutboundCallServiceApiFp, RoutingOutboundCallServiceApiFactory, RoutingOutboundCallServiceApi, RoutingSchemaServiceApiAxiosParamCreator, RoutingSchemaServiceApiFp, RoutingSchemaServiceApiFactory, RoutingSchemaServiceApi, RoutingVariableServiceApiAxiosParamCreator, RoutingVariableServiceApiFp, RoutingVariableServiceApiFactory, RoutingVariableServiceApi, SkillServiceApiAxiosParamCreator, SkillServiceApiFp, SkillServiceApiFactory, SkillServiceApi, UserHelperServiceApiAxiosParamCreator, UserHelperServiceApiFp, UserHelperServiceApiFactory, UserHelperServiceApi, Configuration, EngineBoolFilter, HistoryFileJobHistoryFileJobAction, HistoryFileJobHistoryFileJobState, ProtobufNullValue, StorageImportSourceType, StorageProviderType, StorageServiceType, StorageUploadStatusCode, JobState, Response, Client, CallReportingStatus, CallActions, CallDirection, Call, AgentStatus, ChannelState, ChannelType, Agent, DeclineCause, ChatActions, ConversationState, Conversation, DeviceNotFoundError, DeviceNotAllowPermissionError, SipClient, ExternalClient, SipPhone, Log };
28027
+ export { AgentPauseCauseServiceApiAxiosParamCreator, AgentPauseCauseServiceApiFp, AgentPauseCauseServiceApiFactory, AgentPauseCauseServiceApi, AgentServiceApiAxiosParamCreator, AgentServiceApiFp, AgentServiceApiFactory, AgentServiceApi, AgentSkillServiceApiAxiosParamCreator, AgentSkillServiceApiFp, AgentSkillServiceApiFactory, AgentSkillServiceApi, AgentTeamServiceApiAxiosParamCreator, AgentTeamServiceApiFp, AgentTeamServiceApiFactory, AgentTeamServiceApi, BackendProfileServiceApiAxiosParamCreator, BackendProfileServiceApiFp, BackendProfileServiceApiFactory, BackendProfileServiceApi, BucketServiceApiAxiosParamCreator, BucketServiceApiFp, BucketServiceApiFactory, BucketServiceApi, CalendarServiceApiAxiosParamCreator, CalendarServiceApiFp, CalendarServiceApiFactory, CalendarServiceApi, CallServiceApiAxiosParamCreator, CallServiceApiFp, CallServiceApiFactory, CallServiceApi, CognitiveProfileServiceApiAxiosParamCreator, CognitiveProfileServiceApiFp, CognitiveProfileServiceApiFactory, CognitiveProfileServiceApi, CommunicationTypeServiceApiAxiosParamCreator, CommunicationTypeServiceApiFp, CommunicationTypeServiceApiFactory, CommunicationTypeServiceApi, EmailProfileServiceApiAxiosParamCreator, EmailProfileServiceApiFp, EmailProfileServiceApiFactory, EmailProfileServiceApi, FileServiceApiAxiosParamCreator, FileServiceApiFp, FileServiceApiFactory, FileServiceApi, FileTranscriptServiceApiAxiosParamCreator, FileTranscriptServiceApiFp, FileTranscriptServiceApiFactory, FileTranscriptServiceApi, ImportTemplateServiceApiAxiosParamCreator, ImportTemplateServiceApiFp, ImportTemplateServiceApiFactory, ImportTemplateServiceApi, ListServiceApiAxiosParamCreator, ListServiceApiFp, ListServiceApiFactory, ListServiceApi, MediaFileServiceApiAxiosParamCreator, MediaFileServiceApiFp, MediaFileServiceApiFactory, MediaFileServiceApi, MemberServiceApiAxiosParamCreator, MemberServiceApiFp, MemberServiceApiFactory, MemberServiceApi, OutboundResourceGroupServiceApiAxiosParamCreator, OutboundResourceGroupServiceApiFp, OutboundResourceGroupServiceApiFactory, OutboundResourceGroupServiceApi, OutboundResourceServiceApiAxiosParamCreator, OutboundResourceServiceApiFp, OutboundResourceServiceApiFactory, OutboundResourceServiceApi, QueueBucketServiceApiAxiosParamCreator, QueueBucketServiceApiFp, QueueBucketServiceApiFactory, QueueBucketServiceApi, QueueHookServiceApiAxiosParamCreator, QueueHookServiceApiFp, QueueHookServiceApiFactory, QueueHookServiceApi, QueueResourcesServiceApiAxiosParamCreator, QueueResourcesServiceApiFp, QueueResourcesServiceApiFactory, QueueResourcesServiceApi, QueueServiceApiAxiosParamCreator, QueueServiceApiFp, QueueServiceApiFactory, QueueServiceApi, QueueSkillServiceApiAxiosParamCreator, QueueSkillServiceApiFp, QueueSkillServiceApiFactory, QueueSkillServiceApi, RegionServiceApiAxiosParamCreator, RegionServiceApiFp, RegionServiceApiFactory, RegionServiceApi, RoutingChatPlanServiceApiAxiosParamCreator, RoutingChatPlanServiceApiFp, RoutingChatPlanServiceApiFactory, RoutingChatPlanServiceApi, RoutingOutboundCallServiceApiAxiosParamCreator, RoutingOutboundCallServiceApiFp, RoutingOutboundCallServiceApiFactory, RoutingOutboundCallServiceApi, RoutingSchemaServiceApiAxiosParamCreator, RoutingSchemaServiceApiFp, RoutingSchemaServiceApiFactory, RoutingSchemaServiceApi, RoutingVariableServiceApiAxiosParamCreator, RoutingVariableServiceApiFp, RoutingVariableServiceApiFactory, RoutingVariableServiceApi, SkillServiceApiAxiosParamCreator, SkillServiceApiFp, SkillServiceApiFactory, SkillServiceApi, UserHelperServiceApiAxiosParamCreator, UserHelperServiceApiFp, UserHelperServiceApiFactory, UserHelperServiceApi, Configuration, EngineBoolFilter, HistoryFileJobHistoryFileJobAction, HistoryFileJobHistoryFileJobState, ProtobufNullValue, StorageImportSourceType, StorageProviderType, StorageServiceType, StorageUploadStatusCode, JobState, Response, Client, CallReportingStatus, CallActions, CallDirection, Call, AgentStatus, ChannelState, ChannelType, Agent, DeclineCause, ChatActions, ConversationState, Conversation, TypeError$1 as TypeError, DeviceNotFoundError, DeviceNotAllowPermissionError, RolePermissionError, SipClient, ExternalClient, SipPhone, Log };
27998
28028
  //# sourceMappingURL=index.esm.js.map