@aws-sdk/client-bedrock-runtime 3.650.0 → 3.654.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-types/commands/ApplyGuardrailCommand.d.ts +11 -0
- package/dist-types/commands/ConverseCommand.d.ts +11 -0
- package/dist-types/commands/ConverseStreamCommand.d.ts +11 -0
- package/dist-types/commands/InvokeModelCommand.d.ts +11 -0
- package/dist-types/commands/InvokeModelWithResponseStreamCommand.d.ts +11 -0
- package/dist-types/ts3.4/commands/ApplyGuardrailCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ConverseCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/ConverseStreamCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/InvokeModelCommand.d.ts +12 -1
- package/dist-types/ts3.4/commands/InvokeModelWithResponseStreamCommand.d.ts +12 -1
- package/package.json +39 -39
|
@@ -164,4 +164,15 @@ declare const ApplyGuardrailCommand_base: {
|
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
166
|
export declare class ApplyGuardrailCommand extends ApplyGuardrailCommand_base {
|
|
167
|
+
/** @internal type navigation helper, not in runtime. */
|
|
168
|
+
protected static __types: {
|
|
169
|
+
api: {
|
|
170
|
+
input: ApplyGuardrailRequest;
|
|
171
|
+
output: ApplyGuardrailResponse;
|
|
172
|
+
};
|
|
173
|
+
sdk: {
|
|
174
|
+
input: ApplyGuardrailCommandInput;
|
|
175
|
+
output: ApplyGuardrailCommandOutput;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
167
178
|
}
|
|
@@ -413,4 +413,15 @@ declare const ConverseCommand_base: {
|
|
|
413
413
|
* @public
|
|
414
414
|
*/
|
|
415
415
|
export declare class ConverseCommand extends ConverseCommand_base {
|
|
416
|
+
/** @internal type navigation helper, not in runtime. */
|
|
417
|
+
protected static __types: {
|
|
418
|
+
api: {
|
|
419
|
+
input: ConverseRequest;
|
|
420
|
+
output: ConverseResponse;
|
|
421
|
+
};
|
|
422
|
+
sdk: {
|
|
423
|
+
input: ConverseCommandInput;
|
|
424
|
+
output: ConverseCommandOutput;
|
|
425
|
+
};
|
|
426
|
+
};
|
|
416
427
|
}
|
|
@@ -408,4 +408,15 @@ declare const ConverseStreamCommand_base: {
|
|
|
408
408
|
* @public
|
|
409
409
|
*/
|
|
410
410
|
export declare class ConverseStreamCommand extends ConverseStreamCommand_base {
|
|
411
|
+
/** @internal type navigation helper, not in runtime. */
|
|
412
|
+
protected static __types: {
|
|
413
|
+
api: {
|
|
414
|
+
input: ConverseStreamRequest;
|
|
415
|
+
output: ConverseStreamResponse;
|
|
416
|
+
};
|
|
417
|
+
sdk: {
|
|
418
|
+
input: ConverseStreamCommandInput;
|
|
419
|
+
output: ConverseStreamCommandOutput;
|
|
420
|
+
};
|
|
421
|
+
};
|
|
411
422
|
}
|
|
@@ -114,4 +114,15 @@ declare const InvokeModelCommand_base: {
|
|
|
114
114
|
* @public
|
|
115
115
|
*/
|
|
116
116
|
export declare class InvokeModelCommand extends InvokeModelCommand_base {
|
|
117
|
+
/** @internal type navigation helper, not in runtime. */
|
|
118
|
+
protected static __types: {
|
|
119
|
+
api: {
|
|
120
|
+
input: InvokeModelRequest;
|
|
121
|
+
output: InvokeModelResponse;
|
|
122
|
+
};
|
|
123
|
+
sdk: {
|
|
124
|
+
input: InvokeModelCommandInput;
|
|
125
|
+
output: InvokeModelCommandOutput;
|
|
126
|
+
};
|
|
127
|
+
};
|
|
117
128
|
}
|
|
@@ -139,4 +139,15 @@ declare const InvokeModelWithResponseStreamCommand_base: {
|
|
|
139
139
|
* @public
|
|
140
140
|
*/
|
|
141
141
|
export declare class InvokeModelWithResponseStreamCommand extends InvokeModelWithResponseStreamCommand_base {
|
|
142
|
+
/** @internal type navigation helper, not in runtime. */
|
|
143
|
+
protected static __types: {
|
|
144
|
+
api: {
|
|
145
|
+
input: InvokeModelWithResponseStreamRequest;
|
|
146
|
+
output: InvokeModelWithResponseStreamResponse;
|
|
147
|
+
};
|
|
148
|
+
sdk: {
|
|
149
|
+
input: InvokeModelWithResponseStreamCommandInput;
|
|
150
|
+
output: InvokeModelWithResponseStreamCommandOutput;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
142
153
|
}
|
|
@@ -36,4 +36,15 @@ declare const ApplyGuardrailCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class ApplyGuardrailCommand extends ApplyGuardrailCommand_base {
|
|
39
|
+
export declare class ApplyGuardrailCommand extends ApplyGuardrailCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ApplyGuardrailRequest;
|
|
43
|
+
output: ApplyGuardrailResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ApplyGuardrailCommandInput;
|
|
47
|
+
output: ApplyGuardrailCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -33,4 +33,15 @@ declare const ConverseCommand_base: {
|
|
|
33
33
|
>;
|
|
34
34
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
35
|
};
|
|
36
|
-
export declare class ConverseCommand extends ConverseCommand_base {
|
|
36
|
+
export declare class ConverseCommand extends ConverseCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ConverseRequest;
|
|
40
|
+
output: ConverseResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ConverseCommandInput;
|
|
44
|
+
output: ConverseCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -36,4 +36,15 @@ declare const ConverseStreamCommand_base: {
|
|
|
36
36
|
>;
|
|
37
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
38
|
};
|
|
39
|
-
export declare class ConverseStreamCommand extends ConverseStreamCommand_base {
|
|
39
|
+
export declare class ConverseStreamCommand extends ConverseStreamCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ConverseStreamRequest;
|
|
43
|
+
output: ConverseStreamResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ConverseStreamCommandInput;
|
|
47
|
+
output: ConverseStreamCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -49,4 +49,15 @@ declare const InvokeModelCommand_base: {
|
|
|
49
49
|
>;
|
|
50
50
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
51
51
|
};
|
|
52
|
-
export declare class InvokeModelCommand extends InvokeModelCommand_base {
|
|
52
|
+
export declare class InvokeModelCommand extends InvokeModelCommand_base {
|
|
53
|
+
protected static __types: {
|
|
54
|
+
api: {
|
|
55
|
+
input: InvokeModelRequest;
|
|
56
|
+
output: InvokeModelResponse;
|
|
57
|
+
};
|
|
58
|
+
sdk: {
|
|
59
|
+
input: InvokeModelCommandInput;
|
|
60
|
+
output: InvokeModelCommandOutput;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
}
|
|
@@ -46,4 +46,15 @@ declare const InvokeModelWithResponseStreamCommand_base: {
|
|
|
46
46
|
>;
|
|
47
47
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
48
48
|
};
|
|
49
|
-
export declare class InvokeModelWithResponseStreamCommand extends InvokeModelWithResponseStreamCommand_base {
|
|
49
|
+
export declare class InvokeModelWithResponseStreamCommand extends InvokeModelWithResponseStreamCommand_base {
|
|
50
|
+
protected static __types: {
|
|
51
|
+
api: {
|
|
52
|
+
input: InvokeModelWithResponseStreamRequest;
|
|
53
|
+
output: InvokeModelWithResponseStreamResponse;
|
|
54
|
+
};
|
|
55
|
+
sdk: {
|
|
56
|
+
input: InvokeModelWithResponseStreamCommandInput;
|
|
57
|
+
output: InvokeModelWithResponseStreamCommandOutput;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
}
|
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.654.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,47 +20,47 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "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/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.4.
|
|
38
|
-
"@smithy/eventstream-serde-browser": "^3.0.
|
|
39
|
-
"@smithy/eventstream-serde-config-resolver": "^3.0.
|
|
40
|
-
"@smithy/eventstream-serde-node": "^3.0.
|
|
41
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
42
|
-
"@smithy/hash-node": "^3.0.
|
|
43
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
44
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
45
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
46
|
-
"@smithy/middleware-retry": "^3.0.
|
|
47
|
-
"@smithy/middleware-serde": "^3.0.
|
|
48
|
-
"@smithy/middleware-stack": "^3.0.
|
|
49
|
-
"@smithy/node-config-provider": "^3.1.
|
|
50
|
-
"@smithy/node-http-handler": "^3.2.
|
|
51
|
-
"@smithy/protocol-http": "^4.1.
|
|
52
|
-
"@smithy/smithy-client": "^3.3.
|
|
53
|
-
"@smithy/types": "^3.4.
|
|
54
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.654.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.654.0",
|
|
25
|
+
"@aws-sdk/core": "3.654.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.654.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.654.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.654.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.654.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.654.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.654.0",
|
|
32
|
+
"@aws-sdk/types": "3.654.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.654.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.654.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.654.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.8",
|
|
37
|
+
"@smithy/core": "^2.4.3",
|
|
38
|
+
"@smithy/eventstream-serde-browser": "^3.0.9",
|
|
39
|
+
"@smithy/eventstream-serde-config-resolver": "^3.0.6",
|
|
40
|
+
"@smithy/eventstream-serde-node": "^3.0.8",
|
|
41
|
+
"@smithy/fetch-http-handler": "^3.2.7",
|
|
42
|
+
"@smithy/hash-node": "^3.0.6",
|
|
43
|
+
"@smithy/invalid-dependency": "^3.0.6",
|
|
44
|
+
"@smithy/middleware-content-length": "^3.0.8",
|
|
45
|
+
"@smithy/middleware-endpoint": "^3.1.3",
|
|
46
|
+
"@smithy/middleware-retry": "^3.0.18",
|
|
47
|
+
"@smithy/middleware-serde": "^3.0.6",
|
|
48
|
+
"@smithy/middleware-stack": "^3.0.6",
|
|
49
|
+
"@smithy/node-config-provider": "^3.1.7",
|
|
50
|
+
"@smithy/node-http-handler": "^3.2.2",
|
|
51
|
+
"@smithy/protocol-http": "^4.1.3",
|
|
52
|
+
"@smithy/smithy-client": "^3.3.2",
|
|
53
|
+
"@smithy/types": "^3.4.2",
|
|
54
|
+
"@smithy/url-parser": "^3.0.6",
|
|
55
55
|
"@smithy/util-base64": "^3.0.0",
|
|
56
56
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
57
57
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
58
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
59
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
60
|
-
"@smithy/util-endpoints": "^2.1.
|
|
61
|
-
"@smithy/util-middleware": "^3.0.
|
|
62
|
-
"@smithy/util-retry": "^3.0.
|
|
63
|
-
"@smithy/util-stream": "^3.1.
|
|
58
|
+
"@smithy/util-defaults-mode-browser": "^3.0.18",
|
|
59
|
+
"@smithy/util-defaults-mode-node": "^3.0.18",
|
|
60
|
+
"@smithy/util-endpoints": "^2.1.2",
|
|
61
|
+
"@smithy/util-middleware": "^3.0.6",
|
|
62
|
+
"@smithy/util-retry": "^3.0.6",
|
|
63
|
+
"@smithy/util-stream": "^3.1.6",
|
|
64
64
|
"@smithy/util-utf8": "^3.0.0",
|
|
65
65
|
"tslib": "^2.6.2"
|
|
66
66
|
},
|