cloudmersive-convert-api-client 1.6.5 → 1.6.6
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 +15 -4
- data/docs/DocxComment.md +16 -0
- data/docs/DocxInsertCommentOnParagraphRequest.md +11 -0
- data/docs/DocxTopLevelComment.md +14 -0
- data/docs/EditDocumentApi.md +165 -0
- data/docs/GetDocxCommentsHierarchicalResponse.md +10 -0
- data/docs/GetDocxCommentsResponse.md +10 -0
- data/docs/GetDocxGetCommentsHierarchicalRequest.md +9 -0
- data/docs/GetDocxGetCommentsRequest.md +9 -0
- data/docs/GetDocxPagesResponse.md +3 -3
- data/docs/InsertDocxCommentOnParagraphResponse.md +9 -0
- data/lib/cloudmersive-convert-api-client.rb +8 -0
- data/lib/cloudmersive-convert-api-client/api/edit_document_api.rb +165 -0
- data/lib/cloudmersive-convert-api-client/models/docx_comment.rb +269 -0
- data/lib/cloudmersive-convert-api-client/models/docx_insert_comment_on_paragraph_request.rb +235 -0
- data/lib/cloudmersive-convert-api-client/models/docx_page.rb +1 -1
- data/lib/cloudmersive-convert-api-client/models/docx_top_level_comment.rb +251 -0
- data/lib/cloudmersive-convert-api-client/models/get_docx_comments_hierarchical_response.rb +211 -0
- data/lib/cloudmersive-convert-api-client/models/get_docx_comments_response.rb +211 -0
- data/lib/cloudmersive-convert-api-client/models/get_docx_get_comments_hierarchical_request.rb +215 -0
- data/lib/cloudmersive-convert-api-client/models/get_docx_get_comments_request.rb +215 -0
- data/lib/cloudmersive-convert-api-client/models/get_docx_pages_response.rb +4 -1
- data/lib/cloudmersive-convert-api-client/models/insert_docx_comment_on_paragraph_response.rb +199 -0
- data/lib/cloudmersive-convert-api-client/version.rb +1 -1
- data/spec/api/edit_document_api_spec.rb +36 -0
- data/spec/models/docx_comment_spec.rb +90 -0
- data/spec/models/docx_insert_comment_on_paragraph_request_spec.rb +60 -0
- data/spec/models/docx_top_level_comment_spec.rb +78 -0
- data/spec/models/get_docx_comments_hierarchical_response_spec.rb +54 -0
- data/spec/models/get_docx_comments_response_spec.rb +54 -0
- data/spec/models/get_docx_get_comments_hierarchical_request_spec.rb +48 -0
- data/spec/models/get_docx_get_comments_request_spec.rb +48 -0
- data/spec/models/insert_docx_comment_on_paragraph_response_spec.rb +48 -0
- metadata +26 -2
|
@@ -0,0 +1,54 @@
|
|
|
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.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::GetDocxCommentsHierarchicalResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'GetDocxCommentsHierarchicalResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveConvertApiClient::GetDocxCommentsHierarchicalResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of GetDocxCommentsHierarchicalResponse' do
|
|
31
|
+
it 'should create an instance of GetDocxCommentsHierarchicalResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::GetDocxCommentsHierarchicalResponse)
|
|
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 "comments"' 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 "top_level_comment_count"' 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
|
|
54
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
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.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::GetDocxCommentsResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'GetDocxCommentsResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveConvertApiClient::GetDocxCommentsResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of GetDocxCommentsResponse' do
|
|
31
|
+
it 'should create an instance of GetDocxCommentsResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::GetDocxCommentsResponse)
|
|
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 "comments"' 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 "comment_count"' 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
|
|
54
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::GetDocxGetCommentsHierarchicalRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'GetDocxGetCommentsHierarchicalRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveConvertApiClient::GetDocxGetCommentsHierarchicalRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of GetDocxGetCommentsHierarchicalRequest' do
|
|
31
|
+
it 'should create an instance of GetDocxGetCommentsHierarchicalRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::GetDocxGetCommentsHierarchicalRequest)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "input_file_bytes"' 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_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
|
|
48
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::GetDocxGetCommentsRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'GetDocxGetCommentsRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveConvertApiClient::GetDocxGetCommentsRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of GetDocxGetCommentsRequest' do
|
|
31
|
+
it 'should create an instance of GetDocxGetCommentsRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::GetDocxGetCommentsRequest)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "input_file_bytes"' 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_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
|
|
48
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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.3.1
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::InsertDocxCommentOnParagraphResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'InsertDocxCommentOnParagraphResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = CloudmersiveConvertApiClient::InsertDocxCommentOnParagraphResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of InsertDocxCommentOnParagraphResponse' do
|
|
31
|
+
it 'should create an instance of InsertDocxCommentOnParagraphResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::InsertDocxCommentOnParagraphResponse)
|
|
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 "edited_document_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
|
|
48
|
+
|
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: 1.6.
|
|
4
|
+
version: 1.6.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cloudmersive
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -230,9 +230,11 @@ files:
|
|
|
230
230
|
- "./docs/DocumentValidationResult.md"
|
|
231
231
|
- "./docs/DocxBody.md"
|
|
232
232
|
- "./docs/DocxCellStyle.md"
|
|
233
|
+
- "./docs/DocxComment.md"
|
|
233
234
|
- "./docs/DocxFooter.md"
|
|
234
235
|
- "./docs/DocxHeader.md"
|
|
235
236
|
- "./docs/DocxImage.md"
|
|
237
|
+
- "./docs/DocxInsertCommentOnParagraphRequest.md"
|
|
236
238
|
- "./docs/DocxInsertImageRequest.md"
|
|
237
239
|
- "./docs/DocxInsertImageResponse.md"
|
|
238
240
|
- "./docs/DocxPage.md"
|
|
@@ -253,12 +255,17 @@ files:
|
|
|
253
255
|
- "./docs/DocxTemplateApplicationRequest.md"
|
|
254
256
|
- "./docs/DocxTemplateOperation.md"
|
|
255
257
|
- "./docs/DocxText.md"
|
|
258
|
+
- "./docs/DocxTopLevelComment.md"
|
|
256
259
|
- "./docs/EditDocumentApi.md"
|
|
257
260
|
- "./docs/EditPdfApi.md"
|
|
258
261
|
- "./docs/ExifValue.md"
|
|
259
262
|
- "./docs/FinishEditingRequest.md"
|
|
260
263
|
- "./docs/GetDocxBodyRequest.md"
|
|
261
264
|
- "./docs/GetDocxBodyResponse.md"
|
|
265
|
+
- "./docs/GetDocxCommentsHierarchicalResponse.md"
|
|
266
|
+
- "./docs/GetDocxCommentsResponse.md"
|
|
267
|
+
- "./docs/GetDocxGetCommentsHierarchicalRequest.md"
|
|
268
|
+
- "./docs/GetDocxGetCommentsRequest.md"
|
|
262
269
|
- "./docs/GetDocxHeadersAndFootersRequest.md"
|
|
263
270
|
- "./docs/GetDocxHeadersAndFootersResponse.md"
|
|
264
271
|
- "./docs/GetDocxImagesRequest.md"
|
|
@@ -300,6 +307,7 @@ files:
|
|
|
300
307
|
- "./docs/HtmlToPngRequest.md"
|
|
301
308
|
- "./docs/HtmlToTextRequest.md"
|
|
302
309
|
- "./docs/HtmlToTextResponse.md"
|
|
310
|
+
- "./docs/InsertDocxCommentOnParagraphResponse.md"
|
|
303
311
|
- "./docs/InsertDocxInsertParagraphRequest.md"
|
|
304
312
|
- "./docs/InsertDocxInsertParagraphResponse.md"
|
|
305
313
|
- "./docs/InsertDocxTableRowRequest.md"
|
|
@@ -406,9 +414,11 @@ files:
|
|
|
406
414
|
- "./lib/cloudmersive-convert-api-client/models/document_validation_result.rb"
|
|
407
415
|
- "./lib/cloudmersive-convert-api-client/models/docx_body.rb"
|
|
408
416
|
- "./lib/cloudmersive-convert-api-client/models/docx_cell_style.rb"
|
|
417
|
+
- "./lib/cloudmersive-convert-api-client/models/docx_comment.rb"
|
|
409
418
|
- "./lib/cloudmersive-convert-api-client/models/docx_footer.rb"
|
|
410
419
|
- "./lib/cloudmersive-convert-api-client/models/docx_header.rb"
|
|
411
420
|
- "./lib/cloudmersive-convert-api-client/models/docx_image.rb"
|
|
421
|
+
- "./lib/cloudmersive-convert-api-client/models/docx_insert_comment_on_paragraph_request.rb"
|
|
412
422
|
- "./lib/cloudmersive-convert-api-client/models/docx_insert_image_request.rb"
|
|
413
423
|
- "./lib/cloudmersive-convert-api-client/models/docx_insert_image_response.rb"
|
|
414
424
|
- "./lib/cloudmersive-convert-api-client/models/docx_page.rb"
|
|
@@ -429,10 +439,15 @@ files:
|
|
|
429
439
|
- "./lib/cloudmersive-convert-api-client/models/docx_template_application_request.rb"
|
|
430
440
|
- "./lib/cloudmersive-convert-api-client/models/docx_template_operation.rb"
|
|
431
441
|
- "./lib/cloudmersive-convert-api-client/models/docx_text.rb"
|
|
442
|
+
- "./lib/cloudmersive-convert-api-client/models/docx_top_level_comment.rb"
|
|
432
443
|
- "./lib/cloudmersive-convert-api-client/models/exif_value.rb"
|
|
433
444
|
- "./lib/cloudmersive-convert-api-client/models/finish_editing_request.rb"
|
|
434
445
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_body_request.rb"
|
|
435
446
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_body_response.rb"
|
|
447
|
+
- "./lib/cloudmersive-convert-api-client/models/get_docx_comments_hierarchical_response.rb"
|
|
448
|
+
- "./lib/cloudmersive-convert-api-client/models/get_docx_comments_response.rb"
|
|
449
|
+
- "./lib/cloudmersive-convert-api-client/models/get_docx_get_comments_hierarchical_request.rb"
|
|
450
|
+
- "./lib/cloudmersive-convert-api-client/models/get_docx_get_comments_request.rb"
|
|
436
451
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_headers_and_footers_request.rb"
|
|
437
452
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_headers_and_footers_response.rb"
|
|
438
453
|
- "./lib/cloudmersive-convert-api-client/models/get_docx_images_request.rb"
|
|
@@ -474,6 +489,7 @@ files:
|
|
|
474
489
|
- "./lib/cloudmersive-convert-api-client/models/html_to_png_request.rb"
|
|
475
490
|
- "./lib/cloudmersive-convert-api-client/models/html_to_text_request.rb"
|
|
476
491
|
- "./lib/cloudmersive-convert-api-client/models/html_to_text_response.rb"
|
|
492
|
+
- "./lib/cloudmersive-convert-api-client/models/insert_docx_comment_on_paragraph_response.rb"
|
|
477
493
|
- "./lib/cloudmersive-convert-api-client/models/insert_docx_insert_paragraph_request.rb"
|
|
478
494
|
- "./lib/cloudmersive-convert-api-client/models/insert_docx_insert_paragraph_response.rb"
|
|
479
495
|
- "./lib/cloudmersive-convert-api-client/models/insert_docx_table_row_request.rb"
|
|
@@ -574,9 +590,11 @@ files:
|
|
|
574
590
|
- "./spec/models/document_validation_result_spec.rb"
|
|
575
591
|
- "./spec/models/docx_body_spec.rb"
|
|
576
592
|
- "./spec/models/docx_cell_style_spec.rb"
|
|
593
|
+
- "./spec/models/docx_comment_spec.rb"
|
|
577
594
|
- "./spec/models/docx_footer_spec.rb"
|
|
578
595
|
- "./spec/models/docx_header_spec.rb"
|
|
579
596
|
- "./spec/models/docx_image_spec.rb"
|
|
597
|
+
- "./spec/models/docx_insert_comment_on_paragraph_request_spec.rb"
|
|
580
598
|
- "./spec/models/docx_insert_image_request_spec.rb"
|
|
581
599
|
- "./spec/models/docx_insert_image_response_spec.rb"
|
|
582
600
|
- "./spec/models/docx_page_spec.rb"
|
|
@@ -597,10 +615,15 @@ files:
|
|
|
597
615
|
- "./spec/models/docx_template_application_request_spec.rb"
|
|
598
616
|
- "./spec/models/docx_template_operation_spec.rb"
|
|
599
617
|
- "./spec/models/docx_text_spec.rb"
|
|
618
|
+
- "./spec/models/docx_top_level_comment_spec.rb"
|
|
600
619
|
- "./spec/models/exif_value_spec.rb"
|
|
601
620
|
- "./spec/models/finish_editing_request_spec.rb"
|
|
602
621
|
- "./spec/models/get_docx_body_request_spec.rb"
|
|
603
622
|
- "./spec/models/get_docx_body_response_spec.rb"
|
|
623
|
+
- "./spec/models/get_docx_comments_hierarchical_response_spec.rb"
|
|
624
|
+
- "./spec/models/get_docx_comments_response_spec.rb"
|
|
625
|
+
- "./spec/models/get_docx_get_comments_hierarchical_request_spec.rb"
|
|
626
|
+
- "./spec/models/get_docx_get_comments_request_spec.rb"
|
|
604
627
|
- "./spec/models/get_docx_headers_and_footers_request_spec.rb"
|
|
605
628
|
- "./spec/models/get_docx_headers_and_footers_response_spec.rb"
|
|
606
629
|
- "./spec/models/get_docx_images_request_spec.rb"
|
|
@@ -642,6 +665,7 @@ files:
|
|
|
642
665
|
- "./spec/models/html_to_png_request_spec.rb"
|
|
643
666
|
- "./spec/models/html_to_text_request_spec.rb"
|
|
644
667
|
- "./spec/models/html_to_text_response_spec.rb"
|
|
668
|
+
- "./spec/models/insert_docx_comment_on_paragraph_response_spec.rb"
|
|
645
669
|
- "./spec/models/insert_docx_insert_paragraph_request_spec.rb"
|
|
646
670
|
- "./spec/models/insert_docx_insert_paragraph_response_spec.rb"
|
|
647
671
|
- "./spec/models/insert_docx_table_row_request_spec.rb"
|