kaltura-client 22.2.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 +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
|
@@ -53388,6 +53388,21 @@ class HttpNotificationDataFields extends HttpNotificationData{
|
|
|
53388
53388
|
super(object);
|
|
53389
53389
|
this.objectType = 'KalturaHttpNotificationDataFields';
|
|
53390
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
|
+
}
|
|
53391
53406
|
}
|
|
53392
53407
|
module.exports.HttpNotificationDataFields = HttpNotificationDataFields;
|
|
53393
53408
|
|
|
@@ -53415,6 +53430,21 @@ class HttpNotificationDataText extends HttpNotificationData{
|
|
|
53415
53430
|
setContent(content) {
|
|
53416
53431
|
this.content = content;
|
|
53417
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
|
+
}
|
|
53418
53448
|
}
|
|
53419
53449
|
module.exports.HttpNotificationDataText = HttpNotificationDataText;
|
|
53420
53450
|
|
|
@@ -53502,6 +53532,21 @@ class HttpNotificationObjectData extends HttpNotificationData{
|
|
|
53502
53532
|
setDataStringReplacements(dataStringReplacements) {
|
|
53503
53533
|
this.dataStringReplacements = dataStringReplacements;
|
|
53504
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
|
+
}
|
|
53505
53550
|
}
|
|
53506
53551
|
module.exports.HttpNotificationObjectData = HttpNotificationObjectData;
|
|
53507
53552
|
|
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.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/)
|
package/example.js
CHANGED