aspose_slides_cloud 22.4.0 → 22.5.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.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -0
  3. data/TestData/oleObject.xlsx +0 -0
  4. data/TestData/test.pptx +0 -0
  5. data/lib/aspose_slides_cloud/models/{waterfall_series.rb → alpha_bi_level_effect.rb} +16 -26
  6. data/lib/aspose_slides_cloud/models/alpha_ceiling_effect.rb +223 -0
  7. data/lib/aspose_slides_cloud/models/alpha_floor_effect.rb +223 -0
  8. data/lib/aspose_slides_cloud/models/alpha_inverse_effect.rb +223 -0
  9. data/lib/aspose_slides_cloud/models/alpha_modulate_effect.rb +223 -0
  10. data/lib/aspose_slides_cloud/models/alpha_modulate_fixed_effect.rb +238 -0
  11. data/lib/aspose_slides_cloud/models/alpha_replace_effect.rb +238 -0
  12. data/lib/aspose_slides_cloud/models/bi_level_effect.rb +238 -0
  13. data/lib/aspose_slides_cloud/models/blur_image_effect.rb +253 -0
  14. data/lib/aspose_slides_cloud/models/color_change_effect.rb +243 -0
  15. data/lib/aspose_slides_cloud/models/color_replace_effect.rb +233 -0
  16. data/lib/aspose_slides_cloud/models/duotone_effect.rb +243 -0
  17. data/lib/aspose_slides_cloud/models/{box_and_whisker_series.rb → fill_overlay_image_effect.rb} +31 -71
  18. data/lib/aspose_slides_cloud/models/{waterfall_chart_data_point.rb → gray_scale_effect.rb} +26 -13
  19. data/lib/aspose_slides_cloud/models/hsl_effect.rb +268 -0
  20. data/lib/aspose_slides_cloud/models/image_transform_effect.rb +244 -0
  21. data/lib/aspose_slides_cloud/models/luminance_effect.rb +253 -0
  22. data/lib/aspose_slides_cloud/models/one_value_chart_data_point.rb +12 -2
  23. data/lib/aspose_slides_cloud/models/one_value_series.rb +74 -2
  24. data/lib/aspose_slides_cloud/models/picture_fill.rb +14 -2
  25. data/lib/aspose_slides_cloud/models/resource_uri.rb +22 -2
  26. data/lib/aspose_slides_cloud/models/smart_art_node.rb +12 -2
  27. data/lib/aspose_slides_cloud/models/tint_effect.rb +253 -0
  28. data/lib/aspose_slides_cloud/models/video_frame.rb +12 -2
  29. data/lib/aspose_slides_cloud/type_registry.rb +35 -6
  30. data/lib/aspose_slides_cloud/version.rb +1 -1
  31. data/lib/aspose_slides_cloud.rb +18 -3
  32. data/testRules.json +1 -1
  33. metadata +21 -5
