kaltura-client 22.7.0 → 22.8.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/KalturaClient.js +2 -2
- package/KalturaModel.js +23 -0
- package/KalturaTypes.js +1 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/KalturaClient.js
CHANGED
package/KalturaModel.js
CHANGED
|
@@ -1305,6 +1305,21 @@ class Annotation extends CuePoint{
|
|
|
1305
1305
|
setSearchableOnEntry(searchableOnEntry) {
|
|
1306
1306
|
this.searchableOnEntry = searchableOnEntry;
|
|
1307
1307
|
}
|
|
1308
|
+
|
|
1309
|
+
/**
|
|
1310
|
+
* In case of cloned annotation it will hold source cuepoint createdAt
|
|
1311
|
+
* @return int
|
|
1312
|
+
*/
|
|
1313
|
+
getOriginalCuePointCreateAt() {
|
|
1314
|
+
return this.originalCuePointCreateAt;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* @param originalCuePointCreateAt int In case of cloned annotation it will hold source cuepoint createdAt
|
|
1319
|
+
*/
|
|
1320
|
+
setOriginalCuePointCreateAt(originalCuePointCreateAt) {
|
|
1321
|
+
this.originalCuePointCreateAt = originalCuePointCreateAt;
|
|
1322
|
+
}
|
|
1308
1323
|
}
|
|
1309
1324
|
module.exports.Annotation = Annotation;
|
|
1310
1325
|
|
|
@@ -18502,6 +18517,14 @@ class FlavorParams extends AssetParams{
|
|
|
18502
18517
|
setClipDuration(clipDuration) {
|
|
18503
18518
|
this.clipDuration = clipDuration;
|
|
18504
18519
|
}
|
|
18520
|
+
|
|
18521
|
+
/**
|
|
18522
|
+
* Audio languages extracted from multiStream field
|
|
18523
|
+
* @return array
|
|
18524
|
+
*/
|
|
18525
|
+
getAudioLanguages() {
|
|
18526
|
+
return this.audioLanguages;
|
|
18527
|
+
}
|
|
18505
18528
|
}
|
|
18506
18529
|
module.exports.FlavorParams = FlavorParams;
|
|
18507
18530
|
|
package/KalturaTypes.js
CHANGED
|
@@ -3177,6 +3177,7 @@ ENTITLED_USER_PUBLISH : 'entitled_kusers_publish',
|
|
|
3177
3177
|
ENTITLED_USER_VIEW : 'entitled_kusers_view',
|
|
3178
3178
|
ENTRY_TYPE : 'entry_type',
|
|
3179
3179
|
EXTERNAL_SOURCE_TYPE : 'external_source_type',
|
|
3180
|
+
FLAVOR_PARAMS_IDS : 'flavor_params_ids',
|
|
3180
3181
|
ID : 'id',
|
|
3181
3182
|
IS_LIVE : 'is_live',
|
|
3182
3183
|
IS_QUIZ : 'is_quiz',
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
## Kaltura node.js API Client Library.
|
|
2
|
-
Compatible with Kaltura server version 22.
|
|
2
|
+
Compatible with Kaltura server version 22.8.0 and above.
|
|
3
3
|
This client library replaces the older architecture that presented in previous node.js client library.
|
|
4
4
|
|
|
5
5
|
[](https://nodei.co/npm/kaltura-client/)
|