@bitmovin/api-sdk 1.256.0 → 1.258.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/BitmovinApi.d.ts +2 -0
- package/dist/BitmovinApi.js +2 -0
- package/dist/agents/AgentsApi.d.ts +13 -0
- package/dist/agents/AgentsApi.js +35 -0
- package/dist/agents/aisa/AisaApi.d.ts +13 -0
- package/dist/agents/aisa/AisaApi.js +35 -0
- package/dist/agents/aisa/sessions/SessionsApi.d.ts +44 -0
- package/dist/agents/aisa/sessions/SessionsApi.js +88 -0
- package/dist/bitmovin-api-sdk.browser.js +844 -233
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/AbstractCondition.d.ts +1 -2
- package/dist/models/AbstractCondition.js +3 -3
- package/dist/models/AdAnalyticsAbstractFilter.d.ts +1 -2
- package/dist/models/AdAnalyticsAbstractFilter.js +9 -9
- package/dist/models/AdAnalyticsAttribute.d.ts +45 -0
- package/dist/models/AdAnalyticsAttribute.js +45 -0
- package/dist/models/AdPosition.d.ts +5 -0
- package/dist/models/AdPosition.js +1 -0
- package/dist/models/AdaptationSet.d.ts +1 -2
- package/dist/models/AdaptationSet.js +4 -4
- package/dist/models/AgentChatAttachment.d.ts +28 -0
- package/dist/models/AgentChatAttachment.js +21 -0
- package/dist/models/AgentChatAttachmentsData.d.ts +15 -0
- package/dist/models/AgentChatAttachmentsData.js +20 -0
- package/dist/models/AgentChatAttachmentsPart.d.ts +23 -0
- package/dist/models/AgentChatAttachmentsPart.js +46 -0
- package/dist/models/AgentChatMessage.d.ts +27 -0
- package/dist/models/AgentChatMessage.js +22 -0
- package/dist/models/AgentChatMessagePart.d.ts +15 -0
- package/dist/models/AgentChatMessagePart.js +22 -0
- package/dist/models/AgentChatMessagePartType.d.ts +9 -0
- package/dist/models/AgentChatMessagePartType.js +13 -0
- package/dist/models/AgentChatTextPart.d.ts +22 -0
- package/dist/models/AgentChatTextPart.js +45 -0
- package/dist/models/AgentSessionHistoryResponse.d.ts +39 -0
- package/dist/models/AgentSessionHistoryResponse.js +24 -0
- package/dist/models/AgentSessionListItem.d.ts +26 -0
- package/dist/models/AgentSessionListItem.js +21 -0
- package/dist/models/AgentSessionListResponse.d.ts +27 -0
- package/dist/models/AgentSessionListResponse.js +22 -0
- package/dist/models/AgentSessionResponse.d.ts +26 -0
- package/dist/models/AgentSessionResponse.js +21 -0
- package/dist/models/AnalyticsAbstractFilter.d.ts +1 -2
- package/dist/models/AnalyticsAbstractFilter.js +9 -9
- package/dist/models/AnalyticsAttribute.d.ts +26 -0
- package/dist/models/AnalyticsAttribute.js +26 -0
- package/dist/models/AnalyticsOutput.d.ts +1 -2
- package/dist/models/AnalyticsOutput.js +3 -3
- package/dist/models/CodecConfiguration.d.ts +1 -2
- package/dist/models/CodecConfiguration.js +27 -27
- package/dist/models/DashRepresentation.d.ts +1 -2
- package/dist/models/DashRepresentation.js +12 -12
- package/dist/models/DefaultManifestCondition.d.ts +1 -2
- package/dist/models/DefaultManifestCondition.js +3 -3
- package/dist/models/DolbyAtmosInputFormat.d.ts +2 -1
- package/dist/models/DolbyAtmosInputFormat.js +1 -0
- package/dist/models/Drm.d.ts +1 -2
- package/dist/models/Drm.js +9 -9
- package/dist/models/EsamMediaPoint.d.ts +0 -7
- package/dist/models/EsamMediaPoint.js +0 -2
- package/dist/models/EsamSignal.d.ts +0 -12
- package/dist/models/EsamSignal.js +0 -2
- package/dist/models/Filter.d.ts +1 -2
- package/dist/models/Filter.js +16 -16
- package/dist/models/Id3Tag.d.ts +1 -2
- package/dist/models/Id3Tag.js +3 -3
- package/dist/models/Input.d.ts +1 -2
- package/dist/models/Input.js +19 -19
- package/dist/models/InputStream.d.ts +1 -2
- package/dist/models/InputStream.js +13 -13
- package/dist/models/Muxing.d.ts +1 -2
- package/dist/models/Muxing.js +16 -16
- package/dist/models/Output.d.ts +1 -2
- package/dist/models/Output.js +13 -13
- package/dist/models/SidecarFile.d.ts +1 -2
- package/dist/models/SidecarFile.js +1 -1
- package/dist/models/StreamsResponse.d.ts +1 -1
- package/dist/models/StreamsResponse.js +2 -2
- package/dist/models/index.d.ts +11 -2
- package/dist/models/index.js +11 -2
- package/package.json +1 -1
- package/dist/models/EsamCondition.d.ts +0 -22
- package/dist/models/EsamCondition.js +0 -21
- package/dist/models/EsamDirection.d.ts +0 -11
- package/dist/models/EsamDirection.js +0 -15
|
@@ -1236,6 +1236,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
1236
1236
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1237
1237
|
var BaseAPI_1 = __webpack_require__(/*! ./common/BaseAPI */ "./common/BaseAPI.ts");
|
|
1238
1238
|
var AccountApi_1 = __webpack_require__(/*! ./account/AccountApi */ "./account/AccountApi.ts");
|
|
1239
|
+
var AgentsApi_1 = __webpack_require__(/*! ./agents/AgentsApi */ "./agents/AgentsApi.ts");
|
|
1239
1240
|
var AiSceneAnalysisApi_1 = __webpack_require__(/*! ./aiSceneAnalysis/AiSceneAnalysisApi */ "./aiSceneAnalysis/AiSceneAnalysisApi.ts");
|
|
1240
1241
|
var AnalyticsApi_1 = __webpack_require__(/*! ./analytics/AnalyticsApi */ "./analytics/AnalyticsApi.ts");
|
|
1241
1242
|
var EncodingApi_1 = __webpack_require__(/*! ./encoding/EncodingApi */ "./encoding/EncodingApi.ts");
|
|
@@ -1254,6 +1255,7 @@ var BitmovinApi = /** @class */ (function (_super) {
|
|
|
1254
1255
|
function BitmovinApi(configuration) {
|
|
1255
1256
|
var _this = _super.call(this, configuration) || this;
|
|
1256
1257
|
_this.account = new AccountApi_1.default(configuration);
|
|
1258
|
+
_this.agents = new AgentsApi_1.default(configuration);
|
|
1257
1259
|
_this.aiSceneAnalysis = new AiSceneAnalysisApi_1.default(configuration);
|
|
1258
1260
|
_this.analytics = new AnalyticsApi_1.default(configuration);
|
|
1259
1261
|
_this.encoding = new EncodingApi_1.default(configuration);
|
|
@@ -2391,6 +2393,197 @@ var TenantsApi = /** @class */ (function (_super) {
|
|
|
2391
2393
|
exports["default"] = TenantsApi;
|
|
2392
2394
|
|
|
2393
2395
|
|
|
2396
|
+
/***/ },
|
|
2397
|
+
|
|
2398
|
+
/***/ "./agents/AgentsApi.ts"
|
|
2399
|
+
/*!*****************************!*\
|
|
2400
|
+
!*** ./agents/AgentsApi.ts ***!
|
|
2401
|
+
\*****************************/
|
|
2402
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
2403
|
+
|
|
2404
|
+
"use strict";
|
|
2405
|
+
|
|
2406
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2407
|
+
var extendStatics = function (d, b) {
|
|
2408
|
+
extendStatics = Object.setPrototypeOf ||
|
|
2409
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
2410
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
2411
|
+
return extendStatics(d, b);
|
|
2412
|
+
};
|
|
2413
|
+
return function (d, b) {
|
|
2414
|
+
if (typeof b !== "function" && b !== null)
|
|
2415
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
2416
|
+
extendStatics(d, b);
|
|
2417
|
+
function __() { this.constructor = d; }
|
|
2418
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
2419
|
+
};
|
|
2420
|
+
})();
|
|
2421
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
2422
|
+
var BaseAPI_1 = __webpack_require__(/*! ../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
2423
|
+
var AisaApi_1 = __webpack_require__(/*! ./aisa/AisaApi */ "./agents/aisa/AisaApi.ts");
|
|
2424
|
+
/**
|
|
2425
|
+
* AgentsApi - object-oriented interface
|
|
2426
|
+
* @export
|
|
2427
|
+
* @class AgentsApi
|
|
2428
|
+
* @extends {BaseAPI}
|
|
2429
|
+
*/
|
|
2430
|
+
var AgentsApi = /** @class */ (function (_super) {
|
|
2431
|
+
__extends(AgentsApi, _super);
|
|
2432
|
+
function AgentsApi(configuration) {
|
|
2433
|
+
var _this = _super.call(this, configuration) || this;
|
|
2434
|
+
_this.aisa = new AisaApi_1.default(configuration);
|
|
2435
|
+
return _this;
|
|
2436
|
+
}
|
|
2437
|
+
return AgentsApi;
|
|
2438
|
+
}(BaseAPI_1.BaseAPI));
|
|
2439
|
+
exports["default"] = AgentsApi;
|
|
2440
|
+
|
|
2441
|
+
|
|
2442
|
+
/***/ },
|
|
2443
|
+
|
|
2444
|
+
/***/ "./agents/aisa/AisaApi.ts"
|
|
2445
|
+
/*!********************************!*\
|
|
2446
|
+
!*** ./agents/aisa/AisaApi.ts ***!
|
|
2447
|
+
\********************************/
|
|
2448
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
2449
|
+
|
|
2450
|
+
"use strict";
|
|
2451
|
+
|
|
2452
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2453
|
+
var extendStatics = function (d, b) {
|
|
2454
|
+
extendStatics = Object.setPrototypeOf ||
|
|
2455
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
2456
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
2457
|
+
return extendStatics(d, b);
|
|
2458
|
+
};
|
|
2459
|
+
return function (d, b) {
|
|
2460
|
+
if (typeof b !== "function" && b !== null)
|
|
2461
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
2462
|
+
extendStatics(d, b);
|
|
2463
|
+
function __() { this.constructor = d; }
|
|
2464
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
2465
|
+
};
|
|
2466
|
+
})();
|
|
2467
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
2468
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
2469
|
+
var SessionsApi_1 = __webpack_require__(/*! ./sessions/SessionsApi */ "./agents/aisa/sessions/SessionsApi.ts");
|
|
2470
|
+
/**
|
|
2471
|
+
* AisaApi - object-oriented interface
|
|
2472
|
+
* @export
|
|
2473
|
+
* @class AisaApi
|
|
2474
|
+
* @extends {BaseAPI}
|
|
2475
|
+
*/
|
|
2476
|
+
var AisaApi = /** @class */ (function (_super) {
|
|
2477
|
+
__extends(AisaApi, _super);
|
|
2478
|
+
function AisaApi(configuration) {
|
|
2479
|
+
var _this = _super.call(this, configuration) || this;
|
|
2480
|
+
_this.sessions = new SessionsApi_1.default(configuration);
|
|
2481
|
+
return _this;
|
|
2482
|
+
}
|
|
2483
|
+
return AisaApi;
|
|
2484
|
+
}(BaseAPI_1.BaseAPI));
|
|
2485
|
+
exports["default"] = AisaApi;
|
|
2486
|
+
|
|
2487
|
+
|
|
2488
|
+
/***/ },
|
|
2489
|
+
|
|
2490
|
+
/***/ "./agents/aisa/sessions/SessionsApi.ts"
|
|
2491
|
+
/*!*********************************************!*\
|
|
2492
|
+
!*** ./agents/aisa/sessions/SessionsApi.ts ***!
|
|
2493
|
+
\*********************************************/
|
|
2494
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
2495
|
+
|
|
2496
|
+
"use strict";
|
|
2497
|
+
|
|
2498
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2499
|
+
var extendStatics = function (d, b) {
|
|
2500
|
+
extendStatics = Object.setPrototypeOf ||
|
|
2501
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
2502
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
2503
|
+
return extendStatics(d, b);
|
|
2504
|
+
};
|
|
2505
|
+
return function (d, b) {
|
|
2506
|
+
if (typeof b !== "function" && b !== null)
|
|
2507
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
2508
|
+
extendStatics(d, b);
|
|
2509
|
+
function __() { this.constructor = d; }
|
|
2510
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
2511
|
+
};
|
|
2512
|
+
})();
|
|
2513
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
2514
|
+
var BaseAPI_1 = __webpack_require__(/*! ../../../common/BaseAPI */ "./common/BaseAPI.ts");
|
|
2515
|
+
var Mapper_1 = __webpack_require__(/*! ../../../common/Mapper */ "./common/Mapper.ts");
|
|
2516
|
+
var AgentSessionHistoryResponse_1 = __webpack_require__(/*! ../../../models/AgentSessionHistoryResponse */ "./models/AgentSessionHistoryResponse.ts");
|
|
2517
|
+
var AgentSessionListResponse_1 = __webpack_require__(/*! ../../../models/AgentSessionListResponse */ "./models/AgentSessionListResponse.ts");
|
|
2518
|
+
var AgentSessionResponse_1 = __webpack_require__(/*! ../../../models/AgentSessionResponse */ "./models/AgentSessionResponse.ts");
|
|
2519
|
+
/**
|
|
2520
|
+
* SessionsApi - object-oriented interface
|
|
2521
|
+
* @export
|
|
2522
|
+
* @class SessionsApi
|
|
2523
|
+
* @extends {BaseAPI}
|
|
2524
|
+
*/
|
|
2525
|
+
var SessionsApi = /** @class */ (function (_super) {
|
|
2526
|
+
__extends(SessionsApi, _super);
|
|
2527
|
+
function SessionsApi(configuration) {
|
|
2528
|
+
return _super.call(this, configuration) || this;
|
|
2529
|
+
}
|
|
2530
|
+
/**
|
|
2531
|
+
* @summary Create Agent Session
|
|
2532
|
+
* @param {string} xUserId User ID used to scope agent sessions
|
|
2533
|
+
* @throws {BitmovinError}
|
|
2534
|
+
* @memberof SessionsApi
|
|
2535
|
+
*/
|
|
2536
|
+
SessionsApi.prototype.create = function () {
|
|
2537
|
+
return this.restClient.post('/agents/aisa/sessions', {}).then(function (response) {
|
|
2538
|
+
return (0, Mapper_1.map)(response, AgentSessionResponse_1.default);
|
|
2539
|
+
});
|
|
2540
|
+
};
|
|
2541
|
+
/**
|
|
2542
|
+
* @summary Delete Agent Session
|
|
2543
|
+
* @param {string} sessionId Id of the session
|
|
2544
|
+
* @param {string} xUserId User ID used to scope agent sessions
|
|
2545
|
+
* @throws {BitmovinError}
|
|
2546
|
+
* @memberof SessionsApi
|
|
2547
|
+
*/
|
|
2548
|
+
SessionsApi.prototype.delete = function (sessionId) {
|
|
2549
|
+
var pathParamMap = {
|
|
2550
|
+
session_id: sessionId
|
|
2551
|
+
};
|
|
2552
|
+
return this.restClient.delete('/agents/aisa/sessions/{session_id}', pathParamMap).then(function (response) {
|
|
2553
|
+
return (0, Mapper_1.map)(response, AgentSessionResponse_1.default);
|
|
2554
|
+
});
|
|
2555
|
+
};
|
|
2556
|
+
/**
|
|
2557
|
+
* @summary Get Agent Session Details
|
|
2558
|
+
* @param {string} sessionId Id of the session
|
|
2559
|
+
* @param {string} xUserId User ID used to scope agent sessions
|
|
2560
|
+
* @throws {BitmovinError}
|
|
2561
|
+
* @memberof SessionsApi
|
|
2562
|
+
*/
|
|
2563
|
+
SessionsApi.prototype.get = function (sessionId) {
|
|
2564
|
+
var pathParamMap = {
|
|
2565
|
+
session_id: sessionId
|
|
2566
|
+
};
|
|
2567
|
+
return this.restClient.get('/agents/aisa/sessions/{session_id}', pathParamMap).then(function (response) {
|
|
2568
|
+
return (0, Mapper_1.map)(response, AgentSessionHistoryResponse_1.default);
|
|
2569
|
+
});
|
|
2570
|
+
};
|
|
2571
|
+
/**
|
|
2572
|
+
* @summary List Agent Sessions
|
|
2573
|
+
* @param {string} xUserId User ID used to scope agent sessions
|
|
2574
|
+
* @throws {BitmovinError}
|
|
2575
|
+
* @memberof SessionsApi
|
|
2576
|
+
*/
|
|
2577
|
+
SessionsApi.prototype.list = function () {
|
|
2578
|
+
return this.restClient.get('/agents/aisa/sessions', {}).then(function (response) {
|
|
2579
|
+
return (0, Mapper_1.map)(response, AgentSessionListResponse_1.default);
|
|
2580
|
+
});
|
|
2581
|
+
};
|
|
2582
|
+
return SessionsApi;
|
|
2583
|
+
}(BaseAPI_1.BaseAPI));
|
|
2584
|
+
exports["default"] = SessionsApi;
|
|
2585
|
+
|
|
2586
|
+
|
|
2394
2587
|
/***/ },
|
|
2395
2588
|
|
|
2396
2589
|
/***/ "./aiSceneAnalysis/AiSceneAnalysisApi.ts"
|
|
@@ -6464,7 +6657,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
6464
6657
|
var headers = {
|
|
6465
6658
|
'X-Api-Key': apiKey,
|
|
6466
6659
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
6467
|
-
'X-Api-Client-Version': '1.
|
|
6660
|
+
'X-Api-Client-Version': '1.258.0',
|
|
6468
6661
|
'Content-Type': 'application/json'
|
|
6469
6662
|
};
|
|
6470
6663
|
if (tenantOrgId) {
|
|
@@ -56540,9 +56733,9 @@ var AbstractCondition = /** @class */ (function () {
|
|
|
56540
56733
|
}
|
|
56541
56734
|
AbstractCondition._discriminatorName = 'type';
|
|
56542
56735
|
AbstractCondition._discriminatorMapping = {
|
|
56543
|
-
CONDITION: 'Condition',
|
|
56544
|
-
AND: 'AndConjunction',
|
|
56545
|
-
OR: 'OrConjunction'
|
|
56736
|
+
"CONDITION": 'Condition',
|
|
56737
|
+
"AND": 'AndConjunction',
|
|
56738
|
+
"OR": 'OrConjunction'
|
|
56546
56739
|
};
|
|
56547
56740
|
return AbstractCondition;
|
|
56548
56741
|
}());
|
|
@@ -56964,15 +57157,15 @@ var AdAnalyticsAbstractFilter = /** @class */ (function () {
|
|
|
56964
57157
|
}
|
|
56965
57158
|
AdAnalyticsAbstractFilter._discriminatorName = 'operator';
|
|
56966
57159
|
AdAnalyticsAbstractFilter._discriminatorMapping = {
|
|
56967
|
-
IN: 'AdAnalyticsInFilter',
|
|
56968
|
-
EQ: 'AdAnalyticsEqualFilter',
|
|
56969
|
-
NE: 'AdAnalyticsNotEqualFilter',
|
|
56970
|
-
LT: 'AdAnalyticsLessThanFilter',
|
|
56971
|
-
LTE: 'AdAnalyticsLessThanOrEqualFilter',
|
|
56972
|
-
GT: 'AdAnalyticsGreaterThanFilter',
|
|
56973
|
-
GTE: 'AdAnalyticsGreaterThanOrEqualFilter',
|
|
56974
|
-
CONTAINS: 'AdAnalyticsContainsFilter',
|
|
56975
|
-
NOTCONTAINS: 'AdAnalyticsNotContainsFilter'
|
|
57160
|
+
"IN": 'AdAnalyticsInFilter',
|
|
57161
|
+
"EQ": 'AdAnalyticsEqualFilter',
|
|
57162
|
+
"NE": 'AdAnalyticsNotEqualFilter',
|
|
57163
|
+
"LT": 'AdAnalyticsLessThanFilter',
|
|
57164
|
+
"LTE": 'AdAnalyticsLessThanOrEqualFilter',
|
|
57165
|
+
"GT": 'AdAnalyticsGreaterThanFilter',
|
|
57166
|
+
"GTE": 'AdAnalyticsGreaterThanOrEqualFilter',
|
|
57167
|
+
"CONTAINS": 'AdAnalyticsContainsFilter',
|
|
57168
|
+
"NOTCONTAINS": 'AdAnalyticsNotContainsFilter'
|
|
56976
57169
|
};
|
|
56977
57170
|
return AdAnalyticsAbstractFilter;
|
|
56978
57171
|
}());
|
|
@@ -57076,6 +57269,51 @@ var AdAnalyticsAttribute;
|
|
|
57076
57269
|
AdAnalyticsAttribute["CUSTOM_DATA_28"] = "CUSTOM_DATA_28";
|
|
57077
57270
|
AdAnalyticsAttribute["CUSTOM_DATA_29"] = "CUSTOM_DATA_29";
|
|
57078
57271
|
AdAnalyticsAttribute["CUSTOM_DATA_30"] = "CUSTOM_DATA_30";
|
|
57272
|
+
AdAnalyticsAttribute["CUSTOM_DATA_31"] = "CUSTOM_DATA_31";
|
|
57273
|
+
AdAnalyticsAttribute["CUSTOM_DATA_32"] = "CUSTOM_DATA_32";
|
|
57274
|
+
AdAnalyticsAttribute["CUSTOM_DATA_33"] = "CUSTOM_DATA_33";
|
|
57275
|
+
AdAnalyticsAttribute["CUSTOM_DATA_34"] = "CUSTOM_DATA_34";
|
|
57276
|
+
AdAnalyticsAttribute["CUSTOM_DATA_35"] = "CUSTOM_DATA_35";
|
|
57277
|
+
AdAnalyticsAttribute["CUSTOM_DATA_36"] = "CUSTOM_DATA_36";
|
|
57278
|
+
AdAnalyticsAttribute["CUSTOM_DATA_37"] = "CUSTOM_DATA_37";
|
|
57279
|
+
AdAnalyticsAttribute["CUSTOM_DATA_38"] = "CUSTOM_DATA_38";
|
|
57280
|
+
AdAnalyticsAttribute["CUSTOM_DATA_39"] = "CUSTOM_DATA_39";
|
|
57281
|
+
AdAnalyticsAttribute["CUSTOM_DATA_40"] = "CUSTOM_DATA_40";
|
|
57282
|
+
AdAnalyticsAttribute["CUSTOM_DATA_41"] = "CUSTOM_DATA_41";
|
|
57283
|
+
AdAnalyticsAttribute["CUSTOM_DATA_42"] = "CUSTOM_DATA_42";
|
|
57284
|
+
AdAnalyticsAttribute["CUSTOM_DATA_43"] = "CUSTOM_DATA_43";
|
|
57285
|
+
AdAnalyticsAttribute["CUSTOM_DATA_44"] = "CUSTOM_DATA_44";
|
|
57286
|
+
AdAnalyticsAttribute["CUSTOM_DATA_45"] = "CUSTOM_DATA_45";
|
|
57287
|
+
AdAnalyticsAttribute["CUSTOM_DATA_46"] = "CUSTOM_DATA_46";
|
|
57288
|
+
AdAnalyticsAttribute["CUSTOM_DATA_47"] = "CUSTOM_DATA_47";
|
|
57289
|
+
AdAnalyticsAttribute["CUSTOM_DATA_48"] = "CUSTOM_DATA_48";
|
|
57290
|
+
AdAnalyticsAttribute["CUSTOM_DATA_49"] = "CUSTOM_DATA_49";
|
|
57291
|
+
AdAnalyticsAttribute["CUSTOM_DATA_50"] = "CUSTOM_DATA_50";
|
|
57292
|
+
AdAnalyticsAttribute["CUSTOM_DATA_51"] = "CUSTOM_DATA_51";
|
|
57293
|
+
AdAnalyticsAttribute["CUSTOM_DATA_52"] = "CUSTOM_DATA_52";
|
|
57294
|
+
AdAnalyticsAttribute["CUSTOM_DATA_53"] = "CUSTOM_DATA_53";
|
|
57295
|
+
AdAnalyticsAttribute["CUSTOM_DATA_54"] = "CUSTOM_DATA_54";
|
|
57296
|
+
AdAnalyticsAttribute["CUSTOM_DATA_55"] = "CUSTOM_DATA_55";
|
|
57297
|
+
AdAnalyticsAttribute["CUSTOM_DATA_56"] = "CUSTOM_DATA_56";
|
|
57298
|
+
AdAnalyticsAttribute["CUSTOM_DATA_57"] = "CUSTOM_DATA_57";
|
|
57299
|
+
AdAnalyticsAttribute["CUSTOM_DATA_58"] = "CUSTOM_DATA_58";
|
|
57300
|
+
AdAnalyticsAttribute["CUSTOM_DATA_59"] = "CUSTOM_DATA_59";
|
|
57301
|
+
AdAnalyticsAttribute["CUSTOM_DATA_60"] = "CUSTOM_DATA_60";
|
|
57302
|
+
AdAnalyticsAttribute["CUSTOM_DATA_61"] = "CUSTOM_DATA_61";
|
|
57303
|
+
AdAnalyticsAttribute["CUSTOM_DATA_62"] = "CUSTOM_DATA_62";
|
|
57304
|
+
AdAnalyticsAttribute["CUSTOM_DATA_63"] = "CUSTOM_DATA_63";
|
|
57305
|
+
AdAnalyticsAttribute["CUSTOM_DATA_64"] = "CUSTOM_DATA_64";
|
|
57306
|
+
AdAnalyticsAttribute["CUSTOM_DATA_65"] = "CUSTOM_DATA_65";
|
|
57307
|
+
AdAnalyticsAttribute["CUSTOM_DATA_66"] = "CUSTOM_DATA_66";
|
|
57308
|
+
AdAnalyticsAttribute["CUSTOM_DATA_67"] = "CUSTOM_DATA_67";
|
|
57309
|
+
AdAnalyticsAttribute["CUSTOM_DATA_68"] = "CUSTOM_DATA_68";
|
|
57310
|
+
AdAnalyticsAttribute["CUSTOM_DATA_69"] = "CUSTOM_DATA_69";
|
|
57311
|
+
AdAnalyticsAttribute["CUSTOM_DATA_70"] = "CUSTOM_DATA_70";
|
|
57312
|
+
AdAnalyticsAttribute["CUSTOM_DATA_71"] = "CUSTOM_DATA_71";
|
|
57313
|
+
AdAnalyticsAttribute["CUSTOM_DATA_72"] = "CUSTOM_DATA_72";
|
|
57314
|
+
AdAnalyticsAttribute["CUSTOM_DATA_73"] = "CUSTOM_DATA_73";
|
|
57315
|
+
AdAnalyticsAttribute["CUSTOM_DATA_74"] = "CUSTOM_DATA_74";
|
|
57316
|
+
AdAnalyticsAttribute["CUSTOM_DATA_75"] = "CUSTOM_DATA_75";
|
|
57079
57317
|
AdAnalyticsAttribute["CUSTOM_USER_ID"] = "CUSTOM_USER_ID";
|
|
57080
57318
|
AdAnalyticsAttribute["DAY"] = "DAY";
|
|
57081
57319
|
AdAnalyticsAttribute["DEAL_ID"] = "DEAL_ID";
|
|
@@ -58273,6 +58511,7 @@ var AdPosition = /** @class */ (function () {
|
|
|
58273
58511
|
return;
|
|
58274
58512
|
}
|
|
58275
58513
|
this.position = (0, Mapper_1.map)(obj.position);
|
|
58514
|
+
this.duration = (0, Mapper_1.map)(obj.duration);
|
|
58276
58515
|
}
|
|
58277
58516
|
return AdPosition;
|
|
58278
58517
|
}());
|
|
@@ -58331,10 +58570,10 @@ var AdaptationSet = /** @class */ (function (_super) {
|
|
|
58331
58570
|
}
|
|
58332
58571
|
AdaptationSet._discriminatorName = 'type';
|
|
58333
58572
|
AdaptationSet._discriminatorMapping = {
|
|
58334
|
-
VIDEO: 'VideoAdaptationSet',
|
|
58335
|
-
AUDIO: 'AudioAdaptationSet',
|
|
58336
|
-
IMAGE: 'ImageAdaptationSet',
|
|
58337
|
-
SUBTITLE: 'SubtitleAdaptationSet'
|
|
58573
|
+
"VIDEO": 'VideoAdaptationSet',
|
|
58574
|
+
"AUDIO": 'AudioAdaptationSet',
|
|
58575
|
+
"IMAGE": 'ImageAdaptationSet',
|
|
58576
|
+
"SUBTITLE": 'SubtitleAdaptationSet'
|
|
58338
58577
|
};
|
|
58339
58578
|
return AdaptationSet;
|
|
58340
58579
|
}(BitmovinResponse_1.default));
|
|
@@ -58537,6 +58776,404 @@ var AesEncryptionMethod;
|
|
|
58537
58776
|
exports["default"] = AesEncryptionMethod;
|
|
58538
58777
|
|
|
58539
58778
|
|
|
58779
|
+
/***/ },
|
|
58780
|
+
|
|
58781
|
+
/***/ "./models/AgentChatAttachment.ts"
|
|
58782
|
+
/*!***************************************!*\
|
|
58783
|
+
!*** ./models/AgentChatAttachment.ts ***!
|
|
58784
|
+
\***************************************/
|
|
58785
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
58786
|
+
|
|
58787
|
+
"use strict";
|
|
58788
|
+
|
|
58789
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58790
|
+
exports.AgentChatAttachment = void 0;
|
|
58791
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
58792
|
+
/**
|
|
58793
|
+
* @export
|
|
58794
|
+
* @class AgentChatAttachment
|
|
58795
|
+
*/
|
|
58796
|
+
var AgentChatAttachment = /** @class */ (function () {
|
|
58797
|
+
function AgentChatAttachment(obj) {
|
|
58798
|
+
if (!obj) {
|
|
58799
|
+
return;
|
|
58800
|
+
}
|
|
58801
|
+
this.kind = (0, Mapper_1.map)(obj.kind);
|
|
58802
|
+
this.toolCallId = (0, Mapper_1.map)(obj.toolCallId);
|
|
58803
|
+
this.attributes = (0, Mapper_1.map)(obj.attributes);
|
|
58804
|
+
}
|
|
58805
|
+
return AgentChatAttachment;
|
|
58806
|
+
}());
|
|
58807
|
+
exports.AgentChatAttachment = AgentChatAttachment;
|
|
58808
|
+
exports["default"] = AgentChatAttachment;
|
|
58809
|
+
|
|
58810
|
+
|
|
58811
|
+
/***/ },
|
|
58812
|
+
|
|
58813
|
+
/***/ "./models/AgentChatAttachmentsData.ts"
|
|
58814
|
+
/*!********************************************!*\
|
|
58815
|
+
!*** ./models/AgentChatAttachmentsData.ts ***!
|
|
58816
|
+
\********************************************/
|
|
58817
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
58818
|
+
|
|
58819
|
+
"use strict";
|
|
58820
|
+
|
|
58821
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58822
|
+
exports.AgentChatAttachmentsData = void 0;
|
|
58823
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
58824
|
+
var AgentChatAttachment_1 = __webpack_require__(/*! ./AgentChatAttachment */ "./models/AgentChatAttachment.ts");
|
|
58825
|
+
/**
|
|
58826
|
+
* @export
|
|
58827
|
+
* @class AgentChatAttachmentsData
|
|
58828
|
+
*/
|
|
58829
|
+
var AgentChatAttachmentsData = /** @class */ (function () {
|
|
58830
|
+
function AgentChatAttachmentsData(obj) {
|
|
58831
|
+
if (!obj) {
|
|
58832
|
+
return;
|
|
58833
|
+
}
|
|
58834
|
+
this.attachments = (0, Mapper_1.mapArray)(obj.attachments, AgentChatAttachment_1.default);
|
|
58835
|
+
}
|
|
58836
|
+
return AgentChatAttachmentsData;
|
|
58837
|
+
}());
|
|
58838
|
+
exports.AgentChatAttachmentsData = AgentChatAttachmentsData;
|
|
58839
|
+
exports["default"] = AgentChatAttachmentsData;
|
|
58840
|
+
|
|
58841
|
+
|
|
58842
|
+
/***/ },
|
|
58843
|
+
|
|
58844
|
+
/***/ "./models/AgentChatAttachmentsPart.ts"
|
|
58845
|
+
/*!********************************************!*\
|
|
58846
|
+
!*** ./models/AgentChatAttachmentsPart.ts ***!
|
|
58847
|
+
\********************************************/
|
|
58848
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
58849
|
+
|
|
58850
|
+
"use strict";
|
|
58851
|
+
|
|
58852
|
+
var __extends = (this && this.__extends) || (function () {
|
|
58853
|
+
var extendStatics = function (d, b) {
|
|
58854
|
+
extendStatics = Object.setPrototypeOf ||
|
|
58855
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
58856
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
58857
|
+
return extendStatics(d, b);
|
|
58858
|
+
};
|
|
58859
|
+
return function (d, b) {
|
|
58860
|
+
if (typeof b !== "function" && b !== null)
|
|
58861
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
58862
|
+
extendStatics(d, b);
|
|
58863
|
+
function __() { this.constructor = d; }
|
|
58864
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
58865
|
+
};
|
|
58866
|
+
})();
|
|
58867
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58868
|
+
exports.AgentChatAttachmentsPart = void 0;
|
|
58869
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
58870
|
+
var AgentChatAttachmentsData_1 = __webpack_require__(/*! ./AgentChatAttachmentsData */ "./models/AgentChatAttachmentsData.ts");
|
|
58871
|
+
var AgentChatMessagePart_1 = __webpack_require__(/*! ./AgentChatMessagePart */ "./models/AgentChatMessagePart.ts");
|
|
58872
|
+
var AgentChatMessagePartType_1 = __webpack_require__(/*! ./AgentChatMessagePartType */ "./models/AgentChatMessagePartType.ts");
|
|
58873
|
+
/**
|
|
58874
|
+
* @export
|
|
58875
|
+
* @class AgentChatAttachmentsPart
|
|
58876
|
+
*/
|
|
58877
|
+
var AgentChatAttachmentsPart = /** @class */ (function (_super) {
|
|
58878
|
+
__extends(AgentChatAttachmentsPart, _super);
|
|
58879
|
+
function AgentChatAttachmentsPart(obj) {
|
|
58880
|
+
var _this = _super.call(this, obj) || this;
|
|
58881
|
+
/**
|
|
58882
|
+
* Discriminator property for AgentChatMessagePart
|
|
58883
|
+
* @type {string}
|
|
58884
|
+
* @memberof AgentChatAttachmentsPart
|
|
58885
|
+
*/
|
|
58886
|
+
_this.type = AgentChatMessagePartType_1.default.DATA_ATTACHMENTS;
|
|
58887
|
+
if (!obj) {
|
|
58888
|
+
return _this;
|
|
58889
|
+
}
|
|
58890
|
+
_this.data = (0, Mapper_1.map)(obj.data, AgentChatAttachmentsData_1.default);
|
|
58891
|
+
return _this;
|
|
58892
|
+
}
|
|
58893
|
+
return AgentChatAttachmentsPart;
|
|
58894
|
+
}(AgentChatMessagePart_1.default));
|
|
58895
|
+
exports.AgentChatAttachmentsPart = AgentChatAttachmentsPart;
|
|
58896
|
+
exports["default"] = AgentChatAttachmentsPart;
|
|
58897
|
+
|
|
58898
|
+
|
|
58899
|
+
/***/ },
|
|
58900
|
+
|
|
58901
|
+
/***/ "./models/AgentChatMessage.ts"
|
|
58902
|
+
/*!************************************!*\
|
|
58903
|
+
!*** ./models/AgentChatMessage.ts ***!
|
|
58904
|
+
\************************************/
|
|
58905
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
58906
|
+
|
|
58907
|
+
"use strict";
|
|
58908
|
+
|
|
58909
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58910
|
+
exports.AgentChatMessage = void 0;
|
|
58911
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
58912
|
+
var AgentChatMessagePart_1 = __webpack_require__(/*! ./AgentChatMessagePart */ "./models/AgentChatMessagePart.ts");
|
|
58913
|
+
/**
|
|
58914
|
+
* @export
|
|
58915
|
+
* @class AgentChatMessage
|
|
58916
|
+
*/
|
|
58917
|
+
var AgentChatMessage = /** @class */ (function () {
|
|
58918
|
+
function AgentChatMessage(obj) {
|
|
58919
|
+
if (!obj) {
|
|
58920
|
+
return;
|
|
58921
|
+
}
|
|
58922
|
+
this.id = (0, Mapper_1.map)(obj.id);
|
|
58923
|
+
this.role = (0, Mapper_1.map)(obj.role);
|
|
58924
|
+
this.parts = (0, Mapper_1.mapArray)(obj.parts, AgentChatMessagePart_1.default);
|
|
58925
|
+
}
|
|
58926
|
+
return AgentChatMessage;
|
|
58927
|
+
}());
|
|
58928
|
+
exports.AgentChatMessage = AgentChatMessage;
|
|
58929
|
+
exports["default"] = AgentChatMessage;
|
|
58930
|
+
|
|
58931
|
+
|
|
58932
|
+
/***/ },
|
|
58933
|
+
|
|
58934
|
+
/***/ "./models/AgentChatMessagePart.ts"
|
|
58935
|
+
/*!****************************************!*\
|
|
58936
|
+
!*** ./models/AgentChatMessagePart.ts ***!
|
|
58937
|
+
\****************************************/
|
|
58938
|
+
(__unused_webpack_module, exports) {
|
|
58939
|
+
|
|
58940
|
+
"use strict";
|
|
58941
|
+
|
|
58942
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58943
|
+
exports.AgentChatMessagePart = void 0;
|
|
58944
|
+
/**
|
|
58945
|
+
* @export
|
|
58946
|
+
* @class AgentChatMessagePart
|
|
58947
|
+
*/
|
|
58948
|
+
var AgentChatMessagePart = /** @class */ (function () {
|
|
58949
|
+
function AgentChatMessagePart(obj) {
|
|
58950
|
+
if (!obj) {
|
|
58951
|
+
return;
|
|
58952
|
+
}
|
|
58953
|
+
}
|
|
58954
|
+
AgentChatMessagePart._discriminatorName = 'type';
|
|
58955
|
+
AgentChatMessagePart._discriminatorMapping = {
|
|
58956
|
+
"text": 'AgentChatTextPart',
|
|
58957
|
+
"data-attachments": 'AgentChatAttachmentsPart'
|
|
58958
|
+
};
|
|
58959
|
+
return AgentChatMessagePart;
|
|
58960
|
+
}());
|
|
58961
|
+
exports.AgentChatMessagePart = AgentChatMessagePart;
|
|
58962
|
+
exports["default"] = AgentChatMessagePart;
|
|
58963
|
+
|
|
58964
|
+
|
|
58965
|
+
/***/ },
|
|
58966
|
+
|
|
58967
|
+
/***/ "./models/AgentChatMessagePartType.ts"
|
|
58968
|
+
/*!********************************************!*\
|
|
58969
|
+
!*** ./models/AgentChatMessagePartType.ts ***!
|
|
58970
|
+
\********************************************/
|
|
58971
|
+
(__unused_webpack_module, exports) {
|
|
58972
|
+
|
|
58973
|
+
"use strict";
|
|
58974
|
+
|
|
58975
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58976
|
+
exports.AgentChatMessagePartType = void 0;
|
|
58977
|
+
/**
|
|
58978
|
+
* @export
|
|
58979
|
+
* @enum {string}
|
|
58980
|
+
*/
|
|
58981
|
+
var AgentChatMessagePartType;
|
|
58982
|
+
(function (AgentChatMessagePartType) {
|
|
58983
|
+
AgentChatMessagePartType["TEXT"] = "text";
|
|
58984
|
+
AgentChatMessagePartType["DATA_ATTACHMENTS"] = "data-attachments";
|
|
58985
|
+
})(AgentChatMessagePartType || (exports.AgentChatMessagePartType = AgentChatMessagePartType = {}));
|
|
58986
|
+
exports["default"] = AgentChatMessagePartType;
|
|
58987
|
+
|
|
58988
|
+
|
|
58989
|
+
/***/ },
|
|
58990
|
+
|
|
58991
|
+
/***/ "./models/AgentChatTextPart.ts"
|
|
58992
|
+
/*!*************************************!*\
|
|
58993
|
+
!*** ./models/AgentChatTextPart.ts ***!
|
|
58994
|
+
\*************************************/
|
|
58995
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
58996
|
+
|
|
58997
|
+
"use strict";
|
|
58998
|
+
|
|
58999
|
+
var __extends = (this && this.__extends) || (function () {
|
|
59000
|
+
var extendStatics = function (d, b) {
|
|
59001
|
+
extendStatics = Object.setPrototypeOf ||
|
|
59002
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
59003
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
59004
|
+
return extendStatics(d, b);
|
|
59005
|
+
};
|
|
59006
|
+
return function (d, b) {
|
|
59007
|
+
if (typeof b !== "function" && b !== null)
|
|
59008
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
59009
|
+
extendStatics(d, b);
|
|
59010
|
+
function __() { this.constructor = d; }
|
|
59011
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
59012
|
+
};
|
|
59013
|
+
})();
|
|
59014
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
59015
|
+
exports.AgentChatTextPart = void 0;
|
|
59016
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
59017
|
+
var AgentChatMessagePart_1 = __webpack_require__(/*! ./AgentChatMessagePart */ "./models/AgentChatMessagePart.ts");
|
|
59018
|
+
var AgentChatMessagePartType_1 = __webpack_require__(/*! ./AgentChatMessagePartType */ "./models/AgentChatMessagePartType.ts");
|
|
59019
|
+
/**
|
|
59020
|
+
* @export
|
|
59021
|
+
* @class AgentChatTextPart
|
|
59022
|
+
*/
|
|
59023
|
+
var AgentChatTextPart = /** @class */ (function (_super) {
|
|
59024
|
+
__extends(AgentChatTextPart, _super);
|
|
59025
|
+
function AgentChatTextPart(obj) {
|
|
59026
|
+
var _this = _super.call(this, obj) || this;
|
|
59027
|
+
/**
|
|
59028
|
+
* Discriminator property for AgentChatMessagePart
|
|
59029
|
+
* @type {string}
|
|
59030
|
+
* @memberof AgentChatTextPart
|
|
59031
|
+
*/
|
|
59032
|
+
_this.type = AgentChatMessagePartType_1.default.TEXT;
|
|
59033
|
+
if (!obj) {
|
|
59034
|
+
return _this;
|
|
59035
|
+
}
|
|
59036
|
+
_this.text = (0, Mapper_1.map)(obj.text);
|
|
59037
|
+
return _this;
|
|
59038
|
+
}
|
|
59039
|
+
return AgentChatTextPart;
|
|
59040
|
+
}(AgentChatMessagePart_1.default));
|
|
59041
|
+
exports.AgentChatTextPart = AgentChatTextPart;
|
|
59042
|
+
exports["default"] = AgentChatTextPart;
|
|
59043
|
+
|
|
59044
|
+
|
|
59045
|
+
/***/ },
|
|
59046
|
+
|
|
59047
|
+
/***/ "./models/AgentSessionHistoryResponse.ts"
|
|
59048
|
+
/*!***********************************************!*\
|
|
59049
|
+
!*** ./models/AgentSessionHistoryResponse.ts ***!
|
|
59050
|
+
\***********************************************/
|
|
59051
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
59052
|
+
|
|
59053
|
+
"use strict";
|
|
59054
|
+
|
|
59055
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
59056
|
+
exports.AgentSessionHistoryResponse = void 0;
|
|
59057
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
59058
|
+
var AgentChatMessage_1 = __webpack_require__(/*! ./AgentChatMessage */ "./models/AgentChatMessage.ts");
|
|
59059
|
+
/**
|
|
59060
|
+
* @export
|
|
59061
|
+
* @class AgentSessionHistoryResponse
|
|
59062
|
+
*/
|
|
59063
|
+
var AgentSessionHistoryResponse = /** @class */ (function () {
|
|
59064
|
+
function AgentSessionHistoryResponse(obj) {
|
|
59065
|
+
if (!obj) {
|
|
59066
|
+
return;
|
|
59067
|
+
}
|
|
59068
|
+
this.sessionId = (0, Mapper_1.map)(obj.sessionId);
|
|
59069
|
+
this.appName = (0, Mapper_1.map)(obj.appName);
|
|
59070
|
+
this.userId = (0, Mapper_1.map)(obj.userId);
|
|
59071
|
+
this.title = (0, Mapper_1.map)(obj.title);
|
|
59072
|
+
this.messages = (0, Mapper_1.mapArray)(obj.messages, AgentChatMessage_1.default);
|
|
59073
|
+
}
|
|
59074
|
+
return AgentSessionHistoryResponse;
|
|
59075
|
+
}());
|
|
59076
|
+
exports.AgentSessionHistoryResponse = AgentSessionHistoryResponse;
|
|
59077
|
+
exports["default"] = AgentSessionHistoryResponse;
|
|
59078
|
+
|
|
59079
|
+
|
|
59080
|
+
/***/ },
|
|
59081
|
+
|
|
59082
|
+
/***/ "./models/AgentSessionListItem.ts"
|
|
59083
|
+
/*!****************************************!*\
|
|
59084
|
+
!*** ./models/AgentSessionListItem.ts ***!
|
|
59085
|
+
\****************************************/
|
|
59086
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
59087
|
+
|
|
59088
|
+
"use strict";
|
|
59089
|
+
|
|
59090
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
59091
|
+
exports.AgentSessionListItem = void 0;
|
|
59092
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
59093
|
+
/**
|
|
59094
|
+
* @export
|
|
59095
|
+
* @class AgentSessionListItem
|
|
59096
|
+
*/
|
|
59097
|
+
var AgentSessionListItem = /** @class */ (function () {
|
|
59098
|
+
function AgentSessionListItem(obj) {
|
|
59099
|
+
if (!obj) {
|
|
59100
|
+
return;
|
|
59101
|
+
}
|
|
59102
|
+
this.sessionId = (0, Mapper_1.map)(obj.sessionId);
|
|
59103
|
+
this.title = (0, Mapper_1.map)(obj.title);
|
|
59104
|
+
this.lastUpdateTimeSeconds = (0, Mapper_1.map)(obj.lastUpdateTimeSeconds);
|
|
59105
|
+
}
|
|
59106
|
+
return AgentSessionListItem;
|
|
59107
|
+
}());
|
|
59108
|
+
exports.AgentSessionListItem = AgentSessionListItem;
|
|
59109
|
+
exports["default"] = AgentSessionListItem;
|
|
59110
|
+
|
|
59111
|
+
|
|
59112
|
+
/***/ },
|
|
59113
|
+
|
|
59114
|
+
/***/ "./models/AgentSessionListResponse.ts"
|
|
59115
|
+
/*!********************************************!*\
|
|
59116
|
+
!*** ./models/AgentSessionListResponse.ts ***!
|
|
59117
|
+
\********************************************/
|
|
59118
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
59119
|
+
|
|
59120
|
+
"use strict";
|
|
59121
|
+
|
|
59122
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
59123
|
+
exports.AgentSessionListResponse = void 0;
|
|
59124
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
59125
|
+
var AgentSessionListItem_1 = __webpack_require__(/*! ./AgentSessionListItem */ "./models/AgentSessionListItem.ts");
|
|
59126
|
+
/**
|
|
59127
|
+
* @export
|
|
59128
|
+
* @class AgentSessionListResponse
|
|
59129
|
+
*/
|
|
59130
|
+
var AgentSessionListResponse = /** @class */ (function () {
|
|
59131
|
+
function AgentSessionListResponse(obj) {
|
|
59132
|
+
if (!obj) {
|
|
59133
|
+
return;
|
|
59134
|
+
}
|
|
59135
|
+
this.appName = (0, Mapper_1.map)(obj.appName);
|
|
59136
|
+
this.userId = (0, Mapper_1.map)(obj.userId);
|
|
59137
|
+
this.sessions = (0, Mapper_1.mapArray)(obj.sessions, AgentSessionListItem_1.default);
|
|
59138
|
+
}
|
|
59139
|
+
return AgentSessionListResponse;
|
|
59140
|
+
}());
|
|
59141
|
+
exports.AgentSessionListResponse = AgentSessionListResponse;
|
|
59142
|
+
exports["default"] = AgentSessionListResponse;
|
|
59143
|
+
|
|
59144
|
+
|
|
59145
|
+
/***/ },
|
|
59146
|
+
|
|
59147
|
+
/***/ "./models/AgentSessionResponse.ts"
|
|
59148
|
+
/*!****************************************!*\
|
|
59149
|
+
!*** ./models/AgentSessionResponse.ts ***!
|
|
59150
|
+
\****************************************/
|
|
59151
|
+
(__unused_webpack_module, exports, __webpack_require__) {
|
|
59152
|
+
|
|
59153
|
+
"use strict";
|
|
59154
|
+
|
|
59155
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
59156
|
+
exports.AgentSessionResponse = void 0;
|
|
59157
|
+
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
59158
|
+
/**
|
|
59159
|
+
* @export
|
|
59160
|
+
* @class AgentSessionResponse
|
|
59161
|
+
*/
|
|
59162
|
+
var AgentSessionResponse = /** @class */ (function () {
|
|
59163
|
+
function AgentSessionResponse(obj) {
|
|
59164
|
+
if (!obj) {
|
|
59165
|
+
return;
|
|
59166
|
+
}
|
|
59167
|
+
this.sessionId = (0, Mapper_1.map)(obj.sessionId);
|
|
59168
|
+
this.appName = (0, Mapper_1.map)(obj.appName);
|
|
59169
|
+
this.userId = (0, Mapper_1.map)(obj.userId);
|
|
59170
|
+
}
|
|
59171
|
+
return AgentSessionResponse;
|
|
59172
|
+
}());
|
|
59173
|
+
exports.AgentSessionResponse = AgentSessionResponse;
|
|
59174
|
+
exports["default"] = AgentSessionResponse;
|
|
59175
|
+
|
|
59176
|
+
|
|
58540
59177
|
/***/ },
|
|
58541
59178
|
|
|
58542
59179
|
/***/ "./models/AiSceneAnalysis.ts"
|
|
@@ -59080,15 +59717,15 @@ var AnalyticsAbstractFilter = /** @class */ (function () {
|
|
|
59080
59717
|
}
|
|
59081
59718
|
AnalyticsAbstractFilter._discriminatorName = 'operator';
|
|
59082
59719
|
AnalyticsAbstractFilter._discriminatorMapping = {
|
|
59083
|
-
IN: 'AnalyticsInFilter',
|
|
59084
|
-
EQ: 'AnalyticsEqualFilter',
|
|
59085
|
-
NE: 'AnalyticsNotEqualFilter',
|
|
59086
|
-
LT: 'AnalyticsLessThanFilter',
|
|
59087
|
-
LTE: 'AnalyticsLessThanOrEqualFilter',
|
|
59088
|
-
GT: 'AnalyticsGreaterThanFilter',
|
|
59089
|
-
GTE: 'AnalyticsGreaterThanOrEqualFilter',
|
|
59090
|
-
CONTAINS: 'AnalyticsContainsFilter',
|
|
59091
|
-
NOTCONTAINS: 'AnalyticsNotContainsFilter'
|
|
59720
|
+
"IN": 'AnalyticsInFilter',
|
|
59721
|
+
"EQ": 'AnalyticsEqualFilter',
|
|
59722
|
+
"NE": 'AnalyticsNotEqualFilter',
|
|
59723
|
+
"LT": 'AnalyticsLessThanFilter',
|
|
59724
|
+
"LTE": 'AnalyticsLessThanOrEqualFilter',
|
|
59725
|
+
"GT": 'AnalyticsGreaterThanFilter',
|
|
59726
|
+
"GTE": 'AnalyticsGreaterThanOrEqualFilter',
|
|
59727
|
+
"CONTAINS": 'AnalyticsContainsFilter',
|
|
59728
|
+
"NOTCONTAINS": 'AnalyticsNotContainsFilter'
|
|
59092
59729
|
};
|
|
59093
59730
|
return AnalyticsAbstractFilter;
|
|
59094
59731
|
}());
|
|
@@ -59180,6 +59817,31 @@ var AnalyticsAttribute;
|
|
|
59180
59817
|
AnalyticsAttribute["CUSTOM_DATA_48"] = "CUSTOM_DATA_48";
|
|
59181
59818
|
AnalyticsAttribute["CUSTOM_DATA_49"] = "CUSTOM_DATA_49";
|
|
59182
59819
|
AnalyticsAttribute["CUSTOM_DATA_50"] = "CUSTOM_DATA_50";
|
|
59820
|
+
AnalyticsAttribute["CUSTOM_DATA_51"] = "CUSTOM_DATA_51";
|
|
59821
|
+
AnalyticsAttribute["CUSTOM_DATA_52"] = "CUSTOM_DATA_52";
|
|
59822
|
+
AnalyticsAttribute["CUSTOM_DATA_53"] = "CUSTOM_DATA_53";
|
|
59823
|
+
AnalyticsAttribute["CUSTOM_DATA_54"] = "CUSTOM_DATA_54";
|
|
59824
|
+
AnalyticsAttribute["CUSTOM_DATA_55"] = "CUSTOM_DATA_55";
|
|
59825
|
+
AnalyticsAttribute["CUSTOM_DATA_56"] = "CUSTOM_DATA_56";
|
|
59826
|
+
AnalyticsAttribute["CUSTOM_DATA_57"] = "CUSTOM_DATA_57";
|
|
59827
|
+
AnalyticsAttribute["CUSTOM_DATA_58"] = "CUSTOM_DATA_58";
|
|
59828
|
+
AnalyticsAttribute["CUSTOM_DATA_59"] = "CUSTOM_DATA_59";
|
|
59829
|
+
AnalyticsAttribute["CUSTOM_DATA_60"] = "CUSTOM_DATA_60";
|
|
59830
|
+
AnalyticsAttribute["CUSTOM_DATA_61"] = "CUSTOM_DATA_61";
|
|
59831
|
+
AnalyticsAttribute["CUSTOM_DATA_62"] = "CUSTOM_DATA_62";
|
|
59832
|
+
AnalyticsAttribute["CUSTOM_DATA_63"] = "CUSTOM_DATA_63";
|
|
59833
|
+
AnalyticsAttribute["CUSTOM_DATA_64"] = "CUSTOM_DATA_64";
|
|
59834
|
+
AnalyticsAttribute["CUSTOM_DATA_65"] = "CUSTOM_DATA_65";
|
|
59835
|
+
AnalyticsAttribute["CUSTOM_DATA_66"] = "CUSTOM_DATA_66";
|
|
59836
|
+
AnalyticsAttribute["CUSTOM_DATA_67"] = "CUSTOM_DATA_67";
|
|
59837
|
+
AnalyticsAttribute["CUSTOM_DATA_68"] = "CUSTOM_DATA_68";
|
|
59838
|
+
AnalyticsAttribute["CUSTOM_DATA_69"] = "CUSTOM_DATA_69";
|
|
59839
|
+
AnalyticsAttribute["CUSTOM_DATA_70"] = "CUSTOM_DATA_70";
|
|
59840
|
+
AnalyticsAttribute["CUSTOM_DATA_71"] = "CUSTOM_DATA_71";
|
|
59841
|
+
AnalyticsAttribute["CUSTOM_DATA_72"] = "CUSTOM_DATA_72";
|
|
59842
|
+
AnalyticsAttribute["CUSTOM_DATA_73"] = "CUSTOM_DATA_73";
|
|
59843
|
+
AnalyticsAttribute["CUSTOM_DATA_74"] = "CUSTOM_DATA_74";
|
|
59844
|
+
AnalyticsAttribute["CUSTOM_DATA_75"] = "CUSTOM_DATA_75";
|
|
59183
59845
|
AnalyticsAttribute["CUSTOM_USER_ID"] = "CUSTOM_USER_ID";
|
|
59184
59846
|
AnalyticsAttribute["DAY"] = "DAY";
|
|
59185
59847
|
AnalyticsAttribute["DEVICE_CLASS"] = "DEVICE_CLASS";
|
|
@@ -59203,6 +59865,7 @@ var AnalyticsAttribute;
|
|
|
59203
59865
|
AnalyticsAttribute["IS_LIVE"] = "IS_LIVE";
|
|
59204
59866
|
AnalyticsAttribute["IS_LOW_LATENCY"] = "IS_LOW_LATENCY";
|
|
59205
59867
|
AnalyticsAttribute["IS_MUTED"] = "IS_MUTED";
|
|
59868
|
+
AnalyticsAttribute["IS_PROGRAM_CHANGE"] = "IS_PROGRAM_CHANGE";
|
|
59206
59869
|
AnalyticsAttribute["ISP"] = "ISP";
|
|
59207
59870
|
AnalyticsAttribute["LANGUAGE"] = "LANGUAGE";
|
|
59208
59871
|
AnalyticsAttribute["LATENCY"] = "LATENCY";
|
|
@@ -61256,9 +61919,9 @@ var AnalyticsOutput = /** @class */ (function (_super) {
|
|
|
61256
61919
|
}
|
|
61257
61920
|
AnalyticsOutput._discriminatorName = 'type';
|
|
61258
61921
|
AnalyticsOutput._discriminatorMapping = {
|
|
61259
|
-
S3_ROLE_BASED: 'AnalyticsS3RoleBasedOutput',
|
|
61260
|
-
GCS_SERVICE_ACCOUNT: 'AnalyticsGcsServiceAccountOutput',
|
|
61261
|
-
AZURE: 'AnalyticsAzureOutput'
|
|
61922
|
+
"S3_ROLE_BASED": 'AnalyticsS3RoleBasedOutput',
|
|
61923
|
+
"GCS_SERVICE_ACCOUNT": 'AnalyticsGcsServiceAccountOutput',
|
|
61924
|
+
"AZURE": 'AnalyticsAzureOutput'
|
|
61262
61925
|
};
|
|
61263
61926
|
return AnalyticsOutput;
|
|
61264
61927
|
}(BitmovinResource_1.default));
|
|
@@ -66314,33 +66977,33 @@ var CodecConfiguration = /** @class */ (function (_super) {
|
|
|
66314
66977
|
}
|
|
66315
66978
|
CodecConfiguration._discriminatorName = 'type';
|
|
66316
66979
|
CodecConfiguration._discriminatorMapping = {
|
|
66317
|
-
AAC: 'AacAudioConfiguration',
|
|
66318
|
-
AUDIO_PASSTHROUGH: 'PassthroughAudioConfiguration',
|
|
66319
|
-
DTS_PASSTHROUGH: 'DtsPassthroughAudioConfiguration',
|
|
66320
|
-
DTS: 'DtsAudioConfiguration',
|
|
66321
|
-
DTSX: 'DtsXAudioConfiguration',
|
|
66322
|
-
DVB_SUBTITLE: 'DvbSubtitleConfiguration',
|
|
66323
|
-
HE_AAC_V1: 'HeAacV1AudioConfiguration',
|
|
66324
|
-
HE_AAC_V2: 'HeAacV2AudioConfiguration',
|
|
66325
|
-
H264: 'H264VideoConfiguration',
|
|
66326
|
-
H265: 'H265VideoConfiguration',
|
|
66327
|
-
VP9: 'Vp9VideoConfiguration',
|
|
66328
|
-
VP8: 'Vp8VideoConfiguration',
|
|
66329
|
-
MP2: 'Mp2AudioConfiguration',
|
|
66330
|
-
MP3: 'Mp3AudioConfiguration',
|
|
66331
|
-
AC3: 'Ac3AudioConfiguration',
|
|
66332
|
-
DD: 'DolbyDigitalAudioConfiguration',
|
|
66333
|
-
EAC3: 'Eac3AudioConfiguration',
|
|
66334
|
-
DDPLUS: 'DolbyDigitalPlusAudioConfiguration',
|
|
66335
|
-
OPUS: 'OpusAudioConfiguration',
|
|
66336
|
-
VORBIS: 'VorbisAudioConfiguration',
|
|
66337
|
-
MJPEG: 'MjpegVideoConfiguration',
|
|
66338
|
-
AV1: 'Av1VideoConfiguration',
|
|
66339
|
-
DOLBY_ATMOS: 'DolbyAtmosAudioConfiguration',
|
|
66340
|
-
H262: 'H262VideoConfiguration',
|
|
66341
|
-
PCM: 'PcmAudioConfiguration',
|
|
66342
|
-
WEBVTT: 'WebVttConfiguration',
|
|
66343
|
-
IMSC: 'ImscConfiguration'
|
|
66980
|
+
"AAC": 'AacAudioConfiguration',
|
|
66981
|
+
"AUDIO_PASSTHROUGH": 'PassthroughAudioConfiguration',
|
|
66982
|
+
"DTS_PASSTHROUGH": 'DtsPassthroughAudioConfiguration',
|
|
66983
|
+
"DTS": 'DtsAudioConfiguration',
|
|
66984
|
+
"DTSX": 'DtsXAudioConfiguration',
|
|
66985
|
+
"DVB_SUBTITLE": 'DvbSubtitleConfiguration',
|
|
66986
|
+
"HE_AAC_V1": 'HeAacV1AudioConfiguration',
|
|
66987
|
+
"HE_AAC_V2": 'HeAacV2AudioConfiguration',
|
|
66988
|
+
"H264": 'H264VideoConfiguration',
|
|
66989
|
+
"H265": 'H265VideoConfiguration',
|
|
66990
|
+
"VP9": 'Vp9VideoConfiguration',
|
|
66991
|
+
"VP8": 'Vp8VideoConfiguration',
|
|
66992
|
+
"MP2": 'Mp2AudioConfiguration',
|
|
66993
|
+
"MP3": 'Mp3AudioConfiguration',
|
|
66994
|
+
"AC3": 'Ac3AudioConfiguration',
|
|
66995
|
+
"DD": 'DolbyDigitalAudioConfiguration',
|
|
66996
|
+
"EAC3": 'Eac3AudioConfiguration',
|
|
66997
|
+
"DDPLUS": 'DolbyDigitalPlusAudioConfiguration',
|
|
66998
|
+
"OPUS": 'OpusAudioConfiguration',
|
|
66999
|
+
"VORBIS": 'VorbisAudioConfiguration',
|
|
67000
|
+
"MJPEG": 'MjpegVideoConfiguration',
|
|
67001
|
+
"AV1": 'Av1VideoConfiguration',
|
|
67002
|
+
"DOLBY_ATMOS": 'DolbyAtmosAudioConfiguration',
|
|
67003
|
+
"H262": 'H262VideoConfiguration',
|
|
67004
|
+
"PCM": 'PcmAudioConfiguration',
|
|
67005
|
+
"WEBVTT": 'WebVttConfiguration',
|
|
67006
|
+
"IMSC": 'ImscConfiguration'
|
|
66344
67007
|
};
|
|
66345
67008
|
return CodecConfiguration;
|
|
66346
67009
|
}(BitmovinResource_1.default));
|
|
@@ -68293,18 +68956,18 @@ var DashRepresentation = /** @class */ (function (_super) {
|
|
|
68293
68956
|
}
|
|
68294
68957
|
DashRepresentation._discriminatorName = 'typeDiscriminator';
|
|
68295
68958
|
DashRepresentation._discriminatorMapping = {
|
|
68296
|
-
DRM_FMP4: 'DashFmp4DrmRepresentation',
|
|
68297
|
-
FMP4: 'DashFmp4Representation',
|
|
68298
|
-
WEBM: 'DashWebmRepresentation',
|
|
68299
|
-
CMAF: 'DashCmafRepresentation',
|
|
68300
|
-
CHUNKED_TEXT: 'DashChunkedTextRepresentation',
|
|
68301
|
-
MP4: 'DashMp4Representation',
|
|
68302
|
-
DRM_MP4: 'DashMp4DrmRepresentation',
|
|
68303
|
-
PROGRESSIVE_WEBM: 'DashProgressiveWebmRepresentation',
|
|
68304
|
-
VTT: 'DashVttRepresentation',
|
|
68305
|
-
SPRITE: 'SpriteRepresentation',
|
|
68306
|
-
IMSC: 'DashImscRepresentation',
|
|
68307
|
-
CONTENT_PROTECTION: 'ContentProtection'
|
|
68959
|
+
"DRM_FMP4": 'DashFmp4DrmRepresentation',
|
|
68960
|
+
"FMP4": 'DashFmp4Representation',
|
|
68961
|
+
"WEBM": 'DashWebmRepresentation',
|
|
68962
|
+
"CMAF": 'DashCmafRepresentation',
|
|
68963
|
+
"CHUNKED_TEXT": 'DashChunkedTextRepresentation',
|
|
68964
|
+
"MP4": 'DashMp4Representation',
|
|
68965
|
+
"DRM_MP4": 'DashMp4DrmRepresentation',
|
|
68966
|
+
"PROGRESSIVE_WEBM": 'DashProgressiveWebmRepresentation',
|
|
68967
|
+
"VTT": 'DashVttRepresentation',
|
|
68968
|
+
"SPRITE": 'SpriteRepresentation',
|
|
68969
|
+
"IMSC": 'DashImscRepresentation',
|
|
68970
|
+
"CONTENT_PROTECTION": 'ContentProtection'
|
|
68308
68971
|
};
|
|
68309
68972
|
return DashRepresentation;
|
|
68310
68973
|
}(BitmovinResponse_1.default));
|
|
@@ -68834,9 +69497,9 @@ var DefaultManifestCondition = /** @class */ (function () {
|
|
|
68834
69497
|
}
|
|
68835
69498
|
DefaultManifestCondition._discriminatorName = 'type';
|
|
68836
69499
|
DefaultManifestCondition._discriminatorMapping = {
|
|
68837
|
-
CONDITION: 'DefaultManifestAttributeCondition',
|
|
68838
|
-
AND: 'DefaultManifestAndCondition',
|
|
68839
|
-
OR: 'DefaultManifestOrCondition'
|
|
69500
|
+
"CONDITION": 'DefaultManifestAttributeCondition',
|
|
69501
|
+
"AND": 'DefaultManifestAndCondition',
|
|
69502
|
+
"OR": 'DefaultManifestOrCondition'
|
|
68840
69503
|
};
|
|
68841
69504
|
return DefaultManifestCondition;
|
|
68842
69505
|
}());
|
|
@@ -69490,6 +70153,7 @@ var DolbyAtmosInputFormat;
|
|
|
69490
70153
|
(function (DolbyAtmosInputFormat) {
|
|
69491
70154
|
DolbyAtmosInputFormat["DAMF"] = "DAMF";
|
|
69492
70155
|
DolbyAtmosInputFormat["ADM"] = "ADM";
|
|
70156
|
+
DolbyAtmosInputFormat["MXF"] = "MXF";
|
|
69493
70157
|
})(DolbyAtmosInputFormat || (exports.DolbyAtmosInputFormat = DolbyAtmosInputFormat = {}));
|
|
69494
70158
|
exports["default"] = DolbyAtmosInputFormat;
|
|
69495
70159
|
|
|
@@ -71161,15 +71825,15 @@ var Drm = /** @class */ (function (_super) {
|
|
|
71161
71825
|
}
|
|
71162
71826
|
Drm._discriminatorName = 'type';
|
|
71163
71827
|
Drm._discriminatorMapping = {
|
|
71164
|
-
WIDEVINE: 'WidevineDrm',
|
|
71165
|
-
PLAYREADY: 'PlayReadyDrm',
|
|
71166
|
-
PRIMETIME: 'PrimeTimeDrm',
|
|
71167
|
-
FAIRPLAY: 'FairPlayDrm',
|
|
71168
|
-
MARLIN: 'MarlinDrm',
|
|
71169
|
-
CLEARKEY: 'ClearKeyDrm',
|
|
71170
|
-
AES: 'AesEncryptionDrm',
|
|
71171
|
-
CENC: 'CencDrm',
|
|
71172
|
-
SPEKE: 'SpekeDrm'
|
|
71828
|
+
"WIDEVINE": 'WidevineDrm',
|
|
71829
|
+
"PLAYREADY": 'PlayReadyDrm',
|
|
71830
|
+
"PRIMETIME": 'PrimeTimeDrm',
|
|
71831
|
+
"FAIRPLAY": 'FairPlayDrm',
|
|
71832
|
+
"MARLIN": 'MarlinDrm',
|
|
71833
|
+
"CLEARKEY": 'ClearKeyDrm',
|
|
71834
|
+
"AES": 'AesEncryptionDrm',
|
|
71835
|
+
"CENC": 'CencDrm',
|
|
71836
|
+
"SPEKE": 'SpekeDrm'
|
|
71173
71837
|
};
|
|
71174
71838
|
return Drm;
|
|
71175
71839
|
}(BitmovinResource_1.default));
|
|
@@ -72998,64 +73662,6 @@ var ErrorRetryHint;
|
|
|
72998
73662
|
exports["default"] = ErrorRetryHint;
|
|
72999
73663
|
|
|
73000
73664
|
|
|
73001
|
-
/***/ },
|
|
73002
|
-
|
|
73003
|
-
/***/ "./models/EsamCondition.ts"
|
|
73004
|
-
/*!*********************************!*\
|
|
73005
|
-
!*** ./models/EsamCondition.ts ***!
|
|
73006
|
-
\*********************************/
|
|
73007
|
-
(__unused_webpack_module, exports, __webpack_require__) {
|
|
73008
|
-
|
|
73009
|
-
"use strict";
|
|
73010
|
-
|
|
73011
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
73012
|
-
exports.EsamCondition = void 0;
|
|
73013
|
-
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
73014
|
-
/**
|
|
73015
|
-
* ESAM condition following the SCTE-250 standard with timing offset and directional marker (OUT/IN) for signaling content boundaries
|
|
73016
|
-
* @export
|
|
73017
|
-
* @class EsamCondition
|
|
73018
|
-
*/
|
|
73019
|
-
var EsamCondition = /** @class */ (function () {
|
|
73020
|
-
function EsamCondition(obj) {
|
|
73021
|
-
if (!obj) {
|
|
73022
|
-
return;
|
|
73023
|
-
}
|
|
73024
|
-
this.offset = (0, Mapper_1.map)(obj.offset);
|
|
73025
|
-
this.direction = (0, Mapper_1.map)(obj.direction);
|
|
73026
|
-
}
|
|
73027
|
-
return EsamCondition;
|
|
73028
|
-
}());
|
|
73029
|
-
exports.EsamCondition = EsamCondition;
|
|
73030
|
-
exports["default"] = EsamCondition;
|
|
73031
|
-
|
|
73032
|
-
|
|
73033
|
-
/***/ },
|
|
73034
|
-
|
|
73035
|
-
/***/ "./models/EsamDirection.ts"
|
|
73036
|
-
/*!*********************************!*\
|
|
73037
|
-
!*** ./models/EsamDirection.ts ***!
|
|
73038
|
-
\*********************************/
|
|
73039
|
-
(__unused_webpack_module, exports) {
|
|
73040
|
-
|
|
73041
|
-
"use strict";
|
|
73042
|
-
|
|
73043
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
73044
|
-
exports.EsamDirection = void 0;
|
|
73045
|
-
/**
|
|
73046
|
-
* ESAM direction indicator following the SCTE-250 standard
|
|
73047
|
-
* @export
|
|
73048
|
-
* @enum {string}
|
|
73049
|
-
*/
|
|
73050
|
-
var EsamDirection;
|
|
73051
|
-
(function (EsamDirection) {
|
|
73052
|
-
EsamDirection["OUT"] = "OUT";
|
|
73053
|
-
EsamDirection["IN"] = "IN";
|
|
73054
|
-
EsamDirection["BOTH"] = "BOTH";
|
|
73055
|
-
})(EsamDirection || (exports.EsamDirection = EsamDirection = {}));
|
|
73056
|
-
exports["default"] = EsamDirection;
|
|
73057
|
-
|
|
73058
|
-
|
|
73059
73665
|
/***/ },
|
|
73060
73666
|
|
|
73061
73667
|
/***/ "./models/EsamMediaPoint.ts"
|
|
@@ -73069,7 +73675,6 @@ exports["default"] = EsamDirection;
|
|
|
73069
73675
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
73070
73676
|
exports.EsamMediaPoint = void 0;
|
|
73071
73677
|
var Mapper_1 = __webpack_require__(/*! ../common/Mapper */ "./common/Mapper.ts");
|
|
73072
|
-
var EsamCondition_1 = __webpack_require__(/*! ./EsamCondition */ "./models/EsamCondition.ts");
|
|
73073
73678
|
var EsamSignal_1 = __webpack_require__(/*! ./EsamSignal */ "./models/EsamSignal.ts");
|
|
73074
73679
|
/**
|
|
73075
73680
|
* ESAM media point following the SCTE-250 standard
|
|
@@ -73083,7 +73688,6 @@ var EsamMediaPoint = /** @class */ (function () {
|
|
|
73083
73688
|
}
|
|
73084
73689
|
this.matchTime = (0, Mapper_1.map)(obj.matchTime, Date);
|
|
73085
73690
|
this.signals = (0, Mapper_1.mapArray)(obj.signals, EsamSignal_1.default);
|
|
73086
|
-
this.conditions = (0, Mapper_1.mapArray)(obj.conditions, EsamCondition_1.default);
|
|
73087
73691
|
}
|
|
73088
73692
|
return EsamMediaPoint;
|
|
73089
73693
|
}());
|
|
@@ -73151,8 +73755,6 @@ var EsamSignal = /** @class */ (function () {
|
|
|
73151
73755
|
}
|
|
73152
73756
|
this.offset = (0, Mapper_1.map)(obj.offset);
|
|
73153
73757
|
this.binary = (0, Mapper_1.map)(obj.binary);
|
|
73154
|
-
this.interval = (0, Mapper_1.map)(obj.interval);
|
|
73155
|
-
this.end = (0, Mapper_1.map)(obj.end);
|
|
73156
73758
|
}
|
|
73157
73759
|
return EsamSignal;
|
|
73158
73760
|
}());
|
|
@@ -73369,22 +73971,22 @@ var Filter = /** @class */ (function (_super) {
|
|
|
73369
73971
|
}
|
|
73370
73972
|
Filter._discriminatorName = 'type';
|
|
73371
73973
|
Filter._discriminatorMapping = {
|
|
73372
|
-
CROP: 'CropFilter',
|
|
73373
|
-
CONFORM: 'ConformFilter',
|
|
73374
|
-
WATERMARK: 'WatermarkFilter',
|
|
73375
|
-
ENHANCED_WATERMARK: 'EnhancedWatermarkFilter',
|
|
73376
|
-
ROTATE: 'RotateFilter',
|
|
73377
|
-
DEINTERLACE: 'DeinterlaceFilter',
|
|
73378
|
-
ENHANCED_DEINTERLACE: 'EnhancedDeinterlaceFilter',
|
|
73379
|
-
AUDIO_MIX: 'AudioMixFilter',
|
|
73380
|
-
DENOISE_HQDN3D: 'DenoiseHqdn3dFilter',
|
|
73381
|
-
TEXT: 'TextFilter',
|
|
73382
|
-
UNSHARP: 'UnsharpFilter',
|
|
73383
|
-
SCALE: 'ScaleFilter',
|
|
73384
|
-
INTERLACE: 'InterlaceFilter',
|
|
73385
|
-
AUDIO_VOLUME: 'AudioVolumeFilter',
|
|
73386
|
-
EBU_R128_SINGLE_PASS: 'EbuR128SinglePassFilter',
|
|
73387
|
-
AZURE_SPEECH_TO_CAPTIONS: 'AzureSpeechToCaptionsFilter'
|
|
73974
|
+
"CROP": 'CropFilter',
|
|
73975
|
+
"CONFORM": 'ConformFilter',
|
|
73976
|
+
"WATERMARK": 'WatermarkFilter',
|
|
73977
|
+
"ENHANCED_WATERMARK": 'EnhancedWatermarkFilter',
|
|
73978
|
+
"ROTATE": 'RotateFilter',
|
|
73979
|
+
"DEINTERLACE": 'DeinterlaceFilter',
|
|
73980
|
+
"ENHANCED_DEINTERLACE": 'EnhancedDeinterlaceFilter',
|
|
73981
|
+
"AUDIO_MIX": 'AudioMixFilter',
|
|
73982
|
+
"DENOISE_HQDN3D": 'DenoiseHqdn3dFilter',
|
|
73983
|
+
"TEXT": 'TextFilter',
|
|
73984
|
+
"UNSHARP": 'UnsharpFilter',
|
|
73985
|
+
"SCALE": 'ScaleFilter',
|
|
73986
|
+
"INTERLACE": 'InterlaceFilter',
|
|
73987
|
+
"AUDIO_VOLUME": 'AudioVolumeFilter',
|
|
73988
|
+
"EBU_R128_SINGLE_PASS": 'EbuR128SinglePassFilter',
|
|
73989
|
+
"AZURE_SPEECH_TO_CAPTIONS": 'AzureSpeechToCaptionsFilter'
|
|
73388
73990
|
};
|
|
73389
73991
|
return Filter;
|
|
73390
73992
|
}(BitmovinResource_1.default));
|
|
@@ -75852,9 +76454,9 @@ var Id3Tag = /** @class */ (function (_super) {
|
|
|
75852
76454
|
}
|
|
75853
76455
|
Id3Tag._discriminatorName = 'type';
|
|
75854
76456
|
Id3Tag._discriminatorMapping = {
|
|
75855
|
-
RAW: 'RawId3Tag',
|
|
75856
|
-
FRAME_ID: 'FrameIdId3Tag',
|
|
75857
|
-
PLAIN_TEXT: 'PlaintextId3Tag'
|
|
76457
|
+
"RAW": 'RawId3Tag',
|
|
76458
|
+
"FRAME_ID": 'FrameIdId3Tag',
|
|
76459
|
+
"PLAIN_TEXT": 'PlaintextId3Tag'
|
|
75858
76460
|
};
|
|
75859
76461
|
return Id3Tag;
|
|
75860
76462
|
}(BitmovinResource_1.default));
|
|
@@ -76264,25 +76866,25 @@ var Input = /** @class */ (function (_super) {
|
|
|
76264
76866
|
}
|
|
76265
76867
|
Input._discriminatorName = 'type';
|
|
76266
76868
|
Input._discriminatorMapping = {
|
|
76267
|
-
AKAMAI_NETSTORAGE: 'AkamaiNetStorageInput',
|
|
76268
|
-
ASPERA: 'AsperaInput',
|
|
76269
|
-
AZURE: 'AzureInput',
|
|
76270
|
-
REDUNDANT_RTMP: 'RedundantRtmpInput',
|
|
76271
|
-
FTP: 'FtpInput',
|
|
76272
|
-
GENERIC_S3: 'GenericS3Input',
|
|
76273
|
-
GCS: 'GcsInput',
|
|
76274
|
-
HTTP: 'HttpInput',
|
|
76275
|
-
HTTPS: 'HttpsInput',
|
|
76276
|
-
HLS: 'HlsInput',
|
|
76277
|
-
LOCAL: 'LocalInput',
|
|
76278
|
-
RTMP: 'RtmpInput',
|
|
76279
|
-
S3: 'S3Input',
|
|
76280
|
-
S3_ROLE_BASED: 'S3RoleBasedInput',
|
|
76281
|
-
SFTP: 'SftpInput',
|
|
76282
|
-
ZIXI: 'ZixiInput',
|
|
76283
|
-
SRT: 'SrtInput',
|
|
76284
|
-
GCS_SERVICE_ACCOUNT: 'GcsServiceAccountInput',
|
|
76285
|
-
DIRECT_FILE_UPLOAD: 'DirectFileUploadInput'
|
|
76869
|
+
"AKAMAI_NETSTORAGE": 'AkamaiNetStorageInput',
|
|
76870
|
+
"ASPERA": 'AsperaInput',
|
|
76871
|
+
"AZURE": 'AzureInput',
|
|
76872
|
+
"REDUNDANT_RTMP": 'RedundantRtmpInput',
|
|
76873
|
+
"FTP": 'FtpInput',
|
|
76874
|
+
"GENERIC_S3": 'GenericS3Input',
|
|
76875
|
+
"GCS": 'GcsInput',
|
|
76876
|
+
"HTTP": 'HttpInput',
|
|
76877
|
+
"HTTPS": 'HttpsInput',
|
|
76878
|
+
"HLS": 'HlsInput',
|
|
76879
|
+
"LOCAL": 'LocalInput',
|
|
76880
|
+
"RTMP": 'RtmpInput',
|
|
76881
|
+
"S3": 'S3Input',
|
|
76882
|
+
"S3_ROLE_BASED": 'S3RoleBasedInput',
|
|
76883
|
+
"SFTP": 'SftpInput',
|
|
76884
|
+
"ZIXI": 'ZixiInput',
|
|
76885
|
+
"SRT": 'SrtInput',
|
|
76886
|
+
"GCS_SERVICE_ACCOUNT": 'GcsServiceAccountInput',
|
|
76887
|
+
"DIRECT_FILE_UPLOAD": 'DirectFileUploadInput'
|
|
76286
76888
|
};
|
|
76287
76889
|
return Input;
|
|
76288
76890
|
}(BitmovinResource_1.default));
|
|
@@ -76594,19 +77196,19 @@ var InputStream = /** @class */ (function (_super) {
|
|
|
76594
77196
|
}
|
|
76595
77197
|
InputStream._discriminatorName = 'type';
|
|
76596
77198
|
InputStream._discriminatorMapping = {
|
|
76597
|
-
INGEST: 'IngestInputStream',
|
|
76598
|
-
CONCATENATION: 'ConcatenationInputStream',
|
|
76599
|
-
TRIMMING_TIME_BASED: 'TimeBasedTrimmingInputStream',
|
|
76600
|
-
TRIMMING_TIME_CODE_TRACK: 'TimecodeTrackTrimmingInputStream',
|
|
76601
|
-
TRIMMING_H264_PICTURE_TIMING: 'H264PictureTimingTrimmingInputStream',
|
|
76602
|
-
AUDIO_MIX: 'AudioMixInputStream',
|
|
76603
|
-
SIDECAR_DOLBY_VISION_METADATA: 'DolbyVisionMetadataIngestInputStream',
|
|
76604
|
-
CAPTION_CEA608: 'Cea608CaptionInputStream',
|
|
76605
|
-
CAPTION_CEA708: 'Cea708CaptionInputStream',
|
|
76606
|
-
FILE: 'FileInputStream',
|
|
76607
|
-
DVB_SUBTITLE: 'DvbSubtitleInputStream',
|
|
76608
|
-
DOLBY_ATMOS: 'DolbyAtmosIngestInputStream',
|
|
76609
|
-
DOLBY_VISION: 'DolbyVisionInputStream'
|
|
77199
|
+
"INGEST": 'IngestInputStream',
|
|
77200
|
+
"CONCATENATION": 'ConcatenationInputStream',
|
|
77201
|
+
"TRIMMING_TIME_BASED": 'TimeBasedTrimmingInputStream',
|
|
77202
|
+
"TRIMMING_TIME_CODE_TRACK": 'TimecodeTrackTrimmingInputStream',
|
|
77203
|
+
"TRIMMING_H264_PICTURE_TIMING": 'H264PictureTimingTrimmingInputStream',
|
|
77204
|
+
"AUDIO_MIX": 'AudioMixInputStream',
|
|
77205
|
+
"SIDECAR_DOLBY_VISION_METADATA": 'DolbyVisionMetadataIngestInputStream',
|
|
77206
|
+
"CAPTION_CEA608": 'Cea608CaptionInputStream',
|
|
77207
|
+
"CAPTION_CEA708": 'Cea708CaptionInputStream',
|
|
77208
|
+
"FILE": 'FileInputStream',
|
|
77209
|
+
"DVB_SUBTITLE": 'DvbSubtitleInputStream',
|
|
77210
|
+
"DOLBY_ATMOS": 'DolbyAtmosIngestInputStream',
|
|
77211
|
+
"DOLBY_VISION": 'DolbyVisionInputStream'
|
|
76610
77212
|
};
|
|
76611
77213
|
return InputStream;
|
|
76612
77214
|
}(BitmovinResource_1.default));
|
|
@@ -79916,22 +80518,22 @@ var Muxing = /** @class */ (function (_super) {
|
|
|
79916
80518
|
}
|
|
79917
80519
|
Muxing._discriminatorName = 'type';
|
|
79918
80520
|
Muxing._discriminatorMapping = {
|
|
79919
|
-
FMP4: 'Fmp4Muxing',
|
|
79920
|
-
CMAF: 'CmafMuxing',
|
|
79921
|
-
MP4: 'Mp4Muxing',
|
|
79922
|
-
TS: 'TsMuxing',
|
|
79923
|
-
WEBM: 'WebmMuxing',
|
|
79924
|
-
MP3: 'Mp3Muxing',
|
|
79925
|
-
MXF: 'MxfMuxing',
|
|
79926
|
-
PROGRESSIVE_WAV: 'ProgressiveWavMuxing',
|
|
79927
|
-
PROGRESSIVE_WEBM: 'ProgressiveWebmMuxing',
|
|
79928
|
-
PROGRESSIVE_MOV: 'ProgressiveMovMuxing',
|
|
79929
|
-
PROGRESSIVE_TS: 'ProgressiveTsMuxing',
|
|
79930
|
-
BROADCAST_TS: 'BroadcastTsMuxing',
|
|
79931
|
-
CHUNKED_TEXT: 'ChunkedTextMuxing',
|
|
79932
|
-
TEXT: 'TextMuxing',
|
|
79933
|
-
SEGMENTED_RAW: 'SegmentedRawMuxing',
|
|
79934
|
-
PACKED_AUDIO: 'PackedAudioMuxing'
|
|
80521
|
+
"FMP4": 'Fmp4Muxing',
|
|
80522
|
+
"CMAF": 'CmafMuxing',
|
|
80523
|
+
"MP4": 'Mp4Muxing',
|
|
80524
|
+
"TS": 'TsMuxing',
|
|
80525
|
+
"WEBM": 'WebmMuxing',
|
|
80526
|
+
"MP3": 'Mp3Muxing',
|
|
80527
|
+
"MXF": 'MxfMuxing',
|
|
80528
|
+
"PROGRESSIVE_WAV": 'ProgressiveWavMuxing',
|
|
80529
|
+
"PROGRESSIVE_WEBM": 'ProgressiveWebmMuxing',
|
|
80530
|
+
"PROGRESSIVE_MOV": 'ProgressiveMovMuxing',
|
|
80531
|
+
"PROGRESSIVE_TS": 'ProgressiveTsMuxing',
|
|
80532
|
+
"BROADCAST_TS": 'BroadcastTsMuxing',
|
|
80533
|
+
"CHUNKED_TEXT": 'ChunkedTextMuxing',
|
|
80534
|
+
"TEXT": 'TextMuxing',
|
|
80535
|
+
"SEGMENTED_RAW": 'SegmentedRawMuxing',
|
|
80536
|
+
"PACKED_AUDIO": 'PackedAudioMuxing'
|
|
79935
80537
|
};
|
|
79936
80538
|
return Muxing;
|
|
79937
80539
|
}(BitmovinResource_1.default));
|
|
@@ -80913,19 +81515,19 @@ var Output = /** @class */ (function (_super) {
|
|
|
80913
81515
|
}
|
|
80914
81516
|
Output._discriminatorName = 'type';
|
|
80915
81517
|
Output._discriminatorMapping = {
|
|
80916
|
-
AKAMAI_NETSTORAGE: 'AkamaiNetStorageOutput',
|
|
80917
|
-
AZURE: 'AzureOutput',
|
|
80918
|
-
CDN: 'CdnOutput',
|
|
80919
|
-
GENERIC_S3: 'GenericS3Output',
|
|
80920
|
-
GCS: 'GcsOutput',
|
|
80921
|
-
FTP: 'FtpOutput',
|
|
80922
|
-
LOCAL: 'LocalOutput',
|
|
80923
|
-
S3: 'S3Output',
|
|
80924
|
-
S3_ROLE_BASED: 'S3RoleBasedOutput',
|
|
80925
|
-
SFTP: 'SftpOutput',
|
|
80926
|
-
AKAMAI_MSL: 'AkamaiMslOutput',
|
|
80927
|
-
LIVE_MEDIA_INGEST: 'LiveMediaIngestOutput',
|
|
80928
|
-
GCS_SERVICE_ACCOUNT: 'GcsServiceAccountOutput'
|
|
81518
|
+
"AKAMAI_NETSTORAGE": 'AkamaiNetStorageOutput',
|
|
81519
|
+
"AZURE": 'AzureOutput',
|
|
81520
|
+
"CDN": 'CdnOutput',
|
|
81521
|
+
"GENERIC_S3": 'GenericS3Output',
|
|
81522
|
+
"GCS": 'GcsOutput',
|
|
81523
|
+
"FTP": 'FtpOutput',
|
|
81524
|
+
"LOCAL": 'LocalOutput',
|
|
81525
|
+
"S3": 'S3Output',
|
|
81526
|
+
"S3_ROLE_BASED": 'S3RoleBasedOutput',
|
|
81527
|
+
"SFTP": 'SftpOutput',
|
|
81528
|
+
"AKAMAI_MSL": 'AkamaiMslOutput',
|
|
81529
|
+
"LIVE_MEDIA_INGEST": 'LiveMediaIngestOutput',
|
|
81530
|
+
"GCS_SERVICE_ACCOUNT": 'GcsServiceAccountOutput'
|
|
80929
81531
|
};
|
|
80930
81532
|
return Output;
|
|
80931
81533
|
}(BitmovinResource_1.default));
|
|
@@ -85400,7 +86002,7 @@ var SidecarFile = /** @class */ (function (_super) {
|
|
|
85400
86002
|
}
|
|
85401
86003
|
SidecarFile._discriminatorName = 'type';
|
|
85402
86004
|
SidecarFile._discriminatorMapping = {
|
|
85403
|
-
WEB_VTT: 'WebVttSidecarFile'
|
|
86005
|
+
"WEB_VTT": 'WebVttSidecarFile'
|
|
85404
86006
|
};
|
|
85405
86007
|
return SidecarFile;
|
|
85406
86008
|
}(BitmovinResource_1.default));
|
|
@@ -88150,8 +88752,8 @@ var StreamsResponse = /** @class */ (function () {
|
|
|
88150
88752
|
}
|
|
88151
88753
|
StreamsResponse._discriminatorName = 'type';
|
|
88152
88754
|
StreamsResponse._discriminatorMapping = {
|
|
88153
|
-
VIDEO: 'StreamsVideoResponse',
|
|
88154
|
-
LIVE: 'StreamsLiveResponse'
|
|
88755
|
+
"VIDEO": 'StreamsVideoResponse',
|
|
88756
|
+
"LIVE": 'StreamsLiveResponse'
|
|
88155
88757
|
};
|
|
88156
88758
|
return StreamsResponse;
|
|
88157
88759
|
}());
|
|
@@ -91999,6 +92601,17 @@ __exportStar(__webpack_require__(/*! ./AdaptationSetTypeResponse */ "./models/Ad
|
|
|
91999
92601
|
__exportStar(__webpack_require__(/*! ./AdaptiveQuantMode */ "./models/AdaptiveQuantMode.ts"), exports);
|
|
92000
92602
|
__exportStar(__webpack_require__(/*! ./AesEncryptionDrm */ "./models/AesEncryptionDrm.ts"), exports);
|
|
92001
92603
|
__exportStar(__webpack_require__(/*! ./AesEncryptionMethod */ "./models/AesEncryptionMethod.ts"), exports);
|
|
92604
|
+
__exportStar(__webpack_require__(/*! ./AgentChatAttachment */ "./models/AgentChatAttachment.ts"), exports);
|
|
92605
|
+
__exportStar(__webpack_require__(/*! ./AgentChatAttachmentsData */ "./models/AgentChatAttachmentsData.ts"), exports);
|
|
92606
|
+
__exportStar(__webpack_require__(/*! ./AgentChatAttachmentsPart */ "./models/AgentChatAttachmentsPart.ts"), exports);
|
|
92607
|
+
__exportStar(__webpack_require__(/*! ./AgentChatMessage */ "./models/AgentChatMessage.ts"), exports);
|
|
92608
|
+
__exportStar(__webpack_require__(/*! ./AgentChatMessagePart */ "./models/AgentChatMessagePart.ts"), exports);
|
|
92609
|
+
__exportStar(__webpack_require__(/*! ./AgentChatMessagePartType */ "./models/AgentChatMessagePartType.ts"), exports);
|
|
92610
|
+
__exportStar(__webpack_require__(/*! ./AgentChatTextPart */ "./models/AgentChatTextPart.ts"), exports);
|
|
92611
|
+
__exportStar(__webpack_require__(/*! ./AgentSessionHistoryResponse */ "./models/AgentSessionHistoryResponse.ts"), exports);
|
|
92612
|
+
__exportStar(__webpack_require__(/*! ./AgentSessionListItem */ "./models/AgentSessionListItem.ts"), exports);
|
|
92613
|
+
__exportStar(__webpack_require__(/*! ./AgentSessionListResponse */ "./models/AgentSessionListResponse.ts"), exports);
|
|
92614
|
+
__exportStar(__webpack_require__(/*! ./AgentSessionResponse */ "./models/AgentSessionResponse.ts"), exports);
|
|
92002
92615
|
__exportStar(__webpack_require__(/*! ./AiSceneAnalysis */ "./models/AiSceneAnalysis.ts"), exports);
|
|
92003
92616
|
__exportStar(__webpack_require__(/*! ./AiSceneAnalysisAssetDescription */ "./models/AiSceneAnalysisAssetDescription.ts"), exports);
|
|
92004
92617
|
__exportStar(__webpack_require__(/*! ./AiSceneAnalysisAutomaticAdPlacement */ "./models/AiSceneAnalysisAutomaticAdPlacement.ts"), exports);
|
|
@@ -92350,8 +92963,6 @@ __exportStar(__webpack_require__(/*! ./EnhancedDeinterlaceParity */ "./models/En
|
|
|
92350
92963
|
__exportStar(__webpack_require__(/*! ./EnhancedWatermarkFilter */ "./models/EnhancedWatermarkFilter.ts"), exports);
|
|
92351
92964
|
__exportStar(__webpack_require__(/*! ./ErrorDetails */ "./models/ErrorDetails.ts"), exports);
|
|
92352
92965
|
__exportStar(__webpack_require__(/*! ./ErrorRetryHint */ "./models/ErrorRetryHint.ts"), exports);
|
|
92353
|
-
__exportStar(__webpack_require__(/*! ./EsamCondition */ "./models/EsamCondition.ts"), exports);
|
|
92354
|
-
__exportStar(__webpack_require__(/*! ./EsamDirection */ "./models/EsamDirection.ts"), exports);
|
|
92355
92966
|
__exportStar(__webpack_require__(/*! ./EsamMediaPoint */ "./models/EsamMediaPoint.ts"), exports);
|
|
92356
92967
|
__exportStar(__webpack_require__(/*! ./EsamSettings */ "./models/EsamSettings.ts"), exports);
|
|
92357
92968
|
__exportStar(__webpack_require__(/*! ./EsamSignal */ "./models/EsamSignal.ts"), exports);
|
|
@@ -98324,12 +98935,6 @@ if (!g.fetch) {
|
|
|
98324
98935
|
/******/ if (cachedModule !== undefined) {
|
|
98325
98936
|
/******/ return cachedModule.exports;
|
|
98326
98937
|
/******/ }
|
|
98327
|
-
/******/ // Check if module exists (development only)
|
|
98328
|
-
/******/ if (__webpack_modules__[moduleId] === undefined) {
|
|
98329
|
-
/******/ var e = new Error("Cannot find module '" + moduleId + "'");
|
|
98330
|
-
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
98331
|
-
/******/ throw e;
|
|
98332
|
-
/******/ }
|
|
98333
98938
|
/******/ // Create a new module (and put it into the cache)
|
|
98334
98939
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
98335
98940
|
/******/ // no module.id needed
|
|
@@ -98338,6 +98943,12 @@ if (!g.fetch) {
|
|
|
98338
98943
|
/******/ };
|
|
98339
98944
|
/******/
|
|
98340
98945
|
/******/ // Execute the module function
|
|
98946
|
+
/******/ if (!(moduleId in __webpack_modules__)) {
|
|
98947
|
+
/******/ delete __webpack_module_cache__[moduleId];
|
|
98948
|
+
/******/ var e = new Error("Cannot find module '" + moduleId + "'");
|
|
98949
|
+
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
98950
|
+
/******/ throw e;
|
|
98951
|
+
/******/ }
|
|
98341
98952
|
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
98342
98953
|
/******/
|
|
98343
98954
|
/******/ // Return the exports of the module
|