webitel-sdk 23.9.7 → 23.9.9
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 +131 -1
- 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 +126 -0
- 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-available-system-setting.js +13 -0
- package/esm2015/api/engine-available-system-setting.js.map +1 -0
- package/esm2015/api/engine-list-available-system-setting.js +13 -0
- package/esm2015/api/engine-list-available-system-setting.js.map +1 -0
- package/esm2015/api/engine-system-setting-name.js +24 -0
- package/esm2015/api/engine-system-setting-name.js.map +1 -0
- package/esm2015/api/index.js +3 -0
- package/esm2015/api/index.js.map +1 -1
- package/esm2015/api/system-setting-service-api.js +80 -0
- package/esm2015/api/system-setting-service-api.js.map +1 -1
- package/esm5/api/engine-available-system-setting.js +13 -0
- package/esm5/api/engine-available-system-setting.js.map +1 -0
- package/esm5/api/engine-list-available-system-setting.js +13 -0
- package/esm5/api/engine-list-available-system-setting.js.map +1 -0
- package/esm5/api/engine-system-setting-name.js +24 -0
- package/esm5/api/engine-system-setting-name.js.map +1 -0
- package/esm5/api/index.js +3 -0
- package/esm5/api/index.js.map +1 -1
- package/esm5/api/system-setting-service-api.js +93 -0
- package/esm5/api/system-setting-service-api.js.map +1 -1
- package/package.json +1 -1
- package/types/api/engine-attempt-callback-request.d.ts +6 -0
- package/types/api/engine-attempt-callback-request.d.ts.map +1 -1
- package/types/api/engine-attempt-result-request.d.ts +6 -0
- package/types/api/engine-attempt-result-request.d.ts.map +1 -1
- package/types/api/engine-available-system-setting.d.ts +25 -0
- package/types/api/engine-available-system-setting.d.ts.map +1 -0
- package/types/api/engine-create-system-setting-request.d.ts +3 -2
- package/types/api/engine-create-system-setting-request.d.ts.map +1 -1
- package/types/api/engine-list-available-system-setting.d.ts +32 -0
- package/types/api/engine-list-available-system-setting.d.ts.map +1 -0
- package/types/api/engine-system-setting-name.d.ts +22 -0
- package/types/api/engine-system-setting-name.d.ts.map +1 -0
- package/types/api/engine-system-setting.d.ts +3 -2
- package/types/api/engine-system-setting.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/system-setting-service-api.d.ts +26 -0
- package/types/api/system-setting-service-api.d.ts.map +1 -1
package/bundles/index.esm.js
CHANGED
|
@@ -35003,6 +35003,50 @@ const SystemSettingServiceApiAxiosParamCreator = function (configuration) {
|
|
|
35003
35003
|
options: localVarRequestOptions,
|
|
35004
35004
|
};
|
|
35005
35005
|
},
|
|
35006
|
+
/**
|
|
35007
|
+
*
|
|
35008
|
+
* @param {*} [options] Override http request option.
|
|
35009
|
+
* @throws {RequiredError}
|
|
35010
|
+
*/
|
|
35011
|
+
searchAvailableSystemSetting: async (options = {}) => {
|
|
35012
|
+
const localVarPath = `/settings/available`;
|
|
35013
|
+
const localVarUrlObj = parse(localVarPath, true);
|
|
35014
|
+
let baseOptions;
|
|
35015
|
+
if (configuration) {
|
|
35016
|
+
baseOptions = configuration.baseOptions;
|
|
35017
|
+
}
|
|
35018
|
+
const localVarRequestOptions = {
|
|
35019
|
+
method: 'GET',
|
|
35020
|
+
...baseOptions,
|
|
35021
|
+
...options,
|
|
35022
|
+
};
|
|
35023
|
+
const localVarHeaderParameter = {};
|
|
35024
|
+
const localVarQueryParameter = {};
|
|
35025
|
+
// authentication AccessToken required
|
|
35026
|
+
if (configuration && configuration.apiKey) {
|
|
35027
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
35028
|
+
? await configuration.apiKey('X-Webitel-Access')
|
|
35029
|
+
: await configuration.apiKey;
|
|
35030
|
+
localVarHeaderParameter['X-Webitel-Access'] = localVarApiKeyValue;
|
|
35031
|
+
}
|
|
35032
|
+
localVarUrlObj.query = {
|
|
35033
|
+
...localVarUrlObj.query,
|
|
35034
|
+
...localVarQueryParameter,
|
|
35035
|
+
...options.query,
|
|
35036
|
+
};
|
|
35037
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
35038
|
+
delete localVarUrlObj.search;
|
|
35039
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
35040
|
+
localVarRequestOptions.headers = {
|
|
35041
|
+
...localVarHeaderParameter,
|
|
35042
|
+
...headersFromBaseOptions,
|
|
35043
|
+
...options.headers,
|
|
35044
|
+
};
|
|
35045
|
+
return {
|
|
35046
|
+
url: format(localVarUrlObj),
|
|
35047
|
+
options: localVarRequestOptions,
|
|
35048
|
+
};
|
|
35049
|
+
},
|
|
35006
35050
|
/**
|
|
35007
35051
|
*
|
|
35008
35052
|
* @param {number} [page]
|
|
@@ -35200,6 +35244,21 @@ const SystemSettingServiceApiFp = function (configuration) {
|
|
|
35200
35244
|
return axios.request(axiosRequestArgs);
|
|
35201
35245
|
};
|
|
35202
35246
|
},
|
|
35247
|
+
/**
|
|
35248
|
+
*
|
|
35249
|
+
* @param {*} [options] Override http request option.
|
|
35250
|
+
* @throws {RequiredError}
|
|
35251
|
+
*/
|
|
35252
|
+
async searchAvailableSystemSetting(options) {
|
|
35253
|
+
const localVarAxiosArgs = await SystemSettingServiceApiAxiosParamCreator(configuration).searchAvailableSystemSetting(options);
|
|
35254
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
35255
|
+
const axiosRequestArgs = {
|
|
35256
|
+
...localVarAxiosArgs.options,
|
|
35257
|
+
url: basePath + localVarAxiosArgs.url,
|
|
35258
|
+
};
|
|
35259
|
+
return axios.request(axiosRequestArgs);
|
|
35260
|
+
};
|
|
35261
|
+
},
|
|
35203
35262
|
/**
|
|
35204
35263
|
*
|
|
35205
35264
|
* @param {number} [page]
|
|
@@ -35290,6 +35349,16 @@ const SystemSettingServiceApiFactory = function (configuration, basePath, axios)
|
|
|
35290
35349
|
.readSystemSetting(id, options)
|
|
35291
35350
|
.then((request) => request(axios, basePath));
|
|
35292
35351
|
},
|
|
35352
|
+
/**
|
|
35353
|
+
*
|
|
35354
|
+
* @param {*} [options] Override http request option.
|
|
35355
|
+
* @throws {RequiredError}
|
|
35356
|
+
*/
|
|
35357
|
+
searchAvailableSystemSetting(options) {
|
|
35358
|
+
return SystemSettingServiceApiFp(configuration)
|
|
35359
|
+
.searchAvailableSystemSetting(options)
|
|
35360
|
+
.then((request) => request(axios, basePath));
|
|
35361
|
+
},
|
|
35293
35362
|
/**
|
|
35294
35363
|
*
|
|
35295
35364
|
* @param {number} [page]
|
|
@@ -35375,6 +35444,17 @@ class SystemSettingServiceApi extends BaseAPI {
|
|
|
35375
35444
|
.readSystemSetting(id, options)
|
|
35376
35445
|
.then((request) => request(this.axios, this.basePath));
|
|
35377
35446
|
}
|
|
35447
|
+
/**
|
|
35448
|
+
*
|
|
35449
|
+
* @param {*} [options] Override http request option.
|
|
35450
|
+
* @throws {RequiredError}
|
|
35451
|
+
* @memberof SystemSettingServiceApi
|
|
35452
|
+
*/
|
|
35453
|
+
searchAvailableSystemSetting(options) {
|
|
35454
|
+
return SystemSettingServiceApiFp(this.configuration)
|
|
35455
|
+
.searchAvailableSystemSetting(options)
|
|
35456
|
+
.then((request) => request(this.axios, this.basePath));
|
|
35457
|
+
}
|
|
35378
35458
|
/**
|
|
35379
35459
|
*
|
|
35380
35460
|
* @param {number} [page]
|
|
@@ -38849,6 +38929,19 @@ var EngineAuditQuestionType;
|
|
|
38849
38929
|
* Do not edit the class manually.
|
|
38850
38930
|
*/
|
|
38851
38931
|
|
|
38932
|
+
// tslint:disable
|
|
38933
|
+
/**
|
|
38934
|
+
* Webitel API
|
|
38935
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
38936
|
+
*
|
|
38937
|
+
* The version of the OpenAPI document: 23.09.0
|
|
38938
|
+
* Contact: support@webitel.com
|
|
38939
|
+
*
|
|
38940
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
38941
|
+
* https://openapi-generator.tech
|
|
38942
|
+
* Do not edit the class manually.
|
|
38943
|
+
*/
|
|
38944
|
+
|
|
38852
38945
|
// tslint:disable
|
|
38853
38946
|
/**
|
|
38854
38947
|
* Webitel API
|
|
@@ -40965,6 +41058,19 @@ var EngineCommunicationChannels;
|
|
|
40965
41058
|
* Do not edit the class manually.
|
|
40966
41059
|
*/
|
|
40967
41060
|
|
|
41061
|
+
// tslint:disable
|
|
41062
|
+
/**
|
|
41063
|
+
* Webitel API
|
|
41064
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
41065
|
+
*
|
|
41066
|
+
* The version of the OpenAPI document: 23.09.0
|
|
41067
|
+
* Contact: support@webitel.com
|
|
41068
|
+
*
|
|
41069
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
41070
|
+
* https://openapi-generator.tech
|
|
41071
|
+
* Do not edit the class manually.
|
|
41072
|
+
*/
|
|
41073
|
+
|
|
40968
41074
|
// tslint:disable
|
|
40969
41075
|
/**
|
|
40970
41076
|
* Webitel API
|
|
@@ -41339,6 +41445,30 @@ var EngineRoutingSchemaType;
|
|
|
41339
41445
|
* Do not edit the class manually.
|
|
41340
41446
|
*/
|
|
41341
41447
|
|
|
41448
|
+
// tslint:disable
|
|
41449
|
+
/**
|
|
41450
|
+
* Webitel API
|
|
41451
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
41452
|
+
*
|
|
41453
|
+
* The version of the OpenAPI document: 23.09.0
|
|
41454
|
+
* Contact: support@webitel.com
|
|
41455
|
+
*
|
|
41456
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
41457
|
+
* https://openapi-generator.tech
|
|
41458
|
+
* Do not edit the class manually.
|
|
41459
|
+
*/
|
|
41460
|
+
/**
|
|
41461
|
+
*
|
|
41462
|
+
* @export
|
|
41463
|
+
* @enum {string}
|
|
41464
|
+
*/
|
|
41465
|
+
var EngineSystemSettingName;
|
|
41466
|
+
(function (EngineSystemSettingName) {
|
|
41467
|
+
EngineSystemSettingName["EmptySystemSettingsName"] = "empty_system_settings_name";
|
|
41468
|
+
EngineSystemSettingName["EnableOmnichannel"] = "enable_omnichannel";
|
|
41469
|
+
EngineSystemSettingName["MemberChunkSize"] = "member_chunk_size";
|
|
41470
|
+
})(EngineSystemSettingName || (EngineSystemSettingName = {}));
|
|
41471
|
+
|
|
41342
41472
|
// tslint:disable
|
|
41343
41473
|
/**
|
|
41344
41474
|
* Webitel API
|
|
@@ -46808,5 +46938,5 @@ class ExternalClient extends ee_3 {
|
|
|
46808
46938
|
|
|
46809
46939
|
// tslint:disable
|
|
46810
46940
|
|
|
46811
|
-
export { AgentPauseCauseServiceApiAxiosParamCreator, AgentPauseCauseServiceApiFp, AgentPauseCauseServiceApiFactory, AgentPauseCauseServiceApi, AgentServiceApiAxiosParamCreator, AgentServiceApiFp, AgentServiceApiFactory, AgentServiceApi, AgentSkillServiceApiAxiosParamCreator, AgentSkillServiceApiFp, AgentSkillServiceApiFactory, AgentSkillServiceApi, AgentTeamServiceApiAxiosParamCreator, AgentTeamServiceApiFp, AgentTeamServiceApiFactory, AgentTeamServiceApi, AuditFormServiceApiAxiosParamCreator, AuditFormServiceApiFp, AuditFormServiceApiFactory, AuditFormServiceApi, BackendProfileServiceApiAxiosParamCreator, BackendProfileServiceApiFp, BackendProfileServiceApiFactory, BackendProfileServiceApi, BucketServiceApiAxiosParamCreator, BucketServiceApiFp, BucketServiceApiFactory, BucketServiceApi, CalendarServiceApiAxiosParamCreator, CalendarServiceApiFp, CalendarServiceApiFactory, CalendarServiceApi, CallServiceApiAxiosParamCreator, CallServiceApiFp, CallServiceApiFactory, CallServiceApi, CatalogApiAxiosParamCreator, CatalogApiFp, CatalogApiFactory, CatalogApi, ChatHelperServiceApiAxiosParamCreator, ChatHelperServiceApiFp, ChatHelperServiceApiFactory, ChatHelperServiceApi, CognitiveProfileServiceApiAxiosParamCreator, CognitiveProfileServiceApiFp, CognitiveProfileServiceApiFactory, CognitiveProfileServiceApi, CommunicationTypeServiceApiAxiosParamCreator, CommunicationTypeServiceApiFp, CommunicationTypeServiceApiFactory, CommunicationTypeServiceApi, ConfigServiceApiAxiosParamCreator, ConfigServiceApiFp, ConfigServiceApiFactory, ConfigServiceApi, ContactsApiAxiosParamCreator, ContactsApiFp, ContactsApiFactory, ContactsApi, EmailProfileServiceApiAxiosParamCreator, EmailProfileServiceApiFp, EmailProfileServiceApiFactory, EmailProfileServiceApi, EmailsApiAxiosParamCreator, EmailsApiFp, EmailsApiFactory, EmailsApi, FileServiceApiAxiosParamCreator, FileServiceApiFp, FileServiceApiFactory, FileServiceApi, FileTranscriptServiceApiAxiosParamCreator, FileTranscriptServiceApiFp, FileTranscriptServiceApiFactory, FileTranscriptServiceApi, ImportTemplateServiceApiAxiosParamCreator, ImportTemplateServiceApiFp, ImportTemplateServiceApiFactory, ImportTemplateServiceApi, LabelsApiAxiosParamCreator, LabelsApiFp, LabelsApiFactory, LabelsApi, ListServiceApiAxiosParamCreator, ListServiceApiFp, ListServiceApiFactory, ListServiceApi, LoggerServiceApiAxiosParamCreator, LoggerServiceApiFp, LoggerServiceApiFactory, LoggerServiceApi, ManagersApiAxiosParamCreator, ManagersApiFp, ManagersApiFactory, ManagersApi, MediaFileServiceApiAxiosParamCreator, MediaFileServiceApiFp, MediaFileServiceApiFactory, MediaFileServiceApi, MemberServiceApiAxiosParamCreator, MemberServiceApiFp, MemberServiceApiFactory, MemberServiceApi, OutboundResourceGroupServiceApiAxiosParamCreator, OutboundResourceGroupServiceApiFp, OutboundResourceGroupServiceApiFactory, OutboundResourceGroupServiceApi, OutboundResourceServiceApiAxiosParamCreator, OutboundResourceServiceApiFp, OutboundResourceServiceApiFactory, OutboundResourceServiceApi, PhonesApiAxiosParamCreator, PhonesApiFp, PhonesApiFactory, PhonesApi, PresetQueryServiceApiAxiosParamCreator, PresetQueryServiceApiFp, PresetQueryServiceApiFactory, PresetQueryServiceApi, 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, SystemSettingServiceApiAxiosParamCreator, SystemSettingServiceApiFp, SystemSettingServiceApiFactory, SystemSettingServiceApi, TimezonesApiAxiosParamCreator, TimezonesApiFp, TimezonesApiFactory, TimezonesApi, TriggerServiceApiAxiosParamCreator, TriggerServiceApiFp, TriggerServiceApiFactory, TriggerServiceApi, UserHelperServiceApiAxiosParamCreator, UserHelperServiceApiFp, UserHelperServiceApiFactory, UserHelperServiceApi, VariablesApiAxiosParamCreator, VariablesApiFp, VariablesApiFactory, VariablesApi, Configuration, EngineAuditQuestionType, EngineBoolFilter, EngineCommunicationChannels, EnginePresetQuerySection, EngineRoutingSchemaType, EngineTriggerJobState, EngineTriggerType, GoogleProtobufNullValue, HistoryFileJobHistoryFileJobAction, HistoryFileJobHistoryFileJobState, LoggerAction, LoggerAvailableSystemObjects, ProtobufNullValue, StorageImportSourceType, StorageProviderType, StorageServiceType, StorageUploadStatusCode, WebitelContactsAccessMode, JobState, Response, Client, CallReportingStatus, EavesdropState, EavesdropType, CallActions, CallDirection, Call, AgentStatus, ChannelState, ChannelType, Agent, DeclineCause, ChatActions, ConversationState, Conversation, TypeErrors, DeviceNotFoundError, DeviceNotAllowPermissionError, RolePermissionError, LicencePermissionError, PauseNotAllowedError, SipClient, ExternalClient, SipPhone, Log };
|
|
46941
|
+
export { AgentPauseCauseServiceApiAxiosParamCreator, AgentPauseCauseServiceApiFp, AgentPauseCauseServiceApiFactory, AgentPauseCauseServiceApi, AgentServiceApiAxiosParamCreator, AgentServiceApiFp, AgentServiceApiFactory, AgentServiceApi, AgentSkillServiceApiAxiosParamCreator, AgentSkillServiceApiFp, AgentSkillServiceApiFactory, AgentSkillServiceApi, AgentTeamServiceApiAxiosParamCreator, AgentTeamServiceApiFp, AgentTeamServiceApiFactory, AgentTeamServiceApi, AuditFormServiceApiAxiosParamCreator, AuditFormServiceApiFp, AuditFormServiceApiFactory, AuditFormServiceApi, BackendProfileServiceApiAxiosParamCreator, BackendProfileServiceApiFp, BackendProfileServiceApiFactory, BackendProfileServiceApi, BucketServiceApiAxiosParamCreator, BucketServiceApiFp, BucketServiceApiFactory, BucketServiceApi, CalendarServiceApiAxiosParamCreator, CalendarServiceApiFp, CalendarServiceApiFactory, CalendarServiceApi, CallServiceApiAxiosParamCreator, CallServiceApiFp, CallServiceApiFactory, CallServiceApi, CatalogApiAxiosParamCreator, CatalogApiFp, CatalogApiFactory, CatalogApi, ChatHelperServiceApiAxiosParamCreator, ChatHelperServiceApiFp, ChatHelperServiceApiFactory, ChatHelperServiceApi, CognitiveProfileServiceApiAxiosParamCreator, CognitiveProfileServiceApiFp, CognitiveProfileServiceApiFactory, CognitiveProfileServiceApi, CommunicationTypeServiceApiAxiosParamCreator, CommunicationTypeServiceApiFp, CommunicationTypeServiceApiFactory, CommunicationTypeServiceApi, ConfigServiceApiAxiosParamCreator, ConfigServiceApiFp, ConfigServiceApiFactory, ConfigServiceApi, ContactsApiAxiosParamCreator, ContactsApiFp, ContactsApiFactory, ContactsApi, EmailProfileServiceApiAxiosParamCreator, EmailProfileServiceApiFp, EmailProfileServiceApiFactory, EmailProfileServiceApi, EmailsApiAxiosParamCreator, EmailsApiFp, EmailsApiFactory, EmailsApi, FileServiceApiAxiosParamCreator, FileServiceApiFp, FileServiceApiFactory, FileServiceApi, FileTranscriptServiceApiAxiosParamCreator, FileTranscriptServiceApiFp, FileTranscriptServiceApiFactory, FileTranscriptServiceApi, ImportTemplateServiceApiAxiosParamCreator, ImportTemplateServiceApiFp, ImportTemplateServiceApiFactory, ImportTemplateServiceApi, LabelsApiAxiosParamCreator, LabelsApiFp, LabelsApiFactory, LabelsApi, ListServiceApiAxiosParamCreator, ListServiceApiFp, ListServiceApiFactory, ListServiceApi, LoggerServiceApiAxiosParamCreator, LoggerServiceApiFp, LoggerServiceApiFactory, LoggerServiceApi, ManagersApiAxiosParamCreator, ManagersApiFp, ManagersApiFactory, ManagersApi, MediaFileServiceApiAxiosParamCreator, MediaFileServiceApiFp, MediaFileServiceApiFactory, MediaFileServiceApi, MemberServiceApiAxiosParamCreator, MemberServiceApiFp, MemberServiceApiFactory, MemberServiceApi, OutboundResourceGroupServiceApiAxiosParamCreator, OutboundResourceGroupServiceApiFp, OutboundResourceGroupServiceApiFactory, OutboundResourceGroupServiceApi, OutboundResourceServiceApiAxiosParamCreator, OutboundResourceServiceApiFp, OutboundResourceServiceApiFactory, OutboundResourceServiceApi, PhonesApiAxiosParamCreator, PhonesApiFp, PhonesApiFactory, PhonesApi, PresetQueryServiceApiAxiosParamCreator, PresetQueryServiceApiFp, PresetQueryServiceApiFactory, PresetQueryServiceApi, 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, SystemSettingServiceApiAxiosParamCreator, SystemSettingServiceApiFp, SystemSettingServiceApiFactory, SystemSettingServiceApi, TimezonesApiAxiosParamCreator, TimezonesApiFp, TimezonesApiFactory, TimezonesApi, TriggerServiceApiAxiosParamCreator, TriggerServiceApiFp, TriggerServiceApiFactory, TriggerServiceApi, UserHelperServiceApiAxiosParamCreator, UserHelperServiceApiFp, UserHelperServiceApiFactory, UserHelperServiceApi, VariablesApiAxiosParamCreator, VariablesApiFp, VariablesApiFactory, VariablesApi, Configuration, EngineAuditQuestionType, EngineBoolFilter, EngineCommunicationChannels, EnginePresetQuerySection, EngineRoutingSchemaType, EngineSystemSettingName, EngineTriggerJobState, EngineTriggerType, GoogleProtobufNullValue, HistoryFileJobHistoryFileJobAction, HistoryFileJobHistoryFileJobState, LoggerAction, LoggerAvailableSystemObjects, ProtobufNullValue, StorageImportSourceType, StorageProviderType, StorageServiceType, StorageUploadStatusCode, WebitelContactsAccessMode, JobState, Response, Client, CallReportingStatus, EavesdropState, EavesdropType, CallActions, CallDirection, Call, AgentStatus, ChannelState, ChannelType, Agent, DeclineCause, ChatActions, ConversationState, Conversation, TypeErrors, DeviceNotFoundError, DeviceNotAllowPermissionError, RolePermissionError, LicencePermissionError, PauseNotAllowedError, SipClient, ExternalClient, SipPhone, Log };
|
|
46812
46942
|
//# sourceMappingURL=index.esm.js.map
|