@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.
@@ -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.228.0',
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 BETA: Start an Encoding defined with an Encoding Template
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 BETA: Start an Encoding defined with an Encoding Template
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;
@@ -5,6 +5,11 @@ import IABTaxonomy from './IABTaxonomy';
5
5
  * @class Scene
6
6
  */
7
7
  export declare class Scene {
8
+ /**
9
+ * @type {string}
10
+ * @memberof Scene
11
+ */
12
+ title?: string;
8
13
  /**
9
14
  * @type {number}
10
15
  * @memberof Scene
@@ -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
  }());
@@ -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';
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.228.0",
3
+ "version": "1.230.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [