webitel-sdk 0.1.90 → 0.1.91
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 +125 -27
- 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 +138 -27
- 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-patch-queue-bucket-request.js +13 -0
- package/esm2015/api/engine-patch-queue-bucket-request.js.map +1 -0
- package/esm2015/api/index.js.map +1 -1
- package/esm2015/api/queue-bucket-service-api.js +125 -27
- package/esm2015/api/queue-bucket-service-api.js.map +1 -1
- package/esm5/api/engine-patch-queue-bucket-request.js +13 -0
- package/esm5/api/engine-patch-queue-bucket-request.js.map +1 -0
- package/esm5/api/index.js.map +1 -1
- package/esm5/api/queue-bucket-service-api.js +138 -27
- package/esm5/api/queue-bucket-service-api.js.map +1 -1
- package/package.json +1 -1
- package/types/api/engine-create-queue-bucket-request.d.ts +8 -2
- package/types/api/engine-create-queue-bucket-request.d.ts.map +1 -1
- package/types/api/engine-patch-queue-bucket-request.d.ts +62 -0
- package/types/api/engine-patch-queue-bucket-request.d.ts.map +1 -0
- package/types/api/engine-queue-bucket.d.ts +12 -0
- package/types/api/engine-queue-bucket.d.ts.map +1 -1
- package/types/api/engine-update-queue-bucket-request.d.ts +8 -2
- package/types/api/engine-update-queue-bucket-request.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/queue-bucket-service-api.d.ts +46 -16
- package/types/api/queue-bucket-service-api.d.ts.map +1 -1
|
@@ -13,6 +13,7 @@ import { AxiosPromise, AxiosInstance } from 'axios';
|
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import { EngineCreateQueueBucketRequest } from '../api';
|
|
16
|
+
import { EnginePatchQueueBucketRequest } from '../api';
|
|
16
17
|
import { EngineUpdateQueueBucketRequest } from '../api';
|
|
17
18
|
/**
|
|
18
19
|
* QueueBucketServiceApi - axios parameter creator
|
|
@@ -33,21 +34,28 @@ export declare const QueueBucketServiceApiAxiosParamCreator: (configuration?: Co
|
|
|
33
34
|
* @summary DeleteQueueRouting
|
|
34
35
|
* @param {string} queueId
|
|
35
36
|
* @param {string} id
|
|
36
|
-
* @param {string} [domainId]
|
|
37
37
|
* @param {*} [options] Override http request option.
|
|
38
38
|
* @throws {RequiredError}
|
|
39
39
|
*/
|
|
40
|
-
deleteQueueBucket: (queueId: string, id: string,
|
|
40
|
+
deleteQueueBucket: (queueId: string, id: string, options?: any) => Promise<RequestArgs>;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @param {string} queueId
|
|
44
|
+
* @param {string} id
|
|
45
|
+
* @param {EnginePatchQueueBucketRequest} body
|
|
46
|
+
* @param {*} [options] Override http request option.
|
|
47
|
+
* @throws {RequiredError}
|
|
48
|
+
*/
|
|
49
|
+
patchQueueBucket: (queueId: string, id: string, body: any, options?: any) => Promise<RequestArgs>;
|
|
41
50
|
/**
|
|
42
51
|
*
|
|
43
52
|
* @summary ReadQueueRouting
|
|
44
53
|
* @param {string} queueId
|
|
45
54
|
* @param {string} id
|
|
46
|
-
* @param {string} [domainId]
|
|
47
55
|
* @param {*} [options] Override http request option.
|
|
48
56
|
* @throws {RequiredError}
|
|
49
57
|
*/
|
|
50
|
-
readQueueBucket: (queueId: string, id: string,
|
|
58
|
+
readQueueBucket: (queueId: string, id: string, options?: any) => Promise<RequestArgs>;
|
|
51
59
|
/**
|
|
52
60
|
*
|
|
53
61
|
* @summary SearchQueueRouting
|
|
@@ -92,21 +100,28 @@ export declare const QueueBucketServiceApiFp: (configuration?: Configuration | u
|
|
|
92
100
|
* @summary DeleteQueueRouting
|
|
93
101
|
* @param {string} queueId
|
|
94
102
|
* @param {string} id
|
|
95
|
-
* @param {string} [domainId]
|
|
96
103
|
* @param {*} [options] Override http request option.
|
|
97
104
|
* @throws {RequiredError}
|
|
98
105
|
*/
|
|
99
|
-
deleteQueueBucket(queueId: string, id: string,
|
|
106
|
+
deleteQueueBucket(queueId: string, id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @param {string} queueId
|
|
110
|
+
* @param {string} id
|
|
111
|
+
* @param {EnginePatchQueueBucketRequest} body
|
|
112
|
+
* @param {*} [options] Override http request option.
|
|
113
|
+
* @throws {RequiredError}
|
|
114
|
+
*/
|
|
115
|
+
patchQueueBucket(queueId: string, id: string, body: any, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
100
116
|
/**
|
|
101
117
|
*
|
|
102
118
|
* @summary ReadQueueRouting
|
|
103
119
|
* @param {string} queueId
|
|
104
120
|
* @param {string} id
|
|
105
|
-
* @param {string} [domainId]
|
|
106
121
|
* @param {*} [options] Override http request option.
|
|
107
122
|
* @throws {RequiredError}
|
|
108
123
|
*/
|
|
109
|
-
readQueueBucket(queueId: string, id: string,
|
|
124
|
+
readQueueBucket(queueId: string, id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
110
125
|
/**
|
|
111
126
|
*
|
|
112
127
|
* @summary SearchQueueRouting
|
|
@@ -151,21 +166,28 @@ export declare const QueueBucketServiceApiFactory: (configuration?: Configuratio
|
|
|
151
166
|
* @summary DeleteQueueRouting
|
|
152
167
|
* @param {string} queueId
|
|
153
168
|
* @param {string} id
|
|
154
|
-
* @param {string} [domainId]
|
|
155
169
|
* @param {*} [options] Override http request option.
|
|
156
170
|
* @throws {RequiredError}
|
|
157
171
|
*/
|
|
158
|
-
deleteQueueBucket(queueId: string, id: string,
|
|
172
|
+
deleteQueueBucket(queueId: string, id: string, options?: any): AxiosPromise<any>;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @param {string} queueId
|
|
176
|
+
* @param {string} id
|
|
177
|
+
* @param {EnginePatchQueueBucketRequest} body
|
|
178
|
+
* @param {*} [options] Override http request option.
|
|
179
|
+
* @throws {RequiredError}
|
|
180
|
+
*/
|
|
181
|
+
patchQueueBucket(queueId: string, id: string, body: any, options?: any): AxiosPromise<any>;
|
|
159
182
|
/**
|
|
160
183
|
*
|
|
161
184
|
* @summary ReadQueueRouting
|
|
162
185
|
* @param {string} queueId
|
|
163
186
|
* @param {string} id
|
|
164
|
-
* @param {string} [domainId]
|
|
165
187
|
* @param {*} [options] Override http request option.
|
|
166
188
|
* @throws {RequiredError}
|
|
167
189
|
*/
|
|
168
|
-
readQueueBucket(queueId: string, id: string,
|
|
190
|
+
readQueueBucket(queueId: string, id: string, options?: any): AxiosPromise<any>;
|
|
169
191
|
/**
|
|
170
192
|
*
|
|
171
193
|
* @summary SearchQueueRouting
|
|
@@ -213,23 +235,31 @@ export declare class QueueBucketServiceApi extends BaseAPI {
|
|
|
213
235
|
* @summary DeleteQueueRouting
|
|
214
236
|
* @param {string} queueId
|
|
215
237
|
* @param {string} id
|
|
216
|
-
* @param {string} [domainId]
|
|
217
238
|
* @param {*} [options] Override http request option.
|
|
218
239
|
* @throws {RequiredError}
|
|
219
240
|
* @memberof QueueBucketServiceApi
|
|
220
241
|
*/
|
|
221
|
-
deleteQueueBucket(queueId: string, id: string,
|
|
242
|
+
deleteQueueBucket(queueId: string, id: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
|
|
243
|
+
/**
|
|
244
|
+
*
|
|
245
|
+
* @param {string} queueId
|
|
246
|
+
* @param {string} id
|
|
247
|
+
* @param {EnginePatchQueueBucketRequest} body
|
|
248
|
+
* @param {*} [options] Override http request option.
|
|
249
|
+
* @throws {RequiredError}
|
|
250
|
+
* @memberof QueueBucketServiceApi
|
|
251
|
+
*/
|
|
252
|
+
patchQueueBucket(queueId: string, id: string, body: EnginePatchQueueBucketRequest, options?: any): Promise<import("axios").AxiosResponse<any>>;
|
|
222
253
|
/**
|
|
223
254
|
*
|
|
224
255
|
* @summary ReadQueueRouting
|
|
225
256
|
* @param {string} queueId
|
|
226
257
|
* @param {string} id
|
|
227
|
-
* @param {string} [domainId]
|
|
228
258
|
* @param {*} [options] Override http request option.
|
|
229
259
|
* @throws {RequiredError}
|
|
230
260
|
* @memberof QueueBucketServiceApi
|
|
231
261
|
*/
|
|
232
|
-
readQueueBucket(queueId: string, id: string,
|
|
262
|
+
readQueueBucket(queueId: string, id: string, options?: any): Promise<import("axios").AxiosResponse<any>>;
|
|
233
263
|
/**
|
|
234
264
|
*
|
|
235
265
|
* @summary SearchQueueRouting
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"queue-bucket-service-api.d.ts","sourceRoot":"","sources":["../../../src/api/queue-bucket-service-api.ts"],"names":[],"mappings":"AACA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAGhD,OAAO,EAGL,WAAW,EACX,OAAO,EAER,MAAM,SAAS,CAAA;AAEhB,OAAO,EAAE,8BAA8B,EAAE,MAAM,QAAQ,CAAA;
|
|
1
|
+
{"version":3,"file":"queue-bucket-service-api.d.ts","sourceRoot":"","sources":["../../../src/api/queue-bucket-service-api.ts"],"names":[],"mappings":"AACA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAGhD,OAAO,EAGL,WAAW,EACX,OAAO,EAER,MAAM,SAAS,CAAA;AAEhB,OAAO,EAAE,8BAA8B,EAAE,MAAM,QAAQ,CAAA;AAIvD,OAAO,EAAE,6BAA6B,EAAE,MAAM,QAAQ,CAAA;AAItD,OAAO,EAAE,8BAA8B,EAAE,MAAM,QAAQ,CAAA;AACvD;;;GAGG;AACH,eAAO,MAAM,sCAAsC;IAI/C;;;;;;;OAOG;;IA0EH;;;;;;;OAOG;;IAiEH;;;;;;;OAOG;;IAiFH;;;;;;;OAOG;;IAiEH;;;;;;;;;;;;OAYG;;IAwFH;;;;;;;;OAQG;;CAkFN,CAAA;AAED;;;GAGG;AACH,eAAO,MAAM,uBAAuB;IAEhC;;;;;;;OAOG;;IAyBH;;;;;;;OAOG;;IAyBH;;;;;;;OAOG;;IA0BH;;;;;;;OAOG;;IAyBH;;;;;;;;;;;;OAYG;;IA8BH;;;;;;;;OAQG;;CA2BN,CAAA;AAED;;;GAGG;AACH,eAAO,MAAM,4BAA4B;IAMrC;;;;;;;OAOG;;IAUH;;;;;;;OAOG;;IAUH;;;;;;;OAOG;;IAWH;;;;;;;OAOG;;IAUH;;;;;;;;;;;;OAYG;;IAeH;;;;;;;;OAQG;;CAYN,CAAA;AAED;;;;;GAKG;AACH,qBAAa,qBAAsB,SAAQ,OAAO;IAChD;;;;;;;;OAQG;IACI,iBAAiB,CACtB,OAAO,EAAE,MAAM,EACf,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,GAAG;IAOf;;;;;;;;OAQG;IACI,iBAAiB,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG;IAMnE;;;;;;;;OAQG;IACI,gBAAgB,CACrB,OAAO,EAAE,MAAM,EACf,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,6BAA6B,EACnC,OAAO,CAAC,EAAE,GAAG;IAOf;;;;;;;;OAQG;IACI,eAAe,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,GAAG;IAMjE;;;;;;;;;;;;;OAaG;IACI,iBAAiB,CACtB,OAAO,EAAE,MAAM,EACf,IAAI,CAAC,EAAE,MAAM,EACb,IAAI,CAAC,EAAE,MAAM,EACb,CAAC,CAAC,EAAE,MAAM,EACV,IAAI,CAAC,EAAE,MAAM,EACb,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EACtB,EAAE,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,EAClB,OAAO,CAAC,EAAE,GAAG;IAOf;;;;;;;;;OASG;IACI,iBAAiB,CACtB,OAAO,EAAE,MAAM,EACf,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,GAAG;CAMhB"}
|