aspose_slides_cloud 21.2.0 → 21.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -25,38 +25,31 @@ require 'spec_helper'
25
25
  describe 'SlidesApiExtra' do
26
26
  describe 'specific cases' do
27
27
  it 'multipart request' do
28
- requestParam = AsposeSlidesCloud::PostSlidesPipelineRequest.new
29
- requestParam.pipeline = AsposeSlidesCloud::Pipeline.new
30
- requestParam.pipeline.input = AsposeSlidesCloud::Input.new
31
- requestParam.pipeline.input.template_data = AsposeSlidesCloud::RequestInputFile.new
32
- requestParam.pipeline.input.template_data.type = "Request"
33
- requestParam.pipeline.input.template_data.index = 0
34
- requestParam.pipeline.input.template = AsposeSlidesCloud::RequestInputFile.new
35
- requestParam.pipeline.input.template.type = "Request"
36
- requestParam.pipeline.input.template.index = 1
37
- requestParam.pipeline.tasks = []
38
- requestParam.pipeline.tasks.push(AsposeSlidesCloud::Save.new)
39
- requestParam.pipeline.tasks[0].type = "Save"
40
- requestParam.pipeline.tasks[0].format = "pptx"
41
- requestParam.pipeline.tasks[0].output = AsposeSlidesCloud::OutputFile.new
42
- requestParam.pipeline.tasks[0].output.type = "Response"
43
- requestParam.files = []
44
- requestParam.files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "TemplatingCVDataWithBase64.xml")))
45
- requestParam.files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "TemplateCV.pptx")))
46
- o, c, _h = AsposeSlidesCloud::SpecUtils.api.post_slides_pipeline_with_http_info(requestParam)
28
+ pipeline = AsposeSlidesCloud::Pipeline.new
29
+ pipeline.input = AsposeSlidesCloud::Input.new
30
+ pipeline.input.template_data = AsposeSlidesCloud::RequestInputFile.new
31
+ pipeline.input.template_data.type = "Request"
32
+ pipeline.input.template_data.index = 0
33
+ pipeline.input.template = AsposeSlidesCloud::RequestInputFile.new
34
+ pipeline.input.template.type = "Request"
35
+ pipeline.input.template.index = 1
36
+ pipeline.tasks = []
37
+ pipeline.tasks.push(AsposeSlidesCloud::Save.new)
38
+ pipeline.tasks[0].type = "Save"
39
+ pipeline.tasks[0].format = "pptx"
40
+ pipeline.tasks[0].output = AsposeSlidesCloud::OutputFile.new
41
+ pipeline.tasks[0].output.type = "Response"
42
+ files = []
43
+ files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "TemplatingCVDataWithBase64.xml")))
44
+ files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "TemplateCV.pptx")))
45
+ o, c, _h = AsposeSlidesCloud::SpecUtils.api.pipeline_with_http_info(pipeline, files)
47
46
  expect(c).to eq(200)
48
47
  expect(o).not_to be(nil)
49
48
  end
50
49
 
51
50
  it 'base shape' do
52
51
  AsposeSlidesCloud::SpecUtils.initialize('GetSlideShape', nil, nil)
53
- requestParam = AsposeSlidesCloud::GetSlideShapeRequest.new
54
- requestParam.name = "test.pptx"
55
- requestParam.slide_index = 1
56
- requestParam.shape_index = 1
57
- requestParam.password = "password"
58
- requestParam.folder = "TempSlidesSDK"
59
- o = AsposeSlidesCloud::SpecUtils.api.get_slide_shape(requestParam)
52
+ o = AsposeSlidesCloud::SpecUtils.api.get_shape("test.pptx", 1, 1, "password", "TempSlidesSDK")
60
53
  expect(o.text).to eq("1")
61
54
  end
62
55
 
@@ -79,13 +72,7 @@ describe 'SlidesApiExtra' do
79
72
  #configuration.timeout = 1
80
73
  #api = AsposeSlidesCloud::SlidesApi.new(configuration)
81
74
 
82
- #requestParam = AsposeSlidesCloud::PostSlideSaveAsRequest.new
83
- #requestParam.name = "test.pptx"
84
- #requestParam.slide_index = 1
85
- #requestParam.password = "password"
86
- #requestParam.folder = "TempSlidesSDK"
87
- #requestParam.format = "svg"
88
- #api.post_slide_save_as(requestParam)
75
+ #api.download_slide("test.pptx", 1, "svg", "password", "TempSlidesSDK")
89
76
  end
90
77
 
91
78
  it 'nullable properties' do
@@ -97,72 +84,52 @@ describe 'SlidesApiExtra' do
97
84
  max1 = 104.3
98
85
  max2 = 87
99
86
  AsposeSlidesCloud::SpecUtils.initialize("no_method", "no_property", nil)
100
- requestParam = AsposeSlidesCloud::CopyFileRequest.new
101
- requestParam.src_path = "TempTests/" + fileName
102
- requestParam.dest_path = folderName + "/" + fileName
103
- AsposeSlidesCloud::SpecUtils.api.copy_file(requestParam)
104
-
105
- postRequest = AsposeSlidesCloud::PostAddNewShapeRequest.new
106
- postRequest.name = fileName
107
- postRequest.folder = folderName
108
- postRequest.password = password
109
- postRequest.slide_index = 1
110
- postRequest.dto = AsposeSlidesCloud::Chart.new
111
- postRequest.dto.chart_type = "Line"
112
- postRequest.dto.width = 400.0
113
- postRequest.dto.height = 300.0
114
- postRequest.dto.title = AsposeSlidesCloud::ChartTitle.new
115
- postRequest.dto.title.has_title = true
116
- postRequest.dto.title.text = "MyTitle"
117
- postRequest.dto.series = []
118
- postRequest.dto.series.push(AsposeSlidesCloud::OneValueSeries.new)
119
- postRequest.dto.series[0].type = "ClusteredColumn"
120
- postRequest.dto.series[0].data_point_type = "OneValue"
121
- postRequest.dto.series[0].name = "Series1"
122
- postRequest.dto.series[0].data_points = []
123
- postRequest.dto.series[0].data_points.push(AsposeSlidesCloud::OneValueChartDataPoint.new)
124
- postRequest.dto.series[0].data_points[0].value = 40.0
125
- postRequest.dto.series[0].data_points.push(AsposeSlidesCloud::OneValueChartDataPoint.new)
126
- postRequest.dto.series[0].data_points[1].value = 50.0
127
- postRequest.dto.axes = AsposeSlidesCloud::Axes.new
128
- postRequest.dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
129
- postRequest.dto.axes.horizontal_axis.is_automatic_min_value = false
130
- postRequest.dto.axes.horizontal_axis.min_value = min1
131
- postRequest.dto.axes.horizontal_axis.is_automatic_max_value = false
132
- postRequest.dto.axes.horizontal_axis.max_value = max1
133
- AsposeSlidesCloud::SpecUtils.api.post_add_new_shape(postRequest)
134
-
135
- getRequest = AsposeSlidesCloud::GetSlideShapeRequest.new
136
- getRequest.name = fileName
137
- getRequest.folder = folderName
138
- getRequest.password = password
139
- getRequest.slide_index = 1
140
- getRequest.shape_index = 4
141
- result = AsposeSlidesCloud::SpecUtils.api.get_slide_shape(getRequest)
87
+ AsposeSlidesCloud::SpecUtils.api.copy_file("TempTests/" + fileName, folderName + "/" + fileName)
88
+
89
+ dto = AsposeSlidesCloud::Chart.new
90
+ dto.chart_type = "Line"
91
+ dto.width = 400.0
92
+ dto.height = 300.0
93
+ dto.title = AsposeSlidesCloud::ChartTitle.new
94
+ dto.title.has_title = true
95
+ dto.title.text = "MyTitle"
96
+ dto.series = []
97
+ dto.series.push(AsposeSlidesCloud::OneValueSeries.new)
98
+ dto.series[0].type = "ClusteredColumn"
99
+ dto.series[0].data_point_type = "OneValue"
100
+ dto.series[0].name = "Series1"
101
+ dto.series[0].data_points = []
102
+ dto.series[0].data_points.push(AsposeSlidesCloud::OneValueChartDataPoint.new)
103
+ dto.series[0].data_points[0].value = 40.0
104
+ dto.series[0].data_points.push(AsposeSlidesCloud::OneValueChartDataPoint.new)
105
+ dto.series[0].data_points[1].value = 50.0
106
+ dto.axes = AsposeSlidesCloud::Axes.new
107
+ dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
108
+ dto.axes.horizontal_axis.is_automatic_min_value = false
109
+ dto.axes.horizontal_axis.min_value = min1
110
+ dto.axes.horizontal_axis.is_automatic_max_value = false
111
+ dto.axes.horizontal_axis.max_value = max1
112
+ AsposeSlidesCloud::SpecUtils.api.create_shape(fileName, 1, dto, nil, nil, password, folderName)
113
+
114
+ result = AsposeSlidesCloud::SpecUtils.api.get_shape(fileName, 1, 4, password, folderName)
142
115
  expect(result.axes.horizontal_axis.min_value).to eq(min1)
