Skip to content

Commit

Permalink
Auto-generated by Jenkins job OTT-Generate-ClientLibs/796, branch 7_3_1
Browse files Browse the repository at this point in the history
  • Loading branch information
Backend CI committed Feb 26, 2022
1 parent 2ea2e53 commit 08f2e44
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 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.2.0.29784 and above.
Compatible with Kaltura OTT server version 7.3.0.29805 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 kaltura-ott-typescript-client@7.2.0-29784
npm install kaltura-ott-typescript-client@7.3.0-29805
```

**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.2.0-29784",
"version": "7.3.0-29805",
"description": "Kaltura OTT Typescript client",
"keywords": [
"Kaltura"
Expand Down
4 changes: 3 additions & 1 deletion src/api/types/KalturaPrice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export interface KalturaPriceArgs extends KalturaObjectBaseArgs {

export class KalturaPrice extends KalturaObjectBase {

amount : number;
readonly currencyId : number;
amount : number;
currency : string;
currencySign : string;
countryId : number;
Expand All @@ -30,6 +31,7 @@ export class KalturaPrice extends KalturaObjectBase {
result.properties,
{
objectType : { type : 'c', default : 'KalturaPrice' },
currencyId : { type : 'n', readOnly : true },
amount : { type : 'n' },
currency : { type : 's' },
currencySign : { type : 's' },
Expand Down
5 changes: 4 additions & 1 deletion src/api/types/KalturaTimeShiftedTvPartnerSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export interface KalturaTimeShiftedTvPartnerSettingsArgs extends KalturaObjectB
protectionPolicy? : KalturaProtectionPolicy;
recoveryGracePeriod? : number;
privateCopyEnabled? : boolean;
defaultQuota? : number;
}


Expand Down Expand Up @@ -55,6 +56,7 @@ export class KalturaTimeShiftedTvPartnerSettings extends KalturaObjectBase {
protectionPolicy : KalturaProtectionPolicy;
recoveryGracePeriod : number;
privateCopyEnabled : boolean;
defaultQuota : number;

constructor(data? : KalturaTimeShiftedTvPartnerSettingsArgs)
{
Expand Down Expand Up @@ -89,7 +91,8 @@ export class KalturaTimeShiftedTvPartnerSettings extends KalturaObjectBase {
quotaOveragePolicy : { type : 'es', subTypeConstructor : KalturaQuotaOveragePolicy, subType : 'KalturaQuotaOveragePolicy' },
protectionPolicy : { type : 'es', subTypeConstructor : KalturaProtectionPolicy, subType : 'KalturaProtectionPolicy' },
recoveryGracePeriod : { type : 'n' },
privateCopyEnabled : { type : 'b' }
privateCopyEnabled : { type : 'b' },
defaultQuota : { type : 'n' }
}
);
return result;
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.2.0.29784',
apiVersion: '7.3.0.29805',
ottMode: true,
fileFormatValue: 20
},
Expand Down

0 comments on commit 08f2e44

Please sign in to comment.