kaltura-client 16.2.0 → 16.10.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: d6ff0445a37009b280e81e6054031885e81e4cba51f30ca52c9cd025d18984fd
4
- data.tar.gz: b83dcfd11779334e38df112e91feb3dc02c148040f1331ad97045a8158687254
3
+ metadata.gz: db37f9e91d1b1fcf1b7485c76c1bb905e5953815dc7e2bfaf6ad3ee5a512df67
4
+ data.tar.gz: 97b451d27cff23cd677638d6934a5be06f27e4d22b6de8379b9d6d80b1f62260
5
5
  SHA512:
6
- metadata.gz: 6c6d9336f8911a3b8ced6b638fea25823474ef668651261885a6a994f8e1f3893a9cad73372f87896d1519f4e7fbe048c6b0a76e1fd5684d5ab5285d387d0955
7
- data.tar.gz: f88577186be57cb44fe4eeed8788b2ecd40c589cf77700984492b700fc5877a1d03ab61cbc835566ecc8fea5d21ef127d93984975e4163c5f438a1a05c2cbf00
6
+ metadata.gz: 57f0c8553db5087fc591462e953dd414fccdaaa5df9f83362ef90885b1ac4cf8d5e93bc59c521190da10d8a4ad67eff3ce9e9c1846ab412c558eaa9eb1802d23
7
+ data.tar.gz: ea3b59ca8eb84292df364f5e2c9ce221674fa1c8a68821648642cb627d8129fab45852c488f86015211b89bb5625c9d540ba3abb70fd06c93b4666ab8a998daa
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  Kaltura Ruby API Client Library.
2
- Compatible with Kaltura server version 16.2.0 and above.
2
+ Compatible with Kaltura server version 16.10.0 and above.
3
3
 
4
4
  This source contains:
5
5
  - The Kaltura client library (kaltura_client_base.rb)
@@ -2618,7 +2618,7 @@ module Kaltura
2618
2618
 
2619
2619
  # Delivering the status of a live stream (on-air/offline) if it is possible
2620
2620
  # @return [bool]
2621
- def is_live(id, protocol)
2621
+ def is_live(id, protocol=KalturaNotImplemented)
2622
2622
  kparams = {}
2623
2623
  client.add_param(kparams, 'id', id)
2624
2624
  client.add_param(kparams, 'protocol', protocol)
@@ -5699,9 +5699,10 @@ module Kaltura
5699
5699
 
5700
5700
  # Reset user's password and send the user an email to generate a new one.
5701
5701
  # @return []
5702
- def reset_password(email)
5702
+ def reset_password(email, link_type=KalturaNotImplemented)
5703
5703
  kparams = {}
5704
5704
  client.add_param(kparams, 'email', email)
5705
+ client.add_param(kparams, 'linkType', link_type)
5705
5706
  client.queue_service_action_call('user', 'resetPassword', '', kparams)
5706
5707
  if (client.is_multirequest)
5707
5708
  return nil
@@ -5765,6 +5766,18 @@ module Kaltura
5765
5766
  end
5766
5767
  return client.do_queue()
5767
5768
  end
5769
+
5770
+ # Validate hash key
5771
+ # @return [KalturaAuthentication]
5772
+ def validate_hash_key(hash_key)
5773
+ kparams = {}
5774
+ client.add_param(kparams, 'hashKey', hash_key)
5775
+ client.queue_service_action_call('user', 'validateHashKey', 'KalturaAuthentication', kparams)
5776
+ if (client.is_multirequest)
5777
+ return nil
5778
+ end
5779
+ return client.do_queue()
5780
+ end
5768
5781
  end
5769
5782
 
5770
5783
  # widget service for full widget management
@@ -6281,8 +6294,8 @@ module Kaltura
6281
6294
 
6282
6295
  def initialize(client)
6283
6296
  super(client)
6284
- self.client_tag = 'ruby:20-05-17'
6285
- self.api_version = '16.2.0'
6297
+ self.client_tag = 'ruby:20-10-26'
6298
+ self.api_version = '16.10.0'
6286
6299
  end
6287
6300
 
6288
6301
  def client_tag=(value)
@@ -1133,6 +1133,9 @@ module Kaltura
1133
1133
  LIVE_ENTRY_ARCHIVE = "51"
1134
1134
  STORAGE_UPDATE = "52"
1135
1135
  STORAGE_PERIODIC_EXPORT = "53"
1136
+ STORAGE_PERIODIC_PURGE = "54"
1137
+ STORAGE_PERIODIC_DELETE_LOCAL = "55"
1138
+ REACH_JOB_CLEANER = "56"
1136
1139
  end
1137
1140
 
1138
1141
  class KalturaBulkUploadAction
@@ -1620,6 +1623,17 @@ module Kaltura
1620
1623
  UPDATED_AT_DESC = "-updatedAt"
1621
1624
  end
1622
1625
 
1626
+ class KalturaEntryApplication
1627
+ KMC = "0"
1628
+ KMS = "1"
1629
+ KAF = "2"
1630
+ PITCH = "3"
1631
+ KMS_GO = "4"
1632
+ WEBCAST_APP = "5"
1633
+ PERSONAL_CAPTURE = "6"
1634
+ KALTURA_MEETING = "7"
1635
+ end
1636
+
1623
1637
  class KalturaEntryIdentifierField
1624
1638
  ID = "id"
1625
1639
  REFERENCE_ID = "referenceId"
@@ -2079,6 +2093,7 @@ module Kaltura
2079
2093
  FRP = "Franco-Prove"
2080
2094
  FRK = "Frankish"
2081
2095
  FR = "French"
2096
+ FR_CA = "French (Canada)"
2082
2097
  FY = "Frisian"
2083
2098
  FRR = "Frisian Northern"
2084
2099
  FUR = "Friulian"
@@ -2112,8 +2127,8 @@ module Kaltura
2112
2127
  HNI = "Hani"
2113
2128
  HA = "Hausa"
2114
2129
  HAW = "Hawaiian"
2115
- HE = "Hebrew"
2116
2130
  IW = "Hebrew"
2131
+ HE = "Hebrew"
2117
2132
  HEI = "Heiltsuk"
2118
2133
  HID = "Hidatsa"
2119
2134
  HIL = "Hiligaynon"
@@ -2127,8 +2142,8 @@ module Kaltura
2127
2142
  KPO = "Ikposo"
