@aws-sdk/client-voice-id 3.312.0 → 3.316.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.
@@ -29,232 +29,186 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
29
29
  import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/UpdateDomainCommand";
30
30
  import { UpdateWatchlistCommandInput, UpdateWatchlistCommandOutput } from "./commands/UpdateWatchlistCommand";
31
31
  import { VoiceIDClient } from "./VoiceIDClient";
32
- /**
33
- * @public
34
- * <p>Amazon Connect Voice ID provides real-time caller authentication and fraud risk detection, which
35
- * make voice interactions in contact centers more secure and efficient.</p>
36
- */
37
- export declare class VoiceID extends VoiceIDClient {
32
+ export interface VoiceID {
38
33
  /**
39
- * @public
40
- * <p>Associates the fraudsters with the watchlist specified in the same domain. </p>
34
+ * @see {@link AssociateFraudsterCommand}
41
35
  */
42
36
  associateFraudster(args: AssociateFraudsterCommandInput, options?: __HttpHandlerOptions): Promise<AssociateFraudsterCommandOutput>;
43
37
  associateFraudster(args: AssociateFraudsterCommandInput, cb: (err: any, data?: AssociateFraudsterCommandOutput) => void): void;
44
38
  associateFraudster(args: AssociateFraudsterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateFraudsterCommandOutput) => void): void;
45
39
  /**
46
- * @public
47
- * <p>Creates a domain that contains all Amazon Connect Voice ID data, such as speakers, fraudsters,
48
- * customer audio, and voiceprints. Every domain is created with a default watchlist that fraudsters can be a part of.</p>
40
+ * @see {@link CreateDomainCommand}
49
41
  */
50
42
  createDomain(args: CreateDomainCommandInput, options?: __HttpHandlerOptions): Promise<CreateDomainCommandOutput>;
51
43
  createDomain(args: CreateDomainCommandInput, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
52
44
  createDomain(args: CreateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainCommandOutput) => void): void;
53
45
  /**
54
- * @public
55
- * <p>Creates a watchlist that fraudsters can be a part of.</p>
46
+ * @see {@link CreateWatchlistCommand}
56
47
  */
57
48
  createWatchlist(args: CreateWatchlistCommandInput, options?: __HttpHandlerOptions): Promise<CreateWatchlistCommandOutput>;
58
49
  createWatchlist(args: CreateWatchlistCommandInput, cb: (err: any, data?: CreateWatchlistCommandOutput) => void): void;
59
50
  createWatchlist(args: CreateWatchlistCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWatchlistCommandOutput) => void): void;
60
51
  /**
61
- * @public
62
- * <p>Deletes the specified domain from Voice ID.</p>
52
+ * @see {@link DeleteDomainCommand}
63
53
  */
