@bitmovin/api-sdk 1.273.0 → 1.275.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.
@@ -1273,6 +1273,9 @@ exports["default"] = AiSceneAnalysisApi;
1273
1273
  Object.defineProperty(exports, "__esModule", ({ value: true }));
1274
1274
  const BaseAPI_1 = __webpack_require__(/*! ../../common/BaseAPI */ "./common/BaseAPI.ts");
1275
1275
  const ByEncodingIdApi_1 = __webpack_require__(/*! ./byEncodingId/ByEncodingIdApi */ "./aiSceneAnalysis/analyses/byEncodingId/ByEncodingIdApi.ts");
1276
+ const SceneAnalysisListItem_1 = __webpack_require__(/*! ../../models/SceneAnalysisListItem */ "./models/SceneAnalysisListItem.ts");
1277
+ const PaginationResponse_1 = __webpack_require__(/*! ../../models/PaginationResponse */ "./models/PaginationResponse.ts");
1278
+ const SceneAnalysisListItemListQueryParams_1 = __webpack_require__(/*! ./SceneAnalysisListItemListQueryParams */ "./aiSceneAnalysis/analyses/SceneAnalysisListItemListQueryParams.ts");
1276
1279
  /**
1277
1280
  * AnalysesApi - object-oriented interface
1278
1281
  * @export
@@ -1284,10 +1287,91 @@ class AnalysesApi extends BaseAPI_1.BaseAPI {
1284
1287
  super(configuration);
1285
1288
  this.byEncodingId = new ByEncodingIdApi_1.default(configuration);
1286
1289
  }
1290
+ /**
1291
+ * @summary List AI scene analyses
1292
+ * @param {*} [queryParameters] query parameters for filtering, sorting and pagination
1293
+ * @throws {BitmovinError}
1294
+ * @memberof AnalysesApi
1295
+ */
1296
+ list(queryParameters) {
1297
+ let queryParams = {};
1298
+ if (typeof queryParameters === 'function') {
1299
+ queryParams = queryParameters(new SceneAnalysisListItemListQueryParams_1.SceneAnalysisListItemListQueryParamsBuilder()).buildQueryParams();
1300
+ }
1301
+ else if (queryParameters) {
1302
+ queryParams = queryParameters;
1303
+ }
1304
+ return this.restClient.get('/ai-scene-analysis/analyses', {}, queryParams).then((response) => {
1305
+ return new PaginationResponse_1.default(response, SceneAnalysisListItem_1.default);
1306
+ });
1307
+ }
1287
1308
  }
1288
1309
  exports["default"] = AnalysesApi;
1289
1310
 
1290
1311
 
1312
+ /***/ },
1313
+
1314
+ /***/ "./aiSceneAnalysis/analyses/SceneAnalysisListItemListQueryParams.ts"
1315
+ /*!**************************************************************************!*\
1316
+ !*** ./aiSceneAnalysis/analyses/SceneAnalysisListItemListQueryParams.ts ***!
1317
+ \**************************************************************************/
1318
+ (__unused_webpack_module, exports) {
1319
+
1320
+ "use strict";
1321
+
1322
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
1323
+ exports.SceneAnalysisListItemListQueryParamsBuilder = void 0;
1324
+ class SceneAnalysisListItemListQueryParamsBuilder {
1325
+ constructor() {
1326
+ this.internalParams = {};
1327
+ }
1328
+ /**
1329
+ *
1330
+ * @param offset Index of the first item to return, starting at 0. Default is 0
1331
+ */
1332
+ offset(offset) {
1333
+ this.internalParams.offset = offset;
1334
+ return this;
1335
+ }
1336
+ /**
1337
+ *
1338
+ * @param limit Maximum number of items to return. Default is 15, maximum is 100
1339
+ */
1340
+ limit(limit) {
1341
+ this.internalParams.limit = limit;
1342
+ return this;
1343
+ }
1344
+ /**
1345
+ *
1346
+ * @param sort Order the result by creation date. Default is createdAt:DESC
1347
+ */
1348
+ sort(sort) {
1349
+ this.internalParams.sort = sort;
1350
+ return this;
1351
+ }
1352
+ /**
1353
+ *
1354
+ * @param createdAtFrom Inclusive lower creation-date bound in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
1355
+ */
1356
+ createdAtFrom(createdAtFrom) {
1357
+ this.internalParams.createdAtFrom = createdAtFrom;
1358
+ return this;
1359
+ }
1360
+ /**
1361
+ *
1362
+ * @param createdAtTo Inclusive upper creation-date bound in ISO 8601 format: YYYY-MM-DDThh:mm:ssZ
1363
+ */
1364
+ createdAtTo(createdAtTo) {
1365
+ this.internalParams.createdAtTo = createdAtTo;
1366
+ return this;
1367
+ }
1368
+ buildQueryParams() {
1369
+ return this.internalParams;
1370
+ }
1371
+ }
1372
+ exports.SceneAnalysisListItemListQueryParamsBuilder = SceneAnalysisListItemListQueryParamsBuilder;
1373
+
1374
+
1291
1375
  /***/ },
