@wildix/wim-voicebots-client 1.0.1
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/VoiceBots.js +31 -0
- package/dist-cjs/VoiceBotsClient.js +42 -0
- package/dist-cjs/commands/CreateVoiceBotCommand.js +21 -0
- package/dist-cjs/commands/DeleteVoiceBotCommand.js +21 -0
- package/dist-cjs/commands/DescribeEventCommand.js +21 -0
- package/dist-cjs/commands/GetVoiceBotCommand.js +21 -0
- package/dist-cjs/commands/ListVoiceBotsCommand.js +21 -0
- package/dist-cjs/commands/ListVoiceBotsNamesCommand.js +21 -0
- package/dist-cjs/commands/SendHangupCommand.js +21 -0
- package/dist-cjs/commands/SendSayCommand.js +21 -0
- package/dist-cjs/commands/SendTransferCommand.js +21 -0
- package/dist-cjs/commands/UpdateVoiceBotCommand.js +21 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +10 -0
- package/dist-cjs/models/VoiceBotsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +78 -0
- package/dist-cjs/protocols/Aws_restJson1.js +539 -0
- package/dist-cjs/runtimeConfig.browser.js +32 -0
- package/dist-cjs/runtimeConfig.js +36 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +21 -0
- package/dist-cjs/runtimeExtensions.js +19 -0
- package/dist-es/VoiceBots.js +27 -0
- package/dist-es/VoiceBotsClient.js +38 -0
- package/dist-es/commands/CreateVoiceBotCommand.js +17 -0
- package/dist-es/commands/DeleteVoiceBotCommand.js +17 -0
- package/dist-es/commands/DescribeEventCommand.js +17 -0
- package/dist-es/commands/GetVoiceBotCommand.js +17 -0
- package/dist-es/commands/ListVoiceBotsCommand.js +17 -0
- package/dist-es/commands/ListVoiceBotsNamesCommand.js +17 -0
- package/dist-es/commands/SendHangupCommand.js +17 -0
- package/dist-es/commands/SendSayCommand.js +17 -0
- package/dist-es/commands/SendTransferCommand.js +17 -0
- package/dist-es/commands/UpdateVoiceBotCommand.js +17 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +5 -0
- package/dist-es/models/VoiceBotsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +71 -0
- package/dist-es/protocols/Aws_restJson1.js +516 -0
- package/dist-es/runtimeConfig.browser.js +27 -0
- package/dist-es/runtimeConfig.js +31 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +17 -0
- package/dist-es/runtimeExtensions.js +15 -0
- package/dist-types/VoiceBots.d.ts +82 -0
- package/dist-types/VoiceBotsClient.d.ts +153 -0
- package/dist-types/commands/CreateVoiceBotCommand.d.ts +120 -0
- package/dist-types/commands/DeleteVoiceBotCommand.d.ts +63 -0
- package/dist-types/commands/DescribeEventCommand.d.ts +141 -0
- package/dist-types/commands/GetVoiceBotCommand.d.ts +97 -0
- package/dist-types/commands/ListVoiceBotsCommand.d.ts +96 -0
- package/dist-types/commands/ListVoiceBotsNamesCommand.d.ts +69 -0
- package/dist-types/commands/SendHangupCommand.d.ts +65 -0
- package/dist-types/commands/SendSayCommand.d.ts +67 -0
- package/dist-types/commands/SendTransferCommand.d.ts +66 -0
- package/dist-types/commands/UpdateVoiceBotCommand.d.ts +123 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/extensionConfiguration.d.ts +7 -0
- package/dist-types/index.d.ts +7 -0
- package/dist-types/models/VoiceBotsServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +492 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +92 -0
- package/dist-types/runtimeConfig.browser.d.ts +29 -0
- package/dist-types/runtimeConfig.d.ts +29 -0
- package/dist-types/runtimeConfig.native.d.ts +28 -0
- package/dist-types/runtimeConfig.shared.d.ts +15 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wildix/wim-voicebots-client",
|
|
3
|
+
"description": "@wildix/wim-voicebots-client client",
|
|
4
|
+
"version": "1.0.1",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
11
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
|
12
|
+
"prepack": "yarn run clean && yarn run build",
|
|
13
|
+
"postpublish": "node ../../scripts/postpublish.js"
|
|
14
|
+
},
|
|
15
|
+
"main": "./dist-cjs/index.js",
|
|
16
|
+
"types": "./dist-types/index.d.ts",
|
|
17
|
+
"module": "./dist-es/index.js",
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"tslib": "^2.6.2",
|
|
21
|
+
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
|
+
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
+
"@aws-sdk/middleware-user-agent": "3.587.0",
|
|
24
|
+
"@aws-sdk/types": "latest",
|
|
25
|
+
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
26
|
+
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
27
|
+
"@smithy/config-resolver": "^3.0.1",
|
|
28
|
+
"@smithy/core": "^2.2.0",
|
|
29
|
+
"@smithy/fetch-http-handler": "^3.0.1",
|
|
30
|
+
"@smithy/hash-node": "^3.0.0",
|
|
31
|
+
"@smithy/invalid-dependency": "^3.0.0",
|
|
32
|
+
"@smithy/middleware-content-length": "^3.0.0",
|
|
33
|
+
"@smithy/middleware-retry": "^3.0.3",
|
|
34
|
+
"@smithy/middleware-serde": "^3.0.0",
|
|
35
|
+
"@smithy/middleware-stack": "^3.0.0",
|
|
36
|
+
"@smithy/node-config-provider": "^3.1.0",
|
|
37
|
+
"@smithy/node-http-handler": "^3.0.0",
|
|
38
|
+
"@smithy/protocol-http": "^4.0.0",
|
|
39
|
+
"@smithy/smithy-client": "^3.1.1",
|
|
40
|
+
"@smithy/types": "^3.0.0",
|
|
41
|
+
"@smithy/url-parser": "^3.0.0",
|
|
42
|
+
"@smithy/util-base64": "^3.0.0",
|
|
43
|
+
"@smithy/util-body-length-browser": "^3.0.0",
|
|
44
|
+
"@smithy/util-body-length-node": "^3.0.0",
|
|
45
|
+
"@smithy/util-defaults-mode-browser": "^3.0.3",
|
|
46
|
+
"@smithy/util-defaults-mode-node": "^3.0.3",
|
|
47
|
+
"@smithy/util-retry": "^3.0.0",
|
|
48
|
+
"@smithy/util-utf8": "^3.0.0",
|
|
49
|
+
"@wildix/smithy-utils": "^1.0.2"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@tsconfig/node16": "16.1.3",
|
|
53
|
+
"concurrently": "7.0.0",
|
|
54
|
+
"downlevel-dts": "0.10.1",
|
|
55
|
+
"rimraf": "^3.0.0",
|
|
56
|
+
"typescript": "~4.9.5",
|
|
57
|
+
"@types/node": "^16.18.96"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=16.0.0"
|
|
61
|
+
},
|
|
62
|
+
"typesVersions": {
|
|
63
|
+
"<4.0": {
|
|
64
|
+
"dist-types/*": [
|
|
65
|
+
"dist-types/ts3.4/*"
|
|
66
|
+
]
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"files": [
|
|
70
|
+
"dist-*/**"
|
|
71
|
+
],
|
|
72
|
+
"license": "Apache-2.0",
|
|
73
|
+
"browser": {
|
|
74
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
75
|
+
},
|
|
76
|
+
"react-native": {
|
|
77
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
78
|
+
}
|
|
79
|
+
}
|