2128
2143
  ILO = "Iloko"
2129
2144
  SMN = "Inari Sami"
2130
- ID = "Indonesian"
2131
2145
  IN = "Indonesian"
2146
+ ID = "Indonesian"
2132
2147
  IZH = "Ingrian"
2133
2148
  INH = "Ingush"
2134
2149
  IA = "Interlingua"
@@ -2408,6 +2423,7 @@ module Kaltura
2408
2423
  TGX = "Tagish"
2409
2424
  THT = "Tahltan"
2410
2425
  TDD = "Tai Na"
2426
+ ZH_TW = "Taiwanese Mandarin"
2411
2427
  TG = "Tajik"
2412
2428
  TLY = "Talysh"
2413
2429
  TTQ = "Tamajaq Tawallammat"
@@ -2525,6 +2541,7 @@ module Kaltura
2525
2541
  FJ = "fj"
2526
2542
  FO = "fo"
2527
2543
  FR = "fr"
2544
+ FR_CA = "fr_ca"
2528
2545
  FY = "fy"
2529
2546
  GA = "ga"
2530
2547
  GD = "gd"
@@ -2647,6 +2664,7 @@ module Kaltura
2647
2664
  YI = "yi"
2648
2665
  YO = "yo"
2649
2666
  ZH = "zh"
2667
+ ZH_TW = "zh_tw"
2650
2668
  ZU = "zu"
2651
2669
  ZXX = "zxx"
2652
2670
  end
@@ -3379,6 +3397,7 @@ module Kaltura
3379
3397
  APPLE_HTTP = "applehttp"
3380
3398
  APPLE_HTTP_TO_MC = "applehttp_to_mc"
3381
3399
  AUTO = "auto"
3400
+ DOWNLOAD = "download"
3382
3401
  AKAMAI_HD = "hdnetwork"
3383
3402
  AKAMAI_HDS = "hdnetworkmanifest"
3384
3403
  HDS = "hds"
@@ -3527,6 +3546,10 @@ module Kaltura
3527
3546
  SUB_CATEGORIES = "53"
3528
3547
  INTERACTIVE_VIDEO_NODE_TOP_HOTSPOTS = "54"
3529
3548
  INTERCATIVE_VIDEO_NODE_SWITCH_TOP_HOTSPOTS = "55"
3549
+ INTERACTIVE_VIDEO_HOTSPOT_CLICKED_PERCENTILES = "56"
3550
+ INTERACTIVE_VIDEO_NODE_SWITCH_HOTSPOT_CLICKED_PERCENTILES = "57"
3551
+ TOP_CUSTOM_VAR2 = "58"
3552
+ TOP_CUSTOM_VAR3 = "59"
3530
3553
  PARTNER_USAGE = "201"
3531
3554
  MAP_OVERLAY_COUNTRY_REALTIME = "10001"
3532
3555
  MAP_OVERLAY_REGION_REALTIME = "10002"
@@ -3541,6 +3564,8 @@ module Kaltura
3541
3564
  PLAYBACK_TYPE_REALTIME = "10011"
3542
3565
  CONTENT_REALTIME = "10012"
3543
3566
  DISCOVERY_VIEW_REALTIME = "10013"
3567
+ TOP_ENDED_BROADCAST_ENTRIES = "10014"
3568
+ TOP_LIVE_NOW_ENTRIES = "10015"
3544
3569
  CONTENT_DROPOFF_VPAAS = "20001"
3545
3570
  TOP_SYNDICATION_VPAAS = "20002"
3546
3571
  USER_TOP_CONTENT_VPAAS = "20003"
@@ -3627,6 +3652,22 @@ module Kaltura
3627
3652
  QOE_ENGAGEMENT_APPLICATION_VERSION = "30062"
3628
3653
  QOE_STREAM_QUALITY_APPLICATION_VERSION = "30063"
3629
3654
  QOE_ERROR_TRACKING_APPLICATION_VERSION = "30064"
3655
+ HIGHLIGHTS_WEBCAST = "40001"
3656
+ ENGAGEMENT_WEBCAST = "40002"
3657
+ QUALITY_WEBCAST = "40003"
3658
+ MAP_OVERLAY_COUNTRY_WEBCAST = "40004"
3659
+ MAP_OVERLAY_REGION_WEBCAST = "40005"
3660
+ MAP_OVERLAY_CITY_WEBCAST = "40006"
3661
+ PLATFORMS_WEBCAST = "40007"
3662
+ TOP_DOMAINS_WEBCAST = "40008"
3663
+ TOP_USERS_WEBCAST = "40009"
3664
+ ENGAGEMENT_BREAKDOWN_WEBCAST = "40010"
3665
+ ENGAGMENT_TIMELINE_WEBCAST = "40011"
3666
+ end
3667
+
3668
+ class KalturaResetPassLinkType
3669
+ KMC = "1"
3670
+ KMS = "2"
3630
3671
  end
3631
3672
 
3632
3673
  class KalturaResponseProfileOrderBy
@@ -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 fileassets in the source account and the values are the matching IDs in the target account
62
+ attr_accessor :distributed_file_assets
61
63
  # 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
64
  attr_accessor :distributed_attachment_assets
63
65
  # 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
@@ -82,6 +84,9 @@ module Kaltura
82
84
  if xml_element.elements['distributedCaptionAssets'] != nil
83
85
  self.distributed_caption_assets = xml_element.elements['distributedCaptionAssets'].text
84
86
  end
87
+ if xml_element.elements['distributedFileAssets'] != nil
88
+ self.distributed_file_assets = xml_element.elements['distributedFileAssets'].text
89
+ end
85
90
  if xml_element.elements['distributedAttachmentAssets'] != nil
86
91
  self.distributed_attachment_assets = xml_element.elements['distributedAttachmentAssets'].text
87
92
  end
@@ -1263,6 +1263,18 @@ module Kaltura
1263
1263
  end
1264
1264
  return client.do_queue()
1265
1265
  end
1266
+
1267
+ # @return []
1268
+ def update_status(drop_folder_id, status)
1269
+ kparams = {}
1270
+ client.add_param(kparams, 'dropFolderId', drop_folder_id)
1271
+ client.add_param(kparams, 'status', status)
1272
+ client.queue_service_action_call('dropfolder_dropfolder', 'updateStatus', '', kparams)
1273
+ if (client.is_multirequest)
1274
+ return nil
1275
+ end
1276
+ return client.do_queue()
1277
+ end
1266
1278
  end