1292
1376
 
1293
1377
  /***/ "./aiSceneAnalysis/analyses/byEncodingId/ByEncodingIdApi.ts"
@@ -4235,7 +4319,7 @@ class HeaderHandler extends DelegatingHandler {
4235
4319
  const headers = {
4236
4320
  'X-Api-Key': apiKey,
4237
4321
  'X-Api-Client': 'bitmovin-api-sdk-javascript',
4238
- 'X-Api-Client-Version': '1.273.0',
4322
+ 'X-Api-Client-Version': '1.275.0',
4239
4323
  'Content-Type': 'application/json'
4240
4324
  };
4241
4325
  if (tenantOrgId) {
@@ -48040,6 +48124,36 @@ var AesEncryptionMethod;
48040
48124
  exports["default"] = AesEncryptionMethod;
48041
48125
 
48042
48126
 
48127
+ /***/ },
48128
+
48129
+ /***/ "./models/AgeRange.ts"
48130
+ /*!****************************!*\
48131
+ !*** ./models/AgeRange.ts ***!
48132
+ \****************************/
48133
+ (__unused_webpack_module, exports) {
48134
+
48135
+ "use strict";
48136
+
48137
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
48138
+ exports.AgeRange = void 0;
48139
+ /**
48140
+ * @export
48141
+ * @enum {string}
48142
+ */
48143
+ var AgeRange;
48144
+ (function (AgeRange) {
48145
+ AgeRange["CHILD"] = "CHILD";
48146
+ AgeRange["TEEN"] = "TEEN";
48147
+ AgeRange["TWENTIES"] = "TWENTIES";
48148
+ AgeRange["THIRTIES"] = "THIRTIES";
48149
+ AgeRange["FORTIES"] = "FORTIES";
48150
+ AgeRange["FIFTIES"] = "FIFTIES";
48151
+ AgeRange["SIXTIES_PLUS"] = "SIXTIES_PLUS";
48152
+ AgeRange["UNKNOWN"] = "UNKNOWN";
48153
+ })(AgeRange || (exports.AgeRange = AgeRange = {}));
48154
+ exports["default"] = AgeRange;
48155
+
48156
+
48043
48157
  /***/ },
48044
48158
 
48045
48159
  /***/ "./models/AgentChatAttachment.ts"
@@ -54510,6 +54624,7 @@ exports["default"] = ChannelsAttributeForAudio;
54510
54624
  Object.defineProperty(exports, "__esModule", ({ value: true }));
54511
54625
  exports.Character = void 0;
54512
54626
  const Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
54627
+ const CharacterAppearance_1 = __webpack_require__(/*! ./CharacterAppearance */ "./models/CharacterAppearance.ts");
54513
54628
  /**
54514
54629
  * @export
54515
54630
  * @class Character
@@ -54519,8 +54634,9 @@ class Character {
54519
54634
  if (!obj) {
54520
54635
  return;
54521
54636
  }
54522
- this.appearance = (0, Mapper_1.map)(obj.appearance);
54637
+ this.characterAppearance = (0, Mapper_1.map)(obj.characterAppearance, CharacterAppearance_1.default);
54523
54638
  this.name = (0, Mapper_1.map)(obj.name);
54639
+ this.playedBy = (0, Mapper_1.map)(obj.playedBy);
54524
54640
  this.description = (0, Mapper_1.map)(obj.description);
54525
54641
  }
54526
54642
  }
@@ -54528,6 +54644,44 @@ exports.Character = Character;
54528
54644
  exports["default"] = Character;
54529
54645
 
54530
54646
 
54647
+ /***/ },
54648
+
54649
+ /***/ "./models/CharacterAppearance.ts"
54650
+ /*!***************************************!*\
54651
+ !*** ./models/CharacterAppearance.ts ***!
54652
+ \***************************************/
54653
+ (__unused_webpack_module, exports, __webpack_require__) {
54654
+
54655
+ "use strict";
54656
+
54657
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
54658
+ exports.CharacterAppearance = void 0;
54659
+ const Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
54660
+ /**
54661
+ * @export
54662
+ * @class CharacterAppearance
54663
+ */
54664
+ class CharacterAppearance {
54665
+ constructor(obj) {
54666
+ if (!obj) {
54667
+ return;
54668
+ }
54669
+ this.summary = (0, Mapper_1.map)(obj.summary);
54670
+ this.gender = (0, Mapper_1.map)(obj.gender);
54671
+ this.approximateAge = (0, Mapper_1.map)(obj.approximateAge);
54672
+ this.hairColor = (0, Mapper_1.map)(obj.hairColor);
54673
+ this.hairStyle = (0, Mapper_1.map)(obj.hairStyle);
54674
+ this.hairFullness = (0, Mapper_1.map)(obj.hairFullness);
54675
+ this.facialHair = (0, Mapper_1.map)(obj.facialHair);
54676
+ this.physicalBuild = (0, Mapper_1.map)(obj.physicalBuild);
54677
+ this.distinguishingFeatures = (0, Mapper_1.map)(obj.distinguishingFeatures);
54678
+ this.clothing = (0, Mapper_1.map)(obj.clothing);
54679
+ }
54680
+ }
54681
+ exports.CharacterAppearance = CharacterAppearance;
54682
+ exports["default"] = CharacterAppearance;
54683
+
54684
+
54531
54685
  /***/ },
