@aws-sdk/client-bedrock-runtime 3.1019.0 → 3.1021.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-es/BedrockRuntime.js +2 -2
- package/dist-types/BedrockRuntime.d.ts +10 -10
- package/dist-types/BedrockRuntimeClient.d.ts +13 -13
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/InvokeModelCommand.d.ts +1 -1
- package/dist-types/commands/InvokeModelWithResponseStreamCommand.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +3 -3
- package/dist-types/pagination/ListAsyncInvokesPaginator.d.ts +1 -1
- package/dist-types/ts3.4/BedrockRuntimeClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/commands/InvokeModelWithResponseStreamCommand.d.ts +1 -1
- package/package.json +17 -17
|
@@ -3,9 +3,9 @@ import { BedrockRuntimeClient } from "./BedrockRuntimeClient";
|
|
|
3
3
|
import { ApplyGuardrailCommand, } from "./commands/ApplyGuardrailCommand";
|
|
4
4
|
import { ConverseCommand } from "./commands/ConverseCommand";
|
|
5
5
|
import { ConverseStreamCommand, } from "./commands/ConverseStreamCommand";
|
|
6
|
-
import { CountTokensCommand } from "./commands/CountTokensCommand";
|
|
6
|
+
import { CountTokensCommand, } from "./commands/CountTokensCommand";
|
|
7
7
|
import { GetAsyncInvokeCommand, } from "./commands/GetAsyncInvokeCommand";
|
|
8
|
-
import { InvokeModelCommand } from "./commands/InvokeModelCommand";
|
|
8
|
+
import { InvokeModelCommand, } from "./commands/InvokeModelCommand";
|
|
9
9
|
import { InvokeModelWithBidirectionalStreamCommand, } from "./commands/InvokeModelWithBidirectionalStreamCommand";
|
|
10
10
|
import { InvokeModelWithResponseStreamCommand, } from "./commands/InvokeModelWithResponseStreamCommand";
|
|
11
11
|
import { ListAsyncInvokesCommand, } from "./commands/ListAsyncInvokesCommand";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { BedrockRuntimeClient } from "./BedrockRuntimeClient";
|
|
3
|
-
import { ApplyGuardrailCommandInput, ApplyGuardrailCommandOutput } from "./commands/ApplyGuardrailCommand";
|
|
4
|
-
import { ConverseCommandInput, ConverseCommandOutput } from "./commands/ConverseCommand";
|
|
5
|
-
import { ConverseStreamCommandInput, ConverseStreamCommandOutput } from "./commands/ConverseStreamCommand";
|
|
6
|
-
import { CountTokensCommandInput, CountTokensCommandOutput } from "./commands/CountTokensCommand";
|
|
7
|
-
import { GetAsyncInvokeCommandInput, GetAsyncInvokeCommandOutput } from "./commands/GetAsyncInvokeCommand";
|
|
8
|
-
import { InvokeModelCommandInput, InvokeModelCommandOutput } from "./commands/InvokeModelCommand";
|
|
9
|
-
import { InvokeModelWithBidirectionalStreamCommandInput, InvokeModelWithBidirectionalStreamCommandOutput } from "./commands/InvokeModelWithBidirectionalStreamCommand";
|
|
10
|
-
import { InvokeModelWithResponseStreamCommandInput, InvokeModelWithResponseStreamCommandOutput } from "./commands/InvokeModelWithResponseStreamCommand";
|
|
11
|
-
import { ListAsyncInvokesCommandInput, ListAsyncInvokesCommandOutput } from "./commands/ListAsyncInvokesCommand";
|
|
12
|
-
import { StartAsyncInvokeCommandInput, StartAsyncInvokeCommandOutput } from "./commands/StartAsyncInvokeCommand";
|
|
3
|
+
import { type ApplyGuardrailCommandInput, type ApplyGuardrailCommandOutput } from "./commands/ApplyGuardrailCommand";
|
|
4
|
+
import { type ConverseCommandInput, type ConverseCommandOutput } from "./commands/ConverseCommand";
|
|
5
|
+
import { type ConverseStreamCommandInput, type ConverseStreamCommandOutput } from "./commands/ConverseStreamCommand";
|
|
6
|
+
import { type CountTokensCommandInput, type CountTokensCommandOutput } from "./commands/CountTokensCommand";
|
|
7
|
+
import { type GetAsyncInvokeCommandInput, type GetAsyncInvokeCommandOutput } from "./commands/GetAsyncInvokeCommand";
|
|
8
|
+
import { type InvokeModelCommandInput, type InvokeModelCommandOutput } from "./commands/InvokeModelCommand";
|
|
9
|
+
import { type InvokeModelWithBidirectionalStreamCommandInput, type InvokeModelWithBidirectionalStreamCommandOutput } from "./commands/InvokeModelWithBidirectionalStreamCommand";
|
|
10
|
+
import { type InvokeModelWithResponseStreamCommandInput, type InvokeModelWithResponseStreamCommandOutput } from "./commands/InvokeModelWithResponseStreamCommand";
|
|
11
|
+
import { type ListAsyncInvokesCommandInput, type ListAsyncInvokesCommandOutput } from "./commands/ListAsyncInvokesCommand";
|
|
12
|
+
import { type StartAsyncInvokeCommandInput, type StartAsyncInvokeCommandOutput } from "./commands/StartAsyncInvokeCommand";
|
|
13
13
|
export interface BedrockRuntime {
|
|
14
14
|
/**
|
|
15
15
|
* @see {@link ApplyGuardrailCommand}
|
|
@@ -9,19 +9,19 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
9
9
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
10
10
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
11
11
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
12
|
-
import {
|
|
12
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
13
13
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
14
|
-
import { ApplyGuardrailCommandInput, ApplyGuardrailCommandOutput } from "./commands/ApplyGuardrailCommand";
|
|
15
|
-
import { ConverseCommandInput, ConverseCommandOutput } from "./commands/ConverseCommand";
|
|
16
|
-
import { ConverseStreamCommandInput, ConverseStreamCommandOutput } from "./commands/ConverseStreamCommand";
|
|
17
|
-
import { CountTokensCommandInput, CountTokensCommandOutput } from "./commands/CountTokensCommand";
|
|
18
|
-
import { GetAsyncInvokeCommandInput, GetAsyncInvokeCommandOutput } from "./commands/GetAsyncInvokeCommand";
|
|
19
|
-
import { InvokeModelCommandInput, InvokeModelCommandOutput } from "./commands/InvokeModelCommand";
|
|
20
|
-
import { InvokeModelWithBidirectionalStreamCommandInput, InvokeModelWithBidirectionalStreamCommandOutput } from "./commands/InvokeModelWithBidirectionalStreamCommand";
|
|
21
|
-
import { InvokeModelWithResponseStreamCommandInput, InvokeModelWithResponseStreamCommandOutput } from "./commands/InvokeModelWithResponseStreamCommand";
|
|
22
|
-
import { ListAsyncInvokesCommandInput, ListAsyncInvokesCommandOutput } from "./commands/ListAsyncInvokesCommand";
|
|
23
|
-
import { StartAsyncInvokeCommandInput, StartAsyncInvokeCommandOutput } from "./commands/StartAsyncInvokeCommand";
|
|
24
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
14
|
+
import type { ApplyGuardrailCommandInput, ApplyGuardrailCommandOutput } from "./commands/ApplyGuardrailCommand";
|
|
15
|
+
import type { ConverseCommandInput, ConverseCommandOutput } from "./commands/ConverseCommand";
|
|
16
|
+
import type { ConverseStreamCommandInput, ConverseStreamCommandOutput } from "./commands/ConverseStreamCommand";
|
|
17
|
+
import type { CountTokensCommandInput, CountTokensCommandOutput } from "./commands/CountTokensCommand";
|
|
18
|
+
import type { GetAsyncInvokeCommandInput, GetAsyncInvokeCommandOutput } from "./commands/GetAsyncInvokeCommand";
|
|
19
|
+
import type { InvokeModelCommandInput, InvokeModelCommandOutput } from "./commands/InvokeModelCommand";
|
|
20
|
+
import type { InvokeModelWithBidirectionalStreamCommandInput, InvokeModelWithBidirectionalStreamCommandOutput } from "./commands/InvokeModelWithBidirectionalStreamCommand";
|
|
21
|
+
import type { InvokeModelWithResponseStreamCommandInput, InvokeModelWithResponseStreamCommandOutput } from "./commands/InvokeModelWithResponseStreamCommand";
|
|
22
|
+
import type { ListAsyncInvokesCommandInput, ListAsyncInvokesCommandOutput } from "./commands/ListAsyncInvokesCommand";
|
|
23
|
+
import type { StartAsyncInvokeCommandInput, StartAsyncInvokeCommandOutput } from "./commands/StartAsyncInvokeCommand";
|
|
24
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
25
25
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
26
26
|
export { __Client };
|
|
27
27
|
/**
|
|
@@ -130,7 +130,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
130
130
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
131
131
|
* @internal
|
|
132
132
|
*/
|
|
133
|
-
defaultUserAgentProvider?:
|
|
133
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
134
134
|
/**
|
|
135
135
|
* Default credentials provider; Not available in browser runtime.
|
|
136
136
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type
|
|
1
|
+
import { type AwsCredentialIdentity, type AwsCredentialIdentityProvider, type HttpAuthScheme, TokenIdentity, TokenIdentityProvider } from "@smithy/types";
|
|
2
2
|
import type { BedrockRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
|
-
import { type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider,
|
|
2
|
+
import { type HandlerExecutionContext, type HttpAuthScheme, type HttpAuthSchemeParameters, type HttpAuthSchemeParametersProvider, type HttpAuthSchemeProvider, type Provider, TokenIdentity, TokenIdentityProvider } from "@smithy/types";
|
|
3
3
|
import { type BedrockRuntimeClientResolvedConfig } from "../BedrockRuntimeClient";
|
|
4
4
|
/**
|
|
5
5
|
* @internal
|
|
@@ -2,7 +2,7 @@ import { Command as $Command } from "@smithy/smithy-client";
|
|
|
2
2
|
import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
|
|
4
4
|
import type { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient";
|
|
5
|
-
import { InvokeModelRequest, InvokeModelResponse } from "../models/models_0";
|
|
5
|
+
import type { InvokeModelRequest, InvokeModelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
8
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient";
|
|
4
|
-
import {
|
|
4
|
+
import type { InvokeModelWithResponseStreamRequest, InvokeModelWithResponseStreamResponse } from "../models/models_0";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
package/dist-types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export * from "./BedrockRuntimeClient";
|
|
7
7
|
export * from "./BedrockRuntime";
|
|
8
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
8
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { BedrockRuntimeExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
-
import { AsyncInvokeStatus, AudioFormat, CachePointType, CacheTTL, ConversationRole, DocumentFormat, GuardrailAction, GuardrailAutomatedReasoningLogicWarningType, GuardrailContentFilterConfidence, GuardrailContentFilterStrength, GuardrailContentFilterType, GuardrailContentPolicyAction, GuardrailContentQualifier, GuardrailContentSource, GuardrailContextualGroundingFilterType, GuardrailContextualGroundingPolicyAction, GuardrailConverseContentQualifier, GuardrailConverseImageFormat, GuardrailImageFormat, GuardrailManagedWordType, GuardrailOrigin, GuardrailOutputScope, GuardrailOwnership, GuardrailPiiEntityType, GuardrailSensitiveInformationPolicyAction, GuardrailStreamProcessingMode, GuardrailTopicPolicyAction, GuardrailTopicType, GuardrailTrace, GuardrailWordPolicyAction, ImageFormat, OutputFormatType, PerformanceConfigLatency, ServiceTierType, SortAsyncInvocationBy, SortOrder, StopReason, ToolResultStatus, ToolUseType, Trace, VideoFormat } from "./enums";
|
|
3
|
-
import { InternalServerException, ModelStreamErrorException, ModelTimeoutException, ServiceUnavailableException, ThrottlingException, ValidationException } from "./errors";
|
|
1
|
+
import type { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
+
import type { AsyncInvokeStatus, AudioFormat, CachePointType, CacheTTL, ConversationRole, DocumentFormat, GuardrailAction, GuardrailAutomatedReasoningLogicWarningType, GuardrailContentFilterConfidence, GuardrailContentFilterStrength, GuardrailContentFilterType, GuardrailContentPolicyAction, GuardrailContentQualifier, GuardrailContentSource, GuardrailContextualGroundingFilterType, GuardrailContextualGroundingPolicyAction, GuardrailConverseContentQualifier, GuardrailConverseImageFormat, GuardrailImageFormat, GuardrailManagedWordType, GuardrailOrigin, GuardrailOutputScope, GuardrailOwnership, GuardrailPiiEntityType, GuardrailSensitiveInformationPolicyAction, GuardrailStreamProcessingMode, GuardrailTopicPolicyAction, GuardrailTopicType, GuardrailTrace, GuardrailWordPolicyAction, ImageFormat, OutputFormatType, PerformanceConfigLatency, ServiceTierType, SortAsyncInvocationBy, SortOrder, StopReason, ToolResultStatus, ToolUseType, Trace, VideoFormat } from "./enums";
|
|
3
|
+
import type { InternalServerException, ModelStreamErrorException, ModelTimeoutException, ServiceUnavailableException, ThrottlingException, ValidationException } from "./errors";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAsyncInvokesCommandInput, ListAsyncInvokesCommandOutput } from "../commands/ListAsyncInvokesCommand";
|
|
3
|
-
import { BedrockRuntimePaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { BedrockRuntimePaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -39,6 +39,7 @@ import {
|
|
|
39
39
|
Client as __Client,
|
|
40
40
|
} from "@smithy/smithy-client";
|
|
41
41
|
import {
|
|
42
|
+
AwsCredentialIdentityProvider,
|
|
42
43
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
43
44
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
44
45
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -51,8 +52,6 @@ import {
|
|
|
51
52
|
Provider as __Provider,
|
|
52
53
|
StreamCollector as __StreamCollector,
|
|
53
54
|
UrlParser as __UrlParser,
|
|
54
|
-
AwsCredentialIdentityProvider,
|
|
55
|
-
Provider,
|
|
56
55
|
UserAgent as __UserAgent,
|
|
57
56
|
} from "@smithy/types";
|
|
58
57
|
import {
|
|
@@ -146,7 +145,7 @@ export interface ClientDefaults
|
|
|
146
145
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
147
146
|
region?: string | __Provider<string>;
|
|
148
147
|
profile?: string;
|
|
149
|
-
defaultUserAgentProvider?:
|
|
148
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
150
149
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
151
150
|
maxAttempts?: number | __Provider<number>;
|
|
152
151
|
retryMode?: string | __Provider<string>;
|
|
@@ -4,12 +4,12 @@ import {
|
|
|
4
4
|
AwsSdkSigV4PreviouslyResolved,
|
|
5
5
|
} from "@aws-sdk/core/httpAuthSchemes";
|
|
6
6
|
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
7
8
|
HttpAuthScheme,
|
|
8
9
|
HttpAuthSchemeParameters,
|
|
9
10
|
HttpAuthSchemeParametersProvider,
|
|
10
11
|
HttpAuthSchemeProvider,
|
|
11
12
|
Provider,
|
|
12
|
-
HandlerExecutionContext,
|
|
13
13
|
TokenIdentity,
|
|
14
14
|
TokenIdentityProvider,
|
|
15
15
|
} from "@smithy/types";
|
|
@@ -9,8 +9,8 @@ import {
|
|
|
9
9
|
ServiceOutputTypes,
|
|
10
10
|
} from "../BedrockRuntimeClient";
|
|
11
11
|
import {
|
|
12
|
-
InvokeModelWithResponseStreamResponse,
|
|
13
12
|
InvokeModelWithResponseStreamRequest,
|
|
13
|
+
InvokeModelWithResponseStreamResponse,
|
|
14
14
|
} from "../models/models_0";
|
|
15
15
|
export { __MetadataBearer };
|
|
16
16
|
export { $Command };
|
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.1021.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-runtime",
|
|
@@ -29,23 +29,23 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
31
31
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
32
|
-
"@aws-sdk/core": "^3.973.
|
|
33
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
32
|
+
"@aws-sdk/core": "^3.973.26",
|
|
33
|
+
"@aws-sdk/credential-provider-node": "^3.972.29",
|
|
34
34
|
"@aws-sdk/eventstream-handler-node": "^3.972.12",
|
|
35
35
|
"@aws-sdk/middleware-eventstream": "^3.972.8",
|
|
36
36
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
37
37
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
38
38
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "^3.972.28",
|
|
40
40
|
"@aws-sdk/middleware-websocket": "^3.972.14",
|
|
41
41
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
42
|
-
"@aws-sdk/token-providers": "3.
|
|
42
|
+
"@aws-sdk/token-providers": "3.1021.0",
|
|
43
43
|
"@aws-sdk/types": "^3.973.6",
|
|
44
44
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
45
45
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
46
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
46
|
+
"@aws-sdk/util-user-agent-node": "^3.973.14",
|
|
47
47
|
"@smithy/config-resolver": "^4.4.13",
|
|
48
|
-
"@smithy/core": "^3.23.
|
|
48
|
+
"@smithy/core": "^3.23.13",
|
|
49
49
|
"@smithy/eventstream-serde-browser": "^4.2.12",
|
|
50
50
|
"@smithy/eventstream-serde-config-resolver": "^4.3.12",
|
|
51
51
|
"@smithy/eventstream-serde-node": "^4.2.12",
|
|
@@ -53,30 +53,30 @@
|
|
|
53
53
|
"@smithy/hash-node": "^4.2.12",
|
|
54
54
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
55
55
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
56
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
57
|
-
"@smithy/middleware-retry": "^4.4.
|
|
58
|
-
"@smithy/middleware-serde": "^4.2.
|
|
56
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
57
|
+
"@smithy/middleware-retry": "^4.4.46",
|
|
58
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
59
59
|
"@smithy/middleware-stack": "^4.2.12",
|
|
60
60
|
"@smithy/node-config-provider": "^4.3.12",
|
|
61
|
-
"@smithy/node-http-handler": "^4.5.
|
|
61
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
62
62
|
"@smithy/protocol-http": "^5.3.12",
|
|
63
|
-
"@smithy/smithy-client": "^4.12.
|
|
63
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
64
64
|
"@smithy/types": "^4.13.1",
|
|
65
65
|
"@smithy/url-parser": "^4.2.12",
|
|
66
66
|
"@smithy/util-base64": "^4.3.2",
|
|
67
67
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
68
68
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
69
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
70
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
69
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
70
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
71
71
|
"@smithy/util-endpoints": "^3.3.3",
|
|
72
72
|
"@smithy/util-middleware": "^4.2.12",
|
|
73
|
-
"@smithy/util-retry": "^4.2.
|
|
74
|
-
"@smithy/util-stream": "^4.5.
|
|
73
|
+
"@smithy/util-retry": "^4.2.13",
|
|
74
|
+
"@smithy/util-stream": "^4.5.21",
|
|
75
75
|
"@smithy/util-utf8": "^4.2.2",
|
|
76
76
|
"tslib": "^2.6.2"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
79
|
+
"@smithy/snapshot-testing": "^2.0.4",
|
|
80
80
|
"@tsconfig/node20": "20.1.8",
|
|
81
81
|
"@types/node": "^20.14.8",
|
|
82
82
|
"concurrently": "7.0.0",
|