@@ -0,0 +1,253 @@
1
+ =begin
2
+ Copyright (c) 2019 Aspose Pty Ltd
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is
9
+ furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ SOFTWARE.
21
+ =end
22
+
23
+ require 'date'
24
+
25
+ module AsposeSlidesCloud
26
+ # Represents a Tint effect.
27
+ class TintEffect < ImageTransformEffect
28
+ # Hue
29
+ attr_accessor :hue
30
+
31
+ # Amount
32
+ attr_accessor :amount
33
+
34
+ class EnumAttributeValidator
35
+ attr_reader :datatype
36
+ attr_reader :allowable_values
37
+
38
+ def initialize(datatype, allowable_values)
39
+ @allowable_values = allowable_values.map do |value|
40
+ case datatype.to_s
41
+ when /Integer/i
42
+ value.to_i
43
+ when /Float/i
44
+ value.to_f
45
+ else
46
+ value
47
+ end
48
+ end
49
+ end
50
+
51
+ def valid?(value)
52
+ !value || allowable_values.any?{ |s| s.casecmp(value) == 0 }
53
+ end
54
+ end
55
+
56
+ # Attribute mapping from ruby-style variable name to JSON key.
57
+ def self.attribute_map
58
+ super.merge({
59
+ :'hue' => :'Hue',
60
+ :'amount' => :'Amount',
61
+ })
62
+ end
63
+
64
+ # Attribute type mapping.
65
+ def self.swagger_types
66
+ super.merge({
67
+ :'hue' => :'Float',
68
+ :'amount' => :'Float',
69
+ })
70
+ end
71
+
72
+ # Initializes the object
73
+ # @param [Hash] attributes Model attributes in the form of hash
74
+ def initialize(attributes = {})
75
+ super
76
+
77
+ if attributes.has_key?(:'Hue')
78
+ self.hue = attributes[:'Hue']
79
+ end
80
+
81
+ if attributes.has_key?(:'Amount')
82
+ self.amount = attributes[:'Amount']
83
+ end
84
+ self.type = "Tint"
85
+ end
86
+
87
+ # Show invalid properties with the reasons. Usually used together with valid?
88
+ # @return Array for valid properties with the reasons
89
+ def list_invalid_properties
90
+ invalid_properties = super
91
+ if @hue.nil?
92
+ invalid_properties.push('invalid value for "hue", hue cannot be nil.')
93
+ end
94
+
95
+ if @amount.nil?
96
+ invalid_properties.push('invalid value for "amount", amount cannot be nil.')
97
+ end
98
+
99
+ invalid_properties
100
+ end
101
+
102
+ # Check to see if the all the properties in the model are valid
103
+ # @return true if the model is valid
104
+ def valid?
105
+ return false if !super
106
+ return false if @hue.nil?
107
+ return false if @amount.nil?
108
+ true
109
+ end
110
+
111
+ # Checks equality by comparing each attribute.
112
+ # @param [Object] Object to be compared
113
+ def ==(o)
114
+ return true if self.equal?(o)
115
+ self.class == o.class &&
116
+ type == o.type &&
117
+ hue == o.hue &&
118
+ amount == o.amount
119
+ end
120
+
121
+ # @see the `==` method
122
+ # @param [Object] Object to be compared
123
+ def eql?(o)
124
+ self == o
125
+ end
126
+
127
+ # Calculates hash code according to all attributes.
128
+ # @return [Fixnum] Hash code
129
+ def hash
130
+ [type, hue, amount].hash
131
+ end
132
+
133
+ # Builds the object from hash
134
+ # @param [Hash] attributes Model attributes in the form of hash
135
+ # @return [Object] Returns the model itself
136
+ def build_from_hash(attributes)
137
+ return nil unless attributes.is_a?(Hash)
138
+ self.class.swagger_types.each_pair do |key, type|
139
+ mapKey = self.class.attribute_map[key]
140
+ if !mapKey.nil?
141
+ val = attributes[mapKey]
142
+ if val.nil?
143
+ mapKeyString = mapKey.to_s
144
+ mapKeyString[0] = mapKeyString[0].downcase
145
+ mapKey = mapKeyString.to_sym
146
+ val = attributes[mapKey]
147
+ end
148
+ if !val.nil?
149
+ if type =~ /\AArray<(.*)>/i
150
+ # check to ensure the input is an array given that the the attribute
151
+ # is documented as an array but the input is not
152
+ if val.is_a?(Array)
153
+ self.send("#{key}=", val.map { |v| _deserialize($1, v) })
154
+ end
155
+ else
156
+ self.send("#{key}=", _deserialize(type, val))
157
+ end
158
+ end
159
+ end
160
+ end
161
+
162
+ self
163
+ end
164
+
165
+ # Deserializes the data based on type
166
+ # @param string type Data type
167
+ # @param string value Value to be deserialized
168
+ # @return [Object] Deserialized data
169
+ def _deserialize(type, value)
170
+ case type.to_sym
171
+ when :DateTime
172
+ DateTime.parse(value)
173
+ when :Date
174
+ Date.parse(value)
175
+ when :String
176
+ value.to_s
177
+ when :Integer
178
+ value.to_i
179
+ when :Float
180
+ value.to_f
181
+ when :BOOLEAN
182
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
183
+ true
184
+ else
185
+ false
186
+ end
187
+ when :Object
188
+ # generic object (usually a Hash), return directly
189
+ value
190
+ when /\AArray<(?<inner_type>.+)>\z/
191
+ inner_type = Regexp.last_match[:inner_type]
192
+ value.map { |v| _deserialize(inner_type, v) }
193
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
194
+ k_type = Regexp.last_match[:k_type]
195
+ v_type = Regexp.last_match[:v_type]
196
+ {}.tap do |hash|
197
+ value.each do |k, v|
198
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
199
+ end
200
+ end
201
+ else # model
202
+ registry_type = AsposeSlidesCloud::TypeRegistry.get_type(type.to_s, value)
203
+ if registry_type
204
+ type = registry_type
205
+ end
206
+ temp_model = AsposeSlidesCloud.const_get(type).new
207
+ temp_model.build_from_hash(value)
208
+ end
209
+ end
210
+
211
+ # Returns the string representation of the object
212
+ # @return [String] String presentation of the object
213
+ def to_s
214
+ to_hash.to_s
215
+ end
216
+
217
+ # to_body is an alias to to_hash (backward compatibility)
218
+ # @return [Hash] Returns the object in the form of hash
219
+ def to_body
220
+ to_hash
221
+ end
222
+
223
+ # Returns the object in the form of hash
224
+ # @return [Hash] Returns the object in the form of hash
225
+ def to_hash
226
+ hash = {}
227
+ self.class.attribute_map.each_pair do |attr, param|
228
+ value = self.send(attr)
229
+ next if value.nil?
230
+ hash[param] = _to_hash(value)
231
+ end
232
+ hash
233
+ end
234
+
235
+ # Outputs non-array value in the form of hash
236
+ # For object, use to_hash. Otherwise, just return the value
237
+ # @param [Object] value Any valid value
238
+ # @return [Hash] Returns the value in the form of hash
239
+ def _to_hash(value)
240
+ if value.is_a?(Array)
241
+ value.compact.map { |v| _to_hash(v) }
242
+ elsif value.is_a?(Hash)
243
+ {}.tap do |hash|
244
+ value.each { |k, v| hash[k] = _to_hash(v) }
245
+ end
246
+ elsif value.respond_to? :to_hash
247
+ value.to_hash
248
+ else
249
+ value
250
+ end
251
+ end
252
+ end
253
+ end
@@ -46,6 +46,9 @@ module AsposeSlidesCloud
46
46
  # Video data encoded in base64.
