@bitmovin/api-sdk 1.151.0 → 1.153.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/README.md +1 -1
- package/dist/bitmovin-api-sdk.browser.js +6 -6
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AclEntry.d.ts +1 -0
- package/dist/models/AzureCloudRegion.d.ts +5 -5
- package/dist/models/AzureCloudRegion.js +5 -5
- package/dist/models/DashManifest.d.ts +1 -0
- package/dist/models/EncodingOutput.d.ts +1 -0
- package/dist/models/SimpleEncodingLiveJobRequest.d.ts +1 -0
- package/dist/models/SimpleEncodingVodJobRequest.d.ts +1 -0
- package/package.json +1 -1
|
@@ -240,7 +240,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
240
240
|
var headers = {
|
|
241
241
|
'X-Api-Key': apiKey,
|
|
242
242
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
243
|
-
'X-Api-Client-Version': '1.
|
|
243
|
+
'X-Api-Client-Version': '1.153.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
* @enum {string}
|
|
4
4
|
*/
|
|
5
5
|
export declare enum AzureCloudRegion {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
AUSTRALIA_EAST = "AUSTRALIA_EAST",
|
|
7
|
+
AUSTRALIA_SOUTHEAST = "AUSTRALIA_SOUTHEAST",
|
|
8
8
|
EUROPE_NORTH = "EUROPE_NORTH",
|
|
9
9
|
EUROPE_WEST = "EUROPE_WEST",
|
|
10
10
|
GERMANY_WESTCENTRAL = "GERMANY_WESTCENTRAL",
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
UAE_NORTH = "UAE_NORTH",
|
|
12
|
+
US_EAST = "US_EAST",
|
|
13
|
+
US_WEST2 = "US_WEST2"
|
|
14
14
|
}
|
|
15
15
|
export default AzureCloudRegion;
|
|
@@ -7,13 +7,13 @@ exports.AzureCloudRegion = void 0;
|
|
|
7
7
|
*/
|
|
8
8
|
var AzureCloudRegion;
|
|
9
9
|
(function (AzureCloudRegion) {
|
|
10
|
-
AzureCloudRegion["
|
|
11
|
-
AzureCloudRegion["
|
|
10
|
+
AzureCloudRegion["AUSTRALIA_EAST"] = "AUSTRALIA_EAST";
|
|
11
|
+
AzureCloudRegion["AUSTRALIA_SOUTHEAST"] = "AUSTRALIA_SOUTHEAST";
|
|
12
12
|
AzureCloudRegion["EUROPE_NORTH"] = "EUROPE_NORTH";
|
|
13
13
|
AzureCloudRegion["EUROPE_WEST"] = "EUROPE_WEST";
|
|
14
14
|
AzureCloudRegion["GERMANY_WESTCENTRAL"] = "GERMANY_WESTCENTRAL";
|
|
15
|
-
AzureCloudRegion["
|
|
16
|
-
AzureCloudRegion["
|
|
17
|
-
AzureCloudRegion["
|
|
15
|
+
AzureCloudRegion["UAE_NORTH"] = "UAE_NORTH";
|
|
16
|
+
AzureCloudRegion["US_EAST"] = "US_EAST";
|
|
17
|
+
AzureCloudRegion["US_WEST2"] = "US_WEST2";
|
|
18
18
|
})(AzureCloudRegion = exports.AzureCloudRegion || (exports.AzureCloudRegion = {}));
|
|
19
19
|
exports.default = AzureCloudRegion;
|
|
@@ -17,6 +17,7 @@ export declare class EncodingOutput {
|
|
|
17
17
|
*/
|
|
18
18
|
outputPath?: string;
|
|
19
19
|
/**
|
|
20
|
+
* Determines accessibility of files written to this output. Only applies to output types that support ACLs. Defaults to PUBLIC_READ if the list is empty. The destination (e.g. cloud storage bucket) needs to allow the configured ACL
|
|
20
21
|
* @type {AclEntry[]}
|
|
21
22
|
* @memberof EncodingOutput
|
|
22
23
|
*/
|
|
@@ -14,6 +14,7 @@ export declare class SimpleEncodingLiveJobRequest {
|
|
|
14
14
|
*/
|
|
15
15
|
encodingProfile?: SimpleEncodingLiveProfile;
|
|
16
16
|
/**
|
|
17
|
+
* Please take a look at the [documentation](https://bitmovin.com/docs/encoding/articles/simple-encoding-api-live#inputs) (required)
|
|
17
18
|
* @type {SimpleEncodingLiveJobInput}
|
|
18
19
|
* @memberof SimpleEncodingLiveJobRequest
|
|
19
20
|
*/
|
|
@@ -13,6 +13,7 @@ export declare class SimpleEncodingVodJobRequest {
|
|
|
13
13
|
*/
|
|
14
14
|
encodingTemplate?: EncodingTemplate;
|
|
15
15
|
/**
|
|
16
|
+
* Please take a look at the [documentation](https://bitmovin.com/docs/encoding/articles/simple-encoding-api#inputs-outputs) (required)
|
|
16
17
|
* @type {SimpleEncodingVodJobInput[]}
|
|
17
18
|
* @memberof SimpleEncodingVodJobRequest
|
|
18
19
|
*/
|