webitel-sdk 0.1.154 → 0.1.157

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 (58) hide show
  1. package/bundles/index.esm.js +183 -24
  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 +178 -23
  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/engine-list-routing-schema-tags.js +13 -0
  10. package/esm2015/api/engine-list-routing-schema-tags.js.map +1 -0
  11. package/esm2015/api/engine-routing-schema-tag.js +13 -0
  12. package/esm2015/api/engine-routing-schema-tag.js.map +1 -0
  13. package/esm2015/api/engine-routing-schema-type.js +26 -0
  14. package/esm2015/api/engine-routing-schema-type.js.map +1 -0
  15. package/esm2015/api/index.js +1 -0
  16. package/esm2015/api/index.js.map +1 -1
  17. package/esm2015/api/routing-schema-service-api.js +144 -11
  18. package/esm2015/api/routing-schema-service-api.js.map +1 -1
  19. package/esm2015/socket/client.js +8 -8
  20. package/esm2015/socket/client.js.map +1 -1
  21. package/esm2015/socket/errors.js +4 -4
  22. package/esm2015/socket/errors.js.map +1 -1
  23. package/esm5/api/engine-list-routing-schema-tags.js +13 -0
  24. package/esm5/api/engine-list-routing-schema-tags.js.map +1 -0
  25. package/esm5/api/engine-routing-schema-tag.js +13 -0
  26. package/esm5/api/engine-routing-schema-tag.js.map +1 -0
  27. package/esm5/api/engine-routing-schema-type.js +26 -0
  28. package/esm5/api/engine-routing-schema-type.js.map +1 -0
  29. package/esm5/api/index.js +1 -0
  30. package/esm5/api/index.js.map +1 -1
  31. package/esm5/api/routing-schema-service-api.js +157 -11
  32. package/esm5/api/routing-schema-service-api.js.map +1 -1
  33. package/esm5/socket/client.js +9 -9
  34. package/esm5/socket/client.js.map +1 -1
  35. package/esm5/socket/errors.js +4 -4
  36. package/esm5/socket/errors.js.map +1 -1
  37. package/package.json +1 -1
  38. package/types/api/engine-create-routing-schema-request.d.ts +9 -2
  39. package/types/api/engine-create-routing-schema-request.d.ts.map +1 -1
  40. package/types/api/engine-list-routing-schema-tags.d.ts +32 -0
  41. package/types/api/engine-list-routing-schema-tags.d.ts.map +1 -0
  42. package/types/api/engine-patch-routing-schema-request.d.ts +9 -2
  43. package/types/api/engine-patch-routing-schema-request.d.ts.map +1 -1
  44. package/types/api/engine-routing-schema-tag.d.ts +31 -0
  45. package/types/api/engine-routing-schema-tag.d.ts.map +1 -0
  46. package/types/api/engine-routing-schema-type.d.ts +24 -0
  47. package/types/api/engine-routing-schema-type.d.ts.map +1 -0
  48. package/types/api/engine-routing-schema.d.ts +9 -2
  49. package/types/api/engine-routing-schema.d.ts.map +1 -1
  50. package/types/api/engine-update-routing-schema-request.d.ts +9 -2
  51. package/types/api/engine-update-routing-schema-request.d.ts.map +1 -1
  52. package/types/api/index.d.ts +3 -0
  53. package/types/api/index.d.ts.map +1 -1
  54. package/types/api/routing-schema-service-api.d.ts +65 -8
  55. package/types/api/routing-schema-service-api.d.ts.map +1 -1
  56. package/types/socket/client.d.ts.map +1 -1
  57. package/types/socket/errors.d.ts +1 -1
  58. package/types/socket/errors.d.ts.map +1 -1