47
47
  attr_accessor :base64_data
48
48
 
49
+ # Picture fill format.
50
+ attr_accessor :picture_fill_format
51
+
49
52
  class EnumAttributeValidator
50
53
  attr_reader :datatype
51
54
  attr_reader :allowable_values
@@ -78,6 +81,7 @@ module AsposeSlidesCloud
78
81
  :'rewind_video' => :'RewindVideo',
79
82
  :'volume' => :'Volume',
80
83
  :'base64_data' => :'Base64Data',
84
+ :'picture_fill_format' => :'PictureFillFormat',
81
85
  })
82
86
  end
83
87
 
@@ -91,6 +95,7 @@ module AsposeSlidesCloud
91
95
  :'rewind_video' => :'BOOLEAN',
92
96
  :'volume' => :'String',
93
97
  :'base64_data' => :'String',
98
+ :'picture_fill_format' => :'PictureFill',
94
99
  })
95
100
  end
96
101
 
@@ -126,6 +131,10 @@ module AsposeSlidesCloud
126
131
  if attributes.has_key?(:'Base64Data')
127
132
  self.base64_data = attributes[:'Base64Data']
128
133
  end
134
+
135
+ if attributes.has_key?(:'PictureFillFormat')
136
+ self.picture_fill_format = attributes[:'PictureFillFormat']
137
+ end
129
138
  self.type = "VideoFrame"
130
139
  end
131
140
 
@@ -197,7 +206,8 @@ module AsposeSlidesCloud
197
206
  play_mode == o.play_mode &&
