@aws-sdk/client-mediaconvert 3.204.0 → 3.208.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-cjs/models/models_0.js +2 -0
- package/dist-cjs/models/models_1.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +4 -0
- package/dist-es/models/models_0.js +2 -0
- package/dist-es/models/models_1.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/models/models_0.d.ts +12 -3
- package/dist-types/models/models_1.d.ts +7 -1
- package/dist-types/ts3.4/models/models_0.d.ts +3 -0
- package/dist-types/ts3.4/models/models_1.d.ts +3 -0
- package/package.json +35 -35
|
@@ -858,6 +858,8 @@ var ColorSpace;
|
|
|
858
858
|
ColorSpace["FOLLOW"] = "FOLLOW";
|
|
859
859
|
ColorSpace["HDR10"] = "HDR10";
|
|
860
860
|
ColorSpace["HLG_2020"] = "HLG_2020";
|
|
861
|
+
ColorSpace["P3D65_SDR"] = "P3D65_SDR";
|
|
862
|
+
ColorSpace["P3DCI"] = "P3DCI";
|
|
861
863
|
ColorSpace["REC_601"] = "REC_601";
|
|
862
864
|
ColorSpace["REC_709"] = "REC_709";
|
|
863
865
|
})(ColorSpace = exports.ColorSpace || (exports.ColorSpace = {}));
|
|
@@ -1007,6 +1007,8 @@ var ColorSpaceConversion;
|
|
|
1007
1007
|
ColorSpaceConversion["FORCE_709"] = "FORCE_709";
|
|
1008
1008
|
ColorSpaceConversion["FORCE_HDR10"] = "FORCE_HDR10";
|
|
1009
1009
|
ColorSpaceConversion["FORCE_HLG_2020"] = "FORCE_HLG_2020";
|
|
1010
|
+
ColorSpaceConversion["FORCE_P3D65_SDR"] = "FORCE_P3D65_SDR";
|
|
1011
|
+
ColorSpaceConversion["FORCE_P3DCI"] = "FORCE_P3DCI";
|
|
1010
1012
|
ColorSpaceConversion["NONE"] = "NONE";
|
|
1011
1013
|
})(ColorSpaceConversion = exports.ColorSpaceConversion || (exports.ColorSpaceConversion = {}));
|
|
1012
1014
|
var SampleRangeConversion;
|
|
@@ -2801,6 +2801,7 @@ const serializeAws_restJson1ColorCorrector = (input, context) => {
|
|
|
2801
2801
|
...(input.Hue != null && { hue: input.Hue }),
|
|
2802
2802
|
...(input.SampleRangeConversion != null && { sampleRangeConversion: input.SampleRangeConversion }),
|
|
2803
2803
|
...(input.Saturation != null && { saturation: input.Saturation }),
|
|
2804
|
+
...(input.SdrReferenceWhiteLevel != null && { sdrReferenceWhiteLevel: input.SdrReferenceWhiteLevel }),
|
|
2804
2805
|
};
|
|
2805
2806
|
};
|
|
2806
2807
|
const serializeAws_restJson1ContainerSettings = (input, context) => {
|
|
@@ -3407,6 +3408,7 @@ const serializeAws_restJson1ImageInserter = (input, context) => {
|
|
|
3407
3408
|
...(input.InsertableImages != null && {
|
|
3408
3409
|
insertableImages: serializeAws_restJson1__listOfInsertableImage(input.InsertableImages, context),
|
|
3409
3410
|
}),
|
|
3411
|
+
...(input.SdrReferenceWhiteLevel != null && { sdrReferenceWhiteLevel: input.SdrReferenceWhiteLevel }),
|
|
3410
3412
|
};
|
|
3411
3413
|
};
|
|
3412
3414
|
const serializeAws_restJson1ImscDestinationSettings = (input, context) => {
|
|
@@ -5360,6 +5362,7 @@ const deserializeAws_restJson1ColorCorrector = (output, context) => {
|
|
|
5360
5362
|
Hue: (0, smithy_client_1.expectInt32)(output.hue),
|
|
5361
5363
|
SampleRangeConversion: (0, smithy_client_1.expectString)(output.sampleRangeConversion),
|
|
5362
5364
|
Saturation: (0, smithy_client_1.expectInt32)(output.saturation),
|
|
5365
|
+
SdrReferenceWhiteLevel: (0, smithy_client_1.expectInt32)(output.sdrReferenceWhiteLevel),
|
|
5363
5366
|
};
|
|
5364
5367
|
};
|
|
5365
5368
|
const deserializeAws_restJson1ContainerSettings = (output, context) => {
|
|
@@ -5889,6 +5892,7 @@ const deserializeAws_restJson1ImageInserter = (output, context) => {
|
|
|
5889
5892
|
InsertableImages: output.insertableImages != null
|
|
5890
5893
|
? deserializeAws_restJson1__listOfInsertableImage(output.insertableImages, context)
|
|
5891
5894
|
: undefined,
|
|
5895
|
+
SdrReferenceWhiteLevel: (0, smithy_client_1.expectInt32)(output.sdrReferenceWhiteLevel),
|
|
5892
5896
|
};
|
|
5893
5897
|
};
|
|
5894
5898
|
const deserializeAws_restJson1ImscDestinationSettings = (output, context) => {
|
|
@@ -850,6 +850,8 @@ export var ColorSpace;
|
|
|
850
850
|
ColorSpace["FOLLOW"] = "FOLLOW";
|
|
851
851
|
ColorSpace["HDR10"] = "HDR10";
|
|
852
852
|
ColorSpace["HLG_2020"] = "HLG_2020";
|
|
853
|
+
ColorSpace["P3D65_SDR"] = "P3D65_SDR";
|
|
854
|
+
ColorSpace["P3DCI"] = "P3DCI";
|
|
853
855
|
ColorSpace["REC_601"] = "REC_601";
|
|
854
856
|
ColorSpace["REC_709"] = "REC_709";
|
|
855
857
|
})(ColorSpace || (ColorSpace = {}));
|
|
@@ -999,6 +999,8 @@ export var ColorSpaceConversion;
|
|
|
999
999
|
ColorSpaceConversion["FORCE_709"] = "FORCE_709";
|
|
1000
1000
|
ColorSpaceConversion["FORCE_HDR10"] = "FORCE_HDR10";
|
|
1001
1001
|
ColorSpaceConversion["FORCE_HLG_2020"] = "FORCE_HLG_2020";
|
|
1002
|
+
ColorSpaceConversion["FORCE_P3D65_SDR"] = "FORCE_P3D65_SDR";
|
|
1003
|
+
ColorSpaceConversion["FORCE_P3DCI"] = "FORCE_P3DCI";
|
|
1002
1004
|
ColorSpaceConversion["NONE"] = "NONE";
|
|
1003
1005
|
})(ColorSpaceConversion || (ColorSpaceConversion = {}));
|
|
1004
1006
|
export var SampleRangeConversion;
|
|
@@ -2741,6 +2741,7 @@ const serializeAws_restJson1ColorCorrector = (input, context) => {
|
|
|
2741
2741
|
...(input.Hue != null && { hue: input.Hue }),
|
|
2742
2742
|
...(input.SampleRangeConversion != null && { sampleRangeConversion: input.SampleRangeConversion }),
|
|
2743
2743
|
...(input.Saturation != null && { saturation: input.Saturation }),
|
|
2744
|
+
...(input.SdrReferenceWhiteLevel != null && { sdrReferenceWhiteLevel: input.SdrReferenceWhiteLevel }),
|
|
2744
2745
|
};
|
|
2745
2746
|
};
|
|
2746
2747
|
const serializeAws_restJson1ContainerSettings = (input, context) => {
|
|
@@ -3347,6 +3348,7 @@ const serializeAws_restJson1ImageInserter = (input, context) => {
|
|
|
3347
3348
|
...(input.InsertableImages != null && {
|
|
3348
3349
|
insertableImages: serializeAws_restJson1__listOfInsertableImage(input.InsertableImages, context),
|
|
3349
3350
|
}),
|
|
3351
|
+
...(input.SdrReferenceWhiteLevel != null && { sdrReferenceWhiteLevel: input.SdrReferenceWhiteLevel }),
|
|
3350
3352
|
};
|
|
3351
3353
|
};
|
|
3352
3354
|
const serializeAws_restJson1ImscDestinationSettings = (input, context) => {
|
|
@@ -5300,6 +5302,7 @@ const deserializeAws_restJson1ColorCorrector = (output, context) => {
|
|
|
5300
5302
|
Hue: __expectInt32(output.hue),
|
|
5301
5303
|
SampleRangeConversion: __expectString(output.sampleRangeConversion),
|
|
5302
5304
|
Saturation: __expectInt32(output.saturation),
|
|
5305
|
+
SdrReferenceWhiteLevel: __expectInt32(output.sdrReferenceWhiteLevel),
|
|
5303
5306
|
};
|
|
5304
5307
|
};
|
|
5305
5308
|
const deserializeAws_restJson1ContainerSettings = (output, context) => {
|
|
@@ -5829,6 +5832,7 @@ const deserializeAws_restJson1ImageInserter = (output, context) => {
|
|
|
5829
5832
|
InsertableImages: output.insertableImages != null
|
|
5830
5833
|
? deserializeAws_restJson1__listOfInsertableImage(output.insertableImages, context)
|
|
5831
5834
|
: undefined,
|
|
5835
|
+
SdrReferenceWhiteLevel: __expectInt32(output.sdrReferenceWhiteLevel),
|
|
5832
5836
|
};
|
|
5833
5837
|
};
|
|
5834
5838
|
const deserializeAws_restJson1ImscDestinationSettings = (output, context) => {
|
|
@@ -220,7 +220,7 @@ export declare enum Ac3MetadataControl {
|
|
|
220
220
|
*/
|
|
221
221
|
export interface Ac3Settings {
|
|
222
222
|
/**
|
|
223
|
-
* Specify the average bitrate in bits per second. Valid bitrates
|
|
223
|
+
* Specify the average bitrate in bits per second. The bitrate that you specify must be a multiple of 8000 within the allowed minimum and maximum values. Leave blank to use the default bitrate for the coding mode you select according ETSI TS 102 366. Valid bitrates for coding mode 1/0: Default: 96000. Minimum: 64000. Maximum: 128000. Valid bitrates for coding mode 1/1: Default: 192000. Minimum: 128000. Maximum: 384000. Valid bitrates for coding mode 2/0: Default: 192000. Minimum: 128000. Maximum: 384000. Valid bitrates for coding mode 3/2 with FLE: Default: 384000. Minimum: 384000. Maximum: 640000.
|
|
224
224
|
*/
|
|
225
225
|
Bitrate?: number;
|
|
226
226
|
/**
|
|
@@ -499,7 +499,7 @@ export interface Eac3Settings {
|
|
|
499
499
|
*/
|
|
500
500
|
AttenuationControl?: Eac3AttenuationControl | string;
|
|
501
501
|
/**
|
|
502
|
-
* Specify the average bitrate in bits per second. Valid bitrates
|
|
502
|
+
* Specify the average bitrate in bits per second. The bitrate that you specify must be a multiple of 8000 within the allowed minimum and maximum values. Leave blank to use the default bitrate for the coding mode you select according ETSI TS 102 366. Valid bitrates for coding mode 1/0: Default: 96000. Minimum: 32000. Maximum: 3024000. Valid bitrates for coding mode 2/0: Default: 192000. Minimum: 96000. Maximum: 3024000. Valid bitrates for coding mode 3/2: Default: 384000. Minimum: 192000. Maximum: 3024000.
|
|
503
503
|
*/
|
|
504
504
|
Bitrate?: number;
|
|
505
505
|
/**
|
|
@@ -2171,6 +2171,10 @@ export interface ImageInserter {
|
|
|
2171
2171
|
* Specify the images that you want to overlay on your video. The images must be PNG or TGA files.
|
|
2172
2172
|
*/
|
|
2173
2173
|
InsertableImages?: InsertableImage[];
|
|
2174
|
+
/**
|
|
2175
|
+
* Specify the reference white level, in nits, for all of your image inserter images. Use to correct brightness levels within HDR10 outputs. For 1,000 nit peak brightness displays, we recommend that you set SDR reference white level to 203 (according to ITU-R BT.2408). Leave blank to use the default value of 100, or specify an integer from 100 to 1000.
|
|
2176
|
+
*/
|
|
2177
|
+
SdrReferenceWhiteLevel?: number;
|
|
2174
2178
|
}
|
|
2175
2179
|
/**
|
|
2176
2180
|
* To transcode only portions of your input, include one input clip for each part of your input that you want in your output. All input clips that you specify will be included in every output of the job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/assembling-multiple-inputs-and-input-clips.html.
|
|
@@ -2215,6 +2219,8 @@ export declare enum ColorSpace {
|
|
|
2215
2219
|
FOLLOW = "FOLLOW",
|
|
2216
2220
|
HDR10 = "HDR10",
|
|
2217
2221
|
HLG_2020 = "HLG_2020",
|
|
2222
|
+
P3D65_SDR = "P3D65_SDR",
|
|
2223
|
+
P3DCI = "P3DCI",
|
|
2218
2224
|
REC_601 = "REC_601",
|
|
2219
2225
|
REC_709 = "REC_709"
|
|
2220
2226
|
}
|
|
@@ -2304,7 +2310,10 @@ export interface VideoSelector {
|
|
|
2304
2310
|
*/
|
|
2305
2311
|
AlphaBehavior?: AlphaBehavior | string;
|
|
2306
2312
|
/**
|
|
2307
|
-
* If your input video has accurate color space metadata, or if you don't know about color space, leave this set to the default value Follow
|
|
2313
|
+
* If your input video has accurate color space metadata, or if you don't know about color space, leave this set to the default value Follow. The service will automatically detect your input color space. If your input video has metadata indicating the wrong color space, specify the accurate color space here. If your input video is HDR 10 and the SMPTE ST 2086 Mastering Display Color Volume static metadata isn't present in your video stream, or if that metadata is present but not accurate, choose Force HDR 10 here and specify correct values in the input HDR 10 metadata settings. For more information about MediaConvert HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr. Select P3D65 (SDR) to set the input color space metadata to the following:
|
|
2314
|
+
* * Color primaries: Display P3
|
|
2315
|
+
* * Transfer characteristics: SMPTE 428M
|
|
2316
|
+
* * Matrix coefficients: BT.709
|
|
2308
2317
|
*/
|
|
2309
2318
|
ColorSpace?: ColorSpace | string;
|
|
2310
2319
|
/**
|
|
@@ -2373,6 +2373,8 @@ export declare enum ColorSpaceConversion {
|
|
|
2373
2373
|
FORCE_709 = "FORCE_709",
|
|
2374
2374
|
FORCE_HDR10 = "FORCE_HDR10",
|
|
2375
2375
|
FORCE_HLG_2020 = "FORCE_HLG_2020",
|
|
2376
|
+
FORCE_P3D65_SDR = "FORCE_P3D65_SDR",
|
|
2377
|
+
FORCE_P3DCI = "FORCE_P3DCI",
|
|
2376
2378
|
NONE = "NONE"
|
|
2377
2379
|
}
|
|
2378
2380
|
export declare enum SampleRangeConversion {
|
|
@@ -2388,7 +2390,7 @@ export interface ColorCorrector {
|
|
|
2388
2390
|
*/
|
|
2389
2391
|
Brightness?: number;
|
|
2390
2392
|
/**
|
|
2391
|
-
* Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, from SDR to HDR, and from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output. HDR to SDR conversion uses Elemental tone mapping technology to approximate the outcome of manually regrading from HDR to SDR.
|
|
2393
|
+
* Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, from SDR to HDR, and from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output. HDR to SDR conversion uses Elemental tone mapping technology to approximate the outcome of manually regrading from HDR to SDR. Select Force P3D65 (SDR) to set the output color space metadata to the following: * Color primaries: Display P3 * Transfer characteristics: SMPTE 428M * Matrix coefficients: BT.709
|
|
2392
2394
|
*/
|
|
2393
2395
|
ColorSpaceConversion?: ColorSpaceConversion | string;
|
|
2394
2396
|
/**
|
|
@@ -2411,6 +2413,10 @@ export interface ColorCorrector {
|
|
|
2411
2413
|
* Saturation level.
|
|
2412
2414
|
*/
|
|
2413
2415
|
Saturation?: number;
|
|
2416
|
+
/**
|
|
2417
|
+
* Specify the reference white level, in nits, for all of your SDR inputs. Use to correct brightness levels within HDR10 outputs. The following color metadata must be present in your SDR input: color primaries, transfer characteristics, and matrix coefficients. If your SDR input has missing color metadata, or if you want to correct input color metadata, manually specify a color space in the input video selector. For 1,000 nit peak brightness displays, we recommend that you set SDR reference white level to 203 (according to ITU-R BT.2408). Leave blank to use the default value of 100, or specify an integer from 100 to 1000.
|
|
2418
|
+
*/
|
|
2419
|
+
SdrReferenceWhiteLevel?: number;
|
|
2414
2420
|
}
|
|
2415
2421
|
export declare enum DeinterlaceAlgorithm {
|
|
2416
2422
|
BLEND = "BLEND",
|
|
@@ -1131,6 +1131,7 @@ export interface InsertableImage {
|
|
|
1131
1131
|
}
|
|
1132
1132
|
export interface ImageInserter {
|
|
1133
1133
|
InsertableImages?: InsertableImage[];
|
|
1134
|
+
SdrReferenceWhiteLevel?: number;
|
|
1134
1135
|
}
|
|
1135
1136
|
export interface InputClipping {
|
|
1136
1137
|
EndTimecode?: string;
|
|
@@ -1160,6 +1161,8 @@ export declare enum ColorSpace {
|
|
|
1160
1161
|
FOLLOW = "FOLLOW",
|
|
1161
1162
|
HDR10 = "HDR10",
|
|
1162
1163
|
HLG_2020 = "HLG_2020",
|
|
1164
|
+
P3D65_SDR = "P3D65_SDR",
|
|
1165
|
+
P3DCI = "P3DCI",
|
|
1163
1166
|
REC_601 = "REC_601",
|
|
1164
1167
|
REC_709 = "REC_709",
|
|
1165
1168
|
}
|
|
@@ -1282,6 +1282,8 @@ export declare enum ColorSpaceConversion {
|
|
|
1282
1282
|
FORCE_709 = "FORCE_709",
|
|
1283
1283
|
FORCE_HDR10 = "FORCE_HDR10",
|
|
1284
1284
|
FORCE_HLG_2020 = "FORCE_HLG_2020",
|
|
1285
|
+
FORCE_P3D65_SDR = "FORCE_P3D65_SDR",
|
|
1286
|
+
FORCE_P3DCI = "FORCE_P3DCI",
|
|
1285
1287
|
NONE = "NONE",
|
|
1286
1288
|
}
|
|
1287
1289
|
export declare enum SampleRangeConversion {
|
|
@@ -1296,6 +1298,7 @@ export interface ColorCorrector {
|
|
|
1296
1298
|
Hue?: number;
|
|
1297
1299
|
SampleRangeConversion?: SampleRangeConversion | string;
|
|
1298
1300
|
Saturation?: number;
|
|
1301
|
+
SdrReferenceWhiteLevel?: number;
|
|
1299
1302
|
}
|
|
1300
1303
|
export declare enum DeinterlaceAlgorithm {
|
|
1301
1304
|
BLEND = "BLEND",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconvert",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconvert Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.208.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",
|
|
@@ -19,47 +19,47 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64": "3.
|
|
45
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
46
|
-
"@aws-sdk/util-base64-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.208.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.208.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.208.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.208.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.208.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.208.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.208.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.208.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.208.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.208.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.208.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.208.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.208.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.208.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.208.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.208.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.208.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.208.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.208.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.208.0",
|
|
42
|
+
"@aws-sdk/types": "3.208.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.208.0",
|
|
44
|
+
"@aws-sdk/util-base64": "3.208.0",
|
|
45
|
+
"@aws-sdk/util-base64-browser": "3.208.0",
|
|
46
|
+
"@aws-sdk/util-base64-node": "3.208.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.208.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.208.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.208.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.208.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.208.0",
|
|
54
54
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
55
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
55
|
+
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
56
56
|
"tslib": "^2.3.1",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.208.0",
|
|
61
61
|
"@tsconfig/node14": "1.0.3",
|
|
62
|
-
"@types/node": "^
|
|
62
|
+
"@types/node": "^14.14.31",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|
|
64
64
|
"concurrently": "7.0.0",
|
|
65
65
|
"downlevel-dts": "0.10.1",
|