Skip to content

Commit

Permalink
Auto-generated by Jenkins job OTT-Generate-ClientLibs/873, branch master
Browse files Browse the repository at this point in the history
  • Loading branch information
Backend CI committed May 1, 2022
1 parent 2cac46c commit 5cd2068
Show file tree
Hide file tree
Showing 17 changed files with 53 additions and 372 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.4.0.29935 and above.
Compatible with Kaltura OTT server version 7.4.0.29874 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]29935
npm install [email protected]29874
```

**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.4.0-29935",
"version": "7.4.0-29874",
"description": "Kaltura OTT Typescript client",
"keywords": [
"Kaltura"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import { KalturaIotProfile } from './KalturaIotProfile';

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

export interface IotProfileDeleteActionArgs extends KalturaRequestArgs {
export interface IotProfileGetActionArgs extends KalturaRequestArgs {
id : number;
}

/**
* Build request payload for service 'iotProfile' action 'delete'.
* Build request payload for service 'iotProfile' action 'get'.
*
* Usage: Get existing KalturaIotProfile
*
Expand All @@ -18,11 +18,11 @@ export interface IotProfileDeleteActionArgs extends KalturaRequestArgs {
* @class
* @extends KalturaRequest
*/
export class IotProfileDeleteAction extends KalturaRequest<KalturaIotProfile> {
export class IotProfileGetAction extends KalturaRequest<KalturaIotProfile> {

id : number;

constructor(data : IotProfileDeleteActionArgs)
constructor(data : IotProfileGetActionArgs)
{
super(data, {responseType : 'o', responseSubType : 'KalturaIotProfile', responseConstructor : KalturaIotProfile });
}
Expand All @@ -34,7 +34,7 @@ export class IotProfileDeleteAction extends KalturaRequest<KalturaIotProfile> {
result.properties,
{
service : { type : 'c', default : 'iotprofile' },
action : { type : 'c', default : 'delete' },
action : { type : 'c', default : 'get' },
id : { type : 'n' }
}
);
Expand Down
5 changes: 4 additions & 1 deletion src/api/types/KalturaCatalogPartnerConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export interface KalturaCatalogPartnerConfigArgs extends KalturaPartnerConfigur
categoryManagement? : KalturaCategoryManagement;
epgMultilingualFallbackSupport? : boolean;
uploadExportDatalake? : boolean;
shopMarkerMetaId? : number;
}


Expand All @@ -18,6 +19,7 @@ export class KalturaCatalogPartnerConfig extends KalturaPartnerConfiguration {
categoryManagement : KalturaCategoryManagement;
epgMultilingualFallbackSupport : boolean;
uploadExportDatalake : boolean;
shopMarkerMetaId : number;

constructor(data? : KalturaCatalogPartnerConfigArgs)
{
Expand All @@ -34,7 +36,8 @@ export class KalturaCatalogPartnerConfig extends KalturaPartnerConfiguration {
singleMultilingualMode : { type : 'b' },
categoryManagement : { type : 'o', subTypeConstructor : KalturaCategoryManagement, subType : 'KalturaCategoryManagement' },
epgMultilingualFallbackSupport : { type : 'b' },
uploadExportDatalake : { type : 'b' }
uploadExportDatalake : { type : 'b' },
shopMarkerMetaId : { type : 'n' }
}
);
return result;
Expand Down
37 changes: 37 additions & 0 deletions src/api/types/KalturaIpV6RangeCondition.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaTypesFactory } from '../kaltura-types-factory';
import { KalturaCondition, KalturaConditionArgs } from './KalturaCondition';

export interface KalturaIpV6RangeConditionArgs extends KalturaConditionArgs {
fromIP? : string;
toIP? : string;
}


export class KalturaIpV6RangeCondition extends KalturaCondition {

fromIP : string;
toIP : string;

constructor(data? : KalturaIpV6RangeConditionArgs)
{
super(data);
}

protected _getMetadata() : KalturaObjectMetadata
{
const result = super._getMetadata();
Object.assign(
result.properties,
{
objectType : { type : 'c', default : 'KalturaIpV6RangeCondition' },
fromIP : { type : 's' },
toIP : { type : 's' }
}
);
return result;
}
}

KalturaTypesFactory.registerType('KalturaIpV6RangeCondition',KalturaIpV6RangeCondition);
10 changes: 0 additions & 10 deletions src/api/types/KalturaLiveAsset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ export interface KalturaLiveAssetArgs extends KalturaMediaAssetArgs {
enableCatchUpState? : KalturaTimeShiftedTvState;
enableStartOverState? : KalturaTimeShiftedTvState;
bufferCatchUpSetting? : number;
paddingBeforeProgramStartsSetting? : number;
paddingAfterProgramEndsSetting? : number;
bufferTrickPlaySetting? : number;
enableRecordingPlaybackNonEntitledChannelState? : KalturaTimeShiftedTvState;
enableTrickPlayState? : KalturaTimeShiftedTvState;
Expand All @@ -27,8 +25,6 @@ export class KalturaLiveAsset extends KalturaMediaAsset {
enableCatchUpState : KalturaTimeShiftedTvState;
enableStartOverState : KalturaTimeShiftedTvState;
bufferCatchUpSetting : number;
paddingBeforeProgramStartsSetting : number;
paddingAfterProgramEndsSetting : number;
bufferTrickPlaySetting : number;
enableRecordingPlaybackNonEntitledChannelState : KalturaTimeShiftedTvState;
enableTrickPlayState : KalturaTimeShiftedTvState;
Expand All @@ -38,8 +34,6 @@ export class KalturaLiveAsset extends KalturaMediaAsset {
readonly enableCatchUp : boolean;
readonly enableStartOver : boolean;
readonly catchUpBuffer : number;
readonly paddingBeforeProgramStarts : number;
readonly paddingAfterProgramEnds : number;
readonly trickPlayBuffer : number;
readonly enableRecordingPlaybackNonEntitledChannel : boolean;
readonly enableTrickPlay : boolean;
Expand All @@ -61,8 +55,6 @@ export class KalturaLiveAsset extends KalturaMediaAsset {
enableCatchUpState : { type : 'es', subTypeConstructor : KalturaTimeShiftedTvState, subType : 'KalturaTimeShiftedTvState' },
enableStartOverState : { type : 'es', subTypeConstructor : KalturaTimeShiftedTvState, subType : 'KalturaTimeShiftedTvState' },
bufferCatchUpSetting : { type : 'n' },
paddingBeforeProgramStartsSetting : { type : 'n' },
paddingAfterProgramEndsSetting : { type : 'n' },
bufferTrickPlaySetting : { type : 'n' },
enableRecordingPlaybackNonEntitledChannelState : { type : 'es', subTypeConstructor : KalturaTimeShiftedTvState, subType : 'KalturaTimeShiftedTvState' },
enableTrickPlayState : { type : 'es', subTypeConstructor : KalturaTimeShiftedTvState, subType : 'KalturaTimeShiftedTvState' },
Expand All @@ -72,8 +64,6 @@ export class KalturaLiveAsset extends KalturaMediaAsset {
enableCatchUp : { type : 'b', readOnly : true },
enableStartOver : { type : 'b', readOnly : true },
catchUpBuffer : { type : 'n', readOnly : true },
paddingBeforeProgramStarts : { type : 'n', readOnly : true },
paddingAfterProgramEnds : { type : 'n', readOnly : true },
trickPlayBuffer : { type : 'n', readOnly : true },
enableRecordingPlaybackNonEntitledChannel : { type : 'b', readOnly : true },
enableTrickPlay : { type : 'b', readOnly : true },
Expand Down
45 changes: 0 additions & 45 deletions src/api/types/KalturaLiveToVodFullConfiguration.ts

This file was deleted.

40 changes: 0 additions & 40 deletions src/api/types/KalturaLiveToVodLinearAssetConfiguration.ts

This file was deleted.

40 changes: 0 additions & 40 deletions src/api/types/KalturaLiveToVodPartnerConfiguration.ts

This file was deleted.

1 change: 1 addition & 0 deletions src/api/types/KalturaRuleConditionType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export enum KalturaRuleConditionType {
dynamicKeys = 'DYNAMIC_KEYS',
header = 'HEADER',
ipRange = 'IP_RANGE',
ipV6Range = 'IP_V6_RANGE',
or = 'OR',
segments = 'SEGMENTS',
userRole = 'USER_ROLE',
Expand Down
43 changes: 0 additions & 43 deletions src/api/types/LiveToVodGetConfigurationAction.ts

This file was deleted.

44 changes: 0 additions & 44 deletions src/api/types/LiveToVodGetLinearAssetConfigurationAction.ts

This file was deleted.

Loading

0 comments on commit 5cd2068

Please sign in to comment.