@aws-sdk/client-mediastore 3.52.0 → 3.54.1
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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/MediaStoreServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +87 -1
- package/dist-cjs/protocols/Aws_json1_1.js +188 -656
- package/dist-es/index.js +1 -0
- package/dist-es/models/MediaStoreServiceException.js +12 -0
- package/dist-es/models/models_0.js +80 -1
- package/dist-es/protocols/Aws_json1_1.js +425 -729
- package/dist-types/MediaStoreClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/MediaStoreServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/MediaStoreClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/MediaStoreServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -7
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateContainerCommandInput, CreateContainerCommandOutput } from "./commands/CreateContainerCommand";
|
|
10
10
|
import { DeleteContainerCommandInput, DeleteContainerCommandOutput } from "./commands/DeleteContainerCommand";
|
|
11
11
|
import { DeleteContainerPolicyCommandInput, DeleteContainerPolicyCommandOutput } from "./commands/DeleteContainerPolicyCommand";
|
|
@@ -49,7 +49,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
49
49
|
* A function that can calculate the length of a request body.
|
|
50
50
|
* @internal
|
|
51
51
|
*/
|
|
52
|
-
bodyLengthChecker?:
|
|
52
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
53
53
|
/**
|
|
54
54
|
* A function that converts a stream into an array of bytes.
|
|
55
55
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from MediaStore service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class MediaStoreServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { MediaStoreServiceException as __BaseException } from "./MediaStoreServiceException";
|
|
2
3
|
export declare enum MethodName {
|
|
3
4
|
DELETE = "DELETE",
|
|
4
5
|
GET = "GET",
|
|
@@ -59,10 +60,14 @@ export declare namespace Container {
|
|
|
59
60
|
* <p>The container that you specified in the request already exists or is being
|
|
60
61
|
* updated.</p>
|
|
61
62
|
*/
|
|
62
|
-
export
|
|
63
|
-
name: "ContainerInUseException";
|
|
64
|
-
$fault: "client";
|
|
63
|
+
export declare class ContainerInUseException extends __BaseException {
|
|
64
|
+
readonly name: "ContainerInUseException";
|
|
65
|
+
readonly $fault: "client";
|
|
65
66
|
Message?: string;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
70
|
+
constructor(opts: __ExceptionOptionType<ContainerInUseException, __BaseException>);
|
|
66
71
|
}
|
|
67
72
|
export declare enum ContainerLevelMetrics {
|
|
68
73
|
DISABLED = "DISABLED",
|
|
@@ -71,10 +76,14 @@ export declare enum ContainerLevelMetrics {
|
|
|
71
76
|
/**
|
|
72
77
|
* <p>The container that you specified in the request does not exist.</p>
|
|
73
78
|
*/
|
|
74
|
-
export
|
|
75
|
-
name: "ContainerNotFoundException";
|
|
76
|
-
$fault: "client";
|
|
79
|
+
export declare class ContainerNotFoundException extends __BaseException {
|
|
80
|
+
readonly name: "ContainerNotFoundException";
|
|
81
|
+
readonly $fault: "client";
|
|
77
82
|
Message?: string;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
constructor(opts: __ExceptionOptionType<ContainerNotFoundException, __BaseException>);
|
|
78
87
|
}
|
|
79
88
|
/**
|
|
80
89
|
* <p>A rule for a CORS policy. You can add up to 100 rules to a CORS policy. If more than
|
|
@@ -128,10 +137,14 @@ export declare namespace CorsRule {
|
|
|
128
137
|
/**
|
|
129
138
|
* <p>The CORS policy that you specified in the request does not exist.</p>
|
|
130
139
|
*/
|
|
131
|
-
export
|
|
132
|
-
name: "CorsPolicyNotFoundException";
|
|
133
|
-
$fault: "client";
|
|
140
|
+
export declare class CorsPolicyNotFoundException extends __BaseException {
|
|
141
|
+
readonly name: "CorsPolicyNotFoundException";
|
|
142
|
+
readonly $fault: "client";
|
|
134
143
|
Message?: string;
|
|
144
|
+
/**
|
|
145
|
+
* @internal
|
|
146
|
+
*/
|
|
147
|
+
constructor(opts: __ExceptionOptionType<CorsPolicyNotFoundException, __BaseException>);
|
|
135
148
|
}
|
|
136
149
|
/**
|
|
137
150
|
* <p>A collection of tags associated with a container. Each tag consists of a key:value pair, which can be anything you define. Typically, the tag key
|
|
@@ -204,18 +217,26 @@ export declare namespace CreateContainerOutput {
|
|
|
204
217
|
/**
|
|
205
218
|
* <p>The service is temporarily unavailable.</p>
|
|
206
219
|
*/
|
|
207
|
-
export
|
|
208
|
-
name: "InternalServerError";
|
|
209
|
-
$fault: "server";
|
|
220
|
+
export declare class InternalServerError extends __BaseException {
|
|
221
|
+
readonly name: "InternalServerError";
|
|
222
|
+
readonly $fault: "server";
|
|
210
223
|
Message?: string;
|
|
224
|
+
/**
|
|
225
|
+
* @internal
|
|
226
|
+
*/
|
|
227
|
+
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
211
228
|
}
|
|
212
229
|
/**
|
|
213
230
|
* <p>A service limit has been exceeded.</p>
|
|
214
231
|
*/
|
|
215
|
-
export
|
|
216
|
-
name: "LimitExceededException";
|
|
217
|
-
$fault: "client";
|
|
232
|
+
export declare class LimitExceededException extends __BaseException {
|
|
233
|
+
readonly name: "LimitExceededException";
|
|
234
|
+
readonly $fault: "client";
|
|
218
235
|
Message?: string;
|
|
236
|
+
/**
|
|
237
|
+
* @internal
|
|
238
|
+
*/
|
|
239
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
219
240
|
}
|
|
220
241
|
export interface DeleteContainerInput {
|
|
221
242
|
/**
|
|
@@ -260,10 +281,14 @@ export declare namespace DeleteContainerPolicyOutput {
|
|
|
260
281
|
/**
|
|
261
282
|
* <p>The policy that you specified in the request does not exist.</p>
|
|
262
283
|
*/
|
|
263
|
-
export
|
|
264
|
-
name: "PolicyNotFoundException";
|
|
265
|
-
$fault: "client";
|
|
284
|
+
export declare class PolicyNotFoundException extends __BaseException {
|
|
285
|
+
readonly name: "PolicyNotFoundException";
|
|
286
|
+
readonly $fault: "client";
|
|
266
287
|
Message?: string;
|
|
288
|
+
/**
|
|
289
|
+
* @internal
|
|
290
|
+
*/
|
|
291
|
+
constructor(opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>);
|
|
267
292
|
}
|
|
268
293
|
export interface DeleteCorsPolicyInput {
|
|
269
294
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { CreateContainerCommandInput, CreateContainerCommandOutput } from "./commands/CreateContainerCommand";
|
|
10
10
|
import { DeleteContainerCommandInput, DeleteContainerCommandOutput } from "./commands/DeleteContainerCommand";
|
|
11
11
|
import { DeleteContainerPolicyCommandInput, DeleteContainerPolicyCommandOutput } from "./commands/DeleteContainerPolicyCommand";
|
|
@@ -37,7 +37,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
37
37
|
|
|
38
38
|
urlParser?: __UrlParser;
|
|
39
39
|
|
|
40
|
-
bodyLengthChecker?:
|
|
40
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
41
41
|
|
|
42
42
|
streamCollector?: __StreamCollector;
|
|
43
43
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class MediaStoreServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { MediaStoreServiceException as __BaseException } from "./MediaStoreServiceException";
|
|
2
3
|
export declare enum MethodName {
|
|
3
4
|
DELETE = "DELETE",
|
|
4
5
|
GET = "GET",
|
|
@@ -30,20 +31,24 @@ export declare namespace Container {
|
|
|
30
31
|
const filterSensitiveLog: (obj: Container) => any;
|
|
31
32
|
}
|
|
32
33
|
|
|
33
|
-
export
|
|
34
|
-
name: "ContainerInUseException";
|
|
35
|
-
$fault: "client";
|
|
34
|
+
export declare class ContainerInUseException extends __BaseException {
|
|
35
|
+
readonly name: "ContainerInUseException";
|
|
36
|
+
readonly $fault: "client";
|
|
36
37
|
Message?: string;
|
|
38
|
+
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ContainerInUseException, __BaseException>);
|
|
37
40
|
}
|
|
38
41
|
export declare enum ContainerLevelMetrics {
|
|
39
42
|
DISABLED = "DISABLED",
|
|
40
43
|
ENABLED = "ENABLED"
|
|
41
44
|
}
|
|
42
45
|
|
|
43
|
-
export
|
|
44
|
-
name: "ContainerNotFoundException";
|
|
45
|
-
$fault: "client";
|
|
46
|
+
export declare class ContainerNotFoundException extends __BaseException {
|
|
47
|
+
readonly name: "ContainerNotFoundException";
|
|
48
|
+
readonly $fault: "client";
|
|
46
49
|
Message?: string;
|
|
50
|
+
|
|
51
|
+
constructor(opts: __ExceptionOptionType<ContainerNotFoundException, __BaseException>);
|
|
47
52
|
}
|
|
48
53
|
|
|
49
54
|
export interface CorsRule {
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediastore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediastore Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|