54532
54686
 
54533
54687
  /***/ "./models/CheckOutputPermissionsRequest.ts"
@@ -55637,6 +55791,38 @@ var ConvertSccPositionMode;
55637
55791
  exports["default"] = ConvertSccPositionMode;
55638
55792
 
55639
55793
 
55794
+ /***/ },
55795
+
55796
+ /***/ "./models/Credits.ts"
55797
+ /*!***************************!*\
55798
+ !*** ./models/Credits.ts ***!
55799
+ \***************************/
55800
+ (__unused_webpack_module, exports, __webpack_require__) {
55801
+
55802
+ "use strict";
55803
+
55804
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
55805
+ exports.Credits = void 0;
55806
+ const Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
55807
+ const Person_1 = __webpack_require__(/*! ./Person */ "./models/Person.ts");
55808
+ const Song_1 = __webpack_require__(/*! ./Song */ "./models/Song.ts");
55809
+ /**
55810
+ * @export
55811
+ * @class Credits
55812
+ */
55813
+ class Credits {
55814
+ constructor(obj) {
55815
+ if (!obj) {
55816
+ return;
55817
+ }
55818
+ this.persons = (0, Mapper_1.mapArray)(obj.persons, Person_1.default);
55819
+ this.songs = (0, Mapper_1.mapArray)(obj.songs, Song_1.default);
55820
+ }
55821
+ }
55822
+ exports.Credits = Credits;
55823
+ exports["default"] = Credits;
55824
+
55825
+
55640
55826
  /***/ },
55641
55827
 
55642
55828
  /***/ "./models/CropFilter.ts"
@@ -57240,6 +57426,43 @@ exports.DenoiseHqdn3dFilter = DenoiseHqdn3dFilter;
57240
57426
  exports["default"] = DenoiseHqdn3dFilter;
57241
57427
 
57242
57428
 
