kaltura-client 22.1.0 → 22.3.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 +45 -0
- package/KalturaTypes.js +2 -5
- package/README.md +1 -1
- package/example.js +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
|
|
|
@@ -53373,6 +53388,21 @@ class HttpNotificationDataFields extends HttpNotificationData{
|
|
|
53373
53388
|
super(object);
|
|
53374
53389
|
this.objectType = 'KalturaHttpNotificationDataFields';
|
|
53375
53390
|
}
|
|
53391
|
+
|
|
53392
|
+
/**
|
|
53393
|
+
*
|
|
53394
|
+
* @return string
|
|
53395
|
+
*/
|
|
53396
|
+
getContentType() {
|
|
53397
|
+
return this.contentType;
|
|
53398
|
+
}
|
|
53399
|
+
|
|
53400
|
+
/**
|
|
53401
|
+
* @param contentType string
|
|
53402
|
+
*/
|
|
53403
|
+
setContentType(contentType) {
|
|
53404
|
+
this.contentType = contentType;
|
|
53405
|
+
}
|
|
53376
53406
|
}
|
|
53377
53407
|
module.exports.HttpNotificationDataFields = HttpNotificationDataFields;
|
|
53378
53408
|
|
|
@@ -53400,6 +53430,21 @@ class HttpNotificationDataText extends HttpNotificationData{
|
|
|
53400
53430
|
setContent(content) {
|
|
53401
53431
|
this.content = content;
|
|
53402
53432
|
}
|
|
53433
|
+
|
|
53434
|
+
/**
|
|
53435
|
+
*
|
|
53436
|
+
* @return string
|
|
53437
|
+
*/
|
|
53438
|
+
getContentType() {
|
|
53439
|
+
return this.contentType;
|
|
53440
|
+
}
|
|
53441
|
+
|
|
53442
|
+
/**
|
|
53443
|
+
* @param contentType string
|
|
53444
|
+
*/
|
|
53445
|
+
setContentType(contentType) {
|
|
53446
|
+
this.contentType = contentType;
|
|
53447
|
+
}
|
|
53403
53448
|
}
|
|
53404
53449
|
module.exports.HttpNotificationDataText = HttpNotificationDataText;
|
|
53405
53450
|
|
package/KalturaTypes.js
CHANGED
|
@@ -2283,8 +2283,10 @@ CS : 'Czech',
|
|
|
2283
2283
|
DA : 'Danish',
|
|
2284
2284
|
NL : 'Dutch',
|
|
2285
2285
|
EN : 'English',
|
|
2286
|
+
EN_ASL : 'English (ASL)',
|
|
2286
2287
|
EN_US : 'English (American)',
|
|
2287
2288
|
EN_AU : 'English (Australian)',
|
|
2289
|
+
EN_BSL : 'English (BSL)',
|
|
2288
2290
|
EN_GB : 'English (British)',
|
|
2289
2291
|
EO : 'Esperanto',
|
|
2290
2292
|
ET : 'Estonian',
|
|
@@ -2357,11 +2359,6 @@ XH : 'Xhosa',
|
|
|
2357
2359
|
ZU : 'Zulu',
|
|
2358
2360
|
};
|
|
2359
2361
|
|
|
2360
|
-
module.exports.CatalogItemSignLanguage = {
|
|
2361
|
-
ENGLISH_ASL : 'English (ASL)',
|
|
2362
|
-
ENGLISH_BSL : 'English (BSL)',
|
|
2363
|
-
};
|
|
2364
|
-
|
|
2365
2362
|
module.exports.CategoryEntryAdvancedOrderBy = {
|
|
2366
2363
|
CREATED_AT_ASC : '+createdAt',
|
|
2367
2364
|
CREATED_AT_DESC : '-createdAt',
|
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.3.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/)
|
package/example.js
CHANGED