webitel-sdk 23.7.6 → 23.7.7
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 +69 -28
- 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 +69 -28
- 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/calendar-service-api.js +28 -7
- package/esm2015/api/calendar-service-api.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-config-status.js +13 -0
- package/esm2015/api/logger-config-status.js.map +1 -0
- package/esm2015/api/logger-service-api.js +14 -14
- package/esm2015/api/logger-service-api.js.map +1 -1
- package/esm5/api/calendar-service-api.js +28 -7
- package/esm5/api/calendar-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-config-status.js +13 -0
- package/esm5/api/logger-config-status.js.map +1 -0
- package/esm5/api/logger-service-api.js +14 -14
- package/esm5/api/logger-service-api.js.map +1 -1
- package/package.json +1 -1
- package/types/api/calendar-service-api.d.ts +16 -4
- package/types/api/calendar-service-api.d.ts.map +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-config-status.d.ts +25 -0
- package/types/api/logger-config-status.d.ts.map +1 -0
- package/types/api/logger-log.d.ts +6 -0
- package/types/api/logger-log.d.ts.map +1 -1
- package/types/api/logger-service-api.d.ts +8 -8
package/bundles/index.umd.js
CHANGED
|
@@ -8053,10 +8053,13 @@
|
|
|
8053
8053
|
* @param {number} [page]
|
|
8054
8054
|
* @param {number} [size]
|
|
8055
8055
|
* @param {string} [q]
|
|
8056
|
+
* @param {string} [sort]
|
|
8057
|
+
* @param {Array<string>} [fields]
|
|
8058
|
+
* @param {Array<number>} [id]
|
|
8056
8059
|
* @param {*} [options] Override http request option.
|
|
8057
8060
|
* @throws {RequiredError}
|
|
8058
8061
|
*/
|
|
8059
|
-
searchTimezones: function (page, size, q, options) {
|
|
8062
|
+
searchTimezones: function (page, size, q, sort, fields, id, options) {
|
|
8060
8063
|
if (options === void 0) { options = {}; }
|
|
8061
8064
|
return tslib.__awaiter(_this, void 0, void 0, function () {
|
|
8062
8065
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, localVarApiKeyValue, _a, headersFromBaseOptions;
|
|
@@ -8095,6 +8098,15 @@
|
|
|
8095
8098
|
if (q !== undefined) {
|
|
8096
8099
|
localVarQueryParameter['q'] = q;
|
|
8097
8100
|
}
|
|
8101
|
+
if (sort !== undefined) {
|
|
8102
|
+
localVarQueryParameter['sort'] = sort;
|
|
8103
|
+
}
|
|
8104
|
+
if (fields) {
|
|
8105
|
+
localVarQueryParameter['fields'] = fields;
|
|
8106
|
+
}
|
|
8107
|
+
if (id) {
|
|
8108
|
+
localVarQueryParameter['id'] = id;
|
|
8109
|
+
}
|
|
8098
8110
|
localVarUrlObj.query = tslib.__assign(tslib.__assign(tslib.__assign({}, localVarUrlObj.query), localVarQueryParameter), options.query);
|
|
8099
8111
|
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
8100
8112
|
delete localVarUrlObj.search;
|
|
@@ -8294,15 +8306,18 @@
|
|
|
8294
8306
|
* @param {number} [page]
|
|
8295
8307
|
* @param {number} [size]
|
|
8296
8308
|
* @param {string} [q]
|
|
8309
|
+
* @param {string} [sort]
|
|
8310
|
+
* @param {Array<string>} [fields]
|
|
8311
|
+
* @param {Array<number>} [id]
|
|
8297
8312
|
* @param {*} [options] Override http request option.
|
|
8298
8313
|
* @throws {RequiredError}
|
|
8299
8314
|
*/
|
|
8300
|
-
searchTimezones: function (page, size, q, options) {
|
|
8315
|
+
searchTimezones: function (page, size, q, sort, fields, id, options) {
|
|
8301
8316
|
return tslib.__awaiter(this, void 0, void 0, function () {
|
|
8302
8317
|
var localVarAxiosArgs;
|
|
8303
8318
|
return tslib.__generator(this, function (_a) {
|
|
8304
8319
|
switch (_a.label) {
|
|
8305
|
-
case 0: return [4 /*yield*/, CalendarServiceApiAxiosParamCreator(configuration).searchTimezones(page, size, q, options)];
|
|
8320
|
+
case 0: return [4 /*yield*/, CalendarServiceApiAxiosParamCreator(configuration).searchTimezones(page, size, q, sort, fields, id, options)];
|
|
8306
8321
|
case 1:
|
|
8307
8322
|
localVarAxiosArgs = _a.sent();
|
|
8308
8323
|
return [2 /*return*/, function (axios, basePath) {
|
|
@@ -8410,12 +8425,15 @@
|
|
|
8410
8425
|
* @param {number} [page]
|
|
8411
8426
|
* @param {number} [size]
|
|
8412
8427
|
* @param {string} [q]
|
|
8428
|
+
* @param {string} [sort]
|
|
8429
|
+
* @param {Array<string>} [fields]
|
|
8430
|
+
* @param {Array<number>} [id]
|
|
8413
8431
|
* @param {*} [options] Override http request option.
|
|
8414
8432
|
* @throws {RequiredError}
|
|
8415
8433
|
*/
|
|
8416
|
-
searchTimezones: function (page, size, q, options) {
|
|
8434
|
+
searchTimezones: function (page, size, q, sort, fields, id, options) {
|
|
8417
8435
|
return CalendarServiceApiFp(configuration)
|
|
8418
|
-
.searchTimezones(page, size, q, options)
|
|
8436
|
+
.searchTimezones(page, size, q, sort, fields, id, options)
|
|
8419
8437
|
.then(function (request) { return request(axios, basePath); });
|
|
8420
8438
|
},
|
|
8421
8439
|
/**
|
|
@@ -8513,14 +8531,17 @@
|
|
|
8513
8531
|
* @param {number} [page]
|
|
8514
8532
|
* @param {number} [size]
|
|
8515
8533
|
* @param {string} [q]
|
|
8534
|
+
* @param {string} [sort]
|
|
8535
|
+
* @param {Array<string>} [fields]
|
|
8536
|
+
* @param {Array<number>} [id]
|
|
8516
8537
|
* @param {*} [options] Override http request option.
|
|
8517
8538
|
* @throws {RequiredError}
|
|
8518
8539
|
* @memberof CalendarServiceApi
|
|
8519
8540
|
*/
|
|
8520
|
-
CalendarServiceApi.prototype.searchTimezones = function (page, size, q, options) {
|
|
8541
|
+
CalendarServiceApi.prototype.searchTimezones = function (page, size, q, sort, fields, id, options) {
|
|
8521
8542
|
var _this = this;
|
|
8522
8543
|
return CalendarServiceApiFp(this.configuration)
|
|
8523
|
-
.searchTimezones(page, size, q, options)
|
|
8544
|
+
.searchTimezones(page, size, q, sort, fields, id, options)
|
|
8524
8545
|
.then(function (request) { return request(_this.axios, _this.basePath); });
|
|
8525
8546
|
};
|
|
8526
8547
|
/**
|
|
@@ -12955,10 +12976,11 @@
|
|
|
12955
12976
|
},
|
|
12956
12977
|
/**
|
|
12957
12978
|
*
|
|
12979
|
+
* @param {boolean} [includeExisting]
|
|
12958
12980
|
* @param {*} [options] Override http request option.
|
|
12959
12981
|
* @throws {RequiredError}
|
|
12960
12982
|
*/
|
|
12961
|
-
readSystemObjects: function (options) {
|
|
12983
|
+
readSystemObjects: function (includeExisting, options) {
|
|
12962
12984
|
if (options === void 0) { options = {}; }
|
|
12963
12985
|
return tslib.__awaiter(_this, void 0, void 0, function () {
|
|
12964
12986
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, localVarApiKeyValue, _a, headersFromBaseOptions;
|
|
@@ -12988,6 +13010,9 @@
|
|
|
12988
13010
|
localVarHeaderParameter['X-Webitel-Access'] = localVarApiKeyValue;
|
|
12989
13011
|
_b.label = 5;
|
|
12990
13012
|
case 5:
|
|
13013
|
+
if (includeExisting !== undefined) {
|
|
13014
|
+
localVarQueryParameter['include_existing'] = includeExisting;
|
|
13015
|
+
}
|
|
12991
13016
|
localVarUrlObj.query = tslib.__assign(tslib.__assign(tslib.__assign({}, localVarUrlObj.query), localVarQueryParameter), options.query);
|
|
12992
13017
|
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
12993
13018
|
delete localVarUrlObj.search;
|
|
@@ -13264,15 +13289,16 @@
|
|
|
13264
13289
|
},
|
|
13265
13290
|
/**
|
|
13266
13291
|
*
|
|
13292
|
+
* @param {boolean} [includeExisting]
|
|
13267
13293
|
* @param {*} [options] Override http request option.
|
|
13268
13294
|
* @throws {RequiredError}
|
|
13269
13295
|
*/
|
|
13270
|
-
readSystemObjects: function (options) {
|
|
13296
|
+
readSystemObjects: function (includeExisting, options) {
|
|
13271
13297
|
return tslib.__awaiter(this, void 0, void 0, function () {
|
|
13272
13298
|
var localVarAxiosArgs;
|
|
13273
13299
|
return tslib.__generator(this, function (_a) {
|
|
13274
13300
|
switch (_a.label) {
|
|
13275
|
-
case 0: return [4 /*yield*/, ConfigServiceApiAxiosParamCreator(configuration).readSystemObjects(options)];
|
|
13301
|
+
case 0: return [4 /*yield*/, ConfigServiceApiAxiosParamCreator(configuration).readSystemObjects(includeExisting, options)];
|
|
13276
13302
|
case 1:
|
|
13277
13303
|
localVarAxiosArgs = _a.sent();
|
|
13278
13304
|
return [2 /*return*/, function (axios, basePath) {
|
|
@@ -13404,12 +13430,13 @@
|
|
|
13404
13430
|
},
|
|
13405
13431
|
/**
|
|
13406
13432
|
*
|
|
13433
|
+
* @param {boolean} [includeExisting]
|
|
13407
13434
|
* @param {*} [options] Override http request option.
|
|
13408
13435
|
* @throws {RequiredError}
|
|
13409
13436
|
*/
|
|
13410
|
-
readSystemObjects: function (options) {
|
|
13437
|
+
readSystemObjects: function (includeExisting, options) {
|
|
13411
13438
|
return ConfigServiceApiFp(configuration)
|
|
13412
|
-
.readSystemObjects(options)
|
|
13439
|
+
.readSystemObjects(includeExisting, options)
|
|
13413
13440
|
.then(function (request) { return request(axios, basePath); });
|
|
13414
13441
|
},
|
|
13415
13442
|
/**
|
|
@@ -13520,14 +13547,15 @@
|
|
|
13520
13547
|
};
|
|
13521
13548
|
/**
|
|
13522
13549
|
*
|
|
13550
|
+
* @param {boolean} [includeExisting]
|
|
13523
13551
|
* @param {*} [options] Override http request option.
|
|
13524
13552
|
* @throws {RequiredError}
|
|
13525
13553
|
* @memberof ConfigServiceApi
|
|
13526
13554
|
*/
|
|
13527
|
-
ConfigServiceApi.prototype.readSystemObjects = function (options) {
|
|
13555
|
+
ConfigServiceApi.prototype.readSystemObjects = function (includeExisting, options) {
|
|
13528
13556
|
var _this = this;
|
|
13529
13557
|
return ConfigServiceApiFp(this.configuration)
|
|
13530
|
-
.readSystemObjects(options)
|
|
13558
|
+
.readSystemObjects(includeExisting, options)
|
|
13531
13559
|
.then(function (request) { return request(_this.axios, _this.basePath); });
|
|
13532
13560
|
};
|
|
13533
13561
|
/**
|
|
@@ -19484,7 +19512,7 @@
|
|
|
19484
19512
|
return {
|
|
19485
19513
|
/**
|
|
19486
19514
|
*
|
|
19487
|
-
* @param {number} configId
|
|
19515
|
+
* @param {number} configId
|
|
19488
19516
|
* @param {number} [page]
|
|
19489
19517
|
* @param {number} [size]
|
|
19490
19518
|
* @param {string} [q]
|
|
@@ -19492,7 +19520,7 @@
|
|
|
19492
19520
|
* @param {Array<string>} [fields]
|
|
19493
19521
|
* @param {number} [userId]
|
|
19494
19522
|
* @param {string} [userName]
|
|
19495
|
-
* @param {'DEFAULT_NO_ACTION' | 'CREATE' | 'UPDATE' | 'READ' | 'DELETE'} [action]
|
|
19523
|
+
* @param {'DEFAULT_NO_ACTION' | 'CREATE' | 'UPDATE' | 'READ' | 'DELETE'} [action]
|
|
19496
19524
|
* @param {string} [userIp]
|
|
19497
19525
|
* @param {string} [dateFrom]
|
|
19498
19526
|
* @param {string} [dateTo]
|
|
@@ -19558,13 +19586,13 @@
|
|
|
19558
19586
|
localVarQueryParameter['action'] = action;
|
|
19559
19587
|
}
|
|
19560
19588
|
if (userIp !== undefined) {
|
|
19561
|
-
localVarQueryParameter['
|
|
19589
|
+
localVarQueryParameter['user_ip'] = userIp;
|
|
19562
19590
|
}
|
|
19563
19591
|
if (dateFrom !== undefined) {
|
|
19564
|
-
localVarQueryParameter['
|
|
19592
|
+
localVarQueryParameter['date_from'] = dateFrom;
|
|
19565
19593
|
}
|
|
19566
19594
|
if (dateTo !== undefined) {
|
|
19567
|
-
localVarQueryParameter['
|
|
19595
|
+
localVarQueryParameter['date_to'] = dateTo;
|
|
19568
19596
|
}
|
|
19569
19597
|
localVarUrlObj.query = tslib.__assign(tslib.__assign(tslib.__assign({}, localVarUrlObj.query), localVarQueryParameter), options.query);
|
|
19570
19598
|
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
@@ -19655,13 +19683,13 @@
|
|
|
19655
19683
|
localVarQueryParameter['action'] = action;
|
|
19656
19684
|
}
|
|
19657
19685
|
if (userIp !== undefined) {
|
|
19658
|
-
localVarQueryParameter['
|
|
19686
|
+
localVarQueryParameter['user_ip'] = userIp;
|
|
19659
19687
|
}
|
|
19660
19688
|
if (dateFrom !== undefined) {
|
|
19661
|
-
localVarQueryParameter['
|
|
19689
|
+
localVarQueryParameter['date_from'] = dateFrom;
|
|
19662
19690
|
}
|
|
19663
19691
|
if (dateTo !== undefined) {
|
|
19664
|
-
localVarQueryParameter['
|
|
19692
|
+
localVarQueryParameter['date_to'] = dateTo;
|
|
19665
19693
|
}
|
|
19666
19694
|
localVarUrlObj.query = tslib.__assign(tslib.__assign(tslib.__assign({}, localVarUrlObj.query), localVarQueryParameter), options.query);
|
|
19667
19695
|
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
@@ -19686,7 +19714,7 @@
|
|
|
19686
19714
|
return {
|
|
19687
19715
|
/**
|
|
19688
19716
|
*
|
|
19689
|
-
* @param {number} configId
|
|
19717
|
+
* @param {number} configId
|
|
19690
19718
|
* @param {number} [page]
|
|
19691
19719
|
* @param {number} [size]
|
|
19692
19720
|
* @param {string} [q]
|
|
@@ -19694,7 +19722,7 @@
|
|
|
19694
19722
|
* @param {Array<string>} [fields]
|
|
19695
19723
|
* @param {number} [userId]
|
|
19696
19724
|
* @param {string} [userName]
|
|
19697
|
-
* @param {'DEFAULT_NO_ACTION' | 'CREATE' | 'UPDATE' | 'READ' | 'DELETE'} [action]
|
|
19725
|
+
* @param {'DEFAULT_NO_ACTION' | 'CREATE' | 'UPDATE' | 'READ' | 'DELETE'} [action]
|
|
19698
19726
|
* @param {string} [userIp]
|
|
19699
19727
|
* @param {string} [dateFrom]
|
|
19700
19728
|
* @param {string} [dateTo]
|
|
@@ -19764,7 +19792,7 @@
|
|
|
19764
19792
|
return {
|
|
19765
19793
|
/**
|
|
19766
19794
|
*
|
|
19767
|
-
* @param {number} configId
|
|
19795
|
+
* @param {number} configId
|
|
19768
19796
|
* @param {number} [page]
|
|
19769
19797
|
* @param {number} [size]
|
|
19770
19798
|
* @param {string} [q]
|
|
@@ -19772,7 +19800,7 @@
|
|
|
19772
19800
|
* @param {Array<string>} [fields]
|
|
19773
19801
|
* @param {number} [userId]
|
|
19774
19802
|
* @param {string} [userName]
|
|
19775
|
-
* @param {'DEFAULT_NO_ACTION' | 'CREATE' | 'UPDATE' | 'READ' | 'DELETE'} [action]
|
|
19803
|
+
* @param {'DEFAULT_NO_ACTION' | 'CREATE' | 'UPDATE' | 'READ' | 'DELETE'} [action]
|
|
19776
19804
|
* @param {string} [userIp]
|
|
19777
19805
|
* @param {string} [dateFrom]
|
|
19778
19806
|
* @param {string} [dateTo]
|
|
@@ -19821,7 +19849,7 @@
|
|
|
19821
19849
|
}
|
|
19822
19850
|
/**
|
|
19823
19851
|
*
|
|
19824
|
-
* @param {number} configId
|
|
19852
|
+
* @param {number} configId
|
|
19825
19853
|
* @param {number} [page]
|
|
19826
19854
|
* @param {number} [size]
|
|
19827
19855
|
* @param {string} [q]
|
|
@@ -19829,7 +19857,7 @@
|
|
|
19829
19857
|
* @param {Array<string>} [fields]
|
|
19830
19858
|
* @param {number} [userId]
|
|
19831
19859
|
* @param {string} [userName]
|
|
19832
|
-
* @param {'DEFAULT_NO_ACTION' | 'CREATE' | 'UPDATE' | 'READ' | 'DELETE'} [action]
|
|
19860
|
+
* @param {'DEFAULT_NO_ACTION' | 'CREATE' | 'UPDATE' | 'READ' | 'DELETE'} [action]
|
|
19833
19861
|
* @param {string} [userIp]
|
|
19834
19862
|
* @param {string} [dateFrom]
|
|
19835
19863
|
* @param {string} [dateTo]
|
|
@@ -41279,6 +41307,19 @@
|
|
|
41279
41307
|
* Do not edit the class manually.
|
|
41280
41308
|
*/
|
|
41281
41309
|
|
|
41310
|
+
// tslint:disable
|
|
41311
|
+
/**
|
|
41312
|
+
* Webitel engine API
|
|
41313
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
41314
|
+
*
|
|
41315
|
+
* The version of the OpenAPI document: 23.07.0
|
|
41316
|
+
* Contact: support@webitel.com
|
|
41317
|
+
*
|
|
41318
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
41319
|
+
* https://openapi-generator.tech
|
|
41320
|
+
* Do not edit the class manually.
|
|
41321
|
+
*/
|
|
41322
|
+
|
|
41282
41323
|
// tslint:disable
|
|
41283
41324
|
(function (ProtobufNullValue) {
|
|
41284
41325
|
ProtobufNullValue["NULLVALUE"] = "NULL_VALUE";
|