kaltura-client 22.2.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 CHANGED
@@ -42,8 +42,8 @@ class Client extends kaltura.ClientBase {
42
42
  */
43
43
  constructor(config) {
44
44
  super(config);
45
- this.setApiVersion('22.2.0');
46
- this.setClientTag('node:25-08-31');
45
+ this.setApiVersion('22.3.0');
46
+ this.setClientTag('node:25-09-14');
47
47
  }
48
48
  }
49
49
 
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
 
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.0 and above.
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
  [![NPM](https://nodei.co/npm/kaltura-client.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/kaltura-client/)
package/example.js CHANGED
@@ -8,7 +8,7 @@ const entryName = 'test';
8
8
  const entryDescription = 'test';
9
9
 
10
10
  let config = new kaltura.Configuration();
11
- config.serviceUrl = "http://www.kaltura.com";
11
+ config.serviceUrl = "https://www.kaltura.com";
12
12
 
13
13
  const client = new kaltura.Client(config);
14
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaltura-client",
3
- "version": "22.2.0",
3
+ "version": "22.3.0",
4
4
  "description": "Kaltura NodeJS client library (new implementation)",
5
5
  "main": "KalturaClient.js",
6
6
  "scripts": {