@wildix/wms-api-client 1.1.25 → 1.1.26
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/dist-cjs/WmsApi.js +20 -0
- package/dist-cjs/commands/CallControlAnswerCommand.js +21 -0
- package/dist-cjs/commands/CallControlAttendantTransferCommand.js +21 -0
- package/dist-cjs/commands/CallControlBlindTransferCommand.js +21 -0
- package/dist-cjs/commands/CallControlHangupCommand.js +21 -0
- package/dist-cjs/commands/CallControlHoldCommand.js +21 -0
- package/dist-cjs/commands/CallControlMakeCallCommand.js +21 -0
- package/dist-cjs/commands/CallControlUnholdCommand.js +21 -0
- package/dist-cjs/commands/CallControlUpdateContactInfoCommand.js +21 -0
- package/dist-cjs/commands/ListUserActiveCallsCommand.js +21 -0
- package/dist-cjs/commands/ListUserDevicesCommand.js +21 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/models/models_0.js +35 -1
- package/dist-cjs/protocols/Aws_restJson1.js +385 -1
- package/dist-es/WmsApi.js +20 -0
- package/dist-es/commands/CallControlAnswerCommand.js +17 -0
- package/dist-es/commands/CallControlAttendantTransferCommand.js +17 -0
- package/dist-es/commands/CallControlBlindTransferCommand.js +17 -0
- package/dist-es/commands/CallControlHangupCommand.js +17 -0
- package/dist-es/commands/CallControlHoldCommand.js +17 -0
- package/dist-es/commands/CallControlMakeCallCommand.js +17 -0
- package/dist-es/commands/CallControlUnholdCommand.js +17 -0
- package/dist-es/commands/CallControlUpdateContactInfoCommand.js +17 -0
- package/dist-es/commands/ListUserActiveCallsCommand.js +17 -0
- package/dist-es/commands/ListUserDevicesCommand.js +17 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +32 -0
- package/dist-es/protocols/Aws_restJson1.js +364 -1
- package/dist-types/WmsApi.d.ts +72 -0
- package/dist-types/WmsApiClient.d.ts +12 -2
- package/dist-types/commands/CallControlAnswerCommand.d.ts +80 -0
- package/dist-types/commands/CallControlAttendantTransferCommand.d.ts +80 -0
- package/dist-types/commands/CallControlBlindTransferCommand.d.ts +80 -0
- package/dist-types/commands/CallControlHangupCommand.d.ts +80 -0
- package/dist-types/commands/CallControlHoldCommand.d.ts +79 -0
- package/dist-types/commands/CallControlMakeCallCommand.d.ts +78 -0
- package/dist-types/commands/CallControlUnholdCommand.d.ts +79 -0
- package/dist-types/commands/CallControlUpdateContactInfoCommand.d.ts +81 -0
- package/dist-types/commands/CreatePbxAclGroupCommand.d.ts +2 -0
- package/dist-types/commands/CreatePbxColleagueCommand.d.ts +2 -0
- package/dist-types/commands/CreatePbxOAuth2ClientCommand.d.ts +2 -0
- package/dist-types/commands/DeletePbxAclGroupCommand.d.ts +2 -0
- package/dist-types/commands/DeletePbxColleagueCommand.d.ts +2 -0
- package/dist-types/commands/DeletePbxOAuth2ClientCommand.d.ts +2 -0
- package/dist-types/commands/GetColleagueByIdCommand.d.ts +2 -0
- package/dist-types/commands/GetPbxAclGroupsPermissionsCommand.d.ts +2 -0
- package/dist-types/commands/GetPbxCallGroupsCommand.d.ts +2 -0
- package/dist-types/commands/GetPbxColleaguesCommand.d.ts +2 -0
- package/dist-types/commands/GetPbxOAuth2ClientsCommand.d.ts +2 -1
- package/dist-types/commands/GetPbxesCommand.d.ts +2 -0
- package/dist-types/commands/GetPersonalInfoCommand.d.ts +2 -0
- package/dist-types/commands/ListUserActiveCallsCommand.d.ts +86 -0
- package/dist-types/commands/ListUserDevicesCommand.d.ts +87 -0
- package/dist-types/commands/NotificationsCommand.d.ts +2 -0
- package/dist-types/commands/OriginateCallCommand.d.ts +2 -0
- package/dist-types/commands/OriginateCommand.d.ts +2 -0
- package/dist-types/commands/ReloadBroadcastsCommand.d.ts +2 -0
- package/dist-types/commands/UpdatePbxOAuth2ClientCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +321 -8
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/package.json +1 -1
|
@@ -81,11 +81,44 @@ export interface AclGroupPermission {
|
|
|
81
81
|
/**
|
|
82
82
|
* @public
|
|
83
83
|
*/
|
|
84
|
-
export interface
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
84
|
+
export interface Call {
|
|
85
|
+
sipCallId: string;
|
|
86
|
+
callerNumber: string;
|
|
87
|
+
callerName?: string | undefined;
|
|
88
|
+
calleeNumber: string;
|
|
89
|
+
calleeName?: string | undefined;
|
|
90
|
+
state: string;
|
|
91
|
+
duration: number;
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export interface CallControlAnswerInput {
|
|
97
|
+
/**
|
|
98
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
user?: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* Call identifier. For makecall action it is not required, for other actions it is required.
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
sipCallId: string;
|
|
107
|
+
/**
|
|
108
|
+
* Can specify the device to answer the call on. If not specified, the default device for the user will be used.
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
device?: string | undefined;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
export interface CallControlAnswerOutput {
|
|
117
|
+
/**
|
|
118
|
+
* A message describing the result of the call control operation, providing additional details or error information if applicable.
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
message?: string | undefined;
|
|
89
122
|
}
|
|
90
123
|
/**
|
|
91
124
|
* @public
|
|
@@ -102,9 +135,28 @@ export type ResponseType = typeof ResponseType[keyof typeof ResponseType];
|
|
|
102
135
|
/**
|
|
103
136
|
* @public
|
|
104
137
|
*/
|
|
105
|
-
export
|
|
138
|
+
export declare class ChannelNotFoundException extends __BaseException {
|
|
139
|
+
readonly name: "ChannelNotFoundException";
|
|
140
|
+
readonly $fault: "client";
|
|
106
141
|
type: ResponseType;
|
|
107
|
-
|
|
142
|
+
reason: string;
|
|
143
|
+
/**
|
|
144
|
+
* @internal
|
|
145
|
+
*/
|
|
146
|
+
constructor(opts: __ExceptionOptionType<ChannelNotFoundException, __BaseException>);
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
export declare class WmsForbiddenException extends __BaseException {
|
|
152
|
+
readonly name: "WmsForbiddenException";
|
|
153
|
+
readonly $fault: "client";
|
|
154
|
+
type: ResponseType;
|
|
155
|
+
reason: string;
|
|
156
|
+
/**
|
|
157
|
+
* @internal
|
|
158
|
+
*/
|
|
159
|
+
constructor(opts: __ExceptionOptionType<WmsForbiddenException, __BaseException>);
|
|
108
160
|
}
|
|
109
161
|
/**
|
|
110
162
|
* @public
|
|
@@ -119,6 +171,227 @@ export declare class WmsUnauthorizedException extends __BaseException {
|
|
|
119
171
|
*/
|
|
120
172
|
constructor(opts: __ExceptionOptionType<WmsUnauthorizedException, __BaseException>);
|
|
121
173
|
}
|
|
174
|
+
/**
|
|
175
|
+
* @public
|
|
176
|
+
*/
|
|
177
|
+
export interface CallControlAttendantTransferInput {
|
|
178
|
+
/**
|
|
179
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
user?: string | undefined;
|
|
183
|
+
/**
|
|
184
|
+
* Call identifier. For makecall action it is not required, for other actions it is required.
|
|
185
|
+
* @public
|
|
186
|
+
*/
|
|
187
|
+
sipCallId: string;
|
|
188
|
+
/**
|
|
189
|
+
* The destination for a call control operation. This can be a phone number, extension, or another valid identifier.
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
192
|
+
destination: string;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export interface CallControlAttendantTransferOutput {
|
|
198
|
+
/**
|
|
199
|
+
* A message describing the result of the call control operation, providing additional details or error information if applicable.
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
message?: string | undefined;
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
207
|
+
export interface CallControlBlindTransferInput {
|
|
208
|
+
/**
|
|
209
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
user?: string | undefined;
|
|
213
|
+
/**
|
|
214
|
+
* Call identifier. For makecall action it is not required, for other actions it is required.
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
217
|
+
sipCallId: string;
|
|
218
|
+
/**
|
|
219
|
+
* The destination for a call control operation. This can be a phone number, extension, or another valid identifier.
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
destination: string;
|
|
223
|
+
}
|
|
224
|
+
/**
|
|
225
|
+
* @public
|
|
226
|
+
*/
|
|
227
|
+
export interface CallControlBlindTransferOutput {
|
|
228
|
+
/**
|
|
229
|
+
* A message describing the result of the call control operation, providing additional details or error information if applicable.
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
message?: string | undefined;
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export interface CallControlHangupInput {
|
|
238
|
+
/**
|
|
239
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
240
|
+
* @public
|
|
241
|
+
*/
|
|
242
|
+
user?: string | undefined;
|
|
243
|
+
/**
|
|
244
|
+
* Call identifier. For makecall action it is not required, for other actions it is required.
|
|
245
|
+
* @public
|
|
246
|
+
*/
|
|
247
|
+
sipCallId: string;
|
|
248
|
+
/**
|
|
249
|
+
* Optional reason for the hangup. This can provide additional context for the action taken.
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
reason?: string | undefined;
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
257
|
+
export interface CallControlHangupOutput {
|
|
258
|
+
/**
|
|
259
|
+
* A message describing the result of the call control operation, providing additional details or error information if applicable.
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
262
|
+
message?: string | undefined;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* @public
|
|
266
|
+
*/
|
|
267
|
+
export interface CallControlHoldInput {
|
|
268
|
+
/**
|
|
269
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
270
|
+
* @public
|
|
271
|
+
*/
|
|
272
|
+
user?: string | undefined;
|
|
273
|
+
/**
|
|
274
|
+
* Call identifier. For makecall action it is not required, for other actions it is required.
|
|
275
|
+
* @public
|
|
276
|
+
*/
|
|
277
|
+
sipCallId: string;
|
|
278
|
+
}
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
*/
|
|
282
|
+
export interface CallControlHoldOutput {
|
|
283
|
+
/**
|
|
284
|
+
* A message describing the result of the call control operation, providing additional details or error information if applicable.
|
|
285
|
+
* @public
|
|
286
|
+
*/
|
|
287
|
+
message?: string | undefined;
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* @public
|
|
291
|
+
*/
|
|
292
|
+
export interface CallControlMakeCallInput {
|
|
293
|
+
/**
|
|
294
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
295
|
+
* @public
|
|
296
|
+
*/
|
|
297
|
+
user?: string | undefined;
|
|
298
|
+
/**
|
|
299
|
+
* The destination for a call control operation. This can be a phone number, extension, or another valid identifier.
|
|
300
|
+
* @public
|
|
301
|
+
*/
|
|
302
|
+
destination: string;
|
|
303
|
+
/**
|
|
304
|
+
* Can specify the device to answer the call on. If not specified, the default device for the user will be used.
|
|
305
|
+
* @public
|
|
306
|
+
*/
|
|
307
|
+
device?: string | undefined;
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
312
|
+
export interface CallControlMakeCallOutput {
|
|
313
|
+
/**
|
|
314
|
+
* A message describing the result of the call control operation, providing additional details or error information if applicable.
|
|
315
|
+
* @public
|
|
316
|
+
*/
|
|
317
|
+
message?: string | undefined;
|
|
318
|
+
}
|
|
319
|
+
/**
|
|
320
|
+
* @public
|
|
321
|
+
*/
|
|
322
|
+
export interface CallControlUnholdInput {
|
|
323
|
+
/**
|
|
324
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
user?: string | undefined;
|
|
328
|
+
/**
|
|
329
|
+
* Call identifier. For makecall action it is not required, for other actions it is required.
|
|
330
|
+
* @public
|
|
331
|
+
*/
|
|
332
|
+
sipCallId: string;
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* @public
|
|
336
|
+
*/
|
|
337
|
+
export interface CallControlUnholdOutput {
|
|
338
|
+
/**
|
|
339
|
+
* A message describing the result of the call control operation, providing additional details or error information if applicable.
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
342
|
+
message?: string | undefined;
|
|
343
|
+
}
|
|
344
|
+
/**
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
export interface CallControlUpdateContactInfoInput {
|
|
348
|
+
/**
|
|
349
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
user?: string | undefined;
|
|
353
|
+
/**
|
|
354
|
+
* Call identifier. For makecall action it is not required, for other actions it is required.
|
|
355
|
+
* @public
|
|
356
|
+
*/
|
|
357
|
+
sipCallId: string;
|
|
358
|
+
/**
|
|
359
|
+
* Contact name
|
|
360
|
+
* @public
|
|
361
|
+
*/
|
|
362
|
+
name?: string | undefined;
|
|
363
|
+
/**
|
|
364
|
+
* Phone number
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
phone?: string | undefined;
|
|
368
|
+
}
|
|
369
|
+
/**
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
372
|
+
export interface CallControlUpdateContactInfoOutput {
|
|
373
|
+
/**
|
|
374
|
+
* A message describing the result of the call control operation, providing additional details or error information if applicable.
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
message?: string | undefined;
|
|
378
|
+
}
|
|
379
|
+
/**
|
|
380
|
+
* @public
|
|
381
|
+
*/
|
|
382
|
+
export interface CreatePbxAclGroupInput {
|
|
383
|
+
name: string;
|
|
384
|
+
inherits?: string | undefined;
|
|
385
|
+
wcgrp?: string | undefined;
|
|
386
|
+
rules: (AclGroupRule)[];
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* @public
|
|
390
|
+
*/
|
|
391
|
+
export interface CreatePbxAclGroupOutput {
|
|
392
|
+
type: ResponseType;
|
|
393
|
+
result: AclGroup;
|
|
394
|
+
}
|
|
122
395
|
/**
|
|
123
396
|
* @public
|
|
124
397
|
* @enum
|
|
@@ -304,6 +577,14 @@ export declare class WmsNotFoundException extends __BaseException {
|
|
|
304
577
|
*/
|
|
305
578
|
constructor(opts: __ExceptionOptionType<WmsNotFoundException, __BaseException>);
|
|
306
579
|
}
|
|
580
|
+
/**
|
|
581
|
+
* @public
|
|
582
|
+
*/
|
|
583
|
+
export interface UserDevice {
|
|
584
|
+
userAgent: string;
|
|
585
|
+
contact: string;
|
|
586
|
+
active: boolean;
|
|
587
|
+
}
|
|
307
588
|
/**
|
|
308
589
|
* @public
|
|
309
590
|
*/
|
|
@@ -530,7 +811,6 @@ export interface PbxOAuth2ClientListProjection {
|
|
|
530
811
|
redirectUri: (string)[];
|
|
531
812
|
secret: string;
|
|
532
813
|
created: number;
|
|
533
|
-
expireTime: number;
|
|
534
814
|
}
|
|
535
815
|
/**
|
|
536
816
|
* @public
|
|
@@ -579,6 +859,39 @@ export interface GetPersonalInfoOutput {
|
|
|
579
859
|
type: ResponseType;
|
|
580
860
|
result: PbxColleague;
|
|
581
861
|
}
|
|
862
|
+
/**
|
|
863
|
+
* @public
|
|
864
|
+
*/
|
|
865
|
+
export interface ListUserActiveCallsInput {
|
|
866
|
+
/**
|
|
867
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
868
|
+
* @public
|
|
869
|
+
*/
|
|
870
|
+
user?: string | undefined;
|
|
871
|
+
}
|
|
872
|
+
/**
|
|
873
|
+
* @public
|
|
874
|
+
*/
|
|
875
|
+
export interface ListUserActiveCallsOutput {
|
|
876
|
+
calls: (Call)[];
|
|
877
|
+
}
|
|
878
|
+
/**
|
|
879
|
+
* @public
|
|
880
|
+
*/
|
|
881
|
+
export interface ListUserDevicesInput {
|
|
882
|
+
/**
|
|
883
|
+
* Extension, login or email. Only users with root admin authorization can specify a different user. By default, the authorized user will be used. Optional parameter.
|
|
884
|
+
* @public
|
|
885
|
+
*/
|
|
886
|
+
user?: string | undefined;
|
|
887
|
+
}
|
|
888
|
+
/**
|
|
889
|
+
* @public
|
|
890
|
+
*/
|
|
891
|
+
export interface ListUserDevicesOutput {
|
|
892
|
+
devices: (UserDevice)[];
|
|
893
|
+
activeDevice: UserDevice;
|
|
894
|
+
}
|
|
582
895
|
/**
|
|
583
896
|
* @public
|
|
584
897
|
*/
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
import { CallControlAnswerCommandInput, CallControlAnswerCommandOutput } from "../commands/CallControlAnswerCommand";
|
|
2
|
+
import { CallControlAttendantTransferCommandInput, CallControlAttendantTransferCommandOutput } from "../commands/CallControlAttendantTransferCommand";
|
|
3
|
+
import { CallControlBlindTransferCommandInput, CallControlBlindTransferCommandOutput } from "../commands/CallControlBlindTransferCommand";
|
|
4
|
+
import { CallControlHangupCommandInput, CallControlHangupCommandOutput } from "../commands/CallControlHangupCommand";
|
|
5
|
+
import { CallControlHoldCommandInput, CallControlHoldCommandOutput } from "../commands/CallControlHoldCommand";
|
|
6
|
+
import { CallControlMakeCallCommandInput, CallControlMakeCallCommandOutput } from "../commands/CallControlMakeCallCommand";
|
|
7
|
+
import { CallControlUnholdCommandInput, CallControlUnholdCommandOutput } from "../commands/CallControlUnholdCommand";
|
|
8
|
+
import { CallControlUpdateContactInfoCommandInput, CallControlUpdateContactInfoCommandOutput } from "../commands/CallControlUpdateContactInfoCommand";
|
|
1
9
|
import { CreatePbxAclGroupCommandInput, CreatePbxAclGroupCommandOutput } from "../commands/CreatePbxAclGroupCommand";
|
|
2
10
|
import { CreatePbxColleagueCommandInput, CreatePbxColleagueCommandOutput } from "../commands/CreatePbxColleagueCommand";
|
|
3
11
|
import { CreatePbxOAuth2ClientCommandInput, CreatePbxOAuth2ClientCommandOutput } from "../commands/CreatePbxOAuth2ClientCommand";
|
|
@@ -11,6 +19,8 @@ import { GetPbxColleaguesCommandInput, GetPbxColleaguesCommandOutput } from "../
|
|
|
11
19
|
import { GetPbxOAuth2ClientsCommandInput, GetPbxOAuth2ClientsCommandOutput } from "../commands/GetPbxOAuth2ClientsCommand";
|
|
12
20
|
import { GetPbxesCommandInput, GetPbxesCommandOutput } from "../commands/GetPbxesCommand";
|
|
13
21
|
import { GetPersonalInfoCommandInput, GetPersonalInfoCommandOutput } from "../commands/GetPersonalInfoCommand";
|
|
22
|
+
import { ListUserActiveCallsCommandInput, ListUserActiveCallsCommandOutput } from "../commands/ListUserActiveCallsCommand";
|
|
23
|
+
import { ListUserDevicesCommandInput, ListUserDevicesCommandOutput } from "../commands/ListUserDevicesCommand";
|
|
14
24
|
import { NotificationsCommandInput, NotificationsCommandOutput } from "../commands/NotificationsCommand";
|
|
15
25
|
import { OriginateCallCommandInput, OriginateCallCommandOutput } from "../commands/OriginateCallCommand";
|
|
16
26
|
import { OriginateCommandInput, OriginateCommandOutput } from "../commands/OriginateCommand";
|
|
@@ -18,6 +28,38 @@ import { ReloadBroadcastsCommandInput, ReloadBroadcastsCommandOutput } from "../
|
|
|
18
28
|
import { UpdatePbxOAuth2ClientCommandInput, UpdatePbxOAuth2ClientCommandOutput } from "../commands/UpdatePbxOAuth2ClientCommand";
|
|
19
29
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
20
30
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
31
|
+
/**
|
|
32
|
+
* serializeAws_restJson1CallControlAnswerCommand
|
|
33
|
+
*/
|
|
34
|
+
export declare const se_CallControlAnswerCommand: (input: CallControlAnswerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
/**
|
|
36
|
+
* serializeAws_restJson1CallControlAttendantTransferCommand
|
|
37
|
+
*/
|
|
38
|
+
export declare const se_CallControlAttendantTransferCommand: (input: CallControlAttendantTransferCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
/**
|
|
40
|
+
* serializeAws_restJson1CallControlBlindTransferCommand
|
|
41
|
+
*/
|
|
42
|
+
export declare const se_CallControlBlindTransferCommand: (input: CallControlBlindTransferCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
/**
|
|
44
|
+
* serializeAws_restJson1CallControlHangupCommand
|
|
45
|
+
*/
|
|
46
|
+
export declare const se_CallControlHangupCommand: (input: CallControlHangupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
/**
|
|
48
|
+
* serializeAws_restJson1CallControlHoldCommand
|
|
49
|
+
*/
|
|
50
|
+
export declare const se_CallControlHoldCommand: (input: CallControlHoldCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
+
/**
|
|
52
|
+
* serializeAws_restJson1CallControlMakeCallCommand
|
|
53
|
+
*/
|
|
54
|
+
export declare const se_CallControlMakeCallCommand: (input: CallControlMakeCallCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
+
/**
|
|
56
|
+
* serializeAws_restJson1CallControlUnholdCommand
|
|
57
|
+
*/
|
|
58
|
+
export declare const se_CallControlUnholdCommand: (input: CallControlUnholdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_restJson1CallControlUpdateContactInfoCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_CallControlUpdateContactInfoCommand: (input: CallControlUpdateContactInfoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
63
|
/**
|
|
22
64
|
* serializeAws_restJson1CreatePbxAclGroupCommand
|
|
23
65
|
*/
|
|
@@ -70,6 +112,14 @@ export declare const se_GetPbxOAuth2ClientsCommand: (input: GetPbxOAuth2ClientsC
|
|
|
70
112
|
* serializeAws_restJson1GetPersonalInfoCommand
|
|
71
113
|
*/
|
|
72
114
|
export declare const se_GetPersonalInfoCommand: (input: GetPersonalInfoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
115
|
+
/**
|
|
116
|
+
* serializeAws_restJson1ListUserActiveCallsCommand
|
|
117
|
+
*/
|
|
118
|
+
export declare const se_ListUserActiveCallsCommand: (input: ListUserActiveCallsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
|
+
/**
|
|
120
|
+
* serializeAws_restJson1ListUserDevicesCommand
|
|
121
|
+
*/
|
|
122
|
+
export declare const se_ListUserDevicesCommand: (input: ListUserDevicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
123
|
/**
|
|
74
124
|
* serializeAws_restJson1NotificationsCommand
|
|
75
125
|
*/
|
|
@@ -90,6 +140,38 @@ export declare const se_ReloadBroadcastsCommand: (input: ReloadBroadcastsCommand
|
|
|
90
140
|
* serializeAws_restJson1UpdatePbxOAuth2ClientCommand
|
|
91
141
|
*/
|
|
92
142
|
export declare const se_UpdatePbxOAuth2ClientCommand: (input: UpdatePbxOAuth2ClientCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
|
+
/**
|
|
144
|
+
* deserializeAws_restJson1CallControlAnswerCommand
|
|
145
|
+
*/
|
|
146
|
+
export declare const de_CallControlAnswerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CallControlAnswerCommandOutput>;
|
|
147
|
+
/**
|
|
148
|
+
* deserializeAws_restJson1CallControlAttendantTransferCommand
|
|
149
|
+
*/
|
|
150
|
+
export declare const de_CallControlAttendantTransferCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CallControlAttendantTransferCommandOutput>;
|
|
151
|
+
/**
|
|
152
|
+
* deserializeAws_restJson1CallControlBlindTransferCommand
|
|
153
|
+
*/
|
|
154
|
+
export declare const de_CallControlBlindTransferCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CallControlBlindTransferCommandOutput>;
|
|
155
|
+
/**
|
|
156
|
+
* deserializeAws_restJson1CallControlHangupCommand
|
|
157
|
+
*/
|
|
158
|
+
export declare const de_CallControlHangupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CallControlHangupCommandOutput>;
|
|
159
|
+
/**
|
|
160
|
+
* deserializeAws_restJson1CallControlHoldCommand
|
|
161
|
+
*/
|
|
162
|
+
export declare const de_CallControlHoldCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CallControlHoldCommandOutput>;
|
|
163
|
+
/**
|
|
164
|
+
* deserializeAws_restJson1CallControlMakeCallCommand
|
|
165
|
+
*/
|
|
166
|
+
export declare const de_CallControlMakeCallCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CallControlMakeCallCommandOutput>;
|
|
167
|
+
/**
|
|
168
|
+
* deserializeAws_restJson1CallControlUnholdCommand
|
|
169
|
+
*/
|
|
170
|
+
export declare const de_CallControlUnholdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CallControlUnholdCommandOutput>;
|
|
171
|
+
/**
|
|
172
|
+
* deserializeAws_restJson1CallControlUpdateContactInfoCommand
|
|
173
|
+
*/
|
|
174
|
+
export declare const de_CallControlUpdateContactInfoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CallControlUpdateContactInfoCommandOutput>;
|
|
93
175
|
/**
|
|
94
176
|
* deserializeAws_restJson1CreatePbxAclGroupCommand
|
|
95
177
|
*/
|
|
@@ -142,6 +224,14 @@ export declare const de_GetPbxOAuth2ClientsCommand: (output: __HttpResponse, con
|
|
|
142
224
|
* deserializeAws_restJson1GetPersonalInfoCommand
|
|
143
225
|
*/
|
|
144
226
|
export declare const de_GetPersonalInfoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPersonalInfoCommandOutput>;
|
|
227
|
+
/**
|
|
228
|
+
* deserializeAws_restJson1ListUserActiveCallsCommand
|
|
229
|
+
*/
|
|
230
|
+
export declare const de_ListUserActiveCallsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUserActiveCallsCommandOutput>;
|
|
231
|
+
/**
|
|
232
|
+
* deserializeAws_restJson1ListUserDevicesCommand
|
|
233
|
+
*/
|
|
234
|
+
export declare const de_ListUserDevicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListUserDevicesCommandOutput>;
|
|
145
235
|
/**
|
|
146
236
|
* deserializeAws_restJson1NotificationsCommand
|
|
147
237
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/wms-api-client",
|
|
3
3
|
"description": "@wildix/wms-api-client client",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.26",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|