kaltura-client 22.1.0 → 22.2.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
|
@@ -38030,6 +38030,21 @@ class AddEntryVendorTaskAction extends RuleAction{
|
|
|
38030
38030
|
setCatalogItemIds(catalogItemIds) {
|
|
38031
38031
|
this.catalogItemIds = catalogItemIds;
|
|
38032
38032
|
}
|
|
38033
|
+
|
|
38034
|
+
/**
|
|
38035
|
+
* Entry Object Type
|
|
38036
|
+
* @return int
|
|
38037
|
+
*/
|
|
38038
|
+
getEntryObjectType() {
|
|
38039
|
+
return this.entryObjectType;
|
|
38040
|
+
}
|
|
38041
|
+
|
|
38042
|
+
/**
|
|
38043
|
+
* @param entryObjectType int Entry Object Type
|
|
38044
|
+
*/
|
|
38045
|
+
setEntryObjectType(entryObjectType) {
|
|
38046
|
+
this.entryObjectType = entryObjectType;
|
|
38047
|
+
}
|
|
38033
38048
|
}
|
|
38034
38049
|
module.exports.AddEntryVendorTaskAction = AddEntryVendorTaskAction;
|
|
38035
38050
|
|
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.2.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/)
|