143
116
  expect(result.axes.horizontal_axis.max_value).to eq(max1)
144
117
 
145
- putRequest = AsposeSlidesCloud::PutSlideShapeInfoRequest.new
146
- putRequest.name = fileName
147
- putRequest.folder = folderName
148
- putRequest.password = password
149
- putRequest.slide_index = 1
150
- putRequest.shape_index = 4
151
- putRequest.dto = AsposeSlidesCloud::Chart.new
152
- putRequest.dto.axes = AsposeSlidesCloud::Axes.new
153
- putRequest.dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
154
- putRequest.dto.axes.horizontal_axis.min_value = min2
155
- AsposeSlidesCloud::SpecUtils.api.put_slide_shape_info(putRequest)
156
-
157
- result = AsposeSlidesCloud::SpecUtils.api.get_slide_shape(getRequest)
118
+ dto = AsposeSlidesCloud::Chart.new
119
+ dto.axes = AsposeSlidesCloud::Axes.new
120
+ dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
121
+ dto.axes.horizontal_axis.min_value = min2
122
+ AsposeSlidesCloud::SpecUtils.api.update_shape(fileName, 1, 4, dto, password, folderName)
123
+
124
+ result = AsposeSlidesCloud::SpecUtils.api.get_shape(fileName, 1, 4, password, folderName)
158
125
  expect(result.axes.horizontal_axis.min_value).to eq(min2)
159
126
  expect(result.axes.horizontal_axis.max_value).to eq(max1)
160
127
 
161
- putRequest.dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
162
- putRequest.dto.axes.horizontal_axis.max_value = max2
163
- AsposeSlidesCloud::SpecUtils.api.put_slide_shape_info(putRequest)
128
+ dto.axes.horizontal_axis = AsposeSlidesCloud::Axis.new
129
+ dto.axes.horizontal_axis.max_value = max2
130
+ AsposeSlidesCloud::SpecUtils.api.update_shape(fileName, 1, 4, dto, password, folderName)
164
131
 
165
- result = AsposeSlidesCloud::SpecUtils.api.get_slide_shape(getRequest)
132
+ result = AsposeSlidesCloud::SpecUtils.api.get_shape(fileName, 1, 4, password, folderName)
166
133
  expect(result.axes.horizontal_axis.min_value).to eq(min2)
167
134
  expect(result.axes.horizontal_axis.max_value).to eq(max2)
168
135
  end
@@ -178,7 +145,7 @@ describe 'SlidesApiExtra' do
178
145
  configuration.app_key = config["ClientSecret"]
179
146
  configuration.debugging = config["Debug"]
180
147
  api = AsposeSlidesCloud::SlidesApi.new(configuration)
181
- o, c, _h = api.get_slides_api_info_with_http_info
148
+ o, c, _h = api.get_api_info_with_http_info
182
149
  expect(c).to eq(200)
183
150
  expect(o).not_to be(nil)
184
151
  end
@@ -193,7 +160,7 @@ describe 'SlidesApiExtra' do
193
160
  configuration.debugging = config["Debug"]
194
161
  api = AsposeSlidesCloud::SlidesApi.new(configuration)
195
162
  begin
196
- o, c, _h = api.get_slides_api_info_with_http_info
163
+ o, c, _h = api.get_api_info_with_http_info
197
164
  fail "An exception expected"
198
165
  rescue AsposeSlidesCloud::ApiError => e
199
166
  expect(e.code).to eq(401)
@@ -210,10 +177,10 @@ describe 'SlidesApiExtra' do
210
177
  configuration.app_key = config["ClientSecret"]
211
178
  configuration.debugging = config["Debug"]
212
179
  api = AsposeSlidesCloud::SlidesApi.new(configuration)
213
- api.get_slides_api_info_with_http_info
180
+ api.get_api_info_with_http_info
214
181
  configuration.app_sid = "invalid"
215
182
  api = AsposeSlidesCloud::SlidesApi.new(configuration)
216
- o, c, _h = api.get_slides_api_info_with_http_info
183
+ o, c, _h = api.get_api_info_with_http_info
217
184
  expect(c).to eq(200)
218
185
  expect(o).not_to be(nil)
219
186
  end
@@ -228,7 +195,7 @@ describe 'SlidesApiExtra' do
228
195
  configuration.access_token = "expired.token"
229
196
  configuration.debugging = config["Debug"]
230
197
  api = AsposeSlidesCloud::SlidesApi.new(configuration)
231
- o, c, _h = api.get_slides_api_info_with_http_info
198
+ o, c, _h = api.get_api_info_with_http_info
232
199
  expect(c).to eq(200)
233
200
  expect(o).not_to be(nil)
234
201
  end
data/spec/spec_utils.rb CHANGED
@@ -24,11 +24,9 @@ module AsposeSlidesCloud
24
24
  class SpecUtils
25
25
  def self.initialize(method, name, value)
26
26
  if !@@is_initialized
27
- download_request = AsposeSlidesCloud::DownloadFileRequest.new
28
- download_request.path = "TempTests/version.txt"
29
27
  version = ""
30
28
  begin
31
- version = SpecUtils.api.download_file(download_request)
29
+ version = SpecUtils.api.download_file("TempTests/version.txt")
32
30
  rescue AsposeSlidesCloud::ApiError => e
33
31
  if e.code != 404
34
32
  fail "Could not read from storage"
@@ -38,16 +36,10 @@ module AsposeSlidesCloud
38
36
  Dir.entries(TEST_DATA_PATH).each { |f|
39
37
  if !File.directory? File.join(TEST_DATA_PATH, f)
40
38
  fd = File.binread(File.join(TEST_DATA_PATH, f))
41
- upload_request = AsposeSlidesCloud::UploadFileRequest.new
42
- upload_request.file = fd
43
- upload_request.path = "TempTests/" + f
44
- SpecUtils.api.upload_file(upload_request)
39
+ SpecUtils.api.upload_file("TempTests/" + f, fd)
45
40
  end
46
41
  }
