@aws-sdk/client-appintegrations 3.295.0 → 3.297.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/dist-types/AppIntegrations.d.ts +16 -0
- package/dist-types/AppIntegrationsClient.d.ts +24 -4
- package/dist-types/commands/CreateDataIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/CreateEventIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDataIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEventIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/GetDataIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/GetEventIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/ListDataIntegrationAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/ListDataIntegrationsCommand.d.ts +16 -0
- package/dist-types/commands/ListEventIntegrationAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/ListEventIntegrationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDataIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEventIntegrationCommand.d.ts +16 -0
- package/dist-types/models/AppIntegrationsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +111 -7
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -13,6 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
13
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
15
|
}
|
|
15
16
|
/**
|
|
17
|
+
* @public
|
|
16
18
|
* <p>The configuration for what files should be pulled from the source.</p>
|
|
17
19
|
*/
|
|
18
20
|
export interface FileConfiguration {
|
|
@@ -26,6 +28,7 @@ export interface FileConfiguration {
|
|
|
26
28
|
Filters?: Record<string, string[]>;
|
|
27
29
|
}
|
|
28
30
|
/**
|
|
31
|
+
* @public
|
|
29
32
|
* <p>The name of the data and how often it should be pulled from the source.</p>
|
|
30
33
|
*/
|
|
31
34
|
export interface ScheduleConfiguration {
|
|
@@ -43,6 +46,9 @@ export interface ScheduleConfiguration {
|
|
|
43
46
|
*/
|
|
44
47
|
ScheduleExpression: string | undefined;
|
|
45
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
46
52
|
export interface CreateDataIntegrationRequest {
|
|
47
53
|
/**
|
|
48
54
|
* <p>The name of the DataIntegration.</p>
|
|
@@ -65,7 +71,7 @@ export interface CreateDataIntegrationRequest {
|
|
|
65
71
|
*/
|
|
66
72
|
ScheduleConfig: ScheduleConfiguration | undefined;
|
|
67
73
|
/**
|
|
68
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
74
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
69
75
|
*/
|
|
70
76
|
Tags?: Record<string, string>;
|
|
71
77
|
/**
|
|
@@ -84,6 +90,9 @@ export interface CreateDataIntegrationRequest {
|
|
|
84
90
|
*/
|
|
85
91
|
ObjectConfiguration?: Record<string, Record<string, string[]>>;
|
|
86
92
|
}
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
87
96
|
export interface CreateDataIntegrationResponse {
|
|
88
97
|
/**
|
|
89
98
|
* <p>The Amazon Resource Name (ARN)</p>
|
|
@@ -114,7 +123,7 @@ export interface CreateDataIntegrationResponse {
|
|
|
114
123
|
*/
|
|
115
124
|
ScheduleConfiguration?: ScheduleConfiguration;
|
|
116
125
|
/**
|
|
117
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
126
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
118
127
|
*/
|
|
119
128
|
Tags?: Record<string, string>;
|
|
120
129
|
/**
|
|
@@ -134,6 +143,7 @@ export interface CreateDataIntegrationResponse {
|
|
|
134
143
|
ObjectConfiguration?: Record<string, Record<string, string[]>>;
|
|
135
144
|
}
|
|
136
145
|
/**
|
|
146
|
+
* @public
|
|
137
147
|
* <p>A resource with the specified name already exists.</p>
|
|
138
148
|
*/
|
|
139
149
|
export declare class DuplicateResourceException extends __BaseException {
|
|
@@ -146,6 +156,7 @@ export declare class DuplicateResourceException extends __BaseException {
|
|
|
146
156
|
constructor(opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>);
|
|
147
157
|
}
|
|
148
158
|
/**
|
|
159
|
+
* @public
|
|
149
160
|
* <p>Request processing failed due to an error or failure with the service.</p>
|
|
150
161
|
*/
|
|
151
162
|
export declare class InternalServiceError extends __BaseException {
|
|
@@ -158,6 +169,7 @@ export declare class InternalServiceError extends __BaseException {
|
|
|
158
169
|
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
159
170
|
}
|
|
160
171
|
/**
|
|
172
|
+
* @public
|
|
161
173
|
* <p>The request is not valid. </p>
|
|
162
174
|
*/
|
|
163
175
|
export declare class InvalidRequestException extends __BaseException {
|
|
@@ -170,6 +182,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
170
182
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
171
183
|
}
|
|
172
184
|
/**
|
|
185
|
+
* @public
|
|
173
186
|
* <p>The allowed quota for the resource has been exceeded.</p>
|
|
174
187
|
*/
|
|
175
188
|
export declare class ResourceQuotaExceededException extends __BaseException {
|
|
@@ -182,6 +195,7 @@ export declare class ResourceQuotaExceededException extends __BaseException {
|
|
|
182
195
|
constructor(opts: __ExceptionOptionType<ResourceQuotaExceededException, __BaseException>);
|
|
183
196
|
}
|
|
184
197
|
/**
|
|
198
|
+
* @public
|
|
185
199
|
* <p>The throttling limit has been exceeded.</p>
|
|
186
200
|
*/
|
|
187
201
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -194,6 +208,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
194
208
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
195
209
|
}
|
|
196
210
|
/**
|
|
211
|
+
* @public
|
|
197
212
|
* <p>The event filter.</p>
|
|
198
213
|
*/
|
|
199
214
|
export interface EventFilter {
|
|
@@ -202,6 +217,9 @@ export interface EventFilter {
|
|
|
202
217
|
*/
|
|
203
218
|
Source: string | undefined;
|
|
204
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* @public
|
|
222
|
+
*/
|
|
205
223
|
export interface CreateEventIntegrationRequest {
|
|
206
224
|
/**
|
|
207
225
|
* <p>The name of the event integration.</p>
|
|
@@ -227,25 +245,35 @@ export interface CreateEventIntegrationRequest {
|
|
|
227
245
|
*/
|
|
228
246
|
ClientToken?: string;
|
|
229
247
|
/**
|
|
230
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
248
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
231
249
|
*/
|
|
232
250
|
Tags?: Record<string, string>;
|
|
233
251
|
}
|
|
252
|
+
/**
|
|
253
|
+
* @public
|
|
254
|
+
*/
|
|
234
255
|
export interface CreateEventIntegrationResponse {
|
|
235
256
|
/**
|
|
236
257
|
* <p>The Amazon Resource Name (ARN) of the event integration. </p>
|
|
237
258
|
*/
|
|
238
259
|
EventIntegrationArn?: string;
|
|
239
260
|
}
|
|
261
|
+
/**
|
|
262
|
+
* @public
|
|
263
|
+
*/
|
|
240
264
|
export interface DeleteDataIntegrationRequest {
|
|
241
265
|
/**
|
|
242
266
|
* <p>A unique identifier for the DataIntegration.</p>
|
|
243
267
|
*/
|
|
244
268
|
DataIntegrationIdentifier: string | undefined;
|
|
245
269
|
}
|
|
270
|
+
/**
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
246
273
|
export interface DeleteDataIntegrationResponse {
|
|
247
274
|
}
|
|
248
275
|
/**
|
|
276
|
+
* @public
|
|
249
277
|
* <p>The specified resource was not found.</p>
|
|
250
278
|
*/
|
|
251
279
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -257,20 +285,32 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
257
285
|
*/
|
|
258
286
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
259
287
|
}
|
|
288
|
+
/**
|
|
289
|
+
* @public
|
|
290
|
+
*/
|
|
260
291
|
export interface DeleteEventIntegrationRequest {
|
|
261
292
|
/**
|
|
262
293
|
* <p>The name of the event integration.</p>
|
|
263
294
|
*/
|
|
264
295
|
Name: string | undefined;
|
|
265
296
|
}
|
|
297
|
+
/**
|
|
298
|
+
* @public
|
|
299
|
+
*/
|
|
266
300
|
export interface DeleteEventIntegrationResponse {
|
|
267
301
|
}
|
|
302
|
+
/**
|
|
303
|
+
* @public
|
|
304
|
+
*/
|
|
268
305
|
export interface GetDataIntegrationRequest {
|
|
269
306
|
/**
|
|
270
307
|
* <p>A unique identifier.</p>
|
|
271
308
|
*/
|
|
272
309
|
Identifier: string | undefined;
|
|
273
310
|
}
|
|
311
|
+
/**
|
|
312
|
+
* @public
|
|
313
|
+
*/
|
|
274
314
|
export interface GetDataIntegrationResponse {
|
|
275
315
|
/**
|
|
276
316
|
* <p>The Amazon Resource Name (ARN) for the DataIntegration.</p>
|
|
@@ -301,7 +341,7 @@ export interface GetDataIntegrationResponse {
|
|
|
301
341
|
*/
|
|
302
342
|
ScheduleConfiguration?: ScheduleConfiguration;
|
|
303
343
|
/**
|
|
304
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
344
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
305
345
|
*/
|
|
306
346
|
Tags?: Record<string, string>;
|
|
307
347
|
/**
|
|
@@ -313,12 +353,18 @@ export interface GetDataIntegrationResponse {
|
|
|
313
353
|
*/
|
|
314
354
|
ObjectConfiguration?: Record<string, Record<string, string[]>>;
|
|
315
355
|
}
|
|
356
|
+
/**
|
|
357
|
+
* @public
|
|
358
|
+
*/
|
|
316
359
|
export interface GetEventIntegrationRequest {
|
|
317
360
|
/**
|
|
318
361
|
* <p>The name of the event integration. </p>
|
|
319
362
|
*/
|
|
320
363
|
Name: string | undefined;
|
|
321
364
|
}
|
|
365
|
+
/**
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
322
368
|
export interface GetEventIntegrationResponse {
|
|
323
369
|
/**
|
|
324
370
|
* <p>The name of the event integration. </p>
|
|
@@ -341,10 +387,13 @@ export interface GetEventIntegrationResponse {
|
|
|
341
387
|
*/
|
|
342
388
|
EventFilter?: EventFilter;
|
|
343
389
|
/**
|
|
344
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
390
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
345
391
|
*/
|
|
346
392
|
Tags?: Record<string, string>;
|
|
347
393
|
}
|
|
394
|
+
/**
|
|
395
|
+
* @public
|
|
396
|
+
*/
|
|
348
397
|
export interface ListDataIntegrationAssociationsRequest {
|
|
349
398
|
/**
|
|
350
399
|
* <p>A unique identifier for the DataIntegration.</p>
|
|
@@ -361,6 +410,7 @@ export interface ListDataIntegrationAssociationsRequest {
|
|
|
361
410
|
MaxResults?: number;
|
|
362
411
|
}
|
|
363
412
|
/**
|
|
413
|
+
* @public
|
|
364
414
|
* <p>Summary information about the DataIntegration association.</p>
|
|
365
415
|
*/
|
|
366
416
|
export interface DataIntegrationAssociationSummary {
|
|
@@ -378,6 +428,9 @@ export interface DataIntegrationAssociationSummary {
|
|
|
378
428
|
*/
|
|
379
429
|
ClientId?: string;
|
|
380
430
|
}
|
|
431
|
+
/**
|
|
432
|
+
* @public
|
|
433
|
+
*/
|
|
381
434
|
export interface ListDataIntegrationAssociationsResponse {
|
|
382
435
|
/**
|
|
383
436
|
* <p>The Amazon Resource Name (ARN) and unique ID of the DataIntegration association.</p>
|
|
@@ -388,6 +441,9 @@ export interface ListDataIntegrationAssociationsResponse {
|
|
|
388
441
|
*/
|
|
389
442
|
NextToken?: string;
|
|
390
443
|
}
|
|
444
|
+
/**
|
|
445
|
+
* @public
|
|
446
|
+
*/
|
|
391
447
|
export interface ListDataIntegrationsRequest {
|
|
392
448
|
/**
|
|
393
449
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
@@ -400,6 +456,7 @@ export interface ListDataIntegrationsRequest {
|
|
|
400
456
|
MaxResults?: number;
|
|
401
457
|
}
|
|
402
458
|
/**
|
|
459
|
+
* @public
|
|
403
460
|
* <p>Summary information about the DataIntegration.</p>
|
|
404
461
|
*/
|
|
405
462
|
export interface DataIntegrationSummary {
|
|
@@ -416,6 +473,9 @@ export interface DataIntegrationSummary {
|
|
|
416
473
|
*/
|
|
417
474
|
SourceURI?: string;
|
|
418
475
|
}
|
|
476
|
+
/**
|
|
477
|
+
* @public
|
|
478
|
+
*/
|
|
419
479
|
export interface ListDataIntegrationsResponse {
|
|
420
480
|
/**
|
|
421
481
|
* <p>The DataIntegrations associated with this account.</p>
|
|
@@ -426,6 +486,9 @@ export interface ListDataIntegrationsResponse {
|
|
|
426
486
|
*/
|
|
427
487
|
NextToken?: string;
|
|
428
488
|
}
|
|
489
|
+
/**
|
|
490
|
+
* @public
|
|
491
|
+
*/
|
|
429
492
|
export interface ListEventIntegrationAssociationsRequest {
|
|
430
493
|
/**
|
|
431
494
|
* <p>The name of the event integration. </p>
|
|
@@ -442,6 +505,7 @@ export interface ListEventIntegrationAssociationsRequest {
|
|
|
442
505
|
MaxResults?: number;
|
|
443
506
|
}
|
|
444
507
|
/**
|
|
508
|
+
* @public
|
|
445
509
|
* <p>The event integration association.</p>
|
|
446
510
|
*/
|
|
447
511
|
export interface EventIntegrationAssociation {
|
|
@@ -470,6 +534,9 @@ export interface EventIntegrationAssociation {
|
|
|
470
534
|
*/
|
|
471
535
|
ClientAssociationMetadata?: Record<string, string>;
|
|
472
536
|
}
|
|
537
|
+
/**
|
|
538
|
+
* @public
|
|
539
|
+
*/
|
|
473
540
|
export interface ListEventIntegrationAssociationsResponse {
|
|
474
541
|
/**
|
|
475
542
|
* <p>The event integration associations.</p>
|
|
@@ -480,6 +547,9 @@ export interface ListEventIntegrationAssociationsResponse {
|
|
|
480
547
|
*/
|
|
481
548
|
NextToken?: string;
|
|
482
549
|
}
|
|
550
|
+
/**
|
|
551
|
+
* @public
|
|
552
|
+
*/
|
|
483
553
|
export interface ListEventIntegrationsRequest {
|
|
484
554
|
/**
|
|
485
555
|
* <p>The token for the next set of results. Use the value returned in the previous
|
|
@@ -492,6 +562,7 @@ export interface ListEventIntegrationsRequest {
|
|
|
492
562
|
MaxResults?: number;
|
|
493
563
|
}
|
|
494
564
|
/**
|
|
565
|
+
* @public
|
|
495
566
|
* <p>The event integration.</p>
|
|
496
567
|
*/
|
|
497
568
|
export interface EventIntegration {
|
|
@@ -516,10 +587,13 @@ export interface EventIntegration {
|
|
|
516
587
|
*/
|
|
517
588
|
EventBridgeBus?: string;
|
|
518
589
|
/**
|
|
519
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
590
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
520
591
|
*/
|
|
521
592
|
Tags?: Record<string, string>;
|
|
522
593
|
}
|
|
594
|
+
/**
|
|
595
|
+
* @public
|
|
596
|
+
*/
|
|
523
597
|
export interface ListEventIntegrationsResponse {
|
|
524
598
|
/**
|
|
525
599
|
* <p>The event integrations.</p>
|
|
@@ -530,30 +604,45 @@ export interface ListEventIntegrationsResponse {
|
|
|
530
604
|
*/
|
|
531
605
|
NextToken?: string;
|
|
532
606
|
}
|
|
607
|
+
/**
|
|
608
|
+
* @public
|
|
609
|
+
*/
|
|
533
610
|
export interface ListTagsForResourceRequest {
|
|
534
611
|
/**
|
|
535
612
|
* <p>The Amazon Resource Name (ARN) of the resource. </p>
|
|
536
613
|
*/
|
|
537
614
|
resourceArn: string | undefined;
|
|
538
615
|
}
|
|
616
|
+
/**
|
|
617
|
+
* @public
|
|
618
|
+
*/
|
|
539
619
|
export interface ListTagsForResourceResponse {
|
|
540
620
|
/**
|
|
541
621
|
* <p>Information about the tags.</p>
|
|
542
622
|
*/
|
|
543
623
|
tags?: Record<string, string>;
|
|
544
624
|
}
|
|
625
|
+
/**
|
|
626
|
+
* @public
|
|
627
|
+
*/
|
|
545
628
|
export interface TagResourceRequest {
|
|
546
629
|
/**
|
|
547
630
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
548
631
|
*/
|
|
549
632
|
resourceArn: string | undefined;
|
|
550
633
|
/**
|
|
551
|
-
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
634
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, \{ "tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
|
|
552
635
|
*/
|
|
553
636
|
tags: Record<string, string> | undefined;
|
|
554
637
|
}
|
|
638
|
+
/**
|
|
639
|
+
* @public
|
|
640
|
+
*/
|
|
555
641
|
export interface TagResourceResponse {
|
|
556
642
|
}
|
|
643
|
+
/**
|
|
644
|
+
* @public
|
|
645
|
+
*/
|
|
557
646
|
export interface UntagResourceRequest {
|
|
558
647
|
/**
|
|
559
648
|
* <p>The Amazon Resource Name (ARN) of the resource.</p>
|
|
@@ -564,8 +653,14 @@ export interface UntagResourceRequest {
|
|
|
564
653
|
*/
|
|
565
654
|
tagKeys: string[] | undefined;
|
|
566
655
|
}
|
|
656
|
+
/**
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
567
659
|
export interface UntagResourceResponse {
|
|
568
660
|
}
|
|
661
|
+
/**
|
|
662
|
+
* @public
|
|
663
|
+
*/
|
|
569
664
|
export interface UpdateDataIntegrationRequest {
|
|
570
665
|
/**
|
|
571
666
|
* <p>A unique identifier for the DataIntegration.</p>
|
|
@@ -580,8 +675,14 @@ export interface UpdateDataIntegrationRequest {
|
|
|
580
675
|
*/
|
|
581
676
|
Description?: string;
|
|
582
677
|
}
|
|
678
|
+
/**
|
|
679
|
+
* @public
|
|
680
|
+
*/
|
|
583
681
|
export interface UpdateDataIntegrationResponse {
|
|
584
682
|
}
|
|
683
|
+
/**
|
|
684
|
+
* @public
|
|
685
|
+
*/
|
|
585
686
|
export interface UpdateEventIntegrationRequest {
|
|
586
687
|
/**
|
|
587
688
|
* <p>The name of the event integration.</p>
|
|
@@ -592,6 +693,9 @@ export interface UpdateEventIntegrationRequest {
|
|
|
592
693
|
*/
|
|
593
694
|
Description?: string;
|
|
594
695
|
}
|
|
696
|
+
/**
|
|
697
|
+
* @public
|
|
698
|
+
*/
|
|
595
699
|
export interface UpdateEventIntegrationResponse {
|
|
596
700
|
}
|
|
597
701
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appintegrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.296.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.296.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.296.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.296.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.296.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.296.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.296.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.296.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.296.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.296.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.296.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.296.0",
|
|
43
|
+
"@aws-sdk/types": "3.296.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.296.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.295.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.296.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.296.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.296.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.296.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.296.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
55
55
|
"tslib": "^2.5.0",
|
|
56
56
|
"uuid": "^8.3.2"
|