kaltura-client 22.9.0 → 22.10.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.9.0');
46
- this.setClientTag('node:25-12-21');
45
+ this.setApiVersion('22.10.0');
46
+ this.setClientTag('node:26-01-05');
47
47
  }
48
48
  }
49
49
 
package/KalturaModel.js CHANGED
@@ -39367,6 +39367,36 @@ class BaseSyndicationFeedBaseFilter extends Filter{
39367
39367
  super(object);
39368
39368
  this.objectType = 'KalturaBaseSyndicationFeedBaseFilter';
39369
39369
  }
39370
+
39371
+ /**
39372
+ *
39373
+ * @return string
39374
+ */
39375
+ getIdEqual() {
39376
+ return this.idEqual;
39377
+ }
39378
+
39379
+ /**
39380
+ * @param idEqual string
39381
+ */
39382
+ setIdEqual(idEqual) {
39383
+ this.idEqual = idEqual;
39384
+ }
39385
+
39386
+ /**
39387
+ *
39388
+ * @return string
39389
+ */
39390
+ getIdIn() {
39391
+ return this.idIn;
39392
+ }
39393
+
39394
+ /**
39395
+ * @param idIn string
39396
+ */
39397
+ setIdIn(idIn) {
39398
+ this.idIn = idIn;
39399
+ }
39370
39400
  }
39371
39401
  module.exports.BaseSyndicationFeedBaseFilter = BaseSyndicationFeedBaseFilter;
39372
39402
 
@@ -70968,6 +70998,21 @@ class CortexApiDistributionJobProviderData extends ConfigurableDistributionJobPr
70968
70998
  setCaptionsInfo(captionsInfo) {
70969
70999
  this.captionsInfo = captionsInfo;
70970
71000
  }
71001
+
71002
+ /**
71003
+ *
71004
+ * @return int
71005
+ */
71006
+ getMediaType() {
71007
+ return this.mediaType;
71008
+ }
71009
+
71010
+ /**
71011
+ * @param mediaType int
71012
+ */
71013
+ setMediaType(mediaType) {
71014
+ this.mediaType = mediaType;
71015
+ }
70971
71016
  }
70972
71017
  module.exports.CortexApiDistributionJobProviderData = CortexApiDistributionJobProviderData;
70973
71018
 
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## Kaltura node.js API Client Library.
2
- Compatible with Kaltura server version 22.9.0 and above.
2
+ Compatible with Kaltura server version 22.10.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.9.0",
3
+ "version": "22.10.0",
4
4
  "description": "Kaltura NodeJS client library (new implementation)",
5
5
  "main": "KalturaClient.js",
6
6
  "scripts": {