@aws-sdk/client-cloudsearch 3.687.0 → 3.691.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.
@@ -3,28 +3,28 @@ import { CloudSearchServiceException as __BaseException } from "./CloudSearchSer
3
3
  export declare class BaseException extends __BaseException {
4
4
  readonly name: "BaseException";
5
5
  readonly $fault: "client";
6
- Code?: string;
7
- Message?: string;
6
+ Code?: string | undefined;
7
+ Message?: string | undefined;
8
8
  constructor(opts: __ExceptionOptionType<BaseException, __BaseException>);
9
9
  }
10
10
  export interface BuildSuggestersRequest {
11
11
  DomainName: string | undefined;
12
12
  }
13
13
  export interface BuildSuggestersResponse {
14
- FieldNames?: string[];
14
+ FieldNames?: string[] | undefined;
15
15
  }
16
16
  export declare class InternalException extends __BaseException {
17
17
  readonly name: "InternalException";
18
18
  readonly $fault: "server";
19
- Code?: string;
20
- Message?: string;
19
+ Code?: string | undefined;
20
+ Message?: string | undefined;
21
21
  constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
22
22
  }
23
23
  export declare class ResourceNotFoundException extends __BaseException {
24
24
  readonly name: "ResourceNotFoundException";
25
25
  readonly $fault: "client";
26
- Code?: string;
27
- Message?: string;
26
+ Code?: string | undefined;
27
+ Message?: string | undefined;
28
28
  constructor(
29
29
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
30
30
  );
@@ -32,8 +32,8 @@ export declare class ResourceNotFoundException extends __BaseException {
32
32
  export declare class ValidationException extends __BaseException {
33
33
  readonly name: "ValidationException";
34
34
  readonly $fault: "client";
35
- Code?: string;
36
- Message?: string;
35
+ Code?: string | undefined;
36
+ Message?: string | undefined;
37
37
  constructor(
38
38
  opts: __ExceptionOptionType<ValidationException, __BaseException>
39
39
  );
@@ -42,7 +42,7 @@ export interface CreateDomainRequest {
42
42
  DomainName: string | undefined;
43
43
  }
44
44
  export interface ServiceEndpoint {
45
- Endpoint?: string;
45
+ Endpoint?: string | undefined;
46
46
  }
47
47
  export interface Limits {
48
48
  MaximumReplicationCount: number | undefined;
@@ -51,26 +51,26 @@ export interface Limits {
51
51
  export interface DomainStatus {
52
52
  DomainId: string | undefined;
53
53
  DomainName: string | undefined;
54
- ARN?: string;
55
- Created?: boolean;
56
- Deleted?: boolean;
57
- DocService?: ServiceEndpoint;
58
- SearchService?: ServiceEndpoint;
54
+ ARN?: string | undefined;
55
+ Created?: boolean | undefined;
56
+ Deleted?: boolean | undefined;
57
+ DocService?: ServiceEndpoint | undefined;
58
+ SearchService?: ServiceEndpoint | undefined;
59
59
  RequiresIndexDocuments: boolean | undefined;
60
- Processing?: boolean;
61
- SearchInstanceType?: string;
62
- SearchPartitionCount?: number;
63
- SearchInstanceCount?: number;
64
- Limits?: Limits;
60
+ Processing?: boolean | undefined;
61
+ SearchInstanceType?: string | undefined;
62
+ SearchPartitionCount?: number | undefined;
63
+ SearchInstanceCount?: number | undefined;
64
+ Limits?: Limits | undefined;
65
65
  }
66
66
  export interface CreateDomainResponse {
67
- DomainStatus?: DomainStatus;
67
+ DomainStatus?: DomainStatus | undefined;
68
68
  }
69
69
  export declare class LimitExceededException extends __BaseException {
70
70
  readonly name: "LimitExceededException";
71
71
  readonly $fault: "client";
72
- Code?: string;
73
- Message?: string;
72
+ Code?: string | undefined;
73
+ Message?: string | undefined;
74
74
  constructor(
75
75
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
76
76
  );
@@ -78,8 +78,8 @@ export declare class LimitExceededException extends __BaseException {
78
78
  export declare class ResourceAlreadyExistsException extends __BaseException {
79
79
  readonly name: "ResourceAlreadyExistsException";
80
80
  readonly $fault: "client";
81
- Code?: string;
82
- Message?: string;
81
+ Code?: string | undefined;
82
+ Message?: string | undefined;
83
83
  constructor(
84
84
  opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
85
85
  );
@@ -93,11 +93,11 @@ export declare const AlgorithmicStemming: {
93
93
  export type AlgorithmicStemming =
94
94
  (typeof AlgorithmicStemming)[keyof typeof AlgorithmicStemming];
95
95
  export interface AnalysisOptions {
96
- Synonyms?: string;
97
- Stopwords?: string;
98
- StemmingDictionary?: string;
99
- JapaneseTokenizationDictionary?: string;
100
- AlgorithmicStemming?: AlgorithmicStemming;
96
+ Synonyms?: string | undefined;
97
+ Stopwords?: string | undefined;
98
+ StemmingDictionary?: string | undefined;
99
+ JapaneseTokenizationDictionary?: string | undefined;
100
+ AlgorithmicStemming?: AlgorithmicStemming | undefined;
101
101
  }
102
102
  export declare const AnalysisSchemeLanguage: {
103
103
  readonly ar: "ar";
@@ -141,7 +141,7 @@ export type AnalysisSchemeLanguage =
141
141
  export interface AnalysisScheme {
142
142
  AnalysisSchemeName: string | undefined;
143
143
  AnalysisSchemeLanguage: AnalysisSchemeLanguage | undefined;
144
- AnalysisOptions?: AnalysisOptions;
144
+ AnalysisOptions?: AnalysisOptions | undefined;
145
145
  }
146
146
  export interface DefineAnalysisSchemeRequest {
147
147
  DomainName: string | undefined;
@@ -157,9 +157,9 @@ export type OptionState = (typeof OptionState)[keyof typeof OptionState];
157
157
  export interface OptionStatus {
158
158
  CreationDate: Date | undefined;
159
159
  UpdateDate: Date | undefined;
160
- UpdateVersion?: number;
160
+ UpdateVersion?: number | undefined;
161
161
  State: OptionState | undefined;
162
- PendingDeletion?: boolean;
162
+ PendingDeletion?: boolean | undefined;
163
163
  }
164
164
  export interface AnalysisSchemeStatus {
165
165
  Options: AnalysisScheme | undefined;
@@ -171,8 +171,8 @@ export interface DefineAnalysisSchemeResponse {
171
171
  export declare class InvalidTypeException extends __BaseException {
172
172
  readonly name: "InvalidTypeException";
173
173
  readonly $fault: "client";
174
- Code?: string;
175
- Message?: string;
174
+ Code?: string | undefined;
175
+ Message?: string | undefined;
176
176
  constructor(
177
177
  opts: __ExceptionOptionType<InvalidTypeException, __BaseException>
178
178
  );
@@ -193,34 +193,34 @@ export interface DefineExpressionResponse {
193
193
  Expression: ExpressionStatus | undefined;
194
194
  }
195
195
  export interface DateArrayOptions {
196
- DefaultValue?: string;
197
- SourceFields?: string;
198
- FacetEnabled?: boolean;
199
- SearchEnabled?: boolean;
200
- ReturnEnabled?: boolean;
196
+ DefaultValue?: string | undefined;
197
+ SourceFields?: string | undefined;
198
+ FacetEnabled?: boolean | undefined;
199
+ SearchEnabled?: boolean | undefined;
200
+ ReturnEnabled?: boolean | undefined;
201
201
  }
202
202
  export interface DateOptions {
203
- DefaultValue?: string;
204
- SourceField?: string;
205
- FacetEnabled?: boolean;
206
- SearchEnabled?: boolean;
207
- ReturnEnabled?: boolean;
208
- SortEnabled?: boolean;
203
+ DefaultValue?: string | undefined;
204
+ SourceField?: string | undefined;
205
+ FacetEnabled?: boolean | undefined;
206
+ SearchEnabled?: boolean | undefined;
207
+ ReturnEnabled?: boolean | undefined;
208
+ SortEnabled?: boolean | undefined;
209
209
  }
210
210
  export interface DoubleArrayOptions {
211
- DefaultValue?: number;
212
- SourceFields?: string;
213
- FacetEnabled?: boolean;
214
- SearchEnabled?: boolean;
215
- ReturnEnabled?: boolean;
211
+ DefaultValue?: number | undefined;
212
+ SourceFields?: string | undefined;
213
+ FacetEnabled?: boolean | undefined;
214
+ SearchEnabled?: boolean | undefined;
215
+ ReturnEnabled?: boolean | undefined;
216
216
  }
217
217
  export interface DoubleOptions {
218
- DefaultValue?: number;
219
- SourceField?: string;
220
- FacetEnabled?: boolean;
221
- SearchEnabled?: boolean;
222
- ReturnEnabled?: boolean;
223
- SortEnabled?: boolean;
218
+ DefaultValue?: number | undefined;
219
+ SourceField?: string | undefined;
220
+ FacetEnabled?: boolean | undefined;
221
+ SearchEnabled?: boolean | undefined;
222
+ ReturnEnabled?: boolean | undefined;
223
+ SortEnabled?: boolean | undefined;
224
224
  }
225
225
  export declare const IndexFieldType: {
226
226
  readonly date: "date";
@@ -238,72 +238,72 @@ export declare const IndexFieldType: {
238
238
  export type IndexFieldType =
239
239
  (typeof IndexFieldType)[keyof typeof IndexFieldType];
240
240
  export interface IntArrayOptions {
241
- DefaultValue?: number;
242
- SourceFields?: string;
243
- FacetEnabled?: boolean;
244
- SearchEnabled?: boolean;
245
- ReturnEnabled?: boolean;
241
+ DefaultValue?: number | undefined;
242
+ SourceFields?: string | undefined;
243
+ FacetEnabled?: boolean | undefined;
244
+ SearchEnabled?: boolean | undefined;
245
+ ReturnEnabled?: boolean | undefined;
246
246
  }
247
247
  export interface IntOptions {
248
- DefaultValue?: number;
249
- SourceField?: string;
250
- FacetEnabled?: boolean;
251
- SearchEnabled?: boolean;
252
- ReturnEnabled?: boolean;
253
- SortEnabled?: boolean;
248
+ DefaultValue?: number | undefined;
249
+ SourceField?: string | undefined;
250
+ FacetEnabled?: boolean | undefined;
251
+ SearchEnabled?: boolean | undefined;
252
+ ReturnEnabled?: boolean | undefined;
253
+ SortEnabled?: boolean | undefined;
254
254
  }
255
255
  export interface LatLonOptions {
256
- DefaultValue?: string;
257
- SourceField?: string;
258
- FacetEnabled?: boolean;
259
- SearchEnabled?: boolean;
260
- ReturnEnabled?: boolean;
261
- SortEnabled?: boolean;
256
+ DefaultValue?: string | undefined;
257
+ SourceField?: string | undefined;
258
+ FacetEnabled?: boolean | undefined;
259
+ SearchEnabled?: boolean | undefined;
260
+ ReturnEnabled?: boolean | undefined;
261
+ SortEnabled?: boolean | undefined;
262
262
  }
263
263
  export interface LiteralArrayOptions {
264
- DefaultValue?: string;
265
- SourceFields?: string;
266
- FacetEnabled?: boolean;
267
- SearchEnabled?: boolean;
268
- ReturnEnabled?: boolean;
264
+ DefaultValue?: string | undefined;
265
+ SourceFields?: string | undefined;
266
+ FacetEnabled?: boolean | undefined;
267
+ SearchEnabled?: boolean | undefined;
268
+ ReturnEnabled?: boolean | undefined;
269
269
  }
270
270
  export interface LiteralOptions {
271
- DefaultValue?: string;
272
- SourceField?: string;
273
- FacetEnabled?: boolean;
274
- SearchEnabled?: boolean;
275
- ReturnEnabled?: boolean;
276
- SortEnabled?: boolean;
271
+ DefaultValue?: string | undefined;
272
+ SourceField?: string | undefined;
273
+ FacetEnabled?: boolean | undefined;
274
+ SearchEnabled?: boolean | undefined;
275
+ ReturnEnabled?: boolean | undefined;
276
+ SortEnabled?: boolean | undefined;
277
277
  }
278
278
  export interface TextArrayOptions {
279
- DefaultValue?: string;
280
- SourceFields?: string;
281
- ReturnEnabled?: boolean;
282
- HighlightEnabled?: boolean;
283
- AnalysisScheme?: string;
279
+ DefaultValue?: string | undefined;
280
+ SourceFields?: string | undefined;
281
+ ReturnEnabled?: boolean | undefined;
282
+ HighlightEnabled?: boolean | undefined;
283
+ AnalysisScheme?: string | undefined;
284
284
  }
285
285
  export interface TextOptions {
286
- DefaultValue?: string;
287
- SourceField?: string;
288
- ReturnEnabled?: boolean;
289
- SortEnabled?: boolean;
290
- HighlightEnabled?: boolean;
291
- AnalysisScheme?: string;
286
+ DefaultValue?: string | undefined;
287
+ SourceField?: string | undefined;
288
+ ReturnEnabled?: boolean | undefined;
289
+ SortEnabled?: boolean | undefined;
290
+ HighlightEnabled?: boolean | undefined;
291
+ AnalysisScheme?: string | undefined;
292
292
  }
293
293
  export interface IndexField {
294
294
  IndexFieldName: string | undefined;
295
295
  IndexFieldType: IndexFieldType | undefined;
296
- IntOptions?: IntOptions;
297
- DoubleOptions?: DoubleOptions;
298
- LiteralOptions?: LiteralOptions;
299
- TextOptions?: TextOptions;
300
- DateOptions?: DateOptions;
301
- LatLonOptions?: LatLonOptions;
302
- IntArrayOptions?: IntArrayOptions;
303
- DoubleArrayOptions?: DoubleArrayOptions;
304
- LiteralArrayOptions?: LiteralArrayOptions;
305
- TextArrayOptions?: TextArrayOptions;
306
- DateArrayOptions?: DateArrayOptions;
296
+ IntOptions?: IntOptions | undefined;
297
+ DoubleOptions?: DoubleOptions | undefined;
298
+ LiteralOptions?: LiteralOptions | undefined;
299
+ TextOptions?: TextOptions | undefined;
300
+ DateOptions?: DateOptions | undefined;
301
+ LatLonOptions?: LatLonOptions | undefined;
302
+ IntArrayOptions?: IntArrayOptions | undefined;
303
+ DoubleArrayOptions?: DoubleArrayOptions | undefined;
304
+ LiteralArrayOptions?: LiteralArrayOptions | undefined;
305
+ TextArrayOptions?: TextArrayOptions | undefined;
306
+ DateArrayOptions?: DateArrayOptions | undefined;
307
307
  }
308
308
  export interface DefineIndexFieldRequest {
309
309
  DomainName: string | undefined;
@@ -325,8 +325,8 @@ export type SuggesterFuzzyMatching =
325
325
  (typeof SuggesterFuzzyMatching)[keyof typeof SuggesterFuzzyMatching];
326
326
  export interface DocumentSuggesterOptions {
327
327
  SourceField: string | undefined;
328
- FuzzyMatching?: SuggesterFuzzyMatching;
329
- SortExpression?: string;
328
+ FuzzyMatching?: SuggesterFuzzyMatching | undefined;
329
+ SortExpression?: string | undefined;
330
330
  }
331
331
  export interface Suggester {
332
332
  SuggesterName: string | undefined;
@@ -354,7 +354,7 @@ export interface DeleteDomainRequest {
354
354
  DomainName: string | undefined;
355
355
  }
356
356
  export interface DeleteDomainResponse {
357
- DomainStatus?: DomainStatus;
357
+ DomainStatus?: DomainStatus | undefined;
358
358
  }
359
359
  export interface DeleteExpressionRequest {
360
360
  DomainName: string | undefined;
@@ -379,35 +379,35 @@ export interface DeleteSuggesterResponse {
379
379
  }
380
380
  export interface DescribeAnalysisSchemesRequest {
381
381
  DomainName: string | undefined;
382
- AnalysisSchemeNames?: string[];
383
- Deployed?: boolean;
382
+ AnalysisSchemeNames?: string[] | undefined;
383
+ Deployed?: boolean | undefined;
384
384
  }
385
385
  export interface DescribeAnalysisSchemesResponse {
386
386
  AnalysisSchemes: AnalysisSchemeStatus[] | undefined;
387
387
  }
388
388
  export interface DescribeAvailabilityOptionsRequest {
389
389
  DomainName: string | undefined;
390
- Deployed?: boolean;
390
+ Deployed?: boolean | undefined;
391
391
  }
392
392
  export interface AvailabilityOptionsStatus {
393
393
  Options: boolean | undefined;
394
394
  Status: OptionStatus | undefined;
395
395
  }
396
396
  export interface DescribeAvailabilityOptionsResponse {
397
- AvailabilityOptions?: AvailabilityOptionsStatus;
397
+ AvailabilityOptions?: AvailabilityOptionsStatus | undefined;
398
398
  }
399
399
  export declare class DisabledOperationException extends __BaseException {
400
400
  readonly name: "DisabledOperationException";
401
401
  readonly $fault: "client";
402
- Code?: string;
403
- Message?: string;
402
+ Code?: string | undefined;
403
+ Message?: string | undefined;
404
404
  constructor(
405
405
  opts: __ExceptionOptionType<DisabledOperationException, __BaseException>
406
406
  );
407
407
  }
408
408
  export interface DescribeDomainEndpointOptionsRequest {
409
409
  DomainName: string | undefined;
410
- Deployed?: boolean;
410
+ Deployed?: boolean | undefined;
411
411
  }
412
412
  export declare const TLSSecurityPolicy: {
413
413
  readonly POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07";
@@ -416,34 +416,34 @@ export declare const TLSSecurityPolicy: {
416
416
  export type TLSSecurityPolicy =
417
417
  (typeof TLSSecurityPolicy)[keyof typeof TLSSecurityPolicy];
418
418
  export interface DomainEndpointOptions {
419
- EnforceHTTPS?: boolean;
420
- TLSSecurityPolicy?: TLSSecurityPolicy;
419
+ EnforceHTTPS?: boolean | undefined;
420
+ TLSSecurityPolicy?: TLSSecurityPolicy | undefined;
421
421
  }
422
422
  export interface DomainEndpointOptionsStatus {
423
423
  Options: DomainEndpointOptions | undefined;
424
424
  Status: OptionStatus | undefined;
425
425
  }
426
426
  export interface DescribeDomainEndpointOptionsResponse {
427
- DomainEndpointOptions?: DomainEndpointOptionsStatus;
427
+ DomainEndpointOptions?: DomainEndpointOptionsStatus | undefined;
428
428
  }
429
429
  export interface DescribeDomainsRequest {
430
- DomainNames?: string[];
430
+ DomainNames?: string[] | undefined;
431
431
  }
432
432
  export interface DescribeDomainsResponse {
433
433
  DomainStatusList: DomainStatus[] | undefined;
434
434
  }
435
435
  export interface DescribeExpressionsRequest {
436
436
  DomainName: string | undefined;
437
- ExpressionNames?: string[];
438
- Deployed?: boolean;
437
+ ExpressionNames?: string[] | undefined;
438
+ Deployed?: boolean | undefined;
439
439
  }
440
440
  export interface DescribeExpressionsResponse {
441
441
  Expressions: ExpressionStatus[] | undefined;
442
442
  }
443
443
  export interface DescribeIndexFieldsRequest {
444
444
  DomainName: string | undefined;
445
- FieldNames?: string[];
446
- Deployed?: boolean;
445
+ FieldNames?: string[] | undefined;
446
+ Deployed?: boolean | undefined;
447
447
  }
448
448
  export interface DescribeIndexFieldsResponse {
449
449
  IndexFields: IndexFieldStatus[] | undefined;
@@ -473,9 +473,9 @@ export declare const PartitionInstanceType: {
473
473
  export type PartitionInstanceType =
474
474
  (typeof PartitionInstanceType)[keyof typeof PartitionInstanceType];
475
475
  export interface ScalingParameters {
476
- DesiredInstanceType?: PartitionInstanceType;
477
- DesiredReplicationCount?: number;
478
- DesiredPartitionCount?: number;
476
+ DesiredInstanceType?: PartitionInstanceType | undefined;
477
+ DesiredReplicationCount?: number | undefined;
478
+ DesiredPartitionCount?: number | undefined;
479
479
  }
480
480
  export interface ScalingParametersStatus {
481
481
  Options: ScalingParameters | undefined;
@@ -486,7 +486,7 @@ export interface DescribeScalingParametersResponse {
486
486
  }
487
487
  export interface DescribeServiceAccessPoliciesRequest {
488
488
  DomainName: string | undefined;
489
- Deployed?: boolean;
489
+ Deployed?: boolean | undefined;
490
490
  }
491
491
  export interface AccessPoliciesStatus {
492
492
  Options: string | undefined;
@@ -497,8 +497,8 @@ export interface DescribeServiceAccessPoliciesResponse {
497
497
  }
498
498
  export interface DescribeSuggestersRequest {
499
499
  DomainName: string | undefined;
500
- SuggesterNames?: string[];
501
- Deployed?: boolean;
500
+ SuggesterNames?: string[] | undefined;
501
+ Deployed?: boolean | undefined;
502
502
  }
503
503
  export interface DescribeSuggestersResponse {
504
504
  Suggesters: SuggesterStatus[] | undefined;
@@ -507,24 +507,24 @@ export interface IndexDocumentsRequest {
507
507
  DomainName: string | undefined;
508
508
  }
509
509
  export interface IndexDocumentsResponse {
510
- FieldNames?: string[];
510
+ FieldNames?: string[] | undefined;
511
511
  }
512
512
  export interface ListDomainNamesResponse {
513
- DomainNames?: Record<string, string>;
513
+ DomainNames?: Record<string, string> | undefined;
514
514
  }
515
515
  export interface UpdateAvailabilityOptionsRequest {
516
516
  DomainName: string | undefined;
517
517
  MultiAZ: boolean | undefined;
518
518
  }
519
519
  export interface UpdateAvailabilityOptionsResponse {
520
- AvailabilityOptions?: AvailabilityOptionsStatus;
520
+ AvailabilityOptions?: AvailabilityOptionsStatus | undefined;
521
521
  }
522
522
  export interface UpdateDomainEndpointOptionsRequest {
523
523
  DomainName: string | undefined;
524
524
  DomainEndpointOptions: DomainEndpointOptions | undefined;
525
525
  }
526
526
  export interface UpdateDomainEndpointOptionsResponse {
527
- DomainEndpointOptions?: DomainEndpointOptionsStatus;
527
+ DomainEndpointOptions?: DomainEndpointOptionsStatus | undefined;
528
528
  }
529
529
  export interface UpdateScalingParametersRequest {
530
530
  DomainName: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudsearch",
3
3
  "description": "AWS SDK for JavaScript Cloudsearch Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cloudsearch",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",