@aws-sdk/client-bedrock-agent-runtime 3.530.0 → 3.535.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.
@@ -21,9 +21,9 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
21
21
  apiVersion: string;
22
22
  urlParser: import("@smithy/types").UrlParser;
23
23
  base64Decoder: import("@smithy/types").Decoder;
24
- base64Encoder: import("@smithy/types").Encoder;
24
+ base64Encoder: (_input: string | Uint8Array) => string;
25
25
  utf8Decoder: import("@smithy/types").Decoder;
26
- utf8Encoder: import("@smithy/types").Encoder;
26
+ utf8Encoder: (input: string | Uint8Array) => string;
27
27
  disableHostPrefix: boolean;
28
28
  serviceId: string;
29
29
  logger: import("@smithy/types").Logger;
@@ -21,9 +21,9 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
21
21
  apiVersion: string;
22
22
  urlParser: import("@smithy/types").UrlParser;
23
23
  base64Decoder: import("@smithy/types").Decoder;
24
- base64Encoder: import("@smithy/types").Encoder;
24
+ base64Encoder: (_input: string | Uint8Array) => string;
25
25
  utf8Decoder: import("@smithy/types").Decoder;
26
- utf8Encoder: import("@smithy/types").Encoder;
26
+ utf8Encoder: (input: string | Uint8Array) => string;
27
27
  disableHostPrefix: boolean;
28
28
  serviceId: string;
29
29
  logger: import("@smithy/types").Logger;
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
11
11
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
12
  streamCollector: import("@smithy/types").StreamCollector;
13
13
  base64Decoder: import("@smithy/types").Decoder;
14
- base64Encoder: import("@smithy/types").Encoder;
14
+ base64Encoder: (_input: string | Uint8Array) => string;
15
15
  utf8Decoder: import("@smithy/types").Decoder;
16
- utf8Encoder: import("@smithy/types").Encoder;
16
+ utf8Encoder: (input: string | Uint8Array) => string;
17
17
  disableHostPrefix: boolean;
18
18
  serviceId: string;
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -5,7 +5,7 @@ import { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient";
5
5
  export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig) => {
6
6
  apiVersion: string;
7
7
  base64Decoder: import("@smithy/types").Decoder;
8
- base64Encoder: import("@smithy/types").Encoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
9
  disableHostPrefix: boolean;
10
10
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
11
  logger?: import("@smithy/types").Logger | undefined;
@@ -17,5 +17,5 @@ export declare const getRuntimeConfig: (config: BedrockAgentRuntimeClientConfig)
17
17
  serviceId: string;
18
18
  urlParser: import("@smithy/types").UrlParser;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  };
