cloudmersive-convert-api-client 2.1.8 → 2.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +26 -7
- data/docs/DocumentEditingEditSession.md +9 -0
- data/docs/DocumentTransformEditSession.md +9 -0
- data/docs/DocxTableTableFillRequest.md +12 -0
- data/docs/DocxTableTableFillTableCell.md +9 -0
- data/docs/DocxTableTableFillTableRow.md +8 -0
- data/docs/EditDocumentApi.md +58 -3
- data/docs/EditHtmlApi.md +418 -0
- data/docs/EditPdfApi.md +6 -2
- data/docs/HtmlGetLanguageResult.md +9 -0
- data/docs/HtmlGetRelCanonicalUrlResult.md +9 -0
- data/docs/HtmlGetSitemapUrlResult.md +9 -0
- data/docs/MergeDocumentApi.md +2 -2
- data/docs/TransformDocumentApi.md +182 -6
- data/lib/cloudmersive-convert-api-client.rb +8 -0
- data/lib/cloudmersive-convert-api-client/api/edit_document_api.rb +56 -2
- data/lib/cloudmersive-convert-api-client/api/edit_html_api.rb +392 -0
- data/lib/cloudmersive-convert-api-client/api/edit_pdf_api.rb +3 -0
- data/lib/cloudmersive-convert-api-client/api/merge_document_api.rb +3 -3
- data/lib/cloudmersive-convert-api-client/api/transform_document_api.rb +181 -4
- data/lib/cloudmersive-convert-api-client/models/document_editing_edit_session.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/document_transform_edit_session.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/docx_table_table_fill_request.rb +243 -0
- data/lib/cloudmersive-convert-api-client/models/docx_table_table_fill_table_cell.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/docx_table_table_fill_table_row.rb +188 -0
- data/lib/cloudmersive-convert-api-client/models/html_get_language_result.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/html_get_rel_canonical_url_result.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/html_get_sitemap_url_result.rb +196 -0
- data/lib/cloudmersive-convert-api-client/version.rb +1 -1
- data/spec/api/edit_document_api_spec.rb +13 -1
- data/spec/api/edit_html_api_spec.rb +95 -0
- data/spec/api/edit_pdf_api_spec.rb +1 -0
- data/spec/api/merge_document_api_spec.rb +1 -1
- data/spec/api/transform_document_api_spec.rb +42 -2
- data/spec/models/document_editing_edit_session_spec.rb +47 -0
- data/spec/models/document_transform_edit_session_spec.rb +47 -0
- data/spec/models/docx_table_table_fill_request_spec.rb +65 -0
- data/spec/models/docx_table_table_fill_table_cell_spec.rb +47 -0
- data/spec/models/docx_table_table_fill_table_row_spec.rb +41 -0
- data/spec/models/html_get_language_result_spec.rb +47 -0
- data/spec/models/html_get_rel_canonical_url_result_spec.rb +47 -0
- data/spec/models/html_get_sitemap_url_result_spec.rb +47 -0
- metadata +26 -2
@@ -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::DocumentTransformEditSession
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'DocumentTransformEditSession' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::DocumentTransformEditSession.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of DocumentTransformEditSession' do
|
31
|
+
it 'should create an instance of DocumentTransformEditSession' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::DocumentTransformEditSession)
|
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 "edit_session_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,65 @@
|
|
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::DocxTableTableFillRequest
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'DocxTableTableFillRequest' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::DocxTableTableFillRequest.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of DocxTableTableFillRequest' do
|
31
|
+
it 'should create an instance of DocxTableTableFillRequest' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::DocxTableTableFillRequest)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "input_file_url"' 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 "input_file_data"' 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
|
+
describe 'test attribute "table_start_tag"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "table_end_tag"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "data_to_fill_in"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
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::DocxTableTableFillTableCell
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'DocxTableTableFillTableCell' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::DocxTableTableFillTableCell.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of DocxTableTableFillTableCell' do
|
31
|
+
it 'should create an instance of DocxTableTableFillTableCell' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::DocxTableTableFillTableCell)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "target_tag"' 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 "replacement_value"' 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,41 @@
|
|
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::DocxTableTableFillTableRow
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'DocxTableTableFillTableRow' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::DocxTableTableFillTableRow.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of DocxTableTableFillTableRow' do
|
31
|
+
it 'should create an instance of DocxTableTableFillTableRow' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::DocxTableTableFillTableRow)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "cells"' 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
|
+
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::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.
|
4
|
+
version: 2.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cloudmersive
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -246,6 +246,8 @@ files:
|
|
246
246
|
- "./docs/DetectLineEndingsResponse.md"
|
247
247
|
- "./docs/DisableSharedWorkbookRequest.md"
|
248
248
|
- "./docs/DisableSharedWorkbookResponse.md"
|
249
|
+
- "./docs/DocumentEditingEditSession.md"
|
250
|
+
- "./docs/DocumentTransformEditSession.md"
|
249
251
|
- "./docs/DocumentValidationError.md"
|
250
252
|
- "./docs/DocumentValidationResult.md"
|
251
253
|
- "./docs/DocxBody.md"
|
@@ -274,6 +276,9 @@ files:
|
|
274
276
|
- "./docs/DocxTable.md"
|
275
277
|
- "./docs/DocxTableCell.md"
|
276
278
|
- "./docs/DocxTableRow.md"
|
279
|
+
- "./docs/DocxTableTableFillRequest.md"
|
280
|
+
- "./docs/DocxTableTableFillTableCell.md"
|
281
|
+
- "./docs/DocxTableTableFillTableRow.md"
|
277
282
|
- "./docs/DocxTemplateApplicationRequest.md"
|
278
283
|
- "./docs/DocxTemplateOperation.md"
|
279
284
|
- "./docs/DocxText.md"
|
@@ -343,7 +348,10 @@ files:
|
|
343
348
|
- "./docs/GetXlsxStylesResponse.md"
|
344
349
|
- "./docs/GetXlsxWorksheetsRequest.md"
|
345
350
|
- "./docs/GetXlsxWorksheetsResponse.md"
|
351
|
+
- "./docs/HtmlGetLanguageResult.md"
|
346
352
|
- "./docs/HtmlGetLinksResponse.md"
|
353
|
+
- "./docs/HtmlGetRelCanonicalUrlResult.md"
|
354
|
+
- "./docs/HtmlGetSitemapUrlResult.md"
|
347
355
|
- "./docs/HtmlHyperlink.md"
|
348
356
|
- "./docs/HtmlMdResult.md"
|
349
357
|
- "./docs/HtmlSsrfThreatCheckResult.md"
|
@@ -526,6 +534,8 @@ files:
|
|
526
534
|
- "./lib/cloudmersive-convert-api-client/models/detect_line_endings_response.rb"
|
527
535
|
- "./lib/cloudmersive-convert-api-client/models/disable_shared_workbook_request.rb"
|
528
536
|
- "./lib/cloudmersive-convert-api-client/models/disable_shared_workbook_response.rb"
|
537
|
+
- "./lib/cloudmersive-convert-api-client/models/document_editing_edit_session.rb"
|
538
|
+
- "./lib/cloudmersive-convert-api-client/models/document_transform_edit_session.rb"
|
529
539
|
- "./lib/cloudmersive-convert-api-client/models/document_validation_error.rb"
|
530
540
|
- "./lib/cloudmersive-convert-api-client/models/document_validation_result.rb"
|
531
541
|
- "./lib/cloudmersive-convert-api-client/models/docx_body.rb"
|
@@ -554,6 +564,9 @@ files:
|
|
554
564
|
- "./lib/cloudmersive-convert-api-client/models/docx_table.rb"
|
555
565
|
- "./lib/cloudmersive-convert-api-client/models/docx_table_cell.rb"
|
556
566
|
- "./lib/cloudmersive-convert-api-client/models/docx_table_row.rb"
|
567
|
+
- "./lib/cloudmersive-convert-api-client/models/docx_table_table_fill_request.rb"
|
568
|
+
- "./lib/cloudmersive-convert-api-client/models/docx_table_table_fill_table_cell.rb"
|
569
|
+
- "./lib/cloudmersive-convert-api-client/models/docx_table_table_fill_table_row.rb"
|
557
570
|
- "./lib/cloudmersive-convert-api-client/models/docx_template_application_request.rb"
|
558
571
|
- "./lib/cloudmersive-convert-api-client/models/docx_template_operation.rb"
|
559
572
|
- "./lib/cloudmersive-convert-api-client/models/docx_text.rb"
|
@@ -619,7 +632,10 @@ files:
|
|
619
632
|
- "./lib/cloudmersive-convert-api-client/models/get_xlsx_styles_response.rb"
|
620
633
|
- "./lib/cloudmersive-convert-api-client/models/get_xlsx_worksheets_request.rb"
|
621
634
|
- "./lib/cloudmersive-convert-api-client/models/get_xlsx_worksheets_response.rb"
|
635
|
+
- "./lib/cloudmersive-convert-api-client/models/html_get_language_result.rb"
|
622
636
|
- "./lib/cloudmersive-convert-api-client/models/html_get_links_response.rb"
|
637
|
+
- "./lib/cloudmersive-convert-api-client/models/html_get_rel_canonical_url_result.rb"
|
638
|
+
- "./lib/cloudmersive-convert-api-client/models/html_get_sitemap_url_result.rb"
|
623
639
|
- "./lib/cloudmersive-convert-api-client/models/html_hyperlink.rb"
|
624
640
|
- "./lib/cloudmersive-convert-api-client/models/html_md_result.rb"
|
625
641
|
- "./lib/cloudmersive-convert-api-client/models/html_ssrf_threat_check_result.rb"
|
@@ -794,6 +810,8 @@ files:
|
|
794
810
|
- "./spec/models/detect_line_endings_response_spec.rb"
|
795
811
|
- "./spec/models/disable_shared_workbook_request_spec.rb"
|
796
812
|
- "./spec/models/disable_shared_workbook_response_spec.rb"
|
813
|
+
- "./spec/models/document_editing_edit_session_spec.rb"
|
814
|
+
- "./spec/models/document_transform_edit_session_spec.rb"
|
797
815
|
- "./spec/models/document_validation_error_spec.rb"
|
798
816
|
- "./spec/models/document_validation_result_spec.rb"
|
799
817
|
- "./spec/models/docx_body_spec.rb"
|
@@ -822,6 +840,9 @@ files:
|
|
822
840
|
- "./spec/models/docx_table_cell_spec.rb"
|
823
841
|
- "./spec/models/docx_table_row_spec.rb"
|
824
842
|
- "./spec/models/docx_table_spec.rb"
|
843
|
+
- "./spec/models/docx_table_table_fill_request_spec.rb"
|
844
|
+
- "./spec/models/docx_table_table_fill_table_cell_spec.rb"
|
845
|
+
- "./spec/models/docx_table_table_fill_table_row_spec.rb"
|
825
846
|
- "./spec/models/docx_template_application_request_spec.rb"
|
826
847
|
- "./spec/models/docx_template_operation_spec.rb"
|
827
848
|
- "./spec/models/docx_text_spec.rb"
|
@@ -887,7 +908,10 @@ files:
|
|
887
908
|
- "./spec/models/get_xlsx_styles_response_spec.rb"
|
888
909
|
- "./spec/models/get_xlsx_worksheets_request_spec.rb"
|
889
910
|
- "./spec/models/get_xlsx_worksheets_response_spec.rb"
|
911
|
+
- "./spec/models/html_get_language_result_spec.rb"
|
890
912
|
- "./spec/models/html_get_links_response_spec.rb"
|
913
|
+
- "./spec/models/html_get_rel_canonical_url_result_spec.rb"
|
914
|
+
- "./spec/models/html_get_sitemap_url_result_spec.rb"
|
891
915
|
- "./spec/models/html_hyperlink_spec.rb"
|
892
916
|
- "./spec/models/html_md_result_spec.rb"
|
893
917
|
- "./spec/models/html_ssrf_threat_check_result_spec.rb"
|