Skip to content

Commit

Permalink
15.2.0 released.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jess Portnoy committed Jul 8, 2019
1 parent 1d1ae6d commit 73ed0fc
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 2 deletions.
60 changes: 59 additions & 1 deletion ovp.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -61538,6 +61538,10 @@
"readOnly": true,
"type": "string"
},
"minimumChunkSize": {
"description": "`insertOnly`\n\nset the minimum size in bytes for each uploaded part of the file",
"type": "number"
},
"partnerId": {
"description": "`readOnly`\n\nPartner ID of the upload token",
"readOnly": true,
Expand Down Expand Up @@ -67935,7 +67939,7 @@
"info": {
"description": "The Kaltura VPaaS API",
"title": "Kaltura VPaaS",
"version": "15.1.0"
"version": "15.2.0"
},
"parameters": {
"KalturaBulkUploadCategoryData:bulkUploadCategoryData[objectType]": {
Expand Down Expand Up @@ -113524,6 +113528,56 @@
]
}
},
"/service/thumbnail_thumbnail/action/transform": {
"post": {
"description": "Retrieves a thumbnail according to the required transformation",
"operationId": "thumbnail.transform",
"parameters": [
{
"$ref": "#/parameters/ks"
},
{
"$ref": "#/parameters/format"
},
{
"$ref": "#/parameters/clientTag"
},
{
"$ref": "#/parameters/partnerId"
},
{
"$ref": "#/parameters/responseProfile"
},
{
"in": "body",
"name": "body",
"schema": {
"properties": {
"transformString": {
"type": "string"
}
},
"required": [
"transformString"
],
"type": "object"
}
}
],
"responses": {
"200": {
"description": "Success"
}
},
"tags": [
"thumbnail"
],
"x-kaltura-format": "post",
"x-kaltura-parameters": [
"transformString"
]
}
},
"/service/thumbparams/action/add": {
"post": {
"description": "Add new Thumb Params",
Expand Down Expand Up @@ -118646,6 +118700,10 @@
"description": "Retrieve information and invoke actions on Thumb Asset",
"name": "thumbAsset"
},
{
"name": "thumbnail",
"x-plugin": "thumbnail"
},
{
"description": "Add & Manage Thumb Params",
"name": "thumbParams"
Expand Down
2 changes: 1 addition & 1 deletion scripts/resources/client_libraries.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var fs = require('fs');
var ejs = require('ejs');
var version = 'v15.1.0';
var version = 'v15.2.0';
const MARKDOWN_DIR = __dirname + '/../../markdown';
const TARGET = process.env.TARGET_API || 'ovp';
const CLIENT_LANGS = {
Expand Down

0 comments on commit 73ed0fc

Please sign in to comment.