47
- upload_request = AsposeSlidesCloud::UploadFileRequest.new
48
- upload_request.file = EXPECTED_TEST_DATA_VERSION
49
- upload_request.path = "TempTests/version.txt"
50
- SpecUtils.api.upload_file(upload_request)
42
+ SpecUtils.api.upload_file("TempTests/version.txt", EXPECTED_TEST_DATA_VERSION)
51
43
  end
52
44
  @@is_initialized = true
53
45
  end
@@ -66,14 +58,9 @@ module AsposeSlidesCloud
66
58
  end
67
59
  files.each do |path, rule|
68
60
  if rule["Action"] == "Put"
69
- copy_request = AsposeSlidesCloud::CopyFileRequest.new
70
- copy_request.src_path = "TempTests/" + rule['ActualName']
71
- copy_request.dest_path = path
72
- SpecUtils.api.copy_file(copy_request)
61
+ SpecUtils.api.copy_file("TempTests/" + rule['ActualName'], path)
73
62
  elsif rule["Action"] == "Delete"
74
- delete_request = AsposeSlidesCloud::DeleteFileRequest.new
75
- delete_request.path = path
76
- SpecUtils.api.delete_file(delete_request)
63
+ SpecUtils.api.delete_file(path)
77
64
  end
78
65
  end
79
66
  end
@@ -81,11 +68,19 @@ module AsposeSlidesCloud
81
68
  def self.get_param_value(name, method, type)
82
69
  if type == 'File'
83
70
  fileName = "test.pptx"
84
- if method.casecmp("PostSlidesDocumentFromPdf") == 0
71
+ if method.casecmp("ImportFromPdf") == 0
85
72
  fileName = "test.pdf"
73
+ elsif name.casecmp("Image") == 0
74
+ fileName = "watermark.png"
86
75
  end
87
76
  return File.binread(File.join(TEST_DATA_PATH, fileName))
88
77
  end
78
+ if type == 'File[]'
79
+ files = []
80
+ files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "test.pptx")))
81
+ files.push(File.binread(File.join(AsposeSlidesCloud::SpecUtils::TEST_DATA_PATH, "test-unprotected.pptx")))
82
+ return files
83
+ end
89
84
  value = "test" + name
90
85
  SpecUtils.test_rules["Values"].each do |rule|
91
86
  if SpecUtils.good_rule?(rule, name, method) and rule.key?("Value")
