kaltura-client 15.3.0 → 15.4.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: 415cbe2878c6794122226ab4ac5ab3ff1ca00d1e18ad445bc699706e563fbb95
4
- data.tar.gz: 19fcd801a013cf74f4ac3a6dab6757aaa063c5f900971888549844d1659ae3fc
3
+ metadata.gz: 2c455661d9cc46d728a7a4da215ce3f95ff43821854748539d1387f6cdc1d2f3
4
+ data.tar.gz: 643ec66bdcdf5194de669e4ba4773b3a68dbd97486949150e3f5f19fa3e5f366
5
5
  SHA512:
6
- metadata.gz: f19de3ecac00594c8b7ecc8f3a37d267e6899e35109e094b513eef7d676e288501418a555ac89dde3452456adbdc91f102a89aa32f01ec897ef2e8d8fc6b18bb
7
- data.tar.gz: 273fac658eceb3b5558b99ed8215cb4a658e4892be3363c7521a6ca989ff808a3e4ba34fea352fcf905e00b0b9707b4bdb8b7007e876fb2090dda87617f91e00
6
+ metadata.gz: 56c330fe711156d303f3cb736aa7f9a7aca2e1b062983b9bd564a61b8542eb29ae11dc8b06424c480e0ff6052e13b1e03848474d00fea09c9b74b67221b25422
7
+ data.tar.gz: d3aca6b750a4de7bf32d420114b00266dbbef55e4af208fc28caa460bed8107abdc3d59da0b1ac4fe6552d213c75806be8559fb3b7f27a1c7a592ac330c9eecf
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  Kaltura Ruby API Client Library.
2
- Compatible with Kaltura server version 15.3.0 and above.
2
+ Compatible with Kaltura server version 15.4.0 and above.
3
3
 
4
4
  This source contains:
5
5
  - The Kaltura client library (kaltura_client_base.rb)
@@ -6208,8 +6208,8 @@ module Kaltura
6208
6208
 
6209
6209
  def initialize(client)
6210
6210
  super(client)
6211
- self.client_tag = 'ruby:19-07-17'
6212
- self.api_version = '15.3.0'
6211
+ self.client_tag = 'ruby:19-08-06'
6212
+ self.api_version = '15.4.0'
6213
6213
  end
6214
6214
 
6215
6215
  def client_tag=(value)
@@ -58,6 +58,8 @@ module Kaltura
58
58
  attr_accessor :distributed_metadata
59
59
  # Key-value array where the keys are IDs of distributed caption assets in the source account and the values are the matching IDs in the target account
60
60
  attr_accessor :distributed_caption_assets
61
+ # Key-value array where the keys are IDs of distributed caption assets in the source account and the values are the matching IDs in the target account
62
+ attr_accessor :distributed_attachment_assets
61
63
  # Key-value array where the keys are IDs of distributed cue points in the source account and the values are the matching IDs in the target account
62
64
  attr_accessor :distributed_cue_points
63
65
  # Key-value array where the keys are IDs of distributed thumb cue points in the source account and the values are the matching IDs in the target account
@@ -80,6 +82,9 @@ module Kaltura
80
82
  if xml_element.elements['distributedCaptionAssets'] != nil
81
83
  self.distributed_caption_assets = xml_element.elements['distributedCaptionAssets'].text
82
84
  end
85
+ if xml_element.elements['distributedAttachmentAssets'] != nil
86
+ self.distributed_attachment_assets = xml_element.elements['distributedAttachmentAssets'].text
87
+ end
83
88
  if xml_element.elements['distributedCuePoints'] != nil
84
89
  self.distributed_cue_points = xml_element.elements['distributedCuePoints'].text
85
90
  end
@@ -101,6 +106,10 @@ module Kaltura
101
106
  attr_accessor :metadata_xslt
102
107
  attr_accessor :metadata_xpaths_trigger_update
103
108
  attr_accessor :distribute_captions
109
+ attr_accessor :designated_categories
110
+ attr_accessor :distribute_categories
111
+ attr_accessor :collaborators_custom_metadata_profile_id
112
+ attr_accessor :collaborators_from_custom_metadata_profile
104
113
  attr_accessor :distribute_cue_points
105
114
  attr_accessor :distribute_remote_flavor_asset_content
106
115
  attr_accessor :distribute_remote_thumb_asset_content
@@ -112,6 +121,7 @@ module Kaltura
112
121
  attr_accessor :map_flavor_params_ids
113
122
  attr_accessor :map_thumb_params_ids
114
123
  attr_accessor :map_caption_params_ids
124
+ attr_accessor :map_attachment_params_ids
115
125
 
116
126
  def target_account_id=(val)
117
127
  @target_account_id = val.to_i
@@ -119,6 +129,12 @@ module Kaltura
119
129
  def distribute_captions=(val)
120
130
  @distribute_captions = to_b(val)
121
131
  end
132
+ def distribute_categories=(val)
133
+ @distribute_categories = to_b(val)
134
+ end
135
+ def collaborators_from_custom_metadata_profile=(val)
136
+ @collaborators_from_custom_metadata_profile = to_b(val)
137
+ end
122
138
  def distribute_cue_points=(val)
123
139
  @distribute_cue_points = to_b(val)
124
140
  end
@@ -155,6 +171,18 @@ module Kaltura
155
171
  if xml_element.elements['distributeCaptions'] != nil
156
172
  self.distribute_captions = xml_element.elements['distributeCaptions'].text
157
173
  end
174
+ if xml_element.elements['designatedCategories'] != nil
175
+ self.designated_categories = xml_element.elements['designatedCategories'].text
176
+ end
177
+ if xml_element.elements['distributeCategories'] != nil
178
+ self.distribute_categories = xml_element.elements['distributeCategories'].text
179
+ end
180
+ if xml_element.elements['collaboratorsCustomMetadataProfileId'] != nil
181
+ self.collaborators_custom_metadata_profile_id = xml_element.elements['collaboratorsCustomMetadataProfileId'].text
182
+ end
183
+ if xml_element.elements['collaboratorsFromCustomMetadataProfile'] != nil
184
+ self.collaborators_from_custom_metadata_profile = xml_element.elements['collaboratorsFromCustomMetadataProfile'].text
185
+ end
158
186
  if xml_element.elements['distributeCuePoints'] != nil
159
187
  self.distribute_cue_points = xml_element.elements['distributeCuePoints'].text
160
188
  end
@@ -188,6 +216,9 @@ module Kaltura
188
216
  if xml_element.elements['mapCaptionParamsIds'] != nil
189
217
  self.map_caption_params_ids = KalturaClientBase.object_from_xml(xml_element.elements['mapCaptionParamsIds'], 'KalturaKeyValue')
190
218
  end
219
+ if xml_element.elements['mapAttachmentParamsIds'] != nil
220
+ self.map_attachment_params_ids = KalturaClientBase.object_from_xml(xml_element.elements['mapAttachmentParamsIds'], 'KalturaKeyValue')
221
+ end
191
222
  end
192
223
 
193
224
  end
@@ -96,6 +96,7 @@ module Kaltura
96
96
  TWENTY_FOUR_HOURS = 86400
97
97
  FORTY_EIGHT_HOURS = 172800
98
98
  FOUR_DAYS = 345600
99
+ FIVE_DAYS = 432000
99
100
  TEN_DAYS = 864000
100
101
  end
101
102
 
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.3.0
4
+ version: 15.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.