Skip to content

Commit

Permalink
Auto-generated by Jenkins job OTT-Generate-ClientLibs/964, branch BEO…
Browse files Browse the repository at this point in the history
…-11915-Segmentation
  • Loading branch information
Backend CI committed Sep 14, 2022
1 parent 1bfc4fc commit 0009921
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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 8.0.0.30032 and above.
Compatible with Kaltura OTT server version 8.0.0.30035 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]30032
npm install [email protected]30035
```

**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": "8.0.0-30032",
"version": "8.0.0-30035",
"description": "Kaltura OTT Typescript client",
"keywords": [
"Kaltura"
Expand Down
6 changes: 3 additions & 3 deletions src/api/types/KalturaCampaignSegmentFilter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import { KalturaTypesFactory } from '../kaltura-types-factory';
import { KalturaCampaignSearchFilter, KalturaCampaignSearchFilterArgs } from './KalturaCampaignSearchFilter';

export interface KalturaCampaignSegmentFilterArgs extends KalturaCampaignSearchFilterArgs {
segmentIdIn? : string;
segmentIdEqual? : number;
}


export class KalturaCampaignSegmentFilter extends KalturaCampaignSearchFilter {

segmentIdIn : string;
segmentIdEqual : number;

constructor(data? : KalturaCampaignSegmentFilterArgs)
{
Expand All @@ -24,7 +24,7 @@ export class KalturaCampaignSegmentFilter extends KalturaCampaignSearchFilter {
result.properties,
{
objectType : { type : 'c', default : 'KalturaCampaignSegmentFilter' },
segmentIdIn : { type : 's' }
segmentIdEqual : { 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: '8.0.0.30032',
apiVersion: '8.0.0.30035',
ottMode: true,
fileFormatValue: 20
},
Expand Down

0 comments on commit 0009921

Please sign in to comment.