kaltura-client 17.1.0 → 17.2.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: 2033f170a1060937b6c30760d980d718d19e6d7697de6b124323d89b14e5188a
|
4
|
+
data.tar.gz: 16255944a8475e9372603f33eedd68ed5adb3ed21ecbaa2e1e23f786dfcf5274
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3557bb3c30a334ddd8974e36a554beea0603153284bafd97dce4a8061e4c73af1f2d3d9ce41da10ccd537c677eb76117dcdd81c2540ea37cb67a1b33c594eee
|
7
|
+
data.tar.gz: 7ddbbb2025c38d18c893186844debbddbcbbbdc31b3b46f991a6291890eca23481efd68dd79d9c18d50567c0c456293d5bacdfe797f802c97ec76709002c9f56
|
data/README
CHANGED
data/lib/kaltura_client.rb
CHANGED
@@ -6310,8 +6310,8 @@ module Kaltura
|
|
6310
6310
|
|
6311
6311
|
def initialize(client)
|
6312
6312
|
super(client)
|
6313
|
-
self.client_tag = 'ruby:21-05-
|
6314
|
-
self.api_version = '17.
|
6313
|
+
self.client_tag = 'ruby:21-05-26'
|
6314
|
+
self.api_version = '17.2.0'
|
6315
6315
|
end
|
6316
6316
|
|
6317
6317
|
def client_tag=(value)
|
@@ -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
|
+
# The input entitled users view to set on the entry
|
340
|
+
attr_accessor :input_entitled_users_view
|
339
341
|
# Should clear the media repurposing data and therefore reset the process
|
340
342
|
attr_accessor :reset_media_repurposing_process
|
341
343
|
|
@@ -372,6 +374,9 @@ module Kaltura
|
|
372
374
|
if xml_element.elements['inputEntitledUsersPublish'] != nil
|
373
375
|
self.input_entitled_users_publish = xml_element.elements['inputEntitledUsersPublish'].text
|
374
376
|
end
|
377
|
+
if xml_element.elements['inputEntitledUsersView'] != nil
|
378
|
+
self.input_entitled_users_view = xml_element.elements['inputEntitledUsersView'].text
|
379
|
+
end
|
375
380
|
if xml_element.elements['resetMediaRepurposingProcess'] != nil
|
376
381
|
self.reset_media_repurposing_process = xml_element.elements['resetMediaRepurposingProcess'].text
|
377
382
|
end
|
@@ -58,6 +58,9 @@ module Kaltura
|
|
58
58
|
attr_accessor :deletion_policy
|
59
59
|
attr_accessor :enable_zoom_transcription
|
60
60
|
attr_accessor :zoom_account_description
|
61
|
+
attr_accessor :created_at
|
62
|
+
attr_accessor :updated_at
|
63
|
+
attr_accessor :enable_meeting_upload
|
61
64
|
|
62
65
|
def enable_recording_upload=(val)
|
63
66
|
@enable_recording_upload = val.to_i
|
@@ -83,6 +86,9 @@ module Kaltura
|
|
83
86
|
def enable_zoom_transcription=(val)
|
84
87
|
@enable_zoom_transcription = val.to_i
|
85
88
|
end
|
89
|
+
def enable_meeting_upload=(val)
|
90
|
+
@enable_meeting_upload = val.to_i
|
91
|
+
end
|
86
92
|
|
87
93
|
def from_xml(xml_element)
|
88
94
|
super
|
@@ -131,6 +137,15 @@ module Kaltura
|
|
131
137
|
if xml_element.elements['zoomAccountDescription'] != nil
|
132
138
|
self.zoom_account_description = xml_element.elements['zoomAccountDescription'].text
|
133
139
|
end
|
140
|
+
if xml_element.elements['createdAt'] != nil
|
141
|
+
self.created_at = xml_element.elements['createdAt'].text
|
142
|
+
end
|
143
|
+
if xml_element.elements['updatedAt'] != nil
|
144
|
+
self.updated_at = xml_element.elements['updatedAt'].text
|
145
|
+
end
|
146
|
+
if xml_element.elements['enableMeetingUpload'] != nil
|
147
|
+
self.enable_meeting_upload = xml_element.elements['enableMeetingUpload'].text
|
148
|
+
end
|
134
149
|
end
|
135
150
|
|
136
151
|
end
|
@@ -211,22 +226,22 @@ module Kaltura
|
|
211
226
|
return client.do_queue()
|
212
227
|
end
|
213
228
|
|
214
|
-
#
|
229
|
+
# load html page the that will ask the user for its KMC URL, derive the region of the user from it,
|
230
|
+
# and redirect to the registration page in the correct region, while forwarding the necessary code for registration
|
231
|
+
# @return []
|
215
232
|
def oauth_validation()
|
216
233
|
kparams = {}
|
217
|
-
client.queue_service_action_call('vendor_zoomvendor', 'oauthValidation', '
|
234
|
+
client.queue_service_action_call('vendor_zoomvendor', 'oauthValidation', '', kparams)
|
218
235
|
if (client.is_multirequest)
|
219
236
|
return nil
|
220
237
|
end
|
221
238
|
return client.do_queue()
|
222
239
|
end
|
223
240
|
|
224
|
-
#
|
225
|
-
# and redirect to the registration page in the correct region, while forwarding the necessary code for registration
|
226
|
-
# @return []
|
241
|
+
# @return [string]
|
227
242
|
def pre_oauth_validation()
|
228
243
|
kparams = {}
|
229
|
-
client.queue_service_action_call('vendor_zoomvendor', 'preOauthValidation', '', kparams)
|
244
|
+
client.queue_service_action_call('vendor_zoomvendor', 'preOauthValidation', 'string', kparams)
|
230
245
|
if (client.is_multirequest)
|
231
246
|
return nil
|
232
247
|
end
|