@aws-sdk/client-s3vectors 3.1019.0 → 3.1020.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/S3Vectors.js +7 -7
- package/dist-types/S3Vectors.d.ts +19 -19
- package/dist-types/S3VectorsClient.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 +2 -2
- package/dist-types/pagination/ListIndexesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListVectorBucketsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListVectorsPaginator.d.ts +1 -1
- package/dist-types/ts3.4/S3VectorsClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/package.json +13 -13
package/dist-es/S3Vectors.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
|
-
import { CreateIndexCommand } from "./commands/CreateIndexCommand";
|
|
2
|
+
import { CreateIndexCommand, } from "./commands/CreateIndexCommand";
|
|
3
3
|
import { CreateVectorBucketCommand, } from "./commands/CreateVectorBucketCommand";
|
|
4
|
-
import { DeleteIndexCommand } from "./commands/DeleteIndexCommand";
|
|
4
|
+
import { DeleteIndexCommand, } from "./commands/DeleteIndexCommand";
|
|
5
5
|
import { DeleteVectorBucketCommand, } from "./commands/DeleteVectorBucketCommand";
|
|
6
6
|
import { DeleteVectorBucketPolicyCommand, } from "./commands/DeleteVectorBucketPolicyCommand";
|
|
7
7
|
import { DeleteVectorsCommand, } from "./commands/DeleteVectorsCommand";
|
|
8
8
|
import { GetIndexCommand } from "./commands/GetIndexCommand";
|
|
9
9
|
import { GetVectorBucketCommand, } from "./commands/GetVectorBucketCommand";
|
|
10
10
|
import { GetVectorBucketPolicyCommand, } from "./commands/GetVectorBucketPolicyCommand";
|
|
11
|
-
import { GetVectorsCommand } from "./commands/GetVectorsCommand";
|
|
12
|
-
import { ListIndexesCommand } from "./commands/ListIndexesCommand";
|
|
11
|
+
import { GetVectorsCommand, } from "./commands/GetVectorsCommand";
|
|
12
|
+
import { ListIndexesCommand, } from "./commands/ListIndexesCommand";
|
|
13
13
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
14
14
|
import { ListVectorBucketsCommand, } from "./commands/ListVectorBucketsCommand";
|
|
15
|
-
import { ListVectorsCommand } from "./commands/ListVectorsCommand";
|
|
15
|
+
import { ListVectorsCommand, } from "./commands/ListVectorsCommand";
|
|
16
16
|
import { PutVectorBucketPolicyCommand, } from "./commands/PutVectorBucketPolicyCommand";
|
|
17
|
-
import { PutVectorsCommand } from "./commands/PutVectorsCommand";
|
|
17
|
+
import { PutVectorsCommand, } from "./commands/PutVectorsCommand";
|
|
18
18
|
import { QueryVectorsCommand, } from "./commands/QueryVectorsCommand";
|
|
19
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
19
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
20
20
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
21
21
|
import { paginateListIndexes } from "./pagination/ListIndexesPaginator";
|
|
22
22
|
import { paginateListVectorBuckets } from "./pagination/ListVectorBucketsPaginator";
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
-
import { CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
|
|
3
|
-
import { CreateVectorBucketCommandInput, CreateVectorBucketCommandOutput } from "./commands/CreateVectorBucketCommand";
|
|
4
|
-
import { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "./commands/DeleteIndexCommand";
|
|
5
|
-
import { DeleteVectorBucketCommandInput, DeleteVectorBucketCommandOutput } from "./commands/DeleteVectorBucketCommand";
|
|
6
|
-
import { DeleteVectorBucketPolicyCommandInput, DeleteVectorBucketPolicyCommandOutput } from "./commands/DeleteVectorBucketPolicyCommand";
|
|
7
|
-
import { DeleteVectorsCommandInput, DeleteVectorsCommandOutput } from "./commands/DeleteVectorsCommand";
|
|
8
|
-
import { GetIndexCommandInput, GetIndexCommandOutput } from "./commands/GetIndexCommand";
|
|
9
|
-
import { GetVectorBucketCommandInput, GetVectorBucketCommandOutput } from "./commands/GetVectorBucketCommand";
|
|
10
|
-
import { GetVectorBucketPolicyCommandInput, GetVectorBucketPolicyCommandOutput } from "./commands/GetVectorBucketPolicyCommand";
|
|
11
|
-
import { GetVectorsCommandInput, GetVectorsCommandOutput } from "./commands/GetVectorsCommand";
|
|
12
|
-
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "./commands/ListIndexesCommand";
|
|
13
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
14
|
-
import { ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput } from "./commands/ListVectorBucketsCommand";
|
|
15
|
-
import { ListVectorsCommandInput, ListVectorsCommandOutput } from "./commands/ListVectorsCommand";
|
|
16
|
-
import { PutVectorBucketPolicyCommandInput, PutVectorBucketPolicyCommandOutput } from "./commands/PutVectorBucketPolicyCommand";
|
|
17
|
-
import { PutVectorsCommandInput, PutVectorsCommandOutput } from "./commands/PutVectorsCommand";
|
|
18
|
-
import { QueryVectorsCommandInput, QueryVectorsCommandOutput } from "./commands/QueryVectorsCommand";
|
|
19
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
20
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
2
|
+
import { type CreateIndexCommandInput, type CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
|
|
3
|
+
import { type CreateVectorBucketCommandInput, type CreateVectorBucketCommandOutput } from "./commands/CreateVectorBucketCommand";
|
|
4
|
+
import { type DeleteIndexCommandInput, type DeleteIndexCommandOutput } from "./commands/DeleteIndexCommand";
|
|
5
|
+
import { type DeleteVectorBucketCommandInput, type DeleteVectorBucketCommandOutput } from "./commands/DeleteVectorBucketCommand";
|
|
6
|
+
import { type DeleteVectorBucketPolicyCommandInput, type DeleteVectorBucketPolicyCommandOutput } from "./commands/DeleteVectorBucketPolicyCommand";
|
|
7
|
+
import { type DeleteVectorsCommandInput, type DeleteVectorsCommandOutput } from "./commands/DeleteVectorsCommand";
|
|
8
|
+
import { type GetIndexCommandInput, type GetIndexCommandOutput } from "./commands/GetIndexCommand";
|
|
9
|
+
import { type GetVectorBucketCommandInput, type GetVectorBucketCommandOutput } from "./commands/GetVectorBucketCommand";
|
|
10
|
+
import { type GetVectorBucketPolicyCommandInput, type GetVectorBucketPolicyCommandOutput } from "./commands/GetVectorBucketPolicyCommand";
|
|
11
|
+
import { type GetVectorsCommandInput, type GetVectorsCommandOutput } from "./commands/GetVectorsCommand";
|
|
12
|
+
import { type ListIndexesCommandInput, type ListIndexesCommandOutput } from "./commands/ListIndexesCommand";
|
|
13
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
14
|
+
import { type ListVectorBucketsCommandInput, type ListVectorBucketsCommandOutput } from "./commands/ListVectorBucketsCommand";
|
|
15
|
+
import { type ListVectorsCommandInput, type ListVectorsCommandOutput } from "./commands/ListVectorsCommand";
|
|
16
|
+
import { type PutVectorBucketPolicyCommandInput, type PutVectorBucketPolicyCommandOutput } from "./commands/PutVectorBucketPolicyCommand";
|
|
17
|
+
import { type PutVectorsCommandInput, type PutVectorsCommandOutput } from "./commands/PutVectorsCommand";
|
|
18
|
+
import { type QueryVectorsCommandInput, type QueryVectorsCommandOutput } from "./commands/QueryVectorsCommand";
|
|
19
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
20
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
21
|
import { S3VectorsClient } from "./S3VectorsClient";
|
|
22
22
|
export interface S3Vectors {
|
|
23
23
|
/**
|
|
@@ -5,28 +5,28 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
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";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
|
|
11
|
-
import { CreateVectorBucketCommandInput, CreateVectorBucketCommandOutput } from "./commands/CreateVectorBucketCommand";
|
|
12
|
-
import { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "./commands/DeleteIndexCommand";
|
|
13
|
-
import { DeleteVectorBucketCommandInput, DeleteVectorBucketCommandOutput } from "./commands/DeleteVectorBucketCommand";
|
|
14
|
-
import { DeleteVectorBucketPolicyCommandInput, DeleteVectorBucketPolicyCommandOutput } from "./commands/DeleteVectorBucketPolicyCommand";
|
|
15
|
-
import { DeleteVectorsCommandInput, DeleteVectorsCommandOutput } from "./commands/DeleteVectorsCommand";
|
|
16
|
-
import { GetIndexCommandInput, GetIndexCommandOutput } from "./commands/GetIndexCommand";
|
|
17
|
-
import { GetVectorBucketCommandInput, GetVectorBucketCommandOutput } from "./commands/GetVectorBucketCommand";
|
|
18
|
-
import { GetVectorBucketPolicyCommandInput, GetVectorBucketPolicyCommandOutput } from "./commands/GetVectorBucketPolicyCommand";
|
|
19
|
-
import { GetVectorsCommandInput, GetVectorsCommandOutput } from "./commands/GetVectorsCommand";
|
|
20
|
-
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "./commands/ListIndexesCommand";
|
|
21
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
22
|
-
import { ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput } from "./commands/ListVectorBucketsCommand";
|
|
23
|
-
import { ListVectorsCommandInput, ListVectorsCommandOutput } from "./commands/ListVectorsCommand";
|
|
24
|
-
import { PutVectorBucketPolicyCommandInput, PutVectorBucketPolicyCommandOutput } from "./commands/PutVectorBucketPolicyCommand";
|
|
25
|
-
import { PutVectorsCommandInput, PutVectorsCommandOutput } from "./commands/PutVectorsCommand";
|
|
26
|
-
import { QueryVectorsCommandInput, QueryVectorsCommandOutput } from "./commands/QueryVectorsCommand";
|
|
27
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
28
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
29
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
|
|
11
|
+
import type { CreateVectorBucketCommandInput, CreateVectorBucketCommandOutput } from "./commands/CreateVectorBucketCommand";
|
|
12
|
+
import type { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "./commands/DeleteIndexCommand";
|
|
13
|
+
import type { DeleteVectorBucketCommandInput, DeleteVectorBucketCommandOutput } from "./commands/DeleteVectorBucketCommand";
|
|
14
|
+
import type { DeleteVectorBucketPolicyCommandInput, DeleteVectorBucketPolicyCommandOutput } from "./commands/DeleteVectorBucketPolicyCommand";
|
|
15
|
+
import type { DeleteVectorsCommandInput, DeleteVectorsCommandOutput } from "./commands/DeleteVectorsCommand";
|
|
16
|
+
import type { GetIndexCommandInput, GetIndexCommandOutput } from "./commands/GetIndexCommand";
|
|
17
|
+
import type { GetVectorBucketCommandInput, GetVectorBucketCommandOutput } from "./commands/GetVectorBucketCommand";
|
|
18
|
+
import type { GetVectorBucketPolicyCommandInput, GetVectorBucketPolicyCommandOutput } from "./commands/GetVectorBucketPolicyCommand";
|
|
19
|
+
import type { GetVectorsCommandInput, GetVectorsCommandOutput } from "./commands/GetVectorsCommand";
|
|
20
|
+
import type { ListIndexesCommandInput, ListIndexesCommandOutput } from "./commands/ListIndexesCommand";
|
|
21
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
22
|
+
import type { ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput } from "./commands/ListVectorBucketsCommand";
|
|
23
|
+
import type { ListVectorsCommandInput, ListVectorsCommandOutput } from "./commands/ListVectorsCommand";
|
|
24
|
+
import type { PutVectorBucketPolicyCommandInput, PutVectorBucketPolicyCommandOutput } from "./commands/PutVectorBucketPolicyCommand";
|
|
25
|
+
import type { PutVectorsCommandInput, PutVectorsCommandOutput } from "./commands/PutVectorsCommand";
|
|
26
|
+
import type { QueryVectorsCommandInput, QueryVectorsCommandOutput } from "./commands/QueryVectorsCommand";
|
|
27
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
28
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
29
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
30
30
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
31
31
|
export { __Client };
|
|
32
32
|
/**
|
|
@@ -135,7 +135,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
135
135
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
136
136
|
* @internal
|
|
137
137
|
*/
|
|
138
|
-
defaultUserAgentProvider?:
|
|
138
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
139
139
|
/**
|
|
140
140
|
* Default credentials provider; Not available in browser runtime.
|
|
141
141
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { S3VectorsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export * from "./S3VectorsClient";
|
|
7
7
|
export * from "./S3Vectors";
|
|
8
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
8
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { S3VectorsExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { ValidationExceptionField } from "./models_0";
|
|
2
|
+
import type { ValidationExceptionField } from "./models_0";
|
|
3
3
|
import { S3VectorsServiceException as __BaseException } from "./S3VectorsServiceException";
|
|
4
4
|
/**
|
|
5
5
|
* <p>Access denied.</p>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
-
import { DataType, DistanceMetric, SseType } from "./enums";
|
|
1
|
+
import type { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
+
import type { DataType, DistanceMetric, SseType } from "./enums";
|
|
3
3
|
/**
|
|
4
4
|
* <p>The encryption configuration for a vector bucket or index. By default, if you don't specify, all new vectors in Amazon S3 vector buckets use server-side encryption with Amazon S3 managed keys (SSE-S3), specifically <code>AES256</code>. You can optionally override bucket level encryption settings, and set a specific encryption configuration for a vector index at the time of index creation.</p>
|
|
5
5
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand";
|
|
3
|
-
import { S3VectorsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3VectorsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListVectorBucketsCommandInput, ListVectorBucketsCommandOutput } from "../commands/ListVectorBucketsCommand";
|
|
3
|
-
import { S3VectorsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3VectorsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListVectorsCommandInput, ListVectorsCommandOutput } from "../commands/ListVectorsCommand";
|
|
3
|
-
import { S3VectorsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { S3VectorsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
Client as __Client,
|
|
27
27
|
} from "@smithy/smithy-client";
|
|
28
28
|
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
29
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -37,8 +38,6 @@ import {
|
|
|
37
38
|
Provider as __Provider,
|
|
38
39
|
StreamCollector as __StreamCollector,
|
|
39
40
|
UrlParser as __UrlParser,
|
|
40
|
-
AwsCredentialIdentityProvider,
|
|
41
|
-
Provider,
|
|
42
41
|
UserAgent as __UserAgent,
|
|
43
42
|
} from "@smithy/types";
|
|
44
43
|
import {
|
|
@@ -186,7 +185,7 @@ export interface ClientDefaults
|
|
|
186
185
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
187
186
|
region?: string | __Provider<string>;
|
|
188
187
|
profile?: string;
|
|
189
|
-
defaultUserAgentProvider?:
|
|
188
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
190
189
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
191
190
|
maxAttempts?: number | __Provider<number>;
|
|
192
191
|
retryMode?: string | __Provider<string>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3vectors",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3vectors Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1020.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-s3vectors",
|
|
@@ -23,38 +23,38 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.973.26",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
33
33
|
"@aws-sdk/types": "^3.973.6",
|
|
34
34
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.13",
|
|
38
|
-
"@smithy/core": "^3.23.
|
|
38
|
+
"@smithy/core": "^3.23.13",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
40
40
|
"@smithy/hash-node": "^4.2.12",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
45
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
45
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.12",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.12",
|
|
48
|
-
"@smithy/node-http-handler": "^4.5.
|
|
48
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.12",
|
|
50
|
-
"@smithy/smithy-client": "^4.12.
|
|
50
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
51
51
|
"@smithy/types": "^4.13.1",
|
|
52
52
|
"@smithy/url-parser": "^4.2.12",
|
|
53
53
|
"@smithy/util-base64": "^4.3.2",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
58
58
|
"@smithy/util-endpoints": "^3.3.3",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.12",
|
|
60
60
|
"@smithy/util-retry": "^4.2.12",
|