kaltura-client 22.0.0 → 22.1.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 +30 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/KalturaClient.js
CHANGED
package/KalturaModel.js
CHANGED
|
@@ -28672,6 +28672,21 @@ class ReportInputFilter extends ReportInputBaseFilter{
|
|
|
28672
28672
|
setEventSessionContextIdIn(eventSessionContextIdIn) {
|
|
28673
28673
|
this.eventSessionContextIdIn = eventSessionContextIdIn;
|
|
28674
28674
|
}
|
|
28675
|
+
|
|
28676
|
+
/**
|
|
28677
|
+
* filter by event video codec
|
|
28678
|
+
* @return string
|
|
28679
|
+
*/
|
|
28680
|
+
getVideoCodecIn() {
|
|
28681
|
+
return this.videoCodecIn;
|
|
28682
|
+
}
|
|
28683
|
+
|
|
28684
|
+
/**
|
|
28685
|
+
* @param videoCodecIn string filter by event video codec
|
|
28686
|
+
*/
|
|
28687
|
+
setVideoCodecIn(videoCodecIn) {
|
|
28688
|
+
this.videoCodecIn = videoCodecIn;
|
|
28689
|
+
}
|
|
28675
28690
|
}
|
|
28676
28691
|
module.exports.ReportInputFilter = ReportInputFilter;
|
|
28677
28692
|
|
|
@@ -81287,6 +81302,21 @@ class SummaryVendorTaskData extends LocalizedVendorTaskData{
|
|
|
81287
81302
|
setSummaryOutputJson(summaryOutputJson) {
|
|
81288
81303
|
this.summaryOutputJson = summaryOutputJson;
|
|
81289
81304
|
}
|
|
81305
|
+
|
|
81306
|
+
/**
|
|
81307
|
+
* Additional instruction for the summary
|
|
81308
|
+
* @return string
|
|
81309
|
+
*/
|
|
81310
|
+
getInstruction() {
|
|
81311
|
+
return this.instruction;
|
|
81312
|
+
}
|
|
81313
|
+
|
|
81314
|
+
/**
|
|
81315
|
+
* @param instruction string Additional instruction for the summary
|
|
81316
|
+
*/
|
|
81317
|
+
setInstruction(instruction) {
|
|
81318
|
+
this.instruction = instruction;
|
|
81319
|
+
}
|
|
81290
81320
|
}
|
|
81291
81321
|
module.exports.SummaryVendorTaskData = SummaryVendorTaskData;
|
|
81292
81322
|
|
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.1.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/)
|