@bitmovin/api-sdk 1.226.0 → 1.228.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 (42) hide show
  1. package/README.md +1 -1
  2. package/dist/account/organizations/groups/GroupListQueryParams.d.ts +28 -0
  3. package/dist/account/organizations/groups/GroupListQueryParams.js +29 -0
  4. package/dist/account/organizations/groups/GroupsApi.d.ts +3 -1
  5. package/dist/account/organizations/groups/GroupsApi.js +11 -2
  6. package/dist/bitmovin-api-sdk.browser.js +419 -59
  7. package/dist/bitmovin-api-sdk.browser.min.js +1 -1
  8. package/dist/common/RestClient.js +1 -1
  9. package/dist/encoding/encodings/EncodingsApi.d.ts +2 -0
  10. package/dist/encoding/encodings/EncodingsApi.js +2 -0
  11. package/dist/encoding/encodings/streams/burnInSubtitles/BurnInSubtitlesApi.d.ts +2 -0
  12. package/dist/encoding/encodings/streams/burnInSubtitles/BurnInSubtitlesApi.js +2 -0
  13. package/dist/encoding/encodings/streams/burnInSubtitles/assa/AssaApi.d.ts +51 -0
  14. package/dist/encoding/encodings/streams/burnInSubtitles/assa/AssaApi.js +114 -0
  15. package/dist/encoding/encodings/streams/burnInSubtitles/assa/BurnInSubtitleAssaListQueryParams.d.ts +28 -0
  16. package/dist/encoding/encodings/streams/burnInSubtitles/assa/BurnInSubtitleAssaListQueryParams.js +29 -0
  17. package/dist/encoding/encodings/template/TemplateApi.d.ts +19 -0
  18. package/dist/encoding/encodings/template/TemplateApi.js +48 -0
  19. package/dist/models/AiSceneAnalysis.d.ts +22 -0
  20. package/dist/models/AiSceneAnalysis.js +22 -0
  21. package/dist/models/AiSceneAnalysisAssetDescription.d.ts +20 -0
  22. package/dist/models/{AiContentAnalysisAssetDescription.js → AiSceneAnalysisAssetDescription.js} +7 -7
  23. package/dist/models/AiSceneAnalysisAutomaticAdPlacement.d.ts +15 -0
  24. package/dist/models/AiSceneAnalysisAutomaticAdPlacement.js +20 -0
  25. package/dist/models/AiSceneAnalysisFeatures.d.ts +22 -0
  26. package/dist/models/AiSceneAnalysisFeatures.js +22 -0
  27. package/dist/models/BurnInSubtitleAssa.d.ts +23 -0
  28. package/dist/models/BurnInSubtitleAssa.js +40 -0
  29. package/dist/models/EncodingTemplateUrlResponse.d.ts +14 -0
  30. package/dist/models/EncodingTemplateUrlResponse.js +19 -0
  31. package/dist/models/StartEncodingRequest.d.ts +4 -4
  32. package/dist/models/StartEncodingRequest.js +2 -2
  33. package/dist/models/index.d.ts +6 -4
  34. package/dist/models/index.js +6 -4
  35. package/package.json +1 -1
  36. package/dist/models/AiContentAnalysis.d.ts +0 -22
  37. package/dist/models/AiContentAnalysis.js +0 -22
  38. package/dist/models/AiContentAnalysisAssetDescription.d.ts +0 -20
  39. package/dist/models/AiContentAnalysisAutomaticAdPlacement.d.ts +0 -15
  40. package/dist/models/AiContentAnalysisAutomaticAdPlacement.js +0 -20
  41. package/dist/models/AiContentAnalysisFeatures.d.ts +0 -22
  42. package/dist/models/AiContentAnalysisFeatures.js +0 -22
@@ -2326,6 +2326,46 @@ var OrganizationsApi = /** @class */ (function (_super) {
2326
2326
  exports["default"] = OrganizationsApi;
2327
2327
 
2328
2328
 
2329
+ /***/ }),
2330
+
2331
+ /***/ "./account/organizations/groups/GroupListQueryParams.ts":
2332
+ /*!**************************************************************!*\
2333
+ !*** ./account/organizations/groups/GroupListQueryParams.ts ***!
2334
+ \**************************************************************/
2335
+ /***/ ((__unused_webpack_module, exports) => {
2336
+
2337
+ "use strict";
2338
+
2339
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
2340
+ exports.GroupListQueryParamsBuilder = void 0;
2341
+ var GroupListQueryParamsBuilder = /** @class */ (function () {
2342
+ function GroupListQueryParamsBuilder() {
2343
+ this.internalParams = {};
2344
+ }
2345
+ /**
2346
+ *
2347
+ * @param offset Index of the first item to return, starting at 0. Default is 0
2348
+ */
2349
+ GroupListQueryParamsBuilder.prototype.offset = function (offset) {
2350
+ this.internalParams.offset = offset;
2351
+ return this;
2352
+ };
2353
+ /**
2354
+ *
2355
+ * @param limit Maximum number of items to return. Default is 25, maximum is 100
2356
+ */
2357
+ GroupListQueryParamsBuilder.prototype.limit = function (limit) {
2358
+ this.internalParams.limit = limit;
2359
+ return this;
2360
+ };
2361
+ GroupListQueryParamsBuilder.prototype.buildQueryParams = function () {
2362
+ return this.internalParams;
2363
+ };
2364
+ return GroupListQueryParamsBuilder;
2365
+ }());
2366
+ exports.GroupListQueryParamsBuilder = GroupListQueryParamsBuilder;
2367
+
2368
+
2329
2369
  /***/ }),
2330
2370
 
2331
2371
  /***/ "./account/organizations/groups/GroupsApi.ts":