198
207
  rewind_video == o.rewind_video &&
199
208
  volume == o.volume &&
200
- base64_data == o.base64_data
209
+ base64_data == o.base64_data &&
210
+ picture_fill_format == o.picture_fill_format
201
211
  end
202
212
 
203
213
  # @see the `==` method
@@ -209,7 +219,7 @@ module AsposeSlidesCloud
209
219
  # Calculates hash code according to all attributes.
210
220
  # @return [Fixnum] Hash code
211
221
  def hash
212
- [self_uri, alternate_links, name, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, fill_format, effect_format, three_d_format, line_format, hyperlink_click, hyperlink_mouse_over, type, shape_type, full_screen_mode, hide_at_showing, play_loop_mode, play_mode, rewind_video, volume, base64_data].hash
222
+ [self_uri, alternate_links, name, width, height, alternative_text, alternative_text_title, hidden, x, y, z_order_position, fill_format, effect_format, three_d_format, line_format, hyperlink_click, hyperlink_mouse_over, type, shape_type, full_screen_mode, hide_at_showing, play_loop_mode, play_mode, rewind_video, volume, base64_data, picture_fill_format].hash
213
223
  end
214
224
 
215
225
  # Builds the object from hash
@@ -76,28 +76,43 @@ module AsposeSlidesCloud
76
76
  :'AddMasterSlide' => :'Task',
77
77
  :'AddShape' => :'Task',
78
78
  :'AddSlide' => :'Task',
79
+ :'AlphaBiLevelEffect' => :'ImageTransformEffect',
80
+ :'AlphaCeilingEffect' => :'ImageTransformEffect',
81
+ :'AlphaFloorEffect' => :'ImageTransformEffect',
82
+ :'AlphaInverseEffect' => :'ImageTransformEffect',
83
+ :'AlphaModulateEffect' => :'ImageTransformEffect',
84
+ :'AlphaModulateFixedEffect' => :'ImageTransformEffect',
85
+ :'AlphaReplaceEffect' => :'ImageTransformEffect',
79
86
  :'ArcToPathSegment' => :'PathSegment',
80
87
  :'ArrayElement' => :'MathElement',
81
88
  :'BarElement' => :'MathElement',
82
89
  :'Base64InputFile' => :'InputFile',
90
+ :'BiLevelEffect' => :'ImageTransformEffect',
83
91
  :'BlockElement' => :'MathElement',
92
+ :'BlurImageEffect' => :'ImageTransformEffect',
84
93
  :'BorderBoxElement' => :'MathElement',
85
94
  :'BoxElement' => :'MathElement',
86
95
  :'ClosePathSegment' => :'PathSegment',
96
+ :'ColorChangeEffect' => :'ImageTransformEffect',
97
+ :'ColorReplaceEffect' => :'ImageTransformEffect',
87
98
  :'ColorScheme' => :'ResourceBase',
88
99
  :'CubicBezierToPathSegment' => :'PathSegment',
89
100
  :'DelimiterElement' => :'MathElement',
90
101
  :'Document' => :'ResourceBase',
91
102
  :'DocumentProperties' => :'ResourceBase',
92
103
  :'DocumentProperty' => :'ResourceBase',
104
+ :'DuotoneEffect' => :'ImageTransformEffect',
93
105
  :'FileVersion' => :'StorageFile',
106
+ :'FillOverlayImageEffect' => :'ImageTransformEffect',
94
107
  :'FontScheme' => :'ResourceBase',
95
108
  :'FormatScheme' => :'ResourceBase',
96
109
  :'FractionElement' => :'MathElement',
97
110
  :'FunctionElement' => :'MathElement',
98
111
  :'GradientFill' => :'FillFormat',
112
+ :'GrayScaleEffect' => :'ImageTransformEffect',
99
113
  :'GroupingCharacterElement' => :'MathElement',
100
114
  :'HeaderFooter' => :'ResourceBase',
115
+ :'HslEffect' => :'ImageTransformEffect',
101
116
  :'Html5ExportOptions' => :'ExportOptions',
