kaltura-client 22.4.0 → 22.5.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.4.0');
46
- this.setClientTag('node:25-10-05');
45
+ this.setApiVersion('22.5.0');
46
+ this.setClientTag('node:25-10-26');
47
47
  }
48
48
  }
49
49
 
package/KalturaModel.js CHANGED
@@ -29617,6 +29617,21 @@ class RoomEntry extends BaseEntry{
29617
29617
  setTemplateRoomEntryId(templateRoomEntryId) {
29618
29618
  this.templateRoomEntryId = templateRoomEntryId;
29619
29619
  }
29620
+
29621
+ /**
29622
+ * The entryId of the recording
29623
+ * @return string
29624
+ */
29625
+ getRecordedEntryId() {
29626
+ return this.recordedEntryId;
29627
+ }
29628
+
29629
+ /**
29630
+ * @param recordedEntryId string The entryId of the recording
29631
+ */
29632
+ setRecordedEntryId(recordedEntryId) {
29633
+ this.recordedEntryId = recordedEntryId;
29634
+ }
29620
29635
  }
29621
29636
  module.exports.RoomEntry = RoomEntry;
29622
29637
 
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## Kaltura node.js API Client Library.
2
- Compatible with Kaltura server version 22.4.0 and above.
2
+ Compatible with Kaltura server version 22.5.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.4.0",
3
+ "version": "22.5.0",
4
4
  "description": "Kaltura NodeJS client library (new implementation)",
5
5
  "main": "KalturaClient.js",
6
6
  "scripts": {