kaltura-client 18.4.0 → 18.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a15b62e4b056b53c3359a7a53c63a831dc72b9e7d8eeb98842b2e75330cc6fac
4
- data.tar.gz: b5d3828090e82c7c922de09df34c6ae8f5ae7e06d0e5d80346e57b75f0025424
3
+ metadata.gz: 1a482098a8479c9b6e3d8808243a8d158abcfda9f85f213f58696ee6b5c072be
4
+ data.tar.gz: 8c99eb797974981b8a575b6f3d5fb61f631fe87bfb9c89b6356f99044226a18e
5
5
  SHA512:
6
- metadata.gz: 6aabb46344a08d40e08d8b1dccdb32f21c00834bb9ff64e0e7602177b0f3fd92c0af713738b490e9fc491bbd99f750f9a7d7d0a281dba3f737857bf00caf062c
7
- data.tar.gz: 61a2be8071e3e9aafaa7892d0206ed281e03cb5e260d6e970cf8d72c78f08156f180676a03ee86e7ab8435153e3751239113b4f1d9c59cd9abd9477a56ce8d95
6
+ metadata.gz: 688d545ff5ca075ee62774416757cbc76b870d79d2b5cadeb262aba7eccc05f720ccef1ca93637d8fa6e75a8eec574bbed6ade01f129e14211130fe773e395cf
7
+ data.tar.gz: f7003acf5fd2524d9b8a9c72e977766a8a3c26f039706c524ecd82c8f15bb4926cf3c02c640630825a7fd636f76298df99abb1077f5ff5855f9aa9f2c89274a7
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  Kaltura Ruby API Client Library.
2
- Compatible with Kaltura server version 18.4.0 and above.
2
+ Compatible with Kaltura server version 18.7.0 and above.
3
3
 
4
4
  This source contains:
5
5
  - The Kaltura client library (kaltura_client_base.rb)
@@ -6364,8 +6364,8 @@ module Kaltura
6364
6364
 
6365
6365
  def initialize(client)
6366
6366
  super(client)
6367
- self.client_tag = 'ruby:22-05-09'
6368
- self.api_version = '18.4.0'
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"
@@ -204,6 +204,7 @@ module Kaltura
204
204
 
205
205
  class KalturaESearchUserFieldName
206
206
  COMPANY = "company"
207
+ COUNTRY = "country"
207
208
  CREATED_AT = "created_at"
208
209
  EMAIL = "email"
209
210
  FIRST_NAME = "first_name"
@@ -37,6 +37,7 @@ module Kaltura
37
37
 
38
38
  class KalturaESearchGroupFieldName
39
39
  COMPANY = "company"
40
+ COUNTRY = "country"
40
41
  CREATED_AT = "created_at"
41
42
  EMAIL = "email"
42
43
  FIRST_NAME = "first_name"
@@ -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
- # The format of the outputted date string. There are also several predefined date constants that may be used instead, so for example DATE_RSS contains the format string 'D, d M Y H:i:s'.
4550
- # https://www.php.net/manual/en/function.date.php
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
 
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: 18.4.0
4
+ version: 18.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.