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 +2 -2
- package/KalturaModel.js +15 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/KalturaClient.js
CHANGED
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.
|
|
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
|
[](https://nodei.co/npm/kaltura-client/)
|