kaltura-client 15.19.0 → 15.20.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4fe21f9c1c398cb40a83d57bac471e0d02bf746808ed6039988412533fa18273
|
4
|
+
data.tar.gz: 47cec5f1324c478dea7a54e2af4f687c2eacf50600b292a3ee6894bbf6516038
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e51efccb3749c5e23169419f7e7f46b94a674efde6d59cfe00f9b808ea2d897877e2459e981ad70945fdde34cffa564e9196f4ada8fc5d15e93efb3d72bdfac7
|
7
|
+
data.tar.gz: 259230a283b5782fbdf933d7926073e6b673c36ec2b9ace7415e8b8450153a9db21b7ca9c6c5da01e1a722fdc852619d5a414284fccb544c5e23225d684f6c14
|
data/README
CHANGED
data/lib/kaltura_client.rb
CHANGED
@@ -6243,8 +6243,8 @@ module Kaltura
|
|
6243
6243
|
|
6244
6244
|
def initialize(client)
|
6245
6245
|
super(client)
|
6246
|
-
self.client_tag = 'ruby:20-03-
|
6247
|
-
self.api_version = '15.
|
6246
|
+
self.client_tag = 'ruby:20-03-31'
|
6247
|
+
self.api_version = '15.20.0'
|
6248
6248
|
end
|
6249
6249
|
|
6250
6250
|
def client_tag=(value)
|
data/lib/kaltura_enums.rb
CHANGED
@@ -3517,6 +3517,7 @@ module Kaltura
|
|
3517
3517
|
USER_INTERACTIVE_VIDEO = "49"
|
3518
3518
|
INTERACTIVE_VIDEO_TOP_NODES = "50"
|
3519
3519
|
LATEST_PLAYED_ENTRIES = "51"
|
3520
|
+
CATEGORY_HIGHLIGHTS = "52"
|
3520
3521
|
PARTNER_USAGE = "201"
|
3521
3522
|
MAP_OVERLAY_COUNTRY_REALTIME = "10001"
|
3522
3523
|
MAP_OVERLAY_REGION_REALTIME = "10002"
|
@@ -3799,6 +3800,7 @@ module Kaltura
|
|
3799
3800
|
class KalturaUserEntryType
|
3800
3801
|
QUIZ = "quiz.QUIZ"
|
3801
3802
|
VIEW_HISTORY = "viewHistory.VIEW_HISTORY"
|
3803
|
+
WATCH_LATER = "watchLater.WATCH_LATER"
|
3802
3804
|
end
|
3803
3805
|
|
3804
3806
|
class KalturaUserLoginDataOrderBy
|
@@ -336,6 +336,8 @@ module Kaltura
|
|
336
336
|
attr_accessor :input_entitled_users_edit
|
337
337
|
# The input entitled users publish to set on the entry
|
338
338
|
attr_accessor :input_entitled_users_publish
|
339
|
+
# Should clear the media repurposing data and therefore reset the process
|
340
|
+
attr_accessor :reset_media_repurposing_process
|
339
341
|
|
340
342
|
def input_metadata_profile_id=(val)
|
341
343
|
@input_metadata_profile_id = val.to_i
|
@@ -343,6 +345,9 @@ module Kaltura
|
|
343
345
|
def output_metadata_profile_id=(val)
|
344
346
|
@output_metadata_profile_id = val.to_i
|
345
347
|
end
|
348
|
+
def reset_media_repurposing_process=(val)
|
349
|
+
@reset_media_repurposing_process = to_b(val)
|
350
|
+
end
|
346
351
|
|
347
352
|
def from_xml(xml_element)
|
348
353
|
super
|
@@ -367,6 +372,9 @@ module Kaltura
|
|
367
372
|
if xml_element.elements['inputEntitledUsersPublish'] != nil
|
368
373
|
self.input_entitled_users_publish = xml_element.elements['inputEntitledUsersPublish'].text
|
369
374
|
end
|
375
|
+
if xml_element.elements['resetMediaRepurposingProcess'] != nil
|
376
|
+
self.reset_media_repurposing_process = xml_element.elements['resetMediaRepurposingProcess'].text
|
377
|
+
end
|
370
378
|
end
|
371
379
|
|
372
380
|
end
|
@@ -0,0 +1,101 @@
|
|
1
|
+
# ===================================================================================================
|
2
|
+
# _ __ _ _
|
3
|
+
# | |/ /__ _| | |_ _ _ _ _ __ _
|
4
|
+
# | ' </ _` | | _| || | '_/ _` |
|
5
|
+
# |_|\_\__,_|_|\__|\_,_|_| \__,_|
|
6
|
+
#
|
7
|
+
# This file is part of the Kaltura Collaborative Media Suite which allows users
|
8
|
+
# to do with audio, video, and animation what Wiki platfroms allow them to do with
|
9
|
+
# text.
|
10
|
+
#
|
11
|
+
# Copyright (C) 2006-2020 Kaltura Inc.
|
12
|
+
#
|
13
|
+
# This program is free software: you can redistribute it and/or modify
|
14
|
+
# it under the terms of the GNU Affero General Public License as
|
15
|
+
# published by the Free Software Foundation, either version 3 of the
|
16
|
+
# License, or (at your option) any later version.
|
17
|
+
#
|
18
|
+
# This program is distributed in the hope that it will be useful,
|
19
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
20
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
21
|
+
# GNU Affero General Public License for more details.
|
22
|
+
#
|
23
|
+
# You should have received a copy of the GNU Affero General Public License
|
24
|
+
# along with this program. If not, see <http:#www.gnu.org/licenses/>.
|
25
|
+
#
|
26
|
+
# @ignore
|
27
|
+
# ===================================================================================================
|
28
|
+
require 'kaltura_client.rb'
|
29
|
+
|
30
|
+
module Kaltura
|
31
|
+
|
32
|
+
class KalturaWatchLaterUserEntry < KalturaUserEntry
|
33
|
+
|
34
|
+
|
35
|
+
def from_xml(xml_element)
|
36
|
+
super
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
40
|
+
|
41
|
+
class KalturaWatchLaterUserEntryAdvancedFilter < KalturaSearchItem
|
42
|
+
attr_accessor :id_equal
|
43
|
+
attr_accessor :id_in
|
44
|
+
attr_accessor :user_id_equal
|
45
|
+
attr_accessor :user_id_in
|
46
|
+
attr_accessor :updated_at_greater_than_or_equal
|
47
|
+
attr_accessor :updated_at_less_than_or_equal
|
48
|
+
attr_accessor :extended_status_equal
|
49
|
+
attr_accessor :extended_status_in
|
50
|
+
|
51
|
+
def id_equal=(val)
|
52
|
+
@id_equal = val.to_i
|
53
|
+
end
|
54
|
+
def updated_at_greater_than_or_equal=(val)
|
55
|
+
@updated_at_greater_than_or_equal = val.to_i
|
56
|
+
end
|
57
|
+
def updated_at_less_than_or_equal=(val)
|
58
|
+
@updated_at_less_than_or_equal = val.to_i
|
59
|
+
end
|
60
|
+
|
61
|
+
def from_xml(xml_element)
|
62
|
+
super
|
63
|
+
if xml_element.elements['idEqual'] != nil
|
64
|
+
self.id_equal = xml_element.elements['idEqual'].text
|
65
|
+
end
|
66
|
+
if xml_element.elements['idIn'] != nil
|
67
|
+
self.id_in = xml_element.elements['idIn'].text
|
68
|
+
end
|
69
|
+
if xml_element.elements['userIdEqual'] != nil
|
70
|
+
self.user_id_equal = xml_element.elements['userIdEqual'].text
|
71
|
+
end
|
72
|
+
if xml_element.elements['userIdIn'] != nil
|
73
|
+
self.user_id_in = xml_element.elements['userIdIn'].text
|
74
|
+
end
|
75
|
+
if xml_element.elements['updatedAtGreaterThanOrEqual'] != nil
|
76
|
+
self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
|
77
|
+
end
|
78
|
+
if xml_element.elements['updatedAtLessThanOrEqual'] != nil
|
79
|
+
self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
|
80
|
+
end
|
81
|
+
if xml_element.elements['extendedStatusEqual'] != nil
|
82
|
+
self.extended_status_equal = xml_element.elements['extendedStatusEqual'].text
|
83
|
+
end
|
84
|
+
if xml_element.elements['extendedStatusIn'] != nil
|
85
|
+
self.extended_status_in = xml_element.elements['extendedStatusIn'].text
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
90
|
+
|
91
|
+
class KalturaWatchLaterUserEntryFilter < KalturaUserEntryFilter
|
92
|
+
|
93
|
+
|
94
|
+
def from_xml(xml_element)
|
95
|
+
super
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|
99
|
+
|
100
|
+
|
101
|
+
end
|
data/lib/kaltura_types.rb
CHANGED
@@ -6313,6 +6313,8 @@ module Kaltura
|
|
6313
6313
|
attr_accessor :recording_status
|
6314
6314
|
# The time the last broadcast finished.
|
6315
6315
|
attr_accessor :last_broadcast_end_time
|
6316
|
+
# The time when the entry was first live with view_all
|
6317
|
+
attr_accessor :broadcast_time
|
6316
6318
|
|
6317
6319
|
def record_status=(val)
|
6318
6320
|
@record_status = val.to_i
|
@@ -6356,6 +6358,9 @@ module Kaltura
|
|
6356
6358
|
def last_broadcast_end_time=(val)
|
6357
6359
|
@last_broadcast_end_time = val.to_i
|
6358
6360
|
end
|
6361
|
+
def broadcast_time=(val)
|
6362
|
+
@broadcast_time = val.to_i
|
6363
|
+
end
|
6359
6364
|
|
6360
6365
|
def from_xml(xml_element)
|
6361
6366
|
super
|
@@ -6416,6 +6421,9 @@ module Kaltura
|
|
6416
6421
|
if xml_element.elements['lastBroadcastEndTime'] != nil
|
6417
6422
|
self.last_broadcast_end_time = xml_element.elements['lastBroadcastEndTime'].text
|
6418
6423
|
end
|
6424
|
+
if xml_element.elements['broadcastTime'] != nil
|
6425
|
+
self.broadcast_time = xml_element.elements['broadcastTime'].text
|
6426
|
+
end
|
6419
6427
|
end
|
6420
6428
|
|
6421
6429
|
end
|
@@ -8412,6 +8420,8 @@ module Kaltura
|
|
8412
8420
|
attr_accessor :isp_in
|
8413
8421
|
# filter by application version
|
8414
8422
|
attr_accessor :application_version_in
|
8423
|
+
# filter by node id
|
8424
|
+
attr_accessor :node_ids_in
|
8415
8425
|
|
8416
8426
|
def search_in_tags=(val)
|
8417
8427
|
@search_in_tags = to_b(val)
|
@@ -8527,6 +8537,9 @@ module Kaltura
|
|
8527
8537
|
if xml_element.elements['applicationVersionIn'] != nil
|
8528
8538
|
self.application_version_in = xml_element.elements['applicationVersionIn'].text
|
8529
8539
|
end
|
8540
|
+
if xml_element.elements['nodeIdsIn'] != nil
|
8541
|
+
self.node_ids_in = xml_element.elements['nodeIdsIn'].text
|
8542
|
+
end
|
8530
8543
|
end
|
8531
8544
|
|
8532
8545
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kaltura-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 15.
|
4
|
+
version: 15.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kaltura Inc.
|
@@ -116,6 +116,7 @@ files:
|
|
116
116
|
- lib/kaltura_plugins/kaltura_view_history_client_plugin.rb
|
117
117
|
- lib/kaltura_plugins/kaltura_virus_scan_client_plugin.rb
|
118
118
|
- lib/kaltura_plugins/kaltura_voicebase_client_plugin.rb
|
119
|
+
- lib/kaltura_plugins/kaltura_watch_later_client_plugin.rb
|
119
120
|
- lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb
|
120
121
|
- lib/kaltura_plugins/kaltura_widevine_client_plugin.rb
|
121
122
|
- lib/kaltura_plugins/kaltura_wowza_client_plugin.rb
|
@@ -157,8 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
157
158
|
- !ruby/object:Gem::Version
|
158
159
|
version: '0'
|
159
160
|
requirements: []
|
160
|
-
|
161
|
-
rubygems_version: 2.7.6.2
|
161
|
+
rubygems_version: 3.1.2
|
162
162
|
signing_key:
|
163
163
|
specification_version: 4
|
164
164
|
summary: A gem implementation of Kaltura's Ruby Client
|