webitel-sdk 23.7.8 → 23.7.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 +689 -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 +776 -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-create-system-setting-request.js +13 -0
- package/esm2015/api/engine-create-system-setting-request.js.map +1 -0
- package/esm2015/api/engine-list-system-setting.js +13 -0
- package/esm2015/api/engine-list-system-setting.js.map +1 -0
- package/esm2015/api/engine-patch-system-setting-request.js +13 -0
- package/esm2015/api/engine-patch-system-setting-request.js.map +1 -0
- package/esm2015/api/engine-system-setting.js +13 -0
- package/esm2015/api/engine-system-setting.js.map +1 -0
- package/esm2015/api/engine-update-system-setting-request.js +13 -0
- package/esm2015/api/engine-update-system-setting-request.js.map +1 -0
- package/esm2015/api/index.js +5 -0
- package/esm2015/api/index.js.map +1 -1
- package/esm2015/api/system-setting-service-api.js +639 -0
- package/esm2015/api/system-setting-service-api.js.map +1 -0
- package/esm2015/api.js +1 -0
- package/esm2015/api.js.map +1 -1
- package/esm5/api/engine-create-system-setting-request.js +13 -0
- package/esm5/api/engine-create-system-setting-request.js.map +1 -0
- package/esm5/api/engine-list-system-setting.js +13 -0
- package/esm5/api/engine-list-system-setting.js.map +1 -0
- package/esm5/api/engine-patch-system-setting-request.js +13 -0
- package/esm5/api/engine-patch-system-setting-request.js.map +1 -0
- package/esm5/api/engine-system-setting.js +13 -0
- package/esm5/api/engine-system-setting.js.map +1 -0
- package/esm5/api/engine-update-system-setting-request.js +13 -0
- package/esm5/api/engine-update-system-setting-request.js.map +1 -0
- package/esm5/api/index.js +5 -0
- package/esm5/api/index.js.map +1 -1
- package/esm5/api/system-setting-service-api.js +725 -0
- package/esm5/api/system-setting-service-api.js.map +1 -0
- package/esm5/api.js +1 -0
- package/esm5/api.js.map +1 -1
- package/package.json +1 -1
- package/types/api/engine-create-system-setting-request.d.ts +31 -0
- package/types/api/engine-create-system-setting-request.d.ts.map +1 -0
- package/types/api/engine-list-system-setting.d.ts +32 -0
- package/types/api/engine-list-system-setting.d.ts.map +1 -0
- package/types/api/engine-patch-system-setting-request.d.ts +37 -0
- package/types/api/engine-patch-system-setting-request.d.ts.map +1 -0
- package/types/api/engine-system-setting.d.ts +37 -0
- package/types/api/engine-system-setting.d.ts.map +1 -0
- package/types/api/engine-update-system-setting-request.d.ts +31 -0
- package/types/api/engine-update-system-setting-request.d.ts.map +1 -0
- package/types/api/index.d.ts +5 -0
- package/types/api/index.d.ts.map +1 -1
- package/types/api/system-setting-service-api.d.ts +244 -0
- package/types/api/system-setting-service-api.d.ts.map +1 -0
- package/types/api.d.ts +1 -0
- package/types/api.d.ts.map +1 -1
package/bundles/index.esm.js
CHANGED
|
@@ -32721,6 +32721,629 @@ class SkillServiceApi extends BaseAPI {
|
|
|
32721
32721
|
}
|
|
32722
32722
|
}
|
|
32723
32723
|
|
|
32724
|
+
// tslint:disable
|
|
32725
|
+
/**
|
|
32726
|
+
* SystemSettingServiceApi - axios parameter creator
|
|
32727
|
+
* @export
|
|
32728
|
+
*/
|
|
32729
|
+
const SystemSettingServiceApiAxiosParamCreator = function (configuration) {
|
|
32730
|
+
return {
|
|
32731
|
+
/**
|
|
32732
|
+
*
|
|
32733
|
+
* @param {EngineCreateSystemSettingRequest} body
|
|
32734
|
+
* @param {*} [options] Override http request option.
|
|
32735
|
+
* @throws {RequiredError}
|
|
32736
|
+
*/
|
|
32737
|
+
createSystemSetting: async (body, options = {}) => {
|
|
32738
|
+
// verify required parameter 'body' is not null or undefined
|
|
32739
|
+
if (body === null || body === undefined) {
|
|
32740
|
+
throw new RequiredError('body', 'Required parameter body was null or undefined when calling createSystemSetting.');
|
|
32741
|
+
}
|
|
32742
|
+
const localVarPath = `/settings`;
|
|
32743
|
+
const localVarUrlObj = parse(localVarPath, true);
|
|
32744
|
+
let baseOptions;
|
|
32745
|
+
if (configuration) {
|
|
32746
|
+
baseOptions = configuration.baseOptions;
|
|
32747
|
+
}
|
|
32748
|
+
const localVarRequestOptions = {
|
|
32749
|
+
method: 'POST',
|
|
32750
|
+
...baseOptions,
|
|
32751
|
+
...options,
|
|
32752
|
+
};
|
|
32753
|
+
const localVarHeaderParameter = {};
|
|
32754
|
+
const localVarQueryParameter = {};
|
|
32755
|
+
// authentication AccessToken required
|
|
32756
|
+
if (configuration && configuration.apiKey) {
|
|
32757
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
32758
|
+
? await configuration.apiKey('X-Webitel-Access')
|
|
32759
|
+
: await configuration.apiKey;
|
|
32760
|
+
localVarHeaderParameter['X-Webitel-Access'] = localVarApiKeyValue;
|
|
32761
|
+
}
|
|
32762
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
32763
|
+
localVarUrlObj.query = {
|
|
32764
|
+
...localVarUrlObj.query,
|
|
32765
|
+
...localVarQueryParameter,
|
|
32766
|
+
...options.query,
|
|
32767
|
+
};
|
|
32768
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
32769
|
+
delete localVarUrlObj.search;
|
|
32770
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32771
|
+
localVarRequestOptions.headers = {
|
|
32772
|
+
...localVarHeaderParameter,
|
|
32773
|
+
...headersFromBaseOptions,
|
|
32774
|
+
...options.headers,
|
|
32775
|
+
};
|
|
32776
|
+
const needsSerialization = typeof body !== 'string' ||
|
|
32777
|
+
localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
32778
|
+
localVarRequestOptions.data = needsSerialization
|
|
32779
|
+
? JSON.stringify(body !== undefined ? body : {})
|
|
32780
|
+
: body || '';
|
|
32781
|
+
return {
|
|
32782
|
+
url: format(localVarUrlObj),
|
|
32783
|
+
options: localVarRequestOptions,
|
|
32784
|
+
};
|
|
32785
|
+
},
|
|
32786
|
+
/**
|
|
32787
|
+
*
|
|
32788
|
+
* @param {number} id
|
|
32789
|
+
* @param {*} [options] Override http request option.
|
|
32790
|
+
* @throws {RequiredError}
|
|
32791
|
+
*/
|
|
32792
|
+
deleteSystemSetting: async (id, options = {}) => {
|
|
32793
|
+
// verify required parameter 'id' is not null or undefined
|
|
32794
|
+
if (id === null || id === undefined) {
|
|
32795
|
+
throw new RequiredError('id', 'Required parameter id was null or undefined when calling deleteSystemSetting.');
|
|
32796
|
+
}
|
|
32797
|
+
const localVarPath = `/settings/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
32798
|
+
const localVarUrlObj = parse(localVarPath, true);
|
|
32799
|
+
let baseOptions;
|
|
32800
|
+
if (configuration) {
|
|
32801
|
+
baseOptions = configuration.baseOptions;
|
|
32802
|
+
}
|
|
32803
|
+
const localVarRequestOptions = {
|
|
32804
|
+
method: 'DELETE',
|
|
32805
|
+
...baseOptions,
|
|
32806
|
+
...options,
|
|
32807
|
+
};
|
|
32808
|
+
const localVarHeaderParameter = {};
|
|
32809
|
+
const localVarQueryParameter = {};
|
|
32810
|
+
// authentication AccessToken required
|
|
32811
|
+
if (configuration && configuration.apiKey) {
|
|
32812
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
32813
|
+
? await configuration.apiKey('X-Webitel-Access')
|
|
32814
|
+
: await configuration.apiKey;
|
|
32815
|
+
localVarHeaderParameter['X-Webitel-Access'] = localVarApiKeyValue;
|
|
32816
|
+
}
|
|
32817
|
+
localVarUrlObj.query = {
|
|
32818
|
+
...localVarUrlObj.query,
|
|
32819
|
+
...localVarQueryParameter,
|
|
32820
|
+
...options.query,
|
|
32821
|
+
};
|
|
32822
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
32823
|
+
delete localVarUrlObj.search;
|
|
32824
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32825
|
+
localVarRequestOptions.headers = {
|
|
32826
|
+
...localVarHeaderParameter,
|
|
32827
|
+
...headersFromBaseOptions,
|
|
32828
|
+
...options.headers,
|
|
32829
|
+
};
|
|
32830
|
+
return {
|
|
32831
|
+
url: format(localVarUrlObj),
|
|
32832
|
+
options: localVarRequestOptions,
|
|
32833
|
+
};
|
|
32834
|
+
},
|
|
32835
|
+
/**
|
|
32836
|
+
*
|
|
32837
|
+
* @param {number} id
|
|
32838
|
+
* @param {EnginePatchSystemSettingRequest} body
|
|
32839
|
+
* @param {*} [options] Override http request option.
|
|
32840
|
+
* @throws {RequiredError}
|
|
32841
|
+
*/
|
|
32842
|
+
patchSystemSetting: async (id, body, options = {}) => {
|
|
32843
|
+
// verify required parameter 'id' is not null or undefined
|
|
32844
|
+
if (id === null || id === undefined) {
|
|
32845
|
+
throw new RequiredError('id', 'Required parameter id was null or undefined when calling patchSystemSetting.');
|
|
32846
|
+
}
|
|
32847
|
+
// verify required parameter 'body' is not null or undefined
|
|
32848
|
+
if (body === null || body === undefined) {
|
|
32849
|
+
throw new RequiredError('body', 'Required parameter body was null or undefined when calling patchSystemSetting.');
|
|
32850
|
+
}
|
|
32851
|
+
const localVarPath = `/settings/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
32852
|
+
const localVarUrlObj = parse(localVarPath, true);
|
|
32853
|
+
let baseOptions;
|
|
32854
|
+
if (configuration) {
|
|
32855
|
+
baseOptions = configuration.baseOptions;
|
|
32856
|
+
}
|
|
32857
|
+
const localVarRequestOptions = {
|
|
32858
|
+
method: 'PATCH',
|
|
32859
|
+
...baseOptions,
|
|
32860
|
+
...options,
|
|
32861
|
+
};
|
|
32862
|
+
const localVarHeaderParameter = {};
|
|
32863
|
+
const localVarQueryParameter = {};
|
|
32864
|
+
// authentication AccessToken required
|
|
32865
|
+
if (configuration && configuration.apiKey) {
|
|
32866
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
32867
|
+
? await configuration.apiKey('X-Webitel-Access')
|
|
32868
|
+
: await configuration.apiKey;
|
|
32869
|
+
localVarHeaderParameter['X-Webitel-Access'] = localVarApiKeyValue;
|
|
32870
|
+
}
|
|
32871
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
32872
|
+
localVarUrlObj.query = {
|
|
32873
|
+
...localVarUrlObj.query,
|
|
32874
|
+
...localVarQueryParameter,
|
|
32875
|
+
...options.query,
|
|
32876
|
+
};
|
|
32877
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
32878
|
+
delete localVarUrlObj.search;
|
|
32879
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32880
|
+
localVarRequestOptions.headers = {
|
|
32881
|
+
...localVarHeaderParameter,
|
|
32882
|
+
...headersFromBaseOptions,
|
|
32883
|
+
...options.headers,
|
|
32884
|
+
};
|
|
32885
|
+
const needsSerialization = typeof body !== 'string' ||
|
|
32886
|
+
localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
32887
|
+
localVarRequestOptions.data = needsSerialization
|
|
32888
|
+
? JSON.stringify(body !== undefined ? body : {})
|
|
32889
|
+
: body || '';
|
|
32890
|
+
return {
|
|
32891
|
+
url: format(localVarUrlObj),
|
|
32892
|
+
options: localVarRequestOptions,
|
|
32893
|
+
};
|
|
32894
|
+
},
|
|
32895
|
+
/**
|
|
32896
|
+
*
|
|
32897
|
+
* @param {number} id
|
|
32898
|
+
* @param {*} [options] Override http request option.
|
|
32899
|
+
* @throws {RequiredError}
|
|
32900
|
+
*/
|
|
32901
|
+
readSystemSetting: async (id, options = {}) => {
|
|
32902
|
+
// verify required parameter 'id' is not null or undefined
|
|
32903
|
+
if (id === null || id === undefined) {
|
|
32904
|
+
throw new RequiredError('id', 'Required parameter id was null or undefined when calling readSystemSetting.');
|
|
32905
|
+
}
|
|
32906
|
+
const localVarPath = `/settings/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
32907
|
+
const localVarUrlObj = parse(localVarPath, true);
|
|
32908
|
+
let baseOptions;
|
|
32909
|
+
if (configuration) {
|
|
32910
|
+
baseOptions = configuration.baseOptions;
|
|
32911
|
+
}
|
|
32912
|
+
const localVarRequestOptions = {
|
|
32913
|
+
method: 'GET',
|
|
32914
|
+
...baseOptions,
|
|
32915
|
+
...options,
|
|
32916
|
+
};
|
|
32917
|
+
const localVarHeaderParameter = {};
|
|
32918
|
+
const localVarQueryParameter = {};
|
|
32919
|
+
// authentication AccessToken required
|
|
32920
|
+
if (configuration && configuration.apiKey) {
|
|
32921
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
32922
|
+
? await configuration.apiKey('X-Webitel-Access')
|
|
32923
|
+
: await configuration.apiKey;
|
|
32924
|
+
localVarHeaderParameter['X-Webitel-Access'] = localVarApiKeyValue;
|
|
32925
|
+
}
|
|
32926
|
+
localVarUrlObj.query = {
|
|
32927
|
+
...localVarUrlObj.query,
|
|
32928
|
+
...localVarQueryParameter,
|
|
32929
|
+
...options.query,
|
|
32930
|
+
};
|
|
32931
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
32932
|
+
delete localVarUrlObj.search;
|
|
32933
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32934
|
+
localVarRequestOptions.headers = {
|
|
32935
|
+
...localVarHeaderParameter,
|
|
32936
|
+
...headersFromBaseOptions,
|
|
32937
|
+
...options.headers,
|
|
32938
|
+
};
|
|
32939
|
+
return {
|
|
32940
|
+
url: format(localVarUrlObj),
|
|
32941
|
+
options: localVarRequestOptions,
|
|
32942
|
+
};
|
|
32943
|
+
},
|
|
32944
|
+
/**
|
|
32945
|
+
*
|
|
32946
|
+
* @param {number} [page]
|
|
32947
|
+
* @param {number} [size]
|
|
32948
|
+
* @param {string} [q]
|
|
32949
|
+
* @param {string} [sort]
|
|
32950
|
+
* @param {Array<string>} [fields]
|
|
32951
|
+
* @param {*} [options] Override http request option.
|
|
32952
|
+
* @throws {RequiredError}
|
|
32953
|
+
*/
|
|
32954
|
+
searchSystemSetting: async (page, size, q, sort, fields, options = {}) => {
|
|
32955
|
+
const localVarPath = `/settings`;
|
|
32956
|
+
const localVarUrlObj = parse(localVarPath, true);
|
|
32957
|
+
let baseOptions;
|
|
32958
|
+
if (configuration) {
|
|
32959
|
+
baseOptions = configuration.baseOptions;
|
|
32960
|
+
}
|
|
32961
|
+
const localVarRequestOptions = {
|
|
32962
|
+
method: 'GET',
|
|
32963
|
+
...baseOptions,
|
|
32964
|
+
...options,
|
|
32965
|
+
};
|
|
32966
|
+
const localVarHeaderParameter = {};
|
|
32967
|
+
const localVarQueryParameter = {};
|
|
32968
|
+
// authentication AccessToken required
|
|
32969
|
+
if (configuration && configuration.apiKey) {
|
|
32970
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
32971
|
+
? await configuration.apiKey('X-Webitel-Access')
|
|
32972
|
+
: await configuration.apiKey;
|
|
32973
|
+
localVarHeaderParameter['X-Webitel-Access'] = localVarApiKeyValue;
|
|
32974
|
+
}
|
|
32975
|
+
if (page !== undefined) {
|
|
32976
|
+
localVarQueryParameter['page'] = page;
|
|
32977
|
+
}
|
|
32978
|
+
if (size !== undefined) {
|
|
32979
|
+
localVarQueryParameter['size'] = size;
|
|
32980
|
+
}
|
|
32981
|
+
if (q !== undefined) {
|
|
32982
|
+
localVarQueryParameter['q'] = q;
|
|
32983
|
+
}
|
|
32984
|
+
if (sort !== undefined) {
|
|
32985
|
+
localVarQueryParameter['sort'] = sort;
|
|
32986
|
+
}
|
|
32987
|
+
if (fields) {
|
|
32988
|
+
localVarQueryParameter['fields'] = fields;
|
|
32989
|
+
}
|
|
32990
|
+
localVarUrlObj.query = {
|
|
32991
|
+
...localVarUrlObj.query,
|
|
32992
|
+
...localVarQueryParameter,
|
|
32993
|
+
...options.query,
|
|
32994
|
+
};
|
|
32995
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
32996
|
+
delete localVarUrlObj.search;
|
|
32997
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
32998
|
+
localVarRequestOptions.headers = {
|
|
32999
|
+
...localVarHeaderParameter,
|
|
33000
|
+
...headersFromBaseOptions,
|
|
33001
|
+
...options.headers,
|
|
33002
|
+
};
|
|
33003
|
+
return {
|
|
33004
|
+
url: format(localVarUrlObj),
|
|
33005
|
+
options: localVarRequestOptions,
|
|
33006
|
+
};
|
|
33007
|
+
},
|
|
33008
|
+
/**
|
|
33009
|
+
*
|
|
33010
|
+
* @param {number} id
|
|
33011
|
+
* @param {EngineUpdateSystemSettingRequest} body
|
|
33012
|
+
* @param {*} [options] Override http request option.
|
|
33013
|
+
* @throws {RequiredError}
|
|
33014
|
+
*/
|
|
33015
|
+
updateSystemSetting: async (id, body, options = {}) => {
|
|
33016
|
+
// verify required parameter 'id' is not null or undefined
|
|
33017
|
+
if (id === null || id === undefined) {
|
|
33018
|
+
throw new RequiredError('id', 'Required parameter id was null or undefined when calling updateSystemSetting.');
|
|
33019
|
+
}
|
|
33020
|
+
// verify required parameter 'body' is not null or undefined
|
|
33021
|
+
if (body === null || body === undefined) {
|
|
33022
|
+
throw new RequiredError('body', 'Required parameter body was null or undefined when calling updateSystemSetting.');
|
|
33023
|
+
}
|
|
33024
|
+
const localVarPath = `/settings/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
33025
|
+
const localVarUrlObj = parse(localVarPath, true);
|
|
33026
|
+
let baseOptions;
|
|
33027
|
+
if (configuration) {
|
|
33028
|
+
baseOptions = configuration.baseOptions;
|
|
33029
|
+
}
|
|
33030
|
+
const localVarRequestOptions = {
|
|
33031
|
+
method: 'PUT',
|
|
33032
|
+
...baseOptions,
|
|
33033
|
+
...options,
|
|
33034
|
+
};
|
|
33035
|
+
const localVarHeaderParameter = {};
|
|
33036
|
+
const localVarQueryParameter = {};
|
|
33037
|
+
// authentication AccessToken required
|
|
33038
|
+
if (configuration && configuration.apiKey) {
|
|
33039
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
33040
|
+
? await configuration.apiKey('X-Webitel-Access')
|
|
33041
|
+
: await configuration.apiKey;
|
|
33042
|
+
localVarHeaderParameter['X-Webitel-Access'] = localVarApiKeyValue;
|
|
33043
|
+
}
|
|
33044
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
33045
|
+
localVarUrlObj.query = {
|
|
33046
|
+
...localVarUrlObj.query,
|
|
33047
|
+
...localVarQueryParameter,
|
|
33048
|
+
...options.query,
|
|
33049
|
+
};
|
|
33050
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
33051
|
+
delete localVarUrlObj.search;
|
|
33052
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
33053
|
+
localVarRequestOptions.headers = {
|
|
33054
|
+
...localVarHeaderParameter,
|
|
33055
|
+
...headersFromBaseOptions,
|
|
33056
|
+
...options.headers,
|
|
33057
|
+
};
|
|
33058
|
+
const needsSerialization = typeof body !== 'string' ||
|
|
33059
|
+
localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
33060
|
+
localVarRequestOptions.data = needsSerialization
|
|
33061
|
+
? JSON.stringify(body !== undefined ? body : {})
|
|
33062
|
+
: body || '';
|
|
33063
|
+
return {
|
|
33064
|
+
url: format(localVarUrlObj),
|
|
33065
|
+
options: localVarRequestOptions,
|
|
33066
|
+
};
|
|
33067
|
+
},
|
|
33068
|
+
};
|
|
33069
|
+
};
|
|
33070
|
+
/**
|
|
33071
|
+
* SystemSettingServiceApi - functional programming interface
|
|
33072
|
+
* @export
|
|
33073
|
+
*/
|
|
33074
|
+
const SystemSettingServiceApiFp = function (configuration) {
|
|
33075
|
+
return {
|
|
33076
|
+
/**
|
|
33077
|
+
*
|
|
33078
|
+
* @param {EngineCreateSystemSettingRequest} body
|
|
33079
|
+
* @param {*} [options] Override http request option.
|
|
33080
|
+
* @throws {RequiredError}
|
|
33081
|
+
*/
|
|
33082
|
+
async createSystemSetting(body, options) {
|
|
33083
|
+
const localVarAxiosArgs = await SystemSettingServiceApiAxiosParamCreator(configuration).createSystemSetting(body, options);
|
|
33084
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
33085
|
+
const axiosRequestArgs = {
|
|
33086
|
+
...localVarAxiosArgs.options,
|
|
33087
|
+
url: basePath + localVarAxiosArgs.url,
|
|
33088
|
+
};
|
|
33089
|
+
return axios.request(axiosRequestArgs);
|
|
33090
|
+
};
|
|
33091
|
+
},
|
|
33092
|
+
/**
|
|
33093
|
+
*
|
|
33094
|
+
* @param {number} id
|
|
33095
|
+
* @param {*} [options] Override http request option.
|
|
33096
|
+
* @throws {RequiredError}
|
|
33097
|
+
*/
|
|
33098
|
+
async deleteSystemSetting(id, options) {
|
|
33099
|
+
const localVarAxiosArgs = await SystemSettingServiceApiAxiosParamCreator(configuration).deleteSystemSetting(id, options);
|
|
33100
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
33101
|
+
const axiosRequestArgs = {
|
|
33102
|
+
...localVarAxiosArgs.options,
|
|
33103
|
+
url: basePath + localVarAxiosArgs.url,
|
|
33104
|
+
};
|
|
33105
|
+
return axios.request(axiosRequestArgs);
|
|
33106
|
+
};
|
|
33107
|
+
},
|
|
33108
|
+
/**
|
|
33109
|
+
*
|
|
33110
|
+
* @param {number} id
|
|
33111
|
+
* @param {EnginePatchSystemSettingRequest} body
|
|
33112
|
+
* @param {*} [options] Override http request option.
|
|
33113
|
+
* @throws {RequiredError}
|
|
33114
|
+
*/
|
|
33115
|
+
async patchSystemSetting(id, body, options) {
|
|
33116
|
+
const localVarAxiosArgs = await SystemSettingServiceApiAxiosParamCreator(configuration).patchSystemSetting(id, body, options);
|
|
33117
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
33118
|
+
const axiosRequestArgs = {
|
|
33119
|
+
...localVarAxiosArgs.options,
|
|
33120
|
+
url: basePath + localVarAxiosArgs.url,
|
|
33121
|
+
};
|
|
33122
|
+
return axios.request(axiosRequestArgs);
|
|
33123
|
+
};
|
|
33124
|
+
},
|
|
33125
|
+
/**
|
|
33126
|
+
*
|
|
33127
|
+
* @param {number} id
|
|
33128
|
+
* @param {*} [options] Override http request option.
|
|
33129
|
+
* @throws {RequiredError}
|
|
33130
|
+
*/
|
|
33131
|
+
async readSystemSetting(id, options) {
|
|
33132
|
+
const localVarAxiosArgs = await SystemSettingServiceApiAxiosParamCreator(configuration).readSystemSetting(id, options);
|
|
33133
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
33134
|
+
const axiosRequestArgs = {
|
|
33135
|
+
...localVarAxiosArgs.options,
|
|
33136
|
+
url: basePath + localVarAxiosArgs.url,
|
|
33137
|
+
};
|
|
33138
|
+
return axios.request(axiosRequestArgs);
|
|
33139
|
+
};
|
|
33140
|
+
},
|
|
33141
|
+
/**
|
|
33142
|
+
*
|
|
33143
|
+
* @param {number} [page]
|
|
33144
|
+
* @param {number} [size]
|
|
33145
|
+
* @param {string} [q]
|
|
33146
|
+
* @param {string} [sort]
|
|
33147
|
+
* @param {Array<string>} [fields]
|
|
33148
|
+
* @param {*} [options] Override http request option.
|
|
33149
|
+
* @throws {RequiredError}
|
|
33150
|
+
*/
|
|
33151
|
+
async searchSystemSetting(page, size, q, sort, fields, options) {
|
|
33152
|
+
const localVarAxiosArgs = await SystemSettingServiceApiAxiosParamCreator(configuration).searchSystemSetting(page, size, q, sort, fields, options);
|
|
33153
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
33154
|
+
const axiosRequestArgs = {
|
|
33155
|
+
...localVarAxiosArgs.options,
|
|
33156
|
+
url: basePath + localVarAxiosArgs.url,
|
|
33157
|
+
};
|
|
33158
|
+
return axios.request(axiosRequestArgs);
|
|
33159
|
+
};
|
|
33160
|
+
},
|
|
33161
|
+
/**
|
|
33162
|
+
*
|
|
33163
|
+
* @param {number} id
|
|
33164
|
+
* @param {EngineUpdateSystemSettingRequest} body
|
|
33165
|
+
* @param {*} [options] Override http request option.
|
|
33166
|
+
* @throws {RequiredError}
|
|
33167
|
+
*/
|
|
33168
|
+
async updateSystemSetting(id, body, options) {
|
|
33169
|
+
const localVarAxiosArgs = await SystemSettingServiceApiAxiosParamCreator(configuration).updateSystemSetting(id, body, options);
|
|
33170
|
+
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
33171
|
+
const axiosRequestArgs = {
|
|
33172
|
+
...localVarAxiosArgs.options,
|
|
33173
|
+
url: basePath + localVarAxiosArgs.url,
|
|
33174
|
+
};
|
|
33175
|
+
return axios.request(axiosRequestArgs);
|
|
33176
|
+
};
|
|
33177
|
+
},
|
|
33178
|
+
};
|
|
33179
|
+
};
|
|
33180
|
+
/**
|
|
33181
|
+
* SystemSettingServiceApi - factory interface
|
|
33182
|
+
* @export
|
|
33183
|
+
*/
|
|
33184
|
+
const SystemSettingServiceApiFactory = function (configuration, basePath, axios) {
|
|
33185
|
+
return {
|
|
33186
|
+
/**
|
|
33187
|
+
*
|
|
33188
|
+
* @param {EngineCreateSystemSettingRequest} body
|
|
33189
|
+
* @param {*} [options] Override http request option.
|
|
33190
|
+
* @throws {RequiredError}
|
|
33191
|
+
*/
|
|
33192
|
+
createSystemSetting(body, options) {
|
|
33193
|
+
return SystemSettingServiceApiFp(configuration)
|
|
33194
|
+
.createSystemSetting(body, options)
|
|
33195
|
+
.then((request) => request(axios, basePath));
|
|
33196
|
+
},
|
|
33197
|
+
/**
|
|
33198
|
+
*
|
|
33199
|
+
* @param {number} id
|
|
33200
|
+
* @param {*} [options] Override http request option.
|
|
33201
|
+
* @throws {RequiredError}
|
|
33202
|
+
*/
|
|
33203
|
+
deleteSystemSetting(id, options) {
|
|
33204
|
+
return SystemSettingServiceApiFp(configuration)
|
|
33205
|
+
.deleteSystemSetting(id, options)
|
|
33206
|
+
.then((request) => request(axios, basePath));
|
|
33207
|
+
},
|
|
33208
|
+
/**
|
|
33209
|
+
*
|
|
33210
|
+
* @param {number} id
|
|
33211
|
+
* @param {EnginePatchSystemSettingRequest} body
|
|
33212
|
+
* @param {*} [options] Override http request option.
|
|
33213
|
+
* @throws {RequiredError}
|
|
33214
|
+
*/
|
|
33215
|
+
patchSystemSetting(id, body, options) {
|
|
33216
|
+
return SystemSettingServiceApiFp(configuration)
|
|
33217
|
+
.patchSystemSetting(id, body, options)
|
|
33218
|
+
.then((request) => request(axios, basePath));
|
|
33219
|
+
},
|
|
33220
|
+
/**
|
|
33221
|
+
*
|
|
33222
|
+
* @param {number} id
|
|
33223
|
+
* @param {*} [options] Override http request option.
|
|
33224
|
+
* @throws {RequiredError}
|
|
33225
|
+
*/
|
|
33226
|
+
readSystemSetting(id, options) {
|
|
33227
|
+
return SystemSettingServiceApiFp(configuration)
|
|
33228
|
+
.readSystemSetting(id, options)
|
|
33229
|
+
.then((request) => request(axios, basePath));
|
|
33230
|
+
},
|
|
33231
|
+
/**
|
|
33232
|
+
*
|
|
33233
|
+
* @param {number} [page]
|
|
33234
|
+
* @param {number} [size]
|
|
33235
|
+
* @param {string} [q]
|
|
33236
|
+
* @param {string} [sort]
|
|
33237
|
+
* @param {Array<string>} [fields]
|
|
33238
|
+
* @param {*} [options] Override http request option.
|
|
33239
|
+
* @throws {RequiredError}
|
|
33240
|
+
*/
|
|
33241
|
+
searchSystemSetting(page, size, q, sort, fields, options) {
|
|
33242
|
+
return SystemSettingServiceApiFp(configuration)
|
|
33243
|
+
.searchSystemSetting(page, size, q, sort, fields, options)
|
|
33244
|
+
.then((request) => request(axios, basePath));
|
|
33245
|
+
},
|
|
33246
|
+
/**
|
|
33247
|
+
*
|
|
33248
|
+
* @param {number} id
|
|
33249
|
+
* @param {EngineUpdateSystemSettingRequest} body
|
|
33250
|
+
* @param {*} [options] Override http request option.
|
|
33251
|
+
* @throws {RequiredError}
|
|
33252
|
+
*/
|
|
33253
|
+
updateSystemSetting(id, body, options) {
|
|
33254
|
+
return SystemSettingServiceApiFp(configuration)
|
|
33255
|
+
.updateSystemSetting(id, body, options)
|
|
33256
|
+
.then((request) => request(axios, basePath));
|
|
33257
|
+
},
|
|
33258
|
+
};
|
|
33259
|
+
};
|
|
33260
|
+
/**
|
|
33261
|
+
* SystemSettingServiceApi - object-oriented interface
|
|
33262
|
+
* @export
|
|
33263
|
+
* @class SystemSettingServiceApi
|
|
33264
|
+
* @extends {BaseAPI}
|
|
33265
|
+
*/
|
|
33266
|
+
class SystemSettingServiceApi extends BaseAPI {
|
|
33267
|
+
/**
|
|
33268
|
+
*
|
|
33269
|
+
* @param {EngineCreateSystemSettingRequest} body
|
|
33270
|
+
* @param {*} [options] Override http request option.
|
|
33271
|
+
* @throws {RequiredError}
|
|
33272
|
+
* @memberof SystemSettingServiceApi
|
|
33273
|
+
*/
|
|
33274
|
+
createSystemSetting(body, options) {
|
|
33275
|
+
return SystemSettingServiceApiFp(this.configuration)
|
|
33276
|
+
.createSystemSetting(body, options)
|
|
33277
|
+
.then((request) => request(this.axios, this.basePath));
|
|
33278
|
+
}
|
|
33279
|
+
/**
|
|
33280
|
+
*
|
|
33281
|
+
* @param {number} id
|
|
33282
|
+
* @param {*} [options] Override http request option.
|
|
33283
|
+
* @throws {RequiredError}
|
|
33284
|
+
* @memberof SystemSettingServiceApi
|
|
33285
|
+
*/
|
|
33286
|
+
deleteSystemSetting(id, options) {
|
|
33287
|
+
return SystemSettingServiceApiFp(this.configuration)
|
|
33288
|
+
.deleteSystemSetting(id, options)
|
|
33289
|
+
.then((request) => request(this.axios, this.basePath));
|
|
33290
|
+
}
|
|
33291
|
+
/**
|
|
33292
|
+
*
|
|
33293
|
+
* @param {number} id
|
|
33294
|
+
* @param {EnginePatchSystemSettingRequest} body
|
|
33295
|
+
* @param {*} [options] Override http request option.
|
|
33296
|
+
* @throws {RequiredError}
|
|
33297
|
+
* @memberof SystemSettingServiceApi
|
|
33298
|
+
*/
|
|
33299
|
+
patchSystemSetting(id, body, options) {
|
|
33300
|
+
return SystemSettingServiceApiFp(this.configuration)
|
|
33301
|
+
.patchSystemSetting(id, body, options)
|
|
33302
|
+
.then((request) => request(this.axios, this.basePath));
|
|
33303
|
+
}
|
|
33304
|
+
/**
|
|
33305
|
+
*
|
|
33306
|
+
* @param {number} id
|
|
33307
|
+
* @param {*} [options] Override http request option.
|
|
33308
|
+
* @throws {RequiredError}
|
|
33309
|
+
* @memberof SystemSettingServiceApi
|
|
33310
|
+
*/
|
|
33311
|
+
readSystemSetting(id, options) {
|
|
33312
|
+
return SystemSettingServiceApiFp(this.configuration)
|
|
33313
|
+
.readSystemSetting(id, options)
|
|
33314
|
+
.then((request) => request(this.axios, this.basePath));
|
|
33315
|
+
}
|
|
33316
|
+
/**
|
|
33317
|
+
*
|
|
33318
|
+
* @param {number} [page]
|
|
33319
|
+
* @param {number} [size]
|
|
33320
|
+
* @param {string} [q]
|
|
33321
|
+
* @param {string} [sort]
|
|
33322
|
+
* @param {Array<string>} [fields]
|
|
33323
|
+
* @param {*} [options] Override http request option.
|
|
33324
|
+
* @throws {RequiredError}
|
|
33325
|
+
* @memberof SystemSettingServiceApi
|
|
33326
|
+
*/
|
|
33327
|
+
searchSystemSetting(page, size, q, sort, fields, options) {
|
|
33328
|
+
return SystemSettingServiceApiFp(this.configuration)
|
|
33329
|
+
.searchSystemSetting(page, size, q, sort, fields, options)
|
|
33330
|
+
.then((request) => request(this.axios, this.basePath));
|
|
33331
|
+
}
|
|
33332
|
+
/**
|
|
33333
|
+
*
|
|
33334
|
+
* @param {number} id
|
|
33335
|
+
* @param {EngineUpdateSystemSettingRequest} body
|
|
33336
|
+
* @param {*} [options] Override http request option.
|
|
33337
|
+
* @throws {RequiredError}
|
|
33338
|
+
* @memberof SystemSettingServiceApi
|
|
33339
|
+
*/
|
|
33340
|
+
updateSystemSetting(id, body, options) {
|
|
33341
|
+
return SystemSettingServiceApiFp(this.configuration)
|
|
33342
|
+
.updateSystemSetting(id, body, options)
|
|
33343
|
+
.then((request) => request(this.axios, this.basePath));
|
|
33344
|
+
}
|
|
33345
|
+
}
|
|
33346
|
+
|
|
32724
33347
|
// tslint:disable
|
|
32725
33348
|
/**
|
|
32726
33349
|
* TriggerServiceApi - axios parameter creator
|
|
@@ -37266,6 +37889,45 @@ var EngineCommunicationChannels;
|
|
|
37266
37889
|
* Do not edit the class manually.
|
|
37267
37890
|
*/
|
|
37268
37891
|
|
|
37892
|
+
// tslint:disable
|
|
37893
|
+
/**
|
|
37894
|
+
* Webitel engine API
|
|
37895
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
37896
|
+
*
|
|
37897
|
+
* The version of the OpenAPI document: 23.07.0
|
|
37898
|
+
* Contact: support@webitel.com
|
|
37899
|
+
*
|
|
37900
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
37901
|
+
* https://openapi-generator.tech
|
|
37902
|
+
* Do not edit the class manually.
|
|
37903
|
+
*/
|
|
37904
|
+
|
|
37905
|
+
// tslint:disable
|
|
37906
|
+
/**
|
|
37907
|
+
* Webitel engine API
|
|
37908
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
37909
|
+
*
|
|
37910
|
+
* The version of the OpenAPI document: 23.07.0
|
|
37911
|
+
* Contact: support@webitel.com
|
|
37912
|
+
*
|
|
37913
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
37914
|
+
* https://openapi-generator.tech
|
|
37915
|
+
* Do not edit the class manually.
|
|
37916
|
+
*/
|
|
37917
|
+
|
|
37918
|
+
// tslint:disable
|
|
37919
|
+
/**
|
|
37920
|
+
* Webitel engine API
|
|
37921
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
37922
|
+
*
|
|
37923
|
+
* The version of the OpenAPI document: 23.07.0
|
|
37924
|
+
* Contact: support@webitel.com
|
|
37925
|
+
*
|
|
37926
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
37927
|
+
* https://openapi-generator.tech
|
|
37928
|
+
* Do not edit the class manually.
|
|
37929
|
+
*/
|
|
37930
|
+
|
|
37269
37931
|
// tslint:disable
|
|
37270
37932
|
/**
|
|
37271
37933
|
* Webitel engine API
|
|
@@ -37705,6 +38367,19 @@ var EngineRoutingSchemaType;
|
|
|
37705
38367
|
* Do not edit the class manually.
|
|
37706
38368
|
*/
|
|
37707
38369
|
|
|
38370
|
+
// tslint:disable
|
|
38371
|
+
/**
|
|
38372
|
+
* Webitel engine API
|
|
38373
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
38374
|
+
*
|
|
38375
|
+
* The version of the OpenAPI document: 23.07.0
|
|
38376
|
+
* Contact: support@webitel.com
|
|
38377
|
+
*
|
|
38378
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
38379
|
+
* https://openapi-generator.tech
|
|
38380
|
+
* Do not edit the class manually.
|
|
38381
|
+
*/
|
|
38382
|
+
|
|
37708
38383
|
// tslint:disable
|
|
37709
38384
|
/**
|
|
37710
38385
|
* Webitel engine API
|
|
@@ -38156,6 +38831,19 @@ var EngineTriggerType;
|
|
|
38156
38831
|
* Do not edit the class manually.
|
|
38157
38832
|
*/
|
|
38158
38833
|
|
|
38834
|
+
// tslint:disable
|
|
38835
|
+
/**
|
|
38836
|
+
* Webitel engine API
|
|
38837
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
38838
|
+
*
|
|
38839
|
+
* The version of the OpenAPI document: 23.07.0
|
|
38840
|
+
* Contact: support@webitel.com
|
|
38841
|
+
*
|
|
38842
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
38843
|
+
* https://openapi-generator.tech
|
|
38844
|
+
* Do not edit the class manually.
|
|
38845
|
+
*/
|
|
38846
|
+
|
|
38159
38847
|
// tslint:disable
|
|
38160
38848
|
/**
|
|
38161
38849
|
* Webitel engine API
|
|
@@ -42781,5 +43469,5 @@ class ExternalClient extends ee_3 {
|
|
|
42781
43469
|
|
|
42782
43470
|
// tslint:disable
|
|
42783
43471
|
|
|
42784
|
-
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, 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, 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, TriggerServiceApiAxiosParamCreator, TriggerServiceApiFp, TriggerServiceApiFactory, TriggerServiceApi, UserHelperServiceApiAxiosParamCreator, UserHelperServiceApiFp, UserHelperServiceApiFactory, UserHelperServiceApi, VariablesApiAxiosParamCreator, VariablesApiFp, VariablesApiFactory, VariablesApi, Configuration, EngineAuditQuestionType, EngineBoolFilter, EngineCommunicationChannels, EnginePresetQuerySection, EngineRoutingSchemaType, EngineTriggerJobState, EngineTriggerType, GoogleProtobufNullValue, HistoryFileJobHistoryFileJobAction, HistoryFileJobHistoryFileJobState, LoggerAction, 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 };
|
|
43472
|
+
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, 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, 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, TriggerServiceApiAxiosParamCreator, TriggerServiceApiFp, TriggerServiceApiFactory, TriggerServiceApi, UserHelperServiceApiAxiosParamCreator, UserHelperServiceApiFp, UserHelperServiceApiFactory, UserHelperServiceApi, VariablesApiAxiosParamCreator, VariablesApiFp, VariablesApiFactory, VariablesApi, Configuration, EngineAuditQuestionType, EngineBoolFilter, EngineCommunicationChannels, EnginePresetQuerySection, EngineRoutingSchemaType, EngineTriggerJobState, EngineTriggerType, GoogleProtobufNullValue, HistoryFileJobHistoryFileJobAction, HistoryFileJobHistoryFileJobState, LoggerAction, 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 };
|
|
42785
43473
|
//# sourceMappingURL=index.esm.js.map
|