@bitmovin/api-sdk 1.159.0 → 1.161.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.
Files changed (33) hide show
  1. package/README.md +1 -1
  2. package/dist/bitmovin-api-sdk.browser.js +134 -1
  3. package/dist/bitmovin-api-sdk.browser.min.js +1 -1
  4. package/dist/common/RestClient.js +1 -1
  5. package/dist/models/Av1VideoConfiguration.d.ts +1 -1
  6. package/dist/models/H264VideoConfiguration.d.ts +1 -1
  7. package/dist/models/H265VideoConfiguration.d.ts +1 -1
  8. package/dist/models/LiveHlsManifest.d.ts +7 -0
  9. package/dist/models/LiveHlsManifest.js +2 -0
  10. package/dist/models/ProgramDateTimeSettings.d.ts +14 -0
  11. package/dist/models/ProgramDateTimeSettings.js +19 -0
  12. package/dist/models/ProgramDateTimeSource.d.ts +10 -0
  13. package/dist/models/ProgramDateTimeSource.js +14 -0
  14. package/dist/models/StreamsAdConfigAd.d.ts +23 -0
  15. package/dist/models/StreamsAdConfigAd.js +21 -0
  16. package/dist/models/StreamsAdConfigResponse.d.ts +20 -0
  17. package/dist/models/StreamsAdConfigResponse.js +21 -0
  18. package/dist/models/StreamsLiveCreateRequest.d.ts +6 -0
  19. package/dist/models/StreamsLiveCreateRequest.js +1 -0
  20. package/dist/models/StreamsLiveResponse.d.ts +6 -0
  21. package/dist/models/StreamsLiveResponse.js +2 -0
  22. package/dist/models/StreamsLiveUpdateRequest.d.ts +6 -0
  23. package/dist/models/StreamsLiveUpdateRequest.js +1 -0
  24. package/dist/models/StreamsVideoCreateRequest.d.ts +6 -0
  25. package/dist/models/StreamsVideoCreateRequest.js +1 -0
  26. package/dist/models/StreamsVideoResponse.d.ts +6 -0
  27. package/dist/models/StreamsVideoResponse.js +2 -0
  28. package/dist/models/StreamsVideoUpdateRequest.d.ts +6 -0
  29. package/dist/models/StreamsVideoUpdateRequest.js +1 -0
  30. package/dist/models/Vp9VideoConfiguration.d.ts +1 -1
  31. package/dist/models/index.d.ts +4 -0
  32. package/dist/models/index.js +4 -0
  33. 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.159.0',
243
+ 'X-Api-Client-Version': '1.161.0',
244
244
  'Content-Type': 'application/json'
245
245
  };
