-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-generated by Jenkins job OTT-Generate-ClientLibs/873, branch master
- Loading branch information
Backend CI
committed
May 1, 2022
1 parent
2cac46c
commit 5cd2068
Showing
17 changed files
with
53 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
@@ -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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
44 changes: 0 additions & 44 deletions
44
src/api/types/LiveToVodGetLinearAssetConfigurationAction.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.