@wildix/wms-api-client 1.1.11 → 1.1.13
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 +12 -0
- package/dist-cjs/commands/CreatePbxAclGroupCommand.js +21 -0
- package/dist-cjs/commands/CreatePbxColleagueCommand.js +21 -0
- package/dist-cjs/commands/DeletePbxAclGroupCommand.js +21 -0
- package/dist-cjs/commands/DeletePbxColleagueCommand.js +21 -0
- package/dist-cjs/commands/GetColleagueByIdCommand.js +21 -0
- package/dist-cjs/commands/GetPersonalInfoCommand.js +21 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +8 -8
- package/dist-cjs/protocols/Aws_restJson1.js +219 -1
- package/dist-es/WmsApi.js +12 -0
- package/dist-es/commands/CreatePbxAclGroupCommand.js +17 -0
- package/dist-es/commands/CreatePbxColleagueCommand.js +17 -0
- package/dist-es/commands/DeletePbxAclGroupCommand.js +17 -0
- package/dist-es/commands/DeletePbxColleagueCommand.js +17 -0
- package/dist-es/commands/GetColleagueByIdCommand.js +17 -0
- package/dist-es/commands/GetPersonalInfoCommand.js +17 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +7 -7
- package/dist-es/protocols/Aws_restJson1.js +206 -0
- package/dist-types/WmsApi.d.ts +43 -0
- package/dist-types/WmsApiClient.d.ts +8 -2
- package/dist-types/commands/CreatePbxAclGroupCommand.d.ts +86 -0
- package/dist-types/commands/CreatePbxColleagueCommand.d.ts +100 -0
- package/dist-types/commands/DeletePbxAclGroupCommand.d.ts +63 -0
- package/dist-types/commands/DeletePbxColleagueCommand.d.ts +63 -0
- package/dist-types/commands/GetColleagueByIdCommand.d.ts +85 -0
- package/dist-types/commands/GetPersonalInfoCommand.d.ts +124 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +196 -59
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,24 +1,50 @@
|
|
|
1
|
+
import { CreatePbxAclGroupCommandInput, CreatePbxAclGroupCommandOutput } from "../commands/CreatePbxAclGroupCommand";
|
|
2
|
+
import { CreatePbxColleagueCommandInput, CreatePbxColleagueCommandOutput } from "../commands/CreatePbxColleagueCommand";
|
|
1
3
|
import { CreatePbxOAuth2ClientCommandInput, CreatePbxOAuth2ClientCommandOutput } from "../commands/CreatePbxOAuth2ClientCommand";
|
|
4
|
+
import { DeletePbxAclGroupCommandInput, DeletePbxAclGroupCommandOutput } from "../commands/DeletePbxAclGroupCommand";
|
|
5
|
+
import { DeletePbxColleagueCommandInput, DeletePbxColleagueCommandOutput } from "../commands/DeletePbxColleagueCommand";
|
|
2
6
|
import { DeletePbxOAuth2ClientCommandInput, DeletePbxOAuth2ClientCommandOutput } from "../commands/DeletePbxOAuth2ClientCommand";
|
|
7
|
+
import { GetColleagueByIdCommandInput, GetColleagueByIdCommandOutput } from "../commands/GetColleagueByIdCommand";
|
|
3
8
|
import { GetPbxAclGroupsPermissionsCommandInput, GetPbxAclGroupsPermissionsCommandOutput } from "../commands/GetPbxAclGroupsPermissionsCommand";
|
|
4
9
|
import { GetPbxCallGroupsCommandInput, GetPbxCallGroupsCommandOutput } from "../commands/GetPbxCallGroupsCommand";
|
|
5
10
|
import { GetPbxColleaguesCommandInput, GetPbxColleaguesCommandOutput } from "../commands/GetPbxColleaguesCommand";
|
|
6
11
|
import { GetPbxOAuth2ClientsCommandInput, GetPbxOAuth2ClientsCommandOutput } from "../commands/GetPbxOAuth2ClientsCommand";
|
|
7
12
|
import { GetPbxesCommandInput, GetPbxesCommandOutput } from "../commands/GetPbxesCommand";
|
|
13
|
+
import { GetPersonalInfoCommandInput, GetPersonalInfoCommandOutput } from "../commands/GetPersonalInfoCommand";
|
|
8
14
|
import { NotificationsCommandInput, NotificationsCommandOutput } from "../commands/NotificationsCommand";
|
|
9
15
|
import { OriginateCallCommandInput, OriginateCallCommandOutput } from "../commands/OriginateCallCommand";
|
|
10
16
|
import { OriginateCommandInput, OriginateCommandOutput } from "../commands/OriginateCommand";
|
|
11
17
|
import { UpdatePbxOAuth2ClientCommandInput, UpdatePbxOAuth2ClientCommandOutput } from "../commands/UpdatePbxOAuth2ClientCommand";
|
|
12
18
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
13
19
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
20
|
+
/**
|
|
21
|
+
* serializeAws_restJson1CreatePbxAclGroupCommand
|
|
22
|
+
*/
|
|
23
|
+
export declare const se_CreatePbxAclGroupCommand: (input: CreatePbxAclGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
/**
|
|
25
|
+
* serializeAws_restJson1CreatePbxColleagueCommand
|
|
26
|
+
*/
|
|
27
|
+
export declare const se_CreatePbxColleagueCommand: (input: CreatePbxColleagueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
28
|
/**
|
|
15
29
|
* serializeAws_restJson1CreatePbxOAuth2ClientCommand
|
|
16
30
|
*/
|
|
17
31
|
export declare const se_CreatePbxOAuth2ClientCommand: (input: CreatePbxOAuth2ClientCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
/**
|
|
33
|
+
* serializeAws_restJson1DeletePbxAclGroupCommand
|
|
34
|
+
*/
|
|
35
|
+
export declare const se_DeletePbxAclGroupCommand: (input: DeletePbxAclGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
/**
|
|
37
|
+
* serializeAws_restJson1DeletePbxColleagueCommand
|
|
38
|
+
*/
|
|
39
|
+
export declare const se_DeletePbxColleagueCommand: (input: DeletePbxColleagueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
40
|
/**
|
|
19
41
|
* serializeAws_restJson1DeletePbxOAuth2ClientCommand
|
|
20
42
|
*/
|
|
21
43
|
export declare const se_DeletePbxOAuth2ClientCommand: (input: DeletePbxOAuth2ClientCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
/**
|
|
45
|
+
* serializeAws_restJson1GetColleagueByIdCommand
|
|
46
|
+
*/
|
|
47
|
+
export declare const se_GetColleagueByIdCommand: (input: GetColleagueByIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
48
|
/**
|
|
23
49
|
* serializeAws_restJson1GetPbxAclGroupsPermissionsCommand
|
|
24
50
|
*/
|
|
@@ -39,6 +65,10 @@ export declare const se_GetPbxesCommand: (input: GetPbxesCommandInput, context:
|
|
|
39
65
|
* serializeAws_restJson1GetPbxOAuth2ClientsCommand
|
|
40
66
|
*/
|
|
41
67
|
export declare const se_GetPbxOAuth2ClientsCommand: (input: GetPbxOAuth2ClientsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
/**
|
|
69
|
+
* serializeAws_restJson1GetPersonalInfoCommand
|
|
70
|
+
*/
|
|
71
|
+
export declare const se_GetPersonalInfoCommand: (input: GetPersonalInfoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
72
|
/**
|
|
43
73
|
* serializeAws_restJson1NotificationsCommand
|
|
44
74
|
*/
|
|
@@ -55,14 +85,34 @@ export declare const se_OriginateCallCommand: (input: OriginateCallCommandInput,
|
|
|
55
85
|
* serializeAws_restJson1UpdatePbxOAuth2ClientCommand
|
|
56
86
|
*/
|
|
57
87
|
export declare const se_UpdatePbxOAuth2ClientCommand: (input: UpdatePbxOAuth2ClientCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
+
/**
|
|
89
|
+
* deserializeAws_restJson1CreatePbxAclGroupCommand
|
|
90
|
+
*/
|
|
91
|
+
export declare const de_CreatePbxAclGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePbxAclGroupCommandOutput>;
|
|
92
|
+
/**
|
|
93
|
+
* deserializeAws_restJson1CreatePbxColleagueCommand
|
|
94
|
+
*/
|
|
95
|
+
export declare const de_CreatePbxColleagueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePbxColleagueCommandOutput>;
|
|
58
96
|
/**
|
|
59
97
|
* deserializeAws_restJson1CreatePbxOAuth2ClientCommand
|
|
60
98
|
*/
|
|
61
99
|
export declare const de_CreatePbxOAuth2ClientCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePbxOAuth2ClientCommandOutput>;
|
|
100
|
+
/**
|
|
101
|
+
* deserializeAws_restJson1DeletePbxAclGroupCommand
|
|
102
|
+
*/
|
|
103
|
+
export declare const de_DeletePbxAclGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePbxAclGroupCommandOutput>;
|
|
104
|
+
/**
|
|
105
|
+
* deserializeAws_restJson1DeletePbxColleagueCommand
|
|
106
|
+
*/
|
|
107
|
+
export declare const de_DeletePbxColleagueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePbxColleagueCommandOutput>;
|
|
62
108
|
/**
|
|
63
109
|
* deserializeAws_restJson1DeletePbxOAuth2ClientCommand
|
|
64
110
|
*/
|
|
65
111
|
export declare const de_DeletePbxOAuth2ClientCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePbxOAuth2ClientCommandOutput>;
|
|
112
|
+
/**
|
|
113
|
+
* deserializeAws_restJson1GetColleagueByIdCommand
|
|
114
|
+
*/
|
|
115
|
+
export declare const de_GetColleagueByIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetColleagueByIdCommandOutput>;
|
|
66
116
|
/**
|
|
67
117
|
* deserializeAws_restJson1GetPbxAclGroupsPermissionsCommand
|
|
68
118
|
*/
|
|
@@ -83,6 +133,10 @@ export declare const de_GetPbxesCommand: (output: __HttpResponse, context: __Ser
|
|
|
83
133
|
* deserializeAws_restJson1GetPbxOAuth2ClientsCommand
|
|
84
134
|
*/
|
|
85
135
|
export declare const de_GetPbxOAuth2ClientsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPbxOAuth2ClientsCommandOutput>;
|
|
136
|
+
/**
|
|
137
|
+
* deserializeAws_restJson1GetPersonalInfoCommand
|
|
138
|
+
*/
|
|
139
|
+
export declare const de_GetPersonalInfoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPersonalInfoCommandOutput>;
|
|
86
140
|
/**
|
|
87
141
|
* deserializeAws_restJson1NotificationsCommand
|
|
88
142
|
*/
|
|
@@ -17,6 +17,7 @@ export declare const getRuntimeConfig: (config: WmsApiClientConfig) => {
|
|
|
17
17
|
port?: number | undefined;
|
|
18
18
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
19
19
|
apiVersion: string;
|
|
20
|
+
cacheMiddleware?: boolean | undefined;
|
|
20
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
22
23
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -17,6 +17,7 @@ export declare const getRuntimeConfig: (config: WmsApiClientConfig) => {
|
|
|
17
17
|
port?: number | undefined;
|
|
18
18
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
19
19
|
apiVersion: string;
|
|
20
|
+
cacheMiddleware?: boolean | undefined;
|
|
20
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
22
|
base64Decoder: import("@smithy/types").Decoder;
|
|
22
23
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -10,6 +10,7 @@ export declare const getRuntimeConfig: (config: WmsApiClientConfig) => {
|
|
|
10
10
|
token: import("@wildix/smithy-utils").TokenProvider;
|
|
11
11
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
12
12
|
apiVersion: string;
|
|
13
|
+
cacheMiddleware?: boolean | undefined;
|
|
13
14
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
15
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
16
|
streamCollector: import("@smithy/types").StreamCollector;
|
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.13",
|
|
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",
|