102
117
  :'HtmlExportOptions' => :'ExportOptions',
103
118
  :'Image' => :'ResourceBase',
@@ -108,6 +123,7 @@ module AsposeSlidesCloud
108
123
  :'LeftSubSuperscriptElement' => :'MathElement',
109
124
  :'LimitElement' => :'MathElement',
110
125
  :'LineToPathSegment' => :'PathSegment',
126
+ :'LuminanceEffect' => :'ImageTransformEffect',
111
127
  :'MasterSlide' => :'ResourceBase',
112
128
  :'MasterSlides' => :'ResourceBase',
113
129
  :'MatrixElement' => :'MathElement',
@@ -167,6 +183,7 @@ module AsposeSlidesCloud
167
183
  :'TextElement' => :'MathElement',
168
184
  :'TextItems' => :'ResourceBase',
169
185
  :'Theme' => :'ResourceBase',
186
+ :'TintEffect' => :'ImageTransformEffect',
170
187
  :'UpdateBackground' => :'Task',
171
188
  :'UpdateShape' => :'Task',
172
189
  :'VideoExportOptions' => :'ExportOptions',
@@ -174,7 +191,6 @@ module AsposeSlidesCloud
174
191
  :'XYSeries' => :'Series',
175
192
  :'XamlExportOptions' => :'ExportOptions',
176
193
  :'XpsExportOptions' => :'ExportOptions',
177
- :'BoxAndWhiskerSeries' => :'OneValueSeries',
178
194
  :'BubbleChartDataPoint' => :'ScatterChartDataPoint',
179
195
  :'BubbleSeries' => :'XYSeries',
180
196
  :'Chart' => :'ShapeBase',
@@ -191,8 +207,6 @@ module AsposeSlidesCloud
191
207
  :'SummaryZoomFrame' => :'ShapeBase',
192
208
  :'Table' => :'ShapeBase',
193
209
  :'TiffExportOptions' => :'ImageExportOptionsBase',
194
- :'WaterfallChartDataPoint' => :'OneValueChartDataPoint',
195
- :'WaterfallSeries' => :'OneValueSeries',
196
210
  :'ZoomObject' => :'ShapeBase',
197
211
  :'AudioFrame' => :'GeometryShape',
198
212
  :'Connector' => :'GeometryShape',
@@ -245,6 +259,7 @@ module AsposeSlidesCloud
245
259
  :'Hyperlink' => { },
246
260
  :'IShapeExportOptions' => { },
247
261
  :'ImageExportFormat' => { },
262
+ :'ImageTransformEffect' => { },
248
263
  :'InnerShadowEffect' => { },
249
264
  :'Input' => { },
250
265
  :'InputFile' => { },
@@ -299,28 +314,43 @@ module AsposeSlidesCloud
299
314
  :'AddMasterSlide' => { :'Type' => "AddMasterSlide", },
300
315
  :'AddShape' => { :'Type' => "AddShape", },
301
316
  :'AddSlide' => { :'Type' => "AddSlide", },
317
+ :'AlphaBiLevelEffect' => { :'Type' => "AlphaBiLevel", },
318
+ :'AlphaCeilingEffect' => { :'Type' => "AlphaCeiling", },
319
+ :'AlphaFloorEffect' => { :'Type' => "AlphaFloor", },
320
+ :'AlphaInverseEffect' => { :'Type' => "AlphaInverse", },
321
+ :'AlphaModulateEffect' => { :'Type' => "AlphaModulate", },
322
+ :'AlphaModulateFixedEffect' => { :'Type' => "AlphaModulateFixed", },
323
+ :'AlphaReplaceEffect' => { :'Type' => "AlphaReplace", },
302
324
  :'ArcToPathSegment' => { :'Type' => "ArcTo", },
303
325
  :'ArrayElement' => { :'Type' => "Array", },
304
326
  :'BarElement' => { :'Type' => "Bar", },
305
327
  :'Base64InputFile' => { :'Type' => "Base64", },
328
+ :'BiLevelEffect' => { :'Type' => "BiLevel", },
306
329
  :'BlockElement' => { :'Type' => "Block", },