64
54
  deleteDomain(args: DeleteDomainCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainCommandOutput>;
65
55
  deleteDomain(args: DeleteDomainCommandInput, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
66
56
  deleteDomain(args: DeleteDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainCommandOutput) => void): void;
67
57
  /**
68
- * @public
69
- * <p>Deletes the specified fraudster from Voice ID. This action disassociates the fraudster from any watchlists it is a part of.</p>
58
+ * @see {@link DeleteFraudsterCommand}
70
59
  */
71
60
  deleteFraudster(args: DeleteFraudsterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFraudsterCommandOutput>;
72
61
  deleteFraudster(args: DeleteFraudsterCommandInput, cb: (err: any, data?: DeleteFraudsterCommandOutput) => void): void;
73
62
  deleteFraudster(args: DeleteFraudsterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFraudsterCommandOutput) => void): void;
74
63
  /**
75
- * @public
76
- * <p>Deletes the specified speaker from Voice ID.</p>
64
+ * @see {@link DeleteSpeakerCommand}
77
65
  */
78
66
  deleteSpeaker(args: DeleteSpeakerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSpeakerCommandOutput>;
79
67
  deleteSpeaker(args: DeleteSpeakerCommandInput, cb: (err: any, data?: DeleteSpeakerCommandOutput) => void): void;
80
68
  deleteSpeaker(args: DeleteSpeakerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSpeakerCommandOutput) => void): void;
81
69
  /**
82
- * @public
83
- * <p>Deletes the specified watchlist from Voice ID. This API throws an exception when
84
- * there are fraudsters in the watchlist that you are trying to delete. You must delete the
85
- * fraudsters, and then delete the watchlist. Every domain has a default watchlist which cannot be deleted. </p>
70
+ * @see {@link DeleteWatchlistCommand}
86
71
  */
87
72
  deleteWatchlist(args: DeleteWatchlistCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWatchlistCommandOutput>;
88
73
  deleteWatchlist(args: DeleteWatchlistCommandInput, cb: (err: any, data?: DeleteWatchlistCommandOutput) => void): void;
89
74
  deleteWatchlist(args: DeleteWatchlistCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWatchlistCommandOutput) => void): void;
90
75
  /**
91
- * @public
92
- * <p>Describes the specified domain.</p>
76
+ * @see {@link DescribeDomainCommand}
93
77
  */
94
78
  describeDomain(args: DescribeDomainCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDomainCommandOutput>;
95
79
  describeDomain(args: DescribeDomainCommandInput, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
96
80
  describeDomain(args: DescribeDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDomainCommandOutput) => void): void;
97
81
  /**
98
- * @public
99
- * <p>Describes the specified fraudster.</p>
82
+ * @see {@link DescribeFraudsterCommand}
100
83
  */
101
84
  describeFraudster(args: DescribeFraudsterCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFraudsterCommandOutput>;
102
85
  describeFraudster(args: DescribeFraudsterCommandInput, cb: (err: any, data?: DescribeFraudsterCommandOutput) => void): void;
103
86
  describeFraudster(args: DescribeFraudsterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFraudsterCommandOutput) => void): void;
104
87
  /**
105
- * @public
106
- * <p>Describes the specified fraudster registration job.</p>
88
+ * @see {@link DescribeFraudsterRegistrationJobCommand}
107
89
  */
108
90
  describeFraudsterRegistrationJob(args: DescribeFraudsterRegistrationJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFraudsterRegistrationJobCommandOutput>;
109
91
  describeFraudsterRegistrationJob(args: DescribeFraudsterRegistrationJobCommandInput, cb: (err: any, data?: DescribeFraudsterRegistrationJobCommandOutput) => void): void;
110
92
  describeFraudsterRegistrationJob(args: DescribeFraudsterRegistrationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFraudsterRegistrationJobCommandOutput) => void): void;
111
93
  /**
112
- * @public
113
- * <p>Describes the specified speaker.</p>
94
+ * @see {@link DescribeSpeakerCommand}
114
95
  */
115
96
  describeSpeaker(args: DescribeSpeakerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpeakerCommandOutput>;
116
97
  describeSpeaker(args: DescribeSpeakerCommandInput, cb: (err: any, data?: DescribeSpeakerCommandOutput) => void): void;
117
98
  describeSpeaker(args: DescribeSpeakerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpeakerCommandOutput) => void): void;
118
99
  /**
119
- * @public
120
- * <p>Describes the specified speaker enrollment job.</p>
100
+ * @see {@link DescribeSpeakerEnrollmentJobCommand}
121
101
  */
122
102
  describeSpeakerEnrollmentJob(args: DescribeSpeakerEnrollmentJobCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSpeakerEnrollmentJobCommandOutput>;
123
103
  describeSpeakerEnrollmentJob(args: DescribeSpeakerEnrollmentJobCommandInput, cb: (err: any, data?: DescribeSpeakerEnrollmentJobCommandOutput) => void): void;
124
104
  describeSpeakerEnrollmentJob(args: DescribeSpeakerEnrollmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSpeakerEnrollmentJobCommandOutput) => void): void;
125
105
  /**
126
- * @public
127
- * <p>Describes the specified watchlist.</p>
106
+ * @see {@link DescribeWatchlistCommand}
128
107
  */
129
108
  describeWatchlist(args: DescribeWatchlistCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWatchlistCommandOutput>;
130
109
  describeWatchlist(args: DescribeWatchlistCommandInput, cb: (err: any, data?: DescribeWatchlistCommandOutput) => void): void;
131
110
  describeWatchlist(args: DescribeWatchlistCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWatchlistCommandOutput) => void): void;
132
111
  /**
133
- * @public
134
- * <p>Disassociates the fraudsters from the watchlist specified. Voice ID always expects a
135
- * fraudster to be a part of at least one watchlist. If
136
- * you try to disassociate a fraudster from its only watchlist, a <code>ValidationException</code> is thrown.
137
- * </p>
112
+ * @see {@link DisassociateFraudsterCommand}
138
113
  */
139
114
  disassociateFraudster(args: DisassociateFraudsterCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateFraudsterCommandOutput>;
140
115
  disassociateFraudster(args: DisassociateFraudsterCommandInput, cb: (err: any, data?: DisassociateFraudsterCommandOutput) => void): void;
141
116
  disassociateFraudster(args: DisassociateFraudsterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateFraudsterCommandOutput) => void): void;
142
117
  /**
143
- * @public
144
- * <p>Evaluates a specified session based on audio data accumulated during a streaming
145
- * Amazon Connect Voice ID call.</p>
118
+ * @see {@link EvaluateSessionCommand}
146
119
  */
147
120
  evaluateSession(args: EvaluateSessionCommandInput, options?: __HttpHandlerOptions): Promise<EvaluateSessionCommandOutput>;
148
121
  evaluateSession(args: EvaluateSessionCommandInput, cb: (err: any, data?: EvaluateSessionCommandOutput) => void): void;
149
122
  evaluateSession(args: EvaluateSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EvaluateSessionCommandOutput) => void): void;
150
123
  /**
151
- * @public
152
- * <p>Lists all the domains in the Amazon Web Services account. </p>
124
+ * @see {@link ListDomainsCommand}
153
125
  */
154
126
  listDomains(args: ListDomainsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainsCommandOutput>;
155
127
  listDomains(args: ListDomainsCommandInput, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
156
128
  listDomains(args: ListDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainsCommandOutput) => void): void;
157
129
  /**
158
- * @public
159
- * <p>Lists all the fraudster registration jobs in the domain with the given
160
- * <code>JobStatus</code>. If <code>JobStatus</code> is not provided, this lists all
161
- * fraudster registration jobs in the given domain. </p>
130
+ * @see {@link ListFraudsterRegistrationJobsCommand}
162
131
  */
163
132
  listFraudsterRegistrationJobs(args: ListFraudsterRegistrationJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListFraudsterRegistrationJobsCommandOutput>;
164
133
  listFraudsterRegistrationJobs(args: ListFraudsterRegistrationJobsCommandInput, cb: (err: any, data?: ListFraudsterRegistrationJobsCommandOutput) => void): void;
165
134
  listFraudsterRegistrationJobs(args: ListFraudsterRegistrationJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFraudsterRegistrationJobsCommandOutput) => void): void;
166
135
  /**
167
- * @public
168
- * <p>Lists all fraudsters in a specified watchlist or domain.</p>
136
+ * @see {@link ListFraudstersCommand}
169
137
  */
170
138
  listFraudsters(args: ListFraudstersCommandInput, options?: __HttpHandlerOptions): Promise<ListFraudstersCommandOutput>;
171
139
  listFraudsters(args: ListFraudstersCommandInput, cb: (err: any, data?: ListFraudstersCommandOutput) => void): void;
172
140
  listFraudsters(args: ListFraudstersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFraudstersCommandOutput) => void): void;
173
141
  /**
174
- * @public
175
- * <p>Lists all the speaker enrollment jobs in the domain with the specified
176
- * <code>JobStatus</code>. If <code>JobStatus</code> is not provided, this lists all
177
- * jobs with all possible speaker enrollment job statuses.</p>
142
+ * @see {@link ListSpeakerEnrollmentJobsCommand}
178
143
  */
179
144
  listSpeakerEnrollmentJobs(args: ListSpeakerEnrollmentJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListSpeakerEnrollmentJobsCommandOutput>;
180
145
  listSpeakerEnrollmentJobs(args: ListSpeakerEnrollmentJobsCommandInput, cb: (err: any, data?: ListSpeakerEnrollmentJobsCommandOutput) => void): void;
181
146
  listSpeakerEnrollmentJobs(args: ListSpeakerEnrollmentJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSpeakerEnrollmentJobsCommandOutput) => void): void;
182
147
  /**
183
- * @public
184
- * <p>Lists all speakers in a specified domain.</p>
148
+ * @see {@link ListSpeakersCommand}
185
149
  */
186
150
  listSpeakers(args: ListSpeakersCommandInput, options?: __HttpHandlerOptions): Promise<ListSpeakersCommandOutput>;
187
151
  listSpeakers(args: ListSpeakersCommandInput, cb: (err: any, data?: ListSpeakersCommandOutput) => void): void;
188
152
  listSpeakers(args: ListSpeakersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSpeakersCommandOutput) => void): void;