1267
1279
 
1268
1280
  # DropFolderFile service lets you create and manage drop folder files
@@ -86,6 +86,7 @@ module Kaltura
86
86
  attr_accessor :original_id
87
87
  attr_accessor :src_path
88
88
  attr_accessor :src_enc_key
89
+ attr_accessor :storage_class
89
90
 
90
91
  def id=(val)
91
92
  @id = val.to_i
@@ -222,6 +223,9 @@ module Kaltura
222
223
  if xml_element.elements['srcEncKey'] != nil
223
224
  self.src_enc_key = xml_element.elements['srcEncKey'].text
224
225
  end
226
+ if xml_element.elements['storageClass'] != nil
227
+ self.storage_class = xml_element.elements['storageClass'].text
228
+ end
225
229
  end
226
230
 
227
231
  end
@@ -317,6 +317,8 @@ module Kaltura
317
317
  attr_accessor :url
318
318
  # Request method.
319
319
  attr_accessor :method
320
+ # The type of the data to send.
321
+ attr_accessor :content_type
320
322
  # Data to send.
321
323
  attr_accessor :data
322
324
  # The maximum number of seconds to allow cURL functions to execute.
@@ -378,6 +380,9 @@ module Kaltura
378
380
  if xml_element.elements['method'] != nil
379
381
  self.method = xml_element.elements['method'].text
380
382
  end
383
+ if xml_element.elements['contentType'] != nil
384
+ self.content_type = xml_element.elements['contentType'].text
385
+ end
381
386
  if xml_element.elements['data'] != nil
382
387
  self.data = xml_element.elements['data'].text
383
388
  end
@@ -62,6 +62,68 @@ module Kaltura
62
62
 
63
63
  end
64
64
 
65
+ class KalturaInteractivityDataFieldsFilter < KalturaObjectBase
66
+ # A string containing CSV list of fields to include
67
+ attr_accessor :fields
68
+
69
+
70
+ def from_xml(xml_element)
71
+ super
72
+ if xml_element.elements['fields'] != nil
73
+ self.fields = xml_element.elements['fields'].text
74
+ end
75
+ end
76
+
77
+ end
78
+
79
+ class KalturaInteractivityRootFilter < KalturaInteractivityDataFieldsFilter
80
+
81
+
82
+ def from_xml(xml_element)
83
+ super
84
+ end
85
+
86
+ end
87
+
88
+ class KalturaInteractivityNodeFilter < KalturaInteractivityDataFieldsFilter
89
+
90
+
91
+ def from_xml(xml_element)
92
+ super
93
+ end
94
+
95
+ end
96
+
97
+ class KalturaInteractivityInteractionFilter < KalturaInteractivityDataFieldsFilter
98
+
99
+
100
+ def from_xml(xml_element)
101
+ super
102
+ end
103
+
104
+ end
105
+
106
+ class KalturaInteractivityDataFilter < KalturaObjectBase
107
+ attr_accessor :root_filter
108
+ attr_accessor :node_filter
109
+ attr_accessor :interaction_filter
110
+
111
+
112
+ def from_xml(xml_element)
113
+ super
114
+ if xml_element.elements['rootFilter'] != nil
115
+ self.root_filter = KalturaClientBase.object_from_xml(xml_element.elements['rootFilter'], 'KalturaInteractivityRootFilter')
116
+ end
117
+ if xml_element.elements['nodeFilter'] != nil
118
+ self.node_filter = KalturaClientBase.object_from_xml(xml_element.elements['nodeFilter'], 'KalturaInteractivityNodeFilter')
119
+ end
120
+ if xml_element.elements['interactionFilter'] != nil
121
+ self.interaction_filter = KalturaClientBase.object_from_xml(xml_element.elements['interactionFilter'], 'KalturaInteractivityInteractionFilter')
122
+ end
123
+ end
124
+
125
+ end
126
+
65
127
  class KalturaInteractivity < KalturaBaseInteractivity
66
128
 
67
129
 
@@ -113,9 +175,10 @@ module Kaltura
113
175
 
114
176
  # Retrieve a interactivity object by entry id
115
177
  # @return [KalturaInteractivity]
116
- def get(entry_id)
178
+ def get(entry_id, data_filter=KalturaNotImplemented)
117
179
  kparams = {}
118
180
  client.add_param(kparams, 'entryId', entry_id)
181
+ client.add_param(kparams, 'dataFilter', data_filter)
119
182
  client.queue_service_action_call('interactivity_interactivity', 'get', 'KalturaInteractivity', kparams)
120
183
  if (client.is_multirequest)
121
184
  return nil
@@ -129,6 +129,7 @@ module Kaltura
129
129
  EN_GB = "English (British)"
130
130
  FI = "Finnish"
131
131
  FR = "French"
132
+ FR_CA = "French (Canada)"
132
133
  DE = "German"
133
134
  EL = "Greek"
134
135
  HE = "Hebrew"
@@ -136,9 +137,11 @@ module Kaltura
136
137
  HU = "Hungarian"
137
138
  IS = "Icelandic"
138
139
  IN = "Indonesian"
140
+ GA = "Irish"
139
141
  IT = "Italian"
140
142
  JA = "Japanese"
141
143
  KO = "Korean"
144
+ ML = "Malayalam"
142
145
  CMN = "Mandarin Chinese"
143
146
  NO = "Norwegian"
144
147
  PL = "Polish"
@@ -147,8 +150,15 @@ module Kaltura
147
150
  RU = "Russian"
148
151
  ES = "Spanish"
149
152
  SV = "Swedish"
153
+ ZH_TW = "Taiwanese Mandarin"
154
+ TA = "Tamil"
150
155
  TH = "Thai"
151
156
  TR = "Turkish"
157
+ UK = "Ukrainian"
158
+ UR = "Urdu"
159
+ VI = "Vietnamese"
160
+ CY = "Welsh"
161
+ ZU = "Zulu"
152
162
  end
153
163
 
154
164
  class KalturaEntryVendorTaskOrderBy
@@ -717,30 +727,6 @@ module Kaltura
717
727
 
718
728
  end
719
729
 
