@bitmovin/api-sdk 1.259.0 → 1.260.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.259.0',
243
+ 'X-Api-Client-Version': '1.260.0',
244
244
  'Content-Type': 'application/json'
245
245
  };
246
246
  if (tenantOrgId) {
@@ -1,3 +1,4 @@
1
+ import AllSceneBoundaries from './AllSceneBoundaries';
1
2
  import AutomaticAdPlacementPosition from './AutomaticAdPlacementPosition';
2
3
  /**
3
4
  * @export
@@ -10,6 +11,12 @@ export declare class AiSceneAnalysisAutomaticAdPlacement {
10
11
  * @memberof AiSceneAnalysisAutomaticAdPlacement
11
12
  */
12
13
  schedule?: AutomaticAdPlacementPosition[];
14
+ /**
15
+ * Configuration for placing keyframes and optional cue tags at every detected scene boundary.
16
+ * @type {AllSceneBoundaries}
17
+ * @memberof AiSceneAnalysisAutomaticAdPlacement
18
+ */
19
+ allSceneBoundaries?: AllSceneBoundaries;
13
20
  constructor(obj?: Partial<AiSceneAnalysisAutomaticAdPlacement>);
14
21
  }
15
22
  export default AiSceneAnalysisAutomaticAdPlacement;
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.AiSceneAnalysisAutomaticAdPlacement = void 0;
4
4
  var Mapper_1 = require("../common/Mapper");
5
+ var AllSceneBoundaries_1 = require("./AllSceneBoundaries");
5
6
  var AutomaticAdPlacementPosition_1 = require("./AutomaticAdPlacementPosition");
6
7
  /**
7
8
  * @export
@@ -13,6 +14,7 @@ var AiSceneAnalysisAutomaticAdPlacement = /** @class */ (function () {
13
14
  return;
14
15
  }
15
16
  this.schedule = (0, Mapper_1.mapArray)(obj.schedule, AutomaticAdPlacementPosition_1.default);
17
+ this.allSceneBoundaries = (0, Mapper_1.map)(obj.allSceneBoundaries, AllSceneBoundaries_1.default);
16
18
  }
17
19
  return AiSceneAnalysisAutomaticAdPlacement;
18
20
  }());
@@ -0,0 +1,20 @@
1
+ /**
2
+ * @export
3
+ * @class AllSceneBoundaries
4
+ */
5
+ export declare class AllSceneBoundaries {
6
+ /**
7
+ * If true, a keyframe (IDR frame) is placed at every detected scene boundary, enabling clean segment cuts aligned with scene changes.
8
+ * @type {boolean}
9
+ * @memberof AllSceneBoundaries
10
+ */
11
+ isEnabled?: boolean;
12
+ /**
13
+ * If true, cue tags are inserted at every scene boundary in addition to keyframes.
14
+ * @type {boolean}
15
+ * @memberof AllSceneBoundaries
16
+ */
17
+ insertCueTags?: boolean;
18
+ constructor(obj?: Partial<AllSceneBoundaries>);
19
+ }
20
+ export default AllSceneBoundaries;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AllSceneBoundaries = void 0;
4
+ var Mapper_1 = require("../common/Mapper");
5
+ /**
6
+ * @export
7
+ * @class AllSceneBoundaries
8
+ */
9
+ var AllSceneBoundaries = /** @class */ (function () {
10
+ function AllSceneBoundaries(obj) {
11
+ if (!obj) {
12
+ return;
13
+ }
14
+ this.isEnabled = (0, Mapper_1.map)(obj.isEnabled);
15
+ this.insertCueTags = (0, Mapper_1.map)(obj.insertCueTags);
16
+ }
17
+ return AllSceneBoundaries;
18
+ }());
19
+ exports.AllSceneBoundaries = AllSceneBoundaries;
20
+ exports.default = AllSceneBoundaries;
@@ -69,6 +69,7 @@ export * from './AkamaiMslStreamFormat';
69
69
  export * from './AkamaiMslVersion';
70
70
  export * from './AkamaiNetStorageInput';
71
71
  export * from './AkamaiNetStorageOutput';
72
+ export * from './AllSceneBoundaries';
72
73
  export * from './AnalyticsAbstractFilter';
73
74
  export * from './AnalyticsAttribute';
74
75
  export * from './AnalyticsAvgConcurrentViewersResponse';
@@ -85,6 +85,7 @@ __exportStar(require("./AkamaiMslStreamFormat"), exports);
85
85
  __exportStar(require("./AkamaiMslVersion"), exports);
86
86
  __exportStar(require("./AkamaiNetStorageInput"), exports);
87
87
  __exportStar(require("./AkamaiNetStorageOutput"), exports);
88
+ __exportStar(require("./AllSceneBoundaries"), exports);
88
89
  __exportStar(require("./AnalyticsAbstractFilter"), exports);
89
90
  __exportStar(require("./AnalyticsAttribute"), exports);
90
91
  __exportStar(require("./AnalyticsAvgConcurrentViewersResponse"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.259.0",
3
+ "version": "1.260.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [