Skip to content

Commit

Permalink
Auto-generated by Jenkins job OTT-Generate-ClientLibs/940, branch master
Browse files Browse the repository at this point in the history
  • Loading branch information
Backend CI committed Jul 21, 2022
1 parent 3997786 commit c5a85a6
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 61 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.8.0.29957 and above.
Compatible with Kaltura OTT server version 7.8.1.29972 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].0-29957
npm install [email protected].1-29972
```

**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.8.0-29957",
"version": "7.8.1-29972",
"description": "Kaltura OTT Typescript client",
"keywords": [
"Kaltura"
Expand Down
6 changes: 5 additions & 1 deletion src/api/types/KalturaBookmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaTypesFactory } from '../kaltura-types-factory';
import { KalturaPositionOwner } from './KalturaPositionOwner';
import { KalturaBookmarkPlayerData } from './KalturaBookmarkPlayerData';
import { KalturaPlaybackContextType } from './KalturaPlaybackContextType';
import { KalturaSlimAsset, KalturaSlimAssetArgs } from './KalturaSlimAsset';

export interface KalturaBookmarkArgs extends KalturaSlimAssetArgs {
position? : number;
playerData? : KalturaBookmarkPlayerData;
programId? : number;
isReportingMode? : boolean;
context? : KalturaPlaybackContextType;
}


Expand All @@ -22,6 +24,7 @@ export class KalturaBookmark extends KalturaSlimAsset {
playerData : KalturaBookmarkPlayerData;
programId : number;
isReportingMode : boolean;
context : KalturaPlaybackContextType;

constructor(data? : KalturaBookmarkArgs)
{
Expand All @@ -41,7 +44,8 @@ export class KalturaBookmark extends KalturaSlimAsset {
finishedWatching : { type : 'b', readOnly : true },
playerData : { type : 'o', subTypeConstructor : KalturaBookmarkPlayerData, subType : 'KalturaBookmarkPlayerData' },
programId : { type : 'n' },
isReportingMode : { type : 'b' }
isReportingMode : { type : 'b' },
context : { type : 'es', subTypeConstructor : KalturaPlaybackContextType, subType : 'KalturaPlaybackContextType' }
}
);
return result;
Expand Down
5 changes: 1 addition & 4 deletions src/api/types/KalturaConcurrencyPartnerConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export interface KalturaConcurrencyPartnerConfigArgs extends KalturaPartnerConf
evictionPolicy? : KalturaEvictionPolicyType;
concurrencyThresholdInSeconds? : number;
revokeOnDeviceDelete? : boolean;
excludeFreeContentFromConcurrency? : boolean;
}


Expand All @@ -19,7 +18,6 @@ export class KalturaConcurrencyPartnerConfig extends KalturaPartnerConfiguration
evictionPolicy : KalturaEvictionPolicyType;
concurrencyThresholdInSeconds : number;
revokeOnDeviceDelete : boolean;
excludeFreeContentFromConcurrency : boolean;

constructor(data? : KalturaConcurrencyPartnerConfigArgs)
{
Expand All @@ -36,8 +34,7 @@ export class KalturaConcurrencyPartnerConfig extends KalturaPartnerConfiguration
deviceFamilyIds : { type : 's' },
evictionPolicy : { type : 'es', subTypeConstructor : KalturaEvictionPolicyType, subType : 'KalturaEvictionPolicyType' },
concurrencyThresholdInSeconds : { type : 'n' },
revokeOnDeviceDelete : { type : 'b' },
excludeFreeContentFromConcurrency : { type : 'b' }
revokeOnDeviceDelete : { type : 'b' }
}
);
return result;
Expand Down
51 changes: 0 additions & 51 deletions src/api/types/StreamingDeviceBookPlaybackSessionAction.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/api/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1508,7 +1508,6 @@ export { SsoAdapterProfileGenerateSharedSecretAction, SsoAdapterProfileGenerateS
export { SsoAdapterProfileInvokeAction, SsoAdapterProfileInvokeActionArgs } from './SsoAdapterProfileInvokeAction'
export { SsoAdapterProfileListAction, SsoAdapterProfileListActionArgs } from './SsoAdapterProfileListAction'
export { SsoAdapterProfileUpdateAction, SsoAdapterProfileUpdateActionArgs } from './SsoAdapterProfileUpdateAction'
export { StreamingDeviceBookPlaybackSessionAction, StreamingDeviceBookPlaybackSessionActionArgs } from './StreamingDeviceBookPlaybackSessionAction'
export { StreamingDeviceListAction, StreamingDeviceListActionArgs } from './StreamingDeviceListAction'
export { SubscriptionAddAction, SubscriptionAddActionArgs } from './SubscriptionAddAction'
export { SubscriptionDeleteAction, SubscriptionDeleteActionArgs } from './SubscriptionDeleteAction'
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.8.0.29957',
apiVersion: '7.8.1.29972',
ottMode: true,
fileFormatValue: 20
},
Expand Down

0 comments on commit c5a85a6

Please sign in to comment.