57429
+ /***/ },
57430
+
57431
+ /***/ "./models/Department.ts"
57432
+ /*!******************************!*\
57433
+ !*** ./models/Department.ts ***!
57434
+ \******************************/
57435
+ (__unused_webpack_module, exports) {
57436
+
57437
+ "use strict";
57438
+
57439
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
57440
+ exports.Department = void 0;
57441
+ /**
57442
+ * @export
57443
+ * @enum {string}
57444
+ */
57445
+ var Department;
57446
+ (function (Department) {
57447
+ Department["ACTING"] = "ACTING";
57448
+ Department["ANIMATION"] = "ANIMATION";
57449
+ Department["CASTING"] = "CASTING";
57450
+ Department["CINEMATOGRAPHY"] = "CINEMATOGRAPHY";
57451
+ Department["COSTUME_DESIGN"] = "COSTUME_DESIGN";
57452
+ Department["DIRECTING"] = "DIRECTING";
57453
+ Department["FILM_EDITING"] = "FILM_EDITING";
57454
+ Department["MAKEUP_AND_HAIRSTYLING"] = "MAKEUP_AND_HAIRSTYLING";
57455
+ Department["MUSIC"] = "MUSIC";
57456
+ Department["PRODUCTION"] = "PRODUCTION";
57457
+ Department["PRODUCTION_DESIGN"] = "PRODUCTION_DESIGN";
57458
+ Department["SOUND"] = "SOUND";
57459
+ Department["VISUAL_EFFECTS"] = "VISUAL_EFFECTS";
57460
+ Department["WRITING"] = "WRITING";
57461
+ Department["UNKNOWN"] = "UNKNOWN";
57462
+ })(Department || (exports.Department = Department = {}));
57463
+ exports["default"] = Department;
57464
+
57465
+
57243
57466
  /***/ },
57244
57467
 
57245
57468
  /***/ "./models/DirectFileUploadInput.ts"
@@ -68400,6 +68623,37 @@ var Permission;
68400
68623
  exports["default"] = Permission;
68401
68624
 
68402
68625
 
68626
+ /***/ },
68627
+
68628
+ /***/ "./models/Person.ts"
68629
+ /*!**************************!*\
68630
+ !*** ./models/Person.ts ***!
68631
+ \**************************/
68632
+ (__unused_webpack_module, exports, __webpack_require__) {
68633
+
68634
+ "use strict";
68635
+
68636
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
68637
+ exports.Person = void 0;
68638
+ const Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
68639
+ /**
68640
+ * @export
68641
+ * @class Person
68642
+ */
68643
+ class Person {
68644
+ constructor(obj) {
68645
+ if (!obj) {
68646
+ return;
68647
+ }
68648
+ this.name = (0, Mapper_1.map)(obj.name);
68649
+ this.role = (0, Mapper_1.map)(obj.role);
68650
+ this.department = (0, Mapper_1.map)(obj.department);
68651
+ }
68652
+ }
68653
+ exports.Person = Person;
68654
+ exports["default"] = Person;
68655
+
68656
+
68403
68657
  /***/ },
68404
68658
 
68405
68659
  /***/ "./models/PictureFieldParity.ts"
@@ -70889,6 +71143,7 @@ exports["default"] = SceneAnalysisAdPlacementMetadataResponse;
70889
71143
  Object.defineProperty(exports, "__esModule", ({ value: true }));
70890
71144
  exports.SceneAnalysisDetailsResponse = void 0;
70891
71145
  const Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
71146
+ const Credits_1 = __webpack_require__(/*! ./Credits */ "./models/Credits.ts");
70892
71147
  const Metadata_1 = __webpack_require__(/*! ./Metadata */ "./models/Metadata.ts");
70893
71148
  const Rating_1 = __webpack_require__(/*! ./Rating */ "./models/Rating.ts");
70894
71149
  const Scene_1 = __webpack_require__(/*! ./Scene */ "./models/Scene.ts");
@@ -70904,11 +71159,13 @@ class SceneAnalysisDetailsResponse {
70904
71159
  this.scenes = (0, Mapper_1.mapArray)(obj.scenes, Scene_1.default);
70905
71160
  this.duration = (0, Mapper_1.map)(obj.duration);
70906
71161
  this.description = (0, Mapper_1.map)(obj.description);
71162
+ this.title = (0, Mapper_1.map)(obj.title);
70907
71163
  this.keywords = (0, Mapper_1.mapArray)(obj.keywords);
70908
71164
  this.ratings = (0, Mapper_1.mapArray)(obj.ratings, Rating_1.default);
70909
71165
  this.sensitiveTopics = (0, Mapper_1.mapArray)(obj.sensitiveTopics);
70910
71166
  this.iabSensitiveTopicTaxonomies = (0, Mapper_1.mapArray)(obj.iabSensitiveTopicTaxonomies);
70911
71167
  this.inputLanguageCodes = (0, Mapper_1.mapArray)(obj.inputLanguageCodes);
71168
+ this.credits = (0, Mapper_1.map)(obj.credits, Credits_1.default);
70912
71169
  this.metadata = (0, Mapper_1.map)(obj.metadata, Metadata_1.default);
70913
71170
  }
