@bitmovin/api-sdk 1.227.0 → 1.229.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.
- package/README.md +1 -1
- package/dist/account/organizations/groups/GroupListQueryParams.d.ts +28 -0
- package/dist/account/organizations/groups/GroupListQueryParams.js +29 -0
- package/dist/account/organizations/groups/GroupsApi.d.ts +3 -1
- package/dist/account/organizations/groups/GroupsApi.js +11 -2
- package/dist/bitmovin-api-sdk.browser.js +235 -59
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/encoding/encodings/EncodingsApi.d.ts +2 -0
- package/dist/encoding/encodings/EncodingsApi.js +2 -0
- package/dist/encoding/encodings/template/TemplateApi.d.ts +19 -0
- package/dist/encoding/encodings/template/TemplateApi.js +48 -0
- package/dist/models/AiSceneAnalysis.d.ts +22 -0
- package/dist/models/AiSceneAnalysis.js +22 -0
- package/dist/models/AiSceneAnalysisAssetDescription.d.ts +20 -0
- package/dist/models/{AiContentAnalysisAssetDescription.js → AiSceneAnalysisAssetDescription.js} +7 -7
- package/dist/models/AiSceneAnalysisAutomaticAdPlacement.d.ts +15 -0
- package/dist/models/AiSceneAnalysisAutomaticAdPlacement.js +20 -0
- package/dist/models/AiSceneAnalysisFeatures.d.ts +22 -0
- package/dist/models/AiSceneAnalysisFeatures.js +22 -0
- package/dist/models/EncodingTemplateUrlResponse.d.ts +14 -0
- package/dist/models/EncodingTemplateUrlResponse.js +19 -0
- package/dist/models/Metadata.d.ts +18 -0
- package/dist/models/Metadata.js +20 -0
- package/dist/models/Scene.d.ts +5 -0
- package/dist/models/Scene.js +1 -0
- package/dist/models/SceneAnalysisDetailsResponse.d.ts +6 -0
- package/dist/models/SceneAnalysisDetailsResponse.js +2 -0
- package/dist/models/StartEncodingRequest.d.ts +4 -4
- package/dist/models/StartEncodingRequest.js +2 -2
- package/dist/models/index.d.ts +6 -4
- package/dist/models/index.js +6 -4
- package/package.json +1 -1
- package/dist/models/AiContentAnalysis.d.ts +0 -22
- package/dist/models/AiContentAnalysis.js +0 -22
- package/dist/models/AiContentAnalysisAssetDescription.d.ts +0 -20
- package/dist/models/AiContentAnalysisAutomaticAdPlacement.d.ts +0 -15
- package/dist/models/AiContentAnalysisAutomaticAdPlacement.js +0 -20
- package/dist/models/AiContentAnalysisFeatures.d.ts +0 -22
- package/dist/models/AiContentAnalysisFeatures.js +0 -22
package/README.md
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export interface GroupListQueryParams {
|
|
2
|
+
/**
|
|
3
|
+
* Index of the first item to return, starting at 0. Default is 0
|
|
4
|
+
* @type {number}
|
|
5
|
+
* @memberof GroupListQueryParams
|
|
6
|
+
*/
|
|
7
|
+
offset?: number | undefined;
|
|
8
|
+
/**
|
|
9
|
+
* Maximum number of items to return. Default is 25, maximum is 100
|
|
10
|
+
* @type {number}
|
|
11
|
+
* @memberof GroupListQueryParams
|
|
12
|
+
*/
|
|
13
|
+
limit?: number | undefined;
|
|
14
|
+
}
|
|
15
|
+
export declare class GroupListQueryParamsBuilder {
|
|
16
|
+
private internalParams;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
20
|
+
*/
|
|
21
|
+
offset(offset: number): this;
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
25
|
+
*/
|
|
26
|
+
limit(limit: number): this;
|
|
27
|
+
buildQueryParams(): GroupListQueryParams;
|
|
28
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GroupListQueryParamsBuilder = void 0;
|
|
4
|
+
var GroupListQueryParamsBuilder = /** @class */ (function () {
|
|
5
|
+
function GroupListQueryParamsBuilder() {
|
|
6
|
+
this.internalParams = {};
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
*
|
|
10
|
+
* @param offset Index of the first item to return, starting at 0. Default is 0
|
|
11
|
+
*/
|
|
12
|
+
GroupListQueryParamsBuilder.prototype.offset = function (offset) {
|
|
13
|
+
this.internalParams.offset = offset;
|
|
14
|
+
return this;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @param limit Maximum number of items to return. Default is 25, maximum is 100
|
|
19
|
+
*/
|
|
20
|
+
GroupListQueryParamsBuilder.prototype.limit = function (limit) {
|
|
21
|
+
this.internalParams.limit = limit;
|
|
22
|
+
return this;
|
|
23
|
+
};
|
|
24
|
+
GroupListQueryParamsBuilder.prototype.buildQueryParams = function () {
|
|
25
|
+
return this.internalParams;
|
|
26
|
+
};
|
|
27
|
+
return GroupListQueryParamsBuilder;
|
|
28
|
+
}());
|
|
29
|
+
exports.GroupListQueryParamsBuilder = GroupListQueryParamsBuilder;
|
|
@@ -6,6 +6,7 @@ import PermissionsApi from './permissions/PermissionsApi';
|
|
|
6
6
|
import BitmovinResponse from '../../../models/BitmovinResponse';
|
|
7
7
|
import Group from '../../../models/Group';
|
|
8
8
|
import PaginationResponse from '../../../models/PaginationResponse';
|
|
9
|
+
import { GroupListQueryParams, GroupListQueryParamsBuilder } from './GroupListQueryParams';
|
|
9
10
|
/**
|
|
10
11
|
* GroupsApi - object-oriented interface
|
|
11
12
|
* @export
|
|
@@ -44,8 +45,9 @@ export default class GroupsApi extends BaseAPI {
|
|
|
44
45
|
/**
|
|
45
46
|
* @summary List Groups
|
|
46
47
|
* @param {string} organizationId Id of the organization
|
|
48
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
47
49
|
* @throws {BitmovinError}
|
|
48
50
|
* @memberof GroupsApi
|
|
49
51
|
*/
|
|
50
|
-
list(organizationId: string): Promise<PaginationResponse<Group>>;
|
|
52
|
+
list(organizationId: string, queryParameters?: GroupListQueryParams | ((q: GroupListQueryParamsBuilder) => GroupListQueryParamsBuilder)): Promise<PaginationResponse<Group>>;
|
|
51
53
|
}
|
|
@@ -23,6 +23,7 @@ var PermissionsApi_1 = require("./permissions/PermissionsApi");
|
|
|
23
23
|
var BitmovinResponse_1 = require("../../../models/BitmovinResponse");
|
|
24
24
|
var Group_1 = require("../../../models/Group");
|
|
25
25
|
var PaginationResponse_1 = require("../../../models/PaginationResponse");
|
|
26
|
+
var GroupListQueryParams_1 = require("./GroupListQueryParams");
|
|
26
27
|
/**
|
|
27
28
|
* GroupsApi - object-oriented interface
|
|
28
29
|
* @export
|
|
@@ -88,14 +89,22 @@ var GroupsApi = /** @class */ (function (_super) {
|
|
|
88
89
|
/**
|
|
89
90
|
* @summary List Groups
|
|
90
91
|
* @param {string} organizationId Id of the organization
|
|
92
|
+
* @param {*} [queryParameters] query parameters for filtering, sorting and pagination
|
|
91
93
|
* @throws {BitmovinError}
|
|
92
94
|
* @memberof GroupsApi
|
|
93
95
|
*/
|
|
94
|
-
GroupsApi.prototype.list = function (organizationId) {
|
|
96
|
+
GroupsApi.prototype.list = function (organizationId, queryParameters) {
|
|
95
97
|
var pathParamMap = {
|
|
96
98
|
organization_id: organizationId
|
|
97
99
|
};
|
|
98
|
-
|
|
100
|
+
var queryParams = {};
|
|
101
|
+
if (typeof queryParameters === 'function') {
|
|
102
|
+
queryParams = queryParameters(new GroupListQueryParams_1.GroupListQueryParamsBuilder()).buildQueryParams();
|
|
103
|
+
}
|
|
104
|
+
else if (queryParameters) {
|
|
105
|
+
queryParams = queryParameters;
|
|
106
|
+
}
|
|
107
|
+
return this.restClient.get('/account/organizations/{organization_id}/groups', pathParamMap, queryParams).then(function (response) {
|
|
99
108
|
return new PaginationResponse_1.default(response, Group_1.default);
|
|
100
109
|
});
|
|
101
110
|
};
|
|
@@ -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
|
-
|
|
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.
|
|
7033
|
+
'X-Api-Client-Version': '1.229.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);
|
|
@@ -32664,6 +32715,65 @@ var CustomdataApi = /** @class */ (function (_super) {
|
|
|
32664
32715
|
exports["default"] = CustomdataApi;
|
|
32665
32716
|
|
|
32666
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
|
+
|
|
32667
32777
|
/***/ }),
|
|
32668
32778
|
|
|
32669
32779
|
/***/ "./encoding/encodings/transferRetries/TransferRetriesApi.ts":
|
|
@@ -58074,131 +58184,131 @@ exports["default"] = AesEncryptionMethod;
|
|
|
58074
58184
|
|
|
58075
58185
|
/***/ }),
|
|
58076
58186
|
|
|
58077
|
-
/***/ "./models/
|
|
58078
|
-
|
|
58079
|
-
!*** ./models/
|
|
58080
|
-
|
|
58187
|
+
/***/ "./models/AiSceneAnalysis.ts":
|
|
58188
|
+
/*!***********************************!*\
|
|
58189
|
+
!*** ./models/AiSceneAnalysis.ts ***!
|
|
58190
|
+
\***********************************/
|
|
58081
58191
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
58082
58192
|
|
|
58083
58193
|
"use strict";
|
|
58084
58194
|
|
|
58085
58195
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58086
|
-
exports.
|
|
58196
|
+
exports.AiSceneAnalysis = void 0;
|
|
58087
58197
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
58088
|
-
var
|
|
58198
|
+
var AiSceneAnalysisFeatures_1 = __webpack_require__(/*! ./AiSceneAnalysisFeatures */ "./models/AiSceneAnalysisFeatures.ts");
|
|
58089
58199
|
var AiService_1 = __webpack_require__(/*! ./AiService */ "./models/AiService.ts");
|
|
58090
58200
|
/**
|
|
58091
58201
|
* @export
|
|
58092
|
-
* @class
|
|
58202
|
+
* @class AiSceneAnalysis
|
|
58093
58203
|
*/
|
|
58094
|
-
var
|
|
58095
|
-
function
|
|
58204
|
+
var AiSceneAnalysis = /** @class */ (function () {
|
|
58205
|
+
function AiSceneAnalysis(obj) {
|
|
58096
58206
|
if (!obj) {
|
|
58097
58207
|
return;
|
|
58098
58208
|
}
|
|
58099
58209
|
this.aiService = (0, Mapper_1.map)(obj.aiService, AiService_1.default);
|
|
58100
|
-
this.features = (0, Mapper_1.map)(obj.features,
|
|
58210
|
+
this.features = (0, Mapper_1.map)(obj.features, AiSceneAnalysisFeatures_1.default);
|
|
58101
58211
|
}
|
|
58102
|
-
return
|
|
58212
|
+
return AiSceneAnalysis;
|
|
58103
58213
|
}());
|
|
58104
|
-
exports.
|
|
58105
|
-
exports["default"] =
|
|
58214
|
+
exports.AiSceneAnalysis = AiSceneAnalysis;
|
|
58215
|
+
exports["default"] = AiSceneAnalysis;
|
|
58106
58216
|
|
|
58107
58217
|
|
|
58108
58218
|
/***/ }),
|
|
58109
58219
|
|
|
58110
|
-
/***/ "./models/
|
|
58111
|
-
|
|
58112
|
-
!*** ./models/
|
|
58113
|
-
|
|
58220
|
+
/***/ "./models/AiSceneAnalysisAssetDescription.ts":
|
|
58221
|
+
/*!***************************************************!*\
|
|
58222
|
+
!*** ./models/AiSceneAnalysisAssetDescription.ts ***!
|
|
58223
|
+
\***************************************************/
|
|
58114
58224
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
58115
58225
|
|
|
58116
58226
|
"use strict";
|
|
58117
58227
|
|
|
58118
58228
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58119
|
-
exports.
|
|
58229
|
+
exports.AiSceneAnalysisAssetDescription = void 0;
|
|
58120
58230
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
58121
58231
|
var EncodingOutput_1 = __webpack_require__(/*! ./EncodingOutput */ "./models/EncodingOutput.ts");
|
|
58122
58232
|
/**
|
|
58123
58233
|
* @export
|
|
58124
|
-
* @class
|
|
58234
|
+
* @class AiSceneAnalysisAssetDescription
|
|
58125
58235
|
*/
|
|
58126
|
-
var
|
|
58127
|
-
function
|
|
58236
|
+
var AiSceneAnalysisAssetDescription = /** @class */ (function () {
|
|
58237
|
+
function AiSceneAnalysisAssetDescription(obj) {
|
|
58128
58238
|
if (!obj) {
|
|
58129
58239
|
return;
|
|
58130
58240
|
}
|
|
58131
58241
|
this.filename = (0, Mapper_1.map)(obj.filename);
|
|
58132
58242
|
this.outputs = (0, Mapper_1.mapArray)(obj.outputs, EncodingOutput_1.default);
|
|
58133
58243
|
}
|
|
58134
|
-
return
|
|
58244
|
+
return AiSceneAnalysisAssetDescription;
|
|
58135
58245
|
}());
|
|
58136
|
-
exports.
|
|
58137
|
-
exports["default"] =
|
|
58246
|
+
exports.AiSceneAnalysisAssetDescription = AiSceneAnalysisAssetDescription;
|
|
58247
|
+
exports["default"] = AiSceneAnalysisAssetDescription;
|
|
58138
58248
|
|
|
58139
58249
|
|
|
58140
58250
|
/***/ }),
|
|
58141
58251
|
|
|
58142
|
-
/***/ "./models/
|
|
58143
|
-
|
|
58144
|
-
!*** ./models/
|
|
58145
|
-
|
|
58252
|
+
/***/ "./models/AiSceneAnalysisAutomaticAdPlacement.ts":
|
|
58253
|
+
/*!*******************************************************!*\
|
|
58254
|
+
!*** ./models/AiSceneAnalysisAutomaticAdPlacement.ts ***!
|
|
58255
|
+
\*******************************************************/
|
|
58146
58256
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
58147
58257
|
|
|
58148
58258
|
"use strict";
|
|
58149
58259
|
|
|
58150
58260
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58151
|
-
exports.
|
|
58261
|
+
exports.AiSceneAnalysisAutomaticAdPlacement = void 0;
|
|
58152
58262
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
58153
58263
|
var AutomaticAdPlacementPosition_1 = __webpack_require__(/*! ./AutomaticAdPlacementPosition */ "./models/AutomaticAdPlacementPosition.ts");
|
|
58154
58264
|
/**
|
|
58155
58265
|
* @export
|
|
58156
|
-
* @class
|
|
58266
|
+
* @class AiSceneAnalysisAutomaticAdPlacement
|
|
58157
58267
|
*/
|
|
58158
|
-
var
|
|
58159
|
-
function
|
|
58268
|
+
var AiSceneAnalysisAutomaticAdPlacement = /** @class */ (function () {
|
|
58269
|
+
function AiSceneAnalysisAutomaticAdPlacement(obj) {
|
|
58160
58270
|
if (!obj) {
|
|
58161
58271
|
return;
|
|
58162
58272
|
}
|
|
58163
58273
|
this.schedule = (0, Mapper_1.mapArray)(obj.schedule, AutomaticAdPlacementPosition_1.default);
|
|
58164
58274
|
}
|
|
58165
|
-
return
|
|
58275
|
+
return AiSceneAnalysisAutomaticAdPlacement;
|
|
58166
58276
|
}());
|
|
58167
|
-
exports.
|
|
58168
|
-
exports["default"] =
|
|
58277
|
+
exports.AiSceneAnalysisAutomaticAdPlacement = AiSceneAnalysisAutomaticAdPlacement;
|
|
58278
|
+
exports["default"] = AiSceneAnalysisAutomaticAdPlacement;
|
|
58169
58279
|
|
|
58170
58280
|
|
|
58171
58281
|
/***/ }),
|
|
58172
58282
|
|
|
58173
|
-
/***/ "./models/
|
|
58174
|
-
|
|
58175
|
-
!*** ./models/
|
|
58176
|
-
|
|
58283
|
+
/***/ "./models/AiSceneAnalysisFeatures.ts":
|
|
58284
|
+
/*!*******************************************!*\
|
|
58285
|
+
!*** ./models/AiSceneAnalysisFeatures.ts ***!
|
|
58286
|
+
\*******************************************/
|
|
58177
58287
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
58178
58288
|
|
|
58179
58289
|
"use strict";
|
|
58180
58290
|
|
|
58181
58291
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58182
|
-
exports.
|
|
58292
|
+
exports.AiSceneAnalysisFeatures = void 0;
|
|
58183
58293
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
58184
|
-
var
|
|
58185
|
-
var
|
|
58294
|
+
var AiSceneAnalysisAssetDescription_1 = __webpack_require__(/*! ./AiSceneAnalysisAssetDescription */ "./models/AiSceneAnalysisAssetDescription.ts");
|
|
58295
|
+
var AiSceneAnalysisAutomaticAdPlacement_1 = __webpack_require__(/*! ./AiSceneAnalysisAutomaticAdPlacement */ "./models/AiSceneAnalysisAutomaticAdPlacement.ts");
|
|
58186
58296
|
/**
|
|
58187
58297
|
* @export
|
|
58188
|
-
* @class
|
|
58298
|
+
* @class AiSceneAnalysisFeatures
|
|
58189
58299
|
*/
|
|
58190
|
-
var
|
|
58191
|
-
function
|
|
58300
|
+
var AiSceneAnalysisFeatures = /** @class */ (function () {
|
|
58301
|
+
function AiSceneAnalysisFeatures(obj) {
|
|
58192
58302
|
if (!obj) {
|
|
58193
58303
|
return;
|
|
58194
58304
|
}
|
|
58195
|
-
this.assetDescription = (0, Mapper_1.map)(obj.assetDescription,
|
|
58196
|
-
this.automaticAdPlacement = (0, Mapper_1.map)(obj.automaticAdPlacement,
|
|
58305
|
+
this.assetDescription = (0, Mapper_1.map)(obj.assetDescription, AiSceneAnalysisAssetDescription_1.default);
|
|
58306
|
+
this.automaticAdPlacement = (0, Mapper_1.map)(obj.automaticAdPlacement, AiSceneAnalysisAutomaticAdPlacement_1.default);
|
|
58197
58307
|
}
|
|
58198
|
-
return
|
|
58308
|
+
return AiSceneAnalysisFeatures;
|
|
58199
58309
|
}());
|
|
58200
|
-
exports.
|
|
58201
|
-
exports["default"] =
|
|
58310
|
+
exports.AiSceneAnalysisFeatures = AiSceneAnalysisFeatures;
|
|
58311
|
+
exports["default"] = AiSceneAnalysisFeatures;
|
|
58202
58312
|
|
|
58203
58313
|
|
|
58204
58314
|
/***/ }),
|
|
@@ -71927,6 +72037,36 @@ var EncodingTemplateType;
|
|
|
71927
72037
|
exports["default"] = EncodingTemplateType;
|
|
71928
72038
|
|
|
71929
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
|
+
|
|
71930
72070
|
/***/ }),
|
|
71931
72071
|
|
|
71932
72072
|
/***/ "./models/EncodingType.ts":
|
|
@@ -78060,6 +78200,37 @@ var MessageType;
|
|
|
78060
78200
|
exports["default"] = MessageType;
|
|
78061
78201
|
|
|
78062
78202
|
|
|
78203
|
+
/***/ }),
|
|
78204
|
+
|
|
78205
|
+
/***/ "./models/Metadata.ts":
|
|
78206
|
+
/*!****************************!*\
|
|
78207
|
+
!*** ./models/Metadata.ts ***!
|
|
78208
|
+
\****************************/
|
|
78209
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
78210
|
+
|
|
78211
|
+
"use strict";
|
|
78212
|
+
|
|
78213
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
78214
|
+
exports.Metadata = void 0;
|
|
78215
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
78216
|
+
/**
|
|
78217
|
+
* @export
|
|
78218
|
+
* @class Metadata
|
|
78219
|
+
*/
|
|
78220
|
+
var Metadata = /** @class */ (function () {
|
|
78221
|
+
function Metadata(obj) {
|
|
78222
|
+
if (!obj) {
|
|
78223
|
+
return;
|
|
78224
|
+
}
|
|
78225
|
+
this.version = (0, Mapper_1.map)(obj.version);
|
|
78226
|
+
this.disclaimer = (0, Mapper_1.map)(obj.disclaimer);
|
|
78227
|
+
}
|
|
78228
|
+
return Metadata;
|
|
78229
|
+
}());
|
|
78230
|
+
exports.Metadata = Metadata;
|
|
78231
|
+
exports["default"] = Metadata;
|
|
78232
|
+
|
|
78233
|
+
|
|
78063
78234
|
/***/ }),
|
|
78064
78235
|
|
|
78065
78236
|
/***/ "./models/MinCodingUnitSize.ts":
|
|
@@ -83136,6 +83307,7 @@ var Scene = /** @class */ (function () {
|
|
|
83136
83307
|
if (!obj) {
|
|
83137
83308
|
return;
|
|
83138
83309
|
}
|
|
83310
|
+
this.title = (0, Mapper_1.map)(obj.title);
|
|
83139
83311
|
this.startInSeconds = (0, Mapper_1.map)(obj.startInSeconds);
|
|
83140
83312
|
this.endInSeconds = (0, Mapper_1.map)(obj.endInSeconds);
|
|
83141
83313
|
this.id = (0, Mapper_1.map)(obj.id);
|
|
@@ -83164,6 +83336,7 @@ exports["default"] = Scene;
|
|
|
83164
83336
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
83165
83337
|
exports.SceneAnalysisDetailsResponse = void 0;
|
|
83166
83338
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
83339
|
+
var Metadata_1 = __webpack_require__(/*! ./Metadata */ "./models/Metadata.ts");
|
|
83167
83340
|
var Rating_1 = __webpack_require__(/*! ./Rating */ "./models/Rating.ts");
|
|
83168
83341
|
var Scene_1 = __webpack_require__(/*! ./Scene */ "./models/Scene.ts");
|
|
83169
83342
|
/**
|
|
@@ -83181,6 +83354,7 @@ var SceneAnalysisDetailsResponse = /** @class */ (function () {
|
|
|
83181
83354
|
this.ratings = (0, Mapper_1.mapArray)(obj.ratings, Rating_1.default);
|
|
83182
83355
|
this.sensitiveTopics = (0, Mapper_1.mapArray)(obj.sensitiveTopics);
|
|
83183
83356
|
this.iabSensitiveTopicTaxonomies = (0, Mapper_1.mapArray)(obj.iabSensitiveTopicTaxonomies);
|
|
83357
|
+
this.metadata = (0, Mapper_1.map)(obj.metadata, Metadata_1.default);
|
|
83184
83358
|
}
|
|
83185
83359
|
return SceneAnalysisDetailsResponse;
|
|
83186
83360
|
}());
|
|
@@ -84853,7 +85027,7 @@ exports["default"] = StandardMediaInfo;
|
|
|
84853
85027
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
84854
85028
|
exports.StartEncodingRequest = void 0;
|
|
84855
85029
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
84856
|
-
var
|
|
85030
|
+
var AiSceneAnalysis_1 = __webpack_require__(/*! ./AiSceneAnalysis */ "./models/AiSceneAnalysis.ts");
|
|
84857
85031
|
var ManifestResource_1 = __webpack_require__(/*! ./ManifestResource */ "./models/ManifestResource.ts");
|
|
84858
85032
|
var PerTitle_1 = __webpack_require__(/*! ./PerTitle */ "./models/PerTitle.ts");
|
|
84859
85033
|
var Scheduling_1 = __webpack_require__(/*! ./Scheduling */ "./models/Scheduling.ts");
|
|
@@ -84880,7 +85054,7 @@ var StartEncodingRequest = /** @class */ (function () {
|
|
|
84880
85054
|
this.vodSmoothManifests = (0, Mapper_1.mapArray)(obj.vodSmoothManifests, ManifestResource_1.default);
|
|
84881
85055
|
this.manifestGenerator = (0, Mapper_1.map)(obj.manifestGenerator);
|
|
84882
85056
|
this.perTitle = (0, Mapper_1.map)(obj.perTitle, PerTitle_1.default);
|
|
84883
|
-
this.
|
|
85057
|
+
this.aiSceneAnalysis = (0, Mapper_1.map)(obj.aiSceneAnalysis, AiSceneAnalysis_1.default);
|
|
84884
85058
|
}
|
|
84885
85059
|
return StartEncodingRequest;
|
|
84886
85060
|
}());
|
|
@@ -90236,10 +90410,10 @@ __exportStar(__webpack_require__(/*! ./AdaptationSetTypeResponse */ "./models/Ad
|
|
|
90236
90410
|
__exportStar(__webpack_require__(/*! ./AdaptiveQuantMode */ "./models/AdaptiveQuantMode.ts"), exports);
|
|
90237
90411
|
__exportStar(__webpack_require__(/*! ./AesEncryptionDrm */ "./models/AesEncryptionDrm.ts"), exports);
|
|
90238
90412
|
__exportStar(__webpack_require__(/*! ./AesEncryptionMethod */ "./models/AesEncryptionMethod.ts"), exports);
|
|
90239
|
-
__exportStar(__webpack_require__(/*! ./
|
|
90240
|
-
__exportStar(__webpack_require__(/*! ./
|
|
90241
|
-
__exportStar(__webpack_require__(/*! ./
|
|
90242
|
-
__exportStar(__webpack_require__(/*! ./
|
|
90413
|
+
__exportStar(__webpack_require__(/*! ./AiSceneAnalysis */ "./models/AiSceneAnalysis.ts"), exports);
|
|
90414
|
+
__exportStar(__webpack_require__(/*! ./AiSceneAnalysisAssetDescription */ "./models/AiSceneAnalysisAssetDescription.ts"), exports);
|
|
90415
|
+
__exportStar(__webpack_require__(/*! ./AiSceneAnalysisAutomaticAdPlacement */ "./models/AiSceneAnalysisAutomaticAdPlacement.ts"), exports);
|
|
90416
|
+
__exportStar(__webpack_require__(/*! ./AiSceneAnalysisFeatures */ "./models/AiSceneAnalysisFeatures.ts"), exports);
|
|
90243
90417
|
__exportStar(__webpack_require__(/*! ./AiService */ "./models/AiService.ts"), exports);
|
|
90244
90418
|
__exportStar(__webpack_require__(/*! ./AiServiceProvider */ "./models/AiServiceProvider.ts"), exports);
|
|
90245
90419
|
__exportStar(__webpack_require__(/*! ./AkamaiAccount */ "./models/AkamaiAccount.ts"), exports);
|
|
@@ -90569,6 +90743,7 @@ __exportStar(__webpack_require__(/*! ./EncodingTemplateRequest */ "./models/Enco
|
|
|
90569
90743
|
__exportStar(__webpack_require__(/*! ./EncodingTemplateResponse */ "./models/EncodingTemplateResponse.ts"), exports);
|
|
90570
90744
|
__exportStar(__webpack_require__(/*! ./EncodingTemplateStartResponse */ "./models/EncodingTemplateStartResponse.ts"), exports);
|
|
90571
90745
|
__exportStar(__webpack_require__(/*! ./EncodingTemplateType */ "./models/EncodingTemplateType.ts"), exports);
|
|
90746
|
+
__exportStar(__webpack_require__(/*! ./EncodingTemplateUrlResponse */ "./models/EncodingTemplateUrlResponse.ts"), exports);
|
|
90572
90747
|
__exportStar(__webpack_require__(/*! ./EncodingType */ "./models/EncodingType.ts"), exports);
|
|
90573
90748
|
__exportStar(__webpack_require__(/*! ./EncryptionMode */ "./models/EncryptionMode.ts"), exports);
|
|
90574
90749
|
__exportStar(__webpack_require__(/*! ./EnhancedDeinterlaceAutoEnable */ "./models/EnhancedDeinterlaceAutoEnable.ts"), exports);
|
|
@@ -90725,6 +90900,7 @@ __exportStar(__webpack_require__(/*! ./MediaStream */ "./models/MediaStream.ts")
|
|
|
90725
90900
|
__exportStar(__webpack_require__(/*! ./MediaType */ "./models/MediaType.ts"), exports);
|
|
90726
90901
|
__exportStar(__webpack_require__(/*! ./Message */ "./models/Message.ts"), exports);
|
|
90727
90902
|
__exportStar(__webpack_require__(/*! ./MessageType */ "./models/MessageType.ts"), exports);
|
|
90903
|
+
__exportStar(__webpack_require__(/*! ./Metadata */ "./models/Metadata.ts"), exports);
|
|
90728
90904
|
__exportStar(__webpack_require__(/*! ./MinCodingUnitSize */ "./models/MinCodingUnitSize.ts"), exports);
|
|
90729
90905
|
__exportStar(__webpack_require__(/*! ./MjpegVideoConfiguration */ "./models/MjpegVideoConfiguration.ts"), exports);
|
|
90730
90906
|
__exportStar(__webpack_require__(/*! ./MotionSearch */ "./models/MotionSearch.ts"), exports);
|