kaltura-client 22.9.0 → 22.11.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.11.0');
46
+ this.setClientTag('node:26-01-18');
47
47
  }
48
48
  }
49
49
 
package/KalturaModel.js CHANGED
@@ -34696,6 +34696,13 @@ class UserEntry extends kaltura.BaseObject{
34696
34696
  return this.status;
34697
34697
  }
34698
34698
 
34699
+ /**
34700
+ * @param status string
34701
+ */
34702
+ setStatus(status) {
34703
+ this.status = status;
34704
+ }
34705
+
34699
34706
  /**
34700
34707
  *
34701
34708
  * @return int
@@ -39367,6 +39374,36 @@ class BaseSyndicationFeedBaseFilter extends Filter{
39367
39374
  super(object);
39368
39375
  this.objectType = 'KalturaBaseSyndicationFeedBaseFilter';
39369
39376
  }
39377
+
39378
+ /**
39379
+ *
39380
+ * @return string
39381
+ */
39382
+ getIdEqual() {
39383
+ return this.idEqual;
39384
+ }
39385
+
39386
+ /**
39387
+ * @param idEqual string
39388
+ */
39389
+ setIdEqual(idEqual) {
39390
+ this.idEqual = idEqual;
39391
+ }
39392
+
39393
+ /**
39394
+ *
39395
+ * @return string
39396
+ */
39397
+ getIdIn() {
39398
+ return this.idIn;
39399
+ }
39400
+
39401
+ /**
39402
+ * @param idIn string
39403
+ */
39404
+ setIdIn(idIn) {
39405
+ this.idIn = idIn;
39406
+ }
39370
39407
  }
39371
39408
  module.exports.BaseSyndicationFeedBaseFilter = BaseSyndicationFeedBaseFilter;
39372
39409
 
@@ -63125,6 +63162,48 @@ class UnlimitedVendorCredit extends BaseVendorCredit{
63125
63162
  }
63126
63163
  module.exports.UnlimitedVendorCredit = UnlimitedVendorCredit;
63127
63164
 
63165
+ /**
63166
+ *
63167
+ */
63168
+ class UpdateUserEntriesData extends JobData{
63169
+
63170
+ constructor(object = null) {
63171
+ super(object);
63172
+ this.objectType = 'KalturaUpdateUserEntriesData';
63173
+ }
63174
+
63175
+ /**
63176
+ *
63177
+ * @return string
63178
+ */
63179
+ getOldStatus() {
63180
+ return this.oldStatus;
63181
+ }
63182
+
63183
+ /**
63184
+ * @param oldStatus string
63185
+ */
63186
+ setOldStatus(oldStatus) {
63187
+ this.oldStatus = oldStatus;
63188
+ }
63189
+
63190
+ /**
63191
+ *
63192
+ * @return string
63193
+ */
63194
+ getNewStatus() {
63195
+ return this.newStatus;
63196
+ }
63197
+
63198
+ /**
63199
+ * @param newStatus string
63200
+ */
63201
+ setNewStatus(newStatus) {
63202
+ this.newStatus = newStatus;
63203
+ }
63204
+ }
63205
+ module.exports.UpdateUserEntriesData = UpdateUserEntriesData;
63206
+
63128
63207
  /**
63129
63208
  *
63130
63209
  */
@@ -70968,6 +71047,21 @@ class CortexApiDistributionJobProviderData extends ConfigurableDistributionJobPr
70968
71047
  setCaptionsInfo(captionsInfo) {
70969
71048
  this.captionsInfo = captionsInfo;
70970
71049
  }
71050
+
71051
+ /**
71052
+ *
71053
+ * @return int
71054
+ */
71055
+ getMediaType() {
71056
+ return this.mediaType;
71057
+ }
71058
+
71059
+ /**
71060
+ * @param mediaType int
71061
+ */
71062
+ setMediaType(mediaType) {
71063
+ this.mediaType = mediaType;
71064
+ }
70971
71065
  }
70972
71066
  module.exports.CortexApiDistributionJobProviderData = CortexApiDistributionJobProviderData;
70973
71067
 
package/KalturaTypes.js CHANGED
@@ -2064,6 +2064,7 @@ STORAGE_PERIODIC_PURGE : '54',
2064
2064
  STORAGE_PERIODIC_DELETE_LOCAL : '55',
2065
2065
  REACH_JOB_CLEANER : '56',
2066
2066
  MULTI_CLIP_CONCAT : '57',
2067
+ UPDATE_USER_ENTRIES : '58',
2067
2068
  REACH_INTERNAL_QUEUE_HANDLER : 'ReachInternal.ReachInternalQueueHandler',
2068
2069
  CONVERT_CAPTION_ASSET : 'caption.convertcaptionasset',
2069
2070
  PARSE_MULTI_LANGUAGE_CAPTION_ASSET : 'caption.parsemultilanguagecaptionasset',
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.11.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.11.0",
4
4
  "description": "Kaltura NodeJS client library (new implementation)",
5
5
  "main": "KalturaClient.js",
6
6
  "scripts": {