kaltura-client 22.10.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.10.0');
46
- this.setClientTag('node:26-01-05');
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
@@ -63155,6 +63162,48 @@ class UnlimitedVendorCredit extends BaseVendorCredit{
63155
63162
  }
63156
63163
  module.exports.UnlimitedVendorCredit = UnlimitedVendorCredit;
63157
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
+
63158
63207
  /**
63159
63208
  *
63160
63209
  */
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.10.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.10.0",
3
+ "version": "22.11.0",
4
4
  "description": "Kaltura NodeJS client library (new implementation)",
5
5
  "main": "KalturaClient.js",
6
6
  "scripts": {