720
- class KalturaAlignmentVendorTaskData < KalturaVendorTaskData
721
- # The id of the text transcript object the vendor should use while runing the alignment task
722
- attr_accessor :text_transcript_asset_id
723
- # Optional - The id of the json transcript object the vendor should update once alignment task processing is done
724
- attr_accessor :json_transcript_asset_id
725
- # Optional - The id of the caption asset object the vendor should update once alignment task processing is done
726
- attr_accessor :caption_asset_id
727
-
728
-
729
- def from_xml(xml_element)
730
- super
731
- if xml_element.elements['textTranscriptAssetId'] != nil
732
- self.text_transcript_asset_id = xml_element.elements['textTranscriptAssetId'].text
733
- end
734
- if xml_element.elements['jsonTranscriptAssetId'] != nil
735
- self.json_transcript_asset_id = xml_element.elements['jsonTranscriptAssetId'].text
736
- end
737
- if xml_element.elements['captionAssetId'] != nil
738
- self.caption_asset_id = xml_element.elements['captionAssetId'].text
739
- end
740
- end
741
-
742
- end
743
-
744
730
  class KalturaCatalogItemAdvancedFilter < KalturaSearchItem
745
731
  attr_accessor :service_type_equal
746
732
  attr_accessor :service_type_in
@@ -1019,6 +1005,39 @@ module Kaltura
1019
1005
 
1020
1006
  end
1021
1007
 
1008
+ class KalturaVendorTaskDataCaptionAsset < KalturaVendorTaskData
1009
+ # Optional - The id of the caption asset object
1010
+ attr_accessor :caption_asset_id
1011
+
1012
+
1013
+ def from_xml(xml_element)
1014
+ super
1015
+ if xml_element.elements['captionAssetId'] != nil
1016
+ self.caption_asset_id = xml_element.elements['captionAssetId'].text
1017
+ end
1018
+ end
1019
+
1020
+ end
1021
+
1022
+ class KalturaAlignmentVendorTaskData < KalturaVendorTaskDataCaptionAsset
1023
+ # The id of the text transcript object the vendor should use while runing the alignment task
1024
+ attr_accessor :text_transcript_asset_id
1025
+ # Optional - The id of the json transcript object the vendor should update once alignment task processing is done
1026
+ attr_accessor :json_transcript_asset_id
1027
+
1028
+
1029
+ def from_xml(xml_element)
1030
+ super
1031
+ if xml_element.elements['textTranscriptAssetId'] != nil
1032
+ self.text_transcript_asset_id = xml_element.elements['textTranscriptAssetId'].text
1033
+ end
1034
+ if xml_element.elements['jsonTranscriptAssetId'] != nil
1035
+ self.json_transcript_asset_id = xml_element.elements['jsonTranscriptAssetId'].text
1036
+ end
1037
+ end
1038
+
1039
+ end
1040
+
1022
1041
  class KalturaEntryVendorTaskBaseFilter < KalturaRelatedFilter
1023
1042
  attr_accessor :id_equal
1024
1043
  attr_accessor :id_in
@@ -1308,6 +1327,15 @@ module Kaltura
1308
1327
 
1309
1328
  end
1310
1329
 
1330
+ class KalturaTranslationVendorTaskData < KalturaVendorTaskDataCaptionAsset
1331
+
1332
+
1333
+ def from_xml(xml_element)
1334
+ super
1335
+ end
1336
+
1337
+ end
1338
+
1311
1339
  class KalturaVendorCatalogItemBaseFilter < KalturaRelatedFilter
1312
1340
  attr_accessor :id_equal
1313
1341
  attr_accessor :id_in
@@ -1858,6 +1886,20 @@ module Kaltura
1858
1886
  return client.do_queue()
1859
1887
  end
1860
1888
 
1889
+ # @return [string]
1890
+ def get_serve_url(filter_type=KalturaNotImplemented, filter_input=KalturaNotImplemented, status=KalturaNotImplemented, due_date=KalturaNotImplemented)
1891
+ kparams = {}
1892
+ client.add_param(kparams, 'filterType', filter_type)
1893
+ client.add_param(kparams, 'filterInput', filter_input)
1894
+ client.add_param(kparams, 'status', status)
1895
+ client.add_param(kparams, 'dueDate', due_date)
1896
+ client.queue_service_action_call('reach_entryvendortask', 'getServeUrl', 'string', kparams)
1897
+ if (client.is_multirequest)
1898
+ return nil
1899
+ end
1900
+ return client.do_queue()
1901
+ end
1902
+
1861
1903
  # List KalturaEntryVendorTask objects
1862
1904
  # @return [KalturaEntryVendorTaskListResponse]
1863
1905
  def list(filter=KalturaNotImplemented, pager=KalturaNotImplemented)
@@ -1884,6 +1926,17 @@ module Kaltura
1884
1926
  return client.do_queue()
1885
1927
  end
1886
1928
 
1929
+ # @return [file]
1930
+ def serve(vendor_partner_id=KalturaNotImplemented, partner_id=KalturaNotImplemented, status=KalturaNotImplemented, due_date=KalturaNotImplemented)
1931
+ kparams = {}
1932
+ client.add_param(kparams, 'vendorPartnerId', vendor_partner_id)
1933
+ client.add_param(kparams, 'partnerId', partner_id)
1934
+ client.add_param(kparams, 'status', status)
1935
+ client.add_param(kparams, 'dueDate', due_date)
1936
+ client.queue_service_action_call('reach_entryvendortask', 'serve', 'file', kparams)
1937
+ return client.get_serve_url()
1938
+ end
1939
+
1887
1940
  # Will serve a requested csv
1888
1941
  # @return [string]
1889
1942
  def serve_csv(id)
@@ -689,16 +689,37 @@ module Kaltura
689
689
  class KalturaLiveStreamScheduleEvent < KalturaEntryScheduleEvent
690
690
  # Defines the expected audience.
691
691
  attr_accessor :projected_audience
692
+ # The entry ID of the source entry (for simulive)
693
+ attr_accessor :source_entry_id
694
+ # The time relative time before the startTime considered as preStart time
695
+ attr_accessor :pre_start_time
696
+ # The time relative time before the endTime considered as postEnd time
697
+ attr_accessor :post_end_time
692
698
 
693
699
  def projected_audience=(val)
694
700
  @projected_audience = val.to_i
695
701
  end
