webitel-sdk 0.1.184 → 0.1.185
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 +14 -7
- 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 +14 -7
- 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/audit-form-service-api.js +14 -7
- package/esm2015/api/audit-form-service-api.js.map +1 -1
- package/esm5/api/audit-form-service-api.js +14 -7
- package/esm5/api/audit-form-service-api.js.map +1 -1
- package/package.json +1 -1
- package/types/api/audit-form-service-api.d.ts +8 -4
- package/types/api/audit-form-service-api.d.ts.map +1 -1
package/bundles/index.esm.js
CHANGED
|
@@ -5047,10 +5047,11 @@ const AuditFormServiceApiAxiosParamCreator = function (configuration) {
|
|
|
5047
5047
|
* @param {boolean} [archive]
|
|
5048
5048
|
* @param {boolean} [editable]
|
|
5049
5049
|
* @param {boolean} [active]
|
|
5050
|
+
* @param {string} [question]
|
|
5050
5051
|
* @param {*} [options] Override http request option.
|
|
5051
5052
|
* @throws {RequiredError}
|
|
5052
5053
|
*/
|
|
5053
|
-
searchAuditForm: async (page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, options = {}) => {
|
|
5054
|
+
searchAuditForm: async (page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, question, options = {}) => {
|
|
5054
5055
|
const localVarPath = `/call_center/audit/forms`;
|
|
5055
5056
|
const localVarUrlObj = parse(localVarPath, true);
|
|
5056
5057
|
let baseOptions;
|
|
@@ -5104,6 +5105,9 @@ const AuditFormServiceApiAxiosParamCreator = function (configuration) {
|
|
|
5104
5105
|
if (active !== undefined) {
|
|
5105
5106
|
localVarQueryParameter['active'] = active;
|
|
5106
5107
|
}
|
|
5108
|
+
if (question !== undefined) {
|
|
5109
|
+
localVarQueryParameter['question'] = question;
|
|
5110
|
+
}
|
|
5107
5111
|
localVarUrlObj.query = {
|
|
5108
5112
|
...localVarUrlObj.query,
|
|
5109
5113
|
...localVarQueryParameter,
|
|
@@ -5389,11 +5393,12 @@ const AuditFormServiceApiFp = function (configuration) {
|
|
|
5389
5393
|
* @param {boolean} [archive]
|
|
5390
5394
|
* @param {boolean} [editable]
|
|
5391
5395
|
* @param {boolean} [active]
|
|
5396
|
+
* @param {string} [question]
|
|
5392
5397
|
* @param {*} [options] Override http request option.
|
|
5393
5398
|
* @throws {RequiredError}
|
|
5394
5399
|
*/
|
|
5395
|
-
async searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, options) {
|
|
5396
|
-
const localVarAxiosArgs = await AuditFormServiceApiAxiosParamCreator(configuration).searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, options);
|
|
5400
|
+
async searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, question, options) {
|
|
5401
|
+
const localVarAxiosArgs = await AuditFormServiceApiAxiosParamCreator(configuration).searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, question, options);
|
|
5397
5402
|
return (axios = globalAxios, basePath = BASE_PATH) => {
|
|
5398
5403
|
const axiosRequestArgs = {
|
|
5399
5404
|
...localVarAxiosArgs.options,
|
|
@@ -5533,12 +5538,13 @@ const AuditFormServiceApiFactory = function (configuration, basePath, axios) {
|
|
|
5533
5538
|
* @param {boolean} [archive]
|
|
5534
5539
|
* @param {boolean} [editable]
|
|
5535
5540
|
* @param {boolean} [active]
|
|
5541
|
+
* @param {string} [question]
|
|
5536
5542
|
* @param {*} [options] Override http request option.
|
|
5537
5543
|
* @throws {RequiredError}
|
|
5538
5544
|
*/
|
|
5539
|
-
searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, options) {
|
|
5545
|
+
searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, question, options) {
|
|
5540
5546
|
return AuditFormServiceApiFp(configuration)
|
|
5541
|
-
.searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, options)
|
|
5547
|
+
.searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, question, options)
|
|
5542
5548
|
.then((request) => request(axios, basePath));
|
|
5543
5549
|
},
|
|
5544
5550
|
/**
|
|
@@ -5669,13 +5675,14 @@ class AuditFormServiceApi extends BaseAPI {
|
|
|
5669
5675
|
* @param {boolean} [archive]
|
|
5670
5676
|
* @param {boolean} [editable]
|
|
5671
5677
|
* @param {boolean} [active]
|
|
5678
|
+
* @param {string} [question]
|
|
5672
5679
|
* @param {*} [options] Override http request option.
|
|
5673
5680
|
* @throws {RequiredError}
|
|
5674
5681
|
* @memberof AuditFormServiceApi
|
|
5675
5682
|
*/
|
|
5676
|
-
searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, options) {
|
|
5683
|
+
searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, question, options) {
|
|
5677
5684
|
return AuditFormServiceApiFp(this.configuration)
|
|
5678
|
-
.searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, options)
|
|
5685
|
+
.searchAuditForm(page, size, q, sort, fields, id, teamId, enabled, archive, editable, active, question, options)
|
|
5679
5686
|
.then((request) => request(this.axios, this.basePath));
|
|
5680
5687
|
}
|
|
5681
5688
|
/**
|