@aws-sdk/client-cloudsearch-domain 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-cloudsearch-domain
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-cloudsearch-domain
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-cloudsearch-domain
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CloudSearchDomainClientConfig) =
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: CloudSearchDomainClientConfig) =
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: CloudSearchDomainClientConfig) =
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;
@@ -12,7 +12,6 @@ import {
12
12
  UploadDocumentsCommandInput,
13
13
  UploadDocumentsCommandOutput,
14
14
  } from "./commands/UploadDocumentsCommand";
15
-
16
15
  export declare class CloudSearchDomain extends CloudSearchDomainClient {
17
16
  search(
18
17
  args: SearchCommandInput,
@@ -27,7 +26,6 @@ export declare class CloudSearchDomain extends CloudSearchDomainClient {
27
26
  options: __HttpHandlerOptions,
28
27
  cb: (err: any, data?: SearchCommandOutput) => void
29
28
  ): void;
30
-
31
29
  suggest(
32
30
  args: SuggestCommandInput,
33
31
  options?: __HttpHandlerOptions
@@ -41,7 +39,6 @@ export declare class CloudSearchDomain extends CloudSearchDomainClient {
41
39
  options: __HttpHandlerOptions,
42
40
  cb: (err: any, data?: SuggestCommandOutput) => void
43
41
  ): void;
44
-
45
42
  uploadDocuments(
46
43
  args: UploadDocumentsCommandInput,
47
44
  options?: __HttpHandlerOptions
@@ -65,47 +65,26 @@ export declare type ServiceOutputTypes =
65
65
  export interface ClientDefaults
66
66
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
67
67
  requestHandler?: __HttpHandler;
68
-
69
68
  sha256?: __HashConstructor;
70
-
71
69
  urlParser?: __UrlParser;
72
-
73
70
  bodyLengthChecker?: __BodyLengthCalculator;
74
-
75
71
  streamCollector?: __StreamCollector;
76
-
77
72
  base64Decoder?: __Decoder;
78
-
79
73
  base64Encoder?: __Encoder;
80
-
81
74
  utf8Decoder?: __Decoder;
82
-
83
75
  utf8Encoder?: __Encoder;
84
-
85
76
  runtime?: string;
86
-
87
77
  disableHostPrefix?: boolean;
88
-
89
78
  maxAttempts?: number | __Provider<number>;
90
-
91
79
  retryMode?: string | __Provider<string>;
92
-
93
80
  logger?: __Logger;
94
-
95
81
  useDualstackEndpoint?: boolean | __Provider<boolean>;
96
-
97
82
  useFipsEndpoint?: boolean | __Provider<boolean>;
98
-
99
83
  serviceId?: string;
100
-
101
84
  region?: string | __Provider<string>;
102
-
103
85
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
104
-
105
86
  regionInfoProvider?: RegionInfoProvider;
106
-
107
87
  defaultUserAgentProvider?: Provider<__UserAgent>;
108
-
109
88
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
110
89
  }
111
90
  declare type CloudSearchDomainClientConfigType = Partial<
@@ -118,7 +97,6 @@ declare type CloudSearchDomainClientConfigType = Partial<
118
97
  HostHeaderInputConfig &
119
98
  AwsAuthInputConfig &
120
99
  UserAgentInputConfig;
121
-
122
100
  export interface CloudSearchDomainClientConfig
123
101
  extends CloudSearchDomainClientConfigType {}
124
102
  declare type CloudSearchDomainClientResolvedConfigType =
@@ -130,10 +108,8 @@ declare type CloudSearchDomainClientResolvedConfigType =
130
108
  HostHeaderResolvedConfig &
131
109
  AwsAuthResolvedConfig &
132
110
  UserAgentResolvedConfig;
133
-
134
111
  export interface CloudSearchDomainClientResolvedConfig
135
112
  extends CloudSearchDomainClientResolvedConfigType {}
136
-
137
113
  export declare class CloudSearchDomainClient extends __Client<
138
114
  __HttpHandlerOptions,
139
115
  ServiceInputTypes,
@@ -142,7 +118,6 @@ export declare class CloudSearchDomainClient extends __Client<
142
118
  > {
143
119
  readonly config: CloudSearchDomainClientResolvedConfig;
144
120
  constructor(configuration: CloudSearchDomainClientConfig);
145
-
146
121
  destroy(): void;
147
122
  }
148
123
  export {};
@@ -13,7 +13,6 @@ import {
13
13
  import { SearchRequest, SearchResponse } from "../models/models_0";
14
14
  export interface SearchCommandInput extends SearchRequest {}
15
15
  export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {}
16
-
17
16
  export declare class SearchCommand extends $Command<
18
17
  SearchCommandInput,
19
18
  SearchCommandOutput,
@@ -21,7 +20,6 @@ export declare class SearchCommand extends $Command<
21
20
  > {
22
21
  readonly input: SearchCommandInput;
23
22
  constructor(input: SearchCommandInput);
24
-
25
23
  resolveMiddleware(
26
24
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
25
  configuration: CloudSearchDomainClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface SuggestCommandInput extends SuggestRequest {}
15
15
  export interface SuggestCommandOutput
16
16
  extends SuggestResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class SuggestCommand extends $Command<
20
19
  SuggestCommandInput,
21
20
  SuggestCommandOutput,
@@ -23,7 +22,6 @@ export declare class SuggestCommand extends $Command<
23
22
  > {
24
23
  readonly input: SuggestCommandInput;
25
24
  constructor(input: SuggestCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: CloudSearchDomainClientResolvedConfig,
@@ -20,13 +20,11 @@ declare type UploadDocumentsCommandInputType = Pick<
20
20
  > & {
21
21
  documents: UploadDocumentsRequest["documents"] | string | Uint8Array | Buffer;
22
22
  };
23
-
24
23
  export interface UploadDocumentsCommandInput
25
24
  extends UploadDocumentsCommandInputType {}
26
25
  export interface UploadDocumentsCommandOutput
27
26
  extends UploadDocumentsResponse,
28
27
  __MetadataBearer {}
29
-
30
28
  export declare class UploadDocumentsCommand extends $Command<
31
29
  UploadDocumentsCommandInput,
32
30
  UploadDocumentsCommandOutput,
@@ -34,7 +32,6 @@ export declare class UploadDocumentsCommand extends $Command<
34
32
  > {
35
33
  readonly input: UploadDocumentsCommandInput;
36
34
  constructor(input: UploadDocumentsCommandInput);
37
-
38
35
  resolveMiddleware(
39
36
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
40
37
  configuration: CloudSearchDomainClientResolvedConfig,
@@ -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 CloudSearchDomainServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -1,223 +1,143 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { Readable } from "stream";
3
3
  import { CloudSearchDomainServiceException as __BaseException } from "./CloudSearchDomainServiceException";
4
-
5
4
  export declare class SearchException extends __BaseException {
6
5
  readonly name: "SearchException";
7
6
  readonly $fault: "client";
8
-
9
7
  constructor(opts: __ExceptionOptionType<SearchException, __BaseException>);
10
8
  }
11
9
  export declare type QueryParser = "dismax" | "lucene" | "simple" | "structured";
12
-
13
10
  export interface SearchRequest {
14
11
  cursor?: string;
15
-
16
12
  expr?: string;
17
-
18
13
  facet?: string;
19
-
20
14
  filterQuery?: string;
21
-
22
15
  highlight?: string;
23
-
24
16
  partial?: boolean;
25
-
26
17
  query: string | undefined;
27
-
28
18
  queryOptions?: string;
29
-
30
19
  queryParser?: QueryParser | string;
31
-
32
20
  return?: string;
33
-
34
21
  size?: number;
35
-
36
22
  sort?: string;
37
-
38
23
  start?: number;
39
-
40
24
  stats?: string;
41
25
  }
42
-
43
26
  export interface Bucket {
44
27
  value?: string;
45
-
46
28
  count?: number;
47
29
  }
48
-
49
30
  export interface BucketInfo {
50
31
  buckets?: Bucket[];
51
32
  }
52
-
53
33
  export interface Hit {
54
34
  id?: string;
55
-
56
35
  fields?: Record<string, string[]>;
57
-
58
36
  exprs?: Record<string, string>;
59
-
60
37
  highlights?: Record<string, string>;
61
38
  }
62
-
63
39
  export interface Hits {
64
40
  found?: number;
65
-
66
41
  start?: number;
67
-
68
42
  cursor?: string;
69
-
70
43
  hit?: Hit[];
71
44
  }
72
-
73
45
  export interface FieldStats {
74
46
  min?: string;
75
-
76
47
  max?: string;
77
-
78
48
  count?: number;
79
-
80
49
  missing?: number;
81
-
82
50
  sum?: number;
83
-
84
51
  sumOfSquares?: number;
85
-
86
52
  mean?: string;
87
-
88
53
  stddev?: number;
89
54
  }
90
-
91
55
  export interface SearchStatus {
92
56
  timems?: number;
93
-
94
57
  rid?: string;
95
58
  }
96
-
97
59
  export interface SearchResponse {
98
60
  status?: SearchStatus;
99
-
100
61
  hits?: Hits;
101
-
102
62
  facets?: Record<string, BucketInfo>;
103
-
104
63
  stats?: Record<string, FieldStats>;
105
64
  }
106
-
107
65
  export interface SuggestRequest {
108
66
  query: string | undefined;
109
-
110
67
  suggester: string | undefined;
111
-
112
68
  size?: number;
113
69
  }
114
-
115
70
  export interface SuggestStatus {
116
71
  timems?: number;
117
-
118
72
  rid?: string;
119
73
  }
120
-
121
74
  export interface SuggestionMatch {
122
75
  suggestion?: string;
123
-
124
76
  score?: number;
125
-
126
77
  id?: string;
127
78
  }
128
-
129
79
  export interface SuggestModel {
130
80
  query?: string;
131
-
132
81
  found?: number;
133
-
134
82
  suggestions?: SuggestionMatch[];
135
83
  }
136
-
137
84
  export interface SuggestResponse {
138
85
  status?: SuggestStatus;
139
-
140
86
  suggest?: SuggestModel;
141
87
  }
142
-
143
88
  export declare class DocumentServiceException extends __BaseException {
144
89
  readonly name: "DocumentServiceException";
145
90
  readonly $fault: "client";
146
-
147
91
  status?: string;
148
-
149
92
  constructor(
150
93
  opts: __ExceptionOptionType<DocumentServiceException, __BaseException>
151
94
  );
152
95
  }
153
96
  export declare type ContentType = "application/json" | "application/xml";
154
-
155
97
  export interface UploadDocumentsRequest {
156
98
  documents: Readable | ReadableStream | Blob | undefined;
157
-
158
99
  contentType: ContentType | string | undefined;
159
100
  }
160
-
161
101
  export interface DocumentServiceWarning {
162
102
  message?: string;
163
103
  }
164
-
165
104
  export interface UploadDocumentsResponse {
166
105
  status?: string;
167
-
168
106
  adds?: number;
169
-
170
107
  deletes?: number;
171
-
172
108
  warnings?: DocumentServiceWarning[];
173
109
  }
174
-
175
110
  export declare const SearchRequestFilterSensitiveLog: (
176
111
  obj: SearchRequest
177
112
  ) => any;
178
-
179
113
  export declare const BucketFilterSensitiveLog: (obj: Bucket) => any;
180
-
181
114
  export declare const BucketInfoFilterSensitiveLog: (obj: BucketInfo) => any;
182
-
183
115
  export declare const HitFilterSensitiveLog: (obj: Hit) => any;
184
-
185
116
  export declare const HitsFilterSensitiveLog: (obj: Hits) => any;
186
-
187
117
  export declare const FieldStatsFilterSensitiveLog: (obj: FieldStats) => any;
188
-
189
118
  export declare const SearchStatusFilterSensitiveLog: (obj: SearchStatus) => any;
190
-
191
119
  export declare const SearchResponseFilterSensitiveLog: (
192
120
  obj: SearchResponse
193
121
  ) => any;
194
-
195
122
  export declare const SuggestRequestFilterSensitiveLog: (
196
123
  obj: SuggestRequest
197
124
  ) => any;
198
-
199
125
  export declare const SuggestStatusFilterSensitiveLog: (
200
126
  obj: SuggestStatus
201
127
  ) => any;
202
-
203
128
  export declare const SuggestionMatchFilterSensitiveLog: (
204
129
  obj: SuggestionMatch
205
130
  ) => any;
206
-
207
131
  export declare const SuggestModelFilterSensitiveLog: (obj: SuggestModel) => any;
208
-
209
132
  export declare const SuggestResponseFilterSensitiveLog: (
210
133
  obj: SuggestResponse
211
134
  ) => any;
212
-
213
135
  export declare const UploadDocumentsRequestFilterSensitiveLog: (
214
136
  obj: UploadDocumentsRequest
215
137
  ) => any;
216
-
217
138
  export declare const DocumentServiceWarningFilterSensitiveLog: (
218
139
  obj: DocumentServiceWarning
219
140
  ) => any;
220
-
221
141
  export declare const UploadDocumentsResponseFilterSensitiveLog: (
222
142
  obj: UploadDocumentsResponse
223
143
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: CloudSearchDomainClientConfig
6
5
  ) => {
@@ -53,7 +52,9 @@ export declare const getRuntimeConfig: (
53
52
  | undefined;
54
53
  signer?:
55
54
  | import("@aws-sdk/types").RequestSigner
56
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | ((
56
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
57
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
57
58
  | undefined;
58
59
  signingEscapePath?: boolean | undefined;
59
60
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: CloudSearchDomainClientConfig
6
5
  ) => {
@@ -53,7 +52,9 @@ export declare const getRuntimeConfig: (
53
52
  | undefined;
54
53
  signer?:
55
54
  | import("@aws-sdk/types").RequestSigner
56
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | ((
56
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
57
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
57
58
  | undefined;
58
59
  signingEscapePath?: boolean | undefined;
59
60
  systemClockOffset?: number | undefined;
@@ -1,5 +1,4 @@
1
1
  import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient";
2
-
3
2
  export declare const getRuntimeConfig: (
4
3
  config: CloudSearchDomainClientConfig
5
4
  ) => {
@@ -54,7 +53,9 @@ export declare const getRuntimeConfig: (
54
53
  | undefined;
55
54
  signer?:
56
55
  | import("@aws-sdk/types").RequestSigner
57
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | ((
57
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
58
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
58
59
  | undefined;
59
60
  signingEscapePath?: boolean | undefined;
60
61
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: CloudSearchDomainClientConfig
6
5
  ) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudsearch-domain",
3
3
  "description": "AWS SDK for JavaScript Cloudsearch Domain 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",
@@ -19,35 +19,35 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.178.0",
23
+ "@aws-sdk/config-resolver": "3.178.0",
24
+ "@aws-sdk/credential-provider-node": "3.178.0",
25
+ "@aws-sdk/fetch-http-handler": "3.178.0",
26
+ "@aws-sdk/hash-node": "3.178.0",
27
+ "@aws-sdk/invalid-dependency": "3.178.0",
28
+ "@aws-sdk/middleware-content-length": "3.178.0",
29
+ "@aws-sdk/middleware-host-header": "3.178.0",
30
+ "@aws-sdk/middleware-logger": "3.178.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.178.0",
32
+ "@aws-sdk/middleware-retry": "3.178.0",
33
+ "@aws-sdk/middleware-serde": "3.178.0",
34
+ "@aws-sdk/middleware-signing": "3.178.0",
35
+ "@aws-sdk/middleware-stack": "3.178.0",
36
+ "@aws-sdk/middleware-user-agent": "3.178.0",
37
+ "@aws-sdk/node-config-provider": "3.178.0",
38
+ "@aws-sdk/node-http-handler": "3.178.0",
39
+ "@aws-sdk/protocol-http": "3.178.0",
40
+ "@aws-sdk/smithy-client": "3.178.0",
41
+ "@aws-sdk/types": "3.178.0",
42
+ "@aws-sdk/url-parser": "3.178.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.178.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.178.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.178.0",
50
+ "@aws-sdk/util-user-agent-node": "3.178.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"