Skip to content

Commit

Permalink
New clientlib ver
Browse files Browse the repository at this point in the history
  • Loading branch information
KalturaCommunity committed May 26, 2021
1 parent 3cb3e69 commit 63eaccc
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 10 deletions.
4 changes: 2 additions & 2 deletions KalturaClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

Expand Down
60 changes: 60 additions & 0 deletions KalturaModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions KalturaServices.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
*/
Expand Down Expand Up @@ -10883,17 +10883,17 @@ 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 = {};
return new kaltura.RequestBuilder('vendor_zoomvendor', 'oauthValidation', kparams);
};

/**
* 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 = {};
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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/)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 63eaccc

Please sign in to comment.