702
+ def pre_start_time=(val)
703
+ @pre_start_time = val.to_i
704
+ end
705
+ def post_end_time=(val)
706
+ @post_end_time = val.to_i
707
+ end
696
708
 
697
709
  def from_xml(xml_element)
698
710
  super
699
711
  if xml_element.elements['projectedAudience'] != nil
700
712
  self.projected_audience = xml_element.elements['projectedAudience'].text
701
713
  end
714
+ if xml_element.elements['sourceEntryId'] != nil
715
+ self.source_entry_id = xml_element.elements['sourceEntryId'].text
716
+ end
717
+ if xml_element.elements['preStartTime'] != nil
718
+ self.pre_start_time = xml_element.elements['preStartTime'].text
719
+ end
720
+ if xml_element.elements['postEndTime'] != nil
721
+ self.post_end_time = xml_element.elements['postEndTime'].text
722
+ end
702
723
  end
703
724
 
704
725
  end
@@ -29,6 +29,12 @@ require 'kaltura_client.rb'
29
29
 
30
30
  module Kaltura
31
31
 
32
+ class KalturaSipSourceType
33
+ PICTURE_IN_PICTURE = 1
34
+ TALKING_HEADS = 2
35
+ SCREEN_SHARE = 3
36
+ end
37
+
32
38
  class KalturaSipServerNodeOrderBy
33
39
  CREATED_AT_ASC = "+createdAt"
34
40
  HEARTBEAT_TIME_ASC = "+heartbeatTime"
@@ -111,10 +117,11 @@ module Kaltura
111
117
  end
112
118
 
113
119
  # @return [string]
114
- def generate_sip_url(entry_id, regenerate=false)
120
+ def generate_sip_url(entry_id, regenerate=false, source_type=1)
115
121
  kparams = {}
116
122
  client.add_param(kparams, 'entryId', entry_id)
117
123
  client.add_param(kparams, 'regenerate', regenerate)
124
+ client.add_param(kparams, 'sourceType', source_type)
118
125
  client.queue_service_action_call('sip_pexip', 'generateSipUrl', 'string', kparams)
119
126
  if (client.is_multirequest)
120
127
  return nil
@@ -122,10 +129,10 @@ module Kaltura
122
129
  return client.do_queue()
123
130
  end
124
131
 
125
- # @return [bool]
132
+ # @return []
126
133
  def handle_incoming_call()
127
134
  kparams = {}
128
- client.queue_service_action_call('sip_pexip', 'handleIncomingCall', 'bool', kparams)
135
+ client.queue_service_action_call('sip_pexip', 'handleIncomingCall', '', kparams)
129
136
  if (client.is_multirequest)
130
137
  return nil
131
138
  end
@@ -594,6 +594,8 @@ module Kaltura
594
594
  attr_accessor :partner_description
595
595
  # Comma separated list of source flavor params ids
596
596
  attr_accessor :actual_source_asset_params_ids
597
+ # The size (in Bytes) of the asset
598
+ attr_accessor :size_in_bytes
597
599
 
598
600
  def partner_id=(val)
599
601
  @partner_id = val.to_i
@@ -613,6 +615,9 @@ module Kaltura
613
615
  def deleted_at=(val)
614
616
  @deleted_at = val.to_i
615
617
  end
618
+ def size_in_bytes=(val)
619
+ @size_in_bytes = val.to_i
620
+ end
616
621
 
617
622
  def from_xml(xml_element)
618
623
  super
@@ -658,6 +663,9 @@ module Kaltura
658
663
  if xml_element.elements['actualSourceAssetParamsIds'] != nil
659
664
  self.actual_source_asset_params_ids = xml_element.elements['actualSourceAssetParamsIds'].text
660
665
  end
666
+ if xml_element.elements['sizeInBytes'] != nil
667
+ self.size_in_bytes = xml_element.elements['sizeInBytes'].text
668
+ end
661
669
  end
662
670
 
663
671
  end
@@ -940,6 +948,10 @@ module Kaltura
940
948
  attr_accessor :template_entry_id
941
949
  # should we display this entry in search
942
950
  attr_accessor :display_in_search
951
+ # Entry application
952
+ attr_accessor :application
953
+ # Entry application version
954
+ attr_accessor :application_version
943
955
 
944
956
  def partner_id=(val)
945
957
  @partner_id = val.to_i
@@ -1130,6 +1142,12 @@ module Kaltura
1130
1142
  if xml_element.elements['displayInSearch'] != nil
1131
1143
  self.display_in_search = xml_element.elements['displayInSearch'].text
1132
1144
  end
1145
+ if xml_element.elements['application'] != nil
1146
+ self.application = xml_element.elements['application'].text
1147
+ end
1148
+ if xml_element.elements['applicationVersion'] != nil
1149
+ self.application_version = xml_element.elements['applicationVersion'].text
1150
+ end
1133
1151
  end
1134
1152
 
1135
1153
  end
@@ -1913,6 +1931,7 @@ module Kaltura
1913
1931
  attr_accessor :embed_code_types
1914
1932
  attr_accessor :template_partner_id
1915
1933
  attr_accessor :ignore_seo_links
1934
+ attr_accessor :block_direct_login
1916
1935
  attr_accessor :host
1917
1936
  attr_accessor :cdn_host
1918
1937
  attr_accessor :is_first_login
@@ -1993,6 +2012,9 @@ module Kaltura
1993
2012
  def ignore_seo_links=(val)
1994
2013
  @ignore_seo_links = to_b(val)
1995
2014
  end
2015
+ def block_direct_login=(val)
2016
+ @block_direct_login = to_b(val)
2017
+ end
1996
2018
  def is_first_login=(val)
1997
2019
  @is_first_login = to_b(val)
1998
2020
  end
@@ -2170,6 +2192,9 @@ module Kaltura
2170
2192
  if xml_element.elements['ignoreSeoLinks'] != nil
2171
2193
  self.ignore_seo_links = xml_element.elements['ignoreSeoLinks'].text
2172
2194
  end
2195
+ if xml_element.elements['blockDirectLogin'] != nil
2196
+ self.block_direct_login = xml_element.elements['blockDirectLogin'].text
2197
+ end
2173
2198
  if xml_element.elements['host'] != nil
2174
2199
  self.host = xml_element.elements['host'].text
2175
2200
  end
