diff --git a/README.md b/README.md index fc7093f4..7567481f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Kaltura OTT Typescript Client -Compatible with Kaltura OTT server version 7.9.0.29981 and above. +Compatible with Kaltura OTT server version 7.9.0.30000 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 kaltura-ott-typescript-client@7.9.0-29981 +npm install kaltura-ott-typescript-client@7.9.0-30000 ``` **Found a bug?** create [kaltura/clients-generator issue](https://github.com/kaltura/clients-generator/issues) diff --git a/package.json b/package.json index 041061fb..c56d8b0a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "kaltura-ott-typescript-client", "private": true, - "version": "7.9.0-29981", + "version": "7.9.0-30000", "description": "Kaltura OTT Typescript client", "keywords": [ "Kaltura" diff --git a/src/api/types/IotProfileAddAction.ts b/src/api/types/IotProfileAddAction.ts index e273faf5..086df3af 100644 --- a/src/api/types/IotProfileAddAction.ts +++ b/src/api/types/IotProfileAddAction.ts @@ -1,30 +1,30 @@ import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaIotProfile } from './KalturaIotProfile'; + import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface IotProfileAddActionArgs extends KalturaRequestArgs { - objectToAdd : KalturaIotProfile; + } /** * Build request payload for service 'iotProfile' action 'add'. * - * Usage: Add new KalturaIotProfile + * Usage: Add new environment in aws * - * Server response type: KalturaIotProfile + * Server response type: boolean * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ -export class IotProfileAddAction extends KalturaRequest { +export class IotProfileAddAction extends KalturaRequest { - objectToAdd : KalturaIotProfile; + - constructor(data : IotProfileAddActionArgs) + constructor(data? : IotProfileAddActionArgs) { - super(data, {responseType : 'o', responseSubType : 'KalturaIotProfile', responseConstructor : KalturaIotProfile }); + super(data, {responseType : 'b', responseSubType : '', responseConstructor : null }); } protected _getMetadata() : KalturaObjectMetadata @@ -34,8 +34,7 @@ export class IotProfileAddAction extends KalturaRequest { result.properties, { service : { type : 'c', default : 'iotprofile' }, - action : { type : 'c', default : 'add' }, - objectToAdd : { type : 'o', subTypeConstructor : KalturaIotProfile, subType : 'KalturaIotProfile' } + action : { type : 'c', default : 'add' } } ); return result; diff --git a/src/api/types/IotProfileGetAction.ts b/src/api/types/IotProfileGetAction.ts deleted file mode 100644 index 66c40c5a..00000000 --- a/src/api/types/IotProfileGetAction.ts +++ /dev/null @@ -1,44 +0,0 @@ - -import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaIotProfile } from './KalturaIotProfile'; - -import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; - -export interface IotProfileGetActionArgs extends KalturaRequestArgs { - id : number; -} - -/** - * Build request payload for service 'iotProfile' action 'get'. - * - * Usage: Get existing KalturaIotProfile - * - * Server response type: KalturaIotProfile - * Server failure response type: KalturaAPIException - * @class - * @extends KalturaRequest - */ -export class IotProfileGetAction extends KalturaRequest { - - id : number; - - constructor(data : IotProfileGetActionArgs) - { - super(data, {responseType : 'o', responseSubType : 'KalturaIotProfile', responseConstructor : KalturaIotProfile }); - } - - protected _getMetadata() : KalturaObjectMetadata - { - const result = super._getMetadata(); - Object.assign( - result.properties, - { - service : { type : 'c', default : 'iotprofile' }, - action : { type : 'c', default : 'get' }, - id : { type : 'n' } - } - ); - return result; - } -} - diff --git a/src/api/types/IotProfileUpdateAction.ts b/src/api/types/IotProfileUpdateAction.ts deleted file mode 100644 index c07071b9..00000000 --- a/src/api/types/IotProfileUpdateAction.ts +++ /dev/null @@ -1,47 +0,0 @@ - -import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaIotProfile } from './KalturaIotProfile'; - -import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; - -export interface IotProfileUpdateActionArgs extends KalturaRequestArgs { - id : number; - objectToUpdate : KalturaIotProfile; -} - -/** - * Build request payload for service 'iotProfile' action 'update'. - * - * Usage: Update existing KalturaIotProfile - * - * Server response type: KalturaIotProfile - * Server failure response type: KalturaAPIException - * @class - * @extends KalturaRequest - */ -export class IotProfileUpdateAction extends KalturaRequest { - - id : number; - objectToUpdate : KalturaIotProfile; - - constructor(data : IotProfileUpdateActionArgs) - { - super(data, {responseType : 'o', responseSubType : 'KalturaIotProfile', responseConstructor : KalturaIotProfile }); - } - - protected _getMetadata() : KalturaObjectMetadata - { - const result = super._getMetadata(); - Object.assign( - result.properties, - { - service : { type : 'c', default : 'iotprofile' }, - action : { type : 'c', default : 'update' }, - id : { type : 'n' }, - objectToUpdate : { type : 'o', subTypeConstructor : KalturaIotProfile, subType : 'KalturaIotProfile' } - } - ); - return result; - } -} - diff --git a/src/api/types/IotRegisterAction.ts b/src/api/types/IotRegisterAction.ts index 0a293664..1225c435 100644 --- a/src/api/types/IotRegisterAction.ts +++ b/src/api/types/IotRegisterAction.ts @@ -1,6 +1,6 @@ import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaIot } from './KalturaIot'; + import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; @@ -13,18 +13,18 @@ export interface IotRegisterActionArgs extends KalturaRequestArgs { * * Usage: Register IOT device * - * Server response type: KalturaIot + * Server response type: boolean * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ -export class IotRegisterAction extends KalturaRequest { +export class IotRegisterAction extends KalturaRequest { constructor(data? : IotRegisterActionArgs) { - super(data, {responseType : 'o', responseSubType : 'KalturaIot', responseConstructor : KalturaIot }); + super(data, {responseType : 'b', responseSubType : '', responseConstructor : null }); } protected _getMetadata() : KalturaObjectMetadata diff --git a/src/api/types/KalturaBooleanOperator.ts b/src/api/types/KalturaBooleanOperator.ts deleted file mode 100644 index b069b287..00000000 --- a/src/api/types/KalturaBooleanOperator.ts +++ /dev/null @@ -1,6 +0,0 @@ - - -export enum KalturaBooleanOperator { - and = 'And', - or = 'Or' -} \ No newline at end of file diff --git a/src/api/types/KalturaCognitoIdentity.ts b/src/api/types/KalturaCognitoIdentity.ts deleted file mode 100644 index 1e4732f2..00000000 --- a/src/api/types/KalturaCognitoIdentity.ts +++ /dev/null @@ -1,35 +0,0 @@ - -import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaTypesFactory } from '../kaltura-types-factory'; -import { KalturaIotDefault } from './KalturaIotDefault'; -import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; - -export interface KalturaCognitoIdentityArgs extends KalturaObjectBaseArgs { - iotDefault? : KalturaIotDefault; -} - - -export class KalturaCognitoIdentity extends KalturaObjectBase { - - iotDefault : KalturaIotDefault; - - constructor(data? : KalturaCognitoIdentityArgs) - { - super(data); - } - - protected _getMetadata() : KalturaObjectMetadata - { - const result = super._getMetadata(); - Object.assign( - result.properties, - { - objectType : { type : 'c', default : 'KalturaCognitoIdentity' }, - iotDefault : { type : 'o', subTypeConstructor : KalturaIotDefault, subType : 'KalturaIotDefault' } - } - ); - return result; - } -} - -KalturaTypesFactory.registerType('KalturaCognitoIdentity',KalturaCognitoIdentity); diff --git a/src/api/types/KalturaCognitoUserPool.ts b/src/api/types/KalturaCognitoUserPool.ts deleted file mode 100644 index 269ac0ce..00000000 --- a/src/api/types/KalturaCognitoUserPool.ts +++ /dev/null @@ -1,35 +0,0 @@ - -import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaTypesFactory } from '../kaltura-types-factory'; -import { KalturaIotDefault } from './KalturaIotDefault'; -import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; - -export interface KalturaCognitoUserPoolArgs extends KalturaObjectBaseArgs { - iotDefault? : KalturaIotDefault; -} - - -export class KalturaCognitoUserPool extends KalturaObjectBase { - - iotDefault : KalturaIotDefault; - - constructor(data? : KalturaCognitoUserPoolArgs) - { - super(data); - } - - protected _getMetadata() : KalturaObjectMetadata - { - const result = super._getMetadata(); - Object.assign( - result.properties, - { - objectType : { type : 'c', default : 'KalturaCognitoUserPool' }, - iotDefault : { type : 'o', subTypeConstructor : KalturaIotDefault, subType : 'KalturaIotDefault' } - } - ); - return result; - } -} - -KalturaTypesFactory.registerType('KalturaCognitoUserPool',KalturaCognitoUserPool); diff --git a/src/api/types/KalturaCredentialsProvider.ts b/src/api/types/KalturaCredentialsProvider.ts deleted file mode 100644 index d32d211e..00000000 --- a/src/api/types/KalturaCredentialsProvider.ts +++ /dev/null @@ -1,35 +0,0 @@ - -import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaTypesFactory } from '../kaltura-types-factory'; -import { KalturaCognitoIdentity } from './KalturaCognitoIdentity'; -import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; - -export interface KalturaCredentialsProviderArgs extends KalturaObjectBaseArgs { - cognitoIdentity? : KalturaCognitoIdentity; -} - - -export class KalturaCredentialsProvider extends KalturaObjectBase { - - cognitoIdentity : KalturaCognitoIdentity; - - constructor(data? : KalturaCredentialsProviderArgs) - { - super(data); - } - - protected _getMetadata() : KalturaObjectMetadata - { - const result = super._getMetadata(); - Object.assign( - result.properties, - { - objectType : { type : 'c', default : 'KalturaCredentialsProvider' }, - cognitoIdentity : { type : 'o', subTypeConstructor : KalturaCognitoIdentity, subType : 'KalturaCognitoIdentity' } - } - ); - return result; - } -} - -KalturaTypesFactory.registerType('KalturaCredentialsProvider',KalturaCredentialsProvider); diff --git a/src/api/types/KalturaIotClientConfiguration.ts b/src/api/types/KalturaIotClientConfiguration.ts index c342e3e2..f0f0d13f 100644 --- a/src/api/types/KalturaIotClientConfiguration.ts +++ b/src/api/types/KalturaIotClientConfiguration.ts @@ -1,30 +1,48 @@ import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaTypesFactory } from '../kaltura-types-factory'; -import { KalturaCredentialsProvider } from './KalturaCredentialsProvider'; -import { KalturaCognitoUserPool } from './KalturaCognitoUserPool'; +import { KalturaStringValue } from './KalturaStringValue'; import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; export interface KalturaIotClientConfigurationArgs extends KalturaObjectBaseArgs { - announcementTopic? : string; - credentialsProvider? : KalturaCredentialsProvider; - cognitoUserPool? : KalturaCognitoUserPool; - json? : string; - topics? : string; + identityPoolId? : string; + userPoolId? : string; + awsRegion? : string; + appClientId? : string; + legacyEndPoint? : string; + endPoint? : string; + thingName? : string; + thingArn? : string; + thingId? : string; + username? : string; + password? : string; + topics? : KalturaStringValue[]; + status? : string; + message? : string; } export class KalturaIotClientConfiguration extends KalturaObjectBase { - announcementTopic : string; - credentialsProvider : KalturaCredentialsProvider; - cognitoUserPool : KalturaCognitoUserPool; - json : string; - topics : string; + identityPoolId : string; + userPoolId : string; + awsRegion : string; + appClientId : string; + legacyEndPoint : string; + endPoint : string; + thingName : string; + thingArn : string; + thingId : string; + username : string; + password : string; + topics : KalturaStringValue[]; + status : string; + message : string; constructor(data? : KalturaIotClientConfigurationArgs) { super(data); + if (typeof this.topics === 'undefined') this.topics = []; } protected _getMetadata() : KalturaObjectMetadata @@ -34,11 +52,20 @@ export class KalturaIotClientConfiguration extends KalturaObjectBase { result.properties, { objectType : { type : 'c', default : 'KalturaIotClientConfiguration' }, - announcementTopic : { type : 's' }, - credentialsProvider : { type : 'o', subTypeConstructor : KalturaCredentialsProvider, subType : 'KalturaCredentialsProvider' }, - cognitoUserPool : { type : 'o', subTypeConstructor : KalturaCognitoUserPool, subType : 'KalturaCognitoUserPool' }, - json : { type : 's' }, - topics : { type : 's' } + identityPoolId : { type : 's' }, + userPoolId : { type : 's' }, + awsRegion : { type : 's' }, + appClientId : { type : 's' }, + legacyEndPoint : { type : 's' }, + endPoint : { type : 's' }, + thingName : { type : 's' }, + thingArn : { type : 's' }, + thingId : { type : 's' }, + username : { type : 's' }, + password : { type : 's' }, + topics : { type : 'a', subTypeConstructor : KalturaStringValue, subType : 'KalturaStringValue' }, + status : { type : 's' }, + message : { type : 's' } } ); return result; diff --git a/src/api/types/KalturaIotDefault.ts b/src/api/types/KalturaIotDefault.ts deleted file mode 100644 index f591c13e..00000000 --- a/src/api/types/KalturaIotDefault.ts +++ /dev/null @@ -1,40 +0,0 @@ - -import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaTypesFactory } from '../kaltura-types-factory'; -import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; - -export interface KalturaIotDefaultArgs extends KalturaObjectBaseArgs { - poolId? : string; - region? : string; - appClientId? : string; -} - - -export class KalturaIotDefault extends KalturaObjectBase { - - poolId : string; - region : string; - appClientId : string; - - constructor(data? : KalturaIotDefaultArgs) - { - super(data); - } - - protected _getMetadata() : KalturaObjectMetadata - { - const result = super._getMetadata(); - Object.assign( - result.properties, - { - objectType : { type : 'c', default : 'KalturaIotDefault' }, - poolId : { type : 's' }, - region : { type : 's' }, - appClientId : { type : 's' } - } - ); - return result; - } -} - -KalturaTypesFactory.registerType('KalturaIotDefault',KalturaIotDefault); diff --git a/src/api/types/KalturaIotProfile.ts b/src/api/types/KalturaIotProfile.ts deleted file mode 100644 index 180543ac..00000000 --- a/src/api/types/KalturaIotProfile.ts +++ /dev/null @@ -1,38 +0,0 @@ - -import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaTypesFactory } from '../kaltura-types-factory'; -import { KalturaIotProfileAws } from './KalturaIotProfileAws'; -import { KalturaOTTObjectSupportNullable, KalturaOTTObjectSupportNullableArgs } from './KalturaOTTObjectSupportNullable'; - -export interface KalturaIotProfileArgs extends KalturaOTTObjectSupportNullableArgs { - adapterUrl? : string; - iotProfileAws? : KalturaIotProfileAws; -} - - -export class KalturaIotProfile extends KalturaOTTObjectSupportNullable { - - adapterUrl : string; - iotProfileAws : KalturaIotProfileAws; - - constructor(data? : KalturaIotProfileArgs) - { - super(data); - } - - protected _getMetadata() : KalturaObjectMetadata - { - const result = super._getMetadata(); - Object.assign( - result.properties, - { - objectType : { type : 'c', default : 'KalturaIotProfile' }, - adapterUrl : { type : 's' }, - iotProfileAws : { type : 'o', subTypeConstructor : KalturaIotProfileAws, subType : 'KalturaIotProfileAws' } - } - ); - return result; - } -} - -KalturaTypesFactory.registerType('KalturaIotProfile',KalturaIotProfile); diff --git a/src/api/types/KalturaIotProfileListResponse.ts b/src/api/types/KalturaIotProfileListResponse.ts deleted file mode 100644 index 681da091..00000000 --- a/src/api/types/KalturaIotProfileListResponse.ts +++ /dev/null @@ -1,36 +0,0 @@ - -import { KalturaObjectMetadata } from '../kaltura-object-base'; -import { KalturaTypesFactory } from '../kaltura-types-factory'; -import { KalturaIotProfile } from './KalturaIotProfile'; -import { KalturaListResponse, KalturaListResponseArgs } from './KalturaListResponse'; - -export interface KalturaIotProfileListResponseArgs extends KalturaListResponseArgs { - objects? : KalturaIotProfile[]; -} - - -export class KalturaIotProfileListResponse extends KalturaListResponse { - - objects : KalturaIotProfile[]; - - constructor(data? : KalturaIotProfileListResponseArgs) - { - super(data); - if (typeof this.objects === 'undefined') this.objects = []; - } - - protected _getMetadata() : KalturaObjectMetadata - { - const result = super._getMetadata(); - Object.assign( - result.properties, - { - objectType : { type : 'c', default : 'KalturaIotProfileListResponse' }, - objects : { type : 'a', subTypeConstructor : KalturaIotProfile, subType : 'KalturaIotProfile' } - } - ); - return result; - } -} - -KalturaTypesFactory.registerType('KalturaIotProfileListResponse',KalturaIotProfileListResponse); diff --git a/src/api/types/KalturaMonetizationCondition.ts b/src/api/types/KalturaMonetizationCondition.ts index 7f5d04d9..3998de48 100644 --- a/src/api/types/KalturaMonetizationCondition.ts +++ b/src/api/types/KalturaMonetizationCondition.ts @@ -12,7 +12,6 @@ export interface KalturaMonetizationConditionArgs extends KalturaBaseSegmentCon type? : KalturaMonetizationType; operator? : KalturaMathemticalOperatorType; businessModuleIdIn? : string; - currencyCode? : string; } @@ -24,7 +23,6 @@ export class KalturaMonetizationCondition extends KalturaBaseSegmentCondition { type : KalturaMonetizationType; operator : KalturaMathemticalOperatorType; businessModuleIdIn : string; - currencyCode : string; constructor(data? : KalturaMonetizationConditionArgs) { @@ -43,8 +41,7 @@ export class KalturaMonetizationCondition extends KalturaBaseSegmentCondition { days : { type : 'n' }, type : { type : 'es', subTypeConstructor : KalturaMonetizationType, subType : 'KalturaMonetizationType' }, operator : { type : 'es', subTypeConstructor : KalturaMathemticalOperatorType, subType : 'KalturaMathemticalOperatorType' }, - businessModuleIdIn : { type : 's' }, - currencyCode : { type : 's' } + businessModuleIdIn : { type : 's' } } ); return result; diff --git a/src/api/types/KalturaSegmentValueFilter.ts b/src/api/types/KalturaSegmentValueFilter.ts index 186eea06..6faa32a2 100644 --- a/src/api/types/KalturaSegmentValueFilter.ts +++ b/src/api/types/KalturaSegmentValueFilter.ts @@ -5,14 +5,12 @@ import { KalturaBaseSegmentationTypeFilter, KalturaBaseSegmentationTypeFilterArg export interface KalturaSegmentValueFilterArgs extends KalturaBaseSegmentationTypeFilterArgs { idIn? : string; - nameContain? : string; } export class KalturaSegmentValueFilter extends KalturaBaseSegmentationTypeFilter { idIn : string; - nameContain : string; constructor(data? : KalturaSegmentValueFilterArgs) { @@ -26,8 +24,7 @@ export class KalturaSegmentValueFilter extends KalturaBaseSegmentationTypeFilter result.properties, { objectType : { type : 'c', default : 'KalturaSegmentValueFilter' }, - idIn : { type : 's' }, - nameContain : { type : 's' } + idIn : { type : 's' } } ); return result; diff --git a/src/api/types/KalturaSegmentationType.ts b/src/api/types/KalturaSegmentationType.ts index 81a89e94..586050ad 100644 --- a/src/api/types/KalturaSegmentationType.ts +++ b/src/api/types/KalturaSegmentationType.ts @@ -2,7 +2,6 @@ import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaTypesFactory } from '../kaltura-types-factory'; import { KalturaBaseSegmentCondition } from './KalturaBaseSegmentCondition'; -import { KalturaBooleanOperator } from './KalturaBooleanOperator'; import { KalturaBaseSegmentAction } from './KalturaBaseSegmentAction'; import { KalturaBaseSegmentValue } from './KalturaBaseSegmentValue'; import { KalturaObjectBase, KalturaObjectBaseArgs } from '../kaltura-object-base'; @@ -11,7 +10,6 @@ export interface KalturaSegmentationTypeArgs extends KalturaObjectBaseArgs { name? : string; description? : string; conditions? : KalturaBaseSegmentCondition[]; - conditionsOperator? : KalturaBooleanOperator; actions? : KalturaBaseSegmentAction[]; value? : KalturaBaseSegmentValue; } @@ -23,12 +21,9 @@ export class KalturaSegmentationType extends KalturaObjectBase { name : string; description : string; conditions : KalturaBaseSegmentCondition[]; - conditionsOperator : KalturaBooleanOperator; actions : KalturaBaseSegmentAction[]; value : KalturaBaseSegmentValue; readonly createDate : number; - readonly updateDate : number; - readonly executeDate : number; readonly version : number; constructor(data? : KalturaSegmentationTypeArgs) @@ -49,12 +44,9 @@ export class KalturaSegmentationType extends KalturaObjectBase { name : { type : 's' }, description : { type : 's' }, conditions : { type : 'a', subTypeConstructor : KalturaBaseSegmentCondition, subType : 'KalturaBaseSegmentCondition' }, - conditionsOperator : { type : 'es', subTypeConstructor : KalturaBooleanOperator, subType : 'KalturaBooleanOperator' }, actions : { type : 'a', subTypeConstructor : KalturaBaseSegmentAction, subType : 'KalturaBaseSegmentAction' }, value : { type : 'o', subTypeConstructor : KalturaBaseSegmentValue, subType : 'KalturaBaseSegmentValue' }, createDate : { type : 'n', readOnly : true }, - updateDate : { type : 'n', readOnly : true }, - executeDate : { type : 'n', readOnly : true }, version : { type : 'n', readOnly : true } } ); diff --git a/src/api/types/KalturaSegmentationTypeFilter.ts b/src/api/types/KalturaSegmentationTypeFilter.ts index 2c760c67..01bc7225 100644 --- a/src/api/types/KalturaSegmentationTypeFilter.ts +++ b/src/api/types/KalturaSegmentationTypeFilter.ts @@ -6,7 +6,6 @@ import { KalturaBaseSegmentationTypeFilter, KalturaBaseSegmentationTypeFilterArg export interface KalturaSegmentationTypeFilterArgs extends KalturaBaseSegmentationTypeFilterArgs { idIn? : string; kSql? : string; - nameContain? : string; } @@ -14,7 +13,6 @@ export class KalturaSegmentationTypeFilter extends KalturaBaseSegmentationTypeFi idIn : string; kSql : string; - nameContain : string; constructor(data? : KalturaSegmentationTypeFilterArgs) { @@ -29,8 +27,7 @@ export class KalturaSegmentationTypeFilter extends KalturaBaseSegmentationTypeFi { objectType : { type : 'c', default : 'KalturaSegmentationTypeFilter' }, idIn : { type : 's' }, - kSql : { type : 's' }, - nameContain : { type : 's' } + kSql : { type : 's' } } ); return result; diff --git a/src/api/types/KalturaSingleSegmentValue.ts b/src/api/types/KalturaSingleSegmentValue.ts index 091d4655..80a9634f 100644 --- a/src/api/types/KalturaSingleSegmentValue.ts +++ b/src/api/types/KalturaSingleSegmentValue.ts @@ -12,7 +12,6 @@ export class KalturaSingleSegmentValue extends KalturaBaseSegmentValue { readonly id : number; readonly affectedUsers : number; - readonly affectedHouseholds : number; constructor(data? : KalturaSingleSegmentValueArgs) { @@ -27,8 +26,7 @@ export class KalturaSingleSegmentValue extends KalturaBaseSegmentValue { { objectType : { type : 'c', default : 'KalturaSingleSegmentValue' }, id : { type : 'n', readOnly : true }, - affectedUsers : { type : 'n', readOnly : true }, - affectedHouseholds : { type : 'n', readOnly : true } + affectedUsers : { type : 'n', readOnly : true } } ); return result; diff --git a/src/api/types/index.ts b/src/api/types/index.ts index 1ef8632d..6235b762 100644 --- a/src/api/types/index.ts +++ b/src/api/types/index.ts @@ -334,7 +334,6 @@ export { KalturaPromotion, KalturaPromotionArgs } from './KalturaPromotion' export { KalturaEventNotification, KalturaEventNotificationArgs } from './KalturaEventNotification' export { KalturaIot, KalturaIotArgs } from './KalturaIot' export { KalturaIotProfileAws, KalturaIotProfileAwsArgs } from './KalturaIotProfileAws' -export { KalturaIotProfile, KalturaIotProfileArgs } from './KalturaIotProfile' export { KalturaAssetFile, KalturaAssetFileArgs } from './KalturaAssetFile' export { KalturaStringValueArray, KalturaStringValueArrayArgs } from './KalturaStringValueArray' export { KalturaBusinessModuleDetails, KalturaBusinessModuleDetailsArgs } from './KalturaBusinessModuleDetails' @@ -645,7 +644,6 @@ export { KalturaExternalChannelProfileListResponse, KalturaExternalChannelProfil export { KalturaIngestProfile, KalturaIngestProfileArgs } from './KalturaIngestProfile' export { KalturaIngestProfileListResponse, KalturaIngestProfileListResponseArgs } from './KalturaIngestProfileListResponse' export { KalturaIotListResponse, KalturaIotListResponseArgs } from './KalturaIotListResponse' -export { KalturaIotProfileListResponse, KalturaIotProfileListResponseArgs } from './KalturaIotProfileListResponse' export { KalturaLanguage, KalturaLanguageArgs } from './KalturaLanguage' export { KalturaLanguageListResponse, KalturaLanguageListResponseArgs } from './KalturaLanguageListResponse' export { KalturaMediaConcurrencyRule, KalturaMediaConcurrencyRuleArgs } from './KalturaMediaConcurrencyRule' @@ -738,10 +736,6 @@ export { KalturaUploadedFileTokenResource, KalturaUploadedFileTokenResourceArgs export { KalturaUrlResource, KalturaUrlResourceArgs } from './KalturaUrlResource' export { KalturaIngestStatusEpgConfiguration, KalturaIngestStatusEpgConfigurationArgs } from './KalturaIngestStatusEpgConfiguration' export { KalturaIngestStatusPartnerConfiguration, KalturaIngestStatusPartnerConfigurationArgs } from './KalturaIngestStatusPartnerConfiguration' -export { KalturaIotDefault, KalturaIotDefaultArgs } from './KalturaIotDefault' -export { KalturaCognitoIdentity, KalturaCognitoIdentityArgs } from './KalturaCognitoIdentity' -export { KalturaCredentialsProvider, KalturaCredentialsProviderArgs } from './KalturaCredentialsProvider' -export { KalturaCognitoUserPool, KalturaCognitoUserPoolArgs } from './KalturaCognitoUserPool' export { KalturaIotClientConfiguration, KalturaIotClientConfigurationArgs } from './KalturaIotClientConfiguration' export { KalturaLicensedUrl, KalturaLicensedUrlArgs } from './KalturaLicensedUrl' export { KalturaLicensedUrlBaseRequest, KalturaLicensedUrlBaseRequestArgs } from './KalturaLicensedUrlBaseRequest' @@ -824,7 +818,6 @@ export { KalturaBillingItemsType } from './KalturaBillingItemsType' export { KalturaBillingPriceType } from './KalturaBillingPriceType' export { KalturaBookmarkActionType } from './KalturaBookmarkActionType' export { KalturaBookmarkOrderBy } from './KalturaBookmarkOrderBy' -export { KalturaBooleanOperator } from './KalturaBooleanOperator' export { KalturaBulkUploadJobAction } from './KalturaBulkUploadJobAction' export { KalturaBulkUploadJobStatus } from './KalturaBulkUploadJobStatus' export { KalturaBulkUploadOrderBy } from './KalturaBulkUploadOrderBy' @@ -1294,8 +1287,6 @@ export { IngestStatusUpdatePartnerConfigurationAction, IngestStatusUpdatePartner export { IotGetClientConfigurationAction, IotGetClientConfigurationActionArgs } from './IotGetClientConfigurationAction' export { IotRegisterAction, IotRegisterActionArgs } from './IotRegisterAction' export { IotProfileAddAction, IotProfileAddActionArgs } from './IotProfileAddAction' -export { IotProfileGetAction, IotProfileGetActionArgs } from './IotProfileGetAction' -export { IotProfileUpdateAction, IotProfileUpdateActionArgs } from './IotProfileUpdateAction' export { LabelAddAction, LabelAddActionArgs } from './LabelAddAction' export { LabelDeleteAction, LabelDeleteActionArgs } from './LabelDeleteAction' export { LabelListAction, LabelListActionArgs } from './LabelListAction' diff --git a/src/environment.ts b/src/environment.ts index 17439ade..1901b5e7 100644 --- a/src/environment.ts +++ b/src/environment.ts @@ -12,7 +12,7 @@ export interface Environment { export const environment: Environment = { request: { - apiVersion: '7.9.0.29981', + apiVersion: '7.9.0.30000', ottMode: true, fileFormatValue: 20 },