246
246
  if (tenantOrgId) {
@@ -20,7 +20,7 @@ export declare class Av1VideoConfiguration extends VideoConfiguration {
20
20
  */
21
21
  presetConfiguration?: Av1PresetConfiguration;
22
22
  /**
23
- * Enable/disable automatic calculation of level, maxBitrate, and bufsize based on the least level that satisfies maximum property values for picture resolution, frame rate, and bit rate.
23
+ * Enable/disable automatic calculation of level, maxBitrate, and bufsize based on the least level that satisfies maximum property values for picture resolution, frame rate, and bit rate. In the case the target level is set explicitly, the maximum bitrate and buffer size are calculated based on the defined level. Explicitly setting maxBitrate, or bufsize properties will disable the automatic calculation.
24
24
  * @type {AutoLevelSetup}
25
25
  * @memberof Av1VideoConfiguration
26
26
  */
@@ -296,7 +296,7 @@ export declare class H264VideoConfiguration extends VideoConfiguration {
296
296
  */
297
297
  psyTrellis?: number;
298
298
  /**
299
- * Enable/disable automatic calculation of level, maxBitrate, and bufsize based on the least level that satisfies maximum property values for picture resolution, frame rate, and bit rate. Explicitly setting level, maxBitrate, or bufsize properties will automatically disable the calculation.
299
+ * Enable/disable automatic calculation of level, maxBitrate, and bufsize based on the least level that satisfies maximum property values for picture resolution, frame rate, and bit rate. In the case the target level is set explicitly, the maximum bitrate and buffer size are calculated based on the defined level. Explicitly setting maxBitrate, or bufsize properties will disable the automatic calculation.
300
300
  * @type {AutoLevelSetup}
301
301
  * @memberof H264VideoConfiguration
302
302
  */
@@ -604,7 +604,7 @@ export declare class H265VideoConfiguration extends VideoConfiguration {
604
604
  */
605
605
  cea608708SubtitleConfig?: Cea608708SubtitleConfiguration;
606
606
  /**
607
- * Enable/disable automatic calculation of level, maxBitrate, and bufsize based on the least level that satisfies maximum property values for picture resolution, frame rate, and bit rate. Explicitly setting level, maxBitrate, or bufsize properties will automatically disable the calculation.
607
+ * Enable/disable automatic calculation of level, maxBitrate, and bufsize based on the least level that satisfies maximum property values for picture resolution, frame rate, and bit rate. In the case the target level is set explicitly, the maximum bitrate and buffer size are calculated based on the defined level. Explicitly setting maxBitrate, or bufsize properties will disable the automatic calculation.
608
608
  * @type {AutoLevelSetup}
609
609
  * @memberof H265VideoConfiguration
610
610
  */
@@ -1,3 +1,4 @@
1
+ import ProgramDateTimeSettings from './ProgramDateTimeSettings';
1
2
  /**
2
3
  * @export
3
4
  * @class LiveHlsManifest
@@ -27,6 +28,12 @@ export declare class LiveHlsManifest {
27
28
  * @memberof LiveHlsManifest
28
29
  */
29
30
  insertProgramDateTime?: boolean;
31
+ /**
32
+ * Configuration for the EXT-X-PROGRAM-DATETIME tag
33
+ * @type {ProgramDateTimeSettings}
34
+ * @memberof LiveHlsManifest
35
+ */
36
+ programDateTimeSettings?: ProgramDateTimeSettings;
30
37
  constructor(obj?: Partial<LiveHlsManifest>);
31
38
  }
32
39
  export default LiveHlsManifest;
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.LiveHlsManifest = void 0;
4
4
  var Mapper_1 = require("../common/Mapper");
5
+ var ProgramDateTimeSettings_1 = require("./ProgramDateTimeSettings");
5
6
  /**
6
7
  * @export
7
8
  * @class LiveHlsManifest
@@ -15,6 +16,7 @@ var LiveHlsManifest = /** @class */ (function () {
15
16
  this.timeshift = (0, Mapper_1.map)(obj.timeshift);
16
17
  this.liveEdgeOffset = (0, Mapper_1.map)(obj.liveEdgeOffset);
17
18
  this.insertProgramDateTime = (0, Mapper_1.map)(obj.insertProgramDateTime);
19
+ this.programDateTimeSettings = (0, Mapper_1.map)(obj.programDateTimeSettings, ProgramDateTimeSettings_1.default);
18
20
  }
19
21
  return LiveHlsManifest;
20
22
  }());
@@ -0,0 +1,14 @@
1
+ import ProgramDateTimeSource from './ProgramDateTimeSource';
2
+ /**
3
+ * @export
4
+ * @class ProgramDateTimeSettings
5
+ */
6
+ export declare class ProgramDateTimeSettings {
7
+ /**
8
+ * @type {ProgramDateTimeSource}
9
+ * @memberof ProgramDateTimeSettings
10
+ */
11
+ programDateTimeSource?: ProgramDateTimeSource;
12
+ constructor(obj?: Partial<ProgramDateTimeSettings>);
13
+ }
14
+ export default ProgramDateTimeSettings;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ProgramDateTimeSettings = void 0;
4
+ var Mapper_1 = require("../common/Mapper");
5
+ /**
6
+ * @export
7
+ * @class ProgramDateTimeSettings
8
+ */
9
+ var ProgramDateTimeSettings = /** @class */ (function () {
10
+ function ProgramDateTimeSettings(obj) {
11
+ if (!obj) {
12
+ return;
13
+ }
14
+ this.programDateTimeSource = (0, Mapper_1.map)(obj.programDateTimeSource);
15
+ }
16
+ return ProgramDateTimeSettings;
17
+ }());
18
+ exports.ProgramDateTimeSettings = ProgramDateTimeSettings;
19
+ exports.default = ProgramDateTimeSettings;
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Source for the EXT-X-PROGRAM-DATETIME tag
3
+ * @export
4
+ * @enum {string}
5
+ */
6
+ export declare enum ProgramDateTimeSource {
7
+ SYSTEM_CLOCK = "SYSTEM_CLOCK",
8
+ EMBEDDED = "EMBEDDED"
9
+ }
10
+ export default ProgramDateTimeSource;
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ProgramDateTimeSource = void 0;
4
+ /**
5
+ * Source for the EXT-X-PROGRAM-DATETIME tag
6
+ * @export
7
+ * @enum {string}
8
+ */
9
+ var ProgramDateTimeSource;
10
+ (function (ProgramDateTimeSource) {
11
+ ProgramDateTimeSource["SYSTEM_CLOCK"] = "SYSTEM_CLOCK";
12
+ ProgramDateTimeSource["EMBEDDED"] = "EMBEDDED";
13
+ })(ProgramDateTimeSource = exports.ProgramDateTimeSource || (exports.ProgramDateTimeSource = {}));
14
+ exports.default = ProgramDateTimeSource;
@@ -0,0 +1,23 @@
1
+ /**
2
+ * @export
3
+ * @class StreamsAdConfigAd
4
+ */
5
+ export declare class StreamsAdConfigAd {
6
+ /**
7
+ * @type {string}
8
+ * @memberof StreamsAdConfigAd
9
+ */
10
+ position?: string;
11
+ /**
12
+ * @type {string}
13
+ * @memberof StreamsAdConfigAd
14
+ */
15
+ url?: string;
16
+ /**
17
+ * @type {string}
18
+ * @memberof StreamsAdConfigAd
19
+ */
20
+ type?: string;
21
+ constructor(obj?: Partial<StreamsAdConfigAd>);
22
+ }
23
+ export default StreamsAdConfigAd;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StreamsAdConfigAd = void 0;
4
+ var Mapper_1 = require("../common/Mapper");
5
+ /**
6
+ * @export
7
+ * @class StreamsAdConfigAd
8
+ */
9
+ var StreamsAdConfigAd = /** @class */ (function () {
10
+ function StreamsAdConfigAd(obj) {
11
+ if (!obj) {
12
+ return;
13
+ }
14
+ this.position = (0, Mapper_1.map)(obj.position);
15
+ this.url = (0, Mapper_1.map)(obj.url);
16
+ this.type = (0, Mapper_1.map)(obj.type);
17
+ }
18
+ return StreamsAdConfigAd;
19
+ }());
20
+ exports.StreamsAdConfigAd = StreamsAdConfigAd;
21
+ exports.default = StreamsAdConfigAd;
@@ -0,0 +1,20 @@
1
+ import StreamsAdConfigAd from './StreamsAdConfigAd';
2
+ /**
3
+ * @export
4
+ * @class StreamsAdConfigResponse
5
+ */
6
+ export declare class StreamsAdConfigResponse {
7
+ /**
8
+ * The identifier of the streams ad config
9
+ * @type {string}
10
+ * @memberof StreamsAdConfigResponse
11
+ */
12
+ id?: string;
13
+ /**
14
+ * @type {StreamsAdConfigAd[]}
15
+ * @memberof StreamsAdConfigResponse
16
+ */
17
+ ads?: StreamsAdConfigAd[];
18
+ constructor(obj?: Partial<StreamsAdConfigResponse>);
19
+ }
20
+ export default StreamsAdConfigResponse;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StreamsAdConfigResponse = void 0;
4
+ var Mapper_1 = require("../common/Mapper");
5
+ var StreamsAdConfigAd_1 = require("./StreamsAdConfigAd");
6
+ /**
7
+ * @export
8
+ * @class StreamsAdConfigResponse
9
+ */
10
+ var StreamsAdConfigResponse = /** @class */ (function () {
11
+ function StreamsAdConfigResponse(obj) {
12
+ if (!obj) {
13
+ return;
14
+ }
15
+ this.id = (0, Mapper_1.map)(obj.id);
16
+ this.ads = (0, Mapper_1.mapArray)(obj.ads, StreamsAdConfigAd_1.default);
17
+ }
18
+ return StreamsAdConfigResponse;
19
+ }());
20
+ exports.StreamsAdConfigResponse = StreamsAdConfigResponse;
21
+ exports.default = StreamsAdConfigResponse;
@@ -21,6 +21,12 @@ export declare class StreamsLiveCreateRequest {
21
21
  * @memberof StreamsLiveCreateRequest
22
22
  */
23
23
  configId?: string;
24
+ /**
25
+ * Id of the advertisement config to use
26
+ * @type {string}
27
+ * @memberof StreamsLiveCreateRequest
28
+ */
29
+ adConfigId?: string;
24
30
  constructor(obj?: Partial<StreamsLiveCreateRequest>);
25
31
  }
26
32
  export default StreamsLiveCreateRequest;
@@ -14,6 +14,7 @@ var StreamsLiveCreateRequest = /** @class */ (function () {
14
14
  this.title = (0, Mapper_1.map)(obj.title);
15
15
  this.description = (0, Mapper_1.map)(obj.description);
16
16
  this.configId = (0, Mapper_1.map)(obj.configId);
17
+ this.adConfigId = (0, Mapper_1.map)(obj.adConfigId);
17
18
  }
18
19
  return StreamsLiveCreateRequest;
19
20
  }());
@@ -1,3 +1,4 @@
1
+ import StreamsAdConfigResponse from './StreamsAdConfigResponse';
1
2
  import StreamsConfigResponse from './StreamsConfigResponse';
2
3
  import StreamsLiveLifeCycle from './StreamsLiveLifeCycle';
3
4
  /**
@@ -52,6 +53,11 @@ export declare class StreamsLiveResponse {
52
53
  * @memberof StreamsLiveResponse
53
54
  */
54
55
  posterUrl?: string;
56
+ /**
57
+ * @type {StreamsAdConfigResponse}
58
+ * @memberof StreamsLiveResponse
59
+ */
60
+ adConfig?: StreamsAdConfigResponse;
55
61
  constructor(obj?: Partial<StreamsLiveResponse>);
56
62
  }
