kaltura-client 22.5.0 → 22.8.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 +173 -0
- package/KalturaServices.js +14 -0
- package/KalturaTypes.js +2 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/KalturaClient.js
CHANGED
package/KalturaModel.js
CHANGED
|
@@ -1305,6 +1305,21 @@ class Annotation extends CuePoint{
|
|
|
1305
1305
|
setSearchableOnEntry(searchableOnEntry) {
|
|
1306
1306
|
this.searchableOnEntry = searchableOnEntry;
|
|
1307
1307
|
}
|
|
1308
|
+
|
|
1309
|
+
/**
|
|
1310
|
+
* In case of cloned annotation it will hold source cuepoint createdAt
|
|
1311
|
+
* @return int
|
|
1312
|
+
*/
|
|
1313
|
+
getOriginalCuePointCreateAt() {
|
|
1314
|
+
return this.originalCuePointCreateAt;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* @param originalCuePointCreateAt int In case of cloned annotation it will hold source cuepoint createdAt
|
|
1319
|
+
*/
|
|
1320
|
+
setOriginalCuePointCreateAt(originalCuePointCreateAt) {
|
|
1321
|
+
this.originalCuePointCreateAt = originalCuePointCreateAt;
|
|
1322
|
+
}
|
|
1308
1323
|
}
|
|
1309
1324
|
module.exports.Annotation = Annotation;
|
|
1310
1325
|
|
|
@@ -18502,6 +18517,14 @@ class FlavorParams extends AssetParams{
|
|
|
18502
18517
|
setClipDuration(clipDuration) {
|
|
18503
18518
|
this.clipDuration = clipDuration;
|
|
18504
18519
|
}
|
|
18520
|
+
|
|
18521
|
+
/**
|
|
18522
|
+
* Audio languages extracted from multiStream field
|
|
18523
|
+
* @return array
|
|
18524
|
+
*/
|
|
18525
|
+
getAudioLanguages() {
|
|
18526
|
+
return this.audioLanguages;
|
|
18527
|
+
}
|
|
18505
18528
|
}
|
|
18506
18529
|
module.exports.FlavorParams = FlavorParams;
|
|
18507
18530
|
|
|
@@ -41468,6 +41491,21 @@ class BulkUploadResultUser extends BulkUploadResult{
|
|
|
41468
41491
|
setCapabilities(capabilities) {
|
|
41469
41492
|
this.capabilities = capabilities;
|
|
41470
41493
|
}
|
|
41494
|
+
|
|
41495
|
+
/**
|
|
41496
|
+
*
|
|
41497
|
+
* @return int
|
|
41498
|
+
*/
|
|
41499
|
+
getGroupUserCreationMode() {
|
|
41500
|
+
return this.groupUserCreationMode;
|
|
41501
|
+
}
|
|
41502
|
+
|
|
41503
|
+
/**
|
|
41504
|
+
* @param groupUserCreationMode int
|
|
41505
|
+
*/
|
|
41506
|
+
setGroupUserCreationMode(groupUserCreationMode) {
|
|
41507
|
+
this.groupUserCreationMode = groupUserCreationMode;
|
|
41508
|
+
}
|
|
41471
41509
|
}
|
|
41472
41510
|
module.exports.BulkUploadResultUser = BulkUploadResultUser;
|
|
41473
41511
|
|
|
@@ -47957,6 +47995,36 @@ class ESearchCaptionItemData extends ESearchItemData{
|
|
|
47957
47995
|
setLabel(label) {
|
|
47958
47996
|
this.label = label;
|
|
47959
47997
|
}
|
|
47998
|
+
|
|
47999
|
+
/**
|
|
48000
|
+
*
|
|
48001
|
+
* @return int
|
|
48002
|
+
*/
|
|
48003
|
+
getAccuracy() {
|
|
48004
|
+
return this.accuracy;
|
|
48005
|
+
}
|
|
48006
|
+
|
|
48007
|
+
/**
|
|
48008
|
+
* @param accuracy int
|
|
48009
|
+
*/
|
|
48010
|
+
setAccuracy(accuracy) {
|
|
48011
|
+
this.accuracy = accuracy;
|
|
48012
|
+
}
|
|
48013
|
+
|
|
48014
|
+
/**
|
|
48015
|
+
*
|
|
48016
|
+
* @return int
|
|
48017
|
+
*/
|
|
48018
|
+
getUsage() {
|
|
48019
|
+
return this.usage;
|
|
48020
|
+
}
|
|
48021
|
+
|
|
48022
|
+
/**
|
|
48023
|
+
* @param usage int
|
|
48024
|
+
*/
|
|
48025
|
+
setUsage(usage) {
|
|
48026
|
+
this.usage = usage;
|
|
48027
|
+
}
|
|
47960
48028
|
}
|
|
47961
48029
|
module.exports.ESearchCaptionItemData = ESearchCaptionItemData;
|
|
47962
48030
|
|
|
@@ -50306,6 +50374,96 @@ class EntryCaptionAdvancedFilter extends SearchItem{
|
|
|
50306
50374
|
setHasCaption(hasCaption) {
|
|
50307
50375
|
this.hasCaption = hasCaption;
|
|
50308
50376
|
}
|
|
50377
|
+
|
|
50378
|
+
/**
|
|
50379
|
+
*
|
|
50380
|
+
* @return string
|
|
50381
|
+
*/
|
|
50382
|
+
getLanguage() {
|
|
50383
|
+
return this.language;
|
|
50384
|
+
}
|
|
50385
|
+
|
|
50386
|
+
/**
|
|
50387
|
+
* @param language string
|
|
50388
|
+
*/
|
|
50389
|
+
setLanguage(language) {
|
|
50390
|
+
this.language = language;
|
|
50391
|
+
}
|
|
50392
|
+
|
|
50393
|
+
/**
|
|
50394
|
+
*
|
|
50395
|
+
* @return int
|
|
50396
|
+
*/
|
|
50397
|
+
getAccuracyGreaterThanOrEqual() {
|
|
50398
|
+
return this.accuracyGreaterThanOrEqual;
|
|
50399
|
+
}
|
|
50400
|
+
|
|
50401
|
+
/**
|
|
50402
|
+
* @param accuracyGreaterThanOrEqual int
|
|
50403
|
+
*/
|
|
50404
|
+
setAccuracyGreaterThanOrEqual(accuracyGreaterThanOrEqual) {
|
|
50405
|
+
this.accuracyGreaterThanOrEqual = accuracyGreaterThanOrEqual;
|
|
50406
|
+
}
|
|
50407
|
+
|
|
50408
|
+
/**
|
|
50409
|
+
*
|
|
50410
|
+
* @return int
|
|
50411
|
+
*/
|
|
50412
|
+
getAccuracyLessThanOrEqual() {
|
|
50413
|
+
return this.accuracyLessThanOrEqual;
|
|
50414
|
+
}
|
|
50415
|
+
|
|
50416
|
+
/**
|
|
50417
|
+
* @param accuracyLessThanOrEqual int
|
|
50418
|
+
*/
|
|
50419
|
+
setAccuracyLessThanOrEqual(accuracyLessThanOrEqual) {
|
|
50420
|
+
this.accuracyLessThanOrEqual = accuracyLessThanOrEqual;
|
|
50421
|
+
}
|
|
50422
|
+
|
|
50423
|
+
/**
|
|
50424
|
+
*
|
|
50425
|
+
* @return int
|
|
50426
|
+
*/
|
|
50427
|
+
getAccuracyGreaterThan() {
|
|
50428
|
+
return this.accuracyGreaterThan;
|
|
50429
|
+
}
|
|
50430
|
+
|
|
50431
|
+
/**
|
|
50432
|
+
* @param accuracyGreaterThan int
|
|
50433
|
+
*/
|
|
50434
|
+
setAccuracyGreaterThan(accuracyGreaterThan) {
|
|
50435
|
+
this.accuracyGreaterThan = accuracyGreaterThan;
|
|
50436
|
+
}
|
|
50437
|
+
|
|
50438
|
+
/**
|
|
50439
|
+
*
|
|
50440
|
+
* @return int
|
|
50441
|
+
*/
|
|
50442
|
+
getAccuracyLessThan() {
|
|
50443
|
+
return this.accuracyLessThan;
|
|
50444
|
+
}
|
|
50445
|
+
|
|
50446
|
+
/**
|
|
50447
|
+
* @param accuracyLessThan int
|
|
50448
|
+
*/
|
|
50449
|
+
setAccuracyLessThan(accuracyLessThan) {
|
|
50450
|
+
this.accuracyLessThan = accuracyLessThan;
|
|
50451
|
+
}
|
|
50452
|
+
|
|
50453
|
+
/**
|
|
50454
|
+
*
|
|
50455
|
+
* @return string
|
|
50456
|
+
*/
|
|
50457
|
+
getUsage() {
|
|
50458
|
+
return this.usage;
|
|
50459
|
+
}
|
|
50460
|
+
|
|
50461
|
+
/**
|
|
50462
|
+
* @param usage string
|
|
50463
|
+
*/
|
|
50464
|
+
setUsage(usage) {
|
|
50465
|
+
this.usage = usage;
|
|
50466
|
+
}
|
|
50309
50467
|
}
|
|
50310
50468
|
module.exports.EntryCaptionAdvancedFilter = EntryCaptionAdvancedFilter;
|
|
50311
50469
|
|
|
@@ -74969,6 +75127,21 @@ class FtpDistributionProfile extends ConfigurableDistributionProfile{
|
|
|
74969
75127
|
this.assetFilenameXslt = assetFilenameXslt;
|
|
74970
75128
|
}
|
|
74971
75129
|
|
|
75130
|
+
/**
|
|
75131
|
+
*
|
|
75132
|
+
* @return string
|
|
75133
|
+
*/
|
|
75134
|
+
getDataContentFilenameXslt() {
|
|
75135
|
+
return this.dataContentFilenameXslt;
|
|
75136
|
+
}
|
|
75137
|
+
|
|
75138
|
+
/**
|
|
75139
|
+
* @param dataContentFilenameXslt string
|
|
75140
|
+
*/
|
|
75141
|
+
setDataContentFilenameXslt(dataContentFilenameXslt) {
|
|
75142
|
+
this.dataContentFilenameXslt = dataContentFilenameXslt;
|
|
75143
|
+
}
|
|
75144
|
+
|
|
74972
75145
|
/**
|
|
74973
75146
|
*
|
|
74974
75147
|
* @return string
|
package/KalturaServices.js
CHANGED
|
@@ -10627,6 +10627,7 @@ module.exports.reachProfile = reachProfile;
|
|
|
10627
10627
|
* @action list List KalturaEntryVendorTask objects.
|
|
10628
10628
|
* @action reject Reject entry vendor task for execution.
|
|
10629
10629
|
* @action replaceOutput .
|
|
10630
|
+
* @action reset Reset entry vendor task. change status back to pending with a new catalog item.
|
|
10630
10631
|
* @action serveCsv Will serve a requested csv.
|
|
10631
10632
|
* @action update Update entry vendor task. Only the properties that were set will be updated.
|
|
10632
10633
|
* @action updateJob Update entry vendor task. Only the properties that were set will be updated.
|
|
@@ -10770,6 +10771,19 @@ class entryVendorTask{
|
|
|
10770
10771
|
return new kaltura.RequestBuilder('reach_entryvendortask', 'replaceOutput', kparams);
|
|
10771
10772
|
};
|
|
10772
10773
|
|
|
10774
|
+
/**
|
|
10775
|
+
* Reset entry vendor task. change status back to pending with a new catalog item.
|
|
10776
|
+
* @param id int vendor task id to reset
|
|
10777
|
+
* @param catalogItemId int new catalog item
|
|
10778
|
+
* @return KalturaEntryVendorTask
|
|
10779
|
+
*/
|
|
10780
|
+
static reset(id, catalogItemId){
|
|
10781
|
+
let kparams = {};
|
|
10782
|
+
kparams.id = id;
|
|
10783
|
+
kparams.catalogItemId = catalogItemId;
|
|
10784
|
+
return new kaltura.RequestBuilder('reach_entryvendortask', 'reset', kparams);
|
|
10785
|
+
};
|
|
10786
|
+
|
|
10773
10787
|
/**
|
|
10774
10788
|
* Will serve a requested csv.
|
|
10775
10789
|
* @param id string - the requested file id
|
package/KalturaTypes.js
CHANGED
|
@@ -3177,6 +3177,7 @@ ENTITLED_USER_PUBLISH : 'entitled_kusers_publish',
|
|
|
3177
3177
|
ENTITLED_USER_VIEW : 'entitled_kusers_view',
|
|
3178
3178
|
ENTRY_TYPE : 'entry_type',
|
|
3179
3179
|
EXTERNAL_SOURCE_TYPE : 'external_source_type',
|
|
3180
|
+
FLAVOR_PARAMS_IDS : 'flavor_params_ids',
|
|
3180
3181
|
ID : 'id',
|
|
3181
3182
|
IS_LIVE : 'is_live',
|
|
3182
3183
|
IS_QUIZ : 'is_quiz',
|
|
@@ -3544,6 +3545,7 @@ ENTRY_SERVER_NODE : '40',
|
|
|
3544
3545
|
REACH_PROFILE : '41',
|
|
3545
3546
|
ENTRY_VENDOR_TASK : '42',
|
|
3546
3547
|
GROUPUSER : '43',
|
|
3548
|
+
USER_ENTRY : '44',
|
|
3547
3549
|
AD_CUE_POINT : 'adCuePointEventNotifications.AdCuePoint',
|
|
3548
3550
|
ANNOTATION : 'annotationEventNotifications.Annotation',
|
|
3549
3551
|
ATTACHMENT_ASSET : 'attachmentAssetEventNotifications.AttachmentAsset',
|
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.8.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/)
|