kaltura-client 22.0.0 → 22.2.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 CHANGED
@@ -42,8 +42,8 @@ class Client extends kaltura.ClientBase {
42
42
  */
43
43
  constructor(config) {
44
44
  super(config);
45
- this.setApiVersion('22.0.0');
46
- this.setClientTag('node:25-08-03');
45
+ this.setApiVersion('22.2.0');
46
+ this.setClientTag('node:25-08-31');
47
47
  }
48
48
  }
49
49
 
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
 
@@ -38015,6 +38030,21 @@ class AddEntryVendorTaskAction extends RuleAction{
38015
38030
  setCatalogItemIds(catalogItemIds) {
38016
38031
  this.catalogItemIds = catalogItemIds;
38017
38032
  }
38033
+
38034
+ /**
38035
+ * Entry Object Type
38036
+ * @return int
38037
+ */
38038
+ getEntryObjectType() {
38039
+ return this.entryObjectType;
38040
+ }
38041
+
38042
+ /**
38043
+ * @param entryObjectType int Entry Object Type
38044
+ */
38045
+ setEntryObjectType(entryObjectType) {
38046
+ this.entryObjectType = entryObjectType;
38047
+ }
38018
38048
  }
38019
38049
  module.exports.AddEntryVendorTaskAction = AddEntryVendorTaskAction;
38020
38050
 
@@ -81287,6 +81317,21 @@ class SummaryVendorTaskData extends LocalizedVendorTaskData{
81287
81317
  setSummaryOutputJson(summaryOutputJson) {
81288
81318
  this.summaryOutputJson = summaryOutputJson;
81289
81319
  }
81320
+
81321
+ /**
81322
+ * Additional instruction for the summary
81323
+ * @return string
81324
+ */
81325
+ getInstruction() {
81326
+ return this.instruction;
81327
+ }
81328
+
81329
+ /**
81330
+ * @param instruction string Additional instruction for the summary
81331
+ */
81332
+ setInstruction(instruction) {
81333
+ this.instruction = instruction;
81334
+ }
81290
81335
  }
81291
81336
  module.exports.SummaryVendorTaskData = SummaryVendorTaskData;
81292
81337
 
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## Kaltura node.js API Client Library.
2
- Compatible with Kaltura server version 22.0.0 and above.
2
+ Compatible with Kaltura server version 22.2.0 and above.
3
3
  This client library replaces the older architecture that presented in previous node.js client library.
4
4
 
5
5
  [![NPM](https://nodei.co/npm/kaltura-client.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/kaltura-client/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaltura-client",
3
- "version": "22.0.0",
3
+ "version": "22.2.0",
4
4
  "description": "Kaltura NodeJS client library (new implementation)",
5
5
  "main": "KalturaClient.js",
6
6
  "scripts": {