189
153
  /**
190
- * @public
191
- * <p>Lists all tags associated with a specified Voice ID resource.</p>
154
+ * @see {@link ListTagsForResourceCommand}
192
155
  */
193
156
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
194
157
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
195
158
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
196
159
  /**
197
- * @public
198
- * <p>Lists all watchlists in a specified domain.</p>
160
+ * @see {@link ListWatchlistsCommand}
199
161
  */
200
162
  listWatchlists(args: ListWatchlistsCommandInput, options?: __HttpHandlerOptions): Promise<ListWatchlistsCommandOutput>;
201
163
  listWatchlists(args: ListWatchlistsCommandInput, cb: (err: any, data?: ListWatchlistsCommandOutput) => void): void;
202
164
  listWatchlists(args: ListWatchlistsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWatchlistsCommandOutput) => void): void;
203
165
  /**
204
- * @public
205
- * <p>Opts out a speaker from Voice ID. A speaker can be opted out regardless of whether or
206
- * not they already exist in Voice ID. If they don't yet exist, a new speaker is created
207
- * in an opted out state. If they already exist, their existing status is overridden and
208
- * they are opted out. Enrollment and evaluation authentication requests are rejected for
209
- * opted out speakers, and opted out speakers have no voice embeddings stored in
210
- * Voice ID.</p>
166
+ * @see {@link OptOutSpeakerCommand}
211
167
  */
