From 63eaccccc84a229100511988ebce0d8ea4846c5d Mon Sep 17 00:00:00 2001 From: Kaltura CSI Date: Wed, 26 May 2021 09:19:38 -0400 Subject: [PATCH] New clientlib ver --- KalturaClient.js | 4 ++-- KalturaModel.js | 60 ++++++++++++++++++++++++++++++++++++++++++++++ KalturaServices.js | 12 +++++----- README.md | 2 +- package.json | 2 +- 5 files changed, 70 insertions(+), 10 deletions(-) diff --git a/KalturaClient.js b/KalturaClient.js index 83093528..6fed1f13 100644 --- a/KalturaClient.js +++ b/KalturaClient.js @@ -42,8 +42,8 @@ class Client extends kaltura.ClientBase { */ constructor(config) { super(config); - this.setApiVersion('17.1.0'); - this.setClientTag('node:21-05-25'); + this.setApiVersion('17.2.0'); + this.setClientTag('node:21-05-26'); } } diff --git a/KalturaModel.js b/KalturaModel.js index 0b39dcbb..6f10607a 100644 --- a/KalturaModel.js +++ b/KalturaModel.js @@ -34712,6 +34712,51 @@ class ZoomIntegrationSetting extends kaltura.BaseObject{ setZoomAccountDescription(zoomAccountDescription) { this.zoomAccountDescription = zoomAccountDescription; } + + /** + * + * @return string + */ + getCreatedAt() { + return this.createdAt; + } + + /** + * @param createdAt string + */ + setCreatedAt(createdAt) { + this.createdAt = createdAt; + } + + /** + * + * @return string + */ + getUpdatedAt() { + return this.updatedAt; + } + + /** + * @param updatedAt string + */ + setUpdatedAt(updatedAt) { + this.updatedAt = updatedAt; + } + + /** + * + * @return int + */ + getEnableMeetingUpload() { + return this.enableMeetingUpload; + } + + /** + * @param enableMeetingUpload int + */ + setEnableMeetingUpload(enableMeetingUpload) { + this.enableMeetingUpload = enableMeetingUpload; + } } module.exports.ZoomIntegrationSetting = ZoomIntegrationSetting; @@ -52792,6 +52837,21 @@ class ModifyEntryObjectTask extends ObjectTask{ this.inputEntitledUsersPublish = inputEntitledUsersPublish; } + /** + * The input entitled users view to set on the entry + * @return string + */ + getInputEntitledUsersView() { + return this.inputEntitledUsersView; + } + + /** + * @param inputEntitledUsersView string The input entitled users view to set on the entry + */ + setInputEntitledUsersView(inputEntitledUsersView) { + this.inputEntitledUsersView = inputEntitledUsersView; + } + /** * Should clear the media repurposing data and therefore reset the process * @return bool diff --git a/KalturaServices.js b/KalturaServices.js index 39ff27f5..60cc5fbe 100644 --- a/KalturaServices.js +++ b/KalturaServices.js @@ -10821,9 +10821,9 @@ module.exports.varConsole = varConsole; * @action get Retrieve zoom integration setting object by partner id. * @action list List KalturaZoomIntegrationSetting objects. * @action localRegistrationPage . - * @action oauthValidation . - * @action preOauthValidation load html page the that will ask the user for its KMC URL, derive the region of the user from it, + * @action oauthValidation load html page the that will ask the user for its KMC URL, derive the region of the user from it, * and redirect to the registration page in the correct region, while forwarding the necessary code for registration. + * @action preOauthValidation . * @action recordingComplete . * @action submitRegistration . */ @@ -10883,8 +10883,8 @@ class zoomVendor{ }; /** - * . - * @return string + * load html page the that will ask the user for its KMC URL, derive the region of the user from it, + * and redirect to the registration page in the correct region, while forwarding the necessary code for registration. */ static oauthValidation(){ let kparams = {}; @@ -10892,8 +10892,8 @@ class zoomVendor{ }; /** - * load html page the that will ask the user for its KMC URL, derive the region of the user from it, - * and redirect to the registration page in the correct region, while forwarding the necessary code for registration. + * . + * @return string */ static preOauthValidation(){ let kparams = {}; diff --git a/README.md b/README.md index ef68abe7..f5ce5f41 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ## Kaltura node.js API Client Library. -Compatible with Kaltura server version 17.1.0 and above. +Compatible with Kaltura server version 17.2.0 and above. This client library replaces the older architecture that presented in previous node.js client library. [![NPM](https://nodei.co/npm/kaltura-client.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/kaltura-client/) diff --git a/package.json b/package.json index 2b6b3b99..70e47ebc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kaltura-client", - "version": "17.1.0", + "version": "17.2.0", "description": "Kaltura NodeJS client library (new implementation)", "main": "KalturaClient.js", "scripts": {