kaltura-client 21.20.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 +102 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/KalturaClient.js
CHANGED
package/KalturaModel.js
CHANGED
|
@@ -754,6 +754,48 @@ class AccessControlScope extends kaltura.BaseObject{
|
|
|
754
754
|
}
|
|
755
755
|
module.exports.AccessControlScope = AccessControlScope;
|
|
756
756
|
|
|
757
|
+
/**
|
|
758
|
+
*
|
|
759
|
+
*/
|
|
760
|
+
class ActiveLiveStreamTime extends kaltura.BaseObject{
|
|
761
|
+
|
|
762
|
+
constructor(object = null) {
|
|
763
|
+
super(object);
|
|
764
|
+
this.objectType = 'KalturaActiveLiveStreamTime';
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* The start time of the live stream (unix timestamp in seconds)
|
|
769
|
+
* @return int
|
|
770
|
+
*/
|
|
771
|
+
getStartTime() {
|
|
772
|
+
return this.startTime;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
/**
|
|
776
|
+
* @param startTime int The start time of the live stream (unix timestamp in seconds)
|
|
777
|
+
*/
|
|
778
|
+
setStartTime(startTime) {
|
|
779
|
+
this.startTime = startTime;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
/**
|
|
783
|
+
* The end time of the live stream (unix timestamp in seconds)
|
|
784
|
+
* @return int
|
|
785
|
+
*/
|
|
786
|
+
getEndTime() {
|
|
787
|
+
return this.endTime;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* @param endTime int The end time of the live stream (unix timestamp in seconds)
|
|
792
|
+
*/
|
|
793
|
+
setEndTime(endTime) {
|
|
794
|
+
this.endTime = endTime;
|
|
795
|
+
}
|
|
796
|
+
}
|
|
797
|
+
module.exports.ActiveLiveStreamTime = ActiveLiveStreamTime;
|
|
798
|
+
|
|
757
799
|
/**
|
|
758
800
|
*
|
|
759
801
|
*/
|
|
@@ -26660,6 +26702,21 @@ class PlaybackContext extends kaltura.BaseObject{
|
|
|
26660
26702
|
setBumperData(bumperData) {
|
|
26661
26703
|
this.bumperData = bumperData;
|
|
26662
26704
|
}
|
|
26705
|
+
|
|
26706
|
+
/**
|
|
26707
|
+
*
|
|
26708
|
+
* @return ActiveLiveStreamTime
|
|
26709
|
+
*/
|
|
26710
|
+
getActiveLiveStreamTime() {
|
|
26711
|
+
return this.activeLiveStreamTime;
|
|
26712
|
+
}
|
|
26713
|
+
|
|
26714
|
+
/**
|
|
26715
|
+
* @param activeLiveStreamTime ActiveLiveStreamTime
|
|
26716
|
+
*/
|
|
26717
|
+
setActiveLiveStreamTime(activeLiveStreamTime) {
|
|
26718
|
+
this.activeLiveStreamTime = activeLiveStreamTime;
|
|
26719
|
+
}
|
|
26663
26720
|
}
|
|
26664
26721
|
module.exports.PlaybackContext = PlaybackContext;
|
|
26665
26722
|
|
|
@@ -28615,6 +28672,21 @@ class ReportInputFilter extends ReportInputBaseFilter{
|
|
|
28615
28672
|
setEventSessionContextIdIn(eventSessionContextIdIn) {
|
|
28616
28673
|
this.eventSessionContextIdIn = eventSessionContextIdIn;
|
|
28617
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
|
+
}
|
|
28618
28690
|
}
|
|
28619
28691
|
module.exports.ReportInputFilter = ReportInputFilter;
|
|
28620
28692
|
|
|
@@ -79214,6 +79286,21 @@ class QuizVendorTaskData extends LocalizedVendorTaskData{
|
|
|
79214
79286
|
setQuizOutput(quizOutput) {
|
|
79215
79287
|
this.quizOutput = quizOutput;
|
|
79216
79288
|
}
|
|
79289
|
+
|
|
79290
|
+
/**
|
|
79291
|
+
* Instructions describing what should be taken into account during the quiz creation process
|
|
79292
|
+
* @return string
|
|
79293
|
+
*/
|
|
79294
|
+
getInstruction() {
|
|
79295
|
+
return this.instruction;
|
|
79296
|
+
}
|
|
79297
|
+
|
|
79298
|
+
/**
|
|
79299
|
+
* @param instruction string Instructions describing what should be taken into account during the quiz creation process
|
|
79300
|
+
*/
|
|
79301
|
+
setInstruction(instruction) {
|
|
79302
|
+
this.instruction = instruction;
|
|
79303
|
+
}
|
|
79217
79304
|
}
|
|
79218
79305
|
module.exports.QuizVendorTaskData = QuizVendorTaskData;
|
|
79219
79306
|
|
|
@@ -81215,6 +81302,21 @@ class SummaryVendorTaskData extends LocalizedVendorTaskData{
|
|
|
81215
81302
|
setSummaryOutputJson(summaryOutputJson) {
|
|
81216
81303
|
this.summaryOutputJson = summaryOutputJson;
|
|
81217
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
|
+
}
|
|
81218
81320
|
}
|
|
81219
81321
|
module.exports.SummaryVendorTaskData = SummaryVendorTaskData;
|
|
81220
81322
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
## Kaltura node.js API Client Library.
|
|
2
|
-
Compatible with Kaltura server version
|
|
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/)
|