@@ -2360,6 +2400,7 @@ var PermissionsApi_1 = __webpack_require__(/*! ./permissions/PermissionsApi */ "
2360
2400
  var BitmovinResponse_1 = __webpack_require__(/*! ../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
2361
2401
  var Group_1 = __webpack_require__(/*! ../../../models/Group */ "./models/Group.ts");
2362
2402
  var PaginationResponse_1 = __webpack_require__(/*! ../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
2403
+ var GroupListQueryParams_1 = __webpack_require__(/*! ./GroupListQueryParams */ "./account/organizations/groups/GroupListQueryParams.ts");
2363
2404
  /**
2364
2405
  * GroupsApi - object-oriented interface
2365
2406
  * @export
@@ -2425,14 +2466,22 @@ var GroupsApi = /** @class */ (function (_super) {
2425
2466
  /**
2426
2467
  * @summary List Groups
2427
2468
  * @param {string} organizationId Id of the organization
2469
+ * @param {*} [queryParameters] query parameters for filtering, sorting and pagination
2428
2470
  * @throws {BitmovinError}
2429
2471
  * @memberof GroupsApi
2430
2472
  */
2431
- GroupsApi.prototype.list = function (organizationId) {
2473
+ GroupsApi.prototype.list = function (organizationId, queryParameters) {
2432
2474
  var pathParamMap = {
2433
2475
  organization_id: organizationId
2434
2476
  };
2435
- return this.restClient.get('/account/organizations/{organization_id}/groups', pathParamMap).then(function (response) {
2477
+ var queryParams = {};
2478
+ if (typeof queryParameters === 'function') {
2479
+ queryParams = queryParameters(new GroupListQueryParams_1.GroupListQueryParamsBuilder()).buildQueryParams();
2480
+ }
2481
+ else if (queryParameters) {
2482
+ queryParams = queryParameters;
2483
+ }
2484
+ return this.restClient.get('/account/organizations/{organization_id}/groups', pathParamMap, queryParams).then(function (response) {
2436
2485
  return new PaginationResponse_1.default(response, Group_1.default);
2437
2486
  });
2438
2487
  };
@@ -6981,7 +7030,7 @@ var HeaderHandler = /** @class */ (function (_super) {
6981
7030
  var headers = {
6982
7031
  'X-Api-Key': apiKey,
6983
7032
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
6984
- 'X-Api-Client-Version': '1.226.0',
7033
+ 'X-Api-Client-Version': '1.228.0',
6985
7034
  'Content-Type': 'application/json'
6986
7035
  };
6987
7036
  if (tenantOrgId) {
@@ -13532,6 +13581,7 @@ var CustomdataApi_1 = __webpack_require__(/*! ./customdata/CustomdataApi */ "./e
13532
13581
  var StreamsApi_1 = __webpack_require__(/*! ./streams/StreamsApi */ "./encoding/encodings/streams/StreamsApi.ts");
13533
13582
  var InputStreamsApi_1 = __webpack_require__(/*! ./inputStreams/InputStreamsApi */ "./encoding/encodings/inputStreams/InputStreamsApi.ts");
13534
13583
  var MuxingsApi_1 = __webpack_require__(/*! ./muxings/MuxingsApi */ "./encoding/encodings/muxings/MuxingsApi.ts");
13584
+ var TemplateApi_1 = __webpack_require__(/*! ./template/TemplateApi */ "./encoding/encodings/template/TemplateApi.ts");
13535
13585
  var TransferRetriesApi_1 = __webpack_require__(/*! ./transferRetries/TransferRetriesApi */ "./encoding/encodings/transferRetries/TransferRetriesApi.ts");
13536
13586
  var OutputPathsApi_1 = __webpack_require__(/*! ./outputPaths/OutputPathsApi */ "./encoding/encodings/outputPaths/OutputPathsApi.ts");
13537
13587
  var CaptionsApi_1 = __webpack_require__(/*! ./captions/CaptionsApi */ "./encoding/encodings/captions/CaptionsApi.ts");
@@ -13559,6 +13609,7 @@ var EncodingsApi = /** @class */ (function (_super) {
13559
13609
  _this.streams = new StreamsApi_1.default(configuration);
13560
13610
  _this.inputStreams = new InputStreamsApi_1.default(configuration);
13561
13611
  _this.muxings = new MuxingsApi_1.default(configuration);
13612
+ _this.template = new TemplateApi_1.default(configuration);
13562
13613
  _this.transferRetries = new TransferRetriesApi_1.default(configuration);
13563
13614
  _this.outputPaths = new OutputPathsApi_1.default(configuration);
13564
13615
  _this.captions = new CaptionsApi_1.default(configuration);
@@ -30122,6 +30173,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
30122
30173
  var BaseAPI_1 = __webpack_require__(/*! ../../../../common/BaseAPI */ "./common/BaseAPI.ts");
30123
30174
  var DvbsubApi_1 = __webpack_require__(/*! ./dvbsub/DvbsubApi */ "./encoding/encodings/streams/burnInSubtitles/dvbsub/DvbsubApi.ts");
30124
30175
  var SrtApi_1 = __webpack_require__(/*! ./srt/SrtApi */ "./encoding/encodings/streams/burnInSubtitles/srt/SrtApi.ts");
30176
+ var AssaApi_1 = __webpack_require__(/*! ./assa/AssaApi */ "./encoding/encodings/streams/burnInSubtitles/assa/AssaApi.ts");
30125
30177
  /**
30126
30178
  * BurnInSubtitlesApi - object-oriented interface
30127
30179
  * @export
@@ -30134,6 +30186,7 @@ var BurnInSubtitlesApi = /** @class */ (function (_super) {
30134
30186
  var _this = _super.call(this, configuration) || this;
30135
30187
  _this.dvbsub = new DvbsubApi_1.default(configuration);
30136
30188
  _this.srt = new SrtApi_1.default(configuration);
30189
+ _this.assa = new AssaApi_1.default(configuration);
30137
30190
  return _this;
30138
30191
  }
30139
30192
  return BurnInSubtitlesApi;
@@ -30141,6 +30194,171 @@ var BurnInSubtitlesApi = /** @class */ (function (_super) {
30141
30194
  exports["default"] = BurnInSubtitlesApi;
30142
30195
 
30143
30196
 
30197
+ /***/ }),
30198
+
30199
+ /***/ "./encoding/encodings/streams/burnInSubtitles/assa/AssaApi.ts":
30200
+ /*!********************************************************************!*\
30201
+ !*** ./encoding/encodings/streams/burnInSubtitles/assa/AssaApi.ts ***!
30202
+ \********************************************************************/
30203
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
30204
+
30205
+ "use strict";
30206
+
30207
+ var __extends = (this && this.__extends) || (function () {
30208
+ var extendStatics = function (d, b) {
30209
+ extendStatics = Object.setPrototypeOf ||
30210
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
30211
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
30212
+ return extendStatics(d, b);
30213
+ };
30214
+ return function (d, b) {
30215
+ if (typeof b !== "function" && b !== null)
30216
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
30217
+ extendStatics(d, b);
30218
+ function __() { this.constructor = d; }
30219
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
30220
+ };
30221
+ })();
30222
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
30223
+ var BaseAPI_1 = __webpack_require__(/*! ../../../../../common/BaseAPI */ "./common/BaseAPI.ts");
30224
+ var Mapper_1 = __webpack_require__(/*! ../../../../../common/Mapper */ "./common/Mapper.ts");
30225
+ var BitmovinResponse_1 = __webpack_require__(/*! ../../../../../models/BitmovinResponse */ "./models/BitmovinResponse.ts");
30226
+ var BurnInSubtitleAssa_1 = __webpack_require__(/*! ../../../../../models/BurnInSubtitleAssa */ "./models/BurnInSubtitleAssa.ts");
30227
+ var PaginationResponse_1 = __webpack_require__(/*! ../../../../../models/PaginationResponse */ "./models/PaginationResponse.ts");
30228
+ var BurnInSubtitleAssaListQueryParams_1 = __webpack_require__(/*! ./BurnInSubtitleAssaListQueryParams */ "./encoding/encodings/streams/burnInSubtitles/assa/BurnInSubtitleAssaListQueryParams.ts");
30229
+ /**
30230
+ * AssaApi - object-oriented interface
30231
+ * @export
30232
+ * @class AssaApi
30233
+ * @extends {BaseAPI}
30234
+ */
30235
+ var AssaApi = /** @class */ (function (_super) {
30236
+ __extends(AssaApi, _super);
30237
+ function AssaApi(configuration) {
30238
+ return _super.call(this, configuration) || this;
30239
+ }
30240
+ /**
30241
+ * @summary Burn-In ASSA Subtitle into Stream
30242
+ * @param {string} encodingId Id of the encoding.
30243
+ * @param {string} streamId Id of the stream.
30244
+ * @param {BurnInSubtitleAssa} burnInSubtitleAssa The Burn-In ASSA Subtitle to be added
30245
+ * @throws {BitmovinError}
30246
+ * @memberof AssaApi
30247
+ */
30248
+ AssaApi.prototype.create = function (encodingId, streamId, burnInSubtitleAssa) {
30249
+ var pathParamMap = {
30250
+ encoding_id: encodingId,
30251
+ stream_id: streamId
30252
+ };
30253
+ return this.restClient.post('/encoding/encodings/{encoding_id}/streams/{stream_id}/burn-in-subtitles/assa', pathParamMap, burnInSubtitleAssa).then(function (response) {
30254
+ return (0, Mapper_1.map)(response, BurnInSubtitleAssa_1.default);
30255
+ });
30256
+ };
30257
+ /**
30258
+ * @summary Delete Burn-In ASSA Subtitle from Stream
30259
+ * @param {string} encodingId Id of the encoding.
30260
+ * @param {string} streamId Id of the stream.
30261
+ * @param {string} subtitleId Id of the burn-in subtitle.
30262
+ * @throws {BitmovinError}
30263
+ * @memberof AssaApi
30264
+ */
30265
+ AssaApi.prototype.delete = function (encodingId, streamId, subtitleId) {
30266
+ var pathParamMap = {
30267
+ encoding_id: encodingId,
30268
+ stream_id: streamId,
30269
+ subtitle_id: subtitleId
30270
+ };
30271
+ return this.restClient.delete('/encoding/encodings/{encoding_id}/streams/{stream_id}/burn-in-subtitles/assa/{subtitle_id}', pathParamMap).then(function (response) {
30272
+ return (0, Mapper_1.map)(response, BitmovinResponse_1.default);
30273
+ });
30274
+ };
30275
+ /**
30276
+ * @summary Get Burn-In ASSA Subtitle Details
30277
+ * @param {string} encodingId Id of the encoding.
30278
+ * @param {string} streamId Id of the stream.
30279
+ * @param {string} subtitleId Id of the burn-in subtitle.
30280
+ * @throws {BitmovinError}
30281
+ * @memberof AssaApi
30282
+ */
30283
+ AssaApi.prototype.get = function (encodingId, streamId, subtitleId) {
30284
+ var pathParamMap = {
30285
+ encoding_id: encodingId,
30286
+ stream_id: streamId,
30287
+ subtitle_id: subtitleId
30288
+ };
30289
+ return this.restClient.get('/encoding/encodings/{encoding_id}/streams/{stream_id}/burn-in-subtitles/assa/{subtitle_id}', pathParamMap).then(function (response) {
30290
+ return (0, Mapper_1.map)(response, BurnInSubtitleAssa_1.default);
30291
+ });
30292
+ };
30293
+ /**
30294
+ * @summary List the Burn-In ASSA subtitles of a stream
30295
+ * @param {string} encodingId Id of the encoding.
30296
+ * @param {string} streamId Id of the stream.
30297
+ * @param {*} [queryParameters] query parameters for filtering, sorting and pagination
30298
+ * @throws {BitmovinError}
30299
+ * @memberof AssaApi
30300
+ */
30301
+ AssaApi.prototype.list = function (encodingId, streamId, queryParameters) {
30302
+ var pathParamMap = {
30303
+ encoding_id: encodingId,
30304
+ stream_id: streamId
30305
+ };
30306
+ var queryParams = {};
30307
+ if (typeof queryParameters === 'function') {
30308
+ queryParams = queryParameters(new BurnInSubtitleAssaListQueryParams_1.BurnInSubtitleAssaListQueryParamsBuilder()).buildQueryParams();
30309
+ }
30310
+ else if (queryParameters) {
30311
+ queryParams = queryParameters;
30312
+ }
30313
+ return this.restClient.get('/encoding/encodings/{encoding_id}/streams/{stream_id}/burn-in-subtitles/assa', pathParamMap, queryParams).then(function (response) {
30314
+ return new PaginationResponse_1.default(response, BurnInSubtitleAssa_1.default);
30315
+ });
30316
+ };
30317
+ return AssaApi;
30318
+ }(BaseAPI_1.BaseAPI));
30319
+ exports["default"] = AssaApi;
30320
+
30321
+
30322
+ /***/ }),
30323
+
30324
+ /***/ "./encoding/encodings/streams/burnInSubtitles/assa/BurnInSubtitleAssaListQueryParams.ts":
30325
+ /*!**********************************************************************************************!*\
30326
+ !*** ./encoding/encodings/streams/burnInSubtitles/assa/BurnInSubtitleAssaListQueryParams.ts ***!
30327
+ \**********************************************************************************************/
30328
+ /***/ ((__unused_webpack_module, exports) => {
30329
+
30330
+ "use strict";
30331
+
30332
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
30333
+ exports.BurnInSubtitleAssaListQueryParamsBuilder = void 0;
30334
+ var BurnInSubtitleAssaListQueryParamsBuilder = /** @class */ (function () {
30335
+ function BurnInSubtitleAssaListQueryParamsBuilder() {
30336
+ this.internalParams = {};
30337
+ }
30338
+ /**
30339
+ *
30340
+ * @param offset Index of the first item to return, starting at 0. Default is 0
30341
+ */
30342
+ BurnInSubtitleAssaListQueryParamsBuilder.prototype.offset = function (offset) {
30343
+ this.internalParams.offset = offset;
30344
+ return this;
30345
+ };
30346
+ /**
30347
+ *
30348
+ * @param limit Maximum number of items to return. Default is 25, maximum is 100
30349
+ */
30350
+ BurnInSubtitleAssaListQueryParamsBuilder.prototype.limit = function (limit) {
30351
+ this.internalParams.limit = limit;
30352
+ return this;
30353
+ };
30354
+ BurnInSubtitleAssaListQueryParamsBuilder.prototype.buildQueryParams = function () {
30355
+ return this.internalParams;
30356
+ };
30357
+ return BurnInSubtitleAssaListQueryParamsBuilder;
30358
+ }());
30359
+ exports.BurnInSubtitleAssaListQueryParamsBuilder = BurnInSubtitleAssaListQueryParamsBuilder;
30360
+
30361
+
30144
30362
  /***/ }),
30145
30363
 
30146
30364
  /***/ "./encoding/encodings/streams/burnInSubtitles/dvbsub/BurnInSubtitleDvbSubListQueryParams.ts":
@@ -32497,6 +32715,65 @@ var CustomdataApi = /** @class */ (function (_super) {
32497
32715
  exports["default"] = CustomdataApi;
32498
32716
 
32499
32717
 
32718
+ /***/ }),
32719
+
32720
+ /***/ "./encoding/encodings/template/TemplateApi.ts":
32721
+ /*!****************************************************!*\
32722
+ !*** ./encoding/encodings/template/TemplateApi.ts ***!
32723
+ \****************************************************/
32724
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
32725
+
32726
+ "use strict";
32727
+
32728
+ var __extends = (this && this.__extends) || (function () {
32729
+ var extendStatics = function (d, b) {
32730
+ extendStatics = Object.setPrototypeOf ||
32731
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
32732
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
32733
+ return extendStatics(d, b);
32734
+ };
32735
+ return function (d, b) {
32736
+ if (typeof b !== "function" && b !== null)
32737
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
32738
+ extendStatics(d, b);
32739
+ function __() { this.constructor = d; }
32740
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
32741
+ };
32742
+ })();
32743
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
32744
+ var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
32745
+ var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
32746
+ var EncodingTemplateUrlResponse_1 = __webpack_require__(/*! ../../../models/EncodingTemplateUrlResponse */ "./models/EncodingTemplateUrlResponse.ts");
32747
+ /**
32748
+ * TemplateApi - object-oriented interface
32749
+ * @export
32750
+ * @class TemplateApi
32751
+ * @extends {BaseAPI}
32752
+ */
32753
+ var TemplateApi = /** @class */ (function (_super) {
32754
+ __extends(TemplateApi, _super);
32755
+ function TemplateApi(configuration) {
32756
+ return _super.call(this, configuration) || this;
32757
+ }
32758
+ /**
32759
+ * @summary Encoding Template URL
32760
+ * @param {string} encodingId Id of the Encoding
32761
+ * @throws {BitmovinError}
32762
+ * @memberof TemplateApi
32763
+ */
32764
+ TemplateApi.prototype.get = function (encodingId) {
32765
+ var pathParamMap = {
32766
+ encoding_id: encodingId
32767
+ };
32768
+ return this.restClient.get('/encoding/encodings/{encoding_id}/template', pathParamMap).then(function (response) {
32769
+ return (0, Mapper_1.map)(response, EncodingTemplateUrlResponse_1.default);
32770
+ });
32771
+ };
32772
+ return TemplateApi;
32773
+ }(BaseAPI_1.BaseAPI));
32774
+ exports["default"] = TemplateApi;
32775
+
32776
+
32500
32777
  /***/ }),
32501
32778
 
32502
32779
  /***/ "./encoding/encodings/transferRetries/TransferRetriesApi.ts":
@@ -57907,131 +58184,131 @@ exports["default"] = AesEncryptionMethod;
57907
58184
 
57908
58185
  /***/ }),
57909
58186
 
57910
- /***/ "./models/AiContentAnalysis.ts":
57911
- /*!*************************************!*\
57912
- !*** ./models/AiContentAnalysis.ts ***!
57913
- \*************************************/
58187
+ /***/ "./models/AiSceneAnalysis.ts":
58188
+ /*!***********************************!*\
58189
+ !*** ./models/AiSceneAnalysis.ts ***!
58190
+ \***********************************/
57914
58191
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
57915
58192
 
57916
58193
  "use strict";
57917
58194
 
57918
58195
  Object.defineProperty(exports, "__esModule", ({ value: true }));
57919
- exports.AiContentAnalysis = void 0;
58196
+ exports.AiSceneAnalysis = void 0;
57920
58197
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
57921
- var AiContentAnalysisFeatures_1 = __webpack_require__(/*! ./AiContentAnalysisFeatures */ "./models/AiContentAnalysisFeatures.ts");
58198
+ var AiSceneAnalysisFeatures_1 = __webpack_require__(/*! ./AiSceneAnalysisFeatures */ "./models/AiSceneAnalysisFeatures.ts");
57922
58199
  var AiService_1 = __webpack_require__(/*! ./AiService */ "./models/AiService.ts");
57923
58200
  /**
57924
58201
  * @export
57925
- * @class AiContentAnalysis
58202
+ * @class AiSceneAnalysis
57926
58203
  */
57927
- var AiContentAnalysis = /** @class */ (function () {
57928
- function AiContentAnalysis(obj) {
58204
+ var AiSceneAnalysis = /** @class */ (function () {
58205
+ function AiSceneAnalysis(obj) {
57929
58206
  if (!obj) {
57930
58207
  return;
57931
58208
  }
57932
58209
  this.aiService = (0, Mapper_1.map)(obj.aiService, AiService_1.default);
57933
- this.features = (0, Mapper_1.map)(obj.features, AiContentAnalysisFeatures_1.default);
58210
+ this.features = (0, Mapper_1.map)(obj.features, AiSceneAnalysisFeatures_1.default);
57934
58211
  }
57935
- return AiContentAnalysis;
58212
+ return AiSceneAnalysis;
57936
58213
  }());
57937
- exports.AiContentAnalysis = AiContentAnalysis;
57938
- exports["default"] = AiContentAnalysis;
58214
+ exports.AiSceneAnalysis = AiSceneAnalysis;
58215
+ exports["default"] = AiSceneAnalysis;
57939
58216
 
57940
58217
 
57941
58218
  /***/ }),
57942
58219
 
57943
- /***/ "./models/AiContentAnalysisAssetDescription.ts":
57944
- /*!*****************************************************!*\
57945
- !*** ./models/AiContentAnalysisAssetDescription.ts ***!
57946
- \*****************************************************/
58220
+ /***/ "./models/AiSceneAnalysisAssetDescription.ts":
58221
+ /*!***************************************************!*\
58222
+ !*** ./models/AiSceneAnalysisAssetDescription.ts ***!
58223
+ \***************************************************/
57947
58224
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
57948
58225
 
57949
58226
  "use strict";
57950
58227
 
57951
58228
  Object.defineProperty(exports, "__esModule", ({ value: true }));
57952
- exports.AiContentAnalysisAssetDescription = void 0;
58229
+ exports.AiSceneAnalysisAssetDescription = void 0;
57953
58230
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
57954
58231
  var EncodingOutput_1 = __webpack_require__(/*! ./EncodingOutput */ "./models/EncodingOutput.ts");
57955
58232
  /**
57956
58233
  * @export
57957
- * @class AiContentAnalysisAssetDescription
58234
+ * @class AiSceneAnalysisAssetDescription
57958
58235
  */
57959
- var AiContentAnalysisAssetDescription = /** @class */ (function () {
57960
- function AiContentAnalysisAssetDescription(obj) {
58236
+ var AiSceneAnalysisAssetDescription = /** @class */ (function () {
58237
+ function AiSceneAnalysisAssetDescription(obj) {
57961
58238
  if (!obj) {
57962
58239
  return;
57963
58240
  }
57964
58241
  this.filename = (0, Mapper_1.map)(obj.filename);
57965
58242
  this.outputs = (0, Mapper_1.mapArray)(obj.outputs, EncodingOutput_1.default);
57966
58243
  }
57967
- return AiContentAnalysisAssetDescription;
58244
+ return AiSceneAnalysisAssetDescription;
57968
58245
  }());
57969
- exports.AiContentAnalysisAssetDescription = AiContentAnalysisAssetDescription;
57970
- exports["default"] = AiContentAnalysisAssetDescription;
58246
+ exports.AiSceneAnalysisAssetDescription = AiSceneAnalysisAssetDescription;
58247
+ exports["default"] = AiSceneAnalysisAssetDescription;
57971
58248
 
57972
58249
 
57973
58250
  /***/ }),
57974
58251
 
57975
- /***/ "./models/AiContentAnalysisAutomaticAdPlacement.ts":
57976
- /*!*********************************************************!*\
57977
- !*** ./models/AiContentAnalysisAutomaticAdPlacement.ts ***!
57978
- \*********************************************************/
58252
+ /***/ "./models/AiSceneAnalysisAutomaticAdPlacement.ts":
58253
+ /*!*******************************************************!*\
58254
+ !*** ./models/AiSceneAnalysisAutomaticAdPlacement.ts ***!
58255
+ \*******************************************************/
57979
58256
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
57980
58257
 
57981
58258
  "use strict";
57982
58259
 
57983
58260
  Object.defineProperty(exports, "__esModule", ({ value: true }));
57984
- exports.AiContentAnalysisAutomaticAdPlacement = void 0;
58261
+ exports.AiSceneAnalysisAutomaticAdPlacement = void 0;
57985
58262
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
57986
58263
  var AutomaticAdPlacementPosition_1 = __webpack_require__(/*! ./AutomaticAdPlacementPosition */ "./models/AutomaticAdPlacementPosition.ts");
57987
58264
  /**
57988
58265
  * @export
57989
- * @class AiContentAnalysisAutomaticAdPlacement
58266
+ * @class AiSceneAnalysisAutomaticAdPlacement
57990
58267
  */
57991
- var AiContentAnalysisAutomaticAdPlacement = /** @class */ (function () {
57992
- function AiContentAnalysisAutomaticAdPlacement(obj) {
58268
+ var AiSceneAnalysisAutomaticAdPlacement = /** @class */ (function () {
58269
+ function AiSceneAnalysisAutomaticAdPlacement(obj) {
57993
58270
  if (!obj) {
57994
58271
  return;
57995
58272
  }
57996
58273
  this.schedule = (0, Mapper_1.mapArray)(obj.schedule, AutomaticAdPlacementPosition_1.default);
57997
58274
  }
57998
- return AiContentAnalysisAutomaticAdPlacement;
58275
+ return AiSceneAnalysisAutomaticAdPlacement;
57999
58276
  }());
58000
- exports.AiContentAnalysisAutomaticAdPlacement = AiContentAnalysisAutomaticAdPlacement;
58001
- exports["default"] = AiContentAnalysisAutomaticAdPlacement;
58277
+ exports.AiSceneAnalysisAutomaticAdPlacement = AiSceneAnalysisAutomaticAdPlacement;
58278
+ exports["default"] = AiSceneAnalysisAutomaticAdPlacement;
58002
58279
 
58003
58280
 
58004
58281
  /***/ }),
58005
58282
 
58006
- /***/ "./models/AiContentAnalysisFeatures.ts":
58007
- /*!*********************************************!*\
58008
- !*** ./models/AiContentAnalysisFeatures.ts ***!
58009
- \*********************************************/
58283
+ /***/ "./models/AiSceneAnalysisFeatures.ts":
58284
+ /*!*******************************************!*\
58285
+ !*** ./models/AiSceneAnalysisFeatures.ts ***!
58286
+ \*******************************************/
58010
58287
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
58011
58288
 
58012
58289
  "use strict";
58013
58290
 
58014
58291
  Object.defineProperty(exports, "__esModule", ({ value: true }));
58015
- exports.AiContentAnalysisFeatures = void 0;
58292
+ exports.AiSceneAnalysisFeatures = void 0;
58016
58293
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
58017
- var AiContentAnalysisAssetDescription_1 = __webpack_require__(/*! ./AiContentAnalysisAssetDescription */ "./models/AiContentAnalysisAssetDescription.ts");
58018
- var AiContentAnalysisAutomaticAdPlacement_1 = __webpack_require__(/*! ./AiContentAnalysisAutomaticAdPlacement */ "./models/AiContentAnalysisAutomaticAdPlacement.ts");
58294
+ var AiSceneAnalysisAssetDescription_1 = __webpack_require__(/*! ./AiSceneAnalysisAssetDescription */ "./models/AiSceneAnalysisAssetDescription.ts");
58295
+ var AiSceneAnalysisAutomaticAdPlacement_1 = __webpack_require__(/*! ./AiSceneAnalysisAutomaticAdPlacement */ "./models/AiSceneAnalysisAutomaticAdPlacement.ts");
58019
58296
  /**
58020
58297
  * @export
58021
- * @class AiContentAnalysisFeatures
58298
+ * @class AiSceneAnalysisFeatures
58022
58299
  */
58023
- var AiContentAnalysisFeatures = /** @class */ (function () {
58024
- function AiContentAnalysisFeatures(obj) {
58300
+ var AiSceneAnalysisFeatures = /** @class */ (function () {
58301
+ function AiSceneAnalysisFeatures(obj) {
58025
58302
  if (!obj) {
58026
58303
  return;
58027
58304
  }
58028
- this.assetDescription = (0, Mapper_1.map)(obj.assetDescription, AiContentAnalysisAssetDescription_1.default);
58029
- this.automaticAdPlacement = (0, Mapper_1.map)(obj.automaticAdPlacement, AiContentAnalysisAutomaticAdPlacement_1.default);
58305
+ this.assetDescription = (0, Mapper_1.map)(obj.assetDescription, AiSceneAnalysisAssetDescription_1.default);
58306
+ this.automaticAdPlacement = (0, Mapper_1.map)(obj.automaticAdPlacement, AiSceneAnalysisAutomaticAdPlacement_1.default);
58030
58307
  }
58031
- return AiContentAnalysisFeatures;
58308
+ return AiSceneAnalysisFeatures;
58032
58309
  }());
58033
- exports.AiContentAnalysisFeatures = AiContentAnalysisFeatures;
58034
- exports["default"] = AiContentAnalysisFeatures;
58310
+ exports.AiSceneAnalysisFeatures = AiSceneAnalysisFeatures;
58311
+ exports["default"] = AiSceneAnalysisFeatures;
58035
58312
 
58036
58313
 
58037
58314
  /***/ }),
@@ -63868,6 +64145,57 @@ exports.BroadcastTsVideoInputStreamConfiguration = BroadcastTsVideoInputStreamCo
63868
64145
  exports["default"] = BroadcastTsVideoInputStreamConfiguration;
63869
64146
 
63870
64147
 
64148
+ /***/ }),
64149
+
64150
+ /***/ "./models/BurnInSubtitleAssa.ts":
64151
+ /*!**************************************!*\
64152
+ !*** ./models/BurnInSubtitleAssa.ts ***!
64153
+ \**************************************/
64154
+ /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
64155
+
64156
+ "use strict";
64157
+
64158
+ var __extends = (this && this.__extends) || (function () {
64159
+ var extendStatics = function (d, b) {
64160
+ extendStatics = Object.setPrototypeOf ||
64161
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
64162
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
64163
+ return extendStatics(d, b);
64164
+ };
64165
+ return function (d, b) {
64166
+ if (typeof b !== "function" && b !== null)
64167
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
64168
+ extendStatics(d, b);
64169
+ function __() { this.constructor = d; }
64170
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
64171
+ };
64172
+ })();
64173
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
64174
+ exports.BurnInSubtitleAssa = void 0;
64175
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
64176
+ var BitmovinResource_1 = __webpack_require__(/*! ./BitmovinResource */ "./models/BitmovinResource.ts");
64177
+ var InputPath_1 = __webpack_require__(/*! ./InputPath */ "./models/InputPath.ts");
64178
+ /**
64179
+ * @export
64180
+ * @class BurnInSubtitleAssa
64181
+ */
64182
+ var BurnInSubtitleAssa = /** @class */ (function (_super) {
64183
+ __extends(BurnInSubtitleAssa, _super);
64184
+ function BurnInSubtitleAssa(obj) {
64185
+ var _this = _super.call(this, obj) || this;
64186
+ if (!obj) {
64187
+ return _this;
64188
+ }
64189
+ _this.characterEncoding = (0, Mapper_1.map)(obj.characterEncoding);
64190
+ _this.input = (0, Mapper_1.map)(obj.input, InputPath_1.default);
64191
+ return _this;
64192
+ }
64193
+ return BurnInSubtitleAssa;
64194
+ }(BitmovinResource_1.default));
64195
+ exports.BurnInSubtitleAssa = BurnInSubtitleAssa;
64196
+ exports["default"] = BurnInSubtitleAssa;
64197
+
64198
+
63871
64199
  /***/ }),
63872
64200
 
63873
64201
  /***/ "./models/BurnInSubtitleDvbSub.ts":
@@ -71709,6 +72037,36 @@ var EncodingTemplateType;
71709
72037
  exports["default"] = EncodingTemplateType;
71710
72038
 
71711
72039
 
72040
+ /***/ }),
72041
+
72042
+ /***/ "./models/EncodingTemplateUrlResponse.ts":
72043
+ /*!***********************************************!*\
72044
+ !*** ./models/EncodingTemplateUrlResponse.ts ***!
72045
+ \***********************************************/
72046
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
72047
+
72048
+ "use strict";
72049
+
72050
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
72051
+ exports.EncodingTemplateUrlResponse = void 0;
72052
+ var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
72053
+ /**
72054
+ * @export
72055
+ * @class EncodingTemplateUrlResponse
72056
+ */
72057
+ var EncodingTemplateUrlResponse = /** @class */ (function () {
72058
+ function EncodingTemplateUrlResponse(obj) {
72059
+ if (!obj) {
72060
+ return;
72061
+ }
72062
+ this.url = (0, Mapper_1.map)(obj.url);
72063
+ }
72064
+ return EncodingTemplateUrlResponse;
72065
+ }());
72066
+ exports.EncodingTemplateUrlResponse = EncodingTemplateUrlResponse;
72067
+ exports["default"] = EncodingTemplateUrlResponse;
72068
+
72069
+
71712
72070
  /***/ }),
71713
72071
 
71714
72072
  /***/ "./models/EncodingType.ts":
@@ -84635,7 +84993,7 @@ exports["default"] = StandardMediaInfo;
84635
84993
  Object.defineProperty(exports, "__esModule", ({ value: true }));
84636
84994
  exports.StartEncodingRequest = void 0;
84637
84995
  var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
84638
- var AiContentAnalysis_1 = __webpack_require__(/*! ./AiContentAnalysis */ "./models/AiContentAnalysis.ts");
84996
+ var AiSceneAnalysis_1 = __webpack_require__(/*! ./AiSceneAnalysis */ "./models/AiSceneAnalysis.ts");
84639
84997
  var ManifestResource_1 = __webpack_require__(/*! ./ManifestResource */ "./models/ManifestResource.ts");
84640
84998
  var PerTitle_1 = __webpack_require__(/*! ./PerTitle */ "./models/PerTitle.ts");
84641
84999
  var Scheduling_1 = __webpack_require__(/*! ./Scheduling */ "./models/Scheduling.ts");
@@ -84662,7 +85020,7 @@ var StartEncodingRequest = /** @class */ (function () {
84662
85020
  this.vodSmoothManifests = (0, Mapper_1.mapArray)(obj.vodSmoothManifests, ManifestResource_1.default);
84663
85021
  this.manifestGenerator = (0, Mapper_1.map)(obj.manifestGenerator);
84664
85022
  this.perTitle = (0, Mapper_1.map)(obj.perTitle, PerTitle_1.default);
84665
- this.aiContentAnalysis = (0, Mapper_1.map)(obj.aiContentAnalysis, AiContentAnalysis_1.default);
85023
+ this.aiSceneAnalysis = (0, Mapper_1.map)(obj.aiSceneAnalysis, AiSceneAnalysis_1.default);
84666
85024
  }
84667
85025
  return StartEncodingRequest;
84668
85026
  }());
@@ -90018,10 +90376,10 @@ __exportStar(__webpack_require__(/*! ./AdaptationSetTypeResponse */ "./models/Ad
90018
90376
  __exportStar(__webpack_require__(/*! ./AdaptiveQuantMode */ "./models/AdaptiveQuantMode.ts"), exports);
90019
90377
  __exportStar(__webpack_require__(/*! ./AesEncryptionDrm */ "./models/AesEncryptionDrm.ts"), exports);
90020
90378
  __exportStar(__webpack_require__(/*! ./AesEncryptionMethod */ "./models/AesEncryptionMethod.ts"), exports);
90021
- __exportStar(__webpack_require__(/*! ./AiContentAnalysis */ "./models/AiContentAnalysis.ts"), exports);
90022
- __exportStar(__webpack_require__(/*! ./AiContentAnalysisAssetDescription */ "./models/AiContentAnalysisAssetDescription.ts"), exports);
90023
- __exportStar(__webpack_require__(/*! ./AiContentAnalysisAutomaticAdPlacement */ "./models/AiContentAnalysisAutomaticAdPlacement.ts"), exports);
90024
- __exportStar(__webpack_require__(/*! ./AiContentAnalysisFeatures */ "./models/AiContentAnalysisFeatures.ts"), exports);
90379
+ __exportStar(__webpack_require__(/*! ./AiSceneAnalysis */ "./models/AiSceneAnalysis.ts"), exports);
90380
+ __exportStar(__webpack_require__(/*! ./AiSceneAnalysisAssetDescription */ "./models/AiSceneAnalysisAssetDescription.ts"), exports);
90381
+ __exportStar(__webpack_require__(/*! ./AiSceneAnalysisAutomaticAdPlacement */ "./models/AiSceneAnalysisAutomaticAdPlacement.ts"), exports);
90382
+ __exportStar(__webpack_require__(/*! ./AiSceneAnalysisFeatures */ "./models/AiSceneAnalysisFeatures.ts"), exports);
90025
90383
  __exportStar(__webpack_require__(/*! ./AiService */ "./models/AiService.ts"), exports);
90026
90384
  __exportStar(__webpack_require__(/*! ./AiServiceProvider */ "./models/AiServiceProvider.ts"), exports);
90027
90385
  __exportStar(__webpack_require__(/*! ./AkamaiAccount */ "./models/AkamaiAccount.ts"), exports);
@@ -90159,6 +90517,7 @@ __exportStar(__webpack_require__(/*! ./BroadcastTsProgramConfiguration */ "./mod
90159
90517
  __exportStar(__webpack_require__(/*! ./BroadcastTsSubtitleInputStreamConfiguration */ "./models/BroadcastTsSubtitleInputStreamConfiguration.ts"), exports);
90160
90518
  __exportStar(__webpack_require__(/*! ./BroadcastTsTransportConfiguration */ "./models/BroadcastTsTransportConfiguration.ts"), exports);
90161
90519
  __exportStar(__webpack_require__(/*! ./BroadcastTsVideoInputStreamConfiguration */ "./models/BroadcastTsVideoInputStreamConfiguration.ts"), exports);
90520
+ __exportStar(__webpack_require__(/*! ./BurnInSubtitleAssa */ "./models/BurnInSubtitleAssa.ts"), exports);
90162
90521
  __exportStar(__webpack_require__(/*! ./BurnInSubtitleDvbSub */ "./models/BurnInSubtitleDvbSub.ts"), exports);
90163
90522
  __exportStar(__webpack_require__(/*! ./BurnInSubtitleSrt */ "./models/BurnInSubtitleSrt.ts"), exports);
90164
90523
  __exportStar(__webpack_require__(/*! ./CacheControl */ "./models/CacheControl.ts"), exports);
@@ -90350,6 +90709,7 @@ __exportStar(__webpack_require__(/*! ./EncodingTemplateRequest */ "./models/Enco
90350
90709
  __exportStar(__webpack_require__(/*! ./EncodingTemplateResponse */ "./models/EncodingTemplateResponse.ts"), exports);
90351
90710
  __exportStar(__webpack_require__(/*! ./EncodingTemplateStartResponse */ "./models/EncodingTemplateStartResponse.ts"), exports);
90352
90711
  __exportStar(__webpack_require__(/*! ./EncodingTemplateType */ "./models/EncodingTemplateType.ts"), exports);
90712
+ __exportStar(__webpack_require__(/*! ./EncodingTemplateUrlResponse */ "./models/EncodingTemplateUrlResponse.ts"), exports);
90353
90713
  __exportStar(__webpack_require__(/*! ./EncodingType */ "./models/EncodingType.ts"), exports);
90354
90714
  __exportStar(__webpack_require__(/*! ./EncryptionMode */ "./models/EncryptionMode.ts"), exports);
90355
90715
  __exportStar(__webpack_require__(/*! ./EnhancedDeinterlaceAutoEnable */ "./models/EnhancedDeinterlaceAutoEnable.ts"), exports);