@aws-sdk/client-codestar-notifications 3.130.0 → 3.141.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 +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateNotificationRuleCommand.js +2 -2
- package/dist-cjs/commands/DeleteNotificationRuleCommand.js +2 -2
- package/dist-cjs/commands/DeleteTargetCommand.js +2 -2
- package/dist-cjs/commands/DescribeNotificationRuleCommand.js +2 -2
- package/dist-cjs/commands/ListEventTypesCommand.js +2 -2
- package/dist-cjs/commands/ListNotificationRulesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListTargetsCommand.js +2 -2
- package/dist-cjs/commands/SubscribeCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UnsubscribeCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateNotificationRuleCommand.js +2 -2
- package/dist-cjs/models/models_0.js +145 -211
- package/dist-es/commands/CreateNotificationRuleCommand.js +3 -3
- package/dist-es/commands/DeleteNotificationRuleCommand.js +3 -3
- package/dist-es/commands/DeleteTargetCommand.js +3 -3
- package/dist-es/commands/DescribeNotificationRuleCommand.js +3 -3
- package/dist-es/commands/ListEventTypesCommand.js +3 -3
- package/dist-es/commands/ListNotificationRulesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListTargetsCommand.js +3 -3
- package/dist-es/commands/SubscribeCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UnsubscribeCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateNotificationRuleCommand.js +3 -3
- package/dist-es/models/models_0.js +33 -132
- package/dist-types/models/models_0.d.ts +132 -198
- package/dist-types/ts3.4/models/models_0.d.ts +66 -132
- package/package.json +7 -7
|
@@ -39,10 +39,6 @@ export interface Target {
|
|
|
39
39
|
|
|
40
40
|
TargetAddress?: string;
|
|
41
41
|
}
|
|
42
|
-
export declare namespace Target {
|
|
43
|
-
|
|
44
|
-
const filterSensitiveLog: (obj: Target) => any;
|
|
45
|
-
}
|
|
46
42
|
export interface CreateNotificationRuleRequest {
|
|
47
43
|
|
|
48
44
|
Name: string | undefined;
|
|
@@ -61,18 +57,10 @@ export interface CreateNotificationRuleRequest {
|
|
|
61
57
|
|
|
62
58
|
Status?: NotificationRuleStatus | string;
|
|
63
59
|
}
|
|
64
|
-
export declare namespace CreateNotificationRuleRequest {
|
|
65
|
-
|
|
66
|
-
const filterSensitiveLog: (obj: CreateNotificationRuleRequest) => any;
|
|
67
|
-
}
|
|
68
60
|
export interface CreateNotificationRuleResult {
|
|
69
61
|
|
|
70
62
|
Arn?: string;
|
|
71
63
|
}
|
|
72
|
-
export declare namespace CreateNotificationRuleResult {
|
|
73
|
-
|
|
74
|
-
const filterSensitiveLog: (obj: CreateNotificationRuleResult) => any;
|
|
75
|
-
}
|
|
76
64
|
|
|
77
65
|
export declare class LimitExceededException extends __BaseException {
|
|
78
66
|
readonly name: "LimitExceededException";
|
|
@@ -101,42 +89,22 @@ export interface DeleteNotificationRuleRequest {
|
|
|
101
89
|
|
|
102
90
|
Arn: string | undefined;
|
|
103
91
|
}
|
|
104
|
-
export declare namespace DeleteNotificationRuleRequest {
|
|
105
|
-
|
|
106
|
-
const filterSensitiveLog: (obj: DeleteNotificationRuleRequest) => any;
|
|
107
|
-
}
|
|
108
92
|
export interface DeleteNotificationRuleResult {
|
|
109
93
|
|
|
110
94
|
Arn?: string;
|
|
111
95
|
}
|
|
112
|
-
export declare namespace DeleteNotificationRuleResult {
|
|
113
|
-
|
|
114
|
-
const filterSensitiveLog: (obj: DeleteNotificationRuleResult) => any;
|
|
115
|
-
}
|
|
116
96
|
export interface DeleteTargetRequest {
|
|
117
97
|
|
|
118
98
|
TargetAddress: string | undefined;
|
|
119
99
|
|
|
120
100
|
ForceUnsubscribeAll?: boolean;
|
|
121
101
|
}
|
|
122
|
-
export declare namespace DeleteTargetRequest {
|
|
123
|
-
|
|
124
|
-
const filterSensitiveLog: (obj: DeleteTargetRequest) => any;
|
|
125
|
-
}
|
|
126
102
|
export interface DeleteTargetResult {
|
|
127
103
|
}
|
|
128
|
-
export declare namespace DeleteTargetResult {
|
|
129
|
-
|
|
130
|
-
const filterSensitiveLog: (obj: DeleteTargetResult) => any;
|
|
131
|
-
}
|
|
132
104
|
export interface DescribeNotificationRuleRequest {
|
|
133
105
|
|
|
134
106
|
Arn: string | undefined;
|
|
135
107
|
}
|
|
136
|
-
export declare namespace DescribeNotificationRuleRequest {
|
|
137
|
-
|
|
138
|
-
const filterSensitiveLog: (obj: DescribeNotificationRuleRequest) => any;
|
|
139
|
-
}
|
|
140
108
|
|
|
141
109
|
export interface EventTypeSummary {
|
|
142
110
|
|
|
@@ -148,10 +116,6 @@ export interface EventTypeSummary {
|
|
|
148
116
|
|
|
149
117
|
ResourceType?: string;
|
|
150
118
|
}
|
|
151
|
-
export declare namespace EventTypeSummary {
|
|
152
|
-
|
|
153
|
-
const filterSensitiveLog: (obj: EventTypeSummary) => any;
|
|
154
|
-
}
|
|
155
119
|
export declare enum TargetStatus {
|
|
156
120
|
ACTIVE = "ACTIVE",
|
|
157
121
|
DEACTIVATED = "DEACTIVATED",
|
|
@@ -168,10 +132,6 @@ export interface TargetSummary {
|
|
|
168
132
|
|
|
169
133
|
TargetStatus?: TargetStatus | string;
|
|
170
134
|
}
|
|
171
|
-
export declare namespace TargetSummary {
|
|
172
|
-
|
|
173
|
-
const filterSensitiveLog: (obj: TargetSummary) => any;
|
|
174
|
-
}
|
|
175
135
|
export interface DescribeNotificationRuleResult {
|
|
176
136
|
|
|
177
137
|
Arn: string | undefined;
|
|
@@ -196,10 +156,6 @@ export interface DescribeNotificationRuleResult {
|
|
|
196
156
|
|
|
197
157
|
Tags?: Record<string, string>;
|
|
198
158
|
}
|
|
199
|
-
export declare namespace DescribeNotificationRuleResult {
|
|
200
|
-
|
|
201
|
-
const filterSensitiveLog: (obj: DescribeNotificationRuleResult) => any;
|
|
202
|
-
}
|
|
203
159
|
|
|
204
160
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
205
161
|
readonly name: "ResourceNotFoundException";
|
|
@@ -227,10 +183,6 @@ export interface ListEventTypesFilter {
|
|
|
227
183
|
|
|
228
184
|
Value: string | undefined;
|
|
229
185
|
}
|
|
230
|
-
export declare namespace ListEventTypesFilter {
|
|
231
|
-
|
|
232
|
-
const filterSensitiveLog: (obj: ListEventTypesFilter) => any;
|
|
233
|
-
}
|
|
234
186
|
export interface ListEventTypesRequest {
|
|
235
187
|
|
|
236
188
|
Filters?: ListEventTypesFilter[];
|
|
@@ -239,20 +191,12 @@ export interface ListEventTypesRequest {
|
|
|
239
191
|
|
|
240
192
|
MaxResults?: number;
|
|
241
193
|
}
|
|
242
|
-
export declare namespace ListEventTypesRequest {
|
|
243
|
-
|
|
244
|
-
const filterSensitiveLog: (obj: ListEventTypesRequest) => any;
|
|
245
|
-
}
|
|
246
194
|
export interface ListEventTypesResult {
|
|
247
195
|
|
|
248
196
|
EventTypes?: EventTypeSummary[];
|
|
249
197
|
|
|
250
198
|
NextToken?: string;
|
|
251
199
|
}
|
|
252
|
-
export declare namespace ListEventTypesResult {
|
|
253
|
-
|
|
254
|
-
const filterSensitiveLog: (obj: ListEventTypesResult) => any;
|
|
255
|
-
}
|
|
256
200
|
export declare enum ListNotificationRulesFilterName {
|
|
257
201
|
CREATED_BY = "CREATED_BY",
|
|
258
202
|
EVENT_TYPE_ID = "EVENT_TYPE_ID",
|
|
@@ -266,10 +210,6 @@ export interface ListNotificationRulesFilter {
|
|
|
266
210
|
|
|
267
211
|
Value: string | undefined;
|
|
268
212
|
}
|
|
269
|
-
export declare namespace ListNotificationRulesFilter {
|
|
270
|
-
|
|
271
|
-
const filterSensitiveLog: (obj: ListNotificationRulesFilter) => any;
|
|
272
|
-
}
|
|
273
213
|
export interface ListNotificationRulesRequest {
|
|
274
214
|
|
|
275
215
|
Filters?: ListNotificationRulesFilter[];
|
|
@@ -278,10 +218,6 @@ export interface ListNotificationRulesRequest {
|
|
|
278
218
|
|
|
279
219
|
MaxResults?: number;
|
|
280
220
|
}
|
|
281
|
-
export declare namespace ListNotificationRulesRequest {
|
|
282
|
-
|
|
283
|
-
const filterSensitiveLog: (obj: ListNotificationRulesRequest) => any;
|
|
284
|
-
}
|
|
285
221
|
|
|
286
222
|
export interface NotificationRuleSummary {
|
|
287
223
|
|
|
@@ -289,36 +225,20 @@ export interface NotificationRuleSummary {
|
|
|
289
225
|
|
|
290
226
|
Arn?: string;
|
|
291
227
|
}
|
|
292
|
-
export declare namespace NotificationRuleSummary {
|
|
293
|
-
|
|
294
|
-
const filterSensitiveLog: (obj: NotificationRuleSummary) => any;
|
|
295
|
-
}
|
|
296
228
|
export interface ListNotificationRulesResult {
|
|
297
229
|
|
|
298
230
|
NextToken?: string;
|
|
299
231
|
|
|
300
232
|
NotificationRules?: NotificationRuleSummary[];
|
|
301
233
|
}
|
|
302
|
-
export declare namespace ListNotificationRulesResult {
|
|
303
|
-
|
|
304
|
-
const filterSensitiveLog: (obj: ListNotificationRulesResult) => any;
|
|
305
|
-
}
|
|
306
234
|
export interface ListTagsForResourceRequest {
|
|
307
235
|
|
|
308
236
|
Arn: string | undefined;
|
|
309
237
|
}
|
|
310
|
-
export declare namespace ListTagsForResourceRequest {
|
|
311
|
-
|
|
312
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
313
|
-
}
|
|
314
238
|
export interface ListTagsForResourceResult {
|
|
315
239
|
|
|
316
240
|
Tags?: Record<string, string>;
|
|
317
241
|
}
|
|
318
|
-
export declare namespace ListTagsForResourceResult {
|
|
319
|
-
|
|
320
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResult) => any;
|
|
321
|
-
}
|
|
322
242
|
export declare enum ListTargetsFilterName {
|
|
323
243
|
TARGET_ADDRESS = "TARGET_ADDRESS",
|
|
324
244
|
TARGET_STATUS = "TARGET_STATUS",
|
|
@@ -331,10 +251,6 @@ export interface ListTargetsFilter {
|
|
|
331
251
|
|
|
332
252
|
Value: string | undefined;
|
|
333
253
|
}
|
|
334
|
-
export declare namespace ListTargetsFilter {
|
|
335
|
-
|
|
336
|
-
const filterSensitiveLog: (obj: ListTargetsFilter) => any;
|
|
337
|
-
}
|
|
338
254
|
export interface ListTargetsRequest {
|
|
339
255
|
|
|
340
256
|
Filters?: ListTargetsFilter[];
|
|
@@ -343,20 +259,12 @@ export interface ListTargetsRequest {
|
|
|
343
259
|
|
|
344
260
|
MaxResults?: number;
|
|
345
261
|
}
|
|
346
|
-
export declare namespace ListTargetsRequest {
|
|
347
|
-
|
|
348
|
-
const filterSensitiveLog: (obj: ListTargetsRequest) => any;
|
|
349
|
-
}
|
|
350
262
|
export interface ListTargetsResult {
|
|
351
263
|
|
|
352
264
|
Targets?: TargetSummary[];
|
|
353
265
|
|
|
354
266
|
NextToken?: string;
|
|
355
267
|
}
|
|
356
|
-
export declare namespace ListTargetsResult {
|
|
357
|
-
|
|
358
|
-
const filterSensitiveLog: (obj: ListTargetsResult) => any;
|
|
359
|
-
}
|
|
360
268
|
export interface SubscribeRequest {
|
|
361
269
|
|
|
362
270
|
Arn: string | undefined;
|
|
@@ -365,70 +273,38 @@ export interface SubscribeRequest {
|
|
|
365
273
|
|
|
366
274
|
ClientRequestToken?: string;
|
|
367
275
|
}
|
|
368
|
-
export declare namespace SubscribeRequest {
|
|
369
|
-
|
|
370
|
-
const filterSensitiveLog: (obj: SubscribeRequest) => any;
|
|
371
|
-
}
|
|
372
276
|
export interface SubscribeResult {
|
|
373
277
|
|
|
374
278
|
Arn?: string;
|
|
375
279
|
}
|
|
376
|
-
export declare namespace SubscribeResult {
|
|
377
|
-
|
|
378
|
-
const filterSensitiveLog: (obj: SubscribeResult) => any;
|
|
379
|
-
}
|
|
380
280
|
export interface TagResourceRequest {
|
|
381
281
|
|
|
382
282
|
Arn: string | undefined;
|
|
383
283
|
|
|
384
284
|
Tags: Record<string, string> | undefined;
|
|
385
285
|
}
|
|
386
|
-
export declare namespace TagResourceRequest {
|
|
387
|
-
|
|
388
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
389
|
-
}
|
|
390
286
|
export interface TagResourceResult {
|
|
391
287
|
|
|
392
288
|
Tags?: Record<string, string>;
|
|
393
289
|
}
|
|
394
|
-
export declare namespace TagResourceResult {
|
|
395
|
-
|
|
396
|
-
const filterSensitiveLog: (obj: TagResourceResult) => any;
|
|
397
|
-
}
|
|
398
290
|
export interface UnsubscribeRequest {
|
|
399
291
|
|
|
400
292
|
Arn: string | undefined;
|
|
401
293
|
|
|
402
294
|
TargetAddress: string | undefined;
|
|
403
295
|
}
|
|
404
|
-
export declare namespace UnsubscribeRequest {
|
|
405
|
-
|
|
406
|
-
const filterSensitiveLog: (obj: UnsubscribeRequest) => any;
|
|
407
|
-
}
|
|
408
296
|
export interface UnsubscribeResult {
|
|
409
297
|
|
|
410
298
|
Arn: string | undefined;
|
|
411
299
|
}
|
|
412
|
-
export declare namespace UnsubscribeResult {
|
|
413
|
-
|
|
414
|
-
const filterSensitiveLog: (obj: UnsubscribeResult) => any;
|
|
415
|
-
}
|
|
416
300
|
export interface UntagResourceRequest {
|
|
417
301
|
|
|
418
302
|
Arn: string | undefined;
|
|
419
303
|
|
|
420
304
|
TagKeys: string[] | undefined;
|
|
421
305
|
}
|
|
422
|
-
export declare namespace UntagResourceRequest {
|
|
423
|
-
|
|
424
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
425
|
-
}
|
|
426
306
|
export interface UntagResourceResult {
|
|
427
307
|
}
|
|
428
|
-
export declare namespace UntagResourceResult {
|
|
429
|
-
|
|
430
|
-
const filterSensitiveLog: (obj: UntagResourceResult) => any;
|
|
431
|
-
}
|
|
432
308
|
export interface UpdateNotificationRuleRequest {
|
|
433
309
|
|
|
434
310
|
Arn: string | undefined;
|
|
@@ -443,13 +319,71 @@ export interface UpdateNotificationRuleRequest {
|
|
|
443
319
|
|
|
444
320
|
DetailType?: DetailType | string;
|
|
445
321
|
}
|
|
446
|
-
export declare namespace UpdateNotificationRuleRequest {
|
|
447
|
-
|
|
448
|
-
const filterSensitiveLog: (obj: UpdateNotificationRuleRequest) => any;
|
|
449
|
-
}
|
|
450
322
|
export interface UpdateNotificationRuleResult {
|
|
451
323
|
}
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
324
|
+
|
|
325
|
+
export declare const TargetFilterSensitiveLog: (obj: Target) => any;
|
|
326
|
+
|
|
327
|
+
export declare const CreateNotificationRuleRequestFilterSensitiveLog: (obj: CreateNotificationRuleRequest) => any;
|
|
328
|
+
|
|
329
|
+
export declare const CreateNotificationRuleResultFilterSensitiveLog: (obj: CreateNotificationRuleResult) => any;
|
|
330
|
+
|
|
331
|
+
export declare const DeleteNotificationRuleRequestFilterSensitiveLog: (obj: DeleteNotificationRuleRequest) => any;
|
|
332
|
+
|
|
333
|
+
export declare const DeleteNotificationRuleResultFilterSensitiveLog: (obj: DeleteNotificationRuleResult) => any;
|
|
334
|
+
|
|
335
|
+
export declare const DeleteTargetRequestFilterSensitiveLog: (obj: DeleteTargetRequest) => any;
|
|
336
|
+
|
|
337
|
+
export declare const DeleteTargetResultFilterSensitiveLog: (obj: DeleteTargetResult) => any;
|
|
338
|
+
|
|
339
|
+
export declare const DescribeNotificationRuleRequestFilterSensitiveLog: (obj: DescribeNotificationRuleRequest) => any;
|
|
340
|
+
|
|
341
|
+
export declare const EventTypeSummaryFilterSensitiveLog: (obj: EventTypeSummary) => any;
|
|
342
|
+
|
|
343
|
+
export declare const TargetSummaryFilterSensitiveLog: (obj: TargetSummary) => any;
|
|
344
|
+
|
|
345
|
+
export declare const DescribeNotificationRuleResultFilterSensitiveLog: (obj: DescribeNotificationRuleResult) => any;
|
|
346
|
+
|
|
347
|
+
export declare const ListEventTypesFilterFilterSensitiveLog: (obj: ListEventTypesFilter) => any;
|
|
348
|
+
|
|
349
|
+
export declare const ListEventTypesRequestFilterSensitiveLog: (obj: ListEventTypesRequest) => any;
|
|
350
|
+
|
|
351
|
+
export declare const ListEventTypesResultFilterSensitiveLog: (obj: ListEventTypesResult) => any;
|
|
352
|
+
|
|
353
|
+
export declare const ListNotificationRulesFilterFilterSensitiveLog: (obj: ListNotificationRulesFilter) => any;
|
|
354
|
+
|
|
355
|
+
export declare const ListNotificationRulesRequestFilterSensitiveLog: (obj: ListNotificationRulesRequest) => any;
|
|
356
|
+
|
|
357
|
+
export declare const NotificationRuleSummaryFilterSensitiveLog: (obj: NotificationRuleSummary) => any;
|
|
358
|
+
|
|
359
|
+
export declare const ListNotificationRulesResultFilterSensitiveLog: (obj: ListNotificationRulesResult) => any;
|
|
360
|
+
|
|
361
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
362
|
+
|
|
363
|
+
export declare const ListTagsForResourceResultFilterSensitiveLog: (obj: ListTagsForResourceResult) => any;
|
|
364
|
+
|
|
365
|
+
export declare const ListTargetsFilterFilterSensitiveLog: (obj: ListTargetsFilter) => any;
|
|
366
|
+
|
|
367
|
+
export declare const ListTargetsRequestFilterSensitiveLog: (obj: ListTargetsRequest) => any;
|
|
368
|
+
|
|
369
|
+
export declare const ListTargetsResultFilterSensitiveLog: (obj: ListTargetsResult) => any;
|
|
370
|
+
|
|
371
|
+
export declare const SubscribeRequestFilterSensitiveLog: (obj: SubscribeRequest) => any;
|
|
372
|
+
|
|
373
|
+
export declare const SubscribeResultFilterSensitiveLog: (obj: SubscribeResult) => any;
|
|
374
|
+
|
|
375
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
376
|
+
|
|
377
|
+
export declare const TagResourceResultFilterSensitiveLog: (obj: TagResourceResult) => any;
|
|
378
|
+
|
|
379
|
+
export declare const UnsubscribeRequestFilterSensitiveLog: (obj: UnsubscribeRequest) => any;
|
|
380
|
+
|
|
381
|
+
export declare const UnsubscribeResultFilterSensitiveLog: (obj: UnsubscribeResult) => any;
|
|
382
|
+
|
|
383
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
384
|
+
|
|
385
|
+
export declare const UntagResourceResultFilterSensitiveLog: (obj: UntagResourceResult) => any;
|
|
386
|
+
|
|
387
|
+
export declare const UpdateNotificationRuleRequestFilterSensitiveLog: (obj: UpdateNotificationRuleRequest) => any;
|
|
388
|
+
|
|
389
|
+
export declare const UpdateNotificationRuleResultFilterSensitiveLog: (obj: UpdateNotificationRuleResult) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codestar-notifications",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codestar Notifications Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.141.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",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.141.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.141.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|