Skip to content

Commit

Permalink
New clientlib ver
Browse files Browse the repository at this point in the history
  • Loading branch information
KalturaCommunity committed Jan 30, 2023
1 parent 0165b93 commit 0095937
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 10 deletions.
6 changes: 3 additions & 3 deletions KalturaClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// to do with audio, video, and animation what Wiki platforms allow them to do with
// text.
//
// Copyright (C) 2006-2022 Kaltura Inc.
// Copyright (C) 2006-2023 Kaltura Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
Expand Down Expand Up @@ -42,8 +42,8 @@ class Client extends kaltura.ClientBase {
*/
constructor(config) {
super(config);
this.setApiVersion('18.20.0');
this.setClientTag('node:23-01-03');
this.setApiVersion('19.0.0');
this.setClientTag('node:23-01-30');
}
}

Expand Down
2 changes: 1 addition & 1 deletion KalturaClientBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// to do with audio, video, and animation what Wiki platfroms allow them to do with
// text.
//
// Copyright (C) 2006-2022 Kaltura Inc.
// Copyright (C) 2006-2023 Kaltura Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
Expand Down
17 changes: 16 additions & 1 deletion KalturaModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// to do with audio, video, and animation what Wiki platforms allow them to do with
// text.
//
// Copyright (C) 2006-2022 Kaltura Inc.
// Copyright (C) 2006-2023 Kaltura Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
Expand Down Expand Up @@ -19543,6 +19543,21 @@ class IntegrationSetting extends kaltura.BaseObject{
setEnableMeetingUpload(enableMeetingUpload) {
this.enableMeetingUpload = enableMeetingUpload;
}

/**
*
* @return int
*/
getEnableMeetingChat() {
return this.enableMeetingChat;
}

/**
* @param enableMeetingChat int
*/
setEnableMeetingChat(enableMeetingChat) {
this.enableMeetingChat = enableMeetingChat;
}
}
module.exports.IntegrationSetting = IntegrationSetting;

Expand Down
2 changes: 1 addition & 1 deletion KalturaRequestData.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// to do with audio, video, and animation what Wiki platforms allow them to do with
// text.
//
// Copyright (C) 2006-2022 Kaltura Inc.
// Copyright (C) 2006-2023 Kaltura Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
Expand Down
2 changes: 1 addition & 1 deletion KalturaServices.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// to do with audio, video, and animation what Wiki platforms allow them to do with
// text.
//
// Copyright (C) 2006-2022 Kaltura Inc.
// Copyright (C) 2006-2023 Kaltura Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
Expand Down
3 changes: 2 additions & 1 deletion KalturaTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// to do with audio, video, and animation what Wiki platforms allow them to do with
// text.
//
// Copyright (C) 2006-2022 Kaltura Inc.
// Copyright (C) 2006-2023 Kaltura Inc.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
Expand Down Expand Up @@ -2095,6 +2095,7 @@ module.exports.CaptionParamsOrderBy = {
module.exports.CaptionSource = {
UNKNOWN : '0',
ZOOM : '1',
WEBEX : '2',
};

module.exports.CaptionType = {
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 18.20.0 and above.
Compatible with Kaltura server version 19.0.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": "18.20.0",
"version": "19.0.0",
"description": "Kaltura NodeJS client library (new implementation)",
"main": "KalturaClient.js",
"scripts": {
Expand Down

0 comments on commit 0095937

Please sign in to comment.