Skip to content

Commit

Permalink
Auto-generated by Jenkins job OTT-Generate-ClientLibs/954, branch master
Browse files Browse the repository at this point in the history
  • Loading branch information
Backend CI committed Aug 23, 2022
1 parent f2cb4c1 commit 7599131
Show file tree
Hide file tree
Showing 21 changed files with 65 additions and 383 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Kaltura OTT Typescript Client

Compatible with Kaltura OTT server version 7.9.0.29981 and above.
Compatible with Kaltura OTT server version 7.9.0.30000 and above.


[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org) [![Gitter chat](https://badges.gitter.im/kaltura-ng/kaltura-ng.png)](https://gitter.im/kaltura-ng/kaltura-ng) [![Build Status](https://travis-ci.org/kaltura/KalturaOttGeneratedAPIClientsTypescript.svg?branch=master)](https://travis-ci.org/kaltura/KalturaOttGeneratedAPIClientsTypescript)
Expand All @@ -16,7 +16,7 @@ To keep being update review the [changelog](CHANGELOG.md) frequently.

You can install this client library using npm with:
```
npm install [email protected]29981
npm install [email protected]30000
```

**Found a bug?** create [kaltura/clients-generator issue](https://github.com/kaltura/clients-generator/issues)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kaltura-ott-typescript-client",
"private": true,
"version": "7.9.0-29981",
"version": "7.9.0-30000",
"description": "Kaltura OTT Typescript client",
"keywords": [
"Kaltura"
Expand Down
19 changes: 9 additions & 10 deletions src/api/types/IotProfileAddAction.ts
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@

import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaIotProfile } from './KalturaIotProfile';


import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';

export interface IotProfileAddActionArgs extends KalturaRequestArgs {
objectToAdd : KalturaIotProfile;

}

/**
* Build request payload for service 'iotProfile' action 'add'.
*
* Usage: Add new KalturaIotProfile
* Usage: Add new environment in aws
*
* Server response type: KalturaIotProfile
* Server response type: boolean
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export class IotProfileAddAction extends KalturaRequest<KalturaIotProfile> {
export class IotProfileAddAction extends KalturaRequest<boolean> {

objectToAdd : KalturaIotProfile;


constructor(data : IotProfileAddActionArgs)
constructor(data? : IotProfileAddActionArgs)
{
super(data, {responseType : 'o', responseSubType : 'KalturaIotProfile', responseConstructor : KalturaIotProfile });
super(data, {responseType : 'b', responseSubType : '', responseConstructor : null });
}

protected _getMetadata() : KalturaObjectMetadata
Expand All @@ -34,8 +34,7 @@ export class IotProfileAddAction extends KalturaRequest<KalturaIotProfile> {
result.properties,
{
service : { type : 'c', default : 'iotprofile' },
action : { type : 'c', default : 'add' },
objectToAdd : { type : 'o', subTypeConstructor : KalturaIotProfile, subType : 'KalturaIotProfile' }
action : { type : 'c', default : 'add' }
}
);
return result;
Expand Down
44 changes: 0 additions & 44 deletions src/api/types/IotProfileGetAction.ts

This file was deleted.

47 changes: 0 additions & 47 deletions src/api/types/IotProfileUpdateAction.ts

This file was deleted.

8 changes: 4 additions & 4 deletions src/api/types/IotRegisterAction.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaIot } from './KalturaIot';


import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';

Expand All @@ -13,18 +13,18 @@ export interface IotRegisterActionArgs extends KalturaRequestArgs {
*
* Usage: Register IOT device
*
* Server response type: KalturaIot
* Server response type: boolean
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export class IotRegisterAction extends KalturaRequest<KalturaIot> {
export class IotRegisterAction extends KalturaRequest<boolean> {



constructor(data? : IotRegisterActionArgs)
{
super(data, {responseType : 'o', responseSubType : 'KalturaIot', responseConstructor : KalturaIot });
super(data, {responseType : 'b', responseSubType : '', responseConstructor : null });
}

protected _getMetadata() : KalturaObjectMetadata
Expand Down
6 changes: 0 additions & 6 deletions src/api/types/KalturaBooleanOperator.ts

This file was deleted.

35 changes: 0 additions & 35 deletions src/api/types/KalturaCognitoIdentity.ts

This file was deleted.

35 changes: 0 additions & 35 deletions src/api/types/KalturaCognitoUserPool.ts

This file was deleted.

35 changes: 0 additions & 35 deletions src/api/types/KalturaCredentialsProvider.ts

This file was deleted.

Loading

0 comments on commit 7599131

Please sign in to comment.