@aws-sdk/client-connect-contact-lens 3.616.0 → 3.620.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/README.md CHANGED
@@ -6,13 +6,26 @@
6
6
 
7
7
  AWS SDK for JavaScript ConnectContactLens Client for Node.js, Browser and React Native.
8
8
 
9
- <p>Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents,
10
- by using speech transcription, natural language processing, and intelligent search
11
- capabilities. It performs sentiment analysis, detects issues, and enables you to automatically
9
+ <ul>
10
+ <li>
11
+ <p>
12
+ <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Contact_Lens.html">Contact Lens actions</a>
13
+ </p>
14
+ </li>
15
+ <li>
16
+ <p>
17
+ <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Contact_Lens.html">Contact Lens data types</a>
18
+ </p>
19
+ </li>
20
+ </ul>
21
+ <p>Amazon Connect Contact Lens enables you to analyze conversations between customer and agents, by using
22
+ speech transcription, natural language processing, and intelligent search capabilities.
23
+ It performs sentiment analysis, detects issues, and enables you to automatically
12
24
  categorize contacts.</p>
13
- <p>Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent
14
- conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations using
15
- Contact Lens</a> in the <i>Amazon Connect Administrator Guide</i>. </p>
25
+ <p>Amazon Connect Contact Lens provides both real-time and post-call analytics of customer-agent
26
+ conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations
27
+ using speech analytics</a> in the <i>Amazon Connect Administrator
28
+ Guide</i>. </p>
16
29
 
17
30
  ## Installing
18
31
 