70914
71171
  }
@@ -70945,6 +71202,66 @@ exports.SceneAnalysisLanguagesResponse = SceneAnalysisLanguagesResponse;
70945
71202
  exports["default"] = SceneAnalysisLanguagesResponse;
70946
71203
 
70947
71204
 
71205
+ /***/ },
71206
+
71207
+ /***/ "./models/SceneAnalysisListItem.ts"
71208
+ /*!*****************************************!*\
71209
+ !*** ./models/SceneAnalysisListItem.ts ***!
71210
+ \*****************************************/
71211
+ (__unused_webpack_module, exports, __webpack_require__) {
71212
+
71213
+ "use strict";
71214
+
71215
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
71216
+ exports.SceneAnalysisListItem = void 0;
71217
+ const Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
71218
+ /**
71219
+ * @export
71220
+ * @class SceneAnalysisListItem
71221
+ */
71222
+ class SceneAnalysisListItem {
71223
+ constructor(obj) {
71224
+ if (!obj) {
71225
+ return;
71226
+ }
71227
+ this.id = (0, Mapper_1.map)(obj.id);
71228
+ this.encodingId = (0, Mapper_1.map)(obj.encodingId);
71229
+ this.createdAt = (0, Mapper_1.map)(obj.createdAt, Date);
71230
+ this.description = (0, Mapper_1.map)(obj.description);
71231
+ this.title = (0, Mapper_1.map)(obj.title);
71232
+ this.keywords = (0, Mapper_1.mapArray)(obj.keywords);
71233
+ this.sceneCount = (0, Mapper_1.map)(obj.sceneCount);
71234
+ this.outputLanguageCodes = (0, Mapper_1.mapArray)(obj.outputLanguageCodes);
71235
+ }
71236
+ }
71237
+ exports.SceneAnalysisListItem = SceneAnalysisListItem;
71238
+ exports["default"] = SceneAnalysisListItem;
71239
+
71240
+
71241
+ /***/ },
71242
+
71243
+ /***/ "./models/SceneAnalysisListSort.ts"
71244
+ /*!*****************************************!*\
71245
+ !*** ./models/SceneAnalysisListSort.ts ***!
71246
+ \*****************************************/
71247
+ (__unused_webpack_module, exports) {
71248
+
71249
+ "use strict";
71250
+
71251
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
71252
+ exports.SceneAnalysisListSort = void 0;
71253
+ /**
71254
+ * @export
71255
+ * @enum {string}
71256
+ */
71257
+ var SceneAnalysisListSort;
71258
+ (function (SceneAnalysisListSort) {
71259
+ SceneAnalysisListSort["CREATED_AT_DESC"] = "createdAt:DESC";
71260
+ SceneAnalysisListSort["CREATED_AT_ASC"] = "createdAt:ASC";
71261
+ })(SceneAnalysisListSort || (exports.SceneAnalysisListSort = SceneAnalysisListSort = {}));
71262
+ exports["default"] = SceneAnalysisListSort;
71263
+
71264
+
70948
71265
  /***/ },
70949
71266
 
70950
71267
  /***/ "./models/SceneDynamics.ts"
@@ -71794,6 +72111,36 @@ var SmpteTimecodeFlavor;
71794
72111
  exports["default"] = SmpteTimecodeFlavor;
71795
72112
 
71796
72113
 
72114
+ /***/ },
72115
+
72116
+ /***/ "./models/Song.ts"
72117
+ /*!************************!*\
72118
+ !*** ./models/Song.ts ***!
72119
+ \************************/
72120
+ (__unused_webpack_module, exports, __webpack_require__) {
72121
+
72122
+ "use strict";
72123
+
72124
+ Object.defineProperty(exports, "__esModule", ({ value: true }));
72125
+ exports.Song = void 0;
72126
+ const Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
72127
+ /**
72128
+ * @export
72129
+ * @class Song
72130
+ */
72131
+ class Song {
72132
+ constructor(obj) {
72133
+ if (!obj) {
72134
+ return;
72135
+ }
72136
+ this.name = (0, Mapper_1.map)(obj.name);
72137
+ this.artist = (0, Mapper_1.map)(obj.artist);
72138
+ }
72139
+ }
72140
+ exports.Song = Song;
72141
+ exports["default"] = Song;
72142
+
72143
+
71797
72144
  /***/ },
