cloudmersive-convert-api-client 2.1.0 → 2.1.5
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 +28 -4
- data/docs/ConvertDataApi.md +117 -3
- data/docs/ConvertDocumentApi.md +159 -0
- data/docs/DocxMetadataCustomProperty.md +13 -0
- data/docs/DocxSetCustomMetadataPropertiesRequest.md +10 -0
- data/docs/EditDocumentApi.md +110 -0
- data/docs/EditHtmlApi.md +60 -0
- data/docs/EditPdfApi.md +169 -0
- data/docs/GetDocxMetadataPropertiesResponse.md +16 -0
- data/docs/HtmlGetLinksResponse.md +9 -0
- data/docs/HtmlHyperlink.md +9 -0
- data/docs/HtmlSsrfThreatCheckResult.md +10 -0
- data/docs/HtmlThreatLink.md +9 -0
- data/docs/MergeDocumentApi.md +134 -0
- data/docs/ValidateDocumentApi.md +220 -0
- data/docs/ViewerToolsApi.md +8 -2
- data/lib/cloudmersive-convert-api-client.rb +7 -0
- data/lib/cloudmersive-convert-api-client/api/convert_data_api.rb +117 -4
- data/lib/cloudmersive-convert-api-client/api/convert_document_api.rb +156 -0
- data/lib/cloudmersive-convert-api-client/api/edit_document_api.rb +109 -0
- data/lib/cloudmersive-convert-api-client/api/edit_html_api.rb +55 -0
- data/lib/cloudmersive-convert-api-client/api/edit_pdf_api.rb +168 -0
- data/lib/cloudmersive-convert-api-client/api/merge_document_api.rb +148 -0
- data/lib/cloudmersive-convert-api-client/api/validate_document_api.rb +220 -0
- data/lib/cloudmersive-convert-api-client/api/viewer_tools_api.rb +6 -0
- data/lib/cloudmersive-convert-api-client/models/docx_metadata_custom_property.rb +236 -0
- data/lib/cloudmersive-convert-api-client/models/docx_set_custom_metadata_properties_request.rb +223 -0
- data/lib/cloudmersive-convert-api-client/models/get_docx_metadata_properties_response.rb +268 -0
- data/lib/cloudmersive-convert-api-client/models/html_get_links_response.rb +198 -0
- data/lib/cloudmersive-convert-api-client/models/html_hyperlink.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/html_ssrf_threat_check_result.rb +208 -0
- data/lib/cloudmersive-convert-api-client/models/html_threat_link.rb +196 -0
- data/lib/cloudmersive-convert-api-client/version.rb +1 -1
- data/spec/api/convert_data_api_spec.rb +26 -1
- data/spec/api/convert_document_api_spec.rb +35 -0
- data/spec/api/edit_document_api_spec.rb +24 -0
- data/spec/api/edit_html_api_spec.rb +14 -0
- data/spec/api/edit_pdf_api_spec.rb +37 -0
- data/spec/api/merge_document_api_spec.rb +34 -0
- data/spec/api/validate_document_api_spec.rb +48 -0
- data/spec/api/viewer_tools_api_spec.rb +2 -0
- data/spec/models/docx_metadata_custom_property_spec.rb +71 -0
- data/spec/models/docx_set_custom_metadata_properties_request_spec.rb +53 -0
- data/spec/models/get_docx_metadata_properties_response_spec.rb +89 -0
- data/spec/models/html_get_links_response_spec.rb +47 -0
- data/spec/models/html_hyperlink_spec.rb +47 -0
- data/spec/models/html_ssrf_threat_check_result_spec.rb +53 -0
- data/spec/models/html_threat_link_spec.rb +47 -0
- metadata +23 -2
@@ -0,0 +1,89 @@
|
|
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::GetDocxMetadataPropertiesResponse
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'GetDocxMetadataPropertiesResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::GetDocxMetadataPropertiesResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of GetDocxMetadataPropertiesResponse' do
|
31
|
+
it 'should create an instance of GetDocxMetadataPropertiesResponse' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::GetDocxMetadataPropertiesResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "company"' 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 "manager"' 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 "application_version"' 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 "word_count"' 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 "line_count"' 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
|
+
describe 'test attribute "paragraph_count"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
describe 'test attribute "page_count"' do
|
72
|
+
it 'should work' do
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
describe 'test attribute "custom_properties"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe 'test attribute "successful"' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
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::HtmlGetLinksResponse
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'HtmlGetLinksResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::HtmlGetLinksResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of HtmlGetLinksResponse' do
|
31
|
+
it 'should create an instance of HtmlGetLinksResponse' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlGetLinksResponse)
|
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 "links"' 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::HtmlHyperlink
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'HtmlHyperlink' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::HtmlHyperlink.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of HtmlHyperlink' do
|
31
|
+
it 'should create an instance of HtmlHyperlink' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlHyperlink)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "anchortext"' 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 "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,53 @@
|
|
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::HtmlSsrfThreatCheckResult
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'HtmlSsrfThreatCheckResult' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::HtmlSsrfThreatCheckResult.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of HtmlSsrfThreatCheckResult' do
|
31
|
+
it 'should create an instance of HtmlSsrfThreatCheckResult' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlSsrfThreatCheckResult)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "is_valid"' 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 "is_threat"' 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 "threat_links"' 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
|
+
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::HtmlThreatLink
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'HtmlThreatLink' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::HtmlThreatLink.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of HtmlThreatLink' do
|
31
|
+
it 'should create an instance of HtmlThreatLink' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlThreatLink)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "link_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 "threat_level"' 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.
|
4
|
+
version: 2.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cloudmersive
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -257,12 +257,14 @@ files:
|
|
257
257
|
- "./docs/DocxInsertCommentOnParagraphRequest.md"
|
258
258
|
- "./docs/DocxInsertImageRequest.md"
|
259
259
|
- "./docs/DocxInsertImageResponse.md"
|
260
|
+
- "./docs/DocxMetadataCustomProperty.md"
|
260
261
|
- "./docs/DocxPage.md"
|
261
262
|
- "./docs/DocxParagraph.md"
|
262
263
|
- "./docs/DocxRemoveObjectRequest.md"
|
263
264
|
- "./docs/DocxRemoveObjectResponse.md"
|
264
265
|
- "./docs/DocxRun.md"
|
265
266
|
- "./docs/DocxSection.md"
|
267
|
+
- "./docs/DocxSetCustomMetadataPropertiesRequest.md"
|
266
268
|
- "./docs/DocxSetFooterAddPageNumberRequest.md"
|
267
269
|
- "./docs/DocxSetFooterRequest.md"
|
268
270
|
- "./docs/DocxSetFooterResponse.md"
|
@@ -308,6 +310,7 @@ files:
|
|
308
310
|
- "./docs/GetDocxHeadersAndFootersResponse.md"
|
309
311
|
- "./docs/GetDocxImagesRequest.md"
|
310
312
|
- "./docs/GetDocxImagesResponse.md"
|
313
|
+
- "./docs/GetDocxMetadataPropertiesResponse.md"
|
311
314
|
- "./docs/GetDocxPagesRequest.md"
|
312
315
|
- "./docs/GetDocxPagesResponse.md"
|
313
316
|
- "./docs/GetDocxSectionsRequest.md"
|
@@ -339,10 +342,14 @@ files:
|
|
339
342
|
- "./docs/GetXlsxStylesResponse.md"
|
340
343
|
- "./docs/GetXlsxWorksheetsRequest.md"
|
341
344
|
- "./docs/GetXlsxWorksheetsResponse.md"
|
345
|
+
- "./docs/HtmlGetLinksResponse.md"
|
346
|
+
- "./docs/HtmlHyperlink.md"
|
342
347
|
- "./docs/HtmlMdResult.md"
|
348
|
+
- "./docs/HtmlSsrfThreatCheckResult.md"
|
343
349
|
- "./docs/HtmlTemplateApplicationRequest.md"
|
344
350
|
- "./docs/HtmlTemplateApplicationResponse.md"
|
345
351
|
- "./docs/HtmlTemplateOperation.md"
|
352
|
+
- "./docs/HtmlThreatLink.md"
|
346
353
|
- "./docs/HtmlToOfficeRequest.md"
|
347
354
|
- "./docs/HtmlToPdfRequest.md"
|
348
355
|
- "./docs/HtmlToPngRequest.md"
|
@@ -528,12 +535,14 @@ files:
|
|
528
535
|
- "./lib/cloudmersive-convert-api-client/models/docx_insert_comment_on_paragraph_request.rb"
|
529
536
|
- "./lib/cloudmersive-convert-api-client/models/docx_insert_image_request.rb"
|
530
537
|
- "./lib/cloudmersive-convert-api-client/models/docx_insert_image_response.rb"
|
538
|
+
- "./lib/cloudmersive-convert-api-client/models/docx_metadata_custom_property.rb"
|
531
539
|
- "./lib/cloudmersive-convert-api-client/models/docx_page.rb"
|
532
540
|
- "./lib/cloudmersive-convert-api-client/models/docx_paragraph.rb"
|
533
541
|
- "./lib/cloudmersive-convert-api-client/models/docx_remove_object_request.rb"
|
534
542
|
- "./lib/cloudmersive-convert-api-client/models/docx_remove_object_response.rb"
|
535
543
|
- "./lib/cloudmersive-convert-api-client/models/docx_run.rb"
|
536
544
|
- "./lib/cloudmersive-convert-api-client/models/docx_section.rb"
|
545
|
+
- "./lib/cloudmersive-convert-api-client/models/docx_set_custom_metadata_properties_request.rb"
|
537
546
|
- "./lib/cloudmersive-convert-api-client/models/docx_set_footer_add_page_number_request.rb"
|
538
547
|
- "./lib/cloudmersive-convert-api-client/models/docx_set_footer_request.rb"
|
539
548
|
- "./lib/cloudmersive-convert-api-client/models/docx_set_footer_response.rb"
|
@@ -575,6 +584,7 @@ files:
|
|
575
584
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_headers_and_footers_response.rb"
|
576
585
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_images_request.rb"
|
577
586
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_images_response.rb"
|
587
|
+
- "./lib/cloudmersive-convert-api-client/models/get_docx_metadata_properties_response.rb"
|
578
588
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_pages_request.rb"
|
579
589
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_pages_response.rb"
|
580
590
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_sections_request.rb"
|
@@ -606,10 +616,14 @@ files:
|
|
606
616
|
- "./lib/cloudmersive-convert-api-client/models/get_xlsx_styles_response.rb"
|
607
617
|
- "./lib/cloudmersive-convert-api-client/models/get_xlsx_worksheets_request.rb"
|
608
618
|
- "./lib/cloudmersive-convert-api-client/models/get_xlsx_worksheets_response.rb"
|
619
|
+
- "./lib/cloudmersive-convert-api-client/models/html_get_links_response.rb"
|
620
|
+
- "./lib/cloudmersive-convert-api-client/models/html_hyperlink.rb"
|
609
621
|
- "./lib/cloudmersive-convert-api-client/models/html_md_result.rb"
|
622
|
+
- "./lib/cloudmersive-convert-api-client/models/html_ssrf_threat_check_result.rb"
|
610
623
|
- "./lib/cloudmersive-convert-api-client/models/html_template_application_request.rb"
|
611
624
|
- "./lib/cloudmersive-convert-api-client/models/html_template_application_response.rb"
|
612
625
|
- "./lib/cloudmersive-convert-api-client/models/html_template_operation.rb"
|
626
|
+
- "./lib/cloudmersive-convert-api-client/models/html_threat_link.rb"
|
613
627
|
- "./lib/cloudmersive-convert-api-client/models/html_to_office_request.rb"
|
614
628
|
- "./lib/cloudmersive-convert-api-client/models/html_to_pdf_request.rb"
|
615
629
|
- "./lib/cloudmersive-convert-api-client/models/html_to_png_request.rb"
|
@@ -787,12 +801,14 @@ files:
|
|
787
801
|
- "./spec/models/docx_insert_comment_on_paragraph_request_spec.rb"
|
788
802
|
- "./spec/models/docx_insert_image_request_spec.rb"
|
789
803
|
- "./spec/models/docx_insert_image_response_spec.rb"
|
804
|
+
- "./spec/models/docx_metadata_custom_property_spec.rb"
|
790
805
|
- "./spec/models/docx_page_spec.rb"
|
791
806
|
- "./spec/models/docx_paragraph_spec.rb"
|
792
807
|
- "./spec/models/docx_remove_object_request_spec.rb"
|
793
808
|
- "./spec/models/docx_remove_object_response_spec.rb"
|
794
809
|
- "./spec/models/docx_run_spec.rb"
|
795
810
|
- "./spec/models/docx_section_spec.rb"
|
811
|
+
- "./spec/models/docx_set_custom_metadata_properties_request_spec.rb"
|
796
812
|
- "./spec/models/docx_set_footer_add_page_number_request_spec.rb"
|
797
813
|
- "./spec/models/docx_set_footer_request_spec.rb"
|
798
814
|
- "./spec/models/docx_set_footer_response_spec.rb"
|
@@ -834,6 +850,7 @@ files:
|
|
834
850
|
- "./spec/models/get_docx_headers_and_footers_response_spec.rb"
|
835
851
|
- "./spec/models/get_docx_images_request_spec.rb"
|
836
852
|
- "./spec/models/get_docx_images_response_spec.rb"
|
853
|
+
- "./spec/models/get_docx_metadata_properties_response_spec.rb"
|
837
854
|
- "./spec/models/get_docx_pages_request_spec.rb"
|
838
855
|
- "./spec/models/get_docx_pages_response_spec.rb"
|
839
856
|
- "./spec/models/get_docx_sections_request_spec.rb"
|
@@ -865,10 +882,14 @@ files:
|
|
865
882
|
- "./spec/models/get_xlsx_styles_response_spec.rb"
|
866
883
|
- "./spec/models/get_xlsx_worksheets_request_spec.rb"
|
867
884
|
- "./spec/models/get_xlsx_worksheets_response_spec.rb"
|
885
|
+
- "./spec/models/html_get_links_response_spec.rb"
|
886
|
+
- "./spec/models/html_hyperlink_spec.rb"
|
868
887
|
- "./spec/models/html_md_result_spec.rb"
|
888
|
+
- "./spec/models/html_ssrf_threat_check_result_spec.rb"
|
869
889
|
- "./spec/models/html_template_application_request_spec.rb"
|
870
890
|
- "./spec/models/html_template_application_response_spec.rb"
|
871
891
|
- "./spec/models/html_template_operation_spec.rb"
|
892
|
+
- "./spec/models/html_threat_link_spec.rb"
|
872
893
|
- "./spec/models/html_to_office_request_spec.rb"
|
873
894
|
- "./spec/models/html_to_pdf_request_spec.rb"
|
874
895
|
- "./spec/models/html_to_png_request_spec.rb"
|