@bitmovin/api-sdk 1.157.0 → 1.158.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.
|
@@ -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.158.0',
|
|
244
244
|
'Content-Type': 'application/json'
|
|
245
245
|
};
|
|
246
246
|
if (tenantOrgId) {
|
|
@@ -21,6 +21,18 @@ export declare class StreamsConfigResponse {
|
|
|
21
21
|
* @memberof StreamsConfigResponse
|
|
22
22
|
*/
|
|
23
23
|
playerStyle?: any;
|
|
24
|
+
/**
|
|
25
|
+
* URL of the watermark image
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof StreamsConfigResponse
|
|
28
|
+
*/
|
|
29
|
+
watermarkUrl?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Target link of the watermark image
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof StreamsConfigResponse
|
|
34
|
+
*/
|
|
35
|
+
watermarkTargetLink?: string;
|
|
24
36
|
constructor(obj?: Partial<StreamsConfigResponse>);
|
|
25
37
|
}
|
|
26
38
|
export default StreamsConfigResponse;
|
|
@@ -14,6 +14,8 @@ var StreamsConfigResponse = /** @class */ (function () {
|
|
|
14
14
|
this.id = (0, Mapper_1.map)(obj.id);
|
|
15
15
|
this.orgId = (0, Mapper_1.map)(obj.orgId);
|
|
16
16
|
this.playerStyle = (0, Mapper_1.map)(obj.playerStyle);
|
|
17
|
+
this.watermarkUrl = (0, Mapper_1.map)(obj.watermarkUrl);
|
|
18
|
+
this.watermarkTargetLink = (0, Mapper_1.map)(obj.watermarkTargetLink);
|
|
17
19
|
}
|
|
18
20
|
return StreamsConfigResponse;
|
|
19
21
|
}());
|