-
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/780, branch 710…
…_BEO-11144_PAGO_New
- Loading branch information
Backend CI
committed
Feb 2, 2022
1 parent
d63f1ed
commit eda5173
Showing
13 changed files
with
181 additions
and
6 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.2.0.29748 and above. | ||
Compatible with Kaltura OTT server version 7.2.0.29783 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]29748 | ||
npm install [email protected]29783 | ||
``` | ||
|
||
**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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaMetaTagOrderBy } from './KalturaMetaTagOrderBy'; | ||
import { KalturaBaseAssetOrder, KalturaBaseAssetOrderArgs } from './KalturaBaseAssetOrder'; | ||
|
||
export interface KalturaAssetDynamicOrderArgs extends KalturaBaseAssetOrderArgs { | ||
name? : string; | ||
orderBy? : KalturaMetaTagOrderBy; | ||
} | ||
|
||
|
||
export class KalturaAssetDynamicOrder extends KalturaBaseAssetOrder { | ||
|
||
name : string; | ||
orderBy : KalturaMetaTagOrderBy; | ||
|
||
constructor(data? : KalturaAssetDynamicOrderArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaAssetDynamicOrder' }, | ||
name : { type : 's' }, | ||
orderBy : { type : 'es', subTypeConstructor : KalturaMetaTagOrderBy, subType : 'KalturaMetaTagOrderBy' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaAssetDynamicOrder',KalturaAssetDynamicOrder); |
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,35 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaAssetOrderByType } from './KalturaAssetOrderByType'; | ||
import { KalturaBaseAssetOrder, KalturaBaseAssetOrderArgs } from './KalturaBaseAssetOrder'; | ||
|
||
export interface KalturaAssetOrderArgs extends KalturaBaseAssetOrderArgs { | ||
orderBy? : KalturaAssetOrderByType; | ||
} | ||
|
||
|
||
export class KalturaAssetOrder extends KalturaBaseAssetOrder { | ||
|
||
orderBy : KalturaAssetOrderByType; | ||
|
||
constructor(data? : KalturaAssetOrderArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaAssetOrder' }, | ||
orderBy : { type : 'es', subTypeConstructor : KalturaAssetOrderByType, subType : 'KalturaAssetOrderByType' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaAssetOrder',KalturaAssetOrder); |
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,5 @@ | ||
|
||
|
||
export enum KalturaAssetOrderByStatistics { | ||
viewsDesc = 'VIEWS_DESC' | ||
} |
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,14 @@ | ||
|
||
|
||
export enum KalturaAssetOrderByType { | ||
createDateAsc = 'CREATE_DATE_ASC', | ||
createDateDesc = 'CREATE_DATE_DESC', | ||
likesDesc = 'LIKES_DESC', | ||
nameAsc = 'NAME_ASC', | ||
nameDesc = 'NAME_DESC', | ||
ratingsDesc = 'RATINGS_DESC', | ||
relevancyDesc = 'RELEVANCY_DESC', | ||
startDateAsc = 'START_DATE_ASC', | ||
startDateDesc = 'START_DATE_DESC', | ||
votesDesc = 'VOTES_DESC' | ||
} |
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,38 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaAssetOrderByStatistics } from './KalturaAssetOrderByStatistics'; | ||
import { KalturaBaseAssetOrder, KalturaBaseAssetOrderArgs } from './KalturaBaseAssetOrder'; | ||
|
||
export interface KalturaAssetStatisticsOrderArgs extends KalturaBaseAssetOrderArgs { | ||
trendingDaysEqual? : number; | ||
orderBy? : KalturaAssetOrderByStatistics; | ||
} | ||
|
||
|
||
export class KalturaAssetStatisticsOrder extends KalturaBaseAssetOrder { | ||
|
||
trendingDaysEqual : number; | ||
orderBy : KalturaAssetOrderByStatistics; | ||
|
||
constructor(data? : KalturaAssetStatisticsOrderArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaAssetStatisticsOrder' }, | ||
trendingDaysEqual : { type : 'n' }, | ||
orderBy : { type : 'es', subTypeConstructor : KalturaAssetOrderByStatistics, subType : 'KalturaAssetOrderByStatistics' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaAssetStatisticsOrder',KalturaAssetStatisticsOrder); |
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,33 @@ | ||
|
||
import { KalturaObjectMetadata } from '../kaltura-object-base'; | ||
import { KalturaTypesFactory } from '../kaltura-types-factory'; | ||
import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; | ||
|
||
export interface KalturaBaseAssetOrderArgs extends KalturaObjectBaseArgs { | ||
|
||
} | ||
|
||
|
||
export class KalturaBaseAssetOrder extends KalturaObjectBase { | ||
|
||
|
||
|
||
constructor(data? : KalturaBaseAssetOrderArgs) | ||
{ | ||
super(data); | ||
} | ||
|
||
protected _getMetadata() : KalturaObjectMetadata | ||
{ | ||
const result = super._getMetadata(); | ||
Object.assign( | ||
result.properties, | ||
{ | ||
objectType : { type : 'c', default : 'KalturaBaseAssetOrder' } | ||
} | ||
); | ||
return result; | ||
} | ||
} | ||
|
||
KalturaTypesFactory.registerType('KalturaBaseAssetOrder',KalturaBaseAssetOrder); |
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