kaltura-client 22.9.0 → 22.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/KalturaClient.js +2 -2
- package/KalturaModel.js +45 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/KalturaClient.js
CHANGED
package/KalturaModel.js
CHANGED
|
@@ -39367,6 +39367,36 @@ class BaseSyndicationFeedBaseFilter extends Filter{
|
|
|
39367
39367
|
super(object);
|
|
39368
39368
|
this.objectType = 'KalturaBaseSyndicationFeedBaseFilter';
|
|
39369
39369
|
}
|
|
39370
|
+
|
|
39371
|
+
/**
|
|
39372
|
+
*
|
|
39373
|
+
* @return string
|
|
39374
|
+
*/
|
|
39375
|
+
getIdEqual() {
|
|
39376
|
+
return this.idEqual;
|
|
39377
|
+
}
|
|
39378
|
+
|
|
39379
|
+
/**
|
|
39380
|
+
* @param idEqual string
|
|
39381
|
+
*/
|
|
39382
|
+
setIdEqual(idEqual) {
|
|
39383
|
+
this.idEqual = idEqual;
|
|
39384
|
+
}
|
|
39385
|
+
|
|
39386
|
+
/**
|
|
39387
|
+
*
|
|
39388
|
+
* @return string
|
|
39389
|
+
*/
|
|
39390
|
+
getIdIn() {
|
|
39391
|
+
return this.idIn;
|
|
39392
|
+
}
|
|
39393
|
+
|
|
39394
|
+
/**
|
|
39395
|
+
* @param idIn string
|
|
39396
|
+
*/
|
|
39397
|
+
setIdIn(idIn) {
|
|
39398
|
+
this.idIn = idIn;
|
|
39399
|
+
}
|
|
39370
39400
|
}
|
|
39371
39401
|
module.exports.BaseSyndicationFeedBaseFilter = BaseSyndicationFeedBaseFilter;
|
|
39372
39402
|
|
|
@@ -70968,6 +70998,21 @@ class CortexApiDistributionJobProviderData extends ConfigurableDistributionJobPr
|
|
|
70968
70998
|
setCaptionsInfo(captionsInfo) {
|
|
70969
70999
|
this.captionsInfo = captionsInfo;
|
|
70970
71000
|
}
|
|
71001
|
+
|
|
71002
|
+
/**
|
|
71003
|
+
*
|
|
71004
|
+
* @return int
|
|
71005
|
+
*/
|
|
71006
|
+
getMediaType() {
|
|
71007
|
+
return this.mediaType;
|
|
71008
|
+
}
|
|
71009
|
+
|
|
71010
|
+
/**
|
|
71011
|
+
* @param mediaType int
|
|
71012
|
+
*/
|
|
71013
|
+
setMediaType(mediaType) {
|
|
71014
|
+
this.mediaType = mediaType;
|
|
71015
|
+
}
|
|
70971
71016
|
}
|
|
70972
71017
|
module.exports.CortexApiDistributionJobProviderData = CortexApiDistributionJobProviderData;
|
|
70973
71018
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
## Kaltura node.js API Client Library.
|
|
2
|
-
Compatible with Kaltura server version 22.
|
|
2
|
+
Compatible with Kaltura server version 22.10.0 and above.
|
|
3
3
|
This client library replaces the older architecture that presented in previous node.js client library.
|
|
4
4
|
|
|
5
5
|
[](https://nodei.co/npm/kaltura-client/)
|