@@ -21,6 +21,15 @@ declare const InvokeAgentCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: InvokeAgentCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ InvokeAgentCommandInput,
28
+ InvokeAgentCommandOutput,
29
+ BedrockAgentRuntimeClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class InvokeAgentCommand extends InvokeAgentCommand_base {}
@@ -25,6 +25,15 @@ declare const RetrieveAndGenerateCommand_base: {
25
25
  ServiceInputTypes,
26
26
  ServiceOutputTypes
27
27
  >;
28
+ new (
29
+ __0_0: RetrieveAndGenerateCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ RetrieveAndGenerateCommandInput,
32
+ RetrieveAndGenerateCommandOutput,
33
+ BedrockAgentRuntimeClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
28
37
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
38
  };
30
39
  export declare class RetrieveAndGenerateCommand extends RetrieveAndGenerateCommand_base {}
@@ -21,6 +21,15 @@ declare const RetrieveCommand_base: {
21
21
  ServiceInputTypes,
22
22
  ServiceOutputTypes
23
23
  >;
24
+ new (
25
+ __0_0: RetrieveCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ RetrieveCommandInput,
28
+ RetrieveCommandOutput,
29
+ BedrockAgentRuntimeClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
24
33
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
34
  };
26
35
  export declare class RetrieveCommand extends RetrieveCommand_base {}
@@ -28,9 +28,9 @@ export declare const getRuntimeConfig: (
28
28
  apiVersion: string;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
- base64Encoder: import("@smithy/types").Encoder;
31
+ base64Encoder: (_input: string | Uint8Array) => string;
32
32
  utf8Decoder: import("@smithy/types").Decoder;
33
- utf8Encoder: import("@smithy/types").Encoder;
33
+ utf8Encoder: (input: string | Uint8Array) => string;
34
34
  disableHostPrefix: boolean;
35
35
  serviceId: string;
36
36
  logger: import("@smithy/types").Logger;
@@ -32,9 +32,9 @@ export declare const getRuntimeConfig: (
32
32
  apiVersion: string;
33
33
  urlParser: import("@smithy/types").UrlParser;
34
34
  base64Decoder: import("@smithy/types").Decoder;
35
- base64Encoder: import("@smithy/types").Encoder;
35
+ base64Encoder: (_input: string | Uint8Array) => string;
36
36
  utf8Decoder: import("@smithy/types").Decoder;
37
- utf8Encoder: import("@smithy/types").Encoder;
37
+ utf8Encoder: (input: string | Uint8Array) => string;
38
38
  disableHostPrefix: boolean;
39
39
  serviceId: string;
40
40
  logger: import("@smithy/types").Logger;
@@ -15,9 +15,9 @@ export declare const getRuntimeConfig: (
15
15
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
16
16
  streamCollector: import("@smithy/types").StreamCollector;
17
17
  base64Decoder: import("@smithy/types").Decoder;
18
- base64Encoder: import("@smithy/types").Encoder;
18
+ base64Encoder: (_input: string | Uint8Array) => string;
19
19
  utf8Decoder: import("@smithy/types").Decoder;
20
- utf8Encoder: import("@smithy/types").Encoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
21
  disableHostPrefix: boolean;
22
22
  serviceId: string;
23
23
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -4,7 +4,7 @@ export declare const getRuntimeConfig: (
4
4
  ) => {
5
5
  apiVersion: string;
6
6
  base64Decoder: import("@smithy/types").Decoder;
7
- base64Encoder: import("@smithy/types").Encoder;
7
+ base64Encoder: (_input: string | Uint8Array) => string;
8
8
  disableHostPrefix: boolean;
9
9
  endpointProvider: (
10
10
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
@@ -19,5 +19,5 @@ export declare const getRuntimeConfig: (
19
19
  serviceId: string;
20
20
  urlParser: import("@smithy/types").UrlParser;
21
21
  utf8Decoder: import("@smithy/types").Decoder;
22
- utf8Encoder: import("@smithy/types").Encoder;
22
+ utf8Encoder: (input: string | Uint8Array) => string;
23
23
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-bedrock-agent-runtime",
3
3
  "description": "AWS SDK for JavaScript Bedrock Agent Runtime Client for Node.js, Browser and React Native",
4
- "version": "3.530.0",
4
+ "version": "3.535.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-agent-runtime",
@@ -20,50 +20,50 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.529.1",
24
- "@aws-sdk/core": "3.529.1",
25
- "@aws-sdk/credential-provider-node": "3.529.1",
26
- "@aws-sdk/middleware-host-header": "3.523.0",
27
- "@aws-sdk/middleware-logger": "3.523.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.523.0",
29
- "@aws-sdk/middleware-user-agent": "3.525.0",
30
- "@aws-sdk/region-config-resolver": "3.525.0",
31
- "@aws-sdk/types": "3.523.0",
32
- "@aws-sdk/util-endpoints": "3.525.0",
33
- "@aws-sdk/util-user-agent-browser": "3.523.0",
34
- "@aws-sdk/util-user-agent-node": "3.525.0",
35
- "@smithy/config-resolver": "^2.1.4",
36
- "@smithy/core": "^1.3.5",
37
- "@smithy/eventstream-serde-browser": "^2.1.3",
38
- "@smithy/eventstream-serde-config-resolver": "^2.1.3",
39
- "@smithy/eventstream-serde-node": "^2.1.3",
40
- "@smithy/fetch-http-handler": "^2.4.3",
41
- "@smithy/hash-node": "^2.1.3",
42
- "@smithy/invalid-dependency": "^2.1.3",
43
- "@smithy/middleware-content-length": "^2.1.3",
44
- "@smithy/middleware-endpoint": "^2.4.4",
45
- "@smithy/middleware-retry": "^2.1.4",
46
- "@smithy/middleware-serde": "^2.1.3",
47
- "@smithy/middleware-stack": "^2.1.3",
48
- "@smithy/node-config-provider": "^2.2.4",
49
- "@smithy/node-http-handler": "^2.4.1",
50
- "@smithy/protocol-http": "^3.2.1",
51
- "@smithy/smithy-client": "^2.4.2",
52
- "@smithy/types": "^2.10.1",
53
- "@smithy/url-parser": "^2.1.3",
54
- "@smithy/util-base64": "^2.1.1",
55
- "@smithy/util-body-length-browser": "^2.1.1",
56
- "@smithy/util-body-length-node": "^2.2.1",
57
- "@smithy/util-defaults-mode-browser": "^2.1.4",
58
- "@smithy/util-defaults-mode-node": "^2.2.3",
59
- "@smithy/util-endpoints": "^1.1.4",
60
- "@smithy/util-middleware": "^2.1.3",
61
- "@smithy/util-retry": "^2.1.3",
62
- "@smithy/util-utf8": "^2.1.1",
63
- "tslib": "^2.5.0"
23
+ "@aws-sdk/client-sts": "3.535.0",
24
+ "@aws-sdk/core": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.535.0",
26
+ "@aws-sdk/middleware-host-header": "3.535.0",
27
+ "@aws-sdk/middleware-logger": "3.535.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.535.0",
30
+ "@aws-sdk/region-config-resolver": "3.535.0",
31
+ "@aws-sdk/types": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.535.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.535.0",
34
+ "@aws-sdk/util-user-agent-node": "3.535.0",
35
+ "@smithy/config-resolver": "^2.2.0",
36
+ "@smithy/core": "^1.4.0",
37
+ "@smithy/eventstream-serde-browser": "^2.2.0",
38
+ "@smithy/eventstream-serde-config-resolver": "^2.2.0",
39
+ "@smithy/eventstream-serde-node": "^2.2.0",
40
+ "@smithy/fetch-http-handler": "^2.5.0",
41
+ "@smithy/hash-node": "^2.2.0",
42
+ "@smithy/invalid-dependency": "^2.2.0",
43
+ "@smithy/middleware-content-length": "^2.2.0",
44
+ "@smithy/middleware-endpoint": "^2.5.0",
45
+ "@smithy/middleware-retry": "^2.2.0",
46
+ "@smithy/middleware-serde": "^2.3.0",
47
+ "@smithy/middleware-stack": "^2.2.0",
48
+ "@smithy/node-config-provider": "^2.3.0",
49
+ "@smithy/node-http-handler": "^2.5.0",
50
+ "@smithy/protocol-http": "^3.3.0",
51
+ "@smithy/smithy-client": "^2.5.0",
52
+ "@smithy/types": "^2.12.0",
53
+ "@smithy/url-parser": "^2.2.0",
54
+ "@smithy/util-base64": "^2.3.0",
55
+ "@smithy/util-body-length-browser": "^2.2.0",
56
+ "@smithy/util-body-length-node": "^2.3.0",
57
+ "@smithy/util-defaults-mode-browser": "^2.2.0",
58
+ "@smithy/util-defaults-mode-node": "^2.3.0",
59
+ "@smithy/util-endpoints": "^1.2.0",
60
+ "@smithy/util-middleware": "^2.2.0",
61
+ "@smithy/util-retry": "^2.2.0",
62
+ "@smithy/util-utf8": "^2.3.0",
63
+ "tslib": "^2.6.2"
64
64
  },
65
65
  "devDependencies": {
66
- "@smithy/service-client-documentation-generator": "^2.1.1",
66
+ "@smithy/service-client-documentation-generator": "^2.2.0",
67
67
  "@tsconfig/node14": "1.0.3",
68
68
  "@types/node": "^14.14.31",
69
69
  "concurrently": "7.0.0",