@aws-sdk/client-medialive 3.1064.0 → 3.1066.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/index.js +11 -4
- package/dist-cjs/schemas/schemas_0.js +82 -55
- package/dist-es/models/enums.js +10 -4
- package/dist-es/schemas/schemas_0.js +67 -40
- package/dist-types/commands/CreateChannelCommand.d.ts +128 -4
- package/dist-types/commands/DeleteChannelCommand.d.ts +64 -2
- package/dist-types/commands/DescribeChannelCommand.d.ts +64 -2
- package/dist-types/commands/ListChannelsCommand.d.ts +61 -1
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +64 -2
- package/dist-types/commands/StartChannelCommand.d.ts +64 -2
- package/dist-types/commands/StopChannelCommand.d.ts +64 -2
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +64 -2
- package/dist-types/commands/UpdateChannelCommand.d.ts +128 -4
- package/dist-types/models/enums.d.ts +26 -12
- package/dist-types/models/models_0.d.ts +108 -51
- package/dist-types/models/models_1.d.ts +42 -2
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +14 -6
- package/dist-types/ts3.4/models/models_0.d.ts +19 -13
- package/dist-types/ts3.4/models/models_1.d.ts +13 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +3 -3
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
AudioLanguageSelectionPolicy,
|
|
21
21
|
AudioNormalizationAlgorithm,
|
|
22
22
|
AudioNormalizationAlgorithmControl,
|
|
23
|
+
AudioNormalizationPeakCalculation,
|
|
23
24
|
AudioOnlyHlsSegmentType,
|
|
24
25
|
AudioOnlyHlsTrackType,
|
|
25
26
|
AudioType,
|
|
@@ -287,7 +288,6 @@ import {
|
|
|
287
288
|
Scte35InputMode,
|
|
288
289
|
Scte35NoRegionalBlackoutFlag,
|
|
289
290
|
Scte35SegmentationCancelIndicator,
|
|
290
|
-
Scte35SegmentationScope,
|
|
291
291
|
Scte35SpliceInsertNoRegionalBlackoutBehavior,
|
|
292
292
|
Scte35SpliceInsertWebDeliveryAllowedBehavior,
|
|
293
293
|
Scte35Type,
|
|
@@ -339,6 +339,8 @@ export interface AudioNormalizationSettings {
|
|
|
339
339
|
Algorithm?: AudioNormalizationAlgorithm | undefined;
|
|
340
340
|
AlgorithmControl?: AudioNormalizationAlgorithmControl | undefined;
|
|
341
341
|
TargetLkfs?: number | undefined;
|
|
342
|
+
PeakCalculation?: AudioNormalizationPeakCalculation | undefined;
|
|
343
|
+
PeakLimiterThreshold?: number | undefined;
|
|
342
344
|
}
|
|
343
345
|
export interface NielsenCBET {
|
|
344
346
|
CbetCheckDigitString: string | undefined;
|
|
@@ -454,6 +456,20 @@ export interface AudioFeedInput {
|
|
|
454
456
|
AudioSelectorName?: string | undefined;
|
|
455
457
|
FeedInput?: string | undefined;
|
|
456
458
|
}
|
|
459
|
+
export interface AudioDolbyEDecode {
|
|
460
|
+
ProgramSelection: DolbyEProgramSelection | undefined;
|
|
461
|
+
}
|
|
462
|
+
export interface AudioPreMixerSettings {
|
|
463
|
+
AudioNormalizationSettings?: AudioNormalizationSettings | undefined;
|
|
464
|
+
Channels?: number | undefined;
|
|
465
|
+
GainDb?: number | undefined;
|
|
466
|
+
RemixSettings?: RemixSettings | undefined;
|
|
467
|
+
}
|
|
468
|
+
export interface AudioPid {
|
|
469
|
+
DolbyEDecode?: AudioDolbyEDecode | undefined;
|
|
470
|
+
Pid: number | undefined;
|
|
471
|
+
PremixSettings?: AudioPreMixerSettings | undefined;
|
|
472
|
+
}
|
|
457
473
|
export interface AudioHlsRenditionSelection {
|
|
458
474
|
GroupId: string | undefined;
|
|
459
475
|
Name: string | undefined;
|
|
@@ -464,12 +480,11 @@ export interface AudioLanguageSelection {
|
|
|
464
480
|
}
|
|
465
481
|
export interface AudioPidSelection {
|
|
466
482
|
Pid: number | undefined;
|
|
467
|
-
|
|
468
|
-
export interface AudioDolbyEDecode {
|
|
469
|
-
ProgramSelection: DolbyEProgramSelection | undefined;
|
|
483
|
+
Pids?: AudioPid[] | undefined;
|
|
470
484
|
}
|
|
471
485
|
export interface AudioTrack {
|
|
472
486
|
Track: number | undefined;
|
|
487
|
+
PremixSettings?: AudioPreMixerSettings | undefined;
|
|
473
488
|
}
|
|
474
489
|
export interface AudioTrackSelection {
|
|
475
490
|
Tracks: AudioTrack[] | undefined;
|
|
@@ -2267,12 +2282,3 @@ export interface Scte35TimeSignalApos {
|
|
|
2267
2282
|
NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior | undefined;
|
|
2268
2283
|
WebDeliveryAllowedFlag?: Scte35AposWebDeliveryAllowedBehavior | undefined;
|
|
2269
2284
|
}
|
|
2270
|
-
export interface AvailSettings {
|
|
2271
|
-
Esam?: Esam | undefined;
|
|
2272
|
-
Scte35SpliceInsert?: Scte35SpliceInsert | undefined;
|
|
2273
|
-
Scte35TimeSignalApos?: Scte35TimeSignalApos | undefined;
|
|
2274
|
-
}
|
|
2275
|
-
export interface AvailConfiguration {
|
|
2276
|
-
AvailSettings?: AvailSettings | undefined;
|
|
2277
|
-
Scte35SegmentationScope?: Scte35SegmentationScope | undefined;
|
|
2278
|
-
}
|
|
@@ -53,6 +53,7 @@ import {
|
|
|
53
53
|
RebootInputDeviceForce,
|
|
54
54
|
ReservationState,
|
|
55
55
|
RouterEncryptionType,
|
|
56
|
+
Scte35SegmentationScope,
|
|
56
57
|
SdiSourceMode,
|
|
57
58
|
SdiSourceState,
|
|
58
59
|
SdiSourceType,
|
|
@@ -68,7 +69,6 @@ import {
|
|
|
68
69
|
AudioDescription,
|
|
69
70
|
AudioFeedInput,
|
|
70
71
|
AvailBlanking,
|
|
71
|
-
AvailConfiguration,
|
|
72
72
|
BatchFailedResultModel,
|
|
73
73
|
BatchSuccessfulResultModel,
|
|
74
74
|
CaptionDescription,
|
|
@@ -89,6 +89,7 @@ import {
|
|
|
89
89
|
DescribeLinkedChannelSettings,
|
|
90
90
|
DescribeNetworkSummary,
|
|
91
91
|
DescribeNodeSummary,
|
|
92
|
+
Esam,
|
|
92
93
|
EventBridgeRuleTemplateGroupSummary,
|
|
93
94
|
EventBridgeRuleTemplateSummary,
|
|
94
95
|
EventBridgeRuleTemplateTarget,
|
|
@@ -142,6 +143,8 @@ import {
|
|
|
142
143
|
RouterInputSettings,
|
|
143
144
|
RouteUpdateRequest,
|
|
144
145
|
ScheduleAction,
|
|
146
|
+
Scte35SpliceInsert,
|
|
147
|
+
Scte35TimeSignalApos,
|
|
145
148
|
SdiSourceMapping,
|
|
146
149
|
SdiSourceSummary,
|
|
147
150
|
SignalMapSummary,
|
|
@@ -153,6 +156,15 @@ import {
|
|
|
153
156
|
VideoDescription,
|
|
154
157
|
VpcOutputSettingsDescription,
|
|
155
158
|
} from "./models_0";
|
|
159
|
+
export interface AvailSettings {
|
|
160
|
+
Esam?: Esam | undefined;
|
|
161
|
+
Scte35SpliceInsert?: Scte35SpliceInsert | undefined;
|
|
162
|
+
Scte35TimeSignalApos?: Scte35TimeSignalApos | undefined;
|
|
163
|
+
}
|
|
164
|
+
export interface AvailConfiguration {
|
|
165
|
+
AvailSettings?: AvailSettings | undefined;
|
|
166
|
+
Scte35SegmentationScope?: Scte35SegmentationScope | undefined;
|
|
167
|
+
}
|
|
156
168
|
export interface BatchDeleteRequest {
|
|
157
169
|
ChannelIds?: string[] | undefined;
|
|
158
170
|
InputIds?: string[] | undefined;
|
|
@@ -39,7 +39,9 @@ export declare var AudioHlsRenditionSelection$: StaticStructureSchema;
|
|
|
39
39
|
export declare var AudioLanguageSelection$: StaticStructureSchema;
|
|
40
40
|
export declare var AudioNormalizationSettings$: StaticStructureSchema;
|
|
41
41
|
export declare var AudioOnlyHlsSettings$: StaticStructureSchema;
|
|
42
|
+
export declare var AudioPid$: StaticStructureSchema;
|
|
42
43
|
export declare var AudioPidSelection$: StaticStructureSchema;
|
|
44
|
+
export declare var AudioPreMixerSettings$: StaticStructureSchema;
|
|
43
45
|
export declare var AudioSelector$: StaticStructureSchema;
|
|
44
46
|
export declare var AudioSelectorSettings$: StaticStructureSchema;
|
|
45
47
|
export declare var AudioSilenceFailoverSettings$: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-medialive",
|
|
3
3
|
"description": "AWS SDK for JavaScript Medialive Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1066.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.20",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.55",
|
|
26
26
|
"@aws-sdk/types": "^3.973.12",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|