57
63
  export default StreamsLiveResponse;
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.StreamsLiveResponse = void 0;
4
4
  var Mapper_1 = require("../common/Mapper");
5
+ var StreamsAdConfigResponse_1 = require("./StreamsAdConfigResponse");
5
6
  var StreamsConfigResponse_1 = require("./StreamsConfigResponse");
6
7
  /**
7
8
  * @export
@@ -20,6 +21,7 @@ var StreamsLiveResponse = /** @class */ (function () {
20
21
  this.lifeCycle = (0, Mapper_1.map)(obj.lifeCycle);
21
22
  this.config = (0, Mapper_1.map)(obj.config, StreamsConfigResponse_1.default);
22
23
  this.posterUrl = (0, Mapper_1.map)(obj.posterUrl);
24
+ this.adConfig = (0, Mapper_1.map)(obj.adConfig, StreamsAdConfigResponse_1.default);
23
25
  }
24
26
  return StreamsLiveResponse;
25
27
  }());
@@ -27,6 +27,12 @@ export declare class StreamsLiveUpdateRequest {
27
27
  * @memberof StreamsLiveUpdateRequest
28
28
  */
29
29
  posterUrl?: string;
30
+ /**
31
+ * Id of the advertisement config to use
32
+ * @type {string}
33
+ * @memberof StreamsLiveUpdateRequest
34
+ */
35
+ adConfigId?: string;
30
36
  constructor(obj?: Partial<StreamsLiveUpdateRequest>);
31
37
  }
