@aws-sdk/client-ivs 3.99.0 → 3.109.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 +27 -0
- package/dist-cjs/IvsClient.js +2 -0
- package/dist-es/IvsClient.js +2 -0
- package/dist-types/models/models_0.d.ts +14 -42
- package/dist-types/ts3.4/models/models_0.d.ts +14 -42
- package/package.json +29 -28
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.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-ivs
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **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))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-ivs
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-ivs
|
package/dist-cjs/IvsClient.js
CHANGED
|
@@ -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 IvsClient 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
|
}
|
package/dist-es/IvsClient.js
CHANGED
|
@@ -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 IvsClient = (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;
|
|
@@ -97,9 +97,7 @@ export interface Channel {
|
|
|
97
97
|
/**
|
|
98
98
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
99
99
|
*/
|
|
100
|
-
tags?:
|
|
101
|
-
[key: string]: string;
|
|
102
|
-
};
|
|
100
|
+
tags?: Record<string, string>;
|
|
103
101
|
}
|
|
104
102
|
export declare namespace Channel {
|
|
105
103
|
/**
|
|
@@ -177,9 +175,7 @@ export interface StreamKey {
|
|
|
177
175
|
/**
|
|
178
176
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
179
177
|
*/
|
|
180
|
-
tags?:
|
|
181
|
-
[key: string]: string;
|
|
182
|
-
};
|
|
178
|
+
tags?: Record<string, string>;
|
|
183
179
|
}
|
|
184
180
|
export declare namespace StreamKey {
|
|
185
181
|
/**
|
|
@@ -248,9 +244,7 @@ export interface CreateChannelRequest {
|
|
|
248
244
|
/**
|
|
249
245
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
250
246
|
*/
|
|
251
|
-
tags?:
|
|
252
|
-
[key: string]: string;
|
|
253
|
-
};
|
|
247
|
+
tags?: Record<string, string>;
|
|
254
248
|
}
|
|
255
249
|
export declare namespace CreateChannelRequest {
|
|
256
250
|
/**
|
|
@@ -424,9 +418,7 @@ export interface CreateRecordingConfigurationRequest {
|
|
|
424
418
|
/**
|
|
425
419
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
426
420
|
*/
|
|
427
|
-
tags?:
|
|
428
|
-
[key: string]: string;
|
|
429
|
-
};
|
|
421
|
+
tags?: Record<string, string>;
|
|
430
422
|
/**
|
|
431
423
|
* <p>A complex type that allows you to enable/disable the recording of thumbnails for a live
|
|
432
424
|
* session and modify the interval at which thumbnails are generated for the live session.</p>
|
|
@@ -468,9 +460,7 @@ export interface RecordingConfiguration {
|
|
|
468
460
|
/**
|
|
469
461
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
470
462
|
*/
|
|
471
|
-
tags?:
|
|
472
|
-
[key: string]: string;
|
|
473
|
-
};
|
|
463
|
+
tags?: Record<string, string>;
|
|
474
464
|
/**
|
|
475
465
|
* <p>A complex type that allows you to enable/disable the recording of thumbnails for a live
|
|
476
466
|
* session and modify the interval at which thumbnails are generated for the live session.</p>
|
|
@@ -518,9 +508,7 @@ export interface CreateStreamKeyRequest {
|
|
|
518
508
|
/**
|
|
519
509
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
520
510
|
*/
|
|
521
|
-
tags?:
|
|
522
|
-
[key: string]: string;
|
|
523
|
-
};
|
|
511
|
+
tags?: Record<string, string>;
|
|
524
512
|
}
|
|
525
513
|
export declare namespace CreateStreamKeyRequest {
|
|
526
514
|
/**
|
|
@@ -651,9 +639,7 @@ export interface PlaybackKeyPair {
|
|
|
651
639
|
/**
|
|
652
640
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
653
641
|
*/
|
|
654
|
-
tags?:
|
|
655
|
-
[key: string]: string;
|
|
656
|
-
};
|
|
642
|
+
tags?: Record<string, string>;
|
|
657
643
|
}
|
|
658
644
|
export declare namespace PlaybackKeyPair {
|
|
659
645
|
/**
|
|
@@ -1013,9 +999,7 @@ export interface ImportPlaybackKeyPairRequest {
|
|
|
1013
999
|
/**
|
|
1014
1000
|
* <p>Any tags provided with the request are added to the playback key pair tags.</p>
|
|
1015
1001
|
*/
|
|
1016
|
-
tags?:
|
|
1017
|
-
[key: string]: string;
|
|
1018
|
-
};
|
|
1002
|
+
tags?: Record<string, string>;
|
|
1019
1003
|
}
|
|
1020
1004
|
export declare namespace ImportPlaybackKeyPairRequest {
|
|
1021
1005
|
/**
|
|
@@ -1092,9 +1076,7 @@ export interface ChannelSummary {
|
|
|
1092
1076
|
/**
|
|
1093
1077
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
1094
1078
|
*/
|
|
1095
|
-
tags?:
|
|
1096
|
-
[key: string]: string;
|
|
1097
|
-
};
|
|
1079
|
+
tags?: Record<string, string>;
|
|
1098
1080
|
}
|
|
1099
1081
|
export declare namespace ChannelSummary {
|
|
1100
1082
|
/**
|
|
@@ -1151,9 +1133,7 @@ export interface PlaybackKeyPairSummary {
|
|
|
1151
1133
|
/**
|
|
1152
1134
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
1153
1135
|
*/
|
|
1154
|
-
tags?:
|
|
1155
|
-
[key: string]: string;
|
|
1156
|
-
};
|
|
1136
|
+
tags?: Record<string, string>;
|
|
1157
1137
|
}
|
|
1158
1138
|
export declare namespace PlaybackKeyPairSummary {
|
|
1159
1139
|
/**
|
|
@@ -1219,9 +1199,7 @@ export interface RecordingConfigurationSummary {
|
|
|
1219
1199
|
/**
|
|
1220
1200
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
1221
1201
|
*/
|
|
1222
|
-
tags?:
|
|
1223
|
-
[key: string]: string;
|
|
1224
|
-
};
|
|
1202
|
+
tags?: Record<string, string>;
|
|
1225
1203
|
}
|
|
1226
1204
|
export declare namespace RecordingConfigurationSummary {
|
|
1227
1205
|
/**
|
|
@@ -1282,9 +1260,7 @@ export interface StreamKeySummary {
|
|
|
1282
1260
|
/**
|
|
1283
1261
|
* <p>Array of 1-50 maps, each of the form <code>string:string (key:value)</code>.</p>
|
|
1284
1262
|
*/
|
|
1285
|
-
tags?:
|
|
1286
|
-
[key: string]: string;
|
|
1287
|
-
};
|
|
1263
|
+
tags?: Record<string, string>;
|
|
1288
1264
|
}
|
|
1289
1265
|
export declare namespace StreamKeySummary {
|
|
1290
1266
|
/**
|
|
@@ -1482,9 +1458,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1482
1458
|
/**
|
|
1483
1459
|
* <p/>
|
|
1484
1460
|
*/
|
|
1485
|
-
tags:
|
|
1486
|
-
[key: string]: string;
|
|
1487
|
-
} | undefined;
|
|
1461
|
+
tags: Record<string, string> | undefined;
|
|
1488
1462
|
}
|
|
1489
1463
|
export declare namespace ListTagsForResourceResponse {
|
|
1490
1464
|
/**
|
|
@@ -1567,9 +1541,7 @@ export interface TagResourceRequest {
|
|
|
1567
1541
|
/**
|
|
1568
1542
|
* <p>Array of tags to be added or updated.</p>
|
|
1569
1543
|
*/
|
|
1570
|
-
tags:
|
|
1571
|
-
[key: string]: string;
|
|
1572
|
-
} | undefined;
|
|
1544
|
+
tags: Record<string, string> | undefined;
|
|
1573
1545
|
}
|
|
1574
1546
|
export declare namespace TagResourceRequest {
|
|
1575
1547
|
/**
|
|
@@ -44,9 +44,7 @@ export interface Channel {
|
|
|
44
44
|
|
|
45
45
|
authorized?: boolean;
|
|
46
46
|
|
|
47
|
-
tags?:
|
|
48
|
-
[key: string]: string;
|
|
49
|
-
};
|
|
47
|
+
tags?: Record<string, string>;
|
|
50
48
|
}
|
|
51
49
|
export declare namespace Channel {
|
|
52
50
|
|
|
@@ -92,9 +90,7 @@ export interface StreamKey {
|
|
|
92
90
|
|
|
93
91
|
channelArn?: string;
|
|
94
92
|
|
|
95
|
-
tags?:
|
|
96
|
-
[key: string]: string;
|
|
97
|
-
};
|
|
93
|
+
tags?: Record<string, string>;
|
|
98
94
|
}
|
|
99
95
|
export declare namespace StreamKey {
|
|
100
96
|
|
|
@@ -122,9 +118,7 @@ export interface CreateChannelRequest {
|
|
|
122
118
|
|
|
123
119
|
recordingConfigurationArn?: string;
|
|
124
120
|
|
|
125
|
-
tags?:
|
|
126
|
-
[key: string]: string;
|
|
127
|
-
};
|
|
121
|
+
tags?: Record<string, string>;
|
|
128
122
|
}
|
|
129
123
|
export declare namespace CreateChannelRequest {
|
|
130
124
|
|
|
@@ -224,9 +218,7 @@ export interface CreateRecordingConfigurationRequest {
|
|
|
224
218
|
|
|
225
219
|
destinationConfiguration: DestinationConfiguration | undefined;
|
|
226
220
|
|
|
227
|
-
tags?:
|
|
228
|
-
[key: string]: string;
|
|
229
|
-
};
|
|
221
|
+
tags?: Record<string, string>;
|
|
230
222
|
|
|
231
223
|
thumbnailConfiguration?: ThumbnailConfiguration;
|
|
232
224
|
}
|
|
@@ -250,9 +242,7 @@ export interface RecordingConfiguration {
|
|
|
250
242
|
|
|
251
243
|
state: RecordingConfigurationState | string | undefined;
|
|
252
244
|
|
|
253
|
-
tags?:
|
|
254
|
-
[key: string]: string;
|
|
255
|
-
};
|
|
245
|
+
tags?: Record<string, string>;
|
|
256
246
|
|
|
257
247
|
thumbnailConfiguration?: ThumbnailConfiguration;
|
|
258
248
|
}
|
|
@@ -281,9 +271,7 @@ export interface CreateStreamKeyRequest {
|
|
|
281
271
|
|
|
282
272
|
channelArn: string | undefined;
|
|
283
273
|
|
|
284
|
-
tags?:
|
|
285
|
-
[key: string]: string;
|
|
286
|
-
};
|
|
274
|
+
tags?: Record<string, string>;
|
|
287
275
|
}
|
|
288
276
|
export declare namespace CreateStreamKeyRequest {
|
|
289
277
|
|
|
@@ -368,9 +356,7 @@ export interface PlaybackKeyPair {
|
|
|
368
356
|
|
|
369
357
|
fingerprint?: string;
|
|
370
358
|
|
|
371
|
-
tags?:
|
|
372
|
-
[key: string]: string;
|
|
373
|
-
};
|
|
359
|
+
tags?: Record<string, string>;
|
|
374
360
|
}
|
|
375
361
|
export declare namespace PlaybackKeyPair {
|
|
376
362
|
|
|
@@ -578,9 +564,7 @@ export interface ImportPlaybackKeyPairRequest {
|
|
|
578
564
|
|
|
579
565
|
name?: string;
|
|
580
566
|
|
|
581
|
-
tags?:
|
|
582
|
-
[key: string]: string;
|
|
583
|
-
};
|
|
567
|
+
tags?: Record<string, string>;
|
|
584
568
|
}
|
|
585
569
|
export declare namespace ImportPlaybackKeyPairRequest {
|
|
586
570
|
|
|
@@ -621,9 +605,7 @@ export interface ChannelSummary {
|
|
|
621
605
|
|
|
622
606
|
recordingConfigurationArn?: string;
|
|
623
607
|
|
|
624
|
-
tags?:
|
|
625
|
-
[key: string]: string;
|
|
626
|
-
};
|
|
608
|
+
tags?: Record<string, string>;
|
|
627
609
|
}
|
|
628
610
|
export declare namespace ChannelSummary {
|
|
629
611
|
|
|
@@ -656,9 +638,7 @@ export interface PlaybackKeyPairSummary {
|
|
|
656
638
|
|
|
657
639
|
name?: string;
|
|
658
640
|
|
|
659
|
-
tags?:
|
|
660
|
-
[key: string]: string;
|
|
661
|
-
};
|
|
641
|
+
tags?: Record<string, string>;
|
|
662
642
|
}
|
|
663
643
|
export declare namespace PlaybackKeyPairSummary {
|
|
664
644
|
|
|
@@ -695,9 +675,7 @@ export interface RecordingConfigurationSummary {
|
|
|
695
675
|
|
|
696
676
|
state: RecordingConfigurationState | string | undefined;
|
|
697
677
|
|
|
698
|
-
tags?:
|
|
699
|
-
[key: string]: string;
|
|
700
|
-
};
|
|
678
|
+
tags?: Record<string, string>;
|
|
701
679
|
}
|
|
702
680
|
export declare namespace RecordingConfigurationSummary {
|
|
703
681
|
|
|
@@ -732,9 +710,7 @@ export interface StreamKeySummary {
|
|
|
732
710
|
|
|
733
711
|
channelArn?: string;
|
|
734
712
|
|
|
735
|
-
tags?:
|
|
736
|
-
[key: string]: string;
|
|
737
|
-
};
|
|
713
|
+
tags?: Record<string, string>;
|
|
738
714
|
}
|
|
739
715
|
export declare namespace StreamKeySummary {
|
|
740
716
|
|
|
@@ -847,9 +823,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
847
823
|
}
|
|
848
824
|
export interface ListTagsForResourceResponse {
|
|
849
825
|
|
|
850
|
-
tags:
|
|
851
|
-
[key: string]: string;
|
|
852
|
-
} | undefined;
|
|
826
|
+
tags: Record<string, string> | undefined;
|
|
853
827
|
}
|
|
854
828
|
export declare namespace ListTagsForResourceResponse {
|
|
855
829
|
|
|
@@ -901,9 +875,7 @@ export interface TagResourceRequest {
|
|
|
901
875
|
|
|
902
876
|
resourceArn: string | undefined;
|
|
903
877
|
|
|
904
|
-
tags:
|
|
905
|
-
[key: string]: string;
|
|
906
|
-
} | undefined;
|
|
878
|
+
tags: Record<string, string> | undefined;
|
|
907
879
|
}
|
|
908
880
|
export declare namespace TagResourceRequest {
|
|
909
881
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.109.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.109.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.109.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.109.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.109.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.109.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.109.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.109.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.109.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.109.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.109.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.109.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.109.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.109.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.109.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.109.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.109.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.109.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.109.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.109.0",
|
|
40
|
+
"@aws-sdk/types": "3.109.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.109.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.109.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.109.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.109.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.109.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": {
|