212
168
  optOutSpeaker(args: OptOutSpeakerCommandInput, options?: __HttpHandlerOptions): Promise<OptOutSpeakerCommandOutput>;
213
169
  optOutSpeaker(args: OptOutSpeakerCommandInput, cb: (err: any, data?: OptOutSpeakerCommandOutput) => void): void;
214
170
  optOutSpeaker(args: OptOutSpeakerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: OptOutSpeakerCommandOutput) => void): void;
215
171
  /**
216
- * @public
217
- * <p>Starts a new batch fraudster registration job using provided details.</p>
172
+ * @see {@link StartFraudsterRegistrationJobCommand}
218
173
  */
219
174
  startFraudsterRegistrationJob(args: StartFraudsterRegistrationJobCommandInput, options?: __HttpHandlerOptions): Promise<StartFraudsterRegistrationJobCommandOutput>;
220
175
  startFraudsterRegistrationJob(args: StartFraudsterRegistrationJobCommandInput, cb: (err: any, data?: StartFraudsterRegistrationJobCommandOutput) => void): void;
221
176
  startFraudsterRegistrationJob(args: StartFraudsterRegistrationJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFraudsterRegistrationJobCommandOutput) => void): void;
222
177
  /**
223
- * @public
224
- * <p>Starts a new batch speaker enrollment job using specified details.</p>
178
+ * @see {@link StartSpeakerEnrollmentJobCommand}
225
179
  */
