@aws-sdk/client-timestream-write 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/TimestreamWrite.js +5 -5
- package/dist-types/TimestreamWrite.d.ts +19 -19
- package/dist-types/TimestreamWriteClient.d.ts +22 -22
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/pagination/ListBatchLoadTasksPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDatabasesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTablesPaginator.d.ts +1 -1
- package/dist-types/ts3.4/TimestreamWriteClient.d.ts +3 -4
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/package.json +14 -14
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
2
|
import { CreateBatchLoadTaskCommand, } from "./commands/CreateBatchLoadTaskCommand";
|
|
3
3
|
import { CreateDatabaseCommand, } from "./commands/CreateDatabaseCommand";
|
|
4
|
-
import { CreateTableCommand } from "./commands/CreateTableCommand";
|
|
4
|
+
import { CreateTableCommand, } from "./commands/CreateTableCommand";
|
|
5
5
|
import { DeleteDatabaseCommand, } from "./commands/DeleteDatabaseCommand";
|
|
6
|
-
import { DeleteTableCommand } from "./commands/DeleteTableCommand";
|
|
6
|
+
import { DeleteTableCommand, } from "./commands/DeleteTableCommand";
|
|
7
7
|
import { DescribeBatchLoadTaskCommand, } from "./commands/DescribeBatchLoadTaskCommand";
|
|
8
8
|
import { DescribeDatabaseCommand, } from "./commands/DescribeDatabaseCommand";
|
|
9
9
|
import { DescribeEndpointsCommand, } from "./commands/DescribeEndpointsCommand";
|
|
10
10
|
import { DescribeTableCommand, } from "./commands/DescribeTableCommand";
|
|
11
11
|
import { ListBatchLoadTasksCommand, } from "./commands/ListBatchLoadTasksCommand";
|
|
12
12
|
import { ListDatabasesCommand, } from "./commands/ListDatabasesCommand";
|
|
13
|
-
import { ListTablesCommand } from "./commands/ListTablesCommand";
|
|
13
|
+
import { ListTablesCommand, } from "./commands/ListTablesCommand";
|
|
14
14
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
15
15
|
import { ResumeBatchLoadTaskCommand, } from "./commands/ResumeBatchLoadTaskCommand";
|
|
16
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
16
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
17
17
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
18
18
|
import { UpdateDatabaseCommand, } from "./commands/UpdateDatabaseCommand";
|
|
19
|
-
import { UpdateTableCommand } from "./commands/UpdateTableCommand";
|
|
19
|
+
import { UpdateTableCommand, } from "./commands/UpdateTableCommand";
|
|
20
20
|
import { WriteRecordsCommand, } from "./commands/WriteRecordsCommand";
|
|
21
21
|
import { paginateListBatchLoadTasks } from "./pagination/ListBatchLoadTasksPaginator";
|
|
22
22
|
import { paginateListDatabases } from "./pagination/ListDatabasesPaginator";
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
-
import { CreateBatchLoadTaskCommandInput, CreateBatchLoadTaskCommandOutput } from "./commands/CreateBatchLoadTaskCommand";
|
|
3
|
-
import { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "./commands/CreateDatabaseCommand";
|
|
4
|
-
import { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
|
|
5
|
-
import { DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput } from "./commands/DeleteDatabaseCommand";
|
|
6
|
-
import { DeleteTableCommandInput, DeleteTableCommandOutput } from "./commands/DeleteTableCommand";
|
|
7
|
-
import { DescribeBatchLoadTaskCommandInput, DescribeBatchLoadTaskCommandOutput } from "./commands/DescribeBatchLoadTaskCommand";
|
|
8
|
-
import { DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput } from "./commands/DescribeDatabaseCommand";
|
|
9
|
-
import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
|
|
10
|
-
import { DescribeTableCommandInput, DescribeTableCommandOutput } from "./commands/DescribeTableCommand";
|
|
11
|
-
import { ListBatchLoadTasksCommandInput, ListBatchLoadTasksCommandOutput } from "./commands/ListBatchLoadTasksCommand";
|
|
12
|
-
import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "./commands/ListDatabasesCommand";
|
|
13
|
-
import { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
|
|
14
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
15
|
-
import { ResumeBatchLoadTaskCommandInput, ResumeBatchLoadTaskCommandOutput } from "./commands/ResumeBatchLoadTaskCommand";
|
|
16
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
17
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
18
|
-
import { UpdateDatabaseCommandInput, UpdateDatabaseCommandOutput } from "./commands/UpdateDatabaseCommand";
|
|
19
|
-
import { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/UpdateTableCommand";
|
|
20
|
-
import { WriteRecordsCommandInput, WriteRecordsCommandOutput } from "./commands/WriteRecordsCommand";
|
|
2
|
+
import { type CreateBatchLoadTaskCommandInput, type CreateBatchLoadTaskCommandOutput } from "./commands/CreateBatchLoadTaskCommand";
|
|
3
|
+
import { type CreateDatabaseCommandInput, type CreateDatabaseCommandOutput } from "./commands/CreateDatabaseCommand";
|
|
4
|
+
import { type CreateTableCommandInput, type CreateTableCommandOutput } from "./commands/CreateTableCommand";
|
|
5
|
+
import { type DeleteDatabaseCommandInput, type DeleteDatabaseCommandOutput } from "./commands/DeleteDatabaseCommand";
|
|
6
|
+
import { type DeleteTableCommandInput, type DeleteTableCommandOutput } from "./commands/DeleteTableCommand";
|
|
7
|
+
import { type DescribeBatchLoadTaskCommandInput, type DescribeBatchLoadTaskCommandOutput } from "./commands/DescribeBatchLoadTaskCommand";
|
|
8
|
+
import { type DescribeDatabaseCommandInput, type DescribeDatabaseCommandOutput } from "./commands/DescribeDatabaseCommand";
|
|
9
|
+
import { type DescribeEndpointsCommandInput, type DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
|
|
10
|
+
import { type DescribeTableCommandInput, type DescribeTableCommandOutput } from "./commands/DescribeTableCommand";
|
|
11
|
+
import { type ListBatchLoadTasksCommandInput, type ListBatchLoadTasksCommandOutput } from "./commands/ListBatchLoadTasksCommand";
|
|
12
|
+
import { type ListDatabasesCommandInput, type ListDatabasesCommandOutput } from "./commands/ListDatabasesCommand";
|
|
13
|
+
import { type ListTablesCommandInput, type ListTablesCommandOutput } from "./commands/ListTablesCommand";
|
|
14
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
15
|
+
import { type ResumeBatchLoadTaskCommandInput, type ResumeBatchLoadTaskCommandOutput } from "./commands/ResumeBatchLoadTaskCommand";
|
|
16
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
17
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
18
|
+
import { type UpdateDatabaseCommandInput, type UpdateDatabaseCommandOutput } from "./commands/UpdateDatabaseCommand";
|
|
19
|
+
import { type UpdateTableCommandInput, type UpdateTableCommandOutput } from "./commands/UpdateTableCommand";
|
|
20
|
+
import { type WriteRecordsCommandInput, type WriteRecordsCommandOutput } from "./commands/WriteRecordsCommand";
|
|
21
21
|
import { TimestreamWriteClient } from "./TimestreamWriteClient";
|
|
22
22
|
export interface TimestreamWrite {
|
|
23
23
|
/**
|
|
@@ -6,28 +6,28 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
6
6
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
7
7
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
8
8
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
9
|
-
import {
|
|
9
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
10
10
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
11
|
-
import { CreateBatchLoadTaskCommandInput, CreateBatchLoadTaskCommandOutput } from "./commands/CreateBatchLoadTaskCommand";
|
|
12
|
-
import { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "./commands/CreateDatabaseCommand";
|
|
13
|
-
import { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
|
|
14
|
-
import { DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput } from "./commands/DeleteDatabaseCommand";
|
|
15
|
-
import { DeleteTableCommandInput, DeleteTableCommandOutput } from "./commands/DeleteTableCommand";
|
|
16
|
-
import { DescribeBatchLoadTaskCommandInput, DescribeBatchLoadTaskCommandOutput } from "./commands/DescribeBatchLoadTaskCommand";
|
|
17
|
-
import { DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput } from "./commands/DescribeDatabaseCommand";
|
|
18
|
-
import { DescribeEndpointsCommandInput, DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
|
|
19
|
-
import { DescribeTableCommandInput, DescribeTableCommandOutput } from "./commands/DescribeTableCommand";
|
|
20
|
-
import { ListBatchLoadTasksCommandInput, ListBatchLoadTasksCommandOutput } from "./commands/ListBatchLoadTasksCommand";
|
|
21
|
-
import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "./commands/ListDatabasesCommand";
|
|
22
|
-
import { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
|
|
23
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
|
-
import { ResumeBatchLoadTaskCommandInput, ResumeBatchLoadTaskCommandOutput } from "./commands/ResumeBatchLoadTaskCommand";
|
|
25
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
26
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
27
|
-
import { UpdateDatabaseCommandInput, UpdateDatabaseCommandOutput } from "./commands/UpdateDatabaseCommand";
|
|
28
|
-
import { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/UpdateTableCommand";
|
|
29
|
-
import { WriteRecordsCommandInput, WriteRecordsCommandOutput } from "./commands/WriteRecordsCommand";
|
|
30
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
11
|
+
import type { CreateBatchLoadTaskCommandInput, CreateBatchLoadTaskCommandOutput } from "./commands/CreateBatchLoadTaskCommand";
|
|
12
|
+
import type { CreateDatabaseCommandInput, CreateDatabaseCommandOutput } from "./commands/CreateDatabaseCommand";
|
|
13
|
+
import type { CreateTableCommandInput, CreateTableCommandOutput } from "./commands/CreateTableCommand";
|
|
14
|
+
import type { DeleteDatabaseCommandInput, DeleteDatabaseCommandOutput } from "./commands/DeleteDatabaseCommand";
|
|
15
|
+
import type { DeleteTableCommandInput, DeleteTableCommandOutput } from "./commands/DeleteTableCommand";
|
|
16
|
+
import type { DescribeBatchLoadTaskCommandInput, DescribeBatchLoadTaskCommandOutput } from "./commands/DescribeBatchLoadTaskCommand";
|
|
17
|
+
import type { DescribeDatabaseCommandInput, DescribeDatabaseCommandOutput } from "./commands/DescribeDatabaseCommand";
|
|
18
|
+
import { type DescribeEndpointsCommandInput, type DescribeEndpointsCommandOutput } from "./commands/DescribeEndpointsCommand";
|
|
19
|
+
import type { DescribeTableCommandInput, DescribeTableCommandOutput } from "./commands/DescribeTableCommand";
|
|
20
|
+
import type { ListBatchLoadTasksCommandInput, ListBatchLoadTasksCommandOutput } from "./commands/ListBatchLoadTasksCommand";
|
|
21
|
+
import type { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "./commands/ListDatabasesCommand";
|
|
22
|
+
import type { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
|
|
23
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
|
+
import type { ResumeBatchLoadTaskCommandInput, ResumeBatchLoadTaskCommandOutput } from "./commands/ResumeBatchLoadTaskCommand";
|
|
25
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
26
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
27
|
+
import type { UpdateDatabaseCommandInput, UpdateDatabaseCommandOutput } from "./commands/UpdateDatabaseCommand";
|
|
28
|
+
import type { UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/UpdateTableCommand";
|
|
29
|
+
import type { WriteRecordsCommandInput, WriteRecordsCommandOutput } from "./commands/WriteRecordsCommand";
|
|
30
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
31
31
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
32
32
|
export { __Client };
|
|
33
33
|
/**
|
|
@@ -136,7 +136,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
136
136
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
137
137
|
* @internal
|
|
138
138
|
*/
|
|
139
|
-
defaultUserAgentProvider?:
|
|
139
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
140
140
|
/**
|
|
141
141
|
* Default credentials provider; Not available in browser runtime.
|
|
142
142
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { TimestreamWriteHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
*/
|
|
18
18
|
export * from "./TimestreamWriteClient";
|
|
19
19
|
export * from "./TimestreamWrite";
|
|
20
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
20
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
21
21
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
22
22
|
export type { TimestreamWriteExtensionConfiguration } from "./extensionConfiguration";
|
|
23
23
|
export * from "./commands";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { RejectedRecord } from "./models_0";
|
|
2
|
+
import type { RejectedRecord } from "./models_0";
|
|
3
3
|
import { TimestreamWriteServiceException as __BaseException } from "./TimestreamWriteServiceException";
|
|
4
4
|
/**
|
|
5
5
|
* <p>You are not authorized to perform this action.</p>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BatchLoadDataFormat, BatchLoadStatus, DimensionValueType, MeasureValueType, PartitionKeyEnforcementLevel, PartitionKeyType, S3EncryptionOption, ScalarMeasureValueType, TableStatus, TimeUnit } from "./enums";
|
|
1
|
+
import type { BatchLoadDataFormat, BatchLoadStatus, DimensionValueType, MeasureValueType, PartitionKeyEnforcementLevel, PartitionKeyType, S3EncryptionOption, ScalarMeasureValueType, TableStatus, TimeUnit } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Details about the progress of a batch load task.</p>
|
|
4
4
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListBatchLoadTasksCommandInput, ListBatchLoadTasksCommandOutput } from "../commands/ListBatchLoadTasksCommand";
|
|
3
|
-
import { TimestreamWritePaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { TimestreamWritePaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListDatabasesCommandInput, ListDatabasesCommandOutput } from "../commands/ListDatabasesCommand";
|
|
3
|
-
import { TimestreamWritePaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { TimestreamWritePaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
|
|
3
|
-
import { TimestreamWritePaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { TimestreamWritePaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
Client as __Client,
|
|
31
31
|
} from "@smithy/smithy-client";
|
|
32
32
|
import {
|
|
33
|
+
AwsCredentialIdentityProvider,
|
|
33
34
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
35
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
35
36
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -38,11 +39,9 @@ import {
|
|
|
38
39
|
HashConstructor as __HashConstructor,
|
|
39
40
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
40
41
|
Logger as __Logger,
|
|
42
|
+
Provider as __Provider,
|
|
41
43
|
StreamCollector as __StreamCollector,
|
|
42
44
|
UrlParser as __UrlParser,
|
|
43
|
-
AwsCredentialIdentityProvider,
|
|
44
|
-
Provider,
|
|
45
|
-
Provider as __Provider,
|
|
46
45
|
UserAgent as __UserAgent,
|
|
47
46
|
} from "@smithy/types";
|
|
48
47
|
import {
|
|
@@ -190,7 +189,7 @@ export interface ClientDefaults
|
|
|
190
189
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
191
190
|
region?: string | __Provider<string>;
|
|
192
191
|
profile?: string;
|
|
193
|
-
defaultUserAgentProvider?:
|
|
192
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
194
193
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
195
194
|
maxAttempts?: number | __Provider<number>;
|
|
196
195
|
retryMode?: string | __Provider<string>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-write",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Write 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-timestream-write",
|
|
@@ -21,42 +21,42 @@
|
|
|
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.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.26",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.29",
|
|
26
26
|
"@aws-sdk/middleware-endpoint-discovery": "^3.972.9",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "^3.972.28",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
32
32
|
"@aws-sdk/types": "^3.973.6",
|
|
33
33
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "^3.973.14",
|
|
36
36
|
"@smithy/config-resolver": "^4.4.13",
|
|
37
|
-
"@smithy/core": "^3.23.
|
|
37
|
+
"@smithy/core": "^3.23.13",
|
|
38
38
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
39
39
|
"@smithy/hash-node": "^4.2.12",
|
|
40
40
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
41
41
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
42
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
43
|
-
"@smithy/middleware-retry": "^4.4.
|
|
44
|
-
"@smithy/middleware-serde": "^4.2.
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
43
|
+
"@smithy/middleware-retry": "^4.4.46",
|
|
44
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
45
45
|
"@smithy/middleware-stack": "^4.2.12",
|
|
46
46
|
"@smithy/node-config-provider": "^4.3.12",
|
|
47
|
-
"@smithy/node-http-handler": "^4.5.
|
|
47
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
48
48
|
"@smithy/protocol-http": "^5.3.12",
|
|
49
|
-
"@smithy/smithy-client": "^4.12.
|
|
49
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
50
50
|
"@smithy/types": "^4.13.1",
|
|
51
51
|
"@smithy/url-parser": "^4.2.12",
|
|
52
52
|
"@smithy/util-base64": "^4.3.2",
|
|
53
53
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
54
54
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
57
57
|
"@smithy/util-endpoints": "^3.3.3",
|
|
58
58
|
"@smithy/util-middleware": "^4.2.12",
|
|
59
|
-
"@smithy/util-retry": "^4.2.
|
|
59
|
+
"@smithy/util-retry": "^4.2.13",
|
|
60
60
|
"@smithy/util-utf8": "^4.2.2",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|