@aws-sdk/client-mediastore-data 3.170.0 → 3.178.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-mediastore-data
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-mediastore-data
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-mediastore-data
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
32
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
34
34
  signingEscapePath?: boolean | undefined;
35
35
  systemClockOffset?: number | undefined;
36
36
  signingRegion?: string | undefined;
@@ -20,7 +20,6 @@ import {
20
20
  PutObjectCommandOutput,
21
21
  } from "./commands/PutObjectCommand";
22
22
  import { MediaStoreDataClient } from "./MediaStoreDataClient";
23
-
24
23
  export declare class MediaStoreData extends MediaStoreDataClient {
25
24
  deleteObject(
26
25
  args: DeleteObjectCommandInput,
@@ -35,7 +34,6 @@ export declare class MediaStoreData extends MediaStoreDataClient {
35
34
  options: __HttpHandlerOptions,
36
35
  cb: (err: any, data?: DeleteObjectCommandOutput) => void
37
36
  ): void;
38
-
39
37
  describeObject(
40
38
  args: DescribeObjectCommandInput,
41
39
  options?: __HttpHandlerOptions
@@ -49,7 +47,6 @@ export declare class MediaStoreData extends MediaStoreDataClient {
49
47
  options: __HttpHandlerOptions,
50
48
  cb: (err: any, data?: DescribeObjectCommandOutput) => void
51
49
  ): void;
52
-
53
50
  getObject(
54
51
  args: GetObjectCommandInput,
55
52
  options?: __HttpHandlerOptions
@@ -63,7 +60,6 @@ export declare class MediaStoreData extends MediaStoreDataClient {
63
60
  options: __HttpHandlerOptions,
64
61
  cb: (err: any, data?: GetObjectCommandOutput) => void
65
62
  ): void;
66
-
67
63
  listItems(
68
64
  args: ListItemsCommandInput,
69
65
  options?: __HttpHandlerOptions
@@ -77,7 +73,6 @@ export declare class MediaStoreData extends MediaStoreDataClient {
77
73
  options: __HttpHandlerOptions,
78
74
  cb: (err: any, data?: ListItemsCommandOutput) => void
79
75
  ): void;
80
-
81
76
  putObject(
82
77
  args: PutObjectCommandInput,
83
78
  options?: __HttpHandlerOptions
@@ -77,47 +77,26 @@ export declare type ServiceOutputTypes =
77
77
  export interface ClientDefaults
78
78
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
79
79
  requestHandler?: __HttpHandler;
80
-
81
80
  sha256?: __HashConstructor;
82
-
83
81
  urlParser?: __UrlParser;
84
-
85
82
  bodyLengthChecker?: __BodyLengthCalculator;
86
-
87
83
  streamCollector?: __StreamCollector;
88
-
89
84
  base64Decoder?: __Decoder;
90
-
91
85
  base64Encoder?: __Encoder;
92
-
93
86
  utf8Decoder?: __Decoder;
94
-
95
87
  utf8Encoder?: __Encoder;
96
-
97
88
  runtime?: string;
98
-
99
89
  disableHostPrefix?: boolean;
100
-
101
90
  maxAttempts?: number | __Provider<number>;
102
-
103
91
  retryMode?: string | __Provider<string>;
104
-
105
92
  logger?: __Logger;
106
-
107
93
  useDualstackEndpoint?: boolean | __Provider<boolean>;
108
-
109
94
  useFipsEndpoint?: boolean | __Provider<boolean>;
110
-
111
95
  serviceId?: string;
112
-
113
96
  region?: string | __Provider<string>;
114
-
115
97
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
116
-
117
98
  regionInfoProvider?: RegionInfoProvider;
118
-
119
99
  defaultUserAgentProvider?: Provider<__UserAgent>;
120
-
121
100
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
122
101
  }
123
102
  declare type MediaStoreDataClientConfigType = Partial<
@@ -130,7 +109,6 @@ declare type MediaStoreDataClientConfigType = Partial<
130
109
  HostHeaderInputConfig &
131
110
  AwsAuthInputConfig &
132
111
  UserAgentInputConfig;
133
-
134
112
  export interface MediaStoreDataClientConfig
135
113
  extends MediaStoreDataClientConfigType {}
136
114
  declare type MediaStoreDataClientResolvedConfigType =
@@ -142,10 +120,8 @@ declare type MediaStoreDataClientResolvedConfigType =
142
120
  HostHeaderResolvedConfig &
143
121
  AwsAuthResolvedConfig &
144
122
  UserAgentResolvedConfig;
145
-
146
123
  export interface MediaStoreDataClientResolvedConfig
147
124
  extends MediaStoreDataClientResolvedConfigType {}
148
-
149
125
  export declare class MediaStoreDataClient extends __Client<
150
126
  __HttpHandlerOptions,
151
127
  ServiceInputTypes,
@@ -154,7 +130,6 @@ export declare class MediaStoreDataClient extends __Client<
154
130
  > {
155
131
  readonly config: MediaStoreDataClientResolvedConfig;
156
132
  constructor(configuration: MediaStoreDataClientConfig);
157
-
158
133
  destroy(): void;
159
134
  }
160
135
  export {};
@@ -15,7 +15,6 @@ export interface DeleteObjectCommandInput extends DeleteObjectRequest {}
15
15
  export interface DeleteObjectCommandOutput
16
16
  extends DeleteObjectResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class DeleteObjectCommand extends $Command<
20
19
  DeleteObjectCommandInput,
21
20
  DeleteObjectCommandOutput,
@@ -23,7 +22,6 @@ export declare class DeleteObjectCommand extends $Command<
23
22
  > {
24
23
  readonly input: DeleteObjectCommandInput;
25
24
  constructor(input: DeleteObjectCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: MediaStoreDataClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface DescribeObjectCommandInput extends DescribeObjectRequest {}
18
18
  export interface DescribeObjectCommandOutput
19
19
  extends DescribeObjectResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class DescribeObjectCommand extends $Command<
23
22
  DescribeObjectCommandInput,
24
23
  DescribeObjectCommandOutput,
@@ -26,7 +25,6 @@ export declare class DescribeObjectCommand extends $Command<
26
25
  > {
27
26
  readonly input: DescribeObjectCommandInput;
28
27
  constructor(input: DescribeObjectCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: MediaStoreDataClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface GetObjectCommandInput extends GetObjectRequest {}
15
15
  export interface GetObjectCommandOutput
16
16
  extends GetObjectResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class GetObjectCommand extends $Command<
20
19
  GetObjectCommandInput,
21
20
  GetObjectCommandOutput,
@@ -23,7 +22,6 @@ export declare class GetObjectCommand extends $Command<
23
22
  > {
24
23
  readonly input: GetObjectCommandInput;
25
24
  constructor(input: GetObjectCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: MediaStoreDataClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface ListItemsCommandInput extends ListItemsRequest {}
15
15
  export interface ListItemsCommandOutput
16
16
  extends ListItemsResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class ListItemsCommand extends $Command<
20
19
  ListItemsCommandInput,
21
20
  ListItemsCommandOutput,
@@ -23,7 +22,6 @@ export declare class ListItemsCommand extends $Command<
23
22
  > {
24
23
  readonly input: ListItemsCommandInput;
25
24
  constructor(input: ListItemsCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: MediaStoreDataClientResolvedConfig,
@@ -17,12 +17,10 @@ declare type PutObjectCommandInputType = Pick<
17
17
  > & {
18
18
  Body: PutObjectRequest["Body"] | string | Uint8Array | Buffer;
19
19
  };
20
-
21
20
  export interface PutObjectCommandInput extends PutObjectCommandInputType {}
22
21
  export interface PutObjectCommandOutput
23
22
  extends PutObjectResponse,
24
23
  __MetadataBearer {}
25
-
26
24
  export declare class PutObjectCommand extends $Command<
27
25
  PutObjectCommandInput,
28
26
  PutObjectCommandOutput,
@@ -30,7 +28,6 @@ export declare class PutObjectCommand extends $Command<
30
28
  > {
31
29
  readonly input: PutObjectCommandInput;
32
30
  constructor(input: PutObjectCommandInput);
33
-
34
31
  resolveMiddleware(
35
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
36
33
  configuration: MediaStoreDataClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class MediaStoreDataServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -1,12 +1,10 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { Readable } from "stream";
3
3
  import { MediaStoreDataServiceException as __BaseException } from "./MediaStoreDataServiceException";
4
-
5
4
  export declare class ContainerNotFoundException extends __BaseException {
6
5
  readonly name: "ContainerNotFoundException";
7
6
  readonly $fault: "client";
8
7
  Message?: string;
9
-
10
8
  constructor(
11
9
  opts: __ExceptionOptionType<ContainerNotFoundException, __BaseException>
12
10
  );
@@ -15,22 +13,18 @@ export interface DeleteObjectRequest {
15
13
  Path: string | undefined;
16
14
  }
17
15
  export interface DeleteObjectResponse {}
18
-
19
16
  export declare class InternalServerError extends __BaseException {
20
17
  readonly name: "InternalServerError";
21
18
  readonly $fault: "server";
22
19
  Message?: string;
23
-
24
20
  constructor(
25
21
  opts: __ExceptionOptionType<InternalServerError, __BaseException>
26
22
  );
27
23
  }
28
-
29
24
  export declare class ObjectNotFoundException extends __BaseException {
30
25
  readonly name: "ObjectNotFoundException";
31
26
  readonly $fault: "client";
32
27
  Message?: string;
33
-
34
28
  constructor(
35
29
  opts: __ExceptionOptionType<ObjectNotFoundException, __BaseException>
36
30
  );
@@ -40,43 +34,29 @@ export interface DescribeObjectRequest {
40
34
  }
41
35
  export interface DescribeObjectResponse {
42
36
  ETag?: string;
43
-
44
37
  ContentType?: string;
45
-
46
38
  ContentLength?: number;
47
-
48
39
  CacheControl?: string;
49
-
50
40
  LastModified?: Date;
51
41
  }
52
42
  export interface GetObjectRequest {
53
43
  Path: string | undefined;
54
-
55
44
  Range?: string;
56
45
  }
57
46
  export interface GetObjectResponse {
58
47
  Body?: Readable | ReadableStream | Blob;
59
-
60
48
  CacheControl?: string;
61
-
62
49
  ContentRange?: string;
63
-
64
50
  ContentLength?: number;
65
-
66
51
  ContentType?: string;
67
-
68
52
  ETag?: string;
69
-
70
53
  LastModified?: Date;
71
-
72
54
  StatusCode: number | undefined;
73
55
  }
74
-
75
56
  export declare class RequestedRangeNotSatisfiableException extends __BaseException {
76
57
  readonly name: "RequestedRangeNotSatisfiableException";
77
58
  readonly $fault: "client";
78
59
  Message?: string;
79
-
80
60
  constructor(
81
61
  opts: __ExceptionOptionType<
82
62
  RequestedRangeNotSatisfiableException,
@@ -88,30 +68,21 @@ export declare enum ItemType {
88
68
  FOLDER = "FOLDER",
89
69
  OBJECT = "OBJECT",
90
70
  }
91
-
92
71
  export interface Item {
93
72
  Name?: string;
94
-
95
73
  Type?: ItemType | string;
96
-
97
74
  ETag?: string;
98
-
99
75
  LastModified?: Date;
100
-
101
76
  ContentType?: string;
102
-
103
77
  ContentLength?: number;
104
78
  }
105
79
  export interface ListItemsRequest {
106
80
  Path?: string;
107
-
108
81
  MaxResults?: number;
109
-
110
82
  NextToken?: string;
111
83
  }
112
84
  export interface ListItemsResponse {
113
85
  Items?: Item[];
114
-
115
86
  NextToken?: string;
116
87
  }
117
88
  export declare enum StorageClass {
@@ -123,63 +94,45 @@ export declare enum UploadAvailability {
123
94
  }
124
95
  export interface PutObjectRequest {
125
96
  Body: Readable | ReadableStream | Blob | undefined;
126
-
127
97
  Path: string | undefined;
128
-
129
98
  ContentType?: string;
130
-
131
99
  CacheControl?: string;
132
-
133
100
  StorageClass?: StorageClass | string;
134
-
135
101
  UploadAvailability?: UploadAvailability | string;
136
102
  }
137
103
  export interface PutObjectResponse {
138
104
  ContentSHA256?: string;
139
-
140
105
  ETag?: string;
141
-
142
106
  StorageClass?: StorageClass | string;
143
107
  }
144
-
145
108
  export declare const DeleteObjectRequestFilterSensitiveLog: (
146
109
  obj: DeleteObjectRequest
147
110
  ) => any;
148
-
149
111
  export declare const DeleteObjectResponseFilterSensitiveLog: (
150
112
  obj: DeleteObjectResponse
151
113
  ) => any;
152
-
153
114
  export declare const DescribeObjectRequestFilterSensitiveLog: (
154
115
  obj: DescribeObjectRequest
155
116
  ) => any;
156
-
157
117
  export declare const DescribeObjectResponseFilterSensitiveLog: (
158
118
  obj: DescribeObjectResponse
159
119
  ) => any;
160
-
161
120
  export declare const GetObjectRequestFilterSensitiveLog: (
162
121
  obj: GetObjectRequest
163
122
  ) => any;
164
-
165
123
  export declare const GetObjectResponseFilterSensitiveLog: (
166
124
  obj: GetObjectResponse
167
125
  ) => any;
168
-
169
126
  export declare const ItemFilterSensitiveLog: (obj: Item) => any;
170
-
171
127
  export declare const ListItemsRequestFilterSensitiveLog: (
172
128
  obj: ListItemsRequest
173
129
  ) => any;
174
-
175
130
  export declare const ListItemsResponseFilterSensitiveLog: (
176
131
  obj: ListItemsResponse
177
132
  ) => any;
178
-
179
133
  export declare const PutObjectRequestFilterSensitiveLog: (
180
134
  obj: PutObjectRequest
181
135
  ) => any;
182
-
183
136
  export declare const PutObjectResponseFilterSensitiveLog: (
184
137
  obj: PutObjectResponse
185
138
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { MediaStoreDataClientConfig } from "./MediaStoreDataClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { MediaStoreDataClientConfig } from "./MediaStoreDataClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,5 +1,4 @@
1
1
  import { MediaStoreDataClientConfig } from "./MediaStoreDataClient";
2
-
3
2
  export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
4
3
  runtime: string;
5
4
  sha256: import("@aws-sdk/types").HashConstructor;
@@ -52,7 +51,9 @@ export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
52
51
  | undefined;
53
52
  signer?:
54
53
  | import("@aws-sdk/types").RequestSigner
55
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | ((
55
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
56
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
56
57
  | undefined;
57
58
  signingEscapePath?: boolean | undefined;
58
59
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { MediaStoreDataClientConfig } from "./MediaStoreDataClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: MediaStoreDataClientConfig) => {
5
4
  apiVersion: string;
6
5
  disableHostPrefix: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-mediastore-data",
3
3
  "description": "AWS SDK for JavaScript Mediastore Data Client for Node.js, Browser and React Native",
4
- "version": "3.170.0",
4
+ "version": "3.178.0",
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",
@@ -21,35 +21,35 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.170.0",
25
- "@aws-sdk/config-resolver": "3.170.0",
26
- "@aws-sdk/credential-provider-node": "3.170.0",
27
- "@aws-sdk/fetch-http-handler": "3.170.0",
28
- "@aws-sdk/hash-node": "3.170.0",
29
- "@aws-sdk/invalid-dependency": "3.170.0",
30
- "@aws-sdk/middleware-content-length": "3.170.0",
31
- "@aws-sdk/middleware-host-header": "3.170.0",
32
- "@aws-sdk/middleware-logger": "3.170.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
34
- "@aws-sdk/middleware-retry": "3.170.0",
35
- "@aws-sdk/middleware-serde": "3.170.0",
36
- "@aws-sdk/middleware-signing": "3.170.0",
37
- "@aws-sdk/middleware-stack": "3.170.0",
38
- "@aws-sdk/middleware-user-agent": "3.170.0",
39
- "@aws-sdk/node-config-provider": "3.170.0",
40
- "@aws-sdk/node-http-handler": "3.170.0",
41
- "@aws-sdk/protocol-http": "3.170.0",
42
- "@aws-sdk/smithy-client": "3.170.0",
43
- "@aws-sdk/types": "3.170.0",
44
- "@aws-sdk/url-parser": "3.170.0",
24
+ "@aws-sdk/client-sts": "3.178.0",
25
+ "@aws-sdk/config-resolver": "3.178.0",
26
+ "@aws-sdk/credential-provider-node": "3.178.0",
27
+ "@aws-sdk/fetch-http-handler": "3.178.0",
28
+ "@aws-sdk/hash-node": "3.178.0",
29
+ "@aws-sdk/invalid-dependency": "3.178.0",
30
+ "@aws-sdk/middleware-content-length": "3.178.0",
31
+ "@aws-sdk/middleware-host-header": "3.178.0",
32
+ "@aws-sdk/middleware-logger": "3.178.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.178.0",
34
+ "@aws-sdk/middleware-retry": "3.178.0",
35
+ "@aws-sdk/middleware-serde": "3.178.0",
36
+ "@aws-sdk/middleware-signing": "3.178.0",
37
+ "@aws-sdk/middleware-stack": "3.178.0",
38
+ "@aws-sdk/middleware-user-agent": "3.178.0",
39
+ "@aws-sdk/node-config-provider": "3.178.0",
40
+ "@aws-sdk/node-http-handler": "3.178.0",
41
+ "@aws-sdk/protocol-http": "3.178.0",
42
+ "@aws-sdk/smithy-client": "3.178.0",
43
+ "@aws-sdk/types": "3.178.0",
44
+ "@aws-sdk/url-parser": "3.178.0",
45
45
  "@aws-sdk/util-base64-browser": "3.170.0",
46
46
  "@aws-sdk/util-base64-node": "3.170.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.170.0",
48
48
  "@aws-sdk/util-body-length-node": "3.170.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
51
- "@aws-sdk/util-user-agent-browser": "3.170.0",
52
- "@aws-sdk/util-user-agent-node": "3.170.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.178.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.178.0",
51
+ "@aws-sdk/util-user-agent-browser": "3.178.0",
52
+ "@aws-sdk/util-user-agent-node": "3.178.0",
53
53
  "@aws-sdk/util-utf8-browser": "3.170.0",
54
54
  "@aws-sdk/util-utf8-node": "3.170.0",
55
55
  "tslib": "^2.3.1"