data/testRules.json CHANGED
@@ -1,43 +1,41 @@
1
1
  {
2
2
  "Files": [
3
3
  { "Action": "Put", "File": "test.pptx" },
4
- { "Action": "Put", "File": "test-unprotected.pptx", "Method": "DeleteSlidesCleanSlidesList" },
5
- { "Action": "Put", "File": "test-unprotected.pptx", "Method": "PutSlidesSlide" },
6
- { "Action": "Delete", "File": "test.pptx", "Method": "PostSlidesDocument" },
7
- { "Action": "Delete", "File": "test.pptx", "Method": "PostSlidesDocumentFromHtml" },
4
+ { "Action": "Put", "File": "test-unprotected.pptx", "Method": "CreateSlide" },
5
+ { "Action": "Put", "File": "test-unprotected.pptx", "Method": "DeleteSlides" },
6
+ { "Action": "Put", "File": "test-unprotected.pptx", "Method": "UpdateSlide" },
7
+ { "Action": "Delete", "File": "test.pptx", "Method": "CreatePresentation" },
8
+ { "Action": "Delete", "File": "test.pptx", "Method": "ImportFromHtml" },
8
9
  { "Action": "Delete", "File": "test.pptx", "Method": "UploadFile" },
9
10
  { "Action": "Delete", "Folder": "%v", "File": "test.pptx", "Parameter": "Folder" },
10
11
  { "Action": "Delete", "File": "%v", "Parameter": "Name" },
11
- { "Action": "Delete", "File": "changedtest.pptx", "Method": "PostSlidesDocument" },
12
- { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "PostSlidesDocument" },
13
- { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "PostSlidesDocument" },
14
- { "Action": "Delete", "File": "changedtest.pptx", "Method": "PostSlidesDocumentFromSource" },
15
- { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "PostSlidesDocumentFromSource" },
16
- { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "PostSlidesDocumentFromSource" },
17
- { "Action": "Delete", "File": "changedtest.pptx", "Method": "PostSlidesDocumentFromTemplate" },
18
- { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "PostSlidesDocumentFromTemplate" },
19
- { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "PostSlidesDocumentFromTemplate" },
20
- { "Action": "Delete", "File": "changedtest.pptx", "Method": "PutNewPresentation" },
21
- { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "PutNewPresentation" },
22
- { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "PutNewPresentation" },
12
+ { "Action": "Delete", "File": "changedtest.pptx", "Method": "CreatePresentation" },
13
+ { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "CreatePresentation" },
14
+ { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "CreatePresentation" },
15
+ { "Action": "Delete", "File": "changedtest.pptx", "Method": "CreatePresentationFromSource" },
16
+ { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "CreatePresentationFromSource" },
17
+ { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "CreatePresentationFromSource" },
18
+ { "Action": "Delete", "File": "changedtest.pptx", "Method": "CreatePresentationFromTemplate" },
19
+ { "Action": "Delete", "File": "invalidchangedtest.pptx", "Method": "CreatePresentationFromTemplate" },
20
+ { "Action": "Delete", "Folder": "invalidTempSlidesSDK", "File": "test.pptx", "Method": "CreatePresentationFromTemplate" },
21
+ { "Action": "Delete", "Folder": "TempSlidesSDKinvalid", "File": "changedtest.pptx", "Method": "CreatePresentationFromTemplate" },
23
22
  { "Action": "Delete", "Folder": "invalidTempSlidesSDK", "File": "test.pptx", "Parameter": "CloneFrom" },
24
23
  { "Action": "Delete", "Folder": "invalidTempSlidesSDK", "File": "test.pptx", "Parameter": "SourcePath" }
25
24
  ],
26
25
  "Values": [
27
26
  { "InvalidValue": "%vinvalid" },
28
27
  { "Value": "test.pptx", "InvalidValue": "invalid%v", "Parameter": "Name" },
29
- { "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "PutSlidesSlide" },
30
- { "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "PostSlidesAdd" },
31
- { "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "DeleteSlidesCleanSlidesList" },
32
- { "Value": "changedtest.pptx", "Parameter": "Name", "Method": "PutNewPresentation" },
33
- { "Value": "changedtest.pptx", "Parameter": "Name", "Method": "PostSlidesDocumentFromSource" },
34
- { "Value": "changedtest.pptx", "Parameter": "Name", "Method": "PostSlidesDocumentFromTemplate" },
28
+ { "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "UpdateSlide" },
29
+ { "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "CreateSlide" },
30
+ { "Value": "test-unprotected.pptx", "Parameter": "Name", "Method": "DeleteSlides" },
31
+ { "Value": "changedtest.pptx", "Parameter": "Name", "Method": "CreatePresentationFromSource" },
32
+ { "Value": "changedtest.pptx", "Parameter": "Name", "Method": "CreatePresentationFromTemplate" },
35
33
  { "Value": "TempSlidesSDK", "Parameter": "Folder" },
36
34
  { "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "SourcePath" },
37
35
  { "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "SrcPath" },
38
36
  { "Value": "TempSlidesSDK/changedtest.pptx", "InvalidValue": "invalid%v", "Parameter": "DestPath" },
39
37
  { "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "TemplatePath" },
40
- { "Value": "TempSlidesSDK/TemplateCV.pptx", "InvalidValue": "invalid%v", "Parameter": "TemplatePath", "Method": "PostSlidesDocument" },
38
+ { "Value": "TempSlidesSDK/TemplateCV.pptx", "InvalidValue": "invalid%v", "Parameter": "TemplatePath", "Method": "CreatePresentation" },
41
39
  { "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "CloneFrom" },
42
40
  { "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "Source" },
43
41
  { "Value": "TempSlidesSDK/out.pdf", "Parameter": "OutPath" },
@@ -46,9 +44,9 @@
46
44
  { "Value": "password", "Parameter": "TemplatePassword" },
47
45
  { "Value": "password", "Parameter": "SourcePassword" },
48
46
  { "Value": "password", "Parameter": "CloneFromPassword" },
49
- { "Value": null, "Parameter": "Password", "Method": "PutSlidesSlide" },
50
- { "Value": null, "Parameter": "Password", "Method": "PostSlidesAdd" },
51
- { "Value": null, "Parameter": "Password", "Method": "DeleteSlidesCleanSlidesList" },
47
+ { "Value": null, "Parameter": "Password", "Method": "UpdateSlide" },
48
+ { "Value": null, "Parameter": "Password", "Method": "CreateSlide" },
49
+ { "Value": null, "Parameter": "Password", "Method": "DeleteSlides" },
52
50
  { "Value": null, "Parameter": "Storage" },
53
51
  { "Value": null, "Parameter": "StorageName" },
54
52
  { "Value": "testStorage", "Parameter": "StorageName", "Method": "StorageExists" },
@@ -58,42 +56,42 @@
58
56
  { "Value": null, "Parameter": "CloneFromStorage" },
59
57
  { "Value": null, "Parameter": "SourceStorage" },
60
58
  { "Value": 1, "InvalidValue": 593, "Parameter": "SlideIndex" },
61
- { "Value": 5, "Parameter": "SlideIndex", "Method": "PostSection" },
59
+ { "Value": 5, "Parameter": "SlideIndex", "Method": "CreateSection" },
62
60
  { "Value": null, "InvalidValue": [1, 593], "Parameter": "Slides" },
63
61
  { "Value": 1, "InvalidValue": 593, "Parameter": "SlideToCopy" },
64
62
  { "Value": null, "InvalidValue": 593, "Parameter": "SlideToClone" },
65
63
  { "Value": 1, "InvalidValue": 593, "Parameter": "ShapeIndex" },
66
- { "Value": 3, "Parameter": "SlideIndex", "Method": "PostChartSeries" },
67
- { "Value": 3, "Parameter": "SlideIndex", "Method": "PutChartSeries" },
64
+ { "Value": 3, "Parameter": "SlideIndex", "Method": "CreateChartSeries" },
65
+ { "Value": 3, "Parameter": "SlideIndex", "Method": "UpdateChartSeries" },
68
66
  { "Value": 3, "Parameter": "SlideIndex", "Method": "DeleteChartSeries" },
69
- { "Value": 3, "Parameter": "SlideIndex", "Method": "PostChartCategory" },
70
- { "Value": 3, "Parameter": "SlideIndex", "Method": "PutChartCategory" },
67
+ { "Value": 3, "Parameter": "SlideIndex", "Method": "CreateChartCategory" },
68
+ { "Value": 3, "Parameter": "SlideIndex", "Method": "UpdateChartCategory" },
71
69
  { "Value": 3, "Parameter": "SlideIndex", "Method": "DeleteChartCategory" },
72
- { "Value": 3, "Parameter": "SlideIndex", "Method": "PostChartDataPoint" },
73
- { "Value": 3, "Parameter": "SlideIndex", "Method": "PutChartDataPoint" },
70
+ { "Value": 3, "Parameter": "SlideIndex", "Method": "CreateChartDataPoint" },
71
+ { "Value": 3, "Parameter": "SlideIndex", "Method": "UpdateChartDataPoint" },
74
72
  { "Value": 3, "Parameter": "SlideIndex", "Method": "DeleteChartDataPoint" },
75
- { "Value": 2, "Parameter": "ShapeIndex", "Method": "PostChartDataPoint" },
76
- { "Value": 2, "Parameter": "ShapeIndex", "Method": "PutChartDataPoint" },
73
+ { "Value": 2, "Parameter": "ShapeIndex", "Method": "CreateChartDataPoint" },
74
+ { "Value": 2, "Parameter": "ShapeIndex", "Method": "UpdateChartDataPoint" },
77
75
  { "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSlideSubshape" },
78
76
  { "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSlideSubshapes" },
79
77
  { "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSubshapeParagraph" },
80
78
  { "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSubshapeParagraphs" },
81
79
  { "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSubshapePortion" },
82
80
  { "Value": 1, "Parameter": "ShapeIndex", "Method": "DeleteSubshapePortions" },
83
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSlideSubshape" },
84
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSlideSubshapes" },
85
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSlideSubshapeParagraph" },
86
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSlideSubshapeParagraphs" },
81
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshape" },
82
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapes" },
83
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapeParagraph" },
84
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapeParagraphs" },
87
85
  { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapeParagraphPortion" },
88
86
  { "Value": 1, "Parameter": "ShapeIndex", "Method": "GetSubshapeParagraphPortions" },
89
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PostAddNewSubshape" },
90
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PostAddNewSubshapeParagraph" },
91
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PostAddNewSubshapePortion" },
92
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PostSubshapeSaveAs" },
93
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PutSetSubshapeParagraphPortionProperties" },
94
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PutSetSubshapeParagraphProperties" },
95
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PutSlideSubshapeInfo" },
96
- { "Value": 1, "Parameter": "ShapeIndex", "Method": "PutSubshapeSaveAs" },
87
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "CreateSubshape" },
88
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "CreateSubshapeParagraph" },
89
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "CreateSubshapePortion" },
90
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "DownloadSubshape" },
91
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "UpdateSubshapePortion" },
92
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "UpdateSubshapeParagraph" },
93
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "UpdateSubshape" },
94
+ { "Value": 1, "Parameter": "ShapeIndex", "Method": "SaveSubshape" },
97
95
  { "Value": null, "InvalidValue": [1, 593], "Parameter": "Shapes" },
98
96
  { "Value": null, "InvalidValue": 593, "Parameter": "ShapeToClone" },
99
97
  { "Value": 1, "InvalidValue": 593, "Parameter": "SeriesIndex" },
@@ -109,6 +107,8 @@
109
107
  { "Value": 2, "InvalidValue": 593, "Parameter": "SectionIndex" },
110
108
  { "Value": 1, "InvalidValue": 593, "Parameter": "Index" },
111
109
  { "Value": 2, "InvalidValue": 593, "Parameter": "NewPosition" },
110
+ { "Value": 20, "InvalidValue": 593, "Parameter": "FontHeight" },
111
+ { "Value": 256, "InvalidValue": 593, "Parameter": "FontColor" },
112
112
  { "Value": null, "InvalidValue": 593, "Parameter": "OldPosition" },
113
113
  { "Value": 1, "InvalidValue": 593, "Parameter": "Position" },
114
114
  { "Value": [2, 1], "InvalidValue": [1, 593], "Parameter": "OldPositions" },
@@ -125,6 +125,7 @@
125
125
  { "Value": "TempSlidesSDK/test.pptx", "InvalidValue": "invalid%v", "Parameter": "Path", "Method": "ObjectExists" },
126
126
  { "Value": "TempSlidesSDK", "Parameter": "Path", "Method": "DeleteFolder" },
127
127
  { "Value": "testProperty", "Parameter": "PropertyName" },
128
+ { "Value": null, "Parameter": "Author" },
128
129
  { "InvalidValue": null, "Parameter": "Stream" },
129
130
  {
130
131
  "Value": "<staff><person><name>John Doe</name><address><line1>10 Downing Street</line1><line2>London</line2></address><phone>+457 123456</phone><bio>Hi, I'm John and this is my CV</bio><skills><skill><title>C#</title><level>Excellent</level></skill><skill><title>C++</title><level>Good</level></skill><skill><title>Java</title><level>Average</level></skill></skills></person></staff>",
@@ -132,7 +133,13 @@
132
133
  },
133
134
  { "Value": {}, "InvalidValue": null, "Type": "Pipeline", "Parameter": "Request" },
134
135
  { "Value": {}, "InvalidValue": null, "Type": "PresentationsMergeRequest", "Parameter": "Request" },
135
- { "Value": {}, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request" },
136
+ { "Value": { "Presentations": [{ "Path": "test.pptx", "Password": "password" }, { "Path": "test-unprotected.pptx" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request" },
137
+ { "Value": { "Presentations": [{ "Path": "file1", "Password": "password" }, { "Path": "file2" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Language": "Go" },
138
+ { "Value": { "Presentations": [{ "Path": "file1", "Password": "password" }, { "Path": "file2" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Language": "Ruby" },
139
+ { "Value": { "Presentations": [{ "Path": "file1", "Password": "password" }, { "Path": "file2" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Language": "Perl" },
140
+ { "Value": { "Presentations": [{ "Path": "file1", "Password": "password" }, { "Path": "file2" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Language": "Swift" },
141
+ { "Value": { "Presentations": [{ "Path": "file1", "Password": "password" }, { "Path": "file2" }] }, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Language": "CPP" },
142
+ { "Value": {}, "InvalidValue": null, "Type": "OrderedMergeRequest", "Parameter": "Request", "Method": "OrderedMerge" },
136
143
  { "Value": {}, "InvalidValue": null, "Type": "Pipeline", "Parameter": "Pipeline" },
137
144
  { "Value": {}, "InvalidValue": null, "Type": "SlideBackground", "Parameter": "Background" },
138
145
  { "Value": {}, "InvalidValue": null, "Type": "SlideAnimation", "Parameter": "Animation" },
@@ -152,39 +159,51 @@
152
159
  "Type": "Shape",
153
160
  "Parameter": "DTO"
154
161
  },
162
+ { "Value": null, "InvalidValue": null, "Parameter": "PictureFrame" },
163
+ { "Value": null, "InvalidValue": null, "Parameter": "Shape" },
155
164
  { "Value": { "Type": "Connector" }, "InvalidValue": null, "Type": "Shape", "Parameter": "DTO", "Language": "CPP" },
156
- { "Value": {}, "InvalidValue": null, "Type": "SlideProperties", "Parameter": "DTO", "Method": "PutSlidesSlideProperties" },
157
- { "Value": {}, "InvalidValue": null, "Type": "ProtectionProperties", "Parameter": "DTO", "Method": "PutSlidesProtectionProperties" },
158
- { "Value": {}, "InvalidValue": null, "Type": "ViewProperties", "Parameter": "DTO", "Method": "PutSlidesViewProperties" },
159
- { "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "PostAddNewPortion" },
160
- { "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "PostAddNewSubshapePortion" },
161
- { "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "PostNotesSlideAddNewPortion" },
165
+ { "Value": {}, "InvalidValue": null, "Type": "SlideProperties", "Parameter": "DTO", "Method": "SetSlideProperties" },
166
+ { "Value": {}, "InvalidValue": null, "Type": "ProtectionProperties", "Parameter": "DTO", "Method": "SetProtection" },
167
+ { "Value": {}, "InvalidValue": null, "Type": "ProtectionProperties", "Parameter": "DTO", "Method": "SetProtectionOnline" },
168
+ { "Value": {}, "InvalidValue": null, "Type": "ViewProperties", "Parameter": "DTO", "Method": "SetViewProperties" },
169
+ { "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "CreatePortion" },
170
+ { "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "CreateSubshapePortion" },
171
+ { "Value": { "Text": "testPortion" }, "InvalidValue": null, "Type": "Portion", "Parameter": "DTO", "Method": "CreateNotesSlidePortion" },
172
+ { "Value": { "Author": "Caesar", "Text": "Veni vidi vici" }, "InvalidValue": null, "Type": "SlideComment", "Parameter": "DTO", "Method": "CreateComment" },
173
+ { "Value": { "Author": "Caesar", "Text": "Veni vidi vici" }, "InvalidValue": null, "Type": "SlideComment", "Parameter": "DTO", "Method": "CreateCommentOnline" },
162
174
  { "Value": { "MasterSlide": { "Href": "masterSlides/2" } }, "InvalidValue": null, "Type": "LayoutSlide", "Parameter": "SlideDTO" },
163
- { "Value": { "LayoutSlide": { "Uri": { "Href": "TitleOnly" } } }, "InvalidValue": null, "Type": "Slide", "Parameter": "SlideDTO", "Method": "PutSlidesSlide" },
164
- { "Value": { "List": [] }, "InvalidValue": null, "Type": "DocumentProperties", "Parameter": "Properties" },
175
+ { "Value": { "LayoutSlide": { "Uri": { "Href": "TitleOnly" } } }, "InvalidValue": null, "Type": "Slide", "Parameter": "SlideDTO", "Method": "UpdateSlide" },
176
+ { "Value": { "List": [{ "Name": "Prop001", "Value": "Value001" }] }, "InvalidValue": null, "Type": "DocumentProperties", "Parameter": "Properties" },
165
177
  {
166
178
  "Value": { "Name": "testProperty001", "Value": "testValue002" },
167
179
  "InvalidValue": null,
168
180
  "Type": "DocumentProperty",
169
181
  "Parameter": "Property"
170
182
  },
171
- { "Value": {}, "InvalidValue": null, "Type": "Sections", "Parameter": "Sections", "Method": "PutSections" },
183
+ { "Value": {}, "InvalidValue": null, "Type": "Sections", "Parameter": "Sections", "Method": "SetSections" },
172
184
  { "Value": "pdf", "Parameter": "Format" },
173
185
  { "InvalidValue": "svg", "Parameter": "Format", "Language": "NET" },
174
- { "InvalidValue": "gif", "Parameter": "Format", "Method": "GetNotesSlideWithFormat", "Language": "NET" },
175
- { "InvalidValue": "gif", "Parameter": "Format", "Method": "PostGetNotesSlideWithFormat", "Language": "NET" },
176
- { "InvalidValue": "gif", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "NET" },
177
- { "Value": "png", "Parameter": "Format", "Method": "GetNotesSlideWithFormat" },
178
- { "Value": "png", "Parameter": "Format", "Method": "PostGetNotesSlideWithFormat" },
179
- { "Value": "png", "Parameter": "Format", "Method": "GetShapeWithFormat" },
180
- { "Value": "png", "Parameter": "Format", "Method": "PostShapeSaveAs" },
181
- { "Value": "png", "Parameter": "Format", "Method": "PutShapeSaveAs" },
182
- { "Value": "png", "Parameter": "Format", "Method": "PostSubshapeSaveAs" },
183
- { "Value": "png", "Parameter": "Format", "Method": "PutSubshapeSaveAs" },
184
- { "Value": "png", "Parameter": "Format", "Method": "GetNotesSlideShapeWithFormat" },
185
- { "Value": "png", "Parameter": "Format", "Method": "PostNotesSlideShapeSaveAs" },
186
- { "Value": "png", "Parameter": "Format", "Method": "PutNotesSlideShapeSaveAs" },
187
- { "Value": "png", "Parameter": "Format", "Method": "GetSlidesImageWithFormat" },
186
+ { "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadNotesSlide", "Language": "NET" },
187
+ { "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadNotesSlideOnline", "Language": "NET" },
188
+ { "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadImage", "Language": "NET" },
189
+ { "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "NET" },
190
+ { "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadImages", "Language": "NET" },
191
+ { "InvalidValue": "gif", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "NET" },
192
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadNotesSlide" },
193
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadNotesSlideOnline" },
194
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadShape" },
195
+ { "Value": "png", "Parameter": "Format", "Method": "SaveShape" },
196
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadShapeOnline" },
197
+ { "Value": "png", "Parameter": "Format", "Method": "SaveShapeOnline" },
198
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadSubshape" },
199
+ { "Value": "png", "Parameter": "Format", "Method": "SaveSubshape" },
200
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadNotesSlideShape" },
201
+ { "Value": "png", "Parameter": "Format", "Method": "SaveNotesSlideShape" },
202
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadImage" },
203
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadImageOnline" },
204
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadImages" },
205
+ { "Value": "png", "Parameter": "Format", "Method": "DownloadImagesOnline" },
206
+ { "Value": "AlignTop", "InvalidValue": "AlignBottom", "Parameter": "AlignmentType" },
188
207
  { "Value": null, "InvalidValue": "Shape", "Parameter": "Bounds" },
189
208
  { "Value": "OnScreen", "InvalidValue": "Ledger", "Parameter": "SizeType" },
190
209
  { "Value": "DoNotScale", "InvalidValue": "Maximize", "Parameter": "ScaleType" },
@@ -199,14 +218,15 @@
199
218
  { "Value": null, "InvalidValue": false, "Parameter": "ApplyToAll" },
200
219
  { "Value": null, "InvalidValue": false, "Parameter": "IsImageDataEmbedded" },
201
220
  { "Value": null, "InvalidValue": false, "Parameter": "WithSlides" },
221
+ { "Value": null, "InvalidValue": false, "Parameter": "AlignToSlide" },
202
222
  { "Value": null, "InvalidValue": 593, "Parameter": "JpegQuality" },
203
223
  { "Value": null, "InvalidValue": 593.5, "Parameter": "ScaleX" },
204
224
  { "Value": null, "InvalidValue": 593.5, "Parameter": "ScaleY" },
205
- { "Value": null, "Parameter": "VersionId" },
206
- { "Value": null, "InvalidValue": null, "Parameter": "Files" }
225
+ { "InvalidValue": null, "Parameter": "Files" },
226
+ { "Value": null, "Parameter": "VersionId" }
207
227
  ],
208
228
  "OKToReturnNull": [
209
- { "Method": "PostSlidesPipeline" }
229
+ { "Method": "Pipeline" }
210
230
  ],
211
231
  "OKToNotFail": [
212
232
  { "Parameter": "JpegQuality" },
@@ -242,10 +262,19 @@
242
262
  { "Parameter": "IgnoreCase" },
243
263
  { "Parameter": "Document" },
244
264
  { "Parameter": "Color" },
245
- { "Parameter": "Format", "Method": "PutSlidesSlide" },
265
+ { "Parameter": "Image" },
266
+ { "Parameter": "PictureFrame" },
267
+ { "Parameter": "Shape" },
268
+ { "Parameter": "FontColor" },
269
+ { "Parameter": "FontHeight" },
270
+ { "Parameter": "FontName" },
271
+ { "Parameter": "Text" },
272
+ { "Parameter": "ShapeName" },
273
+ { "Parameter": "Format", "Method": "UpdateSlide" },
246
274
  { "Parameter": "Format", "Language": "NET" },
247
- { "Parameter": "Format", "Language": "Java", "Method": "PostSlidesSplit" },
248
- { "Parameter": "Dto", "Method": "PostAddNotesSlide" },
275
+ { "Parameter": "Format", "Language": "Java", "Method": "Split" },
276
+ { "Parameter": "Dto", "Method": "CreateNotesSlide" },
277
+ { "Parameter": "DataPoint", "Language": "PHP" },
249
278
  { "Parameter": "Dto", "Language": "Swift" },
250
279
  { "Parameter": "SlideDto", "Language": "Swift" },
251
280
  { "Parameter": "Request", "Language": "Swift" },
@@ -258,30 +287,28 @@
258
287
  { "Parameter": "Category", "Language": "Swift" },
259
288
  { "Parameter": "Series", "Language": "Swift" },
260
289
  { "Parameter": "Sections", "Language": "Swift" },
261
- { "Parameter": "Position", "Method": "PostSlidesReorderPosition" },
262
- { "Parameter": "Name", "Method": "PostSlidesDocument" },
263
- { "Parameter": "Name", "Method": "PostSlidesDocumentFromHtml" },
264
- { "Parameter": "Name", "Method": "PostSlidesDocumentFromPdf" },
265
- { "Parameter": "Name", "Method": "PostSlidesDocumentFromSource" },
266
- { "Parameter": "Name", "Method": "PostSlidesDocumentFromTemplate" },
267
- { "Parameter": "Name", "Method": "PutNewPresentation" },
268
- { "Parameter": "Name", "Method": "PutSlidesDocumentFromHtml" },
269
- { "Parameter": "Folder", "Method": "PostSlidesDocument" },
270
- { "Parameter": "Folder", "Method": "PostSlidesDocumentFromHtml" },
271
- { "Parameter": "Folder", "Method": "PostSlidesDocumentFromPdf" },
272
- { "Parameter": "Folder", "Method": "PostSlidesDocumentFromSource" },
273
- { "Parameter": "Folder", "Method": "PostSlidesDocumentFromTemplate" },
274
- { "Parameter": "Folder", "Method": "PutNewPresentation" },
275
- { "Parameter": "Folder", "Method": "PutSlidesDocumentFromHtml" },
276
- { "Parameter": "Password", "Method": "PostSlidesDocument" },
277
- { "Parameter": "Password", "Method": "PostSlidesDocumentFromHtml" },
278
- { "Parameter": "Password", "Method": "PostSlidesDocumentFromSource" },
279
- { "Parameter": "Password", "Method": "PostSlidesDocumentFromTemplate" },
280
- { "Parameter": "Password", "Method": "PutNewPresentation" },
281
- { "Parameter": "Data", "Method": "PostSlidesDocument" },
290
+ { "Parameter": "Position", "Method": "MoveSlide" },
291
+ { "Parameter": "Name", "Method": "CreatePresentation" },
292
+ { "Parameter": "Name", "Method": "ImportFromHtml" },
293
+ { "Parameter": "Name", "Method": "ImportFromPdf" },
294
+ { "Parameter": "Name", "Method": "CreatePresentationFromSource" },
295
+ { "Parameter": "Name", "Method": "CreatePresentationFromTemplate" },
296
+ { "Parameter": "Folder", "Method": "CreatePresentation" },
297
+ { "Parameter": "Folder", "Method": "ImportFromHtml" },
298
+ { "Parameter": "Folder", "Method": "ImportFromPdf" },
299
+ { "Parameter": "Folder", "Method": "CreatePresentationFromSource" },
300
+ { "Parameter": "Folder", "Method": "CreatePresentationFromTemplate" },
301
+ { "Parameter": "Password", "Method": "CreatePresentation" },
302
+ { "Parameter": "Password", "Method": "ImportFromHtml" },
303
+ { "Parameter": "Password", "Method": "CreatePresentationFromSource" },
304
+ { "Parameter": "Password", "Method": "CreatePresentationFromTemplate" },
305
+ { "Parameter": "Data", "Method": "CreatePresentation" },
282
306
  { "Parameter": "Files" },
307
+ { "Parameter": "Request" },
283
308
  { "Parameter": "WithSlides" },
284
309
  { "Parameter": "SectionName" },
310
+ { "Parameter": "AlignmentType" },
311
+ { "Parameter": "AlignToSlide" },
285
312
  { "Method": "GetDiscUsage" },
286
313
  { "Method": "GetFilesList" },
287
314
  { "Method": "GetFileVersions" },
@@ -299,38 +326,37 @@
299
326
  ],
300
327
  "Results": [
301
328
  { "Code": 200 },
302
- { "Code": 201, "Method": "PostSlidesDocument" },
303
- { "Code": 201, "Method": "PostSlidesDocumentFromHtml" },
304
- { "Code": 201, "Method": "PostSlidesDocumentFromSource" },
305
- { "Code": 201, "Method": "PostSlidesDocumentFromTemplate" },
306
- { "Code": 201, "Method": "PutNewPresentation" },
307
- { "Code": 201, "Method": "PostSlidesAdd" },
308
- { "Code": 201, "Method": "PostSlidesCopy" },
309
- { "Code": 201, "Method": "PostCopyLayoutSlideFromSourcePresentation" },
310
- { "Code": 201, "Method": "PostCopyMasterSlideFromSourcePresentation" },
311
- { "Code": 201, "Method": "PostAddNotesSlide" },
312
- { "Code": 201, "Method": "PostAddNewParagraph" },
313
- { "Code": 201, "Method": "PostAddNewPortion" },
314
- { "Code": 201, "Method": "PostAddNewShape" },
315
- { "Code": 201, "Method": "PostAddNewSubshapeParagraph" },
316
- { "Code": 201, "Method": "PostAddNewSubshapePortion" },
317
- { "Code": 201, "Method": "PostAddNewSubshape" },
318
- { "Code": 201, "Method": "PostChartSeries" },
319
- { "Code": 201, "Method": "PostChartCategory" },
320
- { "Code": 201, "Method": "PostChartDataPoint" },
321
- { "Code": 201, "Method": "PostNotesSlideAddNewParagraph" },
322
- { "Code": 201, "Method": "PostNotesSlideAddNewPortion" },
323
- { "Code": 201, "Method": "PostNotesSlideAddNewShape" },
324
- { "Code": 201, "Method": "PostSlideAnimationEffect" },
325
- { "Code": 201, "Method": "PostSlideAnimationInteractiveSequence" },
326
- { "Code": 201, "Method": "PostSlideAnimationInteractiveSequenceEffect" },
327
- { "Code": 201, "Method": "PostSection" },
329
+ { "Code": 201, "Method": "CreatePresentation" },
330
+ { "Code": 201, "Method": "ImportFromHtml" },
331
+ { "Code": 201, "Method": "CreatePresentationFromSource" },
332
+ { "Code": 201, "Method": "CreatePresentationFromTemplate" },
333
+ { "Code": 201, "Method": "CreateSlide" },
334
+ { "Code": 201, "Method": "CopySlide" },
335
+ { "Code": 201, "Method": "CopyLayoutSlide" },
336
+ { "Code": 201, "Method": "CopyMasterSlide" },
337
+ { "Code": 201, "Method": "CreateNotesSlide" },
338
+ { "Code": 201, "Method": "CreateParagraph" },
339
+ { "Code": 201, "Method": "CreatePortion" },
340
+ { "Code": 201, "Method": "CreateShape" },
341
+ { "Code": 201, "Method": "CreateSubshapeParagraph" },
342
+ { "Code": 201, "Method": "CreateSubshapePortion" },
343
+ { "Code": 201, "Method": "CreateSubshape" },
344
+ { "Code": 201, "Method": "CreateChartSeries" },
345
+ { "Code": 201, "Method": "CreateChartCategory" },
346
+ { "Code": 201, "Method": "CreateChartDataPoint" },
347
+ { "Code": 201, "Method": "CreateNotesSlideParagraph" },
348
+ { "Code": 201, "Method": "CreateNotesSlidePortion" },
349
+ { "Code": 201, "Method": "CreateNotesSlideShape" },
350
+ { "Code": 201, "Method": "CreateAnimationEffect" },
351
+ { "Code": 201, "Method": "CreateAnimationInteractiveSequence" },
352
+ { "Code": 201, "Method": "CreateAnimationInteractiveSequenceEffect" },
353
+ { "Code": 201, "Method": "CreateSection" },
328
354
  { "Code": 400, "Invalid": true },
329
355
  { "Code": 404, "Message" : "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "Name" },
330
356
  { "Code": 404, "Message" : "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "Folder" },
331
357
  { "Code": 404, "Message" : "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "CloneFrom" },
332
358
  { "Code": 404, "Message" : "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "Source" },
333
- { "Code": 404, "Message" : "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "Path", "Method": "DownloadFile" },
359
+ { "Code": 404, "Message" : "Not Found", "Parameter": "Path" },
334
360
  { "Code": 404, "Message": "The storage %v was not found or is not associated with the application.", "Parameter": "Storage" },
335
361
  { "Code": 404, "Message": "The storage %v was not found or is not associated with the application.", "Parameter": "StorageName" },
336
362
  { "Code": 404, "Message": "The storage %v was not found or is not associated with the application.", "Parameter": "SrcStorageName" },
@@ -338,14 +364,15 @@
338
364
  { "Code": 404, "Message": "The storage %v was not found or is not associated with the application.", "Parameter": "CloneFromStorage" },
339
365
  { "Code": 404, "Message": "The storage %v was not found or is not associated with the application.", "Parameter": "TemplateStorage" },
340
366
  { "Code": 404, "Message": "The storage %v was not found or is not associated with the application.", "Parameter": "SourceStorage" },
367
+ { "Code": 404, "Message": "Author with name %v not found", "Parameter": "Author" },
341
368
  { "Message": "Invalid password.", "Parameter": "Password" },
342
369
  { "Message": "Invalid password.", "Parameter": "CloneFromPassword" },
343
370
  { "Message": "Invalid password.", "Parameter": "SourcePassword" },
344
371
  { "Message": "Invalid password.", "Parameter": "TemplatePassword" },
345
372
  { "Message": "Invalid password.", "Parameter": "InputPassword" },
346
- { "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "DeleteSlidesCleanSlidesList" },
347
- { "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "PostSlidesAdd" },
348
- { "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "PutSlidesSlide" },
373
+ { "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "DeleteSlides" },
374
+ { "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "CreateSlide" },
375
+ { "Message": "Failed to load the presentation", "Parameter": "Password", "Method": "UpdateSlide" },
349
376
  { "Message": " is out of bounds. Valid index range is between ", "Parameter": "SlideIndex" },
350
377
  { "Message": " is out of bounds. Valid index range is between ", "Parameter": "Slides" },
351
378
  { "Message": " is out of bounds. Valid index range is between ", "Parameter": "ShapeIndex" },
@@ -375,10 +402,9 @@
375
402
  { "Message": "Invalid version id specified", "Parameter": "VersionId", "Method": "DeleteFile" },
376
403
  { "Message": "Invalid version id specified", "Parameter": "VersionId", "Method": "DownloadFile" },
377
404
  { "Message": "AmazonS3 Storage exception", "Parameter": "VersionId", "Method": "ObjectExists" },
378
- { "Message": "The HTTP resource that matches the request URI", "Parameter": "Path" },
379
- { "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "GetSlideShapes" },
405
+ { "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "GetShapes" },
380
406
  { "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "GetNotesSlideShapes" },
381
- { "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "DeleteSlideShapes" },
407
+ { "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "DeleteShapes" },
382
408
  { "Message": "Specified cast is not valid", "Parameter": "Path", "Method": "DeleteNotesSlideShapes" },
383
409
  { "Message" : "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "Path", "Method": "DownloadFile" },
384
410
  { "Code": 404, "Message": "AmazonS3 Storage exception: The specified key does not exist.", "Parameter": "SrcPath" },
@@ -387,43 +413,78 @@
387
413
  { "Message": " is out of bounds. Valid index range is between ", "Parameter": "From" },
388
414
  { "Message": " is out of bounds. Valid index range is between ", "Parameter": "To" },
389
415
  { "Message": " is not supported", "Parameter": "Format" },
390
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "NodeJS" },
391
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "Go" },
392
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "Python" },
393
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "Perl" },
394
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "Swift" },
395
- { "Message": " is not valid", "Parameter": "Format", "Method": "GetSlidesImageWithFormat", "Language": "CPP" },
396
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "NodeJS" },
397
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "NodeJS" },
398
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "NodeJS" },
399
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "NodeJS" },
400
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "Python" },
401
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "Python" },
402
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "Python" },
403
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "Python" },
404
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "Go" },
405
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "Go" },
406
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "Go" },
407
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "Go" },
408
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "Perl" },
409
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "Perl" },
410
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "Perl" },
411
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "Perl" },
412
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "Swift" },
413
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "Swift" },
414
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "Swift" },
415
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "Swift" },
416
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostShapeSaveAs", "Language": "CPP" },
417
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PostSubshapeSaveAs", "Language": "CPP" },
418
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutShapeSaveAs", "Language": "CPP" },
419
- { "Message": "does not support the API version", "Parameter": "Format", "Method": "PutSubshapeSaveAs", "Language": "CPP" },
416
+ { "Message": " is not supported", "Parameter": "OutPath" },
417
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "NodeJS" },
418
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "PHP" },
419
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "Go" },
420
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "Python" },
421
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "Perl" },
422
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "Swift" },
423
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImage", "Language": "CPP" },
424
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "NodeJS" },
425
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "PHP" },
426
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "Go" },
427
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "Python" },
428
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "Perl" },
429
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "Swift" },
430
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImageOnline", "Language": "CPP" },
431
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "NodeJS" },
432
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "PHP" },
433
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "Go" },
434
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "Python" },
435
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "Perl" },
436
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "Swift" },
437
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImages", "Language": "CPP" },
438
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "NodeJS" },
439
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "PHP" },
440
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "Go" },
441
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "Python" },
442
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "Perl" },
443
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "Swift" },
444
+ { "Message": " is not valid", "Parameter": "Format", "Method": "DownloadImagesOnline", "Language": "CPP" },
445
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShape", "Language": "NodeJS" },
446
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "NodeJS" },
447
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveShape", "Language": "NodeJS" },
448
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveSubshape", "Language": "NodeJS" },
449
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "NodeJS" },
450
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShape", "Language": "PHP" },
451
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "PHP" },
452
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveShape", "Language": "PHP" },
453
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveSubshape", "Language": "PHP" },
454
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "PHP" },
455
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShape", "Language": "Python" },
456
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "Python" },
457
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveShape", "Language": "Python" },
458
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveSubshape", "Language": "Python" },
459
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "Python" },
460
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShape", "Language": "Go" },
461
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "Go" },
462
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveShape", "Language": "Go" },
463
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveSubshape", "Language": "Go" },
464
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "Go" },
465
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShape", "Language": "Perl" },
466
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "Perl" },
467
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveShape", "Language": "Perl" },
468
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveSubshape", "Language": "Perl" },
469
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "Perl" },
470
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShape", "Language": "Swift" },
471
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "Swift" },
472
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveShape", "Language": "Swift" },
473
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveSubshape", "Language": "Swift" },
474
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "Swift" },
475
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShape", "Language": "CPP" },
476
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadSubshape", "Language": "CPP" },
477
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveShape", "Language": "CPP" },
478
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "SaveSubshape", "Language": "CPP" },
479
+ { "Code": 404, "Message": "Not Found", "Parameter": "Format", "Method": "DownloadShapeOnline", "Language": "CPP" },
480
+ { "Message": " is not supported for this operation", "Parameter": "Format", "Method": "SaveShapeOnline", "Language": "CPP" },
420
481
  { "Message": "Color must be in format #FF000000", "Parameter": "Color" },
