kaltura-client 16.10.0 → 16.12.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 +5 -1
- data/lib/kaltura_plugins/kaltura_reach_client_plugin.rb +18 -0
- data/lib/kaltura_types.rb +20 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2fb1ebef794a6858ae59b9295abb300590d5fee17f11d899f3f2746ca029a39
|
4
|
+
data.tar.gz: 914771d15ba388c44b51380612c7349b3b11a56c2e3877ab61256e9d6ecc7ed9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 435c6d0b24b144fd554997f5abfd3d3c2538866fd7f28377a175ba63e59f7faef4fc2a6a74dc0d96b422078bf732251e04d4361bbb340c59b05fa9beef97e5fe
|
7
|
+
data.tar.gz: e5dc80de98c502f22749afda2880b0a1f41fef3cd217784e4d7a98f6febfc2825ff181bb5a4c4823c26ac42b131f7178b21b799c074020d87c2c5321621da62d
|
data/README
CHANGED
data/lib/kaltura_client.rb
CHANGED
@@ -6294,8 +6294,8 @@ module Kaltura
|
|
6294
6294
|
|
6295
6295
|
def initialize(client)
|
6296
6296
|
super(client)
|
6297
|
-
self.client_tag = 'ruby:20-
|
6298
|
-
self.api_version = '16.
|
6297
|
+
self.client_tag = 'ruby:20-11-24'
|
6298
|
+
self.api_version = '16.12.0'
|
6299
6299
|
end
|
6300
6300
|
|
6301
6301
|
def client_tag=(value)
|
data/lib/kaltura_enums.rb
CHANGED
@@ -2331,6 +2331,7 @@ module Kaltura
|
|
2331
2331
|
PL = "Polish"
|
2332
2332
|
PNT = "Pontic"
|
2333
2333
|
PT = "Portuguese"
|
2334
|
+
PT_BR = "Portuguese (Brazil)"
|
2334
2335
|
POT = "Potawatomi"
|
2335
2336
|
PRG = "Prussian"
|
2336
2337
|
FUC = "Pulaar"
|
@@ -2403,6 +2404,7 @@ module Kaltura
|
|
2403
2404
|
SMA = "Southern Sami"
|
2404
2405
|
TCE = "Southern Tutchone"
|
2405
2406
|
ES = "Spanish"
|
2407
|
+
ES_XL = "Spanish (Latin America)"
|
2406
2408
|
SRN = "Sranan"
|
2407
2409
|
STO = "Stoney"
|
2408
2410
|
XSV = "Sudovian"
|
@@ -2491,8 +2493,8 @@ module Kaltura
|
|
2491
2493
|
WYM = "Wymysorys"
|
2492
2494
|
XH = "Xhosa"
|
2493
2495
|
AME = "Yanesha"
|
2494
|
-
YI = "Yiddish"
|
2495
2496
|
JI = "Yiddish"
|
2497
|
+
YI = "Yiddish"
|
2496
2498
|
YO = "Yoruba"
|
2497
2499
|
ZAI = "Zapotec Isthmus"
|
2498
2500
|
DJE = "Zarma"
|
@@ -2534,6 +2536,7 @@ module Kaltura
|
|
2534
2536
|
EN_US = "en_us"
|
2535
2537
|
EO = "eo"
|
2536
2538
|
ES = "es"
|
2539
|
+
ES_XL = "es_xl"
|
2537
2540
|
ET = "et"
|
2538
2541
|
EU = "eu"
|
2539
2542
|
FA = "fa"
|
@@ -2613,6 +2616,7 @@ module Kaltura
|
|
2613
2616
|
PL = "pl"
|
2614
2617
|
PS = "ps"
|
2615
2618
|
PT = "pt"
|
2619
|
+
PT_BR = "pt_br"
|
2616
2620
|
QU = "qu"
|
2617
2621
|
RM = "rm"
|
2618
2622
|
RN = "rn"
|
@@ -130,6 +130,7 @@ module Kaltura
|
|
130
130
|
FI = "Finnish"
|
131
131
|
FR = "French"
|
132
132
|
FR_CA = "French (Canada)"
|
133
|
+
GD = "Gaelic (Scottish)"
|
133
134
|
DE = "German"
|
134
135
|
EL = "Greek"
|
135
136
|
HE = "Hebrew"
|
@@ -146,9 +147,11 @@ module Kaltura
|
|
146
147
|
NO = "Norwegian"
|
147
148
|
PL = "Polish"
|
148
149
|
PT = "Portuguese"
|
150
|
+
PT_BR = "Portuguese (Brazil)"
|
149
151
|
RO = "Romanian"
|
150
152
|
RU = "Russian"
|
151
153
|
ES = "Spanish"
|
154
|
+
ES_XL = "Spanish (Latin America)"
|
152
155
|
SV = "Swedish"
|
153
156
|
ZH_TW = "Taiwanese Mandarin"
|
154
157
|
TA = "Tamil"
|
@@ -253,10 +256,18 @@ module Kaltura
|
|
253
256
|
end
|
254
257
|
|
255
258
|
class KalturaVendorTaskData < KalturaObjectBase
|
259
|
+
# The duration of the entry for which the task was created for in milliseconds
|
260
|
+
attr_accessor :entry_duration
|
256
261
|
|
262
|
+
def entry_duration=(val)
|
263
|
+
@entry_duration = val.to_i
|
264
|
+
end
|
257
265
|
|
258
266
|
def from_xml(xml_element)
|
259
267
|
super
|
268
|
+
if xml_element.elements['entryDuration'] != nil
|
269
|
+
self.entry_duration = xml_element.elements['entryDuration'].text
|
270
|
+
end
|
260
271
|
end
|
261
272
|
|
262
273
|
end
|
@@ -648,6 +659,7 @@ module Kaltura
|
|
648
659
|
attr_accessor :service_feature
|
649
660
|
attr_accessor :turn_around_time
|
650
661
|
attr_accessor :pricing
|
662
|
+
attr_accessor :allow_resubmission
|
651
663
|
|
652
664
|
def id=(val)
|
653
665
|
@id = val.to_i
|
@@ -673,6 +685,9 @@ module Kaltura
|
|
673
685
|
def turn_around_time=(val)
|
674
686
|
@turn_around_time = val.to_i
|
675
687
|
end
|
688
|
+
def allow_resubmission=(val)
|
689
|
+
@allow_resubmission = to_b(val)
|
690
|
+
end
|
676
691
|
|
677
692
|
def from_xml(xml_element)
|
678
693
|
super
|
@@ -709,6 +724,9 @@ module Kaltura
|
|
709
724
|
if xml_element.elements['pricing'] != nil
|
710
725
|
self.pricing = KalturaClientBase.object_from_xml(xml_element.elements['pricing'], 'KalturaVendorCatalogItemPricing')
|
711
726
|
end
|
727
|
+
if xml_element.elements['allowResubmission'] != nil
|
728
|
+
self.allow_resubmission = xml_element.elements['allowResubmission'].text
|
729
|
+
end
|
712
730
|
end
|
713
731
|
|
714
732
|
end
|
data/lib/kaltura_types.rb
CHANGED
@@ -8140,6 +8140,22 @@ module Kaltura
|
|
8140
8140
|
|
8141
8141
|
end
|
8142
8142
|
|
8143
|
+
class KalturaTypedArray < KalturaObjectBase
|
8144
|
+
attr_accessor :count
|
8145
|
+
|
8146
|
+
def count=(val)
|
8147
|
+
@count = val.to_i
|
8148
|
+
end
|
8149
|
+
|
8150
|
+
def from_xml(xml_element)
|
8151
|
+
super
|
8152
|
+
if xml_element.elements['count'] != nil
|
8153
|
+
self.count = xml_element.elements['count'].text
|
8154
|
+
end
|
8155
|
+
end
|
8156
|
+
|
8157
|
+
end
|
8158
|
+
|
8143
8159
|
class KalturaPlaybackContext < KalturaObjectBase
|
8144
8160
|
attr_accessor :sources
|
8145
8161
|
attr_accessor :playback_captions
|
@@ -8148,6 +8164,7 @@ module Kaltura
|
|
8148
8164
|
attr_accessor :actions
|
8149
8165
|
# Array of actions as received from the rules that invalidated
|
8150
8166
|
attr_accessor :messages
|
8167
|
+
attr_accessor :bumper_data
|
8151
8168
|
|
8152
8169
|
|
8153
8170
|
def from_xml(xml_element)
|
@@ -8167,6 +8184,9 @@ module Kaltura
|
|
8167
8184
|
if xml_element.elements['messages'] != nil
|
8168
8185
|
self.messages = KalturaClientBase.object_from_xml(xml_element.elements['messages'], 'KalturaAccessControlMessage')
|
8169
8186
|
end
|
8187
|
+
if xml_element.elements['bumperData'] != nil
|
8188
|
+
self.bumper_data = KalturaClientBase.object_from_xml(xml_element.elements['bumperData'], 'KalturaTypedArray')
|
8189
|
+
end
|
8170
8190
|
end
|
8171
8191
|
|
8172
8192
|
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: 16.
|
4
|
+
version: 16.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kaltura Inc.
|
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
169
|
- !ruby/object:Gem::Version
|
170
170
|
version: '0'
|
171
171
|
requirements: []
|
172
|
-
rubygems_version: 3.2.0.rc.
|
172
|
+
rubygems_version: 3.2.0.rc.2
|
173
173
|
signing_key:
|
174
174
|
specification_version: 4
|
175
175
|
summary: A gem implementation of Kaltura's Ruby Client
|