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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c455661d9cc46d728a7a4da215ce3f95ff43821854748539d1387f6cdc1d2f3
|
4
|
+
data.tar.gz: 643ec66bdcdf5194de669e4ba4773b3a68dbd97486949150e3f5f19fa3e5f366
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56c330fe711156d303f3cb736aa7f9a7aca2e1b062983b9bd564a61b8542eb29ae11dc8b06424c480e0ff6052e13b1e03848474d00fea09c9b74b67221b25422
|
7
|
+
data.tar.gz: d3aca6b750a4de7bf32d420114b00266dbbef55e4af208fc28caa460bed8107abdc3d59da0b1ac4fe6552d213c75806be8559fb3b7f27a1c7a592ac330c9eecf
|
data/README
CHANGED
data/lib/kaltura_client.rb
CHANGED
@@ -6208,8 +6208,8 @@ module Kaltura
|
|
6208
6208
|
|
6209
6209
|
def initialize(client)
|
6210
6210
|
super(client)
|
6211
|
-
self.client_tag = 'ruby:19-
|
6212
|
-
self.api_version = '15.
|
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
|