@bitmovin/api-sdk 1.228.0 → 1.230.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 +38 -2
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/templates/TemplatesApi.d.ts +1 -1
- package/dist/encoding/templates/TemplatesApi.js +1 -1
- package/dist/models/AccountInformation.d.ts +6 -0
- package/dist/models/AccountInformation.js +1 -0
- package/dist/models/Metadata.d.ts +18 -0
- package/dist/models/Metadata.js +20 -0
- package/dist/models/Scene.d.ts +5 -0
- package/dist/models/Scene.js +1 -0
- package/dist/models/SceneAnalysisDetailsResponse.d.ts +6 -0
- package/dist/models/SceneAnalysisDetailsResponse.js +2 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +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.230.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -43,7 +43,7 @@ export default class TemplatesApi extends BaseAPI {
|
|
|
43
43
|
*/
|
|
44
44
|
list(queryParameters?: EncodingTemplateResponseListQueryParams | ((q: EncodingTemplateResponseListQueryParamsBuilder) => EncodingTemplateResponseListQueryParamsBuilder)): Promise<PaginationResponse<EncodingTemplateResponse>>;
|
|
45
45
|
/**
|
|
46
|
-
* @summary
|
|
46
|
+
* @summary Start an Encoding defined with an Encoding Template
|
|
47
47
|
* @param {any} encodingTemplateRequest The Encoding Template to start an Encoding from
|
|
48
48
|
* @throws {BitmovinError}
|
|
49
49
|
* @memberof TemplatesApi
|
|
@@ -92,7 +92,7 @@ var TemplatesApi = /** @class */ (function (_super) {
|
|
|
92
92
|
});
|
|
93
93
|
};
|
|
94
94
|
/**
|
|
95
|
-
* @summary
|
|
95
|
+
* @summary Start an Encoding defined with an Encoding Template
|
|
96
96
|
* @param {any} encodingTemplateRequest The Encoding Template to start an Encoding from
|
|
97
97
|
* @throws {BitmovinError}
|
|
98
98
|
* @memberof TemplatesApi
|
|
@@ -62,6 +62,12 @@ export declare class AccountInformation extends BitmovinResource {
|
|
|
62
62
|
* @memberof AccountInformation
|
|
63
63
|
*/
|
|
64
64
|
intercomIdVerification?: string;
|
|
65
|
+
/**
|
|
66
|
+
* The Saml Domain of this Account
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof AccountInformation
|
|
69
|
+
*/
|
|
70
|
+
samlDomain?: string;
|
|
65
71
|
constructor(obj?: Partial<AccountInformation>);
|
|
66
72
|
}
|
|
67
73
|
export default AccountInformation;
|
|
@@ -40,6 +40,7 @@ var AccountInformation = /** @class */ (function (_super) {
|
|
|
40
40
|
_this.marketplace = (0, Mapper_1.map)(obj.marketplace);
|
|
41
41
|
_this.mfaEnabled = (0, Mapper_1.map)(obj.mfaEnabled);
|
|
42
42
|
_this.intercomIdVerification = (0, Mapper_1.map)(obj.intercomIdVerification);
|
|
43
|
+
_this.samlDomain = (0, Mapper_1.map)(obj.samlDomain);
|
|
43
44
|
return _this;
|
|
44
45
|
}
|
|
45
46
|
return AccountInformation;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @export
|
|
3
|
+
* @class Metadata
|
|
4
|
+
*/
|
|
5
|
+
export declare class Metadata {
|
|
6
|
+
/**
|
|
7
|
+
* @type {string}
|
|
8
|
+
* @memberof Metadata
|
|
9
|
+
*/
|
|
10
|
+
version?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @type {string}
|
|
13
|
+
* @memberof Metadata
|
|
14
|
+
*/
|
|
15
|
+
disclaimer?: string;
|
|
16
|
+
constructor(obj?: Partial<Metadata>);
|
|
17
|
+
}
|
|
18
|
+
export default Metadata;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Metadata = void 0;
|
|
4
|
+
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
/**
|
|
6
|
+
* @export
|
|
7
|
+
* @class Metadata
|
|
8
|
+
*/
|
|
9
|
+
var Metadata = /** @class */ (function () {
|
|
10
|
+
function Metadata(obj) {
|
|
11
|
+
if (!obj) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
this.version = (0, Mapper_1.map)(obj.version);
|
|
15
|
+
this.disclaimer = (0, Mapper_1.map)(obj.disclaimer);
|
|
16
|
+
}
|
|
17
|
+
return Metadata;
|
|
18
|
+
}());
|
|
19
|
+
exports.Metadata = Metadata;
|
|
20
|
+
exports.default = Metadata;
|
package/dist/models/Scene.d.ts
CHANGED
package/dist/models/Scene.js
CHANGED
|
@@ -13,6 +13,7 @@ var Scene = /** @class */ (function () {
|
|
|
13
13
|
if (!obj) {
|
|
14
14
|
return;
|
|
15
15
|
}
|
|
16
|
+
this.title = (0, Mapper_1.map)(obj.title);
|
|
16
17
|
this.startInSeconds = (0, Mapper_1.map)(obj.startInSeconds);
|
|
17
18
|
this.endInSeconds = (0, Mapper_1.map)(obj.endInSeconds);
|
|
18
19
|
this.id = (0, Mapper_1.map)(obj.id);
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Metadata from './Metadata';
|
|
1
2
|
import Rating from './Rating';
|
|
2
3
|
import Scene from './Scene';
|
|
3
4
|
/**
|
|
@@ -35,6 +36,11 @@ export declare class SceneAnalysisDetailsResponse {
|
|
|
35
36
|
* @memberof SceneAnalysisDetailsResponse
|
|
36
37
|
*/
|
|
37
38
|
iabSensitiveTopicTaxonomies?: string[];
|
|
39
|
+
/**
|
|
40
|
+
* @type {Metadata}
|
|
41
|
+
* @memberof SceneAnalysisDetailsResponse
|
|
42
|
+
*/
|
|
43
|
+
metadata?: Metadata;
|
|
38
44
|
constructor(obj?: Partial<SceneAnalysisDetailsResponse>);
|
|
39
45
|
}
|
|
40
46
|
export default SceneAnalysisDetailsResponse;
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SceneAnalysisDetailsResponse = void 0;
|
|
4
4
|
var Mapper_1 = require("../common/Mapper");
|
|
5
|
+
var Metadata_1 = require("./Metadata");
|
|
5
6
|
var Rating_1 = require("./Rating");
|
|
6
7
|
var Scene_1 = require("./Scene");
|
|
7
8
|
/**
|
|
@@ -19,6 +20,7 @@ var SceneAnalysisDetailsResponse = /** @class */ (function () {
|
|
|
19
20
|
this.ratings = (0, Mapper_1.mapArray)(obj.ratings, Rating_1.default);
|
|
20
21
|
this.sensitiveTopics = (0, Mapper_1.mapArray)(obj.sensitiveTopics);
|
|
21
22
|
this.iabSensitiveTopicTaxonomies = (0, Mapper_1.mapArray)(obj.iabSensitiveTopicTaxonomies);
|
|
23
|
+
this.metadata = (0, Mapper_1.map)(obj.metadata, Metadata_1.default);
|
|
22
24
|
}
|
|
23
25
|
return SceneAnalysisDetailsResponse;
|
|
24
26
|
}());
|
package/dist/models/index.d.ts
CHANGED
|
@@ -529,6 +529,7 @@ export * from './MediaStream';
|
|
|
529
529
|
export * from './MediaType';
|
|
530
530
|
export * from './Message';
|
|
531
531
|
export * from './MessageType';
|
|
532
|
+
export * from './Metadata';
|
|
532
533
|
export * from './MinCodingUnitSize';
|
|
533
534
|
export * from './MjpegVideoConfiguration';
|
|
534
535
|
export * from './MotionSearch';
|
package/dist/models/index.js
CHANGED
|
@@ -545,6 +545,7 @@ __exportStar(require("./MediaStream"), exports);
|
|
|
545
545
|
__exportStar(require("./MediaType"), exports);
|
|
546
546
|
__exportStar(require("./Message"), exports);
|
|
547
547
|
__exportStar(require("./MessageType"), exports);
|
|
548
|
+
__exportStar(require("./Metadata"), exports);
|
|
548
549
|
__exportStar(require("./MinCodingUnitSize"), exports);
|
|
549
550
|
__exportStar(require("./MjpegVideoConfiguration"), exports);
|
|
550
551
|
__exportStar(require("./MotionSearch"), exports);
|