webitel-sdk 0.1.155 → 0.1.156
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/bundles/index.esm.js +172 -13
- package/bundles/index.esm.js.map +1 -1
- package/bundles/index.esm.min.js +1 -1
- package/bundles/index.esm.min.js.map +1 -1
- package/bundles/index.umd.js +167 -12
- package/bundles/index.umd.js.map +1 -1
- package/bundles/index.umd.min.js +1 -1
- package/bundles/index.umd.min.js.map +1 -1
- package/esm2015/api/engine-list-routing-schema-tags.js +13 -0
- package/esm2015/api/engine-list-routing-schema-tags.js.map +1 -0
- package/esm2015/api/engine-routing-schema-tag.js +13 -0
- package/esm2015/api/engine-routing-schema-tag.js.map +1 -0
- package/esm2015/api/engine-routing-schema-type.js +26 -0
- package/esm2015/api/engine-routing-schema-type.js.map +1 -0
- package/esm2015/api/index.js +1 -0
- package/esm2015/api/index.js.map +1 -1
- package/esm2015/api/routing-schema-service-api.js +144 -11
- package/esm2015/api/routing-schema-service-api.js.map +1 -1
- package/esm5/api/engine-list-routing-schema-tags.js +13 -0
- package/esm5/api/engine-list-routing-schema-tags.js.map +1 -0
- package/esm5/api/engine-routing-schema-tag.js +13 -0
- package/esm5/api/engine-routing-schema-tag.js.map +1 -0
- package/esm5/api/engine-routing-schema-type.js +26 -0
- package/esm5/api/engine-routing-schema-type.js.map +1 -0
- package/esm5/api/index.js +1 -0
- package/esm5/api/index.js.map +1 -1
- package/esm5/api/routing-schema-service-api.js +157 -11
- package/esm5/api/routing-schema-service-api.js.map +1 -1
- package/package.json +1 -1
- package/types/api/engine-create-routing-schema-request.d.ts +9 -2
- package/types/api/engine-create-routing-schema-request.d.ts.map +1 -1
- package/types/api/engine-list-routing-schema-tags.d.ts +32 -0
- package/types/api/engine-list-routing-schema-tags.d.ts.map +1 -0
- package/types/api/engine-patch-routing-schema-request.d.ts +9 -2
- package/types/api/engine-patch-routing-schema-request.d.ts.map +1 -1
- package/types/api/engine-routing-schema-tag.d.ts +31 -0
- package/types/api/engine-routing-schema-tag.d.ts.map +1 -0
- package/types/api/engine-routing-schema-type.d.ts +24 -0
- package/types/api/engine-routing-schema-type.d.ts.map +1 -0
- package/types/api/engine-routing-schema.d.ts +9 -2
- package/types/api/engine-routing-schema.d.ts.map +1 -1
- package/types/api/engine-update-routing-schema-request.d.ts +9 -2
- package/types/api/engine-update-routing-schema-request.d.ts.map +1 -1
- package/types/api/index.d.ts +3 -0
- package/types/api/index.d.ts.map +1 -1
- package/types/api/routing-schema-service-api.d.ts +65 -8
- package/types/api/routing-schema-service-api.d.ts.map +1 -1
package/bundles/index.esm.js
CHANGED
|
@@ -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<
|
|
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<
|
|
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
|
|
23565
|
-
const localVarAxiosArgs = await RoutingSchemaServiceApiAxiosParamCreator(configuration).
|
|
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<
|
|
23757
|
+
* @param {Array<'default' | 'voice' | 'chat' | 'processing' | 'service'>} [type]
|
|
23662
23758
|
* @param {boolean} [editor]
|
|
23759
|
+
* @param {Array<string>} [tags]
|
|
23760
|
+
* @param {*} [options] Override http request option.
|
|
23761
|
+
* @throws {RequiredError}
|
|
23762
|
+
*/
|
|
23763
|
+
searchRoutingSchema(page, size, q, sort, fields, id, name, type, editor, tags, options) {
|
|
23764
|
+
return RoutingSchemaServiceApiFp(configuration)
|
|
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]
|
|
23663
23777
|
* @param {*} [options] Override http request option.
|
|
23664
23778
|
* @throws {RequiredError}
|
|
23665
23779
|
*/
|
|
23666
|
-
|
|
23780
|
+
searchRoutingSchemaTags(page, size, q, sort, fields, type, options) {
|
|
23667
23781
|
return RoutingSchemaServiceApiFp(configuration)
|
|
23668
|
-
.
|
|
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<
|
|
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.
|
|
25725
|
+
return '"0.1.156"';
|
|
25567
25726
|
};
|
|
25568
25727
|
var version = getVersion();
|
|
25569
25728
|
|
|
@@ -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, TypeErrors, 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
|