330
+ :'BlurImageEffect' => { :'Type' => "Blur", },
307
331
  :'BorderBoxElement' => { :'Type' => "BorderBox", },
308
332
  :'BoxElement' => { :'Type' => "Box", },
309
333
  :'ClosePathSegment' => { :'Type' => "Close", },
334
+ :'ColorChangeEffect' => { :'Type' => "ColorChange", },
335
+ :'ColorReplaceEffect' => { :'Type' => "ColorReplace", },
310
336
  :'ColorScheme' => { },
311
337
  :'CubicBezierToPathSegment' => { :'Type' => "CubicBezierTo", },
312
338
  :'DelimiterElement' => { :'Type' => "Delimiter", },
313
339
  :'Document' => { },
314
340
  :'DocumentProperties' => { },
315
341
  :'DocumentProperty' => { },
342
+ :'DuotoneEffect' => { :'Type' => "Duotone", },
316
343
  :'FileVersion' => { },
344
+ :'FillOverlayImageEffect' => { :'Type' => "FillOverlay", },
317
345
  :'FontScheme' => { },
318
346
  :'FormatScheme' => { },
319
347
  :'FractionElement' => { :'Type' => "Fraction", },
320
348
  :'FunctionElement' => { :'Type' => "Function", },
321
349
  :'GradientFill' => { :'Type' => "Gradient", },
350
+ :'GrayScaleEffect' => { :'Type' => "GrayScale", },
322
351
  :'GroupingCharacterElement' => { :'Type' => "GroupingCharacter", },
323
352
  :'HeaderFooter' => { },
353
+ :'HslEffect' => { :'Type' => "Hsl", },
324
354
  :'Html5ExportOptions' => { :'Format' => "html5", },
325
355
  :'HtmlExportOptions' => { :'Format' => "html", },
326
356
  :'Image' => { },
@@ -331,6 +361,7 @@ module AsposeSlidesCloud
331
361
  :'LeftSubSuperscriptElement' => { :'Type' => "LeftSubSuperscriptElement", },
332
362
  :'LimitElement' => { :'Type' => "Limit", },
333
363
  :'LineToPathSegment' => { :'Type' => "LineTo", },
364
+ :'LuminanceEffect' => { :'Type' => "Luminance", },
334
365
  :'MasterSlide' => { },
335
366
  :'MasterSlides' => { },
336
367
  :'MatrixElement' => { :'Type' => "Matrix", },
@@ -390,6 +421,7 @@ module AsposeSlidesCloud
390
421
  :'TextElement' => { :'Type' => "Text", },
391
422
  :'TextItems' => { },
392
423
  :'Theme' => { },
424
+ :'TintEffect' => { :'Type' => "Tint", },
393
425
  :'UpdateBackground' => { :'Type' => "UpdateBackground", },
394
426
  :'UpdateShape' => { :'Type' => "UpdateShape", },
395
427
  :'VideoExportOptions' => { :'Format' => "mpeg4", },
@@ -397,7 +429,6 @@ module AsposeSlidesCloud
397
429
  :'XYSeries' => { },
398
430
  :'XamlExportOptions' => { :'Format' => "xaml", },
399
431
  :'XpsExportOptions' => { :'Format' => "xps", },
400
- :'BoxAndWhiskerSeries' => { :'DataPointType' => "OneValue", },
401
432
  :'BubbleChartDataPoint' => { },
402
433
  :'BubbleSeries' => { :'DataPointType' => "Bubble", },
403
434
  :'Chart' => { :'Type' => "Chart", },
@@ -414,8 +445,6 @@ module AsposeSlidesCloud
414
445
  :'SummaryZoomFrame' => { :'Type' => "SummaryZoomFrame", },
415
446
  :'Table' => { :'Type' => "Table", },
416
447
  :'TiffExportOptions' => { :'Format' => "tiff", },
417
- :'WaterfallChartDataPoint' => { },
418
- :'WaterfallSeries' => { :'DataPointType' => "OneValue", },
419
448
  :'ZoomObject' => { },
