@aws-sdk/client-mediaconvert 3.395.0 → 3.399.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/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +25 -19
- package/dist-cjs/models/models_1.js +30 -5
- package/dist-cjs/protocols/Aws_restJson1.js +28 -0
- package/dist-cjs/runtimeExtensions.js +5 -5
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +23 -17
- package/dist-es/models/models_1.js +25 -0
- package/dist-es/protocols/Aws_restJson1.js +28 -0
- package/dist-es/runtimeExtensions.js +5 -5
- package/dist-types/commands/CreateJobCommand.d.ts +34 -4
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +34 -4
- package/dist-types/commands/CreatePresetCommand.d.ts +24 -4
- package/dist-types/commands/DeletePolicyCommand.d.ts +2 -1
- package/dist-types/commands/DeletePresetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -2
- package/dist-types/commands/GetJobCommand.d.ts +18 -3
- package/dist-types/commands/GetJobTemplateCommand.d.ts +17 -2
- package/dist-types/commands/GetPresetCommand.d.ts +12 -2
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +17 -2
- package/dist-types/commands/ListJobsCommand.d.ts +17 -2
- package/dist-types/commands/ListPresetsCommand.d.ts +12 -2
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +34 -4
- package/dist-types/commands/UpdatePresetCommand.d.ts +24 -4
- package/dist-types/extensionConfiguration.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +64 -35
- package/dist-types/models/models_1.d.ts +83 -31
- package/dist-types/models/models_2.d.ts +30 -0
- package/dist-types/runtimeExtensions.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +1 -2
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -20
- package/dist-types/ts3.4/models/models_1.d.ts +36 -10
- package/dist-types/ts3.4/models/models_2.d.ts +8 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -2
- package/package.json +29 -29
- package/dist-types/clientConfiguration.d.ts +0 -6
- package/dist-types/ts3.4/clientConfiguration.d.ts +0 -3
- /package/dist-cjs/{clientConfiguration.js → extensionConfiguration.js} +0 -0
- /package/dist-es/{clientConfiguration.js → extensionConfiguration.js} +0 -0
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
import { AccelerationSettings, Endpoint, HopDestination } from "./models_0";
|
|
2
2
|
import { Job, JobStatus, JobTemplate, JobTemplateSettings, Preset, PresetSettings, Queue, QueueStatus, ReservationPlanSettings, StatusUpdateInterval } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface DeletePolicyResponse {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface DeletePresetRequest {
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
* The name of the preset to be deleted.
|
|
15
|
+
*/
|
|
16
|
+
Name: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export interface DeletePresetResponse {
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface DeleteQueueRequest {
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* The name of the queue that you want to delete.
|
|
30
|
+
*/
|
|
31
|
+
Name: string | undefined;
|
|
32
|
+
}
|
|
3
33
|
/**
|
|
4
34
|
* @public
|
|
5
35
|
*/
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MediaConvertExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
5
5
|
export interface RuntimeExtension {
|
|
6
|
-
|
|
6
|
+
configure(clientConfiguration: MediaConvertExtensionConfiguration): void;
|
|
7
7
|
}
|
|
8
8
|
/**
|
|
9
9
|
* @public
|
|
@@ -11,7 +11,8 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../MediaConvertClient";
|
|
14
|
-
import { DeletePolicyRequest
|
|
14
|
+
import { DeletePolicyRequest } from "../models/models_1";
|
|
15
|
+
import { DeletePolicyResponse } from "../models/models_2";
|
|
15
16
|
export { __MetadataBearer, $Command };
|
|
16
17
|
export interface DeletePolicyCommandInput extends DeletePolicyRequest {}
|
|
17
18
|
export interface DeletePolicyCommandOutput
|
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../MediaConvertClient";
|
|
14
|
-
import { DeletePresetRequest, DeletePresetResponse } from "../models/
|
|
14
|
+
import { DeletePresetRequest, DeletePresetResponse } from "../models/models_2";
|
|
15
15
|
export { __MetadataBearer, $Command };
|
|
16
16
|
export interface DeletePresetCommandInput extends DeletePresetRequest {}
|
|
17
17
|
export interface DeletePresetCommandOutput
|
|
@@ -11,8 +11,7 @@ import {
|
|
|
11
11
|
ServiceInputTypes,
|
|
12
12
|
ServiceOutputTypes,
|
|
13
13
|
} from "../MediaConvertClient";
|
|
14
|
-
import { DeleteQueueRequest } from "../models/
|
|
15
|
-
import { DeleteQueueResponse } from "../models/models_2";
|
|
14
|
+
import { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_2";
|
|
16
15
|
export { __MetadataBearer, $Command };
|
|
17
16
|
export interface DeleteQueueCommandInput extends DeleteQueueRequest {}
|
|
18
17
|
export interface DeleteQueueCommandOutput
|
|
@@ -11,15 +11,28 @@ export interface AllowedRenditionSize {
|
|
|
11
11
|
export declare const AudioChannelTag: {
|
|
12
12
|
readonly C: "C";
|
|
13
13
|
readonly CS: "CS";
|
|
14
|
+
readonly HI: "HI";
|
|
14
15
|
readonly L: "L";
|
|
15
16
|
readonly LC: "LC";
|
|
16
17
|
readonly LFE: "LFE";
|
|
18
|
+
readonly LFE2: "LFE2";
|
|
17
19
|
readonly LS: "LS";
|
|
18
20
|
readonly LSD: "LSD";
|
|
21
|
+
readonly LT: "LT";
|
|
22
|
+
readonly LW: "LW";
|
|
23
|
+
readonly M: "M";
|
|
24
|
+
readonly NAR: "NAR";
|
|
19
25
|
readonly R: "R";
|
|
20
26
|
readonly RC: "RC";
|
|
21
27
|
readonly RS: "RS";
|
|
22
28
|
readonly RSD: "RSD";
|
|
29
|
+
readonly RSL: "RSL";
|
|
30
|
+
readonly RSR: "RSR";
|
|
31
|
+
readonly RT: "RT";
|
|
32
|
+
readonly RW: "RW";
|
|
33
|
+
readonly TBC: "TBC";
|
|
34
|
+
readonly TBL: "TBL";
|
|
35
|
+
readonly TBR: "TBR";
|
|
23
36
|
readonly TCS: "TCS";
|
|
24
37
|
readonly VHC: "VHC";
|
|
25
38
|
readonly VHL: "VHL";
|
|
@@ -206,6 +219,7 @@ export declare const AudioCodec: {
|
|
|
206
219
|
readonly AIFF: "AIFF";
|
|
207
220
|
readonly EAC3: "EAC3";
|
|
208
221
|
readonly EAC3_ATMOS: "EAC3_ATMOS";
|
|
222
|
+
readonly FLAC: "FLAC";
|
|
209
223
|
readonly MP2: "MP2";
|
|
210
224
|
readonly MP3: "MP3";
|
|
211
225
|
readonly OPUS: "OPUS";
|
|
@@ -429,6 +443,11 @@ export interface Eac3Settings {
|
|
|
429
443
|
SurroundExMode?: Eac3SurroundExMode | string;
|
|
430
444
|
SurroundMode?: Eac3SurroundMode | string;
|
|
431
445
|
}
|
|
446
|
+
export interface FlacSettings {
|
|
447
|
+
BitDepth?: number;
|
|
448
|
+
Channels?: number;
|
|
449
|
+
SampleRate?: number;
|
|
450
|
+
}
|
|
432
451
|
export interface Mp2Settings {
|
|
433
452
|
Bitrate?: number;
|
|
434
453
|
Channels?: number;
|
|
@@ -475,6 +494,7 @@ export interface AudioCodecSettings {
|
|
|
475
494
|
Codec?: AudioCodec | string;
|
|
476
495
|
Eac3AtmosSettings?: Eac3AtmosSettings;
|
|
477
496
|
Eac3Settings?: Eac3Settings;
|
|
497
|
+
FlacSettings?: FlacSettings;
|
|
478
498
|
Mp2Settings?: Mp2Settings;
|
|
479
499
|
Mp3Settings?: Mp3Settings;
|
|
480
500
|
OpusSettings?: OpusSettings;
|
|
@@ -1699,9 +1719,21 @@ export interface S3EncryptionSettings {
|
|
|
1699
1719
|
KmsEncryptionContext?: string;
|
|
1700
1720
|
KmsKeyArn?: string;
|
|
1701
1721
|
}
|
|
1722
|
+
export declare const S3StorageClass: {
|
|
1723
|
+
readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
|
|
1724
|
+
readonly GLACIER: "GLACIER";
|
|
1725
|
+
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
1726
|
+
readonly ONEZONE_IA: "ONEZONE_IA";
|
|
1727
|
+
readonly REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY";
|
|
1728
|
+
readonly STANDARD: "STANDARD";
|
|
1729
|
+
readonly STANDARD_IA: "STANDARD_IA";
|
|
1730
|
+
};
|
|
1731
|
+
export type S3StorageClass =
|
|
1732
|
+
(typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
1702
1733
|
export interface S3DestinationSettings {
|
|
1703
1734
|
AccessControl?: S3DestinationAccessControl;
|
|
1704
1735
|
Encryption?: S3EncryptionSettings;
|
|
1736
|
+
StorageClass?: S3StorageClass | string;
|
|
1705
1737
|
}
|
|
1706
1738
|
export interface DestinationSettings {
|
|
1707
1739
|
S3Settings?: S3DestinationSettings;
|
|
@@ -2317,23 +2349,3 @@ export interface CmfcSettings {
|
|
|
2317
2349
|
TimedMetadataSchemeIdUri?: string;
|
|
2318
2350
|
TimedMetadataValue?: string;
|
|
2319
2351
|
}
|
|
2320
|
-
export declare const ContainerType: {
|
|
2321
|
-
readonly CMFC: "CMFC";
|
|
2322
|
-
readonly F4V: "F4V";
|
|
2323
|
-
readonly ISMV: "ISMV";
|
|
2324
|
-
readonly M2TS: "M2TS";
|
|
2325
|
-
readonly M3U8: "M3U8";
|
|
2326
|
-
readonly MOV: "MOV";
|
|
2327
|
-
readonly MP4: "MP4";
|
|
2328
|
-
readonly MPD: "MPD";
|
|
2329
|
-
readonly MXF: "MXF";
|
|
2330
|
-
readonly RAW: "RAW";
|
|
2331
|
-
readonly WEBM: "WEBM";
|
|
2332
|
-
};
|
|
2333
|
-
export type ContainerType = (typeof ContainerType)[keyof typeof ContainerType];
|
|
2334
|
-
export declare const F4vMoovPlacement: {
|
|
2335
|
-
readonly NORMAL: "NORMAL";
|
|
2336
|
-
readonly PROGRESSIVE_DOWNLOAD: "PROGRESSIVE_DOWNLOAD";
|
|
2337
|
-
};
|
|
2338
|
-
export type F4vMoovPlacement =
|
|
2339
|
-
(typeof F4vMoovPlacement)[keyof typeof F4vMoovPlacement];
|
|
@@ -11,10 +11,8 @@ import {
|
|
|
11
11
|
CaptionDescriptionPreset,
|
|
12
12
|
CmfcAudioDuration,
|
|
13
13
|
CmfcSettings,
|
|
14
|
-
ContainerType,
|
|
15
14
|
EsamSettings,
|
|
16
15
|
ExtendedDataServices,
|
|
17
|
-
F4vMoovPlacement,
|
|
18
16
|
Hdr10Metadata,
|
|
19
17
|
HopDestination,
|
|
20
18
|
Id3Insertion,
|
|
@@ -32,6 +30,26 @@ import {
|
|
|
32
30
|
QueueTransition,
|
|
33
31
|
Rectangle,
|
|
34
32
|
} from "./models_0";
|
|
33
|
+
export declare const ContainerType: {
|
|
34
|
+
readonly CMFC: "CMFC";
|
|
35
|
+
readonly F4V: "F4V";
|
|
36
|
+
readonly ISMV: "ISMV";
|
|
37
|
+
readonly M2TS: "M2TS";
|
|
38
|
+
readonly M3U8: "M3U8";
|
|
39
|
+
readonly MOV: "MOV";
|
|
40
|
+
readonly MP4: "MP4";
|
|
41
|
+
readonly MPD: "MPD";
|
|
42
|
+
readonly MXF: "MXF";
|
|
43
|
+
readonly RAW: "RAW";
|
|
44
|
+
readonly WEBM: "WEBM";
|
|
45
|
+
};
|
|
46
|
+
export type ContainerType = (typeof ContainerType)[keyof typeof ContainerType];
|
|
47
|
+
export declare const F4vMoovPlacement: {
|
|
48
|
+
readonly NORMAL: "NORMAL";
|
|
49
|
+
readonly PROGRESSIVE_DOWNLOAD: "PROGRESSIVE_DOWNLOAD";
|
|
50
|
+
};
|
|
51
|
+
export type F4vMoovPlacement =
|
|
52
|
+
(typeof F4vMoovPlacement)[keyof typeof F4vMoovPlacement];
|
|
35
53
|
export interface F4vSettings {
|
|
36
54
|
MoovPlacement?: F4vMoovPlacement | string;
|
|
37
55
|
}
|
|
@@ -122,6 +140,11 @@ export declare const M2tsPcrControl: {
|
|
|
122
140
|
};
|
|
123
141
|
export type M2tsPcrControl =
|
|
124
142
|
(typeof M2tsPcrControl)[keyof typeof M2tsPcrControl];
|
|
143
|
+
export declare const TsPtsOffset: {
|
|
144
|
+
readonly AUTO: "AUTO";
|
|
145
|
+
readonly SECONDS: "SECONDS";
|
|
146
|
+
};
|
|
147
|
+
export type TsPtsOffset = (typeof TsPtsOffset)[keyof typeof TsPtsOffset];
|
|
125
148
|
export declare const M2tsRateMode: {
|
|
126
149
|
readonly CBR: "CBR";
|
|
127
150
|
readonly VBR: "VBR";
|
|
@@ -182,6 +205,8 @@ export interface M2tsSettings {
|
|
|
182
205
|
PmtPid?: number;
|
|
183
206
|
PrivateMetadataPid?: number;
|
|
184
207
|
ProgramNumber?: number;
|
|
208
|
+
PtsOffset?: number;
|
|
209
|
+
PtsOffsetMode?: TsPtsOffset | string;
|
|
185
210
|
RateMode?: M2tsRateMode | string;
|
|
186
211
|
Scte35Esam?: M2tsScte35Esam;
|
|
187
212
|
Scte35Pid?: number;
|
|
@@ -242,6 +267,8 @@ export interface M3u8Settings {
|
|
|
242
267
|
PmtPid?: number;
|
|
243
268
|
PrivateMetadataPid?: number;
|
|
244
269
|
ProgramNumber?: number;
|
|
270
|
+
PtsOffset?: number;
|
|
271
|
+
PtsOffsetMode?: TsPtsOffset | string;
|
|
245
272
|
Scte35Pid?: number;
|
|
246
273
|
Scte35Source?: M3u8Scte35Source | string;
|
|
247
274
|
TimedMetadata?: TimedMetadata | string;
|
|
@@ -478,6 +505,12 @@ export declare const Av1BitDepth: {
|
|
|
478
505
|
readonly BIT_8: "BIT_8";
|
|
479
506
|
};
|
|
480
507
|
export type Av1BitDepth = (typeof Av1BitDepth)[keyof typeof Av1BitDepth];
|
|
508
|
+
export declare const Av1FilmGrainSynthesis: {
|
|
509
|
+
readonly DISABLED: "DISABLED";
|
|
510
|
+
readonly ENABLED: "ENABLED";
|
|
511
|
+
};
|
|
512
|
+
export type Av1FilmGrainSynthesis =
|
|
513
|
+
(typeof Av1FilmGrainSynthesis)[keyof typeof Av1FilmGrainSynthesis];
|
|
481
514
|
export declare const Av1FramerateControl: {
|
|
482
515
|
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
483
516
|
readonly SPECIFIED: "SPECIFIED";
|
|
@@ -509,6 +542,7 @@ export type Av1SpatialAdaptiveQuantization =
|
|
|
509
542
|
export interface Av1Settings {
|
|
510
543
|
AdaptiveQuantization?: Av1AdaptiveQuantization | string;
|
|
511
544
|
BitDepth?: Av1BitDepth | string;
|
|
545
|
+
FilmGrainSynthesis?: Av1FilmGrainSynthesis | string;
|
|
512
546
|
FramerateControl?: Av1FramerateControl | string;
|
|
513
547
|
FramerateConversionAlgorithm?: Av1FramerateConversionAlgorithm | string;
|
|
514
548
|
FramerateDenominator?: number;
|
|
@@ -2230,11 +2264,3 @@ export interface DeleteJobTemplateRequest {
|
|
|
2230
2264
|
}
|
|
2231
2265
|
export interface DeleteJobTemplateResponse {}
|
|
2232
2266
|
export interface DeletePolicyRequest {}
|
|
2233
|
-
export interface DeletePolicyResponse {}
|
|
2234
|
-
export interface DeletePresetRequest {
|
|
2235
|
-
Name: string | undefined;
|
|
2236
|
-
}
|
|
2237
|
-
export interface DeletePresetResponse {}
|
|
2238
|
-
export interface DeleteQueueRequest {
|
|
2239
|
-
Name: string | undefined;
|
|
2240
|
-
}
|
|
@@ -11,6 +11,14 @@ import {
|
|
|
11
11
|
ReservationPlanSettings,
|
|
12
12
|
StatusUpdateInterval,
|
|
13
13
|
} from "./models_1";
|
|
14
|
+
export interface DeletePolicyResponse {}
|
|
15
|
+
export interface DeletePresetRequest {
|
|
16
|
+
Name: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
export interface DeletePresetResponse {}
|
|
19
|
+
export interface DeleteQueueRequest {
|
|
20
|
+
Name: string | undefined;
|
|
21
|
+
}
|
|
14
22
|
export interface DeleteQueueResponse {}
|
|
15
23
|
export declare const DescribeEndpointsMode: {
|
|
16
24
|
readonly DEFAULT: "DEFAULT";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MediaConvertExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
export interface RuntimeExtension {
|
|
3
|
-
|
|
3
|
+
configure(clientConfiguration: MediaConvertExtensionConfiguration): void;
|
|
4
4
|
}
|
|
5
5
|
export interface RuntimeExtensionsConfig {
|
|
6
6
|
extensions: RuntimeExtension[];
|
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.399.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",
|
|
@@ -21,37 +21,37 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.0.
|
|
36
|
-
"@smithy/fetch-http-handler": "^2.0.
|
|
37
|
-
"@smithy/hash-node": "^2.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^2.0.
|
|
41
|
-
"@smithy/middleware-retry": "^2.0.
|
|
42
|
-
"@smithy/middleware-serde": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.398.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.398.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.398.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.398.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.398.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.398.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.398.0",
|
|
31
|
+
"@aws-sdk/types": "3.398.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.398.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.398.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.398.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.0.5",
|
|
36
|
+
"@smithy/fetch-http-handler": "^2.0.5",
|
|
37
|
+
"@smithy/hash-node": "^2.0.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^2.0.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^2.0.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^2.0.5",
|
|
41
|
+
"@smithy/middleware-retry": "^2.0.5",
|
|
42
|
+
"@smithy/middleware-serde": "^2.0.5",
|
|
43
43
|
"@smithy/middleware-stack": "^2.0.0",
|
|
44
|
-
"@smithy/node-config-provider": "^2.0.
|
|
45
|
-
"@smithy/node-http-handler": "^2.0.
|
|
46
|
-
"@smithy/protocol-http": "^2.0.
|
|
47
|
-
"@smithy/smithy-client": "^2.0.
|
|
48
|
-
"@smithy/types": "^2.2.
|
|
49
|
-
"@smithy/url-parser": "^2.0.
|
|
44
|
+
"@smithy/node-config-provider": "^2.0.5",
|
|
45
|
+
"@smithy/node-http-handler": "^2.0.5",
|
|
46
|
+
"@smithy/protocol-http": "^2.0.5",
|
|
47
|
+
"@smithy/smithy-client": "^2.0.5",
|
|
48
|
+
"@smithy/types": "^2.2.2",
|
|
49
|
+
"@smithy/url-parser": "^2.0.5",
|
|
50
50
|
"@smithy/util-base64": "^2.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
52
|
-
"@smithy/util-body-length-node": "^2.
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
52
|
+
"@smithy/util-body-length-node": "^2.1.0",
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^2.0.5",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^2.0.5",
|
|
55
55
|
"@smithy/util-retry": "^2.0.0",
|
|
56
56
|
"@smithy/util-utf8": "^2.0.0",
|
|
57
57
|
"tslib": "^2.5.0",
|
|
File without changes
|
|
File without changes
|