32
38
  export default StreamsLiveUpdateRequest;
@@ -15,6 +15,7 @@ var StreamsLiveUpdateRequest = /** @class */ (function () {
15
15
  this.description = (0, Mapper_1.map)(obj.description);
16
16
  this.configId = (0, Mapper_1.map)(obj.configId);
17
17
  this.posterUrl = (0, Mapper_1.map)(obj.posterUrl);
18
+ this.adConfigId = (0, Mapper_1.map)(obj.adConfigId);
18
19
  }
19
20
  return StreamsLiveUpdateRequest;
20
21
  }());
@@ -27,6 +27,12 @@ export declare class StreamsVideoCreateRequest {
27
27
  * @memberof StreamsVideoCreateRequest
28
28
  */
29
29
  configId?: string;
30
+ /**
31
+ * Id of the advertisement config to use
32
+ * @type {string}
33
+ * @memberof StreamsVideoCreateRequest
34
+ */
35
+ adConfigId?: string;
30
36
  constructor(obj?: Partial<StreamsVideoCreateRequest>);
31
37
  }
32
38
  export default StreamsVideoCreateRequest;
@@ -15,6 +15,7 @@ var StreamsVideoCreateRequest = /** @class */ (function () {
15
15
  this.title = (0, Mapper_1.map)(obj.title);
16
16
  this.description = (0, Mapper_1.map)(obj.description);
17
17
  this.configId = (0, Mapper_1.map)(obj.configId);
18
+ this.adConfigId = (0, Mapper_1.map)(obj.adConfigId);
18
19
  }
19
20
  return StreamsVideoCreateRequest;
20
21
  }());
