webitel-sdk 23.7.9 → 23.7.11
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 +74 -58
- 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 +56 -57
- 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/config-service-api.js +14 -7
- package/esm2015/api/config-service-api.js.map +1 -1
- package/esm2015/api/index.js +1 -0
- package/esm2015/api/index.js.map +1 -1
- package/esm2015/api/logger-available-system-objects.js +23 -0
- package/esm2015/api/logger-available-system-objects.js.map +1 -0
- package/esm2015/api/logger-service-api.js +36 -50
- package/esm2015/api/logger-service-api.js.map +1 -1
- package/esm5/api/config-service-api.js +14 -7
- package/esm5/api/config-service-api.js.map +1 -1
- package/esm5/api/index.js +1 -0
- package/esm5/api/index.js.map +1 -1
- package/esm5/api/logger-available-system-objects.js +23 -0
- package/esm5/api/logger-available-system-objects.js.map +1 -0
- package/esm5/api/logger-service-api.js +36 -50
- package/esm5/api/logger-service-api.js.map +1 -1
- package/package.json +1 -1
- package/types/api/config-service-api.d.ts +8 -4
- package/types/api/config-service-api.d.ts.map +1 -1
- package/types/api/index.d.ts +1 -0
- package/types/api/index.d.ts.map +1 -1
- package/types/api/logger-available-system-objects.d.ts +21 -0
- package/types/api/logger-available-system-objects.d.ts.map +1 -0
- package/types/api/logger-service-api.d.ts +24 -32
- package/types/api/logger-service-api.d.ts.map +1 -1
package/bundles/index.esm.js
CHANGED
|
@@ -11679,10 +11679,11 @@ const ConfigServiceApiAxiosParamCreator = function (configuration) {
|
|
|
11679
11679
|
* @param {string} [q]
|
|
11680
11680
|
* @param {string} [sort]
|
|
11681
11681
|
* @param {Array<string>} [fields]
|
|
11682
|
+
* @param {Array<'cc_queue' | 'schema'>} [object] NOT USED.
|
|
11682
11683
|
* @param {*} [options] Override http request option.
|
|
11683
11684
|
* @throws {RequiredError}
|
|
11684
11685
|
*/
|
|
11685
|
-
searchConfig: async (page, size, q, sort, fields, options = {}) => {
|
|
11686
|
+
searchConfig: async (page, size, q, sort, fields, object, options = {}) => {
|
|
11686
11687
|
const localVarPath = `/logger/config`;
|
|
11687
11688
|
const localVarUrlObj = parse(localVarPath, true);
|
|
11688
11689
|
let baseOptions;
|
|
@@ -11718,6 +11719,9 @@ const ConfigServiceApiAxiosParamCreator = function (configuration) {
|
|
|
11718
11719
|
if (fields) {
|
|
11719
11720
|
localVarQueryParameter['fields'] = fields;
|
|
11720
11721
|
}
|
|
11722
|
+
if (object) {
|
|
11723
|
+
localVarQueryParameter['object'] = object;
|
|
11724
|
+
}
|
|
11721
11725
|
localVarUrlObj.query = {
|
|
11722
11726
|
...localVarUrlObj.query,
|
|
11723
11727
|
...localVarQueryParameter,
|
|
@@ -11908,11 +11912,12 @@ const ConfigServiceApiFp = function (configuration) {
|
|
|
11908
11912
|
* @param {string} [q]
|
|
11909
11913
|
* @param {string} [sort]
|
|
11910
11914
|
* @param {Array<string>} [fields]
|
|
11915
|
+
* @param {Array<'cc_queue' | 'schema'>} [object] NOT USED.
|
|
11911
11916
|
* @param {*} [options] Override http request option.
|
|
11912
11917
|
* @throws {RequiredError}
|
|
11913
11918
|
*/
|
|
11914
|
-
async searchConfig(page, size, q, sort, fields, options) {
|
|
11915
|
-
const localVarAxiosArgs = await ConfigServiceApiAxiosParamCreator(configuration).searchConfig(page, size, q, sort, fields, options);
|
|
11919
|
+
async searchConfig(page, size, q, sort, fields, object, options) {
|
|
11920
|
+
const localVarAxiosArgs = await ConfigServiceApiAxiosParamCreator(configuration).searchConfig(page, size, q, sort, fields, object, options);
|
|
11916
11921
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
11917
11922
|
const axiosRequestArgs = {
|
|
11918
11923
|
...localVarAxiosArgs.options,
|
|
@@ -12020,12 +12025,13 @@ const ConfigServiceApiFactory = function (configuration, basePath, axios) {
|
|
|
12020
12025
|
* @param {string} [q]
|
|
12021
12026
|
* @param {string} [sort]
|
|
12022
12027
|
* @param {Array<string>} [fields]
|
|
12028
|
+
* @param {Array<'cc_queue' | 'schema'>} [object] NOT USED.
|
|
12023
12029
|
* @param {*} [options] Override http request option.
|
|
12024
12030
|
* @throws {RequiredError}
|
|
12025
12031
|
*/
|
|
12026
|
-
searchConfig(page, size, q, sort, fields, options) {
|
|
12032
|
+
searchConfig(page, size, q, sort, fields, object, options) {
|
|
12027
12033
|
return ConfigServiceApiFp(configuration)
|
|
12028
|
-
.searchConfig(page, size, q, sort, fields, options)
|
|
12034
|
+
.searchConfig(page, size, q, sort, fields, object, options)
|
|
12029
12035
|
.then((request) => request(axios, basePath));
|
|
12030
12036
|
},
|
|
12031
12037
|
/**
|
|
@@ -12129,13 +12135,14 @@ class ConfigServiceApi extends BaseAPI {
|
|
|
12129
12135
|
* @param {string} [q]
|
|
12130
12136
|
* @param {string} [sort]
|
|
12131
12137
|
* @param {Array<string>} [fields]
|
|
12138
|
+
* @param {Array<'cc_queue' | 'schema'>} [object] NOT USED.
|
|
12132
12139
|
* @param {*} [options] Override http request option.
|
|
12133
12140
|
* @throws {RequiredError}
|
|
12134
12141
|
* @memberof ConfigServiceApi
|
|
12135
12142
|
*/
|
|
12136
|
-
searchConfig(page, size, q, sort, fields, options) {
|
|
12143
|
+
searchConfig(page, size, q, sort, fields, object, options) {
|
|
12137
12144
|
return ConfigServiceApiFp(this.configuration)
|
|
12138
|
-
.searchConfig(page, size, q, sort, fields, options)
|
|
12145
|
+
.searchConfig(page, size, q, sort, fields, object, options)
|
|
12139
12146
|
.then((request) => request(this.axios, this.basePath));
|
|
12140
12147
|
}
|
|
12141
12148
|
/**
|
|
@@ -17432,16 +17439,15 @@ const LoggerServiceApiAxiosParamCreator = function (configuration) {
|
|
|
17432
17439
|
* @param {string} [q]
|
|
17433
17440
|
* @param {string} [sort]
|
|
17434
17441
|
* @param {Array<string>} [fields]
|
|
17435
|
-
* @param {
|
|
17436
|
-
* @param {
|
|
17437
|
-
* @param {'default_no_action' | 'create' | 'update' | 'read' | 'delete'} [action]
|
|
17442
|
+
* @param {Array<string>} [userId]
|
|
17443
|
+
* @param {Array<'default_no_action' | 'create' | 'update' | 'read' | 'delete'>} [action]
|
|
17438
17444
|
* @param {string} [userIp]
|
|
17439
17445
|
* @param {string} [dateFrom]
|
|
17440
17446
|
* @param {string} [dateTo]
|
|
17441
17447
|
* @param {*} [options] Override http request option.
|
|
17442
17448
|
* @throws {RequiredError}
|
|
17443
17449
|
*/
|
|
17444
|
-
searchLogByConfigId: async (configId, page, size, q, sort, fields, userId,
|
|
17450
|
+
searchLogByConfigId: async (configId, page, size, q, sort, fields, userId, action, userIp, dateFrom, dateTo, options = {}) => {
|
|
17445
17451
|
// verify required parameter 'configId' is not null or undefined
|
|
17446
17452
|
if (configId === null || configId === undefined) {
|
|
17447
17453
|
throw new RequiredError('configId', 'Required parameter configId was null or undefined when calling searchLogByConfigId.');
|
|
@@ -17481,13 +17487,10 @@ const LoggerServiceApiAxiosParamCreator = function (configuration) {
|
|
|
17481
17487
|
if (fields) {
|
|
17482
17488
|
localVarQueryParameter['fields'] = fields;
|
|
17483
17489
|
}
|
|
17484
|
-
if (userId
|
|
17485
|
-
localVarQueryParameter['
|
|
17486
|
-
}
|
|
17487
|
-
if (userName !== undefined) {
|
|
17488
|
-
localVarQueryParameter['user.name'] = userName;
|
|
17490
|
+
if (userId) {
|
|
17491
|
+
localVarQueryParameter['user_id'] = userId;
|
|
17489
17492
|
}
|
|
17490
|
-
if (action
|
|
17493
|
+
if (action) {
|
|
17491
17494
|
localVarQueryParameter['action'] = action;
|
|
17492
17495
|
}
|
|
17493
17496
|
if (userIp !== undefined) {
|
|
@@ -17525,16 +17528,15 @@ const LoggerServiceApiAxiosParamCreator = function (configuration) {
|
|
|
17525
17528
|
* @param {string} [q]
|
|
17526
17529
|
* @param {string} [sort]
|
|
17527
17530
|
* @param {Array<string>} [fields]
|
|
17528
|
-
* @param {
|
|
17529
|
-
* @param {
|
|
17530
|
-
* @param {'default_no_action' | 'create' | 'update' | 'read' | 'delete'} [action] GENERAL filters.
|
|
17531
|
+
* @param {Array<string>} [objectId] SPECIFIC filter.
|
|
17532
|
+
* @param {Array<'default_no_action' | 'create' | 'update' | 'read' | 'delete'>} [action] GENERAL filters.
|
|
17531
17533
|
* @param {string} [userIp]
|
|
17532
17534
|
* @param {string} [dateFrom]
|
|
17533
17535
|
* @param {string} [dateTo]
|
|
17534
17536
|
* @param {*} [options] Override http request option.
|
|
17535
17537
|
* @throws {RequiredError}
|
|
17536
17538
|
*/
|
|
17537
|
-
searchLogByUserId: async (userId, page, size, q, sort, fields, objectId,
|
|
17539
|
+
searchLogByUserId: async (userId, page, size, q, sort, fields, objectId, action, userIp, dateFrom, dateTo, options = {}) => {
|
|
17538
17540
|
// verify required parameter 'userId' is not null or undefined
|
|
17539
17541
|
if (userId === null || userId === undefined) {
|
|
17540
17542
|
throw new RequiredError('userId', 'Required parameter userId was null or undefined when calling searchLogByUserId.');
|
|
@@ -17574,13 +17576,10 @@ const LoggerServiceApiAxiosParamCreator = function (configuration) {
|
|
|
17574
17576
|
if (fields) {
|
|
17575
17577
|
localVarQueryParameter['fields'] = fields;
|
|
17576
17578
|
}
|
|
17577
|
-
if (objectId
|
|
17578
|
-
localVarQueryParameter['
|
|
17579
|
-
}
|
|
17580
|
-
if (objectName !== undefined) {
|
|
17581
|
-
localVarQueryParameter['object.name'] = objectName;
|
|
17579
|
+
if (objectId) {
|
|
17580
|
+
localVarQueryParameter['object_id'] = objectId;
|
|
17582
17581
|
}
|
|
17583
|
-
if (action
|
|
17582
|
+
if (action) {
|
|
17584
17583
|
localVarQueryParameter['action'] = action;
|
|
17585
17584
|
}
|
|
17586
17585
|
if (userIp !== undefined) {
|
|
@@ -17626,17 +17625,16 @@ const LoggerServiceApiFp = function (configuration) {
|
|
|
17626
17625
|
* @param {string} [q]
|
|
17627
17626
|
* @param {string} [sort]
|
|
17628
17627
|
* @param {Array<string>} [fields]
|
|
17629
|
-
* @param {
|
|
17630
|
-
* @param {
|
|
17631
|
-
* @param {'default_no_action' | 'create' | 'update' | 'read' | 'delete'} [action]
|
|
17628
|
+
* @param {Array<string>} [userId]
|
|
17629
|
+
* @param {Array<'default_no_action' | 'create' | 'update' | 'read' | 'delete'>} [action]
|
|
17632
17630
|
* @param {string} [userIp]
|
|
17633
17631
|
* @param {string} [dateFrom]
|
|
17634
17632
|
* @param {string} [dateTo]
|
|
17635
17633
|
* @param {*} [options] Override http request option.
|
|
17636
17634
|
* @throws {RequiredError}
|
|
17637
17635
|
*/
|
|
17638
|
-
async searchLogByConfigId(configId, page, size, q, sort, fields, userId,
|
|
17639
|
-
const localVarAxiosArgs = await LoggerServiceApiAxiosParamCreator(configuration).searchLogByConfigId(configId, page, size, q, sort, fields, userId,
|
|
17636
|
+
async searchLogByConfigId(configId, page, size, q, sort, fields, userId, action, userIp, dateFrom, dateTo, options) {
|
|
17637
|
+
const localVarAxiosArgs = await LoggerServiceApiAxiosParamCreator(configuration).searchLogByConfigId(configId, page, size, q, sort, fields, userId, action, userIp, dateFrom, dateTo, options);
|
|
17640
17638
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
17641
17639
|
const axiosRequestArgs = {
|
|
17642
17640
|
...localVarAxiosArgs.options,
|
|
@@ -17653,17 +17651,16 @@ const LoggerServiceApiFp = function (configuration) {
|
|
|
17653
17651
|
* @param {string} [q]
|
|
17654
17652
|
* @param {string} [sort]
|
|
17655
17653
|
* @param {Array<string>} [fields]
|
|
17656
|
-
* @param {
|
|
17657
|
-
* @param {
|
|
17658
|
-
* @param {'default_no_action' | 'create' | 'update' | 'read' | 'delete'} [action] GENERAL filters.
|
|
17654
|
+
* @param {Array<string>} [objectId] SPECIFIC filter.
|
|
17655
|
+
* @param {Array<'default_no_action' | 'create' | 'update' | 'read' | 'delete'>} [action] GENERAL filters.
|
|
17659
17656
|
* @param {string} [userIp]
|
|
17660
17657
|
* @param {string} [dateFrom]
|
|
17661
17658
|
* @param {string} [dateTo]
|
|
17662
17659
|
* @param {*} [options] Override http request option.
|
|
17663
17660
|
* @throws {RequiredError}
|
|
17664
17661
|
*/
|
|
17665
|
-
async searchLogByUserId(userId, page, size, q, sort, fields, objectId,
|
|
17666
|
-
const localVarAxiosArgs = await LoggerServiceApiAxiosParamCreator(configuration).searchLogByUserId(userId, page, size, q, sort, fields, objectId,
|
|
17662
|
+
async searchLogByUserId(userId, page, size, q, sort, fields, objectId, action, userIp, dateFrom, dateTo, options) {
|
|
17663
|
+
const localVarAxiosArgs = await LoggerServiceApiAxiosParamCreator(configuration).searchLogByUserId(userId, page, size, q, sort, fields, objectId, action, userIp, dateFrom, dateTo, options);
|
|
17667
17664
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
17668
17665
|
const axiosRequestArgs = {
|
|
17669
17666
|
...localVarAxiosArgs.options,
|
|
@@ -17688,18 +17685,17 @@ const LoggerServiceApiFactory = function (configuration, basePath, axios) {
|
|
|
17688
17685
|
* @param {string} [q]
|
|
17689
17686
|
* @param {string} [sort]
|
|
17690
17687
|
* @param {Array<string>} [fields]
|
|
17691
|
-
* @param {
|
|
17692
|
-
* @param {
|
|
17693
|
-
* @param {'default_no_action' | 'create' | 'update' | 'read' | 'delete'} [action]
|
|
17688
|
+
* @param {Array<string>} [userId]
|
|
17689
|
+
* @param {Array<'default_no_action' | 'create' | 'update' | 'read' | 'delete'>} [action]
|
|
17694
17690
|
* @param {string} [userIp]
|
|
17695
17691
|
* @param {string} [dateFrom]
|
|
17696
17692
|
* @param {string} [dateTo]
|
|
17697
17693
|
* @param {*} [options] Override http request option.
|
|
17698
17694
|
* @throws {RequiredError}
|
|
17699
17695
|
*/
|
|
17700
|
-
searchLogByConfigId(configId, page, size, q, sort, fields, userId,
|
|
17696
|
+
searchLogByConfigId(configId, page, size, q, sort, fields, userId, action, userIp, dateFrom, dateTo, options) {
|
|
17701
17697
|
return LoggerServiceApiFp(configuration)
|
|
17702
|
-
.searchLogByConfigId(configId, page, size, q, sort, fields, userId,
|
|
17698
|
+
.searchLogByConfigId(configId, page, size, q, sort, fields, userId, action, userIp, dateFrom, dateTo, options)
|
|
17703
17699
|
.then((request) => request(axios, basePath));
|
|
17704
17700
|
},
|
|
17705
17701
|
/**
|
|
@@ -17710,18 +17706,17 @@ const LoggerServiceApiFactory = function (configuration, basePath, axios) {
|
|
|
17710
17706
|
* @param {string} [q]
|
|
17711
17707
|
* @param {string} [sort]
|
|
17712
17708
|
* @param {Array<string>} [fields]
|
|
17713
|
-
* @param {
|
|
17714
|
-
* @param {
|
|
17715
|
-
* @param {'default_no_action' | 'create' | 'update' | 'read' | 'delete'} [action] GENERAL filters.
|
|
17709
|
+
* @param {Array<string>} [objectId] SPECIFIC filter.
|
|
17710
|
+
* @param {Array<'default_no_action' | 'create' | 'update' | 'read' | 'delete'>} [action] GENERAL filters.
|
|
17716
17711
|
* @param {string} [userIp]
|
|
17717
17712
|
* @param {string} [dateFrom]
|
|
17718
17713
|
* @param {string} [dateTo]
|
|
17719
17714
|
* @param {*} [options] Override http request option.
|
|
17720
17715
|
* @throws {RequiredError}
|
|
17721
17716
|
*/
|
|
17722
|
-
searchLogByUserId(userId, page, size, q, sort, fields, objectId,
|
|
17717
|
+
searchLogByUserId(userId, page, size, q, sort, fields, objectId, action, userIp, dateFrom, dateTo, options) {
|
|
17723
17718
|
return LoggerServiceApiFp(configuration)
|
|
17724
|
-
.searchLogByUserId(userId, page, size, q, sort, fields, objectId,
|
|
17719
|
+
.searchLogByUserId(userId, page, size, q, sort, fields, objectId, action, userIp, dateFrom, dateTo, options)
|
|
17725
17720
|
.then((request) => request(axios, basePath));
|
|
17726
17721
|
},
|
|
17727
17722
|
};
|
|
@@ -17741,9 +17736,8 @@ class LoggerServiceApi extends BaseAPI {
|
|
|
17741
17736
|
* @param {string} [q]
|
|
17742
17737
|
* @param {string} [sort]
|
|
17743
17738
|
* @param {Array<string>} [fields]
|
|
17744
|
-
* @param {
|
|
17745
|
-
* @param {
|
|
17746
|
-
* @param {'default_no_action' | 'create' | 'update' | 'read' | 'delete'} [action]
|
|
17739
|
+
* @param {Array<string>} [userId]
|
|
17740
|
+
* @param {Array<'default_no_action' | 'create' | 'update' | 'read' | 'delete'>} [action]
|
|
17747
17741
|
* @param {string} [userIp]
|
|
17748
17742
|
* @param {string} [dateFrom]
|
|
17749
17743
|
* @param {string} [dateTo]
|
|
@@ -17751,9 +17745,9 @@ class LoggerServiceApi extends BaseAPI {
|
|
|
17751
17745
|
* @throws {RequiredError}
|
|
17752
17746
|
* @memberof LoggerServiceApi
|
|
17753
17747
|
*/
|
|
17754
|
-
searchLogByConfigId(configId, page, size, q, sort, fields, userId,
|
|
17748
|
+
searchLogByConfigId(configId, page, size, q, sort, fields, userId, action, userIp, dateFrom, dateTo, options) {
|
|
17755
17749
|
return LoggerServiceApiFp(this.configuration)
|
|
17756
|
-
.searchLogByConfigId(configId, page, size, q, sort, fields, userId,
|
|
17750
|
+
.searchLogByConfigId(configId, page, size, q, sort, fields, userId, action, userIp, dateFrom, dateTo, options)
|
|
17757
17751
|
.then((request) => request(this.axios, this.basePath));
|
|
17758
17752
|
}
|
|
17759
17753
|
/**
|
|
@@ -17764,9 +17758,8 @@ class LoggerServiceApi extends BaseAPI {
|
|
|
17764
17758
|
* @param {string} [q]
|
|
17765
17759
|
* @param {string} [sort]
|
|
17766
17760
|
* @param {Array<string>} [fields]
|
|
17767
|
-
* @param {
|
|
17768
|
-
* @param {
|
|
17769
|
-
* @param {'default_no_action' | 'create' | 'update' | 'read' | 'delete'} [action] GENERAL filters.
|
|
17761
|
+
* @param {Array<string>} [objectId] SPECIFIC filter.
|
|
17762
|
+
* @param {Array<'default_no_action' | 'create' | 'update' | 'read' | 'delete'>} [action] GENERAL filters.
|
|
17770
17763
|
* @param {string} [userIp]
|
|
17771
17764
|
* @param {string} [dateFrom]
|
|
17772
17765
|
* @param {string} [dateTo]
|
|
@@ -17774,9 +17767,9 @@ class LoggerServiceApi extends BaseAPI {
|
|
|
17774
17767
|
* @throws {RequiredError}
|
|
17775
17768
|
* @memberof LoggerServiceApi
|
|
17776
17769
|
*/
|
|
17777
|
-
searchLogByUserId(userId, page, size, q, sort, fields, objectId,
|
|
17770
|
+
searchLogByUserId(userId, page, size, q, sort, fields, objectId, action, userIp, dateFrom, dateTo, options) {
|
|
17778
17771
|
return LoggerServiceApiFp(this.configuration)
|
|
17779
|
-
.searchLogByUserId(userId, page, size, q, sort, fields, objectId,
|
|
17772
|
+
.searchLogByUserId(userId, page, size, q, sort, fields, objectId, action, userIp, dateFrom, dateTo, options)
|
|
17780
17773
|
.then((request) => request(this.axios, this.basePath));
|
|
17781
17774
|
}
|
|
17782
17775
|
}
|
|
@@ -38954,6 +38947,29 @@ var LoggerAction;
|
|
|
38954
38947
|
LoggerAction["Delete"] = "delete";
|
|
38955
38948
|
})(LoggerAction || (LoggerAction = {}));
|
|
38956
38949
|
|
|
38950
|
+
// tslint:disable
|
|
38951
|
+
/**
|
|
38952
|
+
* Webitel engine API
|
|
38953
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
38954
|
+
*
|
|
38955
|
+
* The version of the OpenAPI document: 23.07.0
|
|
38956
|
+
* Contact: support@webitel.com
|
|
38957
|
+
*
|
|
38958
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
38959
|
+
* https://openapi-generator.tech
|
|
38960
|
+
* Do not edit the class manually.
|
|
38961
|
+
*/
|
|
38962
|
+
/**
|
|
38963
|
+
*
|
|
38964
|
+
* @export
|
|
38965
|
+
* @enum {string}
|
|
38966
|
+
*/
|
|
38967
|
+
var LoggerAvailableSystemObjects;
|
|
38968
|
+
(function (LoggerAvailableSystemObjects) {
|
|
38969
|
+
LoggerAvailableSystemObjects["CcQueue"] = "cc_queue";
|
|
38970
|
+
LoggerAvailableSystemObjects["Schema"] = "schema";
|
|
38971
|
+
})(LoggerAvailableSystemObjects || (LoggerAvailableSystemObjects = {}));
|
|
38972
|
+
|
|
38957
38973
|
// tslint:disable
|
|
38958
38974
|
/**
|
|
38959
38975
|
* Webitel engine API
|
|
@@ -43469,5 +43485,5 @@ class ExternalClient extends ee_3 {
|
|
|
43469
43485
|
|
|
43470
43486
|
// tslint:disable
|
|
43471
43487
|
|
|
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 };
|
|
43488
|
+
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, 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 };
|
|
43473
43489
|
//# sourceMappingURL=index.esm.js.map
|