421
482
  { "Code": 404, "Message": "Property %v does not exist.", "Parameter": "PropertyName" },
422
483
  { "Message": "Error parsing XML template data", "Parameter": "Data" },
423
- { "Message": "Can't read MSCDFileSystem.", "Parameter": "Data", "Language": "Python", "Method": "PostSlidesDocument" },
484
+ { "Message": "Can't read MSCDFileSystem.", "Parameter": "Data", "Language": "Python", "Method": "CreatePresentation" },
424
485
  { "Message": " required parameter", "Parameter": "DTO" },
425
- { "Message": "DTO expected", "Parameter": "DTO", "Method": "PostAddNewShape" },
426
- { "Message": "DTO expected", "Parameter": "DTO", "Method": "PostAddNewSubshape" },
486
+ { "Message": "DTO expected", "Parameter": "DTO", "Method": "CreateShape" },
487
+ { "Message": "DTO expected", "Parameter": "DTO", "Method": "CreateSubshape" },
427
488
  { "Message": " required parameter", "Parameter": "SlideDTO" },
428
489
  { "Message": " required parameter", "Parameter": "Background" },
429
490
  { "Message": " required parameter", "Parameter": "Pipeline" },
@@ -439,11 +500,19 @@
439
500
  { "Message": " required parameter", "Parameter": "Sections" },
