@wildix/wms-api-client 1.1.13 → 1.1.14
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 -8
- package/dist-cjs/commands/index.js +0 -4
- package/dist-cjs/models/models_0.js +8 -8
- package/dist-cjs/protocols/Aws_restJson1.js +2 -140
- package/dist-es/WmsApi.js +0 -8
- package/dist-es/commands/index.js +0 -4
- package/dist-es/models/models_0.js +7 -7
- package/dist-es/protocols/Aws_restJson1.js +1 -131
- package/dist-types/WmsApi.d.ts +0 -28
- package/dist-types/WmsApiClient.d.ts +2 -6
- package/dist-types/commands/NotificationsCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +0 -4
- package/dist-types/models/models_0.d.ts +61 -151
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -36
- package/dist-types/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/runtimeConfig.d.ts +0 -1
- package/dist-types/runtimeConfig.native.d.ts +0 -1
- package/package.json +1 -1
- package/dist-cjs/commands/CreatePbxAclGroupCommand.js +0 -21
- package/dist-cjs/commands/CreatePbxColleagueCommand.js +0 -21
- package/dist-cjs/commands/DeletePbxAclGroupCommand.js +0 -21
- package/dist-cjs/commands/DeletePbxColleagueCommand.js +0 -21
- package/dist-es/commands/CreatePbxAclGroupCommand.js +0 -17
- package/dist-es/commands/CreatePbxColleagueCommand.js +0 -17
- package/dist-es/commands/DeletePbxAclGroupCommand.js +0 -17
- package/dist-es/commands/DeletePbxColleagueCommand.js +0 -17
- package/dist-types/commands/CreatePbxAclGroupCommand.d.ts +0 -86
- package/dist-types/commands/CreatePbxColleagueCommand.d.ts +0 -100
- package/dist-types/commands/DeletePbxAclGroupCommand.d.ts +0 -63
- package/dist-types/commands/DeletePbxColleagueCommand.d.ts +0 -63
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
|
|
2
|
-
import { CreatePbxColleagueInput, CreatePbxColleagueOutput } 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 CreatePbxColleagueCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface CreatePbxColleagueCommandInput extends CreatePbxColleagueInput {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link CreatePbxColleagueCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface CreatePbxColleagueCommandOutput extends CreatePbxColleagueOutput, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const CreatePbxColleagueCommand_base: {
|
|
25
|
-
new (input: CreatePbxColleagueCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePbxColleagueCommandInput, CreatePbxColleagueCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (__0_0: CreatePbxColleagueCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePbxColleagueCommandInput, CreatePbxColleagueCommandOutput, 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, CreatePbxColleagueCommand } from "@wildix/wms-api-client"; // ES Modules import
|
|
36
|
-
* // const { WmsApiClient, CreatePbxColleagueCommand } = require("@wildix/wms-api-client"); // CommonJS import
|
|
37
|
-
* const client = new WmsApiClient(config);
|
|
38
|
-
* const input = { // CreatePbxColleagueInput
|
|
39
|
-
* extension: "STRING_VALUE", // required
|
|
40
|
-
* name: "STRING_VALUE", // required
|
|
41
|
-
* officePhone: "STRING_VALUE",
|
|
42
|
-
* mobilePhone: "STRING_VALUE",
|
|
43
|
-
* faxNumber: "STRING_VALUE",
|
|
44
|
-
* email: "STRING_VALUE",
|
|
45
|
-
* role: "admin" || "user" || "fax" || "park_orbit" || "room",
|
|
46
|
-
* groupDn: "STRING_VALUE",
|
|
47
|
-
* language: "STRING_VALUE",
|
|
48
|
-
* dialplan: "STRING_VALUE",
|
|
49
|
-
* faxDialplan: "STRING_VALUE",
|
|
50
|
-
* department: "STRING_VALUE",
|
|
51
|
-
* login: "STRING_VALUE",
|
|
52
|
-
* password: "STRING_VALUE",
|
|
53
|
-
* sipPassword: "STRING_VALUE",
|
|
54
|
-
* licenseType: "basic" || "essential" || "business" || "premium" || "wizyconf",
|
|
55
|
-
* };
|
|
56
|
-
* const command = new CreatePbxColleagueCommand(input);
|
|
57
|
-
* const response = await client.send(command);
|
|
58
|
-
* // { // CreatePbxColleagueOutput
|
|
59
|
-
* // type: "result" || "error", // required
|
|
60
|
-
* // result: { // PbxColleague
|
|
61
|
-
* // id: "STRING_VALUE", // required
|
|
62
|
-
* // name: "STRING_VALUE",
|
|
63
|
-
* // login: "STRING_VALUE",
|
|
64
|
-
* // extension: "STRING_VALUE", // required
|
|
65
|
-
* // officePhone: "STRING_VALUE",
|
|
66
|
-
* // mobilePhone: "STRING_VALUE",
|
|
67
|
-
* // faxNumber: "STRING_VALUE",
|
|
68
|
-
* // email: "STRING_VALUE",
|
|
69
|
-
* // pbxDn: "STRING_VALUE", // required
|
|
70
|
-
* // pbx: "STRING_VALUE", // required
|
|
71
|
-
* // role: "admin" || "user" || "fax" || "park_orbit" || "room", // required
|
|
72
|
-
* // groupName: "STRING_VALUE", // required
|
|
73
|
-
* // groupDn: "STRING_VALUE", // required
|
|
74
|
-
* // language: "STRING_VALUE", // required
|
|
75
|
-
* // dialplan: "STRING_VALUE", // required
|
|
76
|
-
* // faxDialplan: "STRING_VALUE", // required
|
|
77
|
-
* // department: "STRING_VALUE",
|
|
78
|
-
* // picture: "STRING_VALUE", // required
|
|
79
|
-
* // sourceId: "STRING_VALUE",
|
|
80
|
-
* // licenseType: "basic" || "essential" || "business" || "premium" || "wizyconf", // required
|
|
81
|
-
* // jid: "STRING_VALUE", // required
|
|
82
|
-
* // },
|
|
83
|
-
* // };
|
|
84
|
-
*
|
|
85
|
-
* ```
|
|
86
|
-
*
|
|
87
|
-
* @param CreatePbxColleagueCommandInput - {@link CreatePbxColleagueCommandInput}
|
|
88
|
-
* @returns {@link CreatePbxColleagueCommandOutput}
|
|
89
|
-
* @see {@link CreatePbxColleagueCommandInput} for command's `input` shape.
|
|
90
|
-
* @see {@link CreatePbxColleagueCommandOutput} for command's `response` shape.
|
|
91
|
-
* @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
|
|
92
|
-
*
|
|
93
|
-
* @throws {@link WmsUnauthorizedException} (client fault)
|
|
94
|
-
*
|
|
95
|
-
* @throws {@link WmsApiServiceException}
|
|
96
|
-
* <p>Base exception class for all service exceptions from WmsApi service.</p>
|
|
97
|
-
*
|
|
98
|
-
*/
|
|
99
|
-
export declare class CreatePbxColleagueCommand extends CreatePbxColleagueCommand_base {
|
|
100
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
|
|
2
|
-
import { DeletePbxAclGroupInput, DeletePbxAclGroupOutput } 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 DeletePbxAclGroupCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface DeletePbxAclGroupCommandInput extends DeletePbxAclGroupInput {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link DeletePbxAclGroupCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface DeletePbxAclGroupCommandOutput extends DeletePbxAclGroupOutput, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const DeletePbxAclGroupCommand_base: {
|
|
25
|
-
new (input: DeletePbxAclGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePbxAclGroupCommandInput, DeletePbxAclGroupCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (__0_0: DeletePbxAclGroupCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePbxAclGroupCommandInput, DeletePbxAclGroupCommandOutput, 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, DeletePbxAclGroupCommand } from "@wildix/wms-api-client"; // ES Modules import
|
|
36
|
-
* // const { WmsApiClient, DeletePbxAclGroupCommand } = require("@wildix/wms-api-client"); // CommonJS import
|
|
37
|
-
* const client = new WmsApiClient(config);
|
|
38
|
-
* const input = { // DeletePbxAclGroupInput
|
|
39
|
-
* id: Number("int"), // required
|
|
40
|
-
* };
|
|
41
|
-
* const command = new DeletePbxAclGroupCommand(input);
|
|
42
|
-
* const response = await client.send(command);
|
|
43
|
-
* // { // DeletePbxAclGroupOutput
|
|
44
|
-
* // type: "result" || "error", // required
|
|
45
|
-
* // result: "STRING_VALUE", // required
|
|
46
|
-
* // };
|
|
47
|
-
*
|
|
48
|
-
* ```
|
|
49
|
-
*
|
|
50
|
-
* @param DeletePbxAclGroupCommandInput - {@link DeletePbxAclGroupCommandInput}
|
|
51
|
-
* @returns {@link DeletePbxAclGroupCommandOutput}
|
|
52
|
-
* @see {@link DeletePbxAclGroupCommandInput} for command's `input` shape.
|
|
53
|
-
* @see {@link DeletePbxAclGroupCommandOutput} for command's `response` shape.
|
|
54
|
-
* @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
|
|
55
|
-
*
|
|
56
|
-
* @throws {@link WmsUnauthorizedException} (client fault)
|
|
57
|
-
*
|
|
58
|
-
* @throws {@link WmsApiServiceException}
|
|
59
|
-
* <p>Base exception class for all service exceptions from WmsApi service.</p>
|
|
60
|
-
*
|
|
61
|
-
*/
|
|
62
|
-
export declare class DeletePbxAclGroupCommand extends DeletePbxAclGroupCommand_base {
|
|
63
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
import { ServiceInputTypes, ServiceOutputTypes, WmsApiClientResolvedConfig } from "../WmsApiClient";
|
|
2
|
-
import { DeletePbxColleagueInput, DeletePbxColleagueOutput } 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 DeletePbxColleagueCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface DeletePbxColleagueCommandInput extends DeletePbxColleagueInput {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link DeletePbxColleagueCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface DeletePbxColleagueCommandOutput extends DeletePbxColleagueOutput, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const DeletePbxColleagueCommand_base: {
|
|
25
|
-
new (input: DeletePbxColleagueCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePbxColleagueCommandInput, DeletePbxColleagueCommandOutput, WmsApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (__0_0: DeletePbxColleagueCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePbxColleagueCommandInput, DeletePbxColleagueCommandOutput, 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, DeletePbxColleagueCommand } from "@wildix/wms-api-client"; // ES Modules import
|
|
36
|
-
* // const { WmsApiClient, DeletePbxColleagueCommand } = require("@wildix/wms-api-client"); // CommonJS import
|
|
37
|
-
* const client = new WmsApiClient(config);
|
|
38
|
-
* const input = { // DeletePbxColleagueInput
|
|
39
|
-
* id: Number("int"), // required
|
|
40
|
-
* };
|
|
41
|
-
* const command = new DeletePbxColleagueCommand(input);
|
|
42
|
-
* const response = await client.send(command);
|
|
43
|
-
* // { // DeletePbxColleagueOutput
|
|
44
|
-
* // type: "result" || "error", // required
|
|
45
|
-
* // result: "STRING_VALUE", // required
|
|
46
|
-
* // };
|
|
47
|
-
*
|
|
48
|
-
* ```
|
|
49
|
-
*
|
|
50
|
-
* @param DeletePbxColleagueCommandInput - {@link DeletePbxColleagueCommandInput}
|
|
51
|
-
* @returns {@link DeletePbxColleagueCommandOutput}
|
|
52
|
-
* @see {@link DeletePbxColleagueCommandInput} for command's `input` shape.
|
|
53
|
-
* @see {@link DeletePbxColleagueCommandOutput} for command's `response` shape.
|
|
54
|
-
* @see {@link WmsApiClientResolvedConfig | config} for WmsApiClient's `config` shape.
|
|
55
|
-
*
|
|
56
|
-
* @throws {@link WmsUnauthorizedException} (client fault)
|
|
57
|
-
*
|
|
58
|
-
* @throws {@link WmsApiServiceException}
|
|
59
|
-
* <p>Base exception class for all service exceptions from WmsApi service.</p>
|
|
60
|
-
*
|
|
61
|
-
*/
|
|
62
|
-
export declare class DeletePbxColleagueCommand extends DeletePbxColleagueCommand_base {
|
|
63
|
-
}
|