kaltura-client 22.3.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 +2 -2
- package/KalturaModel.js +30 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/KalturaClient.js
CHANGED
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
|
|
|
@@ -53532,6 +53547,21 @@ class HttpNotificationObjectData extends HttpNotificationData{
|
|
|
53532
53547
|
setDataStringReplacements(dataStringReplacements) {
|
|
53533
53548
|
this.dataStringReplacements = dataStringReplacements;
|
|
53534
53549
|
}
|
|
53550
|
+
|
|
53551
|
+
/**
|
|
53552
|
+
*
|
|
53553
|
+
* @return int
|
|
53554
|
+
*/
|
|
53555
|
+
getResponseProfileId() {
|
|
53556
|
+
return this.responseProfileId;
|
|
53557
|
+
}
|
|
53558
|
+
|
|
53559
|
+
/**
|
|
53560
|
+
* @param responseProfileId int
|
|
53561
|
+
*/
|
|
53562
|
+
setResponseProfileId(responseProfileId) {
|
|
53563
|
+
this.responseProfileId = responseProfileId;
|
|
53564
|
+
}
|
|
53535
53565
|
}
|
|
53536
53566
|
module.exports.HttpNotificationObjectData = HttpNotificationObjectData;
|
|
53537
53567
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
## Kaltura node.js API Client Library.
|
|
2
|
-
Compatible with Kaltura server version 22.
|
|
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
|
[](https://nodei.co/npm/kaltura-client/)
|