@@ -1,3 +1,4 @@
1
+ import StreamsAdConfigResponse from './StreamsAdConfigResponse';
1
2
  import StreamsConfigResponse from './StreamsConfigResponse';
2
3
  import StreamsVideoEncodingTask from './StreamsVideoEncodingTask';
3
4
  import StreamsVideoStatus from './StreamsVideoStatus';
@@ -59,6 +60,11 @@ export declare class StreamsVideoResponse {
59
60
  * @memberof StreamsVideoResponse
60
61
  */
61
62
  posterUrl?: string;
63
+ /**
64
+ * @type {StreamsAdConfigResponse}
65
+ * @memberof StreamsVideoResponse
66
+ */
67
+ adConfig?: StreamsAdConfigResponse;
62
68
  constructor(obj?: Partial<StreamsVideoResponse>);
63
69
  }
64
70
  export default StreamsVideoResponse;
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.StreamsVideoResponse = void 0;
4
4
  var Mapper_1 = require("../common/Mapper");
5
+ var StreamsAdConfigResponse_1 = require("./StreamsAdConfigResponse");
5
6
  var StreamsConfigResponse_1 = require("./StreamsConfigResponse");
6
7
  var StreamsVideoEncodingTask_1 = require("./StreamsVideoEncodingTask");
7
8
  /**
@@ -22,6 +23,7 @@ var StreamsVideoResponse = /** @class */ (function () {
22
23
  this.config = (0, Mapper_1.map)(obj.config, StreamsConfigResponse_1.default);
23
24
  this.encodingTasks = (0, Mapper_1.mapArray)(obj.encodingTasks, StreamsVideoEncodingTask_1.default);
24
25
  this.posterUrl = (0, Mapper_1.map)(obj.posterUrl);
26
+ this.adConfig = (0, Mapper_1.map)(obj.adConfig, StreamsAdConfigResponse_1.default);
25
27
  }
26
28
  return StreamsVideoResponse;
27
29
  }());
@@ -34,6 +34,12 @@ export declare class StreamsVideoUpdateRequest {
34
34
  * @memberof StreamsVideoUpdateRequest
35
35
  */
36
36
  posterUrl?: string;
37
+ /**
38
+ * Id of the advertisement config to use
39
+ * @type {string}
40
+ * @memberof StreamsVideoUpdateRequest
41
+ */
42
+ adConfigId?: string;
37
43
  constructor(obj?: Partial<StreamsVideoUpdateRequest>);
38
44
  }
39
45
  export default StreamsVideoUpdateRequest;