package/dist-cjs/index.js CHANGED
@@ -29,6 +29,8 @@ __export(src_exports, {
29
29
  InternalServiceException: () => InternalServiceException,
30
30
  InvalidRequestException: () => InvalidRequestException,
31
31
  ListRealtimeContactAnalysisSegmentsCommand: () => ListRealtimeContactAnalysisSegmentsCommand,
32
+ PostContactSummaryFailureCode: () => PostContactSummaryFailureCode,
33
+ PostContactSummaryStatus: () => PostContactSummaryStatus,
32
34
  ResourceNotFoundException: () => ResourceNotFoundException,
33
35
  SentimentValue: () => SentimentValue,
34
36
  ThrottlingException: () => ThrottlingException,
@@ -262,6 +264,17 @@ var _InvalidRequestException = class _InvalidRequestException extends ConnectCon
262
264
  };
263
265
  __name(_InvalidRequestException, "InvalidRequestException");
264
266
  var InvalidRequestException = _InvalidRequestException;
267
+ var PostContactSummaryFailureCode = {
268
+ FAILED_SAFETY_GUIDELINES: "FAILED_SAFETY_GUIDELINES",
269
+ INSUFFICIENT_CONVERSATION_CONTENT: "INSUFFICIENT_CONVERSATION_CONTENT",
270
+ INTERNAL_ERROR: "INTERNAL_ERROR",
271
+ INVALID_ANALYSIS_CONFIGURATION: "INVALID_ANALYSIS_CONFIGURATION",
272
+ QUOTA_EXCEEDED: "QUOTA_EXCEEDED"
273
+ };
274
+ var PostContactSummaryStatus = {
275
+ COMPLETED: "COMPLETED",
276
+ FAILED: "FAILED"
277
+ };
265
278
  var SentimentValue = {
266
279
  NEGATIVE: "NEGATIVE",
267
280
  NEUTRAL: "NEUTRAL",
@@ -481,6 +494,8 @@ var paginateListRealtimeContactAnalysisSegments = (0, import_core.createPaginato
481
494
  AccessDeniedException,
482
495
  InternalServiceException,
483
496
  InvalidRequestException,
497
+ PostContactSummaryFailureCode,
498
+ PostContactSummaryStatus,
484
499
  SentimentValue,
485
500
  ResourceNotFoundException,
486
501
  ThrottlingException
@@ -38,6 +38,17 @@ export class InvalidRequestException extends __BaseException {
38
38
  this.Message = opts.Message;
39
39
  }
40
40
  }
41
+ export const PostContactSummaryFailureCode = {
42
+ FAILED_SAFETY_GUIDELINES: "FAILED_SAFETY_GUIDELINES",
43
+ INSUFFICIENT_CONVERSATION_CONTENT: "INSUFFICIENT_CONVERSATION_CONTENT",
44
+ INTERNAL_ERROR: "INTERNAL_ERROR",
45
+ INVALID_ANALYSIS_CONFIGURATION: "INVALID_ANALYSIS_CONFIGURATION",
46
+ QUOTA_EXCEEDED: "QUOTA_EXCEEDED",
47
+ };
48
+ export const PostContactSummaryStatus = {
49
+ COMPLETED: "COMPLETED",
50
+ FAILED: "FAILED",
51
+ };
41
52
  export const SentimentValue = {
42
53
  NEGATIVE: "NEGATIVE",
43
54
  NEUTRAL: "NEUTRAL",
@@ -10,13 +10,26 @@ export interface ConnectContactLens {
10
10
  listRealtimeContactAnalysisSegments(args: ListRealtimeContactAnalysisSegmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRealtimeContactAnalysisSegmentsCommandOutput) => void): void;
11
11
  }
12
12
  /**
13
- * <p>Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents,
14
- * by using speech transcription, natural language processing, and intelligent search
15
- * capabilities. It performs sentiment analysis, detects issues, and enables you to automatically
16
- * categorize contacts.</p>
17
- * <p>Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent
18
- * conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations using
19
- * Contact Lens</a> in the <i>Amazon Connect Administrator Guide</i>. </p>
13
+ * <ul>
14
+ * <li>
15
+ * <p>
16
+ * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Contact_Lens.html">Contact Lens actions</a>
17
+ * </p>
18
+ * </li>
19
+ * <li>
20
+ * <p>
21
+ * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Contact_Lens.html">Contact Lens data types</a>
22
+ * </p>
23
+ * </li>
24
+ * </ul>
25
+ * <p>Amazon Connect Contact Lens enables you to analyze conversations between customer and agents, by using
26
+ * speech transcription, natural language processing, and intelligent search capabilities.
27
+ * It performs sentiment analysis, detects issues, and enables you to automatically
28
+ * categorize contacts.</p>
29
+ * <p>Amazon Connect Contact Lens provides both real-time and post-call analytics of customer-agent
30
+ * conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations
31
+ * using speech analytics</a> in the <i>Amazon Connect Administrator
32
+ * Guide</i>. </p>
20
33
  * @public
21
34
  */
22
35
  export declare class ConnectContactLens extends ConnectContactLensClient implements ConnectContactLens {
@@ -152,13 +152,26 @@ export type ConnectContactLensClientResolvedConfigType = __SmithyResolvedConfigu
152
152
  export interface ConnectContactLensClientResolvedConfig extends ConnectContactLensClientResolvedConfigType {
153
153
  }
154
154
  /**
155
- * <p>Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents,
156
- * by using speech transcription, natural language processing, and intelligent search
157
- * capabilities. It performs sentiment analysis, detects issues, and enables you to automatically
158
- * categorize contacts.</p>
159
- * <p>Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent
160
- * conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations using
161
- * Contact Lens</a> in the <i>Amazon Connect Administrator Guide</i>. </p>
155
+ * <ul>
156
+ * <li>
157
+ * <p>
158
+ * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Contact_Lens.html">Contact Lens actions</a>
159
+ * </p>
160
+ * </li>
161
+ * <li>
162
+ * <p>
163
+ * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Contact_Lens.html">Contact Lens data types</a>
164
+ * </p>
165
+ * </li>
166
+ * </ul>
167
+ * <p>Amazon Connect Contact Lens enables you to analyze conversations between customer and agents, by using
168
+ * speech transcription, natural language processing, and intelligent search capabilities.
169
+ * It performs sentiment analysis, detects issues, and enables you to automatically
170
+ * categorize contacts.</p>
171
+ * <p>Amazon Connect Contact Lens provides both real-time and post-call analytics of customer-agent
172
+ * conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations
173
+ * using speech analytics</a> in the <i>Amazon Connect Administrator
174
+ * Guide</i>. </p>
162
175
  * @public
163
176
  */
164
177
  export declare class ConnectContactLensClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ConnectContactLensClientResolvedConfig> {
@@ -77,6 +77,11 @@ declare const ListRealtimeContactAnalysisSegmentsCommand_base: {
77
77
  * // },
78
78
  * // },
79
79
  * // },
80
+ * // PostContactSummary: { // PostContactSummary
81
+ * // Content: "STRING_VALUE",
82
+ * // Status: "FAILED" || "COMPLETED", // required
83
+ * // FailureCode: "QUOTA_EXCEEDED" || "INSUFFICIENT_CONVERSATION_CONTENT" || "FAILED_SAFETY_GUIDELINES" || "INVALID_ANALYSIS_CONFIGURATION" || "INTERNAL_ERROR",
84
+ * // },
80
85
  * // },
81
86
  * // ],
82
87
  * // NextToken: "STRING_VALUE",
@@ -1,11 +1,24 @@
1
1
  /**
2
- * <p>Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents,
3
- * by using speech transcription, natural language processing, and intelligent search
4
- * capabilities. It performs sentiment analysis, detects issues, and enables you to automatically
5
- * categorize contacts.</p>
6
- * <p>Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent
7
- * conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations using
8
- * Contact Lens</a> in the <i>Amazon Connect Administrator Guide</i>. </p>
2
+ * <ul>
3
+ * <li>
4
+ * <p>
5
+ * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Operations_Amazon_Connect_Contact_Lens.html">Contact Lens actions</a>
6
+ * </p>
7
+ * </li>
8
+ * <li>
9
+ * <p>
10
+ * <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_Types_Amazon_Connect_Contact_Lens.html">Contact Lens data types</a>
11
+ * </p>
12
+ * </li>
13
+ * </ul>
14
+ * <p>Amazon Connect Contact Lens enables you to analyze conversations between customer and agents, by using
15
+ * speech transcription, natural language processing, and intelligent search capabilities.
16
+ * It performs sentiment analysis, detects issues, and enables you to automatically
17
+ * categorize contacts.</p>
18
+ * <p>Amazon Connect Contact Lens provides both real-time and post-call analytics of customer-agent
19
+ * conversations. For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/analyze-conversations.html">Analyze conversations
20
+ * using speech analytics</a> in the <i>Amazon Connect Administrator
21
+ * Guide</i>. </p>
9
22
  *
10
23
  * @packageDocumentation
11
24
  */
@@ -54,7 +54,7 @@ export interface ListRealtimeContactAnalysisSegmentsRequest {
54
54
  */
55
55
  ContactId: string | undefined;
56
56
  /**
57
- * <p>The maximimum number of results to return per page.</p>
57
+ * <p>The maximum number of results to return per page.</p>
58
58
  * @public
59
59
  */
60
60
  MaxResults?: number;
@@ -93,8 +93,8 @@ export interface CategoryDetails {
93
93
  PointsOfInterest: PointOfInterest[] | undefined;
94
94
  }
95
95
  /**
96
- * <p>Provides the category rules that are used to automatically categorize contacts based on
97
- * uttered keywords and phrases.</p>
96
+ * <p>Provides the category rules that are used to automatically categorize contacts based
97
+ * on uttered keywords and phrases.</p>
98
98
  * @public
99
99
  */
100
100
  export interface Categories {
@@ -110,7 +110,87 @@ export interface Categories {
110
110
  MatchedDetails: Record<string, CategoryDetails> | undefined;
111
111
  }
112
112
  /**
113
- * <p>For characters that were detected as issues, where they occur in the transcript.</p>
113
+ * @public
114
+ * @enum
115
+ */
116
+ export declare const PostContactSummaryFailureCode: {
117
+ readonly FAILED_SAFETY_GUIDELINES: "FAILED_SAFETY_GUIDELINES";
118
+ readonly INSUFFICIENT_CONVERSATION_CONTENT: "INSUFFICIENT_CONVERSATION_CONTENT";
119
+ readonly INTERNAL_ERROR: "INTERNAL_ERROR";
120
+ readonly INVALID_ANALYSIS_CONFIGURATION: "INVALID_ANALYSIS_CONFIGURATION";
121
+ readonly QUOTA_EXCEEDED: "QUOTA_EXCEEDED";
122
+ };
123
+ /**
124
+ * @public
125
+ */
126
+ export type PostContactSummaryFailureCode = (typeof PostContactSummaryFailureCode)[keyof typeof PostContactSummaryFailureCode];
127
+ /**
128
+ * @public
129
+ * @enum
130
+ */
131
+ export declare const PostContactSummaryStatus: {
132
+ readonly COMPLETED: "COMPLETED";
133
+ readonly FAILED: "FAILED";
134
+ };
135
+ /**
136
+ * @public
137
+ */
138
+ export type PostContactSummaryStatus = (typeof PostContactSummaryStatus)[keyof typeof PostContactSummaryStatus];
139
+ /**
140
+ * <p>Information about the post-contact summary.</p>
141
+ * @public
142
+ */
143
+ export interface PostContactSummary {
144
+ /**
145
+ * <p>The content of the summary.</p>
146
+ * @public
147
+ */
148
+ Content?: string;
149
+ /**
150
+ * <p>Whether the summary was successfully COMPLETED or FAILED to be generated.</p>
151
+ * @public
152
+ */
153
+ Status: PostContactSummaryStatus | undefined;
154
+ /**
155
+ * <p>If the summary failed to be generated, one of the following failure codes
156
+ * occurs:</p>
157
+ * <ul>
158
+ * <li>
159
+ * <p>
160
+ * <code>QUOTA_EXCEEDED</code>: The number of concurrent analytics jobs reached
161
+ * your service quota.</p>
162
+ * </li>
163
+ * <li>
164
+ * <p>
165
+ * <code>INSUFFICIENT_CONVERSATION_CONTENT</code>: The conversation needs to have
166
+ * at least one turn from both the participants in order to generate the
167
+ * summary.</p>
168
+ * </li>
169
+ * <li>
170
+ * <p>
171
+ * <code>FAILED_SAFETY_GUIDELINES</code>: The generated summary cannot be
172
+ * provided because it failed to meet system safety guidelines.</p>
173
+ * </li>
174
+ * <li>
175
+ * <p>
176
+ * <code>INVALID_ANALYSIS_CONFIGURATION</code>: This code occurs when, for
177
+ * example, you're using a
178
+ * <a href="https://docs.aws.amazon.com/connect/latest/adminguide/supported-languages.html#supported-languages-contact-lens">language</a>
179
+ * that isn't supported by generative AI-powered post-contact summaries.
180
+ * </p>
181
+ * </li>
182
+ * <li>
183
+ * <p>
184
+ * <code>INTERNAL_ERROR</code>: Internal system error.</p>
185
+ * </li>
186
+ * </ul>
187
+ * @public
188
+ */
189
+ FailureCode?: PostContactSummaryFailureCode;
190
+ }
191
+ /**
192
+ * <p>For characters that were detected as issues, where they occur in the
193
+ * transcript.</p>
114
194
  * @public
115
195
  */
116
196
  export interface CharacterOffsets {
@@ -126,8 +206,8 @@ export interface CharacterOffsets {
126
206
  EndOffsetChar: number | undefined;
127
207
  }
128
208
  /**
129
- * <p>Potential issues that are detected based on an artificial intelligence analysis of each
130
- * turn in the conversation.</p>
209
+ * <p>Potential issues that are detected based on an artificial intelligence analysis of
210
+ * each turn in the conversation.</p>
131
211
  * @public
132
212
  */
133
213
  export interface IssueDetected {
@@ -161,7 +241,7 @@ export interface Transcript {
161
241
  */
162
242
  Id: string | undefined;
163
243
  /**
164
- * <p>The identifier of the participant.</p>
244
+ * <p>The identifier of the participant. Valid values are CUSTOMER or AGENT.</p>
165
245
  * @public
166
246
  */
167
247
  ParticipantId: string | undefined;
@@ -186,7 +266,7 @@ export interface Transcript {
186
266
  */
187
267
  EndOffsetMillis: number | undefined;
188
268
  /**
189
- * <p>The sentiment of the detected for this piece of transcript.</p>
269
+ * <p>The sentiment detected for this piece of transcript.</p>
190
270
  * @public
191
271
  */
192
272
  Sentiment: SentimentValue | undefined;
@@ -211,6 +291,11 @@ export interface RealtimeContactAnalysisSegment {
211
291
  * @public
212
292
  */
213
293
  Categories?: Categories;
294
+ /**
295
+ * <p>Information about the post-contact summary.</p>
296
+ * @public
297
+ */
298
+ PostContactSummary?: PostContactSummary;
214
299
  }
215
300
  /**
216
301
  * @public
@@ -222,18 +307,20 @@ export interface ListRealtimeContactAnalysisSegmentsResponse {
222
307
  */
223
308
  Segments: RealtimeContactAnalysisSegment[] | undefined;
224
309
  /**
225
- * <p>If there are additional results, this is the token for the next set of results. If response includes <code>nextToken</code> there are two possible scenarios:</p>
310
+ * <p>If there are additional results, this is the token for the next set of results. If response includes <code>nextToken</code> there are two possible
311
+ * scenarios:</p>
226
312
  * <ul>
227
313
  * <li>
228
314
  * <p>There are more segments so another call is required to get them.</p>
229
315
  * </li>
230
316
  * <li>
231
- * <p>There are no more segments at this time, but more may be available later (real-time
232
- * analysis is in progress) so the client should call the operation again to get new
233
- * segments.</p>
317
+ * <p>There are no more segments at this time, but more may be available later
318
+ * (real-time analysis is in progress) so the client should call the operation
319
+ * again to get new segments.</p>
234
320
  * </li>
235
321
  * </ul>
236
- * <p>If response does not include <code>nextToken</code>, the analysis is completed (successfully or failed) and there are no more segments to retrieve.</p>
322
+ * <p>If response does not include <code>nextToken</code>, the analysis is completed
323
+ * (successfully or failed) and there are no more segments to retrieve.</p>
237
324
  * @public
238
325
  */
239
326
  NextToken?: string;
@@ -41,6 +41,26 @@ export interface Categories {
41
41
  MatchedCategories: string[] | undefined;
42
42
  MatchedDetails: Record<string, CategoryDetails> | undefined;
43
43
  }
44
+ export declare const PostContactSummaryFailureCode: {
45
+ readonly FAILED_SAFETY_GUIDELINES: "FAILED_SAFETY_GUIDELINES";
46
+ readonly INSUFFICIENT_CONVERSATION_CONTENT: "INSUFFICIENT_CONVERSATION_CONTENT";
47
+ readonly INTERNAL_ERROR: "INTERNAL_ERROR";
48
+ readonly INVALID_ANALYSIS_CONFIGURATION: "INVALID_ANALYSIS_CONFIGURATION";
49
+ readonly QUOTA_EXCEEDED: "QUOTA_EXCEEDED";
50
+ };
51
+ export type PostContactSummaryFailureCode =
52
+ (typeof PostContactSummaryFailureCode)[keyof typeof PostContactSummaryFailureCode];
53
+ export declare const PostContactSummaryStatus: {
54
+ readonly COMPLETED: "COMPLETED";
55
+ readonly FAILED: "FAILED";
56
+ };
57
+ export type PostContactSummaryStatus =
58
+ (typeof PostContactSummaryStatus)[keyof typeof PostContactSummaryStatus];
59
+ export interface PostContactSummary {
60
+ Content?: string;
61
+ Status: PostContactSummaryStatus | undefined;
62
+ FailureCode?: PostContactSummaryFailureCode;
63
+ }
44
64
  export interface CharacterOffsets {
45
65
  BeginOffsetChar: number | undefined;
46
66
  EndOffsetChar: number | undefined;
@@ -68,6 +88,7 @@ export interface Transcript {
68
88
  export interface RealtimeContactAnalysisSegment {
69
89
  Transcript?: Transcript;
70
90
  Categories?: Categories;
91
+ PostContactSummary?: PostContactSummary;
71
92
  }
72
93
  export interface ListRealtimeContactAnalysisSegmentsResponse {
73
94
  Segments: RealtimeContactAnalysisSegment[] | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connect-contact-lens",
3
3
  "description": "AWS SDK for JavaScript Connect Contact Lens Client for Node.js, Browser and React Native",
4
- "version": "3.616.0",
4
+ "version": "3.620.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-connect-contact-lens",
@@ -20,40 +20,40 @@
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.616.0",
24
- "@aws-sdk/client-sts": "3.616.0",
25
- "@aws-sdk/core": "3.616.0",
26
- "@aws-sdk/credential-provider-node": "3.616.0",
27
- "@aws-sdk/middleware-host-header": "3.616.0",
23
+ "@aws-sdk/client-sso-oidc": "3.620.0",
24
+ "@aws-sdk/client-sts": "3.620.0",
25
+ "@aws-sdk/core": "3.620.0",
26
+ "@aws-sdk/credential-provider-node": "3.620.0",
27
+ "@aws-sdk/middleware-host-header": "3.620.0",
28
28
  "@aws-sdk/middleware-logger": "3.609.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.616.0",
30
- "@aws-sdk/middleware-user-agent": "3.616.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.620.0",
30
+ "@aws-sdk/middleware-user-agent": "3.620.0",
31
31
  "@aws-sdk/region-config-resolver": "3.614.0",
32
32
  "@aws-sdk/types": "3.609.0",
33
33
  "@aws-sdk/util-endpoints": "3.614.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.609.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.614.0",
36
36
  "@smithy/config-resolver": "^3.0.5",
37
- "@smithy/core": "^2.2.7",
38
- "@smithy/fetch-http-handler": "^3.2.2",
37
+ "@smithy/core": "^2.3.0",
38
+ "@smithy/fetch-http-handler": "^3.2.3",
39
39
  "@smithy/hash-node": "^3.0.3",
40
40
  "@smithy/invalid-dependency": "^3.0.3",
41
- "@smithy/middleware-content-length": "^3.0.4",
42
- "@smithy/middleware-endpoint": "^3.0.5",
43
- "@smithy/middleware-retry": "^3.0.10",
41
+ "@smithy/middleware-content-length": "^3.0.5",
42
+ "@smithy/middleware-endpoint": "^3.1.0",
43
+ "@smithy/middleware-retry": "^3.0.12",
44
44
  "@smithy/middleware-serde": "^3.0.3",
45
45
  "@smithy/middleware-stack": "^3.0.3",
46
46
  "@smithy/node-config-provider": "^3.1.4",
47
- "@smithy/node-http-handler": "^3.1.3",
48
- "@smithy/protocol-http": "^4.0.4",
49
- "@smithy/smithy-client": "^3.1.8",
47
+ "@smithy/node-http-handler": "^3.1.4",
48
+ "@smithy/protocol-http": "^4.1.0",
49
+ "@smithy/smithy-client": "^3.1.10",
50
50
  "@smithy/types": "^3.3.0",
51
51
  "@smithy/url-parser": "^3.0.3",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.10",
56
- "@smithy/util-defaults-mode-node": "^3.0.10",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.12",
56
+ "@smithy/util-defaults-mode-node": "^3.0.12",
57
57
  "@smithy/util-endpoints": "^2.0.5",
58
58
  "@smithy/util-middleware": "^3.0.3",
59
59
  "@smithy/util-retry": "^3.0.3",