cloudmersive-convert-api-client 2.1.8 → 2.1.9

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.
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.14
11
11
  =end
12
12
 
13
13
  module CloudmersiveConvertApiClient
14
- VERSION = '2.1.8'
14
+ VERSION = '2.1.9'
15
15
  end
@@ -32,6 +32,20 @@ describe 'EditHtmlApi' do
32
32
  end
33
33
  end
34
34
 
35
+ # unit tests for edit_html_html_append_header_tag
36
+ # Append an HTML tag to the HEAD section of an HTML Document
37
+ # Appends an HTML tag to the HEAD section of an HTML document.
38
+ # @param html_tag The HTML tag to append.
39
+ # @param [Hash] opts the optional parameters
40
+ # @option opts [File] :input_file Optional: Input file to perform the operation on.
41
+ # @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
42
+ # @return [String]
43
+ describe 'edit_html_html_append_header_tag test' do
44
+ it 'should work' do
45
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
46
+ end
47
+ end
48
+
35
49
  # unit tests for edit_html_html_append_heading
36
50
  # Append a Heading to an HTML Document
37
51
  # Appends a heading to the end of an HTML document.
@@ -111,6 +125,19 @@ describe 'EditHtmlApi' do
111
125
  end
112
126
  end
113
127
 
128
+ # unit tests for edit_html_html_get_language
129
+ # Gets the language for the HTML document
130
+ # Retrieves the language code (e.g. \"en\" or \"de\") of an HTML document.
131
+ # @param [Hash] opts the optional parameters
132
+ # @option opts [File] :input_file Optional: Input file to perform the operation on.
133
+ # @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
134
+ # @return [HtmlGetLanguageResult]
135
+ describe 'edit_html_html_get_language test' do
136
+ it 'should work' do
137
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
138
+ end
139
+ end
140
+
114
141
  # unit tests for edit_html_html_get_links
115
142
  # Extract resolved link URLs from HTML File
116
143
  # Extracts the resolved link URLs, fully-qualified if possible, from an input HTML file.
@@ -125,4 +152,72 @@ describe 'EditHtmlApi' do
125
152
  end
126
153
  end
127
154
 
155
+ # unit tests for edit_html_html_get_rel_canonical
156
+ # Gets the rel canonical URL for the HTML document
157
+ # Gets the rel canonical URL of an HTML document.
158
+ # @param [Hash] opts the optional parameters
159
+ # @option opts [File] :input_file Optional: Input file to perform the operation on.
160
+ # @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
161
+ # @return [HtmlGetRelCanonicalUrlResult]
162
+ describe 'edit_html_html_get_rel_canonical test' do
163
+ it 'should work' do
164
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
165
+ end
166
+ end
167
+
168
+ # unit tests for edit_html_html_get_sitemap
169
+ # Gets the sitemap URL for the HTML document
170
+ # Gets the sitemap link URL of an HTML document.
171
+ # @param [Hash] opts the optional parameters
172
+ # @option opts [File] :input_file Optional: Input file to perform the operation on.
173
+ # @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
174
+ # @return [HtmlGetSitemapUrlResult]
175
+ describe 'edit_html_html_get_sitemap test' do
176
+ it 'should work' do
177
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
178
+ end
179
+ end
180
+
181
+ # unit tests for edit_html_html_set_language
182
+ # Sets the language for the HTML document
183
+ # Sets the language code of an HTML document.
184
+ # @param language_code The HTML langauge code to set.
185
+ # @param [Hash] opts the optional parameters
186
+ # @option opts [File] :input_file Optional: Input file to perform the operation on.
187
+ # @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
188
+ # @return [String]
189
+ describe 'edit_html_html_set_language test' do
190
+ it 'should work' do
191
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
192
+ end
193
+ end
194
+
195
+ # unit tests for edit_html_html_set_rel_canonical
196
+ # Sets the rel canonical URL for the HTML document
197
+ # Sets the rel canonical URL of an HTML document. This is useful for telling search engines and other indexers which pages are duplicates of eachother; any pages with the rel=canonical tag will be treated as duplicates of the canonical URL.
198
+ # @param canonical_url The HTML canonical URL to set.
199
+ # @param [Hash] opts the optional parameters
200
+ # @option opts [File] :input_file Optional: Input file to perform the operation on.
201
+ # @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
202
+ # @return [String]
203
+ describe 'edit_html_html_set_rel_canonical test' do
204
+ it 'should work' do
205
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
206
+ end
207
+ end
208
+
209
+ # unit tests for edit_html_html_set_sitemap_url
210
+ # Sets the sitemap URL for the HTML document
211
+ # Sets the sitemap URL of an HTML document.
212
+ # @param sitemap_url The HTML sitemap URL to set.
213
+ # @param [Hash] opts the optional parameters
214
+ # @option opts [File] :input_file Optional: Input file to perform the operation on.
215
+ # @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
216
+ # @return [String]
217
+ describe 'edit_html_html_set_sitemap_url test' do
218
+ it 'should work' do
219
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
220
+ end
221
+ end
222
+
128
223
  end
@@ -193,6 +193,7 @@ describe 'EditPdfApi' do
193
193
  # Reduces the file size and optimizes the content of a PDF to minimize its file size.
194
194
  # @param input_file Input file to perform the operation on.
195
195
  # @param [Hash] opts the optional parameters