71798
72145
 
71799
72146
  /***/ "./models/SourceChannel.ts"
@@ -77045,6 +77392,7 @@ __exportStar(__webpack_require__(/*! ./AdaptationSetTypeResponse */ "./models/Ad
77045
77392
  __exportStar(__webpack_require__(/*! ./AdaptiveQuantMode */ "./models/AdaptiveQuantMode.ts"), exports);
77046
77393
  __exportStar(__webpack_require__(/*! ./AesEncryptionDrm */ "./models/AesEncryptionDrm.ts"), exports);
77047
77394
  __exportStar(__webpack_require__(/*! ./AesEncryptionMethod */ "./models/AesEncryptionMethod.ts"), exports);
77395
+ __exportStar(__webpack_require__(/*! ./AgeRange */ "./models/AgeRange.ts"), exports);
77048
77396
  __exportStar(__webpack_require__(/*! ./AgentChatAttachment */ "./models/AgentChatAttachment.ts"), exports);
77049
77397
  __exportStar(__webpack_require__(/*! ./AgentChatAttachmentsData */ "./models/AgentChatAttachmentsData.ts"), exports);
77050
77398
  __exportStar(__webpack_require__(/*! ./AgentChatAttachmentsPart */ "./models/AgentChatAttachmentsPart.ts"), exports);
@@ -77225,6 +77573,7 @@ __exportStar(__webpack_require__(/*! ./CencWidevine */ "./models/CencWidevine.ts
77225
77573
  __exportStar(__webpack_require__(/*! ./ChannelLayout */ "./models/ChannelLayout.ts"), exports);
77226
77574
  __exportStar(__webpack_require__(/*! ./ChannelsAttributeForAudio */ "./models/ChannelsAttributeForAudio.ts"), exports);
77227
77575
  __exportStar(__webpack_require__(/*! ./Character */ "./models/Character.ts"), exports);
77576
+ __exportStar(__webpack_require__(/*! ./CharacterAppearance */ "./models/CharacterAppearance.ts"), exports);
77228
77577
  __exportStar(__webpack_require__(/*! ./CheckOutputPermissionsRequest */ "./models/CheckOutputPermissionsRequest.ts"), exports);
77229
77578
  __exportStar(__webpack_require__(/*! ./CheckOutputPermissionsResponse */ "./models/CheckOutputPermissionsResponse.ts"), exports);
77230
77579
  __exportStar(__webpack_require__(/*! ./ChromaLocation */ "./models/ChromaLocation.ts"), exports);
@@ -77254,6 +77603,7 @@ __exportStar(__webpack_require__(/*! ./ContentProtection */ "./models/ContentPro
77254
77603
  __exportStar(__webpack_require__(/*! ./ConvertSccCaption */ "./models/ConvertSccCaption.ts"), exports);
77255
77604
  __exportStar(__webpack_require__(/*! ./ConvertSccCaptionWebVttSettings */ "./models/ConvertSccCaptionWebVttSettings.ts"), exports);
77256
77605
  __exportStar(__webpack_require__(/*! ./ConvertSccPositionMode */ "./models/ConvertSccPositionMode.ts"), exports);
77606
+ __exportStar(__webpack_require__(/*! ./Credits */ "./models/Credits.ts"), exports);
77257
77607
  __exportStar(__webpack_require__(/*! ./CropFilter */ "./models/CropFilter.ts"), exports);
77258
77608
  __exportStar(__webpack_require__(/*! ./CustomAttribute */ "./models/CustomAttribute.ts"), exports);
77259
77609
  __exportStar(__webpack_require__(/*! ./CustomData */ "./models/CustomData.ts"), exports);
@@ -77303,6 +77653,7 @@ __exportStar(__webpack_require__(/*! ./DeinterlaceFilter */ "./models/Deinterlac
77303
77653
  __exportStar(__webpack_require__(/*! ./DeinterlaceFrameSelectionMode */ "./models/DeinterlaceFrameSelectionMode.ts"), exports);
77304
77654
  __exportStar(__webpack_require__(/*! ./DeinterlaceMode */ "./models/DeinterlaceMode.ts"), exports);
77305
77655
  __exportStar(__webpack_require__(/*! ./DenoiseHqdn3dFilter */ "./models/DenoiseHqdn3dFilter.ts"), exports);
77656
+ __exportStar(__webpack_require__(/*! ./Department */ "./models/Department.ts"), exports);
77306
77657
  __exportStar(__webpack_require__(/*! ./DirectFileUploadInput */ "./models/DirectFileUploadInput.ts"), exports);
77307
77658
  __exportStar(__webpack_require__(/*! ./DisplayAspectRatio */ "./models/DisplayAspectRatio.ts"), exports);
77308
77659
  __exportStar(__webpack_require__(/*! ./DnsMappingRequest */ "./models/DnsMappingRequest.ts"), exports);
@@ -77646,6 +77997,7 @@ __exportStar(__webpack_require__(/*! ./PerTitleFixedResolutionAndBitrateConfigur
77646
77997
  __exportStar(__webpack_require__(/*! ./PerTitleFixedResolutionAndBitrateConfigurationMode */ "./models/PerTitleFixedResolutionAndBitrateConfigurationMode.ts"), exports);
77647
77998
  __exportStar(__webpack_require__(/*! ./Period */ "./models/Period.ts"), exports);
77648
77999
  __exportStar(__webpack_require__(/*! ./Permission */ "./models/Permission.ts"), exports);
78000
+ __exportStar(__webpack_require__(/*! ./Person */ "./models/Person.ts"), exports);
77649
78001
  __exportStar(__webpack_require__(/*! ./PictureFieldParity */ "./models/PictureFieldParity.ts"), exports);
77650
78002
  __exportStar(__webpack_require__(/*! ./PixelFormat */ "./models/PixelFormat.ts"), exports);
77651
78003
  __exportStar(__webpack_require__(/*! ./PixelFormatBitDepth */ "./models/PixelFormatBitDepth.ts"), exports);
@@ -77726,6 +78078,8 @@ __exportStar(__webpack_require__(/*! ./Scene */ "./models/Scene.ts"), exports);
77726
78078
  __exportStar(__webpack_require__(/*! ./SceneAnalysisAdPlacementMetadataResponse */ "./models/SceneAnalysisAdPlacementMetadataResponse.ts"), exports);
77727
78079
  __exportStar(__webpack_require__(/*! ./SceneAnalysisDetailsResponse */ "./models/SceneAnalysisDetailsResponse.ts"), exports);
77728
78080
  __exportStar(__webpack_require__(/*! ./SceneAnalysisLanguagesResponse */ "./models/SceneAnalysisLanguagesResponse.ts"), exports);
78081
+ __exportStar(__webpack_require__(/*! ./SceneAnalysisListItem */ "./models/SceneAnalysisListItem.ts"), exports);
78082
+ __exportStar(__webpack_require__(/*! ./SceneAnalysisListSort */ "./models/SceneAnalysisListSort.ts"), exports);
77729
78083
  __exportStar(__webpack_require__(/*! ./SceneDynamics */ "./models/SceneDynamics.ts"), exports);
77730
78084
  __exportStar(__webpack_require__(/*! ./SceneObject */ "./models/SceneObject.ts"), exports);
77731
78085
  __exportStar(__webpack_require__(/*! ./ScenePacing */ "./models/ScenePacing.ts"), exports);
@@ -77753,6 +78107,7 @@ __exportStar(__webpack_require__(/*! ./SmoothManifestDefaultVersion */ "./models
77753
78107
  __exportStar(__webpack_require__(/*! ./SmoothStreamingManifest */ "./models/SmoothStreamingManifest.ts"), exports);
77754
78108
  __exportStar(__webpack_require__(/*! ./SmoothStreamingRepresentation */ "./models/SmoothStreamingRepresentation.ts"), exports);
77755
78109
  __exportStar(__webpack_require__(/*! ./SmpteTimecodeFlavor */ "./models/SmpteTimecodeFlavor.ts"), exports);
78110
+ __exportStar(__webpack_require__(/*! ./Song */ "./models/Song.ts"), exports);
77756
78111
  __exportStar(__webpack_require__(/*! ./SourceChannel */ "./models/SourceChannel.ts"), exports);
77757
78112
  __exportStar(__webpack_require__(/*! ./SourceChannelType */ "./models/SourceChannelType.ts"), exports);
77758
78113
  __exportStar(__webpack_require__(/*! ./SpekeDrm */ "./models/SpekeDrm.ts"), exports);