Skip to content

Commit

Permalink
Auto-generated by Jenkins job OTT-Generate-ClientLibs/884, branch BEO…
Browse files Browse the repository at this point in the history
…-11720_linear_channels_updated
  • Loading branch information
Backend CI committed May 12, 2022
1 parent 5cd2068 commit 6865a72
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 136 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.29874 and above.
Compatible with Kaltura OTT server version 7.4.0.29868 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]29874
npm install [email protected]29868
```

**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-29874",
"version": "7.4.0-29868",
"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 IotProfileGetActionArgs extends KalturaRequestArgs {
export interface IotProfileDeleteActionArgs extends KalturaRequestArgs {
id : number;
}

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

id : number;

constructor(data : IotProfileGetActionArgs)
constructor(data : IotProfileDeleteActionArgs)
{
super(data, {responseType : 'o', responseSubType : 'KalturaIotProfile', responseConstructor : KalturaIotProfile });
}
Expand All @@ -34,7 +34,7 @@ export class IotProfileGetAction extends KalturaRequest<KalturaIotProfile> {
result.properties,
{
service : { type : 'c', default : 'iotprofile' },
action : { type : 'c', default : 'get' },
action : { type : 'c', default : 'delete' },
id : { type : 'n' }
}
);
Expand Down
6 changes: 3 additions & 3 deletions src/api/types/KalturaAssetCondition.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

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

export interface KalturaAssetConditionArgs extends KalturaAssetConditionBaseArgs {
export interface KalturaAssetConditionArgs extends KalturaConditionArgs {
ksql? : string;
}


export class KalturaAssetCondition extends KalturaAssetConditionBase {
export class KalturaAssetCondition extends KalturaCondition {

ksql : string;

Expand Down
33 changes: 0 additions & 33 deletions src/api/types/KalturaAssetConditionBase.ts

This file was deleted.

34 changes: 0 additions & 34 deletions src/api/types/KalturaAssetShopCondition.ts

This file was deleted.

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

import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaTypesFactory } from '../kaltura-types-factory';
import { KalturaAssetConditionBase } from './KalturaAssetConditionBase';
import { KalturaAssetCondition } from './KalturaAssetCondition';
import { KalturaAssetUserRuleAction } from './KalturaAssetUserRuleAction';
import { KalturaAssetRuleBase, KalturaAssetRuleBaseArgs } from './KalturaAssetRuleBase';

export interface KalturaAssetUserRuleArgs extends KalturaAssetRuleBaseArgs {
conditions? : KalturaAssetConditionBase[];
conditions? : KalturaAssetCondition[];
actions? : KalturaAssetUserRuleAction[];
}


export class KalturaAssetUserRule extends KalturaAssetRuleBase {

conditions : KalturaAssetConditionBase[];
conditions : KalturaAssetCondition[];
actions : KalturaAssetUserRuleAction[];

constructor(data? : KalturaAssetUserRuleArgs)
Expand All @@ -30,7 +30,7 @@ export class KalturaAssetUserRule extends KalturaAssetRuleBase {
result.properties,
{
objectType : { type : 'c', default : 'KalturaAssetUserRule' },
conditions : { type : 'a', subTypeConstructor : KalturaAssetConditionBase, subType : 'KalturaAssetConditionBase' },
conditions : { type : 'a', subTypeConstructor : KalturaAssetCondition, subType : 'KalturaAssetCondition' },
actions : { type : 'a', subTypeConstructor : KalturaAssetUserRuleAction, subType : 'KalturaAssetUserRuleAction' }
}
);
Expand Down
6 changes: 1 addition & 5 deletions src/api/types/KalturaAssetUserRuleFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,18 @@
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaTypesFactory } from '../kaltura-types-factory';
import { KalturaRuleActionType } from './KalturaRuleActionType';
import { KalturaRuleConditionType } from './KalturaRuleConditionType';
import { KalturaFilter, KalturaFilterArgs } from './KalturaFilter';

export interface KalturaAssetUserRuleFilterArgs extends KalturaFilterArgs {
attachedUserIdEqualCurrent? : boolean;
actionsContainType? : KalturaRuleActionType;
conditionsContainType? : KalturaRuleConditionType;
}


export class KalturaAssetUserRuleFilter extends KalturaFilter {

attachedUserIdEqualCurrent : boolean;
actionsContainType : KalturaRuleActionType;
conditionsContainType : KalturaRuleConditionType;

constructor(data? : KalturaAssetUserRuleFilterArgs)
{
Expand All @@ -31,8 +28,7 @@ export class KalturaAssetUserRuleFilter extends KalturaFilter {
{
objectType : { type : 'c', default : 'KalturaAssetUserRuleFilter' },
attachedUserIdEqualCurrent : { type : 'b' },
actionsContainType : { type : 'es', subTypeConstructor : KalturaRuleActionType, subType : 'KalturaRuleActionType' },
conditionsContainType : { type : 'es', subTypeConstructor : KalturaRuleConditionType, subType : 'KalturaRuleConditionType' }
actionsContainType : { type : 'es', subTypeConstructor : KalturaRuleActionType, subType : 'KalturaRuleActionType' }
}
);
return result;
Expand Down
5 changes: 1 addition & 4 deletions src/api/types/KalturaCatalogPartnerConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export interface KalturaCatalogPartnerConfigArgs extends KalturaPartnerConfigur
categoryManagement? : KalturaCategoryManagement;
epgMultilingualFallbackSupport? : boolean;
uploadExportDatalake? : boolean;
shopMarkerMetaId? : number;
}


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

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

This file was deleted.

10 changes: 10 additions & 0 deletions src/api/types/KalturaLiveAsset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export interface KalturaLiveAssetArgs extends KalturaMediaAssetArgs {
enableCatchUpState? : KalturaTimeShiftedTvState;
enableStartOverState? : KalturaTimeShiftedTvState;
bufferCatchUpSetting? : number;
paddingBeforeProgramStartsSetting? : number;
paddingAfterProgramEndsSetting? : number;
bufferTrickPlaySetting? : number;
enableRecordingPlaybackNonEntitledChannelState? : KalturaTimeShiftedTvState;
enableTrickPlayState? : KalturaTimeShiftedTvState;
Expand All @@ -25,6 +27,8 @@ export class KalturaLiveAsset extends KalturaMediaAsset {
enableCatchUpState : KalturaTimeShiftedTvState;
enableStartOverState : KalturaTimeShiftedTvState;
bufferCatchUpSetting : number;
paddingBeforeProgramStartsSetting : number;
paddingAfterProgramEndsSetting : number;
bufferTrickPlaySetting : number;
enableRecordingPlaybackNonEntitledChannelState : KalturaTimeShiftedTvState;
enableTrickPlayState : KalturaTimeShiftedTvState;
Expand All @@ -34,6 +38,8 @@ 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 @@ -55,6 +61,8 @@ 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 @@ -64,6 +72,8 @@ 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
2 changes: 0 additions & 2 deletions src/api/types/KalturaRuleConditionType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

export enum KalturaRuleConditionType {
asset = 'ASSET',
assetShop = 'ASSET_SHOP',
assetSubscription = 'ASSET_SUBSCRIPTION',
businessModule = 'BUSINESS_MODULE',
concurrency = 'CONCURRENCY',
Expand All @@ -17,7 +16,6 @@ export enum KalturaRuleConditionType {
dynamicKeys = 'DYNAMIC_KEYS',
header = 'HEADER',
ipRange = 'IP_RANGE',
ipV6Range = 'IP_V6_RANGE',
or = 'OR',
segments = 'SEGMENTS',
userRole = 'USER_ROLE',
Expand Down
7 changes: 2 additions & 5 deletions src/api/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,16 +253,14 @@ export { KalturaCondition, KalturaConditionArgs } from './KalturaCondition'
export { KalturaRuleAction, KalturaRuleActionArgs } from './KalturaRuleAction'
export { KalturaAssetRuleAction, KalturaAssetRuleActionArgs } from './KalturaAssetRuleAction'
export { KalturaAssetRule, KalturaAssetRuleArgs } from './KalturaAssetRule'
export { KalturaAssetConditionBase, KalturaAssetConditionBaseArgs } from './KalturaAssetConditionBase'
export { KalturaAssetCondition, KalturaAssetConditionArgs } from './KalturaAssetCondition'
export { KalturaAssetUserRuleAction, KalturaAssetUserRuleActionArgs } from './KalturaAssetUserRuleAction'
export { KalturaAssetUserRule, KalturaAssetUserRuleArgs } from './KalturaAssetUserRule'
export { KalturaAssetShopCondition, KalturaAssetShopConditionArgs } from './KalturaAssetShopCondition'
export { KalturaNotCondition, KalturaNotConditionArgs } from './KalturaNotCondition'
export { KalturaOrCondition, KalturaOrConditionArgs } from './KalturaOrCondition'
export { KalturaCountryCondition, KalturaCountryConditionArgs } from './KalturaCountryCondition'
export { KalturaDateCondition, KalturaDateConditionArgs } from './KalturaDateCondition'
export { KalturaHeaderCondition, KalturaHeaderConditionArgs } from './KalturaHeaderCondition'
export { KalturaAssetCondition, KalturaAssetConditionArgs } from './KalturaAssetCondition'
export { KalturaConcurrencyCondition, KalturaConcurrencyConditionArgs } from './KalturaConcurrencyCondition'
export { KalturaIpRangeCondition, KalturaIpRangeConditionArgs } from './KalturaIpRangeCondition'
export { KalturaBusinessModuleCondition, KalturaBusinessModuleConditionArgs } from './KalturaBusinessModuleCondition'
Expand All @@ -279,7 +277,6 @@ export { KalturaUdidDynamicListCondition, KalturaUdidDynamicListConditionArgs }
export { KalturaDynamicKeysCondition, KalturaDynamicKeysConditionArgs } from './KalturaDynamicKeysCondition'
export { KalturaDeviceDynamicDataCondition, KalturaDeviceDynamicDataConditionArgs } from './KalturaDeviceDynamicDataCondition'
export { KalturaUserSessionProfileCondition, KalturaUserSessionProfileConditionArgs } from './KalturaUserSessionProfileCondition'
export { KalturaIpV6RangeCondition, KalturaIpV6RangeConditionArgs } from './KalturaIpV6RangeCondition'
export { KalturaAccessControlBlockAction, KalturaAccessControlBlockActionArgs } from './KalturaAccessControlBlockAction'
export { KalturaAllowPlaybackAction, KalturaAllowPlaybackActionArgs } from './KalturaAllowPlaybackAction'
export { KalturaApplyPlaybackAdapterAction, KalturaApplyPlaybackAdapterActionArgs } from './KalturaApplyPlaybackAdapterAction'
Expand Down Expand Up @@ -1278,7 +1275,7 @@ export { IngestStatusUpdatePartnerConfigurationAction, IngestStatusUpdatePartner
export { IotGetClientConfigurationAction, IotGetClientConfigurationActionArgs } from './IotGetClientConfigurationAction'
export { IotRegisterAction, IotRegisterActionArgs } from './IotRegisterAction'
export { IotProfileAddAction, IotProfileAddActionArgs } from './IotProfileAddAction'
export { IotProfileGetAction, IotProfileGetActionArgs } from './IotProfileGetAction'
export { IotProfileDeleteAction, IotProfileDeleteActionArgs } from './IotProfileDeleteAction'
export { IotProfileUpdateAction, IotProfileUpdateActionArgs } from './IotProfileUpdateAction'
export { LabelAddAction, LabelAddActionArgs } from './LabelAddAction'
export { LabelDeleteAction, LabelDeleteActionArgs } from './LabelDeleteAction'
Expand Down
2 changes: 1 addition & 1 deletion src/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface Environment {

export const environment: Environment = {
request: {
apiVersion: '7.4.0.29874',
apiVersion: '7.4.0.29868',
ottMode: true,
fileFormatValue: 20
},
Expand Down

0 comments on commit 6865a72

Please sign in to comment.