@@ -16,6 +16,7 @@ var StreamsVideoUpdateRequest = /** @class */ (function () {
16
16
  this.description = (0, Mapper_1.map)(obj.description);
17
17
  this.configId = (0, Mapper_1.map)(obj.configId);
18
18
  this.posterUrl = (0, Mapper_1.map)(obj.posterUrl);
19
+ this.adConfigId = (0, Mapper_1.map)(obj.adConfigId);
19
20
  }
20
21
  return StreamsVideoUpdateRequest;
21
22
  }());
@@ -213,7 +213,7 @@ export declare class Vp9VideoConfiguration extends VideoConfiguration {
213
213
  */
214
214
  arnrType?: Vp9ArnrType;
215
215
  /**
216
- * Enable/disable automatic calculation of level, maxBitrate, and bufsize based on the least level that satisfies maximum property values for picture resolution, frame rate, and bit rate. Explicitly setting targetLevel, rateOvershootPct, or clientBufferSize properties will automatically disable the calculation.
216
+ * Enable/disable automatic calculation of level, maxBitrate, and bufsize based on the least level that satisfies maximum property values for picture resolution, frame rate, and bit rate. In the case the target level is set explicitly, the maximum bitrate and buffer size are calculated based on the defined level. Explicitly setting rateOvershootPct, or clientBufferSize properties will disable the automatic calculation.
217
217
  * @type {AutoLevelSetup}
218
218
  * @memberof Vp9VideoConfiguration
219
219
  */
@@ -555,6 +555,8 @@ export * from './PrimeTimeDrm';
555
555
  export * from './ProfileH262';
556
556
  export * from './ProfileH264';
557
557
  export * from './ProfileH265';
558
+ export * from './ProgramDateTimeSettings';
559
+ export * from './ProgramDateTimeSource';
558
560
  export * from './ProgressiveMovMuxing';
559
561
  export * from './ProgressiveMovMuxingInformation';
560
562
  export * from './ProgressiveMuxingInformation';
@@ -691,6 +693,8 @@ export * from './StreamMode';
691
693
  export * from './StreamPerTitleFixedResolutionAndBitrateSettings';
692
694
  export * from './StreamPerTitleSettings';
693
695
  export * from './StreamSelectionMode';
696
+ export * from './StreamsAdConfigAd';
697
+ export * from './StreamsAdConfigResponse';
694
698
  export * from './StreamsConfigResponse';
695
699
  export * from './StreamsLiveCreateRequest';
696
700
  export * from './StreamsLiveLifeCycle';
@@ -571,6 +571,8 @@ __exportStar(require("./PrimeTimeDrm"), exports);
571
571
  __exportStar(require("./ProfileH262"), exports);
572
572
  __exportStar(require("./ProfileH264"), exports);
573
573
  __exportStar(require("./ProfileH265"), exports);
574
+ __exportStar(require("./ProgramDateTimeSettings"), exports);
575
+ __exportStar(require("./ProgramDateTimeSource"), exports);
574
576
  __exportStar(require("./ProgressiveMovMuxing"), exports);
575
577
  __exportStar(require("./ProgressiveMovMuxingInformation"), exports);
576
578
  __exportStar(require("./ProgressiveMuxingInformation"), exports);
@@ -707,6 +709,8 @@ __exportStar(require("./StreamMode"), exports);
707
709
  __exportStar(require("./StreamPerTitleFixedResolutionAndBitrateSettings"), exports);
708
710
  __exportStar(require("./StreamPerTitleSettings"), exports);
709
711
  __exportStar(require("./StreamSelectionMode"), exports);
712
+ __exportStar(require("./StreamsAdConfigAd"), exports);
713
+ __exportStar(require("./StreamsAdConfigResponse"), exports);
710
714
  __exportStar(require("./StreamsConfigResponse"), exports);
711
715
  __exportStar(require("./StreamsLiveCreateRequest"), exports);
712
716
  __exportStar(require("./StreamsLiveLifeCycle"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitmovin/api-sdk",
3
- "version": "1.159.0",
3
+ "version": "1.161.0",
4
4
  "description": "Bitmovin JS/TS API SDK",
5
5
  "author": "Bitmovin Inc",
6
6
  "keywords": [