@@ -4138,6 +4163,8 @@ module Kaltura
4138
4163
  attr_accessor :first_name
4139
4164
  attr_accessor :last_name
4140
4165
  attr_accessor :login_enabled
4166
+ attr_accessor :registration_info
4167
+ attr_accessor :attendance_info
4141
4168
 
4142
4169
  def type=(val)
4143
4170
  @type = val.to_i
@@ -4193,6 +4220,12 @@ module Kaltura
4193
4220
  if xml_element.elements['loginEnabled'] != nil
4194
4221
  self.login_enabled = xml_element.elements['loginEnabled'].text
4195
4222
  end
4223
+ if xml_element.elements['registrationInfo'] != nil
4224
+ self.registration_info = xml_element.elements['registrationInfo'].text
4225
+ end
4226
+ if xml_element.elements['attendanceInfo'] != nil
4227
+ self.attendance_info = xml_element.elements['attendanceInfo'].text
4228
+ end
4196
4229
  end
4197
4230
 
4198
4231
  end
@@ -4560,6 +4593,8 @@ module Kaltura
4560
4593
  attr_accessor :conversion_quality
4561
4594
  # The source type of the entry
4562
4595
  attr_accessor :source_type
4596
+ # The source version of the entry
4597
+ attr_accessor :source_version
4563
4598
  # The search provider type used to import this entry
4564
4599
  attr_accessor :search_provider_type
4565
4600
  # The ID of the media in the importing site
@@ -4603,6 +4638,9 @@ module Kaltura
4603
4638
  if xml_element.elements['sourceType'] != nil
4604
4639
  self.source_type = xml_element.elements['sourceType'].text
4605
4640
  end
4641
+ if xml_element.elements['sourceVersion'] != nil
4642
+ self.source_version = xml_element.elements['sourceVersion'].text
4643
+ end
4606
4644
  if xml_element.elements['searchProviderType'] != nil
4607
4645
  self.search_provider_type = xml_element.elements['searchProviderType'].text
4608
4646
  end
@@ -6924,10 +6962,14 @@ module Kaltura
6924
6962
  # The Streams primary server node id
6925
6963
  attr_accessor :primary_server_node_id
6926
6964
  attr_accessor :sip_token
6965
+ attr_accessor :sip_source_type
6927
6966
 
6928
6967
  def primary_server_node_id=(val)
6929
6968
  @primary_server_node_id = val.to_i
6930
6969
  end
6970
+ def sip_source_type=(val)
6971
+ @sip_source_type = val.to_i
6972
+ end
6931
6973
 
6932
6974
  def from_xml(xml_element)
6933
6975
  super
@@ -6988,6 +7030,9 @@ module Kaltura
6988
7030
  if xml_element.elements['sipToken'] != nil
6989
7031
  self.sip_token = xml_element.elements['sipToken'].text
6990
7032
  end
7033
+ if xml_element.elements['sipSourceType'] != nil
7034
+ self.sip_source_type = xml_element.elements['sipSourceType'].text
7035
+ end
6991
7036
  end
6992
7037
 
6993
7038
  end
@@ -7494,6 +7539,8 @@ module Kaltura
7494
7539
 
7495
7540
  class KalturaBaseEntryFilter < KalturaBaseEntryBaseFilter
7496
7541
  attr_accessor :free_text
7542
+ attr_accessor :excluded_free_text_groups
7543
+ attr_accessor :description_like
7497
7544
  attr_accessor :is_root
7498
7545
  attr_accessor :categories_full_name_in
7499
7546
  # All entries within this categoy or in child categories
@@ -7510,6 +7557,12 @@ module Kaltura
7510
7557
  if xml_element.elements['freeText'] != nil
7511
7558
  self.free_text = xml_element.elements['freeText'].text
7512
7559
  end
7560
+ if xml_element.elements['excludedFreeTextGroups'] != nil
7561
+ self.excluded_free_text_groups = xml_element.elements['excludedFreeTextGroups'].text
7562
+ end
7563
+ if xml_element.elements['descriptionLike'] != nil
7564
+ self.description_like = xml_element.elements['descriptionLike'].text
7565
+ end
7513
7566
  if xml_element.elements['isRoot'] != nil
7514
7567
  self.is_root = xml_element.elements['isRoot'].text
7515
7568
  end
@@ -8323,6 +8376,23 @@ module Kaltura
8323
8376
 
8324
8377
  end
8325
8378
 
8379
+ class KalturaReportExportFile < KalturaObjectBase
8380
+ attr_accessor :file_id
8381
+ attr_accessor :file_name
8382
+
8383
+
8384
+ def from_xml(xml_element)
8385
+ super
8386
+ if xml_element.elements['fileId'] != nil
8387
+ self.file_id = xml_element.elements['fileId'].text
8388
+ end
8389
+ if xml_element.elements['fileName'] != nil
8390
+ self.file_name = xml_element.elements['fileName'].text
8391
+ end
8392
+ end
8393
+
8394
+ end
8395
+
8326
8396
  class KalturaReportInputBaseFilter < KalturaObjectBase
8327
8397
  # Start date as Unix timestamp (In seconds)
8328
8398
  attr_accessor :from_date
@@ -8424,6 +8494,8 @@ module Kaltura
8424
8494
  attr_accessor :node_ids_in
8425
8495
  # filter by categories ancestor
8426
8496
  attr_accessor :categories_ancestor_id_in
8497
+ # filter by hotspot id
8498
+ attr_accessor :hotspot_id_in
8427
8499
 
8428
8500
  def search_in_tags=(val)
8429
8501
  @search_in_tags = to_b(val)
@@ -8545,6 +8617,9 @@ module Kaltura
8545
8617
  if xml_element.elements['categoriesAncestorIdIn'] != nil
8546
8618
  self.categories_ancestor_id_in = xml_element.elements['categoriesAncestorIdIn'].text
8547
8619
  end
8620
+ if xml_element.elements['hotspotIdIn'] != nil
8621
+ self.hotspot_id_in = xml_element.elements['hotspotIdIn'].text
8622
+ end
8548
8623
  end
8549
8624
 
8550
8625
  end
@@ -8614,6 +8689,7 @@ module Kaltura
8614
8689
  # Time zone offset in minutes (between client to UTC)
8615
8690
  attr_accessor :time_zone_offset
8616
8691
  attr_accessor :report_items