196
+ # @option opts [Float] :quality Quality level for the images in the PDF, ranging from 0.0 (low quality) to 1.0 (high quality); default is 0.3
196
197
  # @return [String]
197
198
  describe 'edit_pdf_reduce_file_size test' do
198
199
  it 'should work' do
@@ -72,7 +72,7 @@ describe 'MergeDocumentApi' do
72
72
  # @param input_file1 First input file to perform the operation on.
73
73
  # @param input_file2 Second input file to perform the operation on (more than 2 can be supplied).
74
74
  # @param [Hash] opts the optional parameters
75
- # @return [Object]
75
+ # @return [String]
76
76
  describe 'merge_document_html test' do
77
77
  it 'should work' do
78
78
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #convertapi
3
+
4
+ #Convert API lets you effortlessly convert file formats and types.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveConvertApiClient::HtmlGetLanguageResult
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'HtmlGetLanguageResult' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveConvertApiClient::HtmlGetLanguageResult.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of HtmlGetLanguageResult' do
31
+ it 'should create an instance of HtmlGetLanguageResult' do
32
+ expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlGetLanguageResult)
33
+ end
34
+ end
35
+ describe 'test attribute "successful"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "language_code"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #convertapi
3
+
4
+ #Convert API lets you effortlessly convert file formats and types.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveConvertApiClient::HtmlGetRelCanonicalUrlResult
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'HtmlGetRelCanonicalUrlResult' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveConvertApiClient::HtmlGetRelCanonicalUrlResult.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of HtmlGetRelCanonicalUrlResult' do
31
+ it 'should create an instance of HtmlGetRelCanonicalUrlResult' do
32
+ expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlGetRelCanonicalUrlResult)
33
+ end
34
+ end
35
+ describe 'test attribute "successful"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "canonical_url"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #convertapi
3
+
4
+ #Convert API lets you effortlessly convert file formats and types.
5
+
6
+ OpenAPI spec version: v1
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.4.14
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for CloudmersiveConvertApiClient::HtmlGetSitemapUrlResult
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'HtmlGetSitemapUrlResult' do
21
+ before do
22
+ # run before each test
23
+ @instance = CloudmersiveConvertApiClient::HtmlGetSitemapUrlResult.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of HtmlGetSitemapUrlResult' do
31
+ it 'should create an instance of HtmlGetSitemapUrlResult' do
32
+ expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlGetSitemapUrlResult)
33
+ end
34
+ end
35
+ describe 'test attribute "successful"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "canonical_url"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudmersive-convert-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.8
4
+ version: 2.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloudmersive
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-27 00:00:00.000000000 Z
11
+ date: 2021-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -343,7 +343,10 @@ files:
343
343
  - "./docs/GetXlsxStylesResponse.md"
344
344
  - "./docs/GetXlsxWorksheetsRequest.md"
345
345
  - "./docs/GetXlsxWorksheetsResponse.md"
346
+ - "./docs/HtmlGetLanguageResult.md"
346
347
  - "./docs/HtmlGetLinksResponse.md"
348
+ - "./docs/HtmlGetRelCanonicalUrlResult.md"
349
+ - "./docs/HtmlGetSitemapUrlResult.md"
347
350
  - "./docs/HtmlHyperlink.md"
348
351
  - "./docs/HtmlMdResult.md"
349
352
  - "./docs/HtmlSsrfThreatCheckResult.md"
@@ -619,7 +622,10 @@ files:
619
622
  - "./lib/cloudmersive-convert-api-client/models/get_xlsx_styles_response.rb"
620
623
  - "./lib/cloudmersive-convert-api-client/models/get_xlsx_worksheets_request.rb"
621
624
  - "./lib/cloudmersive-convert-api-client/models/get_xlsx_worksheets_response.rb"
625
+ - "./lib/cloudmersive-convert-api-client/models/html_get_language_result.rb"
622
626
  - "./lib/cloudmersive-convert-api-client/models/html_get_links_response.rb"
627
+ - "./lib/cloudmersive-convert-api-client/models/html_get_rel_canonical_url_result.rb"
628
+ - "./lib/cloudmersive-convert-api-client/models/html_get_sitemap_url_result.rb"
623
629
  - "./lib/cloudmersive-convert-api-client/models/html_hyperlink.rb"
624
630
  - "./lib/cloudmersive-convert-api-client/models/html_md_result.rb"
625
631
  - "./lib/cloudmersive-convert-api-client/models/html_ssrf_threat_check_result.rb"
@@ -887,7 +893,10 @@ files:
887
893
  - "./spec/models/get_xlsx_styles_response_spec.rb"
888
894
  - "./spec/models/get_xlsx_worksheets_request_spec.rb"
889
895
  - "./spec/models/get_xlsx_worksheets_response_spec.rb"
896
+ - "./spec/models/html_get_language_result_spec.rb"
890
897
  - "./spec/models/html_get_links_response_spec.rb"
898
+ - "./spec/models/html_get_rel_canonical_url_result_spec.rb"
899
+ - "./spec/models/html_get_sitemap_url_result_spec.rb"
891
900
  - "./spec/models/html_hyperlink_spec.rb"
892
901
  - "./spec/models/html_md_result_spec.rb"
893
902
  - "./spec/models/html_ssrf_threat_check_result_spec.rb"