226
180
  startSpeakerEnrollmentJob(args: StartSpeakerEnrollmentJobCommandInput, options?: __HttpHandlerOptions): Promise<StartSpeakerEnrollmentJobCommandOutput>;
227
181
  startSpeakerEnrollmentJob(args: StartSpeakerEnrollmentJobCommandInput, cb: (err: any, data?: StartSpeakerEnrollmentJobCommandOutput) => void): void;
228
182
  startSpeakerEnrollmentJob(args: StartSpeakerEnrollmentJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartSpeakerEnrollmentJobCommandOutput) => void): void;
229
183
  /**
230
- * @public
231
- * <p>Tags a Voice ID resource with the provided list of tags.</p>
184
+ * @see {@link TagResourceCommand}
232
185
  */
233
186
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
234
187
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
235
188
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
236
189
  /**
237
- * @public
238
- * <p>Removes specified tags from a specified Amazon Connect Voice ID resource.</p>
190
+ * @see {@link UntagResourceCommand}
239
191
  */
240
192
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
241
193
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
242
194
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
243
195
  /**
244
- * @public
245
- * <p>Updates the specified domain. This API has clobber behavior, and clears and replaces
246
- * all attributes. If an optional field, such as 'Description' is not provided, it is
247
- * removed from the domain.</p>
196
+ * @see {@link UpdateDomainCommand}
248
197
  */
249
198
  updateDomain(args: UpdateDomainCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainCommandOutput>;
250
199
  updateDomain(args: UpdateDomainCommandInput, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
251
200
  updateDomain(args: UpdateDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainCommandOutput) => void): void;
252
201
  /**
253
- * @public
254
- * <p>Updates the specified watchlist. Every domain has a default watchlist which cannot be updated.
255
- * </p>
202
+ * @see {@link UpdateWatchlistCommand}
256
203
  */
257
204
  updateWatchlist(args: UpdateWatchlistCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWatchlistCommandOutput>;
258
205
  updateWatchlist(args: UpdateWatchlistCommandInput, cb: (err: any, data?: UpdateWatchlistCommandOutput) => void): void;
259
206
  updateWatchlist(args: UpdateWatchlistCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWatchlistCommandOutput) => void): void;
260
207
  }
208
+ /**
209
+ * @public
210
+ * <p>Amazon Connect Voice ID provides real-time caller authentication and fraud risk detection, which
211
+ * make voice interactions in contact centers more secure and efficient.</p>
212
+ */
213
+ export declare class VoiceID extends VoiceIDClient implements VoiceID {
214
+ }
@@ -116,7 +116,7 @@ import {
116
116
  UpdateWatchlistCommandOutput,
117
117
  } from "./commands/UpdateWatchlistCommand";
118
118
  import { VoiceIDClient } from "./VoiceIDClient";
119
- export declare class VoiceID extends VoiceIDClient {
119
+ export interface VoiceID {
120
120
  associateFraudster(
121
121
  args: AssociateFraudsterCommandInput,
122
122
  options?: __HttpHandlerOptions
@@ -495,3 +495,4 @@ export declare class VoiceID extends VoiceIDClient {
495
495
  cb: (err: any, data?: UpdateWatchlistCommandOutput) => void
496
496
  ): void;
497
497
  }
498
+ export declare class VoiceID extends VoiceIDClient implements VoiceID {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-voice-id",
3
3
  "description": "AWS SDK for JavaScript Voice Id Client for Node.js, Browser and React Native",
4
- "version": "3.312.0",
4
+ "version": "3.316.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,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.312.0",
24
+ "@aws-sdk/client-sts": "3.316.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.310.0",
26
+ "@aws-sdk/credential-provider-node": "3.316.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -40,14 +40,14 @@
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.310.0",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.310.0",
43
+ "@aws-sdk/smithy-client": "3.316.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.310.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.310.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.316.0",
51
51
  "@aws-sdk/util-endpoints": "3.310.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",