420
449
  :'AudioFrame' => { :'Type' => "AudioFrame", },
421
450
  :'Connector' => { :'Type' => "Connector", },
@@ -21,5 +21,5 @@ SOFTWARE.
21
21
  =end
22
22
 
23
23
  module AsposeSlidesCloud
24
- VERSION = '22.4.0'
24
+ VERSION = '22.5.0'
25
25
  end
@@ -64,6 +64,7 @@ require 'aspose_slides_cloud/models/gradient_fill_stop'
64
64
  require 'aspose_slides_cloud/models/hyperlink'
65
65
  require 'aspose_slides_cloud/models/i_shape_export_options'
66
66
  require 'aspose_slides_cloud/models/image_export_format'
67
+ require 'aspose_slides_cloud/models/image_transform_effect'
67
68
  require 'aspose_slides_cloud/models/inner_shadow_effect'
68
69
  require 'aspose_slides_cloud/models/input'
69
70
  require 'aspose_slides_cloud/models/input_file'
@@ -118,28 +119,43 @@ require 'aspose_slides_cloud/models/add_layout_slide'
118
119
  require 'aspose_slides_cloud/models/add_master_slide'
119
120
  require 'aspose_slides_cloud/models/add_shape'
120
121
  require 'aspose_slides_cloud/models/add_slide'
122
+ require 'aspose_slides_cloud/models/alpha_bi_level_effect'
123
+ require 'aspose_slides_cloud/models/alpha_ceiling_effect'
124
+ require 'aspose_slides_cloud/models/alpha_floor_effect'
125
+ require 'aspose_slides_cloud/models/alpha_inverse_effect'
126
+ require 'aspose_slides_cloud/models/alpha_modulate_effect'
127
+ require 'aspose_slides_cloud/models/alpha_modulate_fixed_effect'
128
+ require 'aspose_slides_cloud/models/alpha_replace_effect'
121
129
  require 'aspose_slides_cloud/models/arc_to_path_segment'
122
130
  require 'aspose_slides_cloud/models/array_element'
123
131
  require 'aspose_slides_cloud/models/bar_element'
124
132
  require 'aspose_slides_cloud/models/base64_input_file'
133
+ require 'aspose_slides_cloud/models/bi_level_effect'
125
134
  require 'aspose_slides_cloud/models/block_element'
135
+ require 'aspose_slides_cloud/models/blur_image_effect'
126
136
  require 'aspose_slides_cloud/models/border_box_element'
127
137
  require 'aspose_slides_cloud/models/box_element'
128
138
  require 'aspose_slides_cloud/models/close_path_segment'
139
+ require 'aspose_slides_cloud/models/color_change_effect'
140
+ require 'aspose_slides_cloud/models/color_replace_effect'
129
141
  require 'aspose_slides_cloud/models/color_scheme'
130
142
  require 'aspose_slides_cloud/models/cubic_bezier_to_path_segment'
131
143
  require 'aspose_slides_cloud/models/delimiter_element'
132
144
  require 'aspose_slides_cloud/models/document'
133
145
  require 'aspose_slides_cloud/models/document_properties'
134
146
  require 'aspose_slides_cloud/models/document_property'
147
+ require 'aspose_slides_cloud/models/duotone_effect'
135
148
  require 'aspose_slides_cloud/models/file_version'
149
+ require 'aspose_slides_cloud/models/fill_overlay_image_effect'
136
150
  require 'aspose_slides_cloud/models/font_scheme'
137
151
  require 'aspose_slides_cloud/models/format_scheme'
138
152
  require 'aspose_slides_cloud/models/fraction_element'
139
153
  require 'aspose_slides_cloud/models/function_element'
140
154
  require 'aspose_slides_cloud/models/gradient_fill'
155
+ require 'aspose_slides_cloud/models/gray_scale_effect'
141
156
  require 'aspose_slides_cloud/models/grouping_character_element'
142
157
  require 'aspose_slides_cloud/models/header_footer'
158
+ require 'aspose_slides_cloud/models/hsl_effect'
143
159
  require 'aspose_slides_cloud/models/html5_export_options'
