@aws-sdk/client-rds-data 3.948.0 → 3.953.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/index.js +198 -150
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/BatchExecuteStatementCommand.js +2 -2
- package/dist-es/commands/BeginTransactionCommand.js +2 -2
- package/dist-es/commands/CommitTransactionCommand.js +2 -2
- package/dist-es/commands/ExecuteSqlCommand.js +2 -2
- package/dist-es/commands/ExecuteStatementCommand.js +2 -2
- package/dist-es/commands/RollbackTransactionCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +98 -98
- package/dist-types/RDSDataClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +49 -64
- package/dist-types/ts3.4/RDSDataClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +48 -64
- package/package.json +34 -34
|
@@ -29,13 +29,10 @@ import {
|
|
|
29
29
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
30
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
31
|
ChecksumConstructor as __ChecksumConstructor,
|
|
32
|
-
ClientProtocol,
|
|
33
32
|
Decoder as __Decoder,
|
|
34
33
|
Encoder as __Encoder,
|
|
35
34
|
HashConstructor as __HashConstructor,
|
|
36
35
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
-
HttpRequest,
|
|
38
|
-
HttpResponse,
|
|
39
36
|
Logger as __Logger,
|
|
40
37
|
Provider as __Provider,
|
|
41
38
|
StreamCollector as __StreamCollector,
|
|
@@ -117,7 +114,6 @@ export interface ClientDefaults
|
|
|
117
114
|
retryMode?: string | __Provider<string>;
|
|
118
115
|
logger?: __Logger;
|
|
119
116
|
extensions?: RuntimeExtension[];
|
|
120
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
121
117
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
122
118
|
}
|
|
123
119
|
export type RDSDataClientConfigType = Partial<
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { RDSDataExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
7
8
|
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
@@ -26,8 +26,16 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
26
26
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
27
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
28
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
|
-
apiVersion: string;
|
|
30
29
|
cacheMiddleware?: boolean | undefined;
|
|
30
|
+
protocol:
|
|
31
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
34
|
+
protocolSettings: {
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
};
|
|
38
|
+
apiVersion: string;
|
|
31
39
|
urlParser: import("@smithy/types").UrlParser;
|
|
32
40
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
41
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -38,10 +46,6 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
38
46
|
profile?: string;
|
|
39
47
|
logger: import("@smithy/types").Logger;
|
|
40
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
-
import("@smithy/types").HttpRequest,
|
|
43
|
-
import("@smithy/types").HttpResponse
|
|
44
|
-
>;
|
|
45
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
50
|
userAgentAppId?:
|
|
47
51
|
| string
|
|
@@ -26,8 +26,16 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
26
26
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
27
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
28
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
29
|
-
apiVersion: string;
|
|
30
29
|
cacheMiddleware?: boolean | undefined;
|
|
30
|
+
protocol:
|
|
31
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
34
|
+
protocolSettings: {
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
};
|
|
38
|
+
apiVersion: string;
|
|
31
39
|
urlParser: import("@smithy/types").UrlParser;
|
|
32
40
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
41
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -38,10 +46,6 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
38
46
|
profile?: string;
|
|
39
47
|
logger: import("@smithy/types").Logger;
|
|
40
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
-
import("@smithy/types").HttpRequest,
|
|
43
|
-
import("@smithy/types").HttpResponse
|
|
44
|
-
>;
|
|
45
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
50
|
retryStrategy?:
|
|
47
51
|
| import("@smithy/types").RetryStrategy
|
|
@@ -8,8 +8,16 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
8
8
|
| Record<string, unknown>
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
-
apiVersion: string;
|
|
12
11
|
cacheMiddleware?: boolean;
|
|
12
|
+
protocol:
|
|
13
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
14
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
15
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
16
|
+
protocolSettings: {
|
|
17
|
+
defaultNamespace?: string;
|
|
18
|
+
[setting: string]: unknown;
|
|
19
|
+
};
|
|
20
|
+
apiVersion: string;
|
|
13
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
23
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -37,10 +45,6 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
37
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
46
|
logger: import("@smithy/types").Logger;
|
|
39
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
-
import("@smithy/types").HttpRequest,
|
|
42
|
-
import("@smithy/types").HttpResponse
|
|
43
|
-
>;
|
|
44
48
|
defaultsMode:
|
|
45
49
|
| import("@smithy/smithy-client").DefaultsMode
|
|
46
50
|
| import("@smithy/types").Provider<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import { RDSDataClientConfig } from "./RDSDataClient";
|
|
2
3
|
export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
3
4
|
apiVersion: string;
|
|
@@ -14,10 +15,14 @@ export declare const getRuntimeConfig: (config: RDSDataClientConfig) => {
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RDSDataHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol:
|
|
18
|
-
import("@smithy/types").
|
|
19
|
-
import("@smithy/types").
|
|
20
|
-
|
|
18
|
+
protocol:
|
|
19
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
20
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
21
|
+
| typeof AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
[setting: string]: unknown;
|
|
24
|
+
defaultNamespace?: string;
|
|
25
|
+
};
|
|
21
26
|
serviceId: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -1,69 +1,53 @@
|
|
|
1
1
|
import {
|
|
2
2
|
StaticErrorSchema,
|
|
3
|
-
StaticListSchema,
|
|
4
3
|
StaticOperationSchema,
|
|
5
4
|
StaticStructureSchema,
|
|
6
5
|
} from "@smithy/types";
|
|
7
|
-
export declare var AccessDeniedException
|
|
8
|
-
export declare var BadRequestException
|
|
9
|
-
export declare var BatchExecuteStatementRequest
|
|
10
|
-
export declare var BatchExecuteStatementResponse
|
|
11
|
-
export declare var BeginTransactionRequest
|
|
12
|
-
export declare var BeginTransactionResponse
|
|
13
|
-
export declare var ColumnMetadata
|
|
14
|
-
export declare var CommitTransactionRequest
|
|
15
|
-
export declare var CommitTransactionResponse
|
|
16
|
-
export declare var DatabaseErrorException
|
|
17
|
-
export declare var DatabaseNotFoundException
|
|
18
|
-
export declare var DatabaseResumingException
|
|
19
|
-
export declare var DatabaseUnavailableException
|
|
20
|
-
export declare var ExecuteSqlRequest
|
|
21
|
-
export declare var ExecuteSqlResponse
|
|
22
|
-
export declare var ExecuteStatementRequest
|
|
23
|
-
export declare var ExecuteStatementResponse
|
|
24
|
-
export declare var ForbiddenException
|
|
25
|
-
export declare var HttpEndpointNotEnabledException
|
|
26
|
-
export declare var InternalServerErrorException
|
|
27
|
-
export declare var InvalidResourceStateException
|
|
28
|
-
export declare var InvalidSecretException
|
|
29
|
-
export declare var NotFoundException
|
|
30
|
-
export declare var _Record
|
|
31
|
-
export declare var ResultFrame
|
|
32
|
-
export declare var ResultSetMetadata
|
|
33
|
-
export declare var ResultSetOptions
|
|
34
|
-
export declare var RollbackTransactionRequest
|
|
35
|
-
export declare var RollbackTransactionResponse
|
|
36
|
-
export declare var SecretsErrorException
|
|
37
|
-
export declare var ServiceUnavailableError
|
|
38
|
-
export declare var SqlParameter
|
|
39
|
-
export declare var SqlStatementResult
|
|
40
|
-
export declare var StatementTimeoutException
|
|
41
|
-
export declare var StructValue
|
|
42
|
-
export declare var TransactionNotFoundException
|
|
43
|
-
export declare var UnsupportedResultException
|
|
44
|
-
export declare var UpdateResult
|
|
45
|
-
export declare var RDSDataServiceException
|
|
46
|
-
export declare var
|
|
47
|
-
export declare var
|
|
48
|
-
export declare var
|
|
49
|
-
export declare var
|
|
50
|
-
export declare var
|
|
51
|
-
export declare var
|
|
52
|
-
export declare var
|
|
53
|
-
export declare var
|
|
54
|
-
export declare var
|
|
55
|
-
export declare var SqlParameterSets: StaticListSchema;
|
|
56
|
-
export declare var SqlParametersList: StaticListSchema;
|
|
57
|
-
export declare var SqlRecords: StaticListSchema;
|
|
58
|
-
export declare var SqlStatementResults: StaticListSchema;
|
|
59
|
-
export declare var StringArray: number;
|
|
60
|
-
export declare var UpdateResults: StaticListSchema;
|
|
61
|
-
export declare var ArrayValue: StaticStructureSchema;
|
|
62
|
-
export declare var Field: StaticStructureSchema;
|
|
63
|
-
export declare var Value: StaticStructureSchema;
|
|
64
|
-
export declare var BatchExecuteStatement: StaticOperationSchema;
|
|
65
|
-
export declare var BeginTransaction: StaticOperationSchema;
|
|
66
|
-
export declare var CommitTransaction: StaticOperationSchema;
|
|
67
|
-
export declare var ExecuteSql: StaticOperationSchema;
|
|
68
|
-
export declare var ExecuteStatement: StaticOperationSchema;
|
|
69
|
-
export declare var RollbackTransaction: StaticOperationSchema;
|
|
6
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
7
|
+
export declare var BadRequestException$: StaticErrorSchema;
|
|
8
|
+
export declare var BatchExecuteStatementRequest$: StaticStructureSchema;
|
|
9
|
+
export declare var BatchExecuteStatementResponse$: StaticStructureSchema;
|
|
10
|
+
export declare var BeginTransactionRequest$: StaticStructureSchema;
|
|
11
|
+
export declare var BeginTransactionResponse$: StaticStructureSchema;
|
|
12
|
+
export declare var ColumnMetadata$: StaticStructureSchema;
|
|
13
|
+
export declare var CommitTransactionRequest$: StaticStructureSchema;
|
|
14
|
+
export declare var CommitTransactionResponse$: StaticStructureSchema;
|
|
15
|
+
export declare var DatabaseErrorException$: StaticErrorSchema;
|
|
16
|
+
export declare var DatabaseNotFoundException$: StaticErrorSchema;
|
|
17
|
+
export declare var DatabaseResumingException$: StaticErrorSchema;
|
|
18
|
+
export declare var DatabaseUnavailableException$: StaticErrorSchema;
|
|
19
|
+
export declare var ExecuteSqlRequest$: StaticStructureSchema;
|
|
20
|
+
export declare var ExecuteSqlResponse$: StaticStructureSchema;
|
|
21
|
+
export declare var ExecuteStatementRequest$: StaticStructureSchema;
|
|
22
|
+
export declare var ExecuteStatementResponse$: StaticStructureSchema;
|
|
23
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
24
|
+
export declare var HttpEndpointNotEnabledException$: StaticErrorSchema;
|
|
25
|
+
export declare var InternalServerErrorException$: StaticErrorSchema;
|
|
26
|
+
export declare var InvalidResourceStateException$: StaticErrorSchema;
|
|
27
|
+
export declare var InvalidSecretException$: StaticErrorSchema;
|
|
28
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
29
|
+
export declare var _Record$: StaticStructureSchema;
|
|
30
|
+
export declare var ResultFrame$: StaticStructureSchema;
|
|
31
|
+
export declare var ResultSetMetadata$: StaticStructureSchema;
|
|
32
|
+
export declare var ResultSetOptions$: StaticStructureSchema;
|
|
33
|
+
export declare var RollbackTransactionRequest$: StaticStructureSchema;
|
|
34
|
+
export declare var RollbackTransactionResponse$: StaticStructureSchema;
|
|
35
|
+
export declare var SecretsErrorException$: StaticErrorSchema;
|
|
36
|
+
export declare var ServiceUnavailableError$: StaticErrorSchema;
|
|
37
|
+
export declare var SqlParameter$: StaticStructureSchema;
|
|
38
|
+
export declare var SqlStatementResult$: StaticStructureSchema;
|
|
39
|
+
export declare var StatementTimeoutException$: StaticErrorSchema;
|
|
40
|
+
export declare var StructValue$: StaticStructureSchema;
|
|
41
|
+
export declare var TransactionNotFoundException$: StaticErrorSchema;
|
|
42
|
+
export declare var UnsupportedResultException$: StaticErrorSchema;
|
|
43
|
+
export declare var UpdateResult$: StaticStructureSchema;
|
|
44
|
+
export declare var RDSDataServiceException$: StaticErrorSchema;
|
|
45
|
+
export declare var ArrayValue$: StaticStructureSchema;
|
|
46
|
+
export declare var Field$: StaticStructureSchema;
|
|
47
|
+
export declare var Value$: StaticStructureSchema;
|
|
48
|
+
export declare var BatchExecuteStatement$: StaticOperationSchema;
|
|
49
|
+
export declare var BeginTransaction$: StaticOperationSchema;
|
|
50
|
+
export declare var CommitTransaction$: StaticOperationSchema;
|
|
51
|
+
export declare var ExecuteSql$: StaticOperationSchema;
|
|
52
|
+
export declare var ExecuteStatement$: StaticOperationSchema;
|
|
53
|
+
export declare var RollbackTransaction$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.953.0",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "concurrently 'yarn:build:
|
|
6
|
+
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-rds-data",
|
|
8
8
|
"build:es": "tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^4.4.
|
|
36
|
-
"@smithy/core": "^3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
38
|
-
"@smithy/hash-node": "^4.2.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
44
|
-
"@smithy/middleware-stack": "^4.2.
|
|
45
|
-
"@smithy/node-config-provider": "^4.3.
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
47
|
-
"@smithy/protocol-http": "^5.3.
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.2.
|
|
24
|
+
"@aws-sdk/core": "3.953.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.953.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.953.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.953.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.953.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.953.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.953.0",
|
|
31
|
+
"@aws-sdk/types": "3.953.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.953.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.953.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.953.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.4.4",
|
|
36
|
+
"@smithy/core": "^3.19.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.3.7",
|
|
38
|
+
"@smithy/hash-node": "^4.2.6",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.2.6",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.2.6",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.3.15",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.15",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.7",
|
|
44
|
+
"@smithy/middleware-stack": "^4.2.6",
|
|
45
|
+
"@smithy/node-config-provider": "^4.3.6",
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.6",
|
|
47
|
+
"@smithy/protocol-http": "^5.3.6",
|
|
48
|
+
"@smithy/smithy-client": "^4.10.0",
|
|
49
|
+
"@smithy/types": "^4.10.0",
|
|
50
|
+
"@smithy/url-parser": "^4.2.6",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
-
"@smithy/util-endpoints": "^3.2.
|
|
57
|
-
"@smithy/util-middleware": "^4.2.
|
|
58
|
-
"@smithy/util-retry": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.14",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.17",
|
|
56
|
+
"@smithy/util-endpoints": "^3.2.6",
|
|
57
|
+
"@smithy/util-middleware": "^4.2.6",
|
|
58
|
+
"@smithy/util-retry": "^4.2.6",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.0",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|