@wildix/wms-api-client 1.1.23 → 1.1.25
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 +0 -16
- package/dist-cjs/commands/index.js +0 -8
- package/dist-cjs/models/models_0.js +1 -35
- package/dist-cjs/protocols/Aws_restJson1.js +1 -318
- package/dist-es/WmsApi.js +0 -16
- package/dist-es/commands/index.js +0 -8
- package/dist-es/models/models_0.js +0 -32
- package/dist-es/protocols/Aws_restJson1.js +1 -301
- package/dist-types/WmsApi.d.ts +0 -58
- package/dist-types/WmsApiClient.d.ts +2 -10
- package/dist-types/commands/CreatePbxAclGroupCommand.d.ts +0 -2
- package/dist-types/commands/CreatePbxColleagueCommand.d.ts +0 -2
- package/dist-types/commands/CreatePbxOAuth2ClientCommand.d.ts +0 -2
- package/dist-types/commands/DeletePbxAclGroupCommand.d.ts +0 -2
- package/dist-types/commands/DeletePbxColleagueCommand.d.ts +0 -2
- package/dist-types/commands/DeletePbxOAuth2ClientCommand.d.ts +0 -2
- package/dist-types/commands/GetColleagueByIdCommand.d.ts +0 -2
- package/dist-types/commands/GetPbxAclGroupsPermissionsCommand.d.ts +0 -2
- package/dist-types/commands/GetPbxCallGroupsCommand.d.ts +0 -2
- package/dist-types/commands/GetPbxColleaguesCommand.d.ts +0 -2
- package/dist-types/commands/GetPbxOAuth2ClientsCommand.d.ts +1 -2
- package/dist-types/commands/GetPbxesCommand.d.ts +0 -2
- package/dist-types/commands/GetPersonalInfoCommand.d.ts +0 -2
- package/dist-types/commands/NotificationsCommand.d.ts +0 -2
- package/dist-types/commands/OriginateCallCommand.d.ts +0 -2
- package/dist-types/commands/OriginateCommand.d.ts +0 -2
- package/dist-types/commands/ReloadBroadcastsCommand.d.ts +0 -2
- package/dist-types/commands/UpdatePbxOAuth2ClientCommand.d.ts +0 -2
- package/dist-types/commands/index.d.ts +0 -8
- package/dist-types/models/models_0.d.ts +8 -246
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -72
- package/package.json +1 -1
- package/dist-cjs/commands/CallControlAnswerCommand.js +0 -21
- package/dist-cjs/commands/CallControlHangupCommand.js +0 -21
- package/dist-cjs/commands/CallControlHoldCommand.js +0 -21
- package/dist-cjs/commands/CallControlMakeCallCommand.js +0 -21
- package/dist-cjs/commands/CallControlTransferCommand.js +0 -21
- package/dist-cjs/commands/CallControlUnholdCommand.js +0 -21
- package/dist-cjs/commands/ListUserActiveCallsCommand.js +0 -21
- package/dist-cjs/commands/ListUserDevicesCommand.js +0 -21
- package/dist-es/commands/CallControlAnswerCommand.js +0 -17
- package/dist-es/commands/CallControlHangupCommand.js +0 -17
- package/dist-es/commands/CallControlHoldCommand.js +0 -17
- package/dist-es/commands/CallControlMakeCallCommand.js +0 -17
- package/dist-es/commands/CallControlTransferCommand.js +0 -17
- package/dist-es/commands/CallControlUnholdCommand.js +0 -17
- package/dist-es/commands/ListUserActiveCallsCommand.js +0 -17
- package/dist-es/commands/ListUserDevicesCommand.js +0 -17
- package/dist-types/commands/CallControlAnswerCommand.d.ts +0 -83
- package/dist-types/commands/CallControlHangupCommand.d.ts +0 -83
- package/dist-types/commands/CallControlHoldCommand.d.ts +0 -82
- package/dist-types/commands/CallControlMakeCallCommand.d.ts +0 -81
- package/dist-types/commands/CallControlTransferCommand.d.ts +0 -83
- package/dist-types/commands/CallControlUnholdCommand.d.ts +0 -82
- package/dist-types/commands/ListUserActiveCallsCommand.d.ts +0 -85
- package/dist-types/commands/ListUserDevicesCommand.d.ts +0 -85
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
|
|
2
|
-
import { ListUserDevicesInput, ListUserDevicesOutput } 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 ListUserDevicesCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface ListUserDevicesCommandInput extends ListUserDevicesInput {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link ListUserDevicesCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface ListUserDevicesCommandOutput extends ListUserDevicesOutput, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const ListUserDevicesCommand_base: {
|
|
25
|
-
new (input: ListUserDevicesCommandInput): import("@smithy/smithy-client").CommandImpl<ListUserDevicesCommandInput, ListUserDevicesCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListUserDevicesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListUserDevicesCommandInput, ListUserDevicesCommandOutput, 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, ListUserDevicesCommand } from "@wildix/wms-api-client"; // ES Modules import
|
|
36
|
-
* // const { WmsApiClient, ListUserDevicesCommand } = require("@wildix/wms-api-client"); // CommonJS import
|
|
37
|
-
* const client = new WmsApiClient(config);
|
|
38
|
-
* const input = { // ListUserDevicesInput
|
|
39
|
-
* user: "STRING_VALUE",
|
|
40
|
-
* };
|
|
41
|
-
* const command = new ListUserDevicesCommand(input);
|
|
42
|
-
* const response = await client.send(command);
|
|
43
|
-
* // { // ListUserDevicesOutput
|
|
44
|
-
* // devices: [ // DevicesList
|
|
45
|
-
* // { // UserDevice
|
|
46
|
-
* // user_agent: "STRING_VALUE",
|
|
47
|
-
* // contact: "STRING_VALUE",
|
|
48
|
-
* // },
|
|
49
|
-
* // ],
|
|
50
|
-
* // active_device: {
|
|
51
|
-
* // user_agent: "STRING_VALUE",
|
|
52
|
-
* // contact: "STRING_VALUE",
|
|
53
|
-
* // },
|
|
54
|
-
* // };
|
|
55
|
-
*
|
|
56
|
-
* ```
|
|
57
|
-
*
|
|
58
|
-
* @param ListUserDevicesCommandInput - {@link ListUserDevicesCommandInput}
|
|
59
|
-
* @returns {@link ListUserDevicesCommandOutput}
|
|
60
|
-
* @see {@link ListUserDevicesCommandInput} for command's `input` shape.
|
|
61
|
-
* @see {@link ListUserDevicesCommandOutput} for command's `response` shape.
|
|
62
|
-
* @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
|
|
63
|
-
*
|
|
64
|
-
* @throws {@link WmsUnauthorizedException} (client fault)
|
|
65
|
-
*
|
|
66
|
-
* @throws {@link WmsForbiddenException} (client fault)
|
|
67
|
-
*
|
|
68
|
-
* @throws {@link WmsApiServiceException}
|
|
69
|
-
* <p>Base exception class for all service exceptions from WmsApi service.</p>
|
|
70
|
-
*
|
|
71
|
-
*
|
|
72
|
-
*/
|
|
73
|
-
export declare class ListUserDevicesCommand extends ListUserDevicesCommand_base {
|
|
74
|
-
/** @internal type navigation helper, not in runtime. */
|
|
75
|
-
protected static __types: {
|
|
76
|
-
api: {
|
|
77
|
-
input: ListUserDevicesInput;
|
|
78
|
-
output: ListUserDevicesOutput;
|
|
79
|
-
};
|
|
80
|
-
sdk: {
|
|
81
|
-
input: ListUserDevicesCommandInput;
|
|
82
|
-
output: ListUserDevicesCommandOutput;
|
|
83
|
-
};
|
|
84
|
-
};
|
|
85
|
-
}
|