144
160
  require 'aspose_slides_cloud/models/html_export_options'
145
161
  require 'aspose_slides_cloud/models/image'
@@ -150,6 +166,7 @@ require 'aspose_slides_cloud/models/layout_slides'
150
166
  require 'aspose_slides_cloud/models/left_sub_superscript_element'
151
167
  require 'aspose_slides_cloud/models/limit_element'
152
168
  require 'aspose_slides_cloud/models/line_to_path_segment'
169
+ require 'aspose_slides_cloud/models/luminance_effect'
153
170
  require 'aspose_slides_cloud/models/master_slide'
154
171
  require 'aspose_slides_cloud/models/master_slides'
155
172
  require 'aspose_slides_cloud/models/matrix_element'
@@ -209,6 +226,7 @@ require 'aspose_slides_cloud/models/swf_export_options'
209
226
  require 'aspose_slides_cloud/models/text_element'
210
227
  require 'aspose_slides_cloud/models/text_items'
211
228
  require 'aspose_slides_cloud/models/theme'
229
+ require 'aspose_slides_cloud/models/tint_effect'
212
230
  require 'aspose_slides_cloud/models/update_background'
213
231
  require 'aspose_slides_cloud/models/update_shape'
214
232
  require 'aspose_slides_cloud/models/video_export_options'
@@ -216,7 +234,6 @@ require 'aspose_slides_cloud/models/view_properties'
216
234
  require 'aspose_slides_cloud/models/xy_series'
217
235
  require 'aspose_slides_cloud/models/xaml_export_options'
218
236
  require 'aspose_slides_cloud/models/xps_export_options'
219
- require 'aspose_slides_cloud/models/box_and_whisker_series'
220
237
  require 'aspose_slides_cloud/models/bubble_chart_data_point'
221
238
  require 'aspose_slides_cloud/models/bubble_series'
222
239
  require 'aspose_slides_cloud/models/chart'
@@ -233,8 +250,6 @@ require 'aspose_slides_cloud/models/smart_art'
233
250
  require 'aspose_slides_cloud/models/summary_zoom_frame'
234
251
  require 'aspose_slides_cloud/models/table'
235
252
  require 'aspose_slides_cloud/models/tiff_export_options'
236
- require 'aspose_slides_cloud/models/waterfall_chart_data_point'
237
- require 'aspose_slides_cloud/models/waterfall_series'
238
253
  require 'aspose_slides_cloud/models/zoom_object'
239
254
  require 'aspose_slides_cloud/models/audio_frame'
240
255
  require 'aspose_slides_cloud/models/connector'
data/testRules.json CHANGED
@@ -203,7 +203,7 @@
203
203
  { "Value": { "Type": "Regular", "Author": "Caesar", "Text": "Veni vidi vici" }, "InvalidValue": null, "Type": "SlideComment", "Parameter": "DTO", "Method": "CreateComment" },
204
204
  { "Value": { "Type": "Regular", "Author": "Caesar", "Text": "Veni vidi vici" }, "InvalidValue": null, "Type": "SlideComment", "Parameter": "DTO", "Method": "CreateCommentOnline" },
205
205
  { "Value": { "MasterSlide": { "Href": "masterSlides/2" } }, "InvalidValue": null, "Type": "LayoutSlide", "Parameter": "SlideDTO" },
206
- { "Value": { "LayoutSlide": { "Uri": { "Href": "TitleOnly" } } }, "InvalidValue": null, "Type": "Slide", "Parameter": "SlideDTO", "Method": "UpdateSlide" },
206
+ { "Value": { "LayoutSlide": { "Href": "TitleOnly" } }, "InvalidValue": null, "Type": "Slide", "Parameter": "SlideDTO", "Method": "UpdateSlide" },
207
207
  { "Value": { "List": [{ "Name": "Prop001", "Value": "Value001" }] }, "InvalidValue": null, "Type": "DocumentProperties", "Parameter": "Properties" },
208
208
  {
209
209
  "Value": { "Name": "testProperty001", "Value": "testValue002" },