@@ -23335,12 +23335,13 @@ const RoutingSchemaServiceApiAxiosParamCreator = function (configuration) {
23335
23335
  * @param {Array<string>} [fields]
23336
23336
  * @param {Array<number>} [id]
23337
23337
  * @param {string} [name]
23338
- * @param {Array<string>} [type]
23338
+ * @param {Array<'default' | 'voice' | 'chat' | 'processing' | 'service'>} [type]
23339
23339
  * @param {boolean} [editor]
23340
+ * @param {Array<string>} [tags]
23340
23341
  * @param {*} [options] Override http request option.
23341
23342
  * @throws {RequiredError}
23342
23343
  */
23343
- searchRoutingSchema: async (page, size, q, sort, fields, id, name, type, editor, options = {}) => {
23344
+ searchRoutingSchema: async (page, size, q, sort, fields, id, name, type, editor, tags, options = {}) => {
23344
23345
  const localVarPath = `/routing/schema`;
23345
23346
  const localVarUrlObj = parse(localVarPath, true);
23346
23347
  let baseOptions;
@@ -23388,6 +23389,78 @@ const RoutingSchemaServiceApiAxiosParamCreator = function (configuration) {
23388
23389
  if (editor !== undefined) {
23389
23390
  localVarQueryParameter['editor'] = editor;
23390
23391
  }
23392
+ if (tags) {
23393
+ localVarQueryParameter['tags'] = tags;
23394
+ }
23395
+ localVarUrlObj.query = {
23396
+ ...localVarUrlObj.query,
23397
+ ...localVarQueryParameter,
23398
+ ...options.query,
23399
+ };
23400
+ // fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
23401
+ delete localVarUrlObj.search;
23402
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
23403
+ localVarRequestOptions.headers = {
23404
+ ...localVarHeaderParameter,
23405
+ ...headersFromBaseOptions,
23406
+ ...options.headers,
23407
+ };
23408
+ return {
23409
+ url: format(localVarUrlObj),
23410
+ options: localVarRequestOptions,
23411
+ };
23412
+ },
23413
+ /**
23414
+ *
23415
+ * @summary List RoutingSchemaTags
23416
+ * @param {number} [page]
23417
+ * @param {number} [size]
23418
+ * @param {string} [q]
23419
+ * @param {string} [sort]
23420
+ * @param {Array<string>} [fields]
23421
+ * @param {Array<'default' | 'voice' | 'chat' | 'processing' | 'service'>} [type]
23422
+ * @param {*} [options] Override http request option.
23423
+ * @throws {RequiredError}
23424
+ */
23425
+ searchRoutingSchemaTags: async (page, size, q, sort, fields, type, options = {}) => {
23426
+ const localVarPath = `/routing/schema/tags`;
23427
+ const localVarUrlObj = parse(localVarPath, true);
23428
+ let baseOptions;
23429
+ if (configuration) {
23430
+ baseOptions = configuration.baseOptions;
23431
+ }
23432
+ const localVarRequestOptions = {
23433
+ method: 'GET',
23434
+ ...baseOptions,
23435
+ ...options,
23436
+ };
23437
+ const localVarHeaderParameter = {};
23438
+ const localVarQueryParameter = {};
23439
+ // authentication AccessToken required
23440
+ if (configuration && configuration.apiKey) {
23441
+ const localVarApiKeyValue = typeof configuration.apiKey === 'function'
23442
+ ? await configuration.apiKey('X-Webitel-Access')
23443
+ : await configuration.apiKey;
23444
+ localVarHeaderParameter['X-Webitel-Access'] = localVarApiKeyValue;
23445
+ }
23446
+ if (page !== undefined) {
23447
+ localVarQueryParameter['page'] = page;
23448
+ }
23449
+ if (size !== undefined) {
23450
+ localVarQueryParameter['size'] = size;
23451
+ }
23452
+ if (q !== undefined) {
23453
+ localVarQueryParameter['q'] = q;
23454
+ }
23455
+ if (sort !== undefined) {
23456
+ localVarQueryParameter['sort'] = sort;
23457
+ }
23458
+ if (fields) {
23459
+ localVarQueryParameter['fields'] = fields;
23460
+ }
23461
+ if (type) {
23462
+ localVarQueryParameter['type'] = type;
23463
+ }
23391
23464
  localVarUrlObj.query = {
23392
23465
  ...localVarUrlObj.query,
23393
23466
  ...localVarQueryParameter,
@@ -23556,13 +23629,36 @@ const RoutingSchemaServiceApiFp = function (configuration) {
23556
23629
  * @param {Array<string>} [fields]
23557
23630
  * @param {Array<number>} [id]
23558
23631
  * @param {string} [name]
23559
- * @param {Array<string>} [type]
23632
+ * @param {Array<'default' | 'voice' | 'chat' | 'processing' | 'service'>} [type]
23560
23633
  * @param {boolean} [editor]
23634
+ * @param {Array<string>} [tags]
23635
+ * @param {*} [options] Override http request option.
23636
+ * @throws {RequiredError}
23637
+ */
23638
+ async searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, tags, options) {
23639
+ const localVarAxiosArgs = await RoutingSchemaServiceApiAxiosParamCreator(configuration).searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, tags, options);
23640
+ return (axios = globalAxios, basePath = BASE_PATH) => {
23641
+ const axiosRequestArgs = {
23642
+ ...localVarAxiosArgs.options,
23643
+ url: basePath + localVarAxiosArgs.url,
23644
+ };
23645
+ return axios.request(axiosRequestArgs);
23646
+ };
23647
+ },
23648
+ /**
23649
+ *
23650
+ * @summary List RoutingSchemaTags
23651
+ * @param {number} [page]
23652
+ * @param {number} [size]
23653
+ * @param {string} [q]
23654
+ * @param {string} [sort]
23655
+ * @param {Array<string>} [fields]
23656
+ * @param {Array<'default' | 'voice' | 'chat' | 'processing' | 'service'>} [type]
23561
23657
  * @param {*} [options] Override http request option.
23562
23658
  * @throws {RequiredError}
23563
23659
  */
23564
- async searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, options) {
23565
- const localVarAxiosArgs = await RoutingSchemaServiceApiAxiosParamCreator(configuration).searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, options);
23660
+ async searchRoutingSchemaTags(page, size, q, sort, fields, type, options) {
23661
+ const localVarAxiosArgs = await RoutingSchemaServiceApiAxiosParamCreator(configuration).searchRoutingSchemaTags(page, size, q, sort, fields, type, options);
23566
23662
  return (axios = globalAxios, basePath = BASE_PATH) => {
23567
23663
  const axiosRequestArgs = {
23568
23664
  ...localVarAxiosArgs.options,
@@ -23658,14 +23754,32 @@ const RoutingSchemaServiceApiFactory = function (configuration, basePath, axios)
23658
23754
  * @param {Array<string>} [fields]
23659
23755
  * @param {Array<number>} [id]
23660
23756
  * @param {string} [name]
23661
- * @param {Array<string>} [type]
23757
+ * @param {Array<'default' | 'voice' | 'chat' | 'processing' | 'service'>} [type]
23662
23758
  * @param {boolean} [editor]
23759
+ * @param {Array<string>} [tags]
23663
23760
  * @param {*} [options] Override http request option.
23664
23761
  * @throws {RequiredError}
23665
23762
  */
23666
- searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, options) {
23763
+ searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, tags, options) {
23667
23764
  return RoutingSchemaServiceApiFp(configuration)
23668
- .searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, options)
23765
+ .searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, tags, options)
23766
+ .then((request) => request(axios, basePath));
23767
+ },
23768
+ /**
23769
+ *
23770
+ * @summary List RoutingSchemaTags
23771
+ * @param {number} [page]
23772
+ * @param {number} [size]
23773
+ * @param {string} [q]
23774
+ * @param {string} [sort]
23775
+ * @param {Array<string>} [fields]
23776
+ * @param {Array<'default' | 'voice' | 'chat' | 'processing' | 'service'>} [type]
23777
+ * @param {*} [options] Override http request option.
23778
+ * @throws {RequiredError}
23779
+ */
23780
+ searchRoutingSchemaTags(page, size, q, sort, fields, type, options) {
23781
+ return RoutingSchemaServiceApiFp(configuration)
23782
+ .searchRoutingSchemaTags(page, size, q, sort, fields, type, options)
23669
23783
  .then((request) => request(axios, basePath));
23670
23784
  },
23671
23785
  /**
@@ -23755,15 +23869,34 @@ class RoutingSchemaServiceApi extends BaseAPI {
23755
23869
  * @param {Array<string>} [fields]
23756
23870
  * @param {Array<number>} [id]
23757
23871
  * @param {string} [name]
23758
- * @param {Array<string>} [type]
23872
+ * @param {Array<'default' | 'voice' | 'chat' | 'processing' | 'service'>} [type]
23759
23873
  * @param {boolean} [editor]
23874
+ * @param {Array<string>} [tags]
23760
23875
  * @param {*} [options] Override http request option.
23761
23876
  * @throws {RequiredError}
23762
23877
  * @memberof RoutingSchemaServiceApi
23763
23878
  */
23764
- searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, options) {
23879
+ searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, tags, options) {
23765
23880
  return RoutingSchemaServiceApiFp(this.configuration)
23766
- .searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, options)
23881
+ .searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, tags, options)
23882
+ .then((request) => request(this.axios, this.basePath));
23883
+ }
23884
+ /**
23885
+ *
23886
+ * @summary List RoutingSchemaTags
23887
+ * @param {number} [page]
23888
+ * @param {number} [size]
23889
+ * @param {string} [q]
23890
+ * @param {string} [sort]
23891
+ * @param {Array<string>} [fields]
23892
+ * @param {Array<'default' | 'voice' | 'chat' | 'processing' | 'service'>} [type]
23893
+ * @param {*} [options] Override http request option.
23894
+ * @throws {RequiredError}
23895
+ * @memberof RoutingSchemaServiceApi
23896
+ */
23897
+ searchRoutingSchemaTags(page, size, q, sort, fields, type, options) {
23898
+ return RoutingSchemaServiceApiFp(this.configuration)
23899
+ .searchRoutingSchemaTags(page, size, q, sort, fields, type, options)
23767
23900
  .then((request) => request(this.axios, this.basePath));
23768
23901
  }
