kaltura-client 22.5.0 → 22.7.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 +150 -0
- package/KalturaServices.js +14 -0
- package/KalturaTypes.js +1 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/KalturaClient.js
CHANGED
package/KalturaModel.js
CHANGED
|
@@ -41468,6 +41468,21 @@ class BulkUploadResultUser extends BulkUploadResult{
|
|
|
41468
41468
|
setCapabilities(capabilities) {
|
|
41469
41469
|
this.capabilities = capabilities;
|
|
41470
41470
|
}
|
|
41471
|
+
|
|
41472
|
+
/**
|
|
41473
|
+
*
|
|
41474
|
+
* @return int
|
|
41475
|
+
*/
|
|
41476
|
+
getGroupUserCreationMode() {
|
|
41477
|
+
return this.groupUserCreationMode;
|
|
41478
|
+
}
|
|
41479
|
+
|
|
41480
|
+
/**
|
|
41481
|
+
* @param groupUserCreationMode int
|
|
41482
|
+
*/
|
|
41483
|
+
setGroupUserCreationMode(groupUserCreationMode) {
|
|
41484
|
+
this.groupUserCreationMode = groupUserCreationMode;
|
|
41485
|
+
}
|
|
41471
41486
|
}
|
|
41472
41487
|
module.exports.BulkUploadResultUser = BulkUploadResultUser;
|
|
41473
41488
|
|
|
@@ -47957,6 +47972,36 @@ class ESearchCaptionItemData extends ESearchItemData{
|
|
|
47957
47972
|
setLabel(label) {
|
|
47958
47973
|
this.label = label;
|
|
47959
47974
|
}
|
|
47975
|
+
|
|
47976
|
+
/**
|
|
47977
|
+
*
|
|
47978
|
+
* @return int
|
|
47979
|
+
*/
|
|
47980
|
+
getAccuracy() {
|
|
47981
|
+
return this.accuracy;
|
|
47982
|
+
}
|
|
47983
|
+
|
|
47984
|
+
/**
|
|
47985
|
+
* @param accuracy int
|
|
47986
|
+
*/
|
|
47987
|
+
setAccuracy(accuracy) {
|
|
47988
|
+
this.accuracy = accuracy;
|
|
47989
|
+
}
|
|
47990
|
+
|
|
47991
|
+
/**
|
|
47992
|
+
*
|
|
47993
|
+
* @return int
|
|
47994
|
+
*/
|
|
47995
|
+
getUsage() {
|
|
47996
|
+
return this.usage;
|
|
47997
|
+
}
|
|
47998
|
+
|
|
47999
|
+
/**
|
|
48000
|
+
* @param usage int
|
|
48001
|
+
*/
|
|
48002
|
+
setUsage(usage) {
|
|
48003
|
+
this.usage = usage;
|
|
48004
|
+
}
|
|
47960
48005
|
}
|
|
47961
48006
|
module.exports.ESearchCaptionItemData = ESearchCaptionItemData;
|
|
47962
48007
|
|
|
@@ -50306,6 +50351,96 @@ class EntryCaptionAdvancedFilter extends SearchItem{
|
|
|
50306
50351
|
setHasCaption(hasCaption) {
|
|
50307
50352
|
this.hasCaption = hasCaption;
|
|
50308
50353
|
}
|
|
50354
|
+
|
|
50355
|
+
/**
|
|
50356
|
+
*
|
|
50357
|
+
* @return string
|
|
50358
|
+
*/
|
|
50359
|
+
getLanguage() {
|
|
50360
|
+
return this.language;
|
|
50361
|
+
}
|
|
50362
|
+
|
|
50363
|
+
/**
|
|
50364
|
+
* @param language string
|
|
50365
|
+
*/
|
|
50366
|
+
setLanguage(language) {
|
|
50367
|
+
this.language = language;
|
|
50368
|
+
}
|
|
50369
|
+
|
|
50370
|
+
/**
|
|
50371
|
+
*
|
|
50372
|
+
* @return int
|
|
50373
|
+
*/
|
|
50374
|
+
getAccuracyGreaterThanOrEqual() {
|
|
50375
|
+
return this.accuracyGreaterThanOrEqual;
|
|
50376
|
+
}
|
|
50377
|
+
|
|
50378
|
+
/**
|
|
50379
|
+
* @param accuracyGreaterThanOrEqual int
|
|
50380
|
+
*/
|
|
50381
|
+
setAccuracyGreaterThanOrEqual(accuracyGreaterThanOrEqual) {
|
|
50382
|
+
this.accuracyGreaterThanOrEqual = accuracyGreaterThanOrEqual;
|
|
50383
|
+
}
|
|
50384
|
+
|
|
50385
|
+
/**
|
|
50386
|
+
*
|
|
50387
|
+
* @return int
|
|
50388
|
+
*/
|
|
50389
|
+
getAccuracyLessThanOrEqual() {
|
|
50390
|
+
return this.accuracyLessThanOrEqual;
|
|
50391
|
+
}
|
|
50392
|
+
|
|
50393
|
+
/**
|
|
50394
|
+
* @param accuracyLessThanOrEqual int
|
|
50395
|
+
*/
|
|
50396
|
+
setAccuracyLessThanOrEqual(accuracyLessThanOrEqual) {
|
|
50397
|
+
this.accuracyLessThanOrEqual = accuracyLessThanOrEqual;
|
|
50398
|
+
}
|
|
50399
|
+
|
|
50400
|
+
/**
|
|
50401
|
+
*
|
|
50402
|
+
* @return int
|
|
50403
|
+
*/
|
|
50404
|
+
getAccuracyGreaterThan() {
|
|
50405
|
+
return this.accuracyGreaterThan;
|
|
50406
|
+
}
|
|
50407
|
+
|
|
50408
|
+
/**
|
|
50409
|
+
* @param accuracyGreaterThan int
|
|
50410
|
+
*/
|
|
50411
|
+
setAccuracyGreaterThan(accuracyGreaterThan) {
|
|
50412
|
+
this.accuracyGreaterThan = accuracyGreaterThan;
|
|
50413
|
+
}
|
|
50414
|
+
|
|
50415
|
+
/**
|
|
50416
|
+
*
|
|
50417
|
+
* @return int
|
|
50418
|
+
*/
|
|
50419
|
+
getAccuracyLessThan() {
|
|
50420
|
+
return this.accuracyLessThan;
|
|
50421
|
+
}
|
|
50422
|
+
|
|
50423
|
+
/**
|
|
50424
|
+
* @param accuracyLessThan int
|
|
50425
|
+
*/
|
|
50426
|
+
setAccuracyLessThan(accuracyLessThan) {
|
|
50427
|
+
this.accuracyLessThan = accuracyLessThan;
|
|
50428
|
+
}
|
|
50429
|
+
|
|
50430
|
+
/**
|
|
50431
|
+
*
|
|
50432
|
+
* @return string
|
|
50433
|
+
*/
|
|
50434
|
+
getUsage() {
|
|
50435
|
+
return this.usage;
|
|
50436
|
+
}
|
|
50437
|
+
|
|
50438
|
+
/**
|
|
50439
|
+
* @param usage string
|
|
50440
|
+
*/
|
|
50441
|
+
setUsage(usage) {
|
|
50442
|
+
this.usage = usage;
|
|
50443
|
+
}
|
|
50309
50444
|
}
|
|
50310
50445
|
module.exports.EntryCaptionAdvancedFilter = EntryCaptionAdvancedFilter;
|
|
50311
50446
|
|
|
@@ -74969,6 +75104,21 @@ class FtpDistributionProfile extends ConfigurableDistributionProfile{
|
|
|
74969
75104
|
this.assetFilenameXslt = assetFilenameXslt;
|
|
74970
75105
|
}
|
|
74971
75106
|
|
|
75107
|
+
/**
|
|
75108
|
+
*
|
|
75109
|
+
* @return string
|
|
75110
|
+
*/
|
|
75111
|
+
getDataContentFilenameXslt() {
|
|
75112
|
+
return this.dataContentFilenameXslt;
|
|
75113
|
+
}
|
|
75114
|
+
|
|
75115
|
+
/**
|
|
75116
|
+
* @param dataContentFilenameXslt string
|
|
75117
|
+
*/
|
|
75118
|
+
setDataContentFilenameXslt(dataContentFilenameXslt) {
|
|
75119
|
+
this.dataContentFilenameXslt = dataContentFilenameXslt;
|
|
75120
|
+
}
|
|
75121
|
+
|
|
74972
75122
|
/**
|
|
74973
75123
|
*
|
|
74974
75124
|
* @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
|
@@ -3544,6 +3544,7 @@ ENTRY_SERVER_NODE : '40',
|
|
|
3544
3544
|
REACH_PROFILE : '41',
|
|
3545
3545
|
ENTRY_VENDOR_TASK : '42',
|
|
3546
3546
|
GROUPUSER : '43',
|
|
3547
|
+
USER_ENTRY : '44',
|
|
3547
3548
|
AD_CUE_POINT : 'adCuePointEventNotifications.AdCuePoint',
|
|
3548
3549
|
ANNOTATION : 'annotationEventNotifications.Annotation',
|
|
3549
3550
|
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.7.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/)
|