8692
+ attr_accessor :reports_items_group
8617
8693
 
8618
8694
  def time_zone_offset=(val)
8619
8695
  @time_zone_offset = val.to_i
@@ -8630,6 +8706,9 @@ module Kaltura
8630
8706
  if xml_element.elements['reportItems'] != nil
8631
8707
  self.report_items = KalturaClientBase.object_from_xml(xml_element.elements['reportItems'], 'KalturaReportExportItem')
8632
8708
  end
8709
+ if xml_element.elements['reportsItemsGroup'] != nil
8710
+ self.reports_items_group = xml_element.elements['reportsItemsGroup'].text
8711
+ end
8633
8712
  end
8634
8713
 
8635
8714
  end
@@ -9452,6 +9531,7 @@ module Kaltura
9452
9531
  attr_accessor :protocol
9453
9532
  attr_accessor :storage_url
9454
9533
  attr_accessor :storage_base_dir
9534
+ attr_accessor :path_prefix
9455
9535
  attr_accessor :storage_username
9456
9536
  attr_accessor :storage_password
9457
9537
  attr_accessor :storage_ftp_passive_mode
@@ -9483,6 +9563,7 @@ module Kaltura
9483
9563
  attr_accessor :export_periodically
9484
9564
  attr_accessor :excluded_flavor_params_ids
9485
9565
  attr_accessor :should_export_captions
9566
+ attr_accessor :excluded_entry_types
9486
9567
 
9487
9568
  def id=(val)
9488
9569
  @id = val.to_i
@@ -9574,6 +9655,9 @@ module Kaltura
9574
9655
  if xml_element.elements['storageBaseDir'] != nil
9575
9656
  self.storage_base_dir = xml_element.elements['storageBaseDir'].text
9576
9657
  end
9658
+ if xml_element.elements['pathPrefix'] != nil
9659
+ self.path_prefix = xml_element.elements['pathPrefix'].text
9660
+ end
9577
9661
  if xml_element.elements['storageUsername'] != nil
9578
9662
  self.storage_username = xml_element.elements['storageUsername'].text
9579
9663
  end
@@ -9649,6 +9733,9 @@ module Kaltura
9649
9733
  if xml_element.elements['shouldExportCaptions'] != nil
9650
9734
  self.should_export_captions = xml_element.elements['shouldExportCaptions'].text
9651
9735
  end
9736
+ if xml_element.elements['excludedEntryTypes'] != nil
9737
+ self.excluded_entry_types = xml_element.elements['excludedEntryTypes'].text
9738
+ end
9652
9739
  end
9653
9740
 
9654
9741
  end
@@ -10131,6 +10218,7 @@ module Kaltura
10131
10218
  # Addes the HTML5 script line to the widget's embed code
10132
10219
  attr_accessor :add_embed_html5support
10133
10220
  attr_accessor :roles
10221
+ attr_accessor :privileges
10134
10222
 
10135
10223
  def partner_id=(val)
10136
10224
  @partner_id = val.to_i
@@ -10207,6 +10295,9 @@ module Kaltura
10207
10295
  if xml_element.elements['roles'] != nil
10208
10296
  self.roles = xml_element.elements['roles'].text
10209
10297
  end
10298
+ if xml_element.elements['privileges'] != nil
10299
+ self.privileges = xml_element.elements['privileges'].text
10300
+ end
10210
10301
  end
10211
10302
 
10212
10303
  end
@@ -12391,23 +12482,6 @@ module Kaltura
12391
12482
 
12392
12483
  end
12393
12484
 
12394
- class KalturaDeliveryProfileAkamaiHttp < KalturaDeliveryProfile
12395
- # Should we use intelliseek
12396
- attr_accessor :use_intelliseek
12397
-
12398
- def use_intelliseek=(val)
12399
- @use_intelliseek = to_b(val)
12400
- end
12401
-
12402
- def from_xml(xml_element)
12403
- super
12404
- if xml_element.elements['useIntelliseek'] != nil
12405
- self.use_intelliseek = xml_element.elements['useIntelliseek'].text
12406
- end
12407
- end
12408
-
12409
- end
12410
-
12411
12485
  class KalturaDeliveryProfileBaseFilter < KalturaFilter
12412
12486
  attr_accessor :id_equal
12413
12487
  attr_accessor :id_in
@@ -12548,7 +12622,7 @@ module Kaltura
12548
12622
 
12549
12623
  end
12550
12624
 
12551
- class KalturaDeliveryProfileGenericHttp < KalturaDeliveryProfile
12625
+ class KalturaDeliveryProfileGenericSilverLight < KalturaDeliveryProfile
12552
12626
  attr_accessor :pattern
12553
12627
 
12554
12628
 
@@ -12561,14 +12635,17 @@ module Kaltura
12561
12635
 
12562
12636
  end
12563
12637
 
12564
- class KalturaDeliveryProfileGenericSilverLight < KalturaDeliveryProfile
12565
- attr_accessor :pattern
12638
+ class KalturaDeliveryProfileHttp < KalturaDeliveryProfile
12639
+ attr_accessor :max_size
12566
12640
 
12641
+ def max_size=(val)
12642
+ @max_size = val.to_i
12643
+ end
12567
12644
 
12568
12645
  def from_xml(xml_element)
12569
12646
  super
12570
- if xml_element.elements['pattern'] != nil
12571
- self.pattern = xml_element.elements['pattern'].text
12647
+ if xml_element.elements['maxSize'] != nil
12648
+ self.max_size = xml_element.elements['maxSize'].text
12572
12649
  end
12573
12650
  end
12574
12651
 
@@ -14563,6 +14640,8 @@ module Kaltura
14563
14640
  attr_accessor :recipient_email
14564
14641
  attr_accessor :report_items
14565
14642
  attr_accessor :file_paths
14643
+ attr_accessor :reports_group
14644
+ attr_accessor :files
14566
14645
 
14567
14646
 
14568
14647
  def from_xml(xml_element)
@@ -14576,6 +14655,12 @@ module Kaltura
14576
14655
  if xml_element.elements['filePaths'] != nil
14577
14656
  self.file_paths = xml_element.elements['filePaths'].text
14578
14657
  end
14658
+ if xml_element.elements['reportsGroup'] != nil
14659
+ self.reports_group = xml_element.elements['reportsGroup'].text
14660
+ end
14661
+ if xml_element.elements['files'] != nil
14662
+ self.files = KalturaClientBase.object_from_xml(xml_element.elements['files'], 'KalturaReportExportFile')
14663
+ end
14579
14664
  end
