Skip to content

Commit

Permalink
Code autogenerated from Kurento/kurento@6d1a8a5
Browse files Browse the repository at this point in the history
  • Loading branch information
jenkinskurento committed Sep 12, 2024
1 parent 548e899 commit 39b616d
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Contribution policy

You can contribute to the Kurento community through bug-reports, bug-fixes, new
code or new documentation. For contributing to the Kurento community, drop a
post to the [Kurento Public Mailing List] providing full information about your
post to the [Kurento discussion forum] providing full information about your
contribution and its value. In your contributions, you must comply with the
following guidelines

Expand Down Expand Up @@ -105,7 +105,7 @@ Before asking for support, please read first the [Kurento Netiquette Guidelines]
[Kurento Blog]: https://kurento.openvidu.io/blog
[Kurento FIWARE Catalog Entry]: http://catalogue.fiware.org/enablers/stream-oriented-kurento
[Kurento Netiquette Guidelines]: https://kurento.openvidu.io/blog/kurento-netiquette-guidelines
[Kurento Public Mailing list]: https://groups.google.com/forum/#!forum/kurento
[Kurento discussion forum]: https://github.com/orgs/Kurento/discussions
[KurentoImage]: https://secure.gravatar.com/avatar/21a2a12c56b2a91c8918d5779f1778bf?s=120
[Apache 2.0 License]: http://www.apache.org/licenses/LICENSE-2.0
[NUBOMEDIA]: http://www.nubomedia.eu
Expand Down
4 changes: 2 additions & 2 deletions README_bower.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Contribution policy

You can contribute to the Kurento community through bug-reports, bug-fixes, new
code or new documentation. For contributing to the Kurento community, drop a
post to the [Kurento Public Mailing List] providing full information about your
post to the [Kurento discussion forum] providing full information about your
contribution and its value. In your contributions, you must comply with the
following guidelines

Expand Down Expand Up @@ -106,7 +106,7 @@ Before asking for support, please read first the [Kurento Netiquette Guidelines]
[Kurento Blog]: https://kurento.openvidu.io/blog
[Kurento FIWARE Catalog Entry]: http://catalogue.fiware.org/enablers/stream-oriented-kurento
[Kurento Netiquette Guidelines]: https://kurento.openvidu.io/blog/kurento-netiquette-guidelines
[Kurento Public Mailing list]: https://groups.google.com/forum/#!forum/kurento
[Kurento discussion forum]: https://github.com/orgs/Kurento/discussions
[KurentoImage]: https://secure.gravatar.com/avatar/21a2a12c56b2a91c8918d5779f1778bf?s=120
[Apache 2.0 License]: http://www.apache.org/licenses/LICENSE-2.0
[NUBOMEDIA]: http://www.nubomedia.eu
Expand Down
6 changes: 3 additions & 3 deletions lib/complexTypes/VideoCodec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var kurentoClient = require('kurento-client');
*
* @typedef core/complexTypes.VideoCodec
*
* @type {(VP8|H264|RAW)}
* @type {(AV1|VP9|VP8|H264|RAW)}
*/

/**
Expand All @@ -41,8 +41,8 @@ function checkVideoCodec(key, value)
if(typeof value != 'string')
throw SyntaxError(key+' param should be a String, not '+typeof value);

if(!value.match('VP8|H264|RAW'))
throw SyntaxError(key+' param is not one of [VP8|H264|RAW] ('+value+')');
if(!value.match('AV1|VP9|VP8|H264|RAW'))
throw SyntaxError(key+' param is not one of [AV1|VP9|VP8|H264|RAW] ('+value+')');
};


Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/

Object.defineProperty(exports, 'name', {value: 'core'});
Object.defineProperty(exports, 'version', {value: '7.0.0'});
Object.defineProperty(exports, 'version', {value: '7.1.0'});


var HubPort = require('./HubPort');
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": "kurento-client-core",
"version": "7.0.0",
"version": "7.1.0",
"description": "JavaScript Client API for Kurento Media Server",
"repository": {
"type": "git",
Expand Down
12 changes: 7 additions & 5 deletions src/core.kmd.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
{
"name": "core",
"version": "7.0.0",
"kurentoVersion": "7.0.0",
"version": "7.1.0",
"kurentoVersion": "7.1.0",
"imports": [],
"code": {
"kmd": {
"java": {
"mavenGroupId": "org.kurento",
"mavenArtifactId": "kms-api-core",
"mavenVersion": "7.0.0"
"mavenVersion": "7.1.0"
}
},
"api": {
"java": {
"packageName": "org.kurento.client",
"mavenGroupId": "org.kurento",
"mavenArtifactId": "kurento-client",
"mavenVersion": "7.0.0"
"mavenVersion": "7.1.0"
},
"js": {
"nodeName": "kurento-client-core",
"npmDescription": "JavaScript Client API for Kurento Media Server",
"npmGit": "https://github.com/Kurento/kurento-client-core-js.git",
"npmVersion": "7.0.0"
"npmVersion": "7.1.0"
}
},
"implementation": {
Expand Down Expand Up @@ -907,6 +907,8 @@
{
"typeFormat": "ENUM",
"values": [
"AV1",
"VP9",
"VP8",
"H264",
"RAW"
Expand Down

0 comments on commit 39b616d

Please sign in to comment.