23769
23902
  /**
@@ -25056,6 +25189,32 @@ var EngineBoolFilter;
25056
25189
  EngineBoolFilter["False"] = "false";
25057
25190
  })(EngineBoolFilter || (EngineBoolFilter = {}));
25058
25191
 
25192
+ // tslint:disable
25193
+ /**
25194
+ * Webitel engine API
25195
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
25196
+ *
25197
+ * The version of the OpenAPI document: 22.05.0
25198
+ * Contact: support@webitel.com
25199
+ *
25200
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
25201
+ * https://openapi-generator.tech
25202
+ * Do not edit the class manually.
25203
+ */
25204
+ /**
25205
+ *
25206
+ * @export
25207
+ * @enum {string}
25208
+ */
25209
+ var EngineRoutingSchemaType;
25210
+ (function (EngineRoutingSchemaType) {
25211
+ EngineRoutingSchemaType["Default"] = "default";
25212
+ EngineRoutingSchemaType["Voice"] = "voice";
25213
+ EngineRoutingSchemaType["Chat"] = "chat";
25214
+ EngineRoutingSchemaType["Processing"] = "processing";
25215
+ EngineRoutingSchemaType["Service"] = "service";
25216
+ })(EngineRoutingSchemaType || (EngineRoutingSchemaType = {}));
25217
+
25059
25218
  // tslint:disable