14580
14665
 
14581
14666
  end
@@ -15433,6 +15518,19 @@ module Kaltura
15433
15518
 
15434
15519
  end
15435
15520
 
15521
+ class KalturaUrlRecognizerKaltura < KalturaUrlRecognizer
15522
+ attr_accessor :key
15523
+
15524
+
15525
+ def from_xml(xml_element)
15526
+ super
15527
+ if xml_element.elements['key'] != nil
15528
+ self.key = xml_element.elements['key'].text
15529
+ end
15530
+ end
15531
+
15532
+ end
15533
+
15436
15534
  class KalturaUrlTokenizerAkamaiHttp < KalturaUrlTokenizer
15437
15535
  # param
15438
15536
  attr_accessor :param_name
@@ -15595,6 +15693,15 @@ module Kaltura
15595
15693
 
15596
15694
  end
15597
15695
 
15696
+ class KalturaUrlTokenizerKaltura < KalturaUrlTokenizer
15697
+
15698
+
15699
+ def from_xml(xml_element)
15700
+ super
15701
+ end
15702
+
15703
+ end
15704
+
15598
15705
  class KalturaUrlTokenizerKs < KalturaUrlTokenizer
15599
15706
  attr_accessor :use_path
15600
15707
  attr_accessor :additional_uris
@@ -16737,7 +16844,12 @@ module Kaltura
16737
16844
  attr_accessor :custom_data
16738
16845
  attr_accessor :extra_dest_file_syncs
16739
16846
  attr_accessor :engine_message
16847
+ attr_accessor :dest_file_sync_shared_path
16848
+ attr_accessor :user_cpu
16740
16849
 
16850
+ def user_cpu=(val)
16851
+ @user_cpu = val.to_i
16852
+ end
16741
16853
 
16742
16854
  def from_xml(xml_element)
16743
16855
  super
@@ -16768,6 +16880,12 @@ module Kaltura
16768
16880
  if xml_element.elements['engineMessage'] != nil
16769
16881
  self.engine_message = xml_element.elements['engineMessage'].text
16770
16882
  end
16883
+ if xml_element.elements['destFileSyncSharedPath'] != nil
16884
+ self.dest_file_sync_shared_path = xml_element.elements['destFileSyncSharedPath'].text
16885
+ end
16886
+ if xml_element.elements['userCpu'] != nil
16887
+ self.user_cpu = xml_element.elements['userCpu'].text
16888
+ end
16771
16889
  end
16772
16890
 
16773
16891
  end
@@ -16786,6 +16904,23 @@ module Kaltura
16786
16904
 
16787
16905
  end
16788
16906
 
16907
+ class KalturaDeliveryProfileAkamaiHttp < KalturaDeliveryProfileHttp
16908
+ # Should we use intelliseek
16909
+ attr_accessor :use_intelliseek
16910
+
16911
+ def use_intelliseek=(val)
16912
+ @use_intelliseek = to_b(val)
16913
+ end
16914
+
16915
+ def from_xml(xml_element)
16916
+ super
16917
+ if xml_element.elements['useIntelliseek'] != nil
16918
+ self.use_intelliseek = xml_element.elements['useIntelliseek'].text
16919
+ end
16920
+ end
16921
+
16922
+ end
16923
+
16789
16924
  class KalturaDeliveryProfileFilter < KalturaDeliveryProfileBaseFilter
16790
16925
  attr_accessor :is_live
16791
16926
 
@@ -16802,6 +16937,19 @@ module Kaltura
16802
16937
 
16803
16938
  end
16804
16939
 
16940
+ class KalturaDeliveryProfileGenericHttp < KalturaDeliveryProfileHttp
16941
+ attr_accessor :pattern
16942
+
16943
+
16944
+ def from_xml(xml_element)
16945
+ super
16946
+ if xml_element.elements['pattern'] != nil
16947
+ self.pattern = xml_element.elements['pattern'].text
16948
+ end
16949
+ end
16950
+
16951
+ end
16952
+
16805
16953
  class KalturaDeliveryProfileGenericRtmp < KalturaDeliveryProfileRtmp
16806
16954
  attr_accessor :pattern
16807
16955
  # rendererClass
@@ -17933,6 +18081,8 @@ module Kaltura
17933
18081
  class KalturaStorageExportJobData < KalturaStorageJobData
17934
18082
  attr_accessor :force
17935
18083
  attr_accessor :create_link
18084
+ attr_accessor :asset_id
18085
+ attr_accessor :external_url
17936
18086
 
17937
18087
  def force=(val)
17938
18088
  @force = to_b(val)
@@ -17949,6 +18099,12 @@ module Kaltura
17949
18099
  if xml_element.elements['createLink'] != nil
17950
18100
  self.create_link = xml_element.elements['createLink'].text
17951
18101
  end
18102
+ if xml_element.elements['assetId'] != nil
18103
+ self.asset_id = xml_element.elements['assetId'].text
18104
+ end
18105
+ if xml_element.elements['externalUrl'] != nil
18106
+ self.external_url = xml_element.elements['externalUrl'].text
18107
+ end
17952
18108
  end
17953
18109
 
17954
18110
  end
@@ -18263,6 +18419,7 @@ module Kaltura
18263
18419
  attr_accessor :sse_kms_key_id
18264
18420
  attr_accessor :signature_type
18265
18421
  attr_accessor :end_point
18422
+ attr_accessor :storage_class
18266
18423
 
18267
18424
 
18268
18425
  def from_xml(xml_element)
@@ -18285,6 +18442,9 @@ module Kaltura
18285
18442
  if xml_element.elements['endPoint'] != nil
18286
18443
  self.end_point = xml_element.elements['endPoint'].text
18287
18444
  end
18445
+ if xml_element.elements['storageClass'] != nil
18446
+ self.storage_class = xml_element.elements['storageClass'].text
18447
+ end
18288
18448
  end
18289
18449
 
18290
18450
  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.2.0
4
+ version: 16.10.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.1.2
172
+ rubygems_version: 3.2.0.rc.1
173
173
  signing_key:
174
174
  specification_version: 4
175
175
  summary: A gem implementation of Kaltura's Ruby Client