440
501
  { "Message": " required parameter", "Parameter": "Document" },
441
502
  { "Message": " required parameter", "Parameter": "File" },
503
+ { "Message": "Failed to load the presentation", "Parameter": "Request", "Method": "MergeOnline" },
504
+ { "Message": "Failed to load the presentation", "Parameter": "Request", "Method": "MergeAndSaveOnline" },
505
+ { "Message": "Image data is not found", "Parameter": "Image" },
442
506
  { "Message": "Pdf expected", "Parameter": "Pdf" },
443
507
  { "Message": " is out of bounds. Valid index range is between ", "Parameter": "Sections", "Method": "DeleteSections" },
444
508
  { "Message": "Layout slide DTO must be not null and contain", "Parameter": "SlideDTO", "Language": "Swift" },
445
509
  { "Message": "Object reference not set to an instance of an object.", "Parameter": "Bounds" },
446
510
  { "Code": 409, "Message": " is not empty.", "Parameter": "Recursive" },
511
+ { "Message": "Error processing presentation ", "Code": 400, "Parameter": "Files" },
512
+ { "Message": "Presentation file is not found", "Parameter": "Image", "Method": "CreateImageWatermarkOnline", "Language": "PHP" },
513
+ { "Message": "Presentation file is not found", "Parameter": "Image", "Method": "CreateImageWatermarkOnline", "Language": "Python" },
514
+ { "Message": "Presentation file is not found", "Parameter": "Image", "Method": "CreateImageWatermarkOnline", "Language": "Ruby" },
515
+ { "Message": "Presentation file is not found", "Parameter": "Image", "Method": "CreateImageWatermarkOnline", "Language": "CPP" },
447
516
  { "Message": "An error has occurred.", "Code": 500, "Parameter": "Options" }
448
517
  ]
449
518
  }