25060
25219
  /**
25061
25220
  * Webitel engine API
@@ -25563,7 +25722,7 @@ async function getMediaStream(constraints) {
25563
25722
 
25564
25723
  const getVersion = () => {
25565
25724
  // @ts-ignore
25566
- return '"0.1.154"';
25725
+ return '"0.1.157"';
25567
25726
  };
25568
25727
  var version = getVersion();
25569
25728
 
@@ -26791,10 +26950,10 @@ function wrapChannelMember(m) {
26791
26950
  return m;
26792
26951
  }
26793
26952
 
26794
- var TypeError$1;
26795
- (function (TypeError) {
26796
- TypeError["RolePermission"] = "api.context.permissions.app_error";
26797
- })(TypeError$1 || (TypeError$1 = {}));
26953
+ var TypeErrors;
26954
+ (function (TypeErrors) {
26955
+ TypeErrors["RolePermission"] = "api.context.permissions.app_error";
26956
+ })(TypeErrors || (TypeErrors = {}));
26798
26957
  class DeviceNotFoundError extends Error {
26799
26958
  constructor(msg) {
26800
26959
  super(msg);
@@ -27222,7 +27381,7 @@ class Client extends EventEmitter {
27222
27381
  }
27223
27382
  conversationDestroyed(conv) {
27224
27383
  return (conv.closedAt > 0 &&
27225
- !this.hasAgentTask(conv.task) &&
27384
+ (!this.hasAgentTask(conv.task) || !conv.hasReporting) &&
27226
27385
  (conv.hasReporting ||
27227
27386
  !(conv.lastAction === ChatActions.Close && conv.answeredAt > 0)));
27228
27387
  }
@@ -27337,13 +27496,13 @@ class Client extends EventEmitter {
27337
27496
  promise.resolve(message.data);
27338
27497
  }
27339
27498
  else {
27340
- /*
27341
- const err = message.error as BaseError
27342
- if (err && err.id === TypeError.RolePermission) {
27343
- this.emit('error', new RolePermissionError(err.detail))
27499
+ const err = message.error;
27500
+ if (err && err.id === TypeErrors.RolePermission) {
27501
+ promise.reject(new RolePermissionError(err.detail));
27502
+ }
27503
+ else {
27504
+ promise.reject(message.error);
27344
27505
  }
27345
- */
27346
- promise.reject(message.error);
27347
27506
  }
27348
27507
  }
27349
27508
  }
@@ -28026,5 +28185,5 @@ class ExternalClient extends ee_3 {
28026
28185
 
28027
28186
  // tslint:disable
28028
28187
 
28029
- 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 };
28188
+ 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, EngineRoutingSchemaType, HistoryFileJobHistoryFileJobAction, HistoryFileJobHistoryFileJobState, ProtobufNullValue, StorageImportSourceType, StorageProviderType, StorageServiceType, StorageUploadStatusCode, JobState, Response, Client, CallReportingStatus, CallActions, CallDirection, Call, AgentStatus, ChannelState, ChannelType, Agent, DeclineCause, ChatActions, ConversationState, Conversation, TypeErrors, DeviceNotFoundError, DeviceNotAllowPermissionError, RolePermissionError, SipClient, ExternalClient, SipPhone, Log };
28030
28189
  //# sourceMappingURL=index.esm.js.map