@aws-sdk/client-mediapackage-vod 3.100.0 → 3.110.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
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.110.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.109.0...v3.110.0) (2022-06-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-mediapackage-vod
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-mediapackage-vod
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-mediapackage-vod
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class MediaPackageVodClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var MediaPackageVodClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -38,9 +38,7 @@ export interface AssetShallow {
|
|
|
38
38
|
/**
|
|
39
39
|
* A collection of tags associated with a resource
|
|
40
40
|
*/
|
|
41
|
-
Tags?:
|
|
42
|
-
[key: string]: string;
|
|
43
|
-
};
|
|
41
|
+
Tags?: Record<string, string>;
|
|
44
42
|
}
|
|
45
43
|
export declare namespace AssetShallow {
|
|
46
44
|
/**
|
|
@@ -481,9 +479,7 @@ export interface PackagingConfiguration {
|
|
|
481
479
|
/**
|
|
482
480
|
* A collection of tags associated with a resource
|
|
483
481
|
*/
|
|
484
|
-
Tags?:
|
|
485
|
-
[key: string]: string;
|
|
486
|
-
};
|
|
482
|
+
Tags?: Record<string, string>;
|
|
487
483
|
}
|
|
488
484
|
export declare namespace PackagingConfiguration {
|
|
489
485
|
/**
|
|
@@ -552,9 +548,7 @@ export interface PackagingGroup {
|
|
|
552
548
|
/**
|
|
553
549
|
* A collection of tags associated with a resource
|
|
554
550
|
*/
|
|
555
|
-
Tags?:
|
|
556
|
-
[key: string]: string;
|
|
557
|
-
};
|
|
551
|
+
Tags?: Record<string, string>;
|
|
558
552
|
}
|
|
559
553
|
export declare namespace PackagingGroup {
|
|
560
554
|
/**
|
|
@@ -605,9 +599,7 @@ export interface ConfigureLogsResponse {
|
|
|
605
599
|
/**
|
|
606
600
|
* A collection of tags associated with a resource
|
|
607
601
|
*/
|
|
608
|
-
Tags?:
|
|
609
|
-
[key: string]: string;
|
|
610
|
-
};
|
|
602
|
+
Tags?: Record<string, string>;
|
|
611
603
|
}
|
|
612
604
|
export declare namespace ConfigureLogsResponse {
|
|
613
605
|
/**
|
|
@@ -714,9 +706,7 @@ export interface CreateAssetRequest {
|
|
|
714
706
|
/**
|
|
715
707
|
* A collection of tags associated with a resource
|
|
716
708
|
*/
|
|
717
|
-
Tags?:
|
|
718
|
-
[key: string]: string;
|
|
719
|
-
};
|
|
709
|
+
Tags?: Record<string, string>;
|
|
720
710
|
}
|
|
721
711
|
export declare namespace CreateAssetRequest {
|
|
722
712
|
/**
|
|
@@ -760,9 +750,7 @@ export interface CreateAssetResponse {
|
|
|
760
750
|
/**
|
|
761
751
|
* A collection of tags associated with a resource
|
|
762
752
|
*/
|
|
763
|
-
Tags?:
|
|
764
|
-
[key: string]: string;
|
|
765
|
-
};
|
|
753
|
+
Tags?: Record<string, string>;
|
|
766
754
|
}
|
|
767
755
|
export declare namespace CreateAssetResponse {
|
|
768
756
|
/**
|
|
@@ -801,9 +789,7 @@ export interface CreatePackagingConfigurationRequest {
|
|
|
801
789
|
/**
|
|
802
790
|
* A collection of tags associated with a resource
|
|
803
791
|
*/
|
|
804
|
-
Tags?:
|
|
805
|
-
[key: string]: string;
|
|
806
|
-
};
|
|
792
|
+
Tags?: Record<string, string>;
|
|
807
793
|
}
|
|
808
794
|
export declare namespace CreatePackagingConfigurationRequest {
|
|
809
795
|
/**
|
|
@@ -843,9 +829,7 @@ export interface CreatePackagingConfigurationResponse {
|
|
|
843
829
|
/**
|
|
844
830
|
* A collection of tags associated with a resource
|
|
845
831
|
*/
|
|
846
|
-
Tags?:
|
|
847
|
-
[key: string]: string;
|
|
848
|
-
};
|
|
832
|
+
Tags?: Record<string, string>;
|
|
849
833
|
}
|
|
850
834
|
export declare namespace CreatePackagingConfigurationResponse {
|
|
851
835
|
/**
|
|
@@ -872,9 +856,7 @@ export interface CreatePackagingGroupRequest {
|
|
|
872
856
|
/**
|
|
873
857
|
* A collection of tags associated with a resource
|
|
874
858
|
*/
|
|
875
|
-
Tags?:
|
|
876
|
-
[key: string]: string;
|
|
877
|
-
};
|
|
859
|
+
Tags?: Record<string, string>;
|
|
878
860
|
}
|
|
879
861
|
export declare namespace CreatePackagingGroupRequest {
|
|
880
862
|
/**
|
|
@@ -906,9 +888,7 @@ export interface CreatePackagingGroupResponse {
|
|
|
906
888
|
/**
|
|
907
889
|
* A collection of tags associated with a resource
|
|
908
890
|
*/
|
|
909
|
-
Tags?:
|
|
910
|
-
[key: string]: string;
|
|
911
|
-
};
|
|
891
|
+
Tags?: Record<string, string>;
|
|
912
892
|
}
|
|
913
893
|
export declare namespace CreatePackagingGroupResponse {
|
|
914
894
|
/**
|
|
@@ -1024,9 +1004,7 @@ export interface DescribeAssetResponse {
|
|
|
1024
1004
|
/**
|
|
1025
1005
|
* A collection of tags associated with a resource
|
|
1026
1006
|
*/
|
|
1027
|
-
Tags?:
|
|
1028
|
-
[key: string]: string;
|
|
1029
|
-
};
|
|
1007
|
+
Tags?: Record<string, string>;
|
|
1030
1008
|
}
|
|
1031
1009
|
export declare namespace DescribeAssetResponse {
|
|
1032
1010
|
/**
|
|
@@ -1078,9 +1056,7 @@ export interface DescribePackagingConfigurationResponse {
|
|
|
1078
1056
|
/**
|
|
1079
1057
|
* A collection of tags associated with a resource
|
|
1080
1058
|
*/
|
|
1081
|
-
Tags?:
|
|
1082
|
-
[key: string]: string;
|
|
1083
|
-
};
|
|
1059
|
+
Tags?: Record<string, string>;
|
|
1084
1060
|
}
|
|
1085
1061
|
export declare namespace DescribePackagingConfigurationResponse {
|
|
1086
1062
|
/**
|
|
@@ -1124,9 +1100,7 @@ export interface DescribePackagingGroupResponse {
|
|
|
1124
1100
|
/**
|
|
1125
1101
|
* A collection of tags associated with a resource
|
|
1126
1102
|
*/
|
|
1127
|
-
Tags?:
|
|
1128
|
-
[key: string]: string;
|
|
1129
|
-
};
|
|
1103
|
+
Tags?: Record<string, string>;
|
|
1130
1104
|
}
|
|
1131
1105
|
export declare namespace DescribePackagingGroupResponse {
|
|
1132
1106
|
/**
|
|
@@ -1254,9 +1228,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1254
1228
|
/**
|
|
1255
1229
|
* A collection of tags associated with a resource
|
|
1256
1230
|
*/
|
|
1257
|
-
Tags?:
|
|
1258
|
-
[key: string]: string;
|
|
1259
|
-
};
|
|
1231
|
+
Tags?: Record<string, string>;
|
|
1260
1232
|
}
|
|
1261
1233
|
export declare namespace ListTagsForResourceResponse {
|
|
1262
1234
|
/**
|
|
@@ -1272,9 +1244,7 @@ export interface TagResourceRequest {
|
|
|
1272
1244
|
/**
|
|
1273
1245
|
* A collection of tags associated with a resource
|
|
1274
1246
|
*/
|
|
1275
|
-
Tags:
|
|
1276
|
-
[key: string]: string;
|
|
1277
|
-
} | undefined;
|
|
1247
|
+
Tags: Record<string, string> | undefined;
|
|
1278
1248
|
}
|
|
1279
1249
|
export declare namespace TagResourceRequest {
|
|
1280
1250
|
/**
|
|
@@ -1341,9 +1311,7 @@ export interface UpdatePackagingGroupResponse {
|
|
|
1341
1311
|
/**
|
|
1342
1312
|
* A collection of tags associated with a resource
|
|
1343
1313
|
*/
|
|
1344
|
-
Tags?:
|
|
1345
|
-
[key: string]: string;
|
|
1346
|
-
};
|
|
1314
|
+
Tags?: Record<string, string>;
|
|
1347
1315
|
}
|
|
1348
1316
|
export declare namespace UpdatePackagingGroupResponse {
|
|
1349
1317
|
/**
|
|
@@ -20,9 +20,7 @@ export interface AssetShallow {
|
|
|
20
20
|
|
|
21
21
|
SourceRoleArn?: string;
|
|
22
22
|
|
|
23
|
-
Tags?:
|
|
24
|
-
[key: string]: string;
|
|
25
|
-
};
|
|
23
|
+
Tags?: Record<string, string>;
|
|
26
24
|
}
|
|
27
25
|
export declare namespace AssetShallow {
|
|
28
26
|
|
|
@@ -270,9 +268,7 @@ export interface PackagingConfiguration {
|
|
|
270
268
|
|
|
271
269
|
PackagingGroupId?: string;
|
|
272
270
|
|
|
273
|
-
Tags?:
|
|
274
|
-
[key: string]: string;
|
|
275
|
-
};
|
|
271
|
+
Tags?: Record<string, string>;
|
|
276
272
|
}
|
|
277
273
|
export declare namespace PackagingConfiguration {
|
|
278
274
|
|
|
@@ -311,9 +307,7 @@ export interface PackagingGroup {
|
|
|
311
307
|
|
|
312
308
|
Id?: string;
|
|
313
309
|
|
|
314
|
-
Tags?:
|
|
315
|
-
[key: string]: string;
|
|
316
|
-
};
|
|
310
|
+
Tags?: Record<string, string>;
|
|
317
311
|
}
|
|
318
312
|
export declare namespace PackagingGroup {
|
|
319
313
|
|
|
@@ -342,9 +336,7 @@ export interface ConfigureLogsResponse {
|
|
|
342
336
|
|
|
343
337
|
Id?: string;
|
|
344
338
|
|
|
345
|
-
Tags?:
|
|
346
|
-
[key: string]: string;
|
|
347
|
-
};
|
|
339
|
+
Tags?: Record<string, string>;
|
|
348
340
|
}
|
|
349
341
|
export declare namespace ConfigureLogsResponse {
|
|
350
342
|
|
|
@@ -411,9 +403,7 @@ export interface CreateAssetRequest {
|
|
|
411
403
|
|
|
412
404
|
SourceRoleArn: string | undefined;
|
|
413
405
|
|
|
414
|
-
Tags?:
|
|
415
|
-
[key: string]: string;
|
|
416
|
-
};
|
|
406
|
+
Tags?: Record<string, string>;
|
|
417
407
|
}
|
|
418
408
|
export declare namespace CreateAssetRequest {
|
|
419
409
|
|
|
@@ -437,9 +427,7 @@ export interface CreateAssetResponse {
|
|
|
437
427
|
|
|
438
428
|
SourceRoleArn?: string;
|
|
439
429
|
|
|
440
|
-
Tags?:
|
|
441
|
-
[key: string]: string;
|
|
442
|
-
};
|
|
430
|
+
Tags?: Record<string, string>;
|
|
443
431
|
}
|
|
444
432
|
export declare namespace CreateAssetResponse {
|
|
445
433
|
|
|
@@ -460,9 +448,7 @@ export interface CreatePackagingConfigurationRequest {
|
|
|
460
448
|
|
|
461
449
|
PackagingGroupId: string | undefined;
|
|
462
450
|
|
|
463
|
-
Tags?:
|
|
464
|
-
[key: string]: string;
|
|
465
|
-
};
|
|
451
|
+
Tags?: Record<string, string>;
|
|
466
452
|
}
|
|
467
453
|
export declare namespace CreatePackagingConfigurationRequest {
|
|
468
454
|
|
|
@@ -484,9 +470,7 @@ export interface CreatePackagingConfigurationResponse {
|
|
|
484
470
|
|
|
485
471
|
PackagingGroupId?: string;
|
|
486
472
|
|
|
487
|
-
Tags?:
|
|
488
|
-
[key: string]: string;
|
|
489
|
-
};
|
|
473
|
+
Tags?: Record<string, string>;
|
|
490
474
|
}
|
|
491
475
|
export declare namespace CreatePackagingConfigurationResponse {
|
|
492
476
|
|
|
@@ -501,9 +485,7 @@ export interface CreatePackagingGroupRequest {
|
|
|
501
485
|
|
|
502
486
|
Id: string | undefined;
|
|
503
487
|
|
|
504
|
-
Tags?:
|
|
505
|
-
[key: string]: string;
|
|
506
|
-
};
|
|
488
|
+
Tags?: Record<string, string>;
|
|
507
489
|
}
|
|
508
490
|
export declare namespace CreatePackagingGroupRequest {
|
|
509
491
|
|
|
@@ -521,9 +503,7 @@ export interface CreatePackagingGroupResponse {
|
|
|
521
503
|
|
|
522
504
|
Id?: string;
|
|
523
505
|
|
|
524
|
-
Tags?:
|
|
525
|
-
[key: string]: string;
|
|
526
|
-
};
|
|
506
|
+
Tags?: Record<string, string>;
|
|
527
507
|
}
|
|
528
508
|
export declare namespace CreatePackagingGroupResponse {
|
|
529
509
|
|
|
@@ -597,9 +577,7 @@ export interface DescribeAssetResponse {
|
|
|
597
577
|
|
|
598
578
|
SourceRoleArn?: string;
|
|
599
579
|
|
|
600
|
-
Tags?:
|
|
601
|
-
[key: string]: string;
|
|
602
|
-
};
|
|
580
|
+
Tags?: Record<string, string>;
|
|
603
581
|
}
|
|
604
582
|
export declare namespace DescribeAssetResponse {
|
|
605
583
|
|
|
@@ -629,9 +607,7 @@ export interface DescribePackagingConfigurationResponse {
|
|
|
629
607
|
|
|
630
608
|
PackagingGroupId?: string;
|
|
631
609
|
|
|
632
|
-
Tags?:
|
|
633
|
-
[key: string]: string;
|
|
634
|
-
};
|
|
610
|
+
Tags?: Record<string, string>;
|
|
635
611
|
}
|
|
636
612
|
export declare namespace DescribePackagingConfigurationResponse {
|
|
637
613
|
|
|
@@ -657,9 +633,7 @@ export interface DescribePackagingGroupResponse {
|
|
|
657
633
|
|
|
658
634
|
Id?: string;
|
|
659
635
|
|
|
660
|
-
Tags?:
|
|
661
|
-
[key: string]: string;
|
|
662
|
-
};
|
|
636
|
+
Tags?: Record<string, string>;
|
|
663
637
|
}
|
|
664
638
|
export declare namespace DescribePackagingGroupResponse {
|
|
665
639
|
|
|
@@ -739,9 +713,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
739
713
|
}
|
|
740
714
|
export interface ListTagsForResourceResponse {
|
|
741
715
|
|
|
742
|
-
Tags?:
|
|
743
|
-
[key: string]: string;
|
|
744
|
-
};
|
|
716
|
+
Tags?: Record<string, string>;
|
|
745
717
|
}
|
|
746
718
|
export declare namespace ListTagsForResourceResponse {
|
|
747
719
|
|
|
@@ -751,9 +723,7 @@ export interface TagResourceRequest {
|
|
|
751
723
|
|
|
752
724
|
ResourceArn: string | undefined;
|
|
753
725
|
|
|
754
|
-
Tags:
|
|
755
|
-
[key: string]: string;
|
|
756
|
-
} | undefined;
|
|
726
|
+
Tags: Record<string, string> | undefined;
|
|
757
727
|
}
|
|
758
728
|
export declare namespace TagResourceRequest {
|
|
759
729
|
|
|
@@ -792,9 +762,7 @@ export interface UpdatePackagingGroupResponse {
|
|
|
792
762
|
|
|
793
763
|
Id?: string;
|
|
794
764
|
|
|
795
|
-
Tags?:
|
|
796
|
-
[key: string]: string;
|
|
797
|
-
};
|
|
765
|
+
Tags?: Record<string, string>;
|
|
798
766
|
}
|
|
799
767
|
export declare namespace UpdatePackagingGroupResponse {
|
|
800
768
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackage-vod",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackage Vod Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.110.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,36 +18,37 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/
|
|
36
|
-
"@aws-sdk/node-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
21
|
+
"@aws-sdk/client-sts": "3.110.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.110.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.110.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.110.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.110.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.110.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.110.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.110.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.110.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.110.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.110.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.110.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.110.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.110.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.110.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.110.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.110.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.110.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.110.0",
|
|
40
|
+
"@aws-sdk/types": "3.110.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.110.0",
|
|
42
|
+
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
42
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.110.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.110.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.110.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.110.0",
|
|
50
|
+
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
|
+
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
51
52
|
"tslib": "^2.3.1"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|