kaltura-client 22.3.0 → 22.4.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.3.0');
46
- this.setClientTag('node:25-09-14');
45
+ this.setApiVersion('22.4.0');
46
+ this.setClientTag('node:25-10-05');
47
47
  }
48
48
  }
49
49
 
package/KalturaModel.js CHANGED
@@ -53532,6 +53532,21 @@ class HttpNotificationObjectData extends HttpNotificationData{
53532
53532
  setDataStringReplacements(dataStringReplacements) {
53533
53533
  this.dataStringReplacements = dataStringReplacements;
53534
53534
  }
53535
+
53536
+ /**
53537
+ *
53538
+ * @return int
53539
+ */
53540
+ getResponseProfileId() {
53541
+ return this.responseProfileId;
53542
+ }
53543
+
53544
+ /**
53545
+ * @param responseProfileId int
53546
+ */
53547
+ setResponseProfileId(responseProfileId) {
53548
+ this.responseProfileId = responseProfileId;
53549
+ }
53535
53550
  }
53536
53551
  module.exports.HttpNotificationObjectData = HttpNotificationObjectData;
53537
53552
 
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## Kaltura node.js API Client Library.
2
- Compatible with Kaltura server version 22.3.0 and above.
2
+ Compatible with Kaltura server version 22.4.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.3.0",
3
+ "version": "22.4.0",
4
4
  "description": "Kaltura NodeJS client library (new implementation)",
5
5
  "main": "KalturaClient.js",
6
6
  "scripts": {