@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.
Files changed (62) hide show
  1. package/dist-cjs/WmsApi.js +20 -0
  2. package/dist-cjs/commands/CallControlAnswerCommand.js +21 -0
  3. package/dist-cjs/commands/CallControlAttendantTransferCommand.js +21 -0
  4. package/dist-cjs/commands/CallControlBlindTransferCommand.js +21 -0
  5. package/dist-cjs/commands/CallControlHangupCommand.js +21 -0
  6. package/dist-cjs/commands/CallControlHoldCommand.js +21 -0
  7. package/dist-cjs/commands/CallControlMakeCallCommand.js +21 -0
  8. package/dist-cjs/commands/CallControlUnholdCommand.js +21 -0
  9. package/dist-cjs/commands/CallControlUpdateContactInfoCommand.js +21 -0
  10. package/dist-cjs/commands/ListUserActiveCallsCommand.js +21 -0
  11. package/dist-cjs/commands/ListUserDevicesCommand.js +21 -0
  12. package/dist-cjs/commands/index.js +10 -0
  13. package/dist-cjs/models/models_0.js +35 -1
  14. package/dist-cjs/protocols/Aws_restJson1.js +385 -1
  15. package/dist-es/WmsApi.js +20 -0
  16. package/dist-es/commands/CallControlAnswerCommand.js +17 -0
  17. package/dist-es/commands/CallControlAttendantTransferCommand.js +17 -0
  18. package/dist-es/commands/CallControlBlindTransferCommand.js +17 -0
  19. package/dist-es/commands/CallControlHangupCommand.js +17 -0
  20. package/dist-es/commands/CallControlHoldCommand.js +17 -0
  21. package/dist-es/commands/CallControlMakeCallCommand.js +17 -0
  22. package/dist-es/commands/CallControlUnholdCommand.js +17 -0
  23. package/dist-es/commands/CallControlUpdateContactInfoCommand.js +17 -0
  24. package/dist-es/commands/ListUserActiveCallsCommand.js +17 -0
  25. package/dist-es/commands/ListUserDevicesCommand.js +17 -0
  26. package/dist-es/commands/index.js +10 -0
  27. package/dist-es/models/models_0.js +32 -0
  28. package/dist-es/protocols/Aws_restJson1.js +364 -1
  29. package/dist-types/WmsApi.d.ts +72 -0
  30. package/dist-types/WmsApiClient.d.ts +12 -2
  31. package/dist-types/commands/CallControlAnswerCommand.d.ts +80 -0
  32. package/dist-types/commands/CallControlAttendantTransferCommand.d.ts +80 -0
  33. package/dist-types/commands/CallControlBlindTransferCommand.d.ts +80 -0
  34. package/dist-types/commands/CallControlHangupCommand.d.ts +80 -0
  35. package/dist-types/commands/CallControlHoldCommand.d.ts +79 -0
  36. package/dist-types/commands/CallControlMakeCallCommand.d.ts +78 -0
  37. package/dist-types/commands/CallControlUnholdCommand.d.ts +79 -0
  38. package/dist-types/commands/CallControlUpdateContactInfoCommand.d.ts +81 -0
  39. package/dist-types/commands/CreatePbxAclGroupCommand.d.ts +2 -0
  40. package/dist-types/commands/CreatePbxColleagueCommand.d.ts +2 -0
  41. package/dist-types/commands/CreatePbxOAuth2ClientCommand.d.ts +2 -0
  42. package/dist-types/commands/DeletePbxAclGroupCommand.d.ts +2 -0
  43. package/dist-types/commands/DeletePbxColleagueCommand.d.ts +2 -0
  44. package/dist-types/commands/DeletePbxOAuth2ClientCommand.d.ts +2 -0
  45. package/dist-types/commands/GetColleagueByIdCommand.d.ts +2 -0
  46. package/dist-types/commands/GetPbxAclGroupsPermissionsCommand.d.ts +2 -0
  47. package/dist-types/commands/GetPbxCallGroupsCommand.d.ts +2 -0
  48. package/dist-types/commands/GetPbxColleaguesCommand.d.ts +2 -0
  49. package/dist-types/commands/GetPbxOAuth2ClientsCommand.d.ts +2 -1
  50. package/dist-types/commands/GetPbxesCommand.d.ts +2 -0
  51. package/dist-types/commands/GetPersonalInfoCommand.d.ts +2 -0
  52. package/dist-types/commands/ListUserActiveCallsCommand.d.ts +86 -0
  53. package/dist-types/commands/ListUserDevicesCommand.d.ts +87 -0
  54. package/dist-types/commands/NotificationsCommand.d.ts +2 -0
  55. package/dist-types/commands/OriginateCallCommand.d.ts +2 -0
  56. package/dist-types/commands/OriginateCommand.d.ts +2 -0
  57. package/dist-types/commands/ReloadBroadcastsCommand.d.ts +2 -0
  58. package/dist-types/commands/UpdatePbxOAuth2ClientCommand.d.ts +2 -0
  59. package/dist-types/commands/index.d.ts +10 -0
  60. package/dist-types/models/models_0.d.ts +321 -8
  61. package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
  62. package/package.json +1 -1
