@aws-sdk/client-medialive 3.540.0 → 3.548.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 +154 -17
- package/dist-es/models/models_0.js +47 -15
- package/dist-es/models/models_1.js +31 -0
- package/dist-es/protocols/Aws_restJson1.js +54 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +50 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +25 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +25 -0
- package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThumbnailsCommand.d.ts +1 -1
- package/dist-types/commands/RestartChannelPipelinesCommand.d.ts +25 -0
- package/dist-types/commands/StartChannelCommand.d.ts +25 -0
- package/dist-types/commands/StopChannelCommand.d.ts +25 -0
- package/dist-types/commands/UpdateChannelClassCommand.d.ts +25 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +50 -0
- package/dist-types/models/models_0.d.ts +167 -156
- package/dist-types/models/models_1.d.ts +247 -363
- package/dist-types/models/models_2.d.ts +364 -2
- package/dist-types/ts3.4/commands/DescribeMultiplexProgramCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeThumbnailsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +73 -48
- package/dist-types/ts3.4/models/models_1.d.ts +81 -91
- package/dist-types/ts3.4/models/models_2.d.ts +93 -1
- package/package.json +1 -1
|
@@ -12,31 +12,23 @@ import {
|
|
|
12
12
|
ChannelClass,
|
|
13
13
|
ChannelEgressEndpoint,
|
|
14
14
|
ChannelState,
|
|
15
|
+
CmafIngestGroupSettings,
|
|
15
16
|
ColorCorrection,
|
|
16
17
|
DeviceSettingsSyncState,
|
|
17
18
|
DeviceUpdateStatus,
|
|
18
19
|
FrameCaptureGroupSettings,
|
|
19
20
|
Hdr10Settings,
|
|
20
21
|
HlsAdMarkers,
|
|
21
|
-
HlsAkamaiSettings,
|
|
22
|
-
HlsBasicPutSettings,
|
|
23
22
|
HlsCaptionLanguageSetting,
|
|
24
23
|
HlsClientCache,
|
|
25
24
|
HlsCodecSpecification,
|
|
26
25
|
HlsDirectoryStructure,
|
|
27
26
|
HlsDiscontinuityTags,
|
|
28
|
-
HlsEncryptionType,
|
|
29
|
-
HlsMediaStoreSettings,
|
|
30
|
-
HlsS3Settings,
|
|
31
|
-
HlsWebdavHttpTransferMode,
|
|
32
27
|
Input,
|
|
33
28
|
InputAttachment,
|
|
34
29
|
InputClass,
|
|
35
30
|
InputDestination,
|
|
36
31
|
InputDestinationRequest,
|
|
37
|
-
InputDeviceCodec,
|
|
38
|
-
InputDeviceConfigurableAudioChannelPairConfig,
|
|
39
|
-
InputDeviceConfiguredInput,
|
|
40
32
|
InputDeviceConnectionState,
|
|
41
33
|
InputDeviceHdSettings,
|
|
42
34
|
InputDeviceNetworkSettings,
|
|
@@ -69,8 +61,57 @@ import {
|
|
|
69
61
|
OutputDestination,
|
|
70
62
|
OutputLocationRef,
|
|
71
63
|
ReservationResourceSpecification,
|
|
64
|
+
S3CannedAcl,
|
|
72
65
|
VpcOutputSettingsDescription,
|
|
73
66
|
} from "./models_0";
|
|
67
|
+
export declare const HlsEncryptionType: {
|
|
68
|
+
readonly AES128: "AES128";
|
|
69
|
+
readonly SAMPLE_AES: "SAMPLE_AES";
|
|
70
|
+
};
|
|
71
|
+
export type HlsEncryptionType =
|
|
72
|
+
(typeof HlsEncryptionType)[keyof typeof HlsEncryptionType];
|
|
73
|
+
export declare const HlsAkamaiHttpTransferMode: {
|
|
74
|
+
readonly CHUNKED: "CHUNKED";
|
|
75
|
+
readonly NON_CHUNKED: "NON_CHUNKED";
|
|
76
|
+
};
|
|
77
|
+
export type HlsAkamaiHttpTransferMode =
|
|
78
|
+
(typeof HlsAkamaiHttpTransferMode)[keyof typeof HlsAkamaiHttpTransferMode];
|
|
79
|
+
export interface HlsAkamaiSettings {
|
|
80
|
+
ConnectionRetryInterval?: number;
|
|
81
|
+
FilecacheDuration?: number;
|
|
82
|
+
HttpTransferMode?: HlsAkamaiHttpTransferMode;
|
|
83
|
+
NumRetries?: number;
|
|
84
|
+
RestartDelay?: number;
|
|
85
|
+
Salt?: string;
|
|
86
|
+
Token?: string;
|
|
87
|
+
}
|
|
88
|
+
export interface HlsBasicPutSettings {
|
|
89
|
+
ConnectionRetryInterval?: number;
|
|
90
|
+
FilecacheDuration?: number;
|
|
91
|
+
NumRetries?: number;
|
|
92
|
+
RestartDelay?: number;
|
|
93
|
+
}
|
|
94
|
+
export declare const HlsMediaStoreStorageClass: {
|
|
95
|
+
readonly TEMPORAL: "TEMPORAL";
|
|
96
|
+
};
|
|
97
|
+
export type HlsMediaStoreStorageClass =
|
|
98
|
+
(typeof HlsMediaStoreStorageClass)[keyof typeof HlsMediaStoreStorageClass];
|
|
99
|
+
export interface HlsMediaStoreSettings {
|
|
100
|
+
ConnectionRetryInterval?: number;
|
|
101
|
+
FilecacheDuration?: number;
|
|
102
|
+
MediaStoreStorageClass?: HlsMediaStoreStorageClass;
|
|
103
|
+
NumRetries?: number;
|
|
104
|
+
RestartDelay?: number;
|
|
105
|
+
}
|
|
106
|
+
export interface HlsS3Settings {
|
|
107
|
+
CannedAcl?: S3CannedAcl;
|
|
108
|
+
}
|
|
109
|
+
export declare const HlsWebdavHttpTransferMode: {
|
|
110
|
+
readonly CHUNKED: "CHUNKED";
|
|
111
|
+
readonly NON_CHUNKED: "NON_CHUNKED";
|
|
112
|
+
};
|
|
113
|
+
export type HlsWebdavHttpTransferMode =
|
|
114
|
+
(typeof HlsWebdavHttpTransferMode)[keyof typeof HlsWebdavHttpTransferMode];
|
|
74
115
|
export interface HlsWebdavSettings {
|
|
75
116
|
ConnectionRetryInterval?: number;
|
|
76
117
|
FilecacheDuration?: number;
|
|
@@ -393,6 +434,7 @@ export interface OutputGroupSettings {
|
|
|
393
434
|
MultiplexGroupSettings?: MultiplexGroupSettings;
|
|
394
435
|
RtmpGroupSettings?: RtmpGroupSettings;
|
|
395
436
|
UdpGroupSettings?: UdpGroupSettings;
|
|
437
|
+
CmafIngestGroupSettings?: CmafIngestGroupSettings;
|
|
396
438
|
}
|
|
397
439
|
export interface OutputGroup {
|
|
398
440
|
Name?: string;
|
|
@@ -1049,6 +1091,18 @@ export declare const H265LookAheadRateControl: {
|
|
|
1049
1091
|
};
|
|
1050
1092
|
export type H265LookAheadRateControl =
|
|
1051
1093
|
(typeof H265LookAheadRateControl)[keyof typeof H265LookAheadRateControl];
|
|
1094
|
+
export declare const H265MvOverPictureBoundaries: {
|
|
1095
|
+
readonly DISABLED: "DISABLED";
|
|
1096
|
+
readonly ENABLED: "ENABLED";
|
|
1097
|
+
};
|
|
1098
|
+
export type H265MvOverPictureBoundaries =
|
|
1099
|
+
(typeof H265MvOverPictureBoundaries)[keyof typeof H265MvOverPictureBoundaries];
|
|
1100
|
+
export declare const H265MvTemporalPredictor: {
|
|
1101
|
+
readonly DISABLED: "DISABLED";
|
|
1102
|
+
readonly ENABLED: "ENABLED";
|
|
1103
|
+
};
|
|
1104
|
+
export type H265MvTemporalPredictor =
|
|
1105
|
+
(typeof H265MvTemporalPredictor)[keyof typeof H265MvTemporalPredictor];
|
|
1052
1106
|
export declare const H265Profile: {
|
|
1053
1107
|
readonly MAIN: "MAIN";
|
|
1054
1108
|
readonly MAIN_10BIT: "MAIN_10BIT";
|
|
@@ -1077,12 +1131,24 @@ export declare const H265Tier: {
|
|
|
1077
1131
|
readonly MAIN: "MAIN";
|
|
1078
1132
|
};
|
|
1079
1133
|
export type H265Tier = (typeof H265Tier)[keyof typeof H265Tier];
|
|
1134
|
+
export declare const H265TilePadding: {
|
|
1135
|
+
readonly NONE: "NONE";
|
|
1136
|
+
readonly PADDED: "PADDED";
|
|
1137
|
+
};
|
|
1138
|
+
export type H265TilePadding =
|
|
1139
|
+
(typeof H265TilePadding)[keyof typeof H265TilePadding];
|
|
1080
1140
|
export declare const H265TimecodeInsertionBehavior: {
|
|
1081
1141
|
readonly DISABLED: "DISABLED";
|
|
1082
1142
|
readonly PIC_TIMING_SEI: "PIC_TIMING_SEI";
|
|
1083
1143
|
};
|
|
1084
1144
|
export type H265TimecodeInsertionBehavior =
|
|
1085
1145
|
(typeof H265TimecodeInsertionBehavior)[keyof typeof H265TimecodeInsertionBehavior];
|
|
1146
|
+
export declare const H265TreeblockSize: {
|
|
1147
|
+
readonly AUTO: "AUTO";
|
|
1148
|
+
readonly TREE_SIZE_32X32: "TREE_SIZE_32X32";
|
|
1149
|
+
};
|
|
1150
|
+
export type H265TreeblockSize =
|
|
1151
|
+
(typeof H265TreeblockSize)[keyof typeof H265TreeblockSize];
|
|
1086
1152
|
export interface H265Settings {
|
|
1087
1153
|
AdaptiveQuantization?: H265AdaptiveQuantization;
|
|
1088
1154
|
AfdSignaling?: AfdSignaling;
|
|
@@ -1114,6 +1180,12 @@ export interface H265Settings {
|
|
|
1114
1180
|
Tier?: H265Tier;
|
|
1115
1181
|
TimecodeInsertion?: H265TimecodeInsertionBehavior;
|
|
1116
1182
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
|
1183
|
+
MvOverPictureBoundaries?: H265MvOverPictureBoundaries;
|
|
1184
|
+
MvTemporalPredictor?: H265MvTemporalPredictor;
|
|
1185
|
+
TileHeight?: number;
|
|
1186
|
+
TilePadding?: H265TilePadding;
|
|
1187
|
+
TileWidth?: number;
|
|
1188
|
+
TreeblockSize?: H265TreeblockSize;
|
|
1117
1189
|
}
|
|
1118
1190
|
export declare const Mpeg2AdaptiveQuantization: {
|
|
1119
1191
|
readonly AUTO: "AUTO";
|
|
@@ -1932,88 +2004,6 @@ export interface DescribeMultiplexResponse {
|
|
|
1932
2004
|
State?: MultiplexState;
|
|
1933
2005
|
Tags?: Record<string, string>;
|
|
1934
2006
|
}
|
|
1935
|
-
export interface DescribeMultiplexProgramRequest {
|
|
1936
|
-
MultiplexId: string | undefined;
|
|
1937
|
-
ProgramName: string | undefined;
|
|
1938
|
-
}
|
|
1939
|
-
export interface DescribeMultiplexProgramResponse {
|
|
1940
|
-
ChannelId?: string;
|
|
1941
|
-
MultiplexProgramSettings?: MultiplexProgramSettings;
|
|
1942
|
-
PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
|
|
1943
|
-
PipelineDetails?: MultiplexProgramPipelineDetail[];
|
|
1944
|
-
ProgramName?: string;
|
|
1945
|
-
}
|
|
1946
|
-
export interface DescribeOfferingRequest {
|
|
1947
|
-
OfferingId: string | undefined;
|
|
1948
|
-
}
|
|
1949
|
-
export interface DescribeOfferingResponse {
|
|
1950
|
-
Arn?: string;
|
|
1951
|
-
CurrencyCode?: string;
|
|
1952
|
-
Duration?: number;
|
|
1953
|
-
DurationUnits?: OfferingDurationUnits;
|
|
1954
|
-
FixedPrice?: number;
|
|
1955
|
-
OfferingDescription?: string;
|
|
1956
|
-
OfferingId?: string;
|
|
1957
|
-
OfferingType?: OfferingType;
|
|
1958
|
-
Region?: string;
|
|
1959
|
-
ResourceSpecification?: ReservationResourceSpecification;
|
|
1960
|
-
UsagePrice?: number;
|
|
1961
|
-
}
|
|
1962
|
-
export interface DescribeReservationRequest {
|
|
1963
|
-
ReservationId: string | undefined;
|
|
1964
|
-
}
|
|
1965
|
-
export interface DescribeReservationResponse {
|
|
1966
|
-
Arn?: string;
|
|
1967
|
-
Count?: number;
|
|
1968
|
-
CurrencyCode?: string;
|
|
1969
|
-
Duration?: number;
|
|
1970
|
-
DurationUnits?: OfferingDurationUnits;
|
|
1971
|
-
End?: string;
|
|
1972
|
-
FixedPrice?: number;
|
|
1973
|
-
Name?: string;
|
|
1974
|
-
OfferingDescription?: string;
|
|
1975
|
-
OfferingId?: string;
|
|
1976
|
-
OfferingType?: OfferingType;
|
|
1977
|
-
Region?: string;
|
|
1978
|
-
RenewalSettings?: RenewalSettings;
|
|
1979
|
-
ReservationId?: string;
|
|
1980
|
-
ResourceSpecification?: ReservationResourceSpecification;
|
|
1981
|
-
Start?: string;
|
|
1982
|
-
State?: ReservationState;
|
|
1983
|
-
Tags?: Record<string, string>;
|
|
1984
|
-
UsagePrice?: number;
|
|
1985
|
-
}
|
|
1986
|
-
export interface DescribeScheduleRequest {
|
|
1987
|
-
ChannelId: string | undefined;
|
|
1988
|
-
MaxResults?: number;
|
|
1989
|
-
NextToken?: string;
|
|
1990
|
-
}
|
|
1991
|
-
export interface DescribeScheduleResponse {
|
|
1992
|
-
NextToken?: string;
|
|
1993
|
-
ScheduleActions?: ScheduleAction[];
|
|
1994
|
-
}
|
|
1995
|
-
export interface DescribeThumbnailsRequest {
|
|
1996
|
-
ChannelId: string | undefined;
|
|
1997
|
-
PipelineId: string | undefined;
|
|
1998
|
-
ThumbnailType: string | undefined;
|
|
1999
|
-
}
|
|
2000
|
-
export interface DescribeThumbnailsResponse {
|
|
2001
|
-
ThumbnailDetails?: ThumbnailDetail[];
|
|
2002
|
-
}
|
|
2003
|
-
export interface InputDeviceMediaConnectConfigurableSettings {
|
|
2004
|
-
FlowArn?: string;
|
|
2005
|
-
RoleArn?: string;
|
|
2006
|
-
SecretArn?: string;
|
|
2007
|
-
SourceName?: string;
|
|
2008
|
-
}
|
|
2009
|
-
export interface InputDeviceConfigurableSettings {
|
|
2010
|
-
ConfiguredInput?: InputDeviceConfiguredInput;
|
|
2011
|
-
MaxBitrate?: number;
|
|
2012
|
-
LatencyMs?: number;
|
|
2013
|
-
Codec?: InputDeviceCodec;
|
|
2014
|
-
MediaconnectSettings?: InputDeviceMediaConnectConfigurableSettings;
|
|
2015
|
-
AudioChannelPairs?: InputDeviceConfigurableAudioChannelPairConfig[];
|
|
2016
|
-
}
|
|
2017
2007
|
export declare const DescribeInputDeviceThumbnailResponseFilterSensitiveLog: (
|
|
2018
2008
|
obj: DescribeInputDeviceThumbnailResponse
|
|
2019
2009
|
) => any;
|
|
@@ -10,6 +10,9 @@ import {
|
|
|
10
10
|
Input,
|
|
11
11
|
InputAttachment,
|
|
12
12
|
InputDestinationRequest,
|
|
13
|
+
InputDeviceCodec,
|
|
14
|
+
InputDeviceConfigurableAudioChannelPairConfig,
|
|
15
|
+
InputDeviceConfiguredInput,
|
|
13
16
|
InputDeviceConnectionState,
|
|
14
17
|
InputDeviceHdSettings,
|
|
15
18
|
InputDeviceNetworkSettings,
|
|
@@ -27,27 +30,116 @@ import {
|
|
|
27
30
|
MaintenanceStatus,
|
|
28
31
|
MediaConnectFlowRequest,
|
|
29
32
|
MultiplexOutputDestination,
|
|
33
|
+
MultiplexProgramPipelineDetail,
|
|
30
34
|
MultiplexProgramSummary,
|
|
31
35
|
MultiplexState,
|
|
32
36
|
MultiplexSummary,
|
|
33
37
|
Offering,
|
|
38
|
+
OfferingDurationUnits,
|
|
39
|
+
OfferingType,
|
|
34
40
|
OutputDestination,
|
|
41
|
+
ReservationResourceSpecification,
|
|
35
42
|
VpcOutputSettingsDescription,
|
|
36
43
|
} from "./models_0";
|
|
37
44
|
import {
|
|
38
45
|
AccountConfiguration,
|
|
39
46
|
Channel,
|
|
40
47
|
EncoderSettings,
|
|
41
|
-
InputDeviceConfigurableSettings,
|
|
42
48
|
Multiplex,
|
|
43
49
|
MultiplexProgram,
|
|
50
|
+
MultiplexProgramPacketIdentifiersMap,
|
|
44
51
|
MultiplexProgramSettings,
|
|
45
52
|
MultiplexSettings,
|
|
46
53
|
PipelineDetail,
|
|
47
54
|
RenewalSettings,
|
|
48
55
|
Reservation,
|
|
56
|
+
ReservationState,
|
|
57
|
+
ScheduleAction,
|
|
58
|
+
ThumbnailDetail,
|
|
49
59
|
TransferringInputDeviceSummary,
|
|
50
60
|
} from "./models_1";
|
|
61
|
+
export interface DescribeMultiplexProgramRequest {
|
|
62
|
+
MultiplexId: string | undefined;
|
|
63
|
+
ProgramName: string | undefined;
|
|
64
|
+
}
|
|
65
|
+
export interface DescribeMultiplexProgramResponse {
|
|
66
|
+
ChannelId?: string;
|
|
67
|
+
MultiplexProgramSettings?: MultiplexProgramSettings;
|
|
68
|
+
PacketIdentifiersMap?: MultiplexProgramPacketIdentifiersMap;
|
|
69
|
+
PipelineDetails?: MultiplexProgramPipelineDetail[];
|
|
70
|
+
ProgramName?: string;
|
|
71
|
+
}
|
|
72
|
+
export interface DescribeOfferingRequest {
|
|
73
|
+
OfferingId: string | undefined;
|
|
74
|
+
}
|
|
75
|
+
export interface DescribeOfferingResponse {
|
|
76
|
+
Arn?: string;
|
|
77
|
+
CurrencyCode?: string;
|
|
78
|
+
Duration?: number;
|
|
79
|
+
DurationUnits?: OfferingDurationUnits;
|
|
80
|
+
FixedPrice?: number;
|
|
81
|
+
OfferingDescription?: string;
|
|
82
|
+
OfferingId?: string;
|
|
83
|
+
OfferingType?: OfferingType;
|
|
84
|
+
Region?: string;
|
|
85
|
+
ResourceSpecification?: ReservationResourceSpecification;
|
|
86
|
+
UsagePrice?: number;
|
|
87
|
+
}
|
|
88
|
+
export interface DescribeReservationRequest {
|
|
89
|
+
ReservationId: string | undefined;
|
|
90
|
+
}
|
|
91
|
+
export interface DescribeReservationResponse {
|
|
92
|
+
Arn?: string;
|
|
93
|
+
Count?: number;
|
|
94
|
+
CurrencyCode?: string;
|
|
95
|
+
Duration?: number;
|
|
96
|
+
DurationUnits?: OfferingDurationUnits;
|
|
97
|
+
End?: string;
|
|
98
|
+
FixedPrice?: number;
|
|
99
|
+
Name?: string;
|
|
100
|
+
OfferingDescription?: string;
|
|
101
|
+
OfferingId?: string;
|
|
102
|
+
OfferingType?: OfferingType;
|
|
103
|
+
Region?: string;
|
|
104
|
+
RenewalSettings?: RenewalSettings;
|
|
105
|
+
ReservationId?: string;
|
|
106
|
+
ResourceSpecification?: ReservationResourceSpecification;
|
|
107
|
+
Start?: string;
|
|
108
|
+
State?: ReservationState;
|
|
109
|
+
Tags?: Record<string, string>;
|
|
110
|
+
UsagePrice?: number;
|
|
111
|
+
}
|
|
112
|
+
export interface DescribeScheduleRequest {
|
|
113
|
+
ChannelId: string | undefined;
|
|
114
|
+
MaxResults?: number;
|
|
115
|
+
NextToken?: string;
|
|
116
|
+
}
|
|
117
|
+
export interface DescribeScheduleResponse {
|
|
118
|
+
NextToken?: string;
|
|
119
|
+
ScheduleActions?: ScheduleAction[];
|
|
120
|
+
}
|
|
121
|
+
export interface DescribeThumbnailsRequest {
|
|
122
|
+
ChannelId: string | undefined;
|
|
123
|
+
PipelineId: string | undefined;
|
|
124
|
+
ThumbnailType: string | undefined;
|
|
125
|
+
}
|
|
126
|
+
export interface DescribeThumbnailsResponse {
|
|
127
|
+
ThumbnailDetails?: ThumbnailDetail[];
|
|
128
|
+
}
|
|
129
|
+
export interface InputDeviceMediaConnectConfigurableSettings {
|
|
130
|
+
FlowArn?: string;
|
|
131
|
+
RoleArn?: string;
|
|
132
|
+
SecretArn?: string;
|
|
133
|
+
SourceName?: string;
|
|
134
|
+
}
|
|
135
|
+
export interface InputDeviceConfigurableSettings {
|
|
136
|
+
ConfiguredInput?: InputDeviceConfiguredInput;
|
|
137
|
+
MaxBitrate?: number;
|
|
138
|
+
LatencyMs?: number;
|
|
139
|
+
Codec?: InputDeviceCodec;
|
|
140
|
+
MediaconnectSettings?: InputDeviceMediaConnectConfigurableSettings;
|
|
141
|
+
AudioChannelPairs?: InputDeviceConfigurableAudioChannelPairConfig[];
|
|
142
|
+
}
|
|
51
143
|
export interface ListChannelsRequest {
|
|
52
144
|
MaxResults?: number;
|
|
53
145
|
NextToken?: string;
|
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.548.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-medialive",
|