@aws-sdk/client-bedrock-runtime 3.839.0 → 3.840.0
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/auth/httpAuthSchemeProvider.js +17 -0
- package/dist-cjs/index.js +80 -2
- package/dist-cjs/runtimeConfig.js +23 -0
- package/dist-cjs/runtimeConfig.shared.js +6 -0
- package/dist-es/BedrockRuntimeClient.js +1 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +8 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +17 -0
- package/dist-es/models/models_0.js +48 -0
- package/dist-es/protocols/Aws_restJson1.js +25 -0
- package/dist-es/runtimeConfig.js +24 -1
- package/dist-es/runtimeConfig.shared.js +6 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +4 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +9 -1
- package/dist-types/commands/ApplyGuardrailCommand.d.ts +6 -13
- package/dist-types/commands/ConverseCommand.d.ts +120 -44
- package/dist-types/commands/ConverseStreamCommand.d.ts +89 -48
- package/dist-types/commands/GetAsyncInvokeCommand.d.ts +4 -8
- package/dist-types/commands/InvokeModelCommand.d.ts +8 -30
- package/dist-types/commands/InvokeModelWithBidirectionalStreamCommand.d.ts +8 -18
- package/dist-types/commands/InvokeModelWithResponseStreamCommand.d.ts +8 -35
- package/dist-types/commands/ListAsyncInvokesCommand.d.ts +4 -8
- package/dist-types/commands/StartAsyncInvokeCommand.d.ts +7 -21
- package/dist-types/models/models_0.d.ts +432 -296
- package/dist-types/runtimeConfig.browser.d.ts +10 -1
- package/dist-types/runtimeConfig.d.ts +13 -1
- package/dist-types/runtimeConfig.native.d.ts +10 -1
- package/dist-types/runtimeConfig.shared.d.ts +12 -1
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +192 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +27 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +30 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +27 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -1
- package/package.json +15 -14
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Runtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.840.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime",
|
|
@@ -20,19 +20,20 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/eventstream-handler-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-eventstream": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/
|
|
33
|
-
"@aws-sdk/
|
|
34
|
-
"@aws-sdk/util-
|
|
35
|
-
"@aws-sdk/util-user-agent-
|
|
23
|
+
"@aws-sdk/core": "3.840.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.840.0",
|
|
25
|
+
"@aws-sdk/eventstream-handler-node": "3.840.0",
|
|
26
|
+
"@aws-sdk/middleware-eventstream": "3.840.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.840.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.840.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
32
|
+
"@aws-sdk/token-providers": "3.840.0",
|
|
33
|
+
"@aws-sdk/types": "3.840.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.840.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.840.0",
|
|
36
37
|
"@smithy/config-resolver": "^4.1.4",
|
|
37
38
|
"@smithy/core": "^3.6.0",
|
|
38
39
|
"@smithy/eventstream-serde-browser": "^4.0.4",
|