kaltura-client 22.4.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 +165 -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
|
@@ -29617,6 +29617,21 @@ class RoomEntry extends BaseEntry{
|
|
|
29617
29617
|
setTemplateRoomEntryId(templateRoomEntryId) {
|
|
29618
29618
|
this.templateRoomEntryId = templateRoomEntryId;
|
|
29619
29619
|
}
|
|
29620
|
+
|
|
29621
|
+
/**
|
|
29622
|
+
* The entryId of the recording
|
|
29623
|
+
* @return string
|
|
29624
|
+
*/
|
|
29625
|
+
getRecordedEntryId() {
|
|
29626
|
+
return this.recordedEntryId;
|
|
29627
|
+
}
|
|
29628
|
+
|
|
29629
|
+
/**
|
|
29630
|
+
* @param recordedEntryId string The entryId of the recording
|
|
29631
|
+
*/
|
|
29632
|
+
setRecordedEntryId(recordedEntryId) {
|
|
29633
|
+
this.recordedEntryId = recordedEntryId;
|
|
29634
|
+
}
|
|
29620
29635
|
}
|
|
29621
29636
|
module.exports.RoomEntry = RoomEntry;
|
|
29622
29637
|
|
|
@@ -41453,6 +41468,21 @@ class BulkUploadResultUser extends BulkUploadResult{
|
|
|
41453
41468
|
setCapabilities(capabilities) {
|
|
41454
41469
|
this.capabilities = capabilities;
|
|
41455
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
|
+
}
|
|
41456
41486
|
}
|
|
41457
41487
|
module.exports.BulkUploadResultUser = BulkUploadResultUser;
|
|
41458
41488
|
|
|
@@ -47942,6 +47972,36 @@ class ESearchCaptionItemData extends ESearchItemData{
|
|
|
47942
47972
|
setLabel(label) {
|
|
47943
47973
|
this.label = label;
|
|
47944
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
|
+
}
|
|
47945
48005
|
}
|
|
47946
48006
|
module.exports.ESearchCaptionItemData = ESearchCaptionItemData;
|
|
47947
48007
|
|
|
@@ -50291,6 +50351,96 @@ class EntryCaptionAdvancedFilter extends SearchItem{
|
|
|
50291
50351
|
setHasCaption(hasCaption) {
|
|
50292
50352
|
this.hasCaption = hasCaption;
|
|
50293
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
|
+
}
|
|
50294
50444
|
}
|
|
50295
50445
|
module.exports.EntryCaptionAdvancedFilter = EntryCaptionAdvancedFilter;
|
|
50296
50446
|
|
|
@@ -74954,6 +75104,21 @@ class FtpDistributionProfile extends ConfigurableDistributionProfile{
|
|
|
74954
75104
|
this.assetFilenameXslt = assetFilenameXslt;
|
|
74955
75105
|
}
|
|
74956
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
|
+
|
|
74957
75122
|
/**
|
|
74958
75123
|
*
|
|
74959
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/)
|