@bitmovin/api-sdk 1.261.0 → 1.263.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/agents/AgentsApi.d.ts +2 -0
- package/dist/agents/AgentsApi.js +2 -0
- package/dist/agents/assistant/AssistantApi.d.ts +13 -0
- package/dist/agents/assistant/AssistantApi.js +35 -0
- package/dist/agents/assistant/sessions/SessionsApi.d.ts +44 -0
- package/dist/agents/assistant/sessions/SessionsApi.js +88 -0
- package/dist/bitmovin-api-sdk.browser.js +150 -1
- package/dist/bitmovin-api-sdk.browser.min.js +1 -1
- package/dist/common/RestClient.js +1 -1
- package/dist/models/SceneAnalysisDetailsResponse.d.ts +10 -0
- package/dist/models/SceneAnalysisDetailsResponse.js +2 -0
- package/package.json +1 -1
|
@@ -240,7 +240,7 @@ var HeaderHandler = /** @class */ (function (_super) {
|
|
|
240
240
|
var headers = {
|
|
241
241
|
'X-Api-Key': apiKey,
|
|
242
242
|
'X-Api-Client': 'bitmovin-api-sdk-javascript',
|
|
243
|
-
'X-Api-Client-Version': '1.
|
|
243
|
+
'X-Api-Client-Version': '1.263.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -11,6 +11,11 @@ export declare class SceneAnalysisDetailsResponse {
|
|
|
11
11
|
* @memberof SceneAnalysisDetailsResponse
|
|
12
12
|
*/
|
|
13
13
|
scenes?: Scene[];
|
|
14
|
+
/**
|
|
15
|
+
* @type {number}
|
|
16
|
+
* @memberof SceneAnalysisDetailsResponse
|
|
17
|
+
*/
|
|
18
|
+
duration?: number;
|
|
14
19
|
/**
|
|
15
20
|
* @type {string}
|
|
16
21
|
* @memberof SceneAnalysisDetailsResponse
|
|
@@ -36,6 +41,11 @@ export declare class SceneAnalysisDetailsResponse {
|
|
|
36
41
|
* @memberof SceneAnalysisDetailsResponse
|
|
37
42
|
*/
|
|
38
43
|
iabSensitiveTopicTaxonomies?: string[];
|
|
44
|
+
/**
|
|
45
|
+
* @type {string[]}
|
|
46
|
+
* @memberof SceneAnalysisDetailsResponse
|
|
47
|
+
*/
|
|
48
|
+
inputLanguageCodes?: string[];
|
|
39
49
|
/**
|
|
40
50
|
* @type {Metadata}
|
|
41
51
|
* @memberof SceneAnalysisDetailsResponse
|
|
@@ -15,11 +15,13 @@ var SceneAnalysisDetailsResponse = /** @class */ (function () {
|
|
|
15
15
|
return;
|
|
16
16
|
}
|
|
17
17
|
this.scenes = (0, Mapper_1.mapArray)(obj.scenes, Scene_1.default);
|
|
18
|
+
this.duration = (0, Mapper_1.map)(obj.duration);
|
|
18
19
|
this.description = (0, Mapper_1.map)(obj.description);
|
|
19
20
|
this.keywords = (0, Mapper_1.mapArray)(obj.keywords);
|
|
20
21
|
this.ratings = (0, Mapper_1.mapArray)(obj.ratings, Rating_1.default);
|
|
21
22
|
this.sensitiveTopics = (0, Mapper_1.mapArray)(obj.sensitiveTopics);
|
|
22
23
|
this.iabSensitiveTopicTaxonomies = (0, Mapper_1.mapArray)(obj.iabSensitiveTopicTaxonomies);
|
|
24
|
+
this.inputLanguageCodes = (0, Mapper_1.mapArray)(obj.inputLanguageCodes);
|
|
23
25
|
this.metadata = (0, Mapper_1.map)(obj.metadata, Metadata_1.default);
|
|
24
26
|
}
|
|
25
27
|
return SceneAnalysisDetailsResponse;
|