@wildix/wms-api-client 1.1.2 → 1.1.3
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/WmsApiClient.js +6 -3
- package/dist-cjs/commands/CreatePbxOAuth2ClientCommand.js +12 -32
- package/dist-cjs/commands/DeletePbxOAuth2ClientCommand.js +12 -32
- package/dist-cjs/commands/GetPbxAclGroupsPermissionsCommand.js +12 -32
- package/dist-cjs/commands/GetPbxCallGroupsCommand.js +12 -32
- package/dist-cjs/commands/GetPbxColleaguesCommand.js +12 -32
- package/dist-cjs/commands/GetPbxOAuth2ClientsCommand.js +12 -32
- package/dist-cjs/commands/UpdatePbxOAuth2ClientCommand.js +12 -32
- package/dist-cjs/protocols/Aws_restJson1.js +122 -237
- package/dist-cjs/runtimeConfig.browser.js +5 -1
- package/dist-cjs/runtimeConfig.js +5 -1
- package/dist-cjs/runtimeConfig.shared.js +13 -11
- package/dist-es/WmsApiClient.js +6 -3
- package/dist-es/commands/CreatePbxOAuth2ClientCommand.js +12 -32
- package/dist-es/commands/DeletePbxOAuth2ClientCommand.js +12 -32
- package/dist-es/commands/GetPbxAclGroupsPermissionsCommand.js +12 -32
- package/dist-es/commands/GetPbxCallGroupsCommand.js +12 -32
- package/dist-es/commands/GetPbxColleaguesCommand.js +12 -32
- package/dist-es/commands/GetPbxOAuth2ClientsCommand.js +12 -32
- package/dist-es/commands/UpdatePbxOAuth2ClientCommand.js +12 -32
- package/dist-es/protocols/Aws_restJson1.js +123 -238
- package/dist-es/runtimeConfig.browser.js +4 -1
- package/dist-es/runtimeConfig.js +4 -1
- package/dist-es/runtimeConfig.shared.js +13 -11
- package/dist-types/WmsApi.d.ts +4 -0
- package/dist-types/WmsApiClient.d.ts +13 -7
- package/dist-types/commands/CreatePbxOAuth2ClientCommand.d.ts +8 -20
- package/dist-types/commands/DeletePbxOAuth2ClientCommand.d.ts +8 -20
- package/dist-types/commands/GetPbxAclGroupsPermissionsCommand.d.ts +7 -19
- package/dist-types/commands/GetPbxCallGroupsCommand.d.ts +8 -20
- package/dist-types/commands/GetPbxColleaguesCommand.d.ts +7 -19
- package/dist-types/commands/GetPbxOAuth2ClientsCommand.d.ts +8 -20
- package/dist-types/commands/UpdatePbxOAuth2ClientCommand.d.ts +8 -20
- package/dist-types/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +27 -27
- package/dist-types/runtimeConfig.browser.d.ts +3 -4
- package/dist-types/runtimeConfig.d.ts +3 -4
- package/dist-types/runtimeConfig.native.d.ts +3 -4
- package/package.json +29 -27
package/package.json
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
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.3",
|
|
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",
|
|
8
|
-
"build:docs": "typedoc",
|
|
9
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
9
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
10
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
11
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
|
13
12
|
"prepack": "yarn run clean && yarn run build"
|
|
14
13
|
},
|
|
15
14
|
"main": "./dist-cjs/index.js",
|
|
@@ -17,31 +16,35 @@
|
|
|
17
16
|
"module": "./dist-es/index.js",
|
|
18
17
|
"sideEffects": false,
|
|
19
18
|
"dependencies": {
|
|
20
|
-
"tslib": "^2.
|
|
19
|
+
"tslib": "^2.6.2",
|
|
21
20
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
21
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
22
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
23
23
|
"@aws-sdk/types": "latest",
|
|
24
|
-
"@
|
|
25
|
-
"@
|
|
26
|
-
"@smithy/
|
|
27
|
-
"@smithy/
|
|
28
|
-
"@smithy/
|
|
29
|
-
"@smithy/
|
|
30
|
-
"@smithy/
|
|
31
|
-
"@smithy/middleware-
|
|
32
|
-
"@smithy/
|
|
33
|
-
"@smithy/
|
|
34
|
-
"@smithy/
|
|
35
|
-
"@smithy/
|
|
36
|
-
"@smithy/
|
|
37
|
-
"@smithy/
|
|
38
|
-
"@smithy/
|
|
39
|
-
"@smithy/
|
|
40
|
-
"@smithy/
|
|
41
|
-
"@smithy/util-
|
|
42
|
-
"@smithy/util-
|
|
43
|
-
"@smithy/util-
|
|
44
|
-
"@smithy/util-
|
|
24
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
25
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
26
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
27
|
+
"@smithy/core": "^1.4.0",
|
|
28
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
29
|
+
"@smithy/hash-node": "^2.2.0",
|
|
30
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
31
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
32
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
33
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
34
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
35
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
36
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
37
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
38
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
39
|
+
"@smithy/types": "^2.12.0",
|
|
40
|
+
"@smithy/url-parser": "^2.2.0",
|
|
41
|
+
"@smithy/util-base64": "^2.3.0",
|
|
42
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
43
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
44
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
45
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
46
|
+
"@smithy/util-retry": "^2.2.0",
|
|
47
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
45
48
|
"@wildix/smithy-utils": "^1.0.2"
|
|
46
49
|
},
|
|
47
50
|
"devDependencies": {
|
|
@@ -49,9 +52,8 @@
|
|
|
49
52
|
"concurrently": "7.0.0",
|
|
50
53
|
"downlevel-dts": "0.10.1",
|
|
51
54
|
"rimraf": "^3.0.0",
|
|
52
|
-
"typedoc": "0.23.23",
|
|
53
55
|
"typescript": "~4.9.5",
|
|
54
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
56
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
55
57
|
"@types/node": "^14.14.31"
|
|
56
58
|
},
|
|
57
59
|
"engines": {
|