kaltura-client 18.4.0 → 18.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.
- checksums.yaml +4 -4
- data/README +1 -1
- data/lib/kaltura_client.rb +2 -2
- data/lib/kaltura_enums.rb +6 -0
- data/lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb +1 -0
- data/lib/kaltura_plugins/kaltura_group_client_plugin.rb +1 -0
- data/lib/kaltura_plugins/kaltura_vendor_client_plugin.rb +15 -0
- data/lib/kaltura_types.rb +3 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a482098a8479c9b6e3d8808243a8d158abcfda9f85f213f58696ee6b5c072be
|
4
|
+
data.tar.gz: 8c99eb797974981b8a575b6f3d5fb61f631fe87bfb9c89b6356f99044226a18e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 688d545ff5ca075ee62774416757cbc76b870d79d2b5cadeb262aba7eccc05f720ccef1ca93637d8fa6e75a8eec574bbed6ade01f129e14211130fe773e395cf
|
7
|
+
data.tar.gz: f7003acf5fd2524d9b8a9c72e977766a8a3c26f039706c524ecd82c8f15bb4926cf3c02c640630825a7fd636f76298df99abb1077f5ff5855f9aa9f2c89274a7
|
data/README
CHANGED
data/lib/kaltura_client.rb
CHANGED
@@ -6364,8 +6364,8 @@ module Kaltura
|
|
6364
6364
|
|
6365
6365
|
def initialize(client)
|
6366
6366
|
super(client)
|
6367
|
-
self.client_tag = 'ruby:22-
|
6368
|
-
self.api_version = '18.
|
6367
|
+
self.client_tag = 'ruby:22-06-13'
|
6368
|
+
self.api_version = '18.7.0'
|
6369
6369
|
end
|
6370
6370
|
|
6371
6371
|
def client_tag=(value)
|
data/lib/kaltura_enums.rb
CHANGED
@@ -814,6 +814,12 @@ module Kaltura
|
|
814
814
|
TIMEHASH = 2
|
815
815
|
end
|
816
816
|
|
817
|
+
class KalturaZoomGroupParticipationType
|
818
|
+
NO_CLASSIFICATION = 0
|
819
|
+
OPT_IN = 1
|
820
|
+
OPT_OUT = 2
|
821
|
+
end
|
822
|
+
|
817
823
|
class KalturaAccessControlOrderBy
|
818
824
|
CREATED_AT_ASC = "+createdAt"
|
819
825
|
CREATED_AT_DESC = "-createdAt"
|
@@ -133,6 +133,9 @@ module Kaltura
|
|
133
133
|
attr_accessor :enable_zoom_transcription
|
134
134
|
attr_accessor :zoom_account_description
|
135
135
|
attr_accessor :enable_meeting_upload
|
136
|
+
attr_accessor :opt_out_group_names
|
137
|
+
attr_accessor :opt_in_group_names
|
138
|
+
attr_accessor :group_participation_type
|
136
139
|
|
137
140
|
def enable_recording_upload=(val)
|
138
141
|
@enable_recording_upload = val.to_i
|
@@ -149,6 +152,9 @@ module Kaltura
|
|
149
152
|
def enable_meeting_upload=(val)
|
150
153
|
@enable_meeting_upload = val.to_i
|
151
154
|
end
|
155
|
+
def group_participation_type=(val)
|
156
|
+
@group_participation_type = val.to_i
|
157
|
+
end
|
152
158
|
|
153
159
|
def from_xml(xml_element)
|
154
160
|
super
|
@@ -182,6 +188,15 @@ module Kaltura
|
|
182
188
|
if xml_element.elements['enableMeetingUpload'] != nil
|
183
189
|
self.enable_meeting_upload = xml_element.elements['enableMeetingUpload'].text
|
184
190
|
end
|
191
|
+
if xml_element.elements['optOutGroupNames'] != nil
|
192
|
+
self.opt_out_group_names = xml_element.elements['optOutGroupNames'].text
|
193
|
+
end
|
194
|
+
if xml_element.elements['optInGroupNames'] != nil
|
195
|
+
self.opt_in_group_names = xml_element.elements['optInGroupNames'].text
|
196
|
+
end
|
197
|
+
if xml_element.elements['groupParticipationType'] != nil
|
198
|
+
self.group_participation_type = xml_element.elements['groupParticipationType'].text
|
199
|
+
end
|
185
200
|
end
|
186
201
|
|
187
202
|
end
|
data/lib/kaltura_types.rb
CHANGED
@@ -4546,8 +4546,9 @@ module Kaltura
|
|
4546
4546
|
end
|
4547
4547
|
|
4548
4548
|
class KalturaExportToCsvOptions < KalturaObjectBase
|
4549
|
-
#
|
4550
|
-
#
|
4549
|
+
# Setting this property will cause additional columns to be added to the final report. The columns will be related to the specific object type passed (currently only MEDIA_CLIP is supported).
|
4550
|
+
# Please note that this property will NOT change the result filter in any way (i.e passing MEDIA_CLIP here will not force the report to return only media items).
|
4551
|
+
# /
|
4551
4552
|
attr_accessor :format
|
4552
4553
|
|
4553
4554
|
|