@aws-sdk/client-mediapackage 3.81.0 → 3.86.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
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.86.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.85.0...v3.86.0) (2022-05-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **client-mediapackage:** This release adds Dvb Dash 2014 as an available profile option for Dash Origin Endpoints. ([7f9f845](https://github.com/aws/aws-sdk-js-v3/commit/7f9f845ff78df7d741eff68c6257c82265ee90c4))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.85.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.84.0...v3.85.0) (2022-05-05)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **codegen:** add codegen indicator comment to all generated files ([#3592](https://github.com/aws/aws-sdk-js-v3/issues/3592)) ([567a530](https://github.com/aws/aws-sdk-js-v3/commit/567a5304232fcc1f9db3fd3df545054de8336b4b))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [3.82.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.81.0...v3.82.0) (2022-05-02)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @aws-sdk/client-mediapackage
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.81.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.80.0...v3.81.0) (2022-04-29)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-mediapackage
|
package/README.md
CHANGED
|
@@ -161,6 +161,7 @@ var ManifestLayout;
|
|
|
161
161
|
})(ManifestLayout = exports.ManifestLayout || (exports.ManifestLayout = {}));
|
|
162
162
|
var Profile;
|
|
163
163
|
(function (Profile) {
|
|
164
|
+
Profile["DVB_DASH_2014"] = "DVB_DASH_2014";
|
|
164
165
|
Profile["HBBTV_1_5"] = "HBBTV_1_5";
|
|
165
166
|
Profile["HYBRIDCAST"] = "HYBRIDCAST";
|
|
166
167
|
Profile["NONE"] = "NONE";
|
|
@@ -175,6 +176,7 @@ var UtcTiming;
|
|
|
175
176
|
(function (UtcTiming) {
|
|
176
177
|
UtcTiming["HTTP_HEAD"] = "HTTP-HEAD";
|
|
177
178
|
UtcTiming["HTTP_ISO"] = "HTTP-ISO";
|
|
179
|
+
UtcTiming["HTTP_XSDATE"] = "HTTP-XSDATE";
|
|
178
180
|
UtcTiming["NONE"] = "NONE";
|
|
179
181
|
})(UtcTiming = exports.UtcTiming || (exports.UtcTiming = {}));
|
|
180
182
|
var DashPackage;
|
|
@@ -126,6 +126,7 @@ export var ManifestLayout;
|
|
|
126
126
|
})(ManifestLayout || (ManifestLayout = {}));
|
|
127
127
|
export var Profile;
|
|
128
128
|
(function (Profile) {
|
|
129
|
+
Profile["DVB_DASH_2014"] = "DVB_DASH_2014";
|
|
129
130
|
Profile["HBBTV_1_5"] = "HBBTV_1_5";
|
|
130
131
|
Profile["HYBRIDCAST"] = "HYBRIDCAST";
|
|
131
132
|
Profile["NONE"] = "NONE";
|
|
@@ -140,6 +141,7 @@ export var UtcTiming;
|
|
|
140
141
|
(function (UtcTiming) {
|
|
141
142
|
UtcTiming["HTTP_HEAD"] = "HTTP-HEAD";
|
|
142
143
|
UtcTiming["HTTP_ISO"] = "HTTP-ISO";
|
|
144
|
+
UtcTiming["HTTP_XSDATE"] = "HTTP-XSDATE";
|
|
143
145
|
UtcTiming["NONE"] = "NONE";
|
|
144
146
|
})(UtcTiming || (UtcTiming = {}));
|
|
145
147
|
export var DashPackage;
|
|
@@ -556,6 +556,7 @@ export declare enum ManifestLayout {
|
|
|
556
556
|
FULL = "FULL"
|
|
557
557
|
}
|
|
558
558
|
export declare enum Profile {
|
|
559
|
+
DVB_DASH_2014 = "DVB_DASH_2014",
|
|
559
560
|
HBBTV_1_5 = "HBBTV_1_5",
|
|
560
561
|
HYBRIDCAST = "HYBRIDCAST",
|
|
561
562
|
NONE = "NONE"
|
|
@@ -568,6 +569,7 @@ export declare enum SegmentTemplateFormat {
|
|
|
568
569
|
export declare enum UtcTiming {
|
|
569
570
|
HTTP_HEAD = "HTTP-HEAD",
|
|
570
571
|
HTTP_ISO = "HTTP-ISO",
|
|
572
|
+
HTTP_XSDATE = "HTTP-XSDATE",
|
|
571
573
|
NONE = "NONE"
|
|
572
574
|
}
|
|
573
575
|
/**
|
|
@@ -619,7 +621,7 @@ export interface DashPackage {
|
|
|
619
621
|
*/
|
|
620
622
|
PeriodTriggers?: (__PeriodTriggersElement | string)[];
|
|
621
623
|
/**
|
|
622
|
-
* The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled.
|
|
624
|
+
* The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV_1_5", HbbTV 1.5 compliant output is enabled. When set to "DVB-DASH_2014", DVB-DASH 2014 compliant output is enabled.
|
|
623
625
|
*/
|
|
624
626
|
Profile?: Profile | string;
|
|
625
627
|
/**
|
|
@@ -644,7 +646,7 @@ export interface DashPackage {
|
|
|
644
646
|
*/
|
|
645
647
|
UtcTiming?: UtcTiming | string;
|
|
646
648
|
/**
|
|
647
|
-
* Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO or HTTP-
|
|
649
|
+
* Specifies the value attribute of the UTCTiming field when utcTiming is set to HTTP-ISO, HTTP-HEAD or HTTP-XSDATE
|
|
648
650
|
*/
|
|
649
651
|
UtcTimingUri?: string;
|
|
650
652
|
}
|
|
@@ -297,6 +297,7 @@ export declare enum ManifestLayout {
|
|
|
297
297
|
FULL = "FULL"
|
|
298
298
|
}
|
|
299
299
|
export declare enum Profile {
|
|
300
|
+
DVB_DASH_2014 = "DVB_DASH_2014",
|
|
300
301
|
HBBTV_1_5 = "HBBTV_1_5",
|
|
301
302
|
HYBRIDCAST = "HYBRIDCAST",
|
|
302
303
|
NONE = "NONE"
|
|
@@ -309,6 +310,7 @@ export declare enum SegmentTemplateFormat {
|
|
|
309
310
|
export declare enum UtcTiming {
|
|
310
311
|
HTTP_HEAD = "HTTP-HEAD",
|
|
311
312
|
HTTP_ISO = "HTTP-ISO",
|
|
313
|
+
HTTP_XSDATE = "HTTP-XSDATE",
|
|
312
314
|
NONE = "NONE"
|
|
313
315
|
}
|
|
314
316
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackage",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackage Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.86.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,9 +18,9 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.85.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.85.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.78.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.78.0",
|
|
35
35
|
"@aws-sdk/node-config-provider": "3.80.0",
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.82.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.78.0",
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
38
|
+
"@aws-sdk/smithy-client": "3.85.0",
|
|
39
39
|
"@aws-sdk/types": "3.78.0",
|
|
40
40
|
"@aws-sdk/url-parser": "3.78.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@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.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.85.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.85.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.78.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-node": "3.80.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|