cloudmersive-convert-api-client 1.7.4 → 1.7.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 +17 -4
- data/docs/DocxParagraph.md +1 -1
- data/docs/DocxRun.md +1 -1
- data/docs/DocxText.md +1 -1
- data/docs/EditDocumentApi.md +110 -0
- data/docs/FindDocxParagraphRequest.md +11 -0
- data/docs/FindDocxParagraphResponse.md +10 -0
- data/docs/ReplaceDocxParagraphRequest.md +12 -0
- data/docs/ReplaceDocxParagraphResponse.md +9 -0
- data/docs/ValidateDocumentApi.md +220 -0
- data/docs/ZipArchiveApi.md +144 -5
- data/docs/ZipEncryptionAdvancedRequest.md +10 -0
- data/lib/cloudmersive-convert-api-client.rb +5 -0
- data/lib/cloudmersive-convert-api-client/api/edit_document_api.rb +110 -0
- data/lib/cloudmersive-convert-api-client/api/validate_document_api.rb +224 -0
- data/lib/cloudmersive-convert-api-client/api/zip_archive_api.rb +160 -6
- data/lib/cloudmersive-convert-api-client/models/docx_paragraph.rb +1 -1
- data/lib/cloudmersive-convert-api-client/models/docx_run.rb +1 -1
- data/lib/cloudmersive-convert-api-client/models/docx_text.rb +1 -1
- data/lib/cloudmersive-convert-api-client/models/find_docx_paragraph_request.rb +235 -0
- data/lib/cloudmersive-convert-api-client/models/find_docx_paragraph_response.rb +211 -0
- data/lib/cloudmersive-convert-api-client/models/replace_docx_paragraph_request.rb +245 -0
- data/lib/cloudmersive-convert-api-client/models/replace_docx_paragraph_response.rb +199 -0
- data/lib/cloudmersive-convert-api-client/models/zip_encryption_advanced_request.rb +225 -0
- data/lib/cloudmersive-convert-api-client/version.rb +1 -1
- data/spec/api/edit_document_api_spec.rb +24 -0
- data/spec/api/validate_document_api_spec.rb +48 -0
- data/spec/api/zip_archive_api_spec.rb +36 -1
- data/spec/models/find_docx_paragraph_request_spec.rb +60 -0
- data/spec/models/find_docx_paragraph_response_spec.rb +54 -0
- data/spec/models/replace_docx_paragraph_request_spec.rb +66 -0
- data/spec/models/replace_docx_paragraph_response_spec.rb +48 -0
- data/spec/models/zip_encryption_advanced_request_spec.rb +54 -0
- metadata +17 -2
@@ -68,6 +68,18 @@ describe 'ValidateDocumentApi' do
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
+
# unit tests for validate_document_g_zip_validation
|
72
|
+
# Validate a GZip Archive file (gzip or gz)
|
73
|
+
# Validate a GZip archive file (GZIP or GZ)
|
74
|
+
# @param input_file Input file to perform the operation on.
|
75
|
+
# @param [Hash] opts the optional parameters
|
76
|
+
# @return [DocumentValidationResult]
|
77
|
+
describe 'validate_document_g_zip_validation test' 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
|
+
|
71
83
|
# unit tests for validate_document_json_validation
|
72
84
|
# Validate a JSON file
|
73
85
|
# Validate a JSON (JavaScript Object Notation) document file; if the document is not valid, identifies the errors in the document
|
@@ -104,6 +116,30 @@ describe 'ValidateDocumentApi' do
|
|
104
116
|
end
|
105
117
|
end
|
106
118
|
|
119
|
+
# unit tests for validate_document_rar_validation
|
120
|
+
# Validate a RAR Archive file (RAR)
|
121
|
+
# Validate a RAR archive file (RAR)
|
122
|
+
# @param input_file Input file to perform the operation on.
|
123
|
+
# @param [Hash] opts the optional parameters
|
124
|
+
# @return [DocumentValidationResult]
|
125
|
+
describe 'validate_document_rar_validation test' do
|
126
|
+
it "should work" do
|
127
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
# unit tests for validate_document_tar_validation
|
132
|
+
# Validate a TAR Tarball Archive file (TAR)
|
133
|
+
# Validate a TAR tarball archive file (TAR)
|
134
|
+
# @param input_file Input file to perform the operation on.
|
135
|
+
# @param [Hash] opts the optional parameters
|
136
|
+
# @return [DocumentValidationResult]
|
137
|
+
describe 'validate_document_tar_validation test' do
|
138
|
+
it "should work" do
|
139
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
140
|
+
end
|
141
|
+
end
|
142
|
+
|
107
143
|
# unit tests for validate_document_xlsx_validation
|
108
144
|
# Validate a Excel document (XLSX)
|
109
145
|
# Validate a Excel document (XLSX); if the document is not valid, identifies the errors in the document
|
@@ -128,4 +164,16 @@ describe 'ValidateDocumentApi' do
|
|
128
164
|
end
|
129
165
|
end
|
130
166
|
|
167
|
+
# unit tests for validate_document_zip_validation
|
168
|
+
# Validate a Zip Archive file (zip)
|
169
|
+
# Validate a Zip archive file (ZIP)
|
170
|
+
# @param input_file Input file to perform the operation on.
|
171
|
+
# @param [Hash] opts the optional parameters
|
172
|
+
# @return [DocumentValidationResult]
|
173
|
+
describe 'validate_document_zip_validation test' do
|
174
|
+
it "should work" do
|
175
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
131
179
|
end
|
@@ -35,8 +35,18 @@ describe 'ZipArchiveApi' do
|
|
35
35
|
# unit tests for zip_archive_zip_create
|
36
36
|
# Compress files to create a new zip archive
|
37
37
|
# Create a new zip archive by compressing input files.
|
38
|
+
# @param input_file1 First input file to perform the operation on.
|
38
39
|
# @param [Hash] opts the optional parameters
|
39
|
-
# @
|
40
|
+
# @option opts [File] :input_file2 Second input file to perform the operation on.
|
41
|
+
# @option opts [File] :input_file3 Third input file to perform the operation on.
|
42
|
+
# @option opts [File] :input_file4 Fourth input file to perform the operation on.
|
43
|
+
# @option opts [File] :input_file5 Fifth input file to perform the operation on.
|
44
|
+
# @option opts [File] :input_file6 Sixth input file to perform the operation on.
|
45
|
+
# @option opts [File] :input_file7 Seventh input file to perform the operation on.
|
46
|
+
# @option opts [File] :input_file8 Eighth input file to perform the operation on.
|
47
|
+
# @option opts [File] :input_file9 Ninth input file to perform the operation on.
|
48
|
+
# @option opts [File] :input_file10 Tenth input file to perform the operation on.
|
49
|
+
# @return [String]
|
40
50
|
describe 'zip_archive_zip_create test' do
|
41
51
|
it "should work" do
|
42
52
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -55,6 +65,31 @@ describe 'ZipArchiveApi' do
|
|
55
65
|
end
|
56
66
|
end
|
57
67
|
|
68
|
+
# unit tests for zip_archive_zip_decrypt
|
69
|
+
# Decrypt and remove password protection on a zip file
|
70
|
+
# Decrypts and removes password protection from an encrypted zip file with the specified password
|
71
|
+
# @param input_file Input file to perform the operation on.
|
72
|
+
# @param zip_password Required; Password for the input archive
|
73
|
+
# @param [Hash] opts the optional parameters
|
74
|
+
# @return [Object]
|
75
|
+
describe 'zip_archive_zip_decrypt test' do
|
76
|
+
it "should work" do
|
77
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# unit tests for zip_archive_zip_encrypt_advanced
|
82
|
+
# Encrypt and password protect a zip file
|
83
|
+
# Encrypts and password protects an existing zip file with the specified password and encryption algorithm
|
84
|
+
# @param encryption_request Encryption request
|
85
|
+
# @param [Hash] opts the optional parameters
|
86
|
+
# @return [Object]
|
87
|
+
describe 'zip_archive_zip_encrypt_advanced test' do
|
88
|
+
it "should work" do
|
89
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
58
93
|
# unit tests for zip_archive_zip_extract
|
59
94
|
# Extract, decompress files and folders from a zip archive
|
60
95
|
# Extracts a zip archive by decompressing files, and folders.
|
@@ -0,0 +1,60 @@
|
|
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::FindDocxParagraphRequest
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'FindDocxParagraphRequest' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::FindDocxParagraphRequest.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of FindDocxParagraphRequest' do
|
31
|
+
it 'should create an instance of FindDocxParagraphRequest' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::FindDocxParagraphRequest)
|
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
|
+
describe 'test attribute "find_string"' 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 "match_case"' 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
|
+
end
|
60
|
+
|
@@ -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::FindDocxParagraphResponse
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'FindDocxParagraphResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::FindDocxParagraphResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of FindDocxParagraphResponse' do
|
31
|
+
it 'should create an instance of FindDocxParagraphResponse' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::FindDocxParagraphResponse)
|
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 "matching_paragraphs"' 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 "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,66 @@
|
|
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::ReplaceDocxParagraphRequest
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ReplaceDocxParagraphRequest' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::ReplaceDocxParagraphRequest.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ReplaceDocxParagraphRequest' do
|
31
|
+
it 'should create an instance of ReplaceDocxParagraphRequest' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::ReplaceDocxParagraphRequest)
|
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
|
+
describe 'test attribute "find_string"' 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 "match_case"' 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 "replacement_image"' 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
|
66
|
+
|
@@ -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::ReplaceDocxParagraphResponse
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ReplaceDocxParagraphResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::ReplaceDocxParagraphResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ReplaceDocxParagraphResponse' do
|
31
|
+
it 'should create an instance of ReplaceDocxParagraphResponse' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::ReplaceDocxParagraphResponse)
|
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
|
+
|
@@ -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::ZipEncryptionAdvancedRequest
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ZipEncryptionAdvancedRequest' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::ZipEncryptionAdvancedRequest.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ZipEncryptionAdvancedRequest' do
|
31
|
+
it 'should create an instance of ZipEncryptionAdvancedRequest' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::ZipEncryptionAdvancedRequest)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "input_file_contents"' 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 "password"' 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 "encryption_algorithm"' 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
|
+
|
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.7.
|
4
|
+
version: 1.7.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cloudmersive
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -275,6 +275,8 @@ files:
|
|
275
275
|
- "./docs/EnableSharedWorkbookRequest.md"
|
276
276
|
- "./docs/EnableSharedWorkbookResponse.md"
|
277
277
|
- "./docs/ExifValue.md"
|
278
|
+
- "./docs/FindDocxParagraphRequest.md"
|
279
|
+
- "./docs/FindDocxParagraphResponse.md"
|
278
280
|
- "./docs/FindRegexMatch.md"
|
279
281
|
- "./docs/FindStringMatch.md"
|
280
282
|
- "./docs/FindStringRegexRequest.md"
|
@@ -359,6 +361,8 @@ files:
|
|
359
361
|
- "./docs/RemoveWhitespaceFromTextRequest.md"
|
360
362
|
- "./docs/RemoveWhitespaceFromTextResponse.md"
|
361
363
|
- "./docs/RemoveXlsxWorksheetRequest.md"
|
364
|
+
- "./docs/ReplaceDocxParagraphRequest.md"
|
365
|
+
- "./docs/ReplaceDocxParagraphResponse.md"
|
362
366
|
- "./docs/ReplaceStringRegexRequest.md"
|
363
367
|
- "./docs/ReplaceStringRegexResponse.md"
|
364
368
|
- "./docs/ReplaceStringRequest.md"
|
@@ -411,6 +415,7 @@ files:
|
|
411
415
|
- "./docs/XmlSetValueWithXPathResult.md"
|
412
416
|
- "./docs/ZipArchiveApi.md"
|
413
417
|
- "./docs/ZipDirectory.md"
|
418
|
+
- "./docs/ZipEncryptionAdvancedRequest.md"
|
414
419
|
- "./docs/ZipExtractResponse.md"
|
415
420
|
- "./docs/ZipFile.md"
|
416
421
|
- "./git_push.sh"
|
@@ -496,6 +501,8 @@ files:
|
|
496
501
|
- "./lib/cloudmersive-convert-api-client/models/enable_shared_workbook_request.rb"
|
497
502
|
- "./lib/cloudmersive-convert-api-client/models/enable_shared_workbook_response.rb"
|
498
503
|
- "./lib/cloudmersive-convert-api-client/models/exif_value.rb"
|
504
|
+
- "./lib/cloudmersive-convert-api-client/models/find_docx_paragraph_request.rb"
|
505
|
+
- "./lib/cloudmersive-convert-api-client/models/find_docx_paragraph_response.rb"
|
499
506
|
- "./lib/cloudmersive-convert-api-client/models/find_regex_match.rb"
|
500
507
|
- "./lib/cloudmersive-convert-api-client/models/find_string_match.rb"
|
501
508
|
- "./lib/cloudmersive-convert-api-client/models/find_string_regex_request.rb"
|
@@ -579,6 +586,8 @@ files:
|
|
579
586
|
- "./lib/cloudmersive-convert-api-client/models/remove_whitespace_from_text_request.rb"
|
580
587
|
- "./lib/cloudmersive-convert-api-client/models/remove_whitespace_from_text_response.rb"
|
581
588
|
- "./lib/cloudmersive-convert-api-client/models/remove_xlsx_worksheet_request.rb"
|
589
|
+
- "./lib/cloudmersive-convert-api-client/models/replace_docx_paragraph_request.rb"
|
590
|
+
- "./lib/cloudmersive-convert-api-client/models/replace_docx_paragraph_response.rb"
|
582
591
|
- "./lib/cloudmersive-convert-api-client/models/replace_string_regex_request.rb"
|
583
592
|
- "./lib/cloudmersive-convert-api-client/models/replace_string_regex_response.rb"
|
584
593
|
- "./lib/cloudmersive-convert-api-client/models/replace_string_request.rb"
|
@@ -627,6 +636,7 @@ files:
|
|
627
636
|
- "./lib/cloudmersive-convert-api-client/models/xml_replace_with_x_path_result.rb"
|
628
637
|
- "./lib/cloudmersive-convert-api-client/models/xml_set_value_with_x_path_result.rb"
|
629
638
|
- "./lib/cloudmersive-convert-api-client/models/zip_directory.rb"
|
639
|
+
- "./lib/cloudmersive-convert-api-client/models/zip_encryption_advanced_request.rb"
|
630
640
|
- "./lib/cloudmersive-convert-api-client/models/zip_extract_response.rb"
|
631
641
|
- "./lib/cloudmersive-convert-api-client/models/zip_file.rb"
|
632
642
|
- "./lib/cloudmersive-convert-api-client/version.rb"
|
@@ -710,6 +720,8 @@ files:
|
|
710
720
|
- "./spec/models/enable_shared_workbook_request_spec.rb"
|
711
721
|
- "./spec/models/enable_shared_workbook_response_spec.rb"
|
712
722
|
- "./spec/models/exif_value_spec.rb"
|
723
|
+
- "./spec/models/find_docx_paragraph_request_spec.rb"
|
724
|
+
- "./spec/models/find_docx_paragraph_response_spec.rb"
|
713
725
|
- "./spec/models/find_regex_match_spec.rb"
|
714
726
|
- "./spec/models/find_string_match_spec.rb"
|
715
727
|
- "./spec/models/find_string_regex_request_spec.rb"
|
@@ -793,6 +805,8 @@ files:
|
|
793
805
|
- "./spec/models/remove_whitespace_from_text_request_spec.rb"
|
794
806
|
- "./spec/models/remove_whitespace_from_text_response_spec.rb"
|
795
807
|
- "./spec/models/remove_xlsx_worksheet_request_spec.rb"
|
808
|
+
- "./spec/models/replace_docx_paragraph_request_spec.rb"
|
809
|
+
- "./spec/models/replace_docx_paragraph_response_spec.rb"
|
796
810
|
- "./spec/models/replace_string_regex_request_spec.rb"
|
797
811
|
- "./spec/models/replace_string_regex_response_spec.rb"
|
798
812
|
- "./spec/models/replace_string_request_spec.rb"
|
@@ -841,6 +855,7 @@ files:
|
|
841
855
|
- "./spec/models/xml_replace_with_x_path_result_spec.rb"
|
842
856
|
- "./spec/models/xml_set_value_with_x_path_result_spec.rb"
|
843
857
|
- "./spec/models/zip_directory_spec.rb"
|
858
|
+
- "./spec/models/zip_encryption_advanced_request_spec.rb"
|
844
859
|
- "./spec/models/zip_extract_response_spec.rb"
|
845
860
|
- "./spec/models/zip_file_spec.rb"
|
846
861
|
- "./spec/spec_helper.rb"
|