@@ -0,0 +1,80 @@
1
+ import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
2
+ import { CallControlAnswerInput, CallControlAnswerOutput } from "../models/models_0";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CallControlAnswerCommand}.
14
+ */
15
+ export interface CallControlAnswerCommandInput extends CallControlAnswerInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CallControlAnswerCommand}.
21
+ */
22
+ export interface CallControlAnswerCommandOutput extends CallControlAnswerOutput, __MetadataBearer {
23
+ }
24
+ declare const CallControlAnswerCommand_base: {
25
+ new (input: CallControlAnswerCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlAnswerCommandInput, CallControlAnswerCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CallControlAnswerCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlAnswerCommandInput, CallControlAnswerCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * @public
31
+ *
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { WmsApiClient, CallControlAnswerCommand } from "@wildix/wms-api-client"; // ES Modules import
36
+ * // const { WmsApiClient, CallControlAnswerCommand } = require("@wildix/wms-api-client"); // CommonJS import
37
+ * const client = new WmsApiClient(config);
38
+ * const input = { // CallControlAnswerInput
39
+ * user: "STRING_VALUE",
40
+ * sipCallId: "STRING_VALUE", // required
41
+ * device: "STRING_VALUE",
42
+ * };
43
+ * const command = new CallControlAnswerCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // CallControlAnswerOutput
46
+ * // message: "STRING_VALUE",
47
+ * // };
48
+ *
49
+ * ```
50
+ *
51
+ * @param CallControlAnswerCommandInput - {@link CallControlAnswerCommandInput}
52
+ * @returns {@link CallControlAnswerCommandOutput}
53
+ * @see {@link CallControlAnswerCommandInput} for command's `input` shape.
54
+ * @see {@link CallControlAnswerCommandOutput} for command's `response` shape.
55
+ * @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
56
+ *
57
+ * @throws {@link ChannelNotFoundException} (client fault)
58
+ *
59
+ * @throws {@link WmsUnauthorizedException} (client fault)
60
+ *
61
+ * @throws {@link WmsForbiddenException} (client fault)
62
+ *
63
+ * @throws {@link WmsApiServiceException}
64
+ * <p>Base exception class for all service exceptions from WmsApi service.</p>
65
+ *
66
+ *
67
+ */
68
+ export declare class CallControlAnswerCommand extends CallControlAnswerCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: CallControlAnswerInput;
73
+ output: CallControlAnswerOutput;
74
+ };
75
+ sdk: {
76
+ input: CallControlAnswerCommandInput;
77
+ output: CallControlAnswerCommandOutput;
78
+ };
79
+ };
80
+ }
@@ -0,0 +1,80 @@
1
+ import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
2
+ import { CallControlAttendantTransferInput, CallControlAttendantTransferOutput } from "../models/models_0";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CallControlAttendantTransferCommand}.
14
+ */
15
+ export interface CallControlAttendantTransferCommandInput extends CallControlAttendantTransferInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CallControlAttendantTransferCommand}.
21
+ */
22
+ export interface CallControlAttendantTransferCommandOutput extends CallControlAttendantTransferOutput, __MetadataBearer {
23
+ }
24
+ declare const CallControlAttendantTransferCommand_base: {
25
+ new (input: CallControlAttendantTransferCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlAttendantTransferCommandInput, CallControlAttendantTransferCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CallControlAttendantTransferCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlAttendantTransferCommandInput, CallControlAttendantTransferCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * @public
31
+ *
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { WmsApiClient, CallControlAttendantTransferCommand } from "@wildix/wms-api-client"; // ES Modules import
36
+ * // const { WmsApiClient, CallControlAttendantTransferCommand } = require("@wildix/wms-api-client"); // CommonJS import
37
+ * const client = new WmsApiClient(config);
38
+ * const input = { // CallControlAttendantTransferInput
39
+ * user: "STRING_VALUE",
40
+ * sipCallId: "STRING_VALUE", // required
41
+ * destination: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new CallControlAttendantTransferCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // CallControlAttendantTransferOutput
46
+ * // message: "STRING_VALUE",
47
+ * // };
48
+ *
49
+ * ```
50
+ *
51
+ * @param CallControlAttendantTransferCommandInput - {@link CallControlAttendantTransferCommandInput}
52
+ * @returns {@link CallControlAttendantTransferCommandOutput}
53
+ * @see {@link CallControlAttendantTransferCommandInput} for command's `input` shape.
54
+ * @see {@link CallControlAttendantTransferCommandOutput} for command's `response` shape.
55
+ * @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
56
+ *
57
+ * @throws {@link ChannelNotFoundException} (client fault)
58
+ *
59
+ * @throws {@link WmsUnauthorizedException} (client fault)
60
+ *
61
+ * @throws {@link WmsForbiddenException} (client fault)
62
+ *
63
+ * @throws {@link WmsApiServiceException}
64
+ * <p>Base exception class for all service exceptions from WmsApi service.</p>
65
+ *
66
+ *
67
+ */
68
+ export declare class CallControlAttendantTransferCommand extends CallControlAttendantTransferCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: CallControlAttendantTransferInput;
73
+ output: CallControlAttendantTransferOutput;
74
+ };
75
+ sdk: {
76
+ input: CallControlAttendantTransferCommandInput;
77
+ output: CallControlAttendantTransferCommandOutput;
78
+ };
79
+ };
80
+ }
@@ -0,0 +1,80 @@
1
+ import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
2
+ import { CallControlBlindTransferInput, CallControlBlindTransferOutput } from "../models/models_0";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CallControlBlindTransferCommand}.
14
+ */
15
+ export interface CallControlBlindTransferCommandInput extends CallControlBlindTransferInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CallControlBlindTransferCommand}.
21
+ */
22
+ export interface CallControlBlindTransferCommandOutput extends CallControlBlindTransferOutput, __MetadataBearer {
23
+ }
24
+ declare const CallControlBlindTransferCommand_base: {
25
+ new (input: CallControlBlindTransferCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlBlindTransferCommandInput, CallControlBlindTransferCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CallControlBlindTransferCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlBlindTransferCommandInput, CallControlBlindTransferCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * @public
31
+ *
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { WmsApiClient, CallControlBlindTransferCommand } from "@wildix/wms-api-client"; // ES Modules import
36
+ * // const { WmsApiClient, CallControlBlindTransferCommand } = require("@wildix/wms-api-client"); // CommonJS import
37
+ * const client = new WmsApiClient(config);
38
+ * const input = { // CallControlBlindTransferInput
39
+ * user: "STRING_VALUE",
40
+ * sipCallId: "STRING_VALUE", // required
41
+ * destination: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new CallControlBlindTransferCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // CallControlBlindTransferOutput
46
+ * // message: "STRING_VALUE",
47
+ * // };
48
+ *
49
+ * ```
50
+ *
51
+ * @param CallControlBlindTransferCommandInput - {@link CallControlBlindTransferCommandInput}
52
+ * @returns {@link CallControlBlindTransferCommandOutput}
53
+ * @see {@link CallControlBlindTransferCommandInput} for command's `input` shape.
54
+ * @see {@link CallControlBlindTransferCommandOutput} for command's `response` shape.
55
+ * @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
56
+ *
57
+ * @throws {@link ChannelNotFoundException} (client fault)
58
+ *
59
+ * @throws {@link WmsUnauthorizedException} (client fault)
60
+ *
61
+ * @throws {@link WmsForbiddenException} (client fault)
62
+ *
63
+ * @throws {@link WmsApiServiceException}
64
+ * <p>Base exception class for all service exceptions from WmsApi service.</p>
65
+ *
66
+ *
67
+ */
68
+ export declare class CallControlBlindTransferCommand extends CallControlBlindTransferCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: CallControlBlindTransferInput;
73
+ output: CallControlBlindTransferOutput;
74
+ };
75
+ sdk: {
76
+ input: CallControlBlindTransferCommandInput;
77
+ output: CallControlBlindTransferCommandOutput;
78
+ };
79
+ };
80
+ }
@@ -0,0 +1,80 @@
1
+ import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
2
+ import { CallControlHangupInput, CallControlHangupOutput } from "../models/models_0";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CallControlHangupCommand}.
14
+ */
15
+ export interface CallControlHangupCommandInput extends CallControlHangupInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CallControlHangupCommand}.
21
+ */
22
+ export interface CallControlHangupCommandOutput extends CallControlHangupOutput, __MetadataBearer {
23
+ }
24
+ declare const CallControlHangupCommand_base: {
25
+ new (input: CallControlHangupCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlHangupCommandInput, CallControlHangupCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CallControlHangupCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlHangupCommandInput, CallControlHangupCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * @public
31
+ *
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { WmsApiClient, CallControlHangupCommand } from "@wildix/wms-api-client"; // ES Modules import
36
+ * // const { WmsApiClient, CallControlHangupCommand } = require("@wildix/wms-api-client"); // CommonJS import
37
+ * const client = new WmsApiClient(config);
38
+ * const input = { // CallControlHangupInput
39
+ * user: "STRING_VALUE",
40
+ * sipCallId: "STRING_VALUE", // required
41
+ * reason: "STRING_VALUE",
42
+ * };
43
+ * const command = new CallControlHangupCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // CallControlHangupOutput
46
+ * // message: "STRING_VALUE",
47
+ * // };
48
+ *
49
+ * ```
50
+ *
51
+ * @param CallControlHangupCommandInput - {@link CallControlHangupCommandInput}
52
+ * @returns {@link CallControlHangupCommandOutput}
53
+ * @see {@link CallControlHangupCommandInput} for command's `input` shape.
54
+ * @see {@link CallControlHangupCommandOutput} for command's `response` shape.
55
+ * @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
56
+ *
57
+ * @throws {@link ChannelNotFoundException} (client fault)
58
+ *
59
+ * @throws {@link WmsUnauthorizedException} (client fault)
60
+ *
61
+ * @throws {@link WmsForbiddenException} (client fault)
62
+ *
63
+ * @throws {@link WmsApiServiceException}
64
+ * <p>Base exception class for all service exceptions from WmsApi service.</p>
65
+ *
66
+ *
67
+ */
68
+ export declare class CallControlHangupCommand extends CallControlHangupCommand_base {
69
+ /** @internal type navigation helper, not in runtime. */
70
+ protected static __types: {
71
+ api: {
72
+ input: CallControlHangupInput;
73
+ output: CallControlHangupOutput;
74
+ };
75
+ sdk: {
76
+ input: CallControlHangupCommandInput;
77
+ output: CallControlHangupCommandOutput;
78
+ };
79
+ };
80
+ }
@@ -0,0 +1,79 @@
1
+ import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
2
+ import { CallControlHoldInput, CallControlHoldOutput } from "../models/models_0";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CallControlHoldCommand}.
14
+ */
15
+ export interface CallControlHoldCommandInput extends CallControlHoldInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CallControlHoldCommand}.
21
+ */
22
+ export interface CallControlHoldCommandOutput extends CallControlHoldOutput, __MetadataBearer {
23
+ }
24
+ declare const CallControlHoldCommand_base: {
25
+ new (input: CallControlHoldCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlHoldCommandInput, CallControlHoldCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CallControlHoldCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlHoldCommandInput, CallControlHoldCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * @public
31
+ *
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { WmsApiClient, CallControlHoldCommand } from "@wildix/wms-api-client"; // ES Modules import
36
+ * // const { WmsApiClient, CallControlHoldCommand } = require("@wildix/wms-api-client"); // CommonJS import
37
+ * const client = new WmsApiClient(config);
38
+ * const input = { // CallControlHoldInput
39
+ * user: "STRING_VALUE",
40
+ * sipCallId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new CallControlHoldCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // CallControlHoldOutput
45
+ * // message: "STRING_VALUE",
46
+ * // };
47
+ *
48
+ * ```
49
+ *
50
+ * @param CallControlHoldCommandInput - {@link CallControlHoldCommandInput}
51
+ * @returns {@link CallControlHoldCommandOutput}
52
+ * @see {@link CallControlHoldCommandInput} for command's `input` shape.
53
+ * @see {@link CallControlHoldCommandOutput} for command's `response` shape.
54
+ * @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
55
+ *
56
+ * @throws {@link ChannelNotFoundException} (client fault)
57
+ *
58
+ * @throws {@link WmsUnauthorizedException} (client fault)
59
+ *
60
+ * @throws {@link WmsForbiddenException} (client fault)
61
+ *
62
+ * @throws {@link WmsApiServiceException}
63
+ * <p>Base exception class for all service exceptions from WmsApi service.</p>
64
+ *
65
+ *
66
+ */
67
+ export declare class CallControlHoldCommand extends CallControlHoldCommand_base {
68
+ /** @internal type navigation helper, not in runtime. */
69
+ protected static __types: {
70
+ api: {
71
+ input: CallControlHoldInput;
72
+ output: CallControlHoldOutput;
73
+ };
74
+ sdk: {
75
+ input: CallControlHoldCommandInput;
76
+ output: CallControlHoldCommandOutput;
77
+ };
78
+ };
79
+ }
@@ -0,0 +1,78 @@
1
+ import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
2
+ import { CallControlMakeCallInput, CallControlMakeCallOutput } from "../models/models_0";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CallControlMakeCallCommand}.
14
+ */
15
+ export interface CallControlMakeCallCommandInput extends CallControlMakeCallInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CallControlMakeCallCommand}.
21
+ */
22
+ export interface CallControlMakeCallCommandOutput extends CallControlMakeCallOutput, __MetadataBearer {
23
+ }
24
+ declare const CallControlMakeCallCommand_base: {
25
+ new (input: CallControlMakeCallCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlMakeCallCommandInput, CallControlMakeCallCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CallControlMakeCallCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlMakeCallCommandInput, CallControlMakeCallCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * @public
31
+ *
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { WmsApiClient, CallControlMakeCallCommand } from "@wildix/wms-api-client"; // ES Modules import
36
+ * // const { WmsApiClient, CallControlMakeCallCommand } = require("@wildix/wms-api-client"); // CommonJS import
37
+ * const client = new WmsApiClient(config);
38
+ * const input = { // CallControlMakeCallInput
39
+ * user: "STRING_VALUE",
40
+ * destination: "STRING_VALUE", // required
41
+ * device: "STRING_VALUE",
42
+ * };
43
+ * const command = new CallControlMakeCallCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // CallControlMakeCallOutput
46
+ * // message: "STRING_VALUE",
47
+ * // };
48
+ *
49
+ * ```
50
+ *
51
+ * @param CallControlMakeCallCommandInput - {@link CallControlMakeCallCommandInput}
52
+ * @returns {@link CallControlMakeCallCommandOutput}
53
+ * @see {@link CallControlMakeCallCommandInput} for command's `input` shape.
54
+ * @see {@link CallControlMakeCallCommandOutput} for command's `response` shape.
55
+ * @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
56
+ *
57
+ * @throws {@link WmsUnauthorizedException} (client fault)
58
+ *
59
+ * @throws {@link WmsForbiddenException} (client fault)
60
+ *
61
+ * @throws {@link WmsApiServiceException}
62
+ * <p>Base exception class for all service exceptions from WmsApi service.</p>
63
+ *
64
+ *
65
+ */
66
+ export declare class CallControlMakeCallCommand extends CallControlMakeCallCommand_base {
67
+ /** @internal type navigation helper, not in runtime. */
68
+ protected static __types: {
69
+ api: {
70
+ input: CallControlMakeCallInput;
71
+ output: CallControlMakeCallOutput;
72
+ };
73
+ sdk: {
74
+ input: CallControlMakeCallCommandInput;
75
+ output: CallControlMakeCallCommandOutput;
76
+ };
77
+ };
78
+ }
@@ -0,0 +1,79 @@
1
+ import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
2
+ import { CallControlUnholdInput, CallControlUnholdOutput } from "../models/models_0";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CallControlUnholdCommand}.
14
+ */
15
+ export interface CallControlUnholdCommandInput extends CallControlUnholdInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CallControlUnholdCommand}.
21
+ */
22
+ export interface CallControlUnholdCommandOutput extends CallControlUnholdOutput, __MetadataBearer {
23
+ }
24
+ declare const CallControlUnholdCommand_base: {
25
+ new (input: CallControlUnholdCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlUnholdCommandInput, CallControlUnholdCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CallControlUnholdCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlUnholdCommandInput, CallControlUnholdCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * @public
31
+ *
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { WmsApiClient, CallControlUnholdCommand } from "@wildix/wms-api-client"; // ES Modules import
36
+ * // const { WmsApiClient, CallControlUnholdCommand } = require("@wildix/wms-api-client"); // CommonJS import
37
+ * const client = new WmsApiClient(config);
38
+ * const input = { // CallControlUnholdInput
39
+ * user: "STRING_VALUE",
40
+ * sipCallId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new CallControlUnholdCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // CallControlUnholdOutput
45
+ * // message: "STRING_VALUE",
46
+ * // };
47
+ *
48
+ * ```
49
+ *
50
+ * @param CallControlUnholdCommandInput - {@link CallControlUnholdCommandInput}
51
+ * @returns {@link CallControlUnholdCommandOutput}
52
+ * @see {@link CallControlUnholdCommandInput} for command's `input` shape.
53
+ * @see {@link CallControlUnholdCommandOutput} for command's `response` shape.
54
+ * @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
55
+ *
56
+ * @throws {@link ChannelNotFoundException} (client fault)
57
+ *
58
+ * @throws {@link WmsUnauthorizedException} (client fault)
59
+ *
60
+ * @throws {@link WmsForbiddenException} (client fault)
61
+ *
62
+ * @throws {@link WmsApiServiceException}
63
+ * <p>Base exception class for all service exceptions from WmsApi service.</p>
64
+ *
65
+ *
66
+ */
67
+ export declare class CallControlUnholdCommand extends CallControlUnholdCommand_base {
68
+ /** @internal type navigation helper, not in runtime. */
69
+ protected static __types: {
70
+ api: {
71
+ input: CallControlUnholdInput;
72
+ output: CallControlUnholdOutput;
73
+ };
74
+ sdk: {
75
+ input: CallControlUnholdCommandInput;
76
+ output: CallControlUnholdCommandOutput;
77
+ };
78
+ };
79
+ }
@@ -0,0 +1,81 @@
1
+ import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
2
+ import { CallControlUpdateContactInfoInput, CallControlUpdateContactInfoOutput } from "../models/models_0";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CallControlUpdateContactInfoCommand}.
14
+ */
15
+ export interface CallControlUpdateContactInfoCommandInput extends CallControlUpdateContactInfoInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CallControlUpdateContactInfoCommand}.
21
+ */
22
+ export interface CallControlUpdateContactInfoCommandOutput extends CallControlUpdateContactInfoOutput, __MetadataBearer {
23
+ }
24
+ declare const CallControlUpdateContactInfoCommand_base: {
25
+ new (input: CallControlUpdateContactInfoCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlUpdateContactInfoCommandInput, CallControlUpdateContactInfoCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: CallControlUpdateContactInfoCommandInput): import("@smithy/smithy-client").CommandImpl<CallControlUpdateContactInfoCommandInput, CallControlUpdateContactInfoCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * @public
31
+ *
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { WmsApiClient, CallControlUpdateContactInfoCommand } from "@wildix/wms-api-client"; // ES Modules import
36
+ * // const { WmsApiClient, CallControlUpdateContactInfoCommand } = require("@wildix/wms-api-client"); // CommonJS import
37
+ * const client = new WmsApiClient(config);
38
+ * const input = { // CallControlUpdateContactInfoInput
39
+ * user: "STRING_VALUE",
40
+ * sipCallId: "STRING_VALUE", // required
41
+ * name: "STRING_VALUE",
42
+ * phone: "STRING_VALUE",
43
+ * };
44
+ * const command = new CallControlUpdateContactInfoCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // CallControlUpdateContactInfoOutput
47
+ * // message: "STRING_VALUE",
48
+ * // };
49
+ *
50
+ * ```
51
+ *
52
+ * @param CallControlUpdateContactInfoCommandInput - {@link CallControlUpdateContactInfoCommandInput}
53
+ * @returns {@link CallControlUpdateContactInfoCommandOutput}
54
+ * @see {@link CallControlUpdateContactInfoCommandInput} for command's `input` shape.
55
+ * @see {@link CallControlUpdateContactInfoCommandOutput} for command's `response` shape.
56
+ * @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
57
+ *
58
+ * @throws {@link ChannelNotFoundException} (client fault)
59
+ *
60
+ * @throws {@link WmsUnauthorizedException} (client fault)
61
+ *
62
+ * @throws {@link WmsForbiddenException} (client fault)
63
+ *
64
+ * @throws {@link WmsApiServiceException}
65
+ * <p>Base exception class for all service exceptions from WmsApi service.</p>
66
+ *
67
+ *
68
+ */
69
+ export declare class CallControlUpdateContactInfoCommand extends CallControlUpdateContactInfoCommand_base {
70
+ /** @internal type navigation helper, not in runtime. */
71
+ protected static __types: {
72
+ api: {
73
+ input: CallControlUpdateContactInfoInput;
74
+ output: CallControlUpdateContactInfoOutput;
75
+ };
76
+ sdk: {
77
+ input: CallControlUpdateContactInfoCommandInput;
78
+ output: CallControlUpdateContactInfoCommandOutput;
79
+ };
80
+ };
81
+ }
@@ -78,6 +78,8 @@ declare const CreatePbxAclGroupCommand_base: {
78
78
  *
79
79
  * @throws {@link WmsUnauthorizedException} (client fault)
80
80
  *
81
+ * @throws {@link WmsForbiddenException} (client fault)
82
+ *
81
83
  * @throws {@link WmsApiServiceException}
82
84
  * <p>Base exception class for all service exceptions from WmsApi service.</p>
83
85
  *
@@ -92,6 +92,8 @@ declare const CreatePbxColleagueCommand_base: {
92
92
  *
93
93
  * @throws {@link WmsUnauthorizedException} (client fault)
94
94
  *
95
+ * @throws {@link WmsForbiddenException} (client fault)
96
+ *
95
97
  * @throws {@link WmsApiServiceException}
96
98
  * <p>Base exception class for all service exceptions from WmsApi service.</p>
97
99
  *
@@ -72,6 +72,8 @@ declare const CreatePbxOAuth2ClientCommand_base: {
72
72
  *
73
73
  * @throws {@link WmsValidationException} (client fault)
74
74
  *
75
+ * @throws {@link WmsForbiddenException} (client fault)
76
+ *
75
77
  * @throws {@link WmsApiServiceException}
76
78
  * <p>Base exception class for all service exceptions from WmsApi service.</p>
77
79
  *