groupdocs_signature_cloud 23.6 → 24.4
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 +5 -5
- data/lib/groupdocs_signature_cloud/api_client.rb +4 -5
- data/lib/groupdocs_signature_cloud/{api_error.rb → api_client_error.rb} +4 -4
- data/lib/groupdocs_signature_cloud/models/digital_vba.rb +272 -0
- data/lib/groupdocs_signature_cloud/models/sign_digital_options.rb +34 -4
- data/lib/groupdocs_signature_cloud/version.rb +1 -1
- data/lib/groupdocs_signature_cloud.rb +2 -1
- metadata +12 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: e527506f61c7cf26a4bd9d457381eb2274ef7b31d445aa7ba70df584cca44492
|
|
4
|
+
data.tar.gz: f9db5424502dda30eb8a20fa361d0eafec0780dccacbac8285aa6978fde16ad0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01eb9cea47764021e20c99a156af86fab343cc840ce7182b0ca44b04e098e8f2f685be1de76839dd1f372f7f50ed7d0d8b622b3382050cdff06830f259b97d69
|
|
7
|
+
data.tar.gz: 68fbd9e7a517cd1a222a979a5618d76856e30d3bf00fc550277ace462ba225e99562a944961f96c17b2c1291d63d2553ae24b7fa01564190920000b211a43424
|
|
@@ -28,10 +28,9 @@ require 'json'
|
|
|
28
28
|
require 'logger'
|
|
29
29
|
require 'tempfile'
|
|
30
30
|
require 'faraday'
|
|
31
|
-
require 'mimemagic'
|
|
32
31
|
require 'addressable'
|
|
33
32
|
require_relative 'version'
|
|
34
|
-
require_relative '
|
|
33
|
+
require_relative 'api_client_error'
|
|
35
34
|
|
|
36
35
|
module GroupDocsSignatureCloud
|
|
37
36
|
#
|
|
@@ -69,7 +68,7 @@ module GroupDocsSignatureCloud
|
|
|
69
68
|
end
|
|
70
69
|
|
|
71
70
|
unless response.success?
|
|
72
|
-
raise
|
|
71
|
+
raise ApiClientError.new(:code => response.status, :response_body => response.body)
|
|
73
72
|
end
|
|
74
73
|
|
|
75
74
|
data = deserialize(response, opts[:return_type]) if opts[:return_type]
|
|
@@ -111,7 +110,7 @@ module GroupDocsSignatureCloud
|
|
|
111
110
|
end
|
|
112
111
|
end
|
|
113
112
|
|
|
114
|
-
conn = Faraday.new url, { :params => query_params, :headers => header_params} do |f|
|
|
113
|
+
conn = Faraday.new url, { :params => query_params, :headers => header_params } do |f|
|
|
115
114
|
f.request :multipart
|
|
116
115
|
f.request :url_encoded
|
|
117
116
|
f.adapter Faraday.default_adapter
|
|
@@ -283,7 +282,7 @@ module GroupDocsSignatureCloud
|
|
|
283
282
|
form_params.each do |key, value|
|
|
284
283
|
case value
|
|
285
284
|
when ::File
|
|
286
|
-
data[key] = Faraday::UploadIO.new(value.path,
|
|
285
|
+
data[key] = Faraday::UploadIO.new(value.path, "application/octet-stream", key)
|
|
287
286
|
when ::Array, nil
|
|
288
287
|
data[key] = value
|
|
289
288
|
else
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
|
|
26
26
|
module GroupDocsSignatureCloud
|
|
27
27
|
#
|
|
28
|
-
#
|
|
28
|
+
# ApiClientError class for error handling
|
|
29
29
|
#
|
|
30
|
-
class
|
|
30
|
+
class ApiClientError < StandardError
|
|
31
31
|
attr_reader :code
|
|
32
32
|
attr_reader :message
|
|
33
33
|
|
|
34
34
|
# Usage examples:
|
|
35
|
-
#
|
|
36
|
-
#
|
|
35
|
+
# ApiClientError.new
|
|
36
|
+
# ApiClientError.new(:code => 500, :response_body => "")
|
|
37
37
|
def initialize(arg = nil)
|
|
38
38
|
if arg.is_a? Hash
|
|
39
39
|
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
#
|
|
2
|
+
# --------------------------------------------------------------------------------------------------------------------
|
|
3
|
+
# <copyright company="Aspose Pty Ltd" file="digital_vba.rb">
|
|
4
|
+
# Copyright (c) 2003-2023 Aspose Pty Ltd
|
|
5
|
+
# </copyright>
|
|
6
|
+
# <summary>
|
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
# furnished to do so, subject to the following conditions:
|
|
13
|
+
#
|
|
14
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
15
|
+
# copies or substantial portions of the Software.
|
|
16
|
+
#
|
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
+
# SOFTWARE.
|
|
24
|
+
# </summary>
|
|
25
|
+
# --------------------------------------------------------------------------------------------------------------------
|
|
26
|
+
#
|
|
27
|
+
|
|
28
|
+
require 'date'
|
|
29
|
+
|
|
30
|
+
module GroupDocsSignatureCloud
|
|
31
|
+
|
|
32
|
+
class DigitalVBA
|
|
33
|
+
|
|
34
|
+
# Gets or sets the password of digital certificate
|
|
35
|
+
attr_accessor :password
|
|
36
|
+
|
|
37
|
+
# Gets or sets the digital certificate file path
|
|
38
|
+
attr_accessor :certificate_file_path
|
|
39
|
+
|
|
40
|
+
# Gets or sets setting of only VBA project signing. If set to true, the SpreadSheet document will not be signed, but the VBA project will be signed.
|
|
41
|
+
attr_accessor :sign_only_vba_project
|
|
42
|
+
|
|
43
|
+
# Gets or sets the signature comments.
|
|
44
|
+
attr_accessor :comments
|
|
45
|
+
|
|
46
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
47
|
+
def self.attribute_map
|
|
48
|
+
{
|
|
49
|
+
:'password' => :'Password',
|
|
50
|
+
:'certificate_file_path' => :'CertificateFilePath',
|
|
51
|
+
:'sign_only_vba_project' => :'SignOnlyVBAProject',
|
|
52
|
+
:'comments' => :'Comments'
|
|
53
|
+
}
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Attribute type mapping.
|
|
57
|
+
def self.swagger_types
|
|
58
|
+
{
|
|
59
|
+
:'password' => :'String',
|
|
60
|
+
:'certificate_file_path' => :'String',
|
|
61
|
+
:'sign_only_vba_project' => :'BOOLEAN',
|
|
62
|
+
:'comments' => :'String'
|
|
63
|
+
}
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
# Initializes the object
|
|
67
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
68
|
+
def initialize(attributes = {})
|
|
69
|
+
return unless attributes.is_a?(Hash)
|
|
70
|
+
|
|
71
|
+
# convert string to symbol for hash key
|
|
72
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
73
|
+
|
|
74
|
+
if attributes.key?(:'Password')
|
|
75
|
+
self.password = attributes[:'Password']
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
if attributes.key?(:'CertificateFilePath')
|
|
79
|
+
self.certificate_file_path = attributes[:'CertificateFilePath']
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
if attributes.key?(:'SignOnlyVBAProject')
|
|
83
|
+
self.sign_only_vba_project = attributes[:'SignOnlyVBAProject']
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
if attributes.key?(:'Comments')
|
|
87
|
+
self.comments = attributes[:'Comments']
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
93
|
+
# @return Array for valid properies with the reasons
|
|
94
|
+
def list_invalid_properties
|
|
95
|
+
invalid_properties = []
|
|
96
|
+
if @sign_only_vba_project.nil?
|
|
97
|
+
invalid_properties.push("invalid value for 'sign_only_vba_project', sign_only_vba_project cannot be nil.")
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
return invalid_properties
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
# Check to see if the all the properties in the model are valid
|
|
104
|
+
# @return true if the model is valid
|
|
105
|
+
def valid?
|
|
106
|
+
return false if @sign_only_vba_project.nil?
|
|
107
|
+
return true
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# Checks equality by comparing each attribute.
|
|
111
|
+
# @param [Object] Object to be compared
|
|
112
|
+
def ==(other)
|
|
113
|
+
return true if self.equal?(other)
|
|
114
|
+
self.class == other.class &&
|
|
115
|
+
password == other.password &&
|
|
116
|
+
certificate_file_path == other.certificate_file_path &&
|
|
117
|
+
sign_only_vba_project == other.sign_only_vba_project &&
|
|
118
|
+
comments == other.comments
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
# @see the `==` method
|
|
122
|
+
# @param [Object] Object to be compared
|
|
123
|
+
def eql?(other)
|
|
124
|
+
self == other
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
# Calculates hash code according to all attributes.
|
|
128
|
+
# @return [Fixnum] Hash code
|
|
129
|
+
def hash
|
|
130
|
+
[password, certificate_file_path, sign_only_vba_project, comments].hash
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
# Downcases first letter.
|
|
134
|
+
# @return downcased string
|
|
135
|
+
def uncap(str)
|
|
136
|
+
str[0, 1].downcase + str[1..-1]
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
# Builds the object from hash
|
|
140
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
141
|
+
# @return [Object] Returns the model itself
|
|
142
|
+
def build_from_hash(attributes)
|
|
143
|
+
return nil unless attributes.is_a?(Hash)
|
|
144
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
145
|
+
pname = uncap(self.class.attribute_map[key]).intern
|
|
146
|
+
value = attributes[pname]
|
|
147
|
+
if type =~ /\AArray<(.*)>/i
|
|
148
|
+
# check to ensure the input is an array given that the the attribute
|
|
149
|
+
# is documented as an array but the input is not
|
|
150
|
+
if value.is_a?(Array)
|
|
151
|
+
self.send("#{key}=", value.map { |v| _deserialize($1, v) })
|
|
152
|
+
end
|
|
153
|
+
elsif !value.nil?
|
|
154
|
+
self.send("#{key}=", _deserialize(type, value))
|
|
155
|
+
end
|
|
156
|
+
# or else data not found in attributes(hash), not an issue as the data can be optional
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
self
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# Deserializes the data based on type
|
|
163
|
+
# @param string type Data type
|
|
164
|
+
# @param string value Value to be deserialized
|
|
165
|
+
# @return [Object] Deserialized data
|
|
166
|
+
def _deserialize(type, value)
|
|
167
|
+
case type.to_sym
|
|
168
|
+
when :DateTime
|
|
169
|
+
Date.parse value
|
|
170
|
+
when :Date
|
|
171
|
+
Date.parse value
|
|
172
|
+
when :String
|
|
173
|
+
value.to_s
|
|
174
|
+
when :Integer
|
|
175
|
+
value.to_i
|
|
176
|
+
when :Float
|
|
177
|
+
value.to_f
|
|
178
|
+
when :BOOLEAN
|
|
179
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
180
|
+
true
|
|
181
|
+
else
|
|
182
|
+
false
|
|
183
|
+
end
|
|
184
|
+
when :Object
|
|
185
|
+
# generic object (usually a Hash), return directly
|
|
186
|
+
value
|
|
187
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
188
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
189
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
190
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
191
|
+
k_type = Regexp.last_match[:k_type]
|
|
192
|
+
v_type = Regexp.last_match[:v_type]
|
|
193
|
+
{}.tap do |hash|
|
|
194
|
+
value.each do |k, v|
|
|
195
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
196
|
+
end
|
|
197
|
+
end
|
|
198
|
+
else
|
|
199
|
+
# model
|
|
200
|
+
# Signature type fix
|
|
201
|
+
ttype = type
|
|
202
|
+
if value.is_a?(Hash) and !value[:signatureType].nil?
|
|
203
|
+
ttype = value[:signatureType] + 'Signature'
|
|
204
|
+
if value[:signatureType] == 'FormField' and !value[:type].nil?
|
|
205
|
+
type = value[:type]
|
|
206
|
+
if type == 'Checkbox'
|
|
207
|
+
ttype = 'CheckboxFormFieldSignature'
|
|
208
|
+
end
|
|
209
|
+
if type == 'Text'
|
|
210
|
+
ttype = 'TextFormFieldSignature'
|
|
211
|
+
end
|
|
212
|
+
if type == 'Combobox'
|
|
213
|
+
ttype = 'ComboboxFormFieldSignature'
|
|
214
|
+
end
|
|
215
|
+
if type == 'DigitalSignature'
|
|
216
|
+
ttype = 'DigitalFormFieldSignature'
|
|
217
|
+
end
|
|
218
|
+
if type == 'Radio'
|
|
219
|
+
ttype = 'RadioButtonFormFieldSignature'
|
|
220
|
+
end
|
|
221
|
+
end
|
|
222
|
+
end
|
|
223
|
+
temp_model = GroupDocsSignatureCloud.const_get(ttype).new
|
|
224
|
+
temp_model.build_from_hash(value)
|
|
225
|
+
end
|
|
226
|
+
end
|
|
227
|
+
|
|
228
|
+
# Returns the string representation of the object
|
|
229
|
+
# @return [String] String presentation of the object
|
|
230
|
+
def to_s
|
|
231
|
+
to_hash.to_s
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
235
|
+
# @return [Hash] Returns the object in the form of hash
|
|
236
|
+
def to_body
|
|
237
|
+
to_hash
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
# Returns the object in the form of hash
|
|
241
|
+
# @return [Hash] Returns the object in the form of hash
|
|
242
|
+
def to_hash
|
|
243
|
+
hash = {}
|
|
244
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
245
|
+
value = self.send(attr)
|
|
246
|
+
next if value.nil?
|
|
247
|
+
hash[param] = _to_hash(value)
|
|
248
|
+
end
|
|
249
|
+
hash
|
|
250
|
+
end
|
|
251
|
+
|
|
252
|
+
# Outputs non-array value in the form of hash
|
|
253
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
254
|
+
# @param [Object] value Any valid value
|
|
255
|
+
# @return [Hash] Returns the value in the form of hash
|
|
256
|
+
def _to_hash(value)
|
|
257
|
+
if value.is_a?(Array)
|
|
258
|
+
value.compact.map { |v| _to_hash(v) }
|
|
259
|
+
elsif value.is_a?(Hash)
|
|
260
|
+
{}.tap do |hash|
|
|
261
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
262
|
+
end
|
|
263
|
+
elsif value.respond_to? :to_hash
|
|
264
|
+
value.to_hash
|
|
265
|
+
else
|
|
266
|
+
value
|
|
267
|
+
end
|
|
268
|
+
end
|
|
269
|
+
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
end
|
|
@@ -108,6 +108,15 @@ module GroupDocsSignatureCloud
|
|
|
108
108
|
|
|
109
109
|
# XAdES type GroupDocs.Signature.Options.DigitalSignOptions.XAdESType. Default value is None (XAdES is off). At this moment XAdES signature type is supported only for Spreadsheet documents.
|
|
110
110
|
attr_accessor :x_ad_es_type
|
|
111
|
+
|
|
112
|
+
# Options for signing VBA project
|
|
113
|
+
attr_accessor :digital_vba
|
|
114
|
+
|
|
115
|
+
# The time the document was signed.
|
|
116
|
+
attr_accessor :sign_time
|
|
117
|
+
|
|
118
|
+
# The signing purpose comment.
|
|
119
|
+
attr_accessor :comments
|
|
111
120
|
class EnumAttributeValidator
|
|
112
121
|
attr_reader :datatype
|
|
113
122
|
attr_reader :allowable_values
|
|
@@ -158,7 +167,10 @@ module GroupDocsSignatureCloud
|
|
|
158
167
|
:'visible' => :'Visible',
|
|
159
168
|
:'password' => :'Password',
|
|
160
169
|
:'certificate_file_path' => :'CertificateFilePath',
|
|
161
|
-
:'x_ad_es_type' => :'XAdESType'
|
|
170
|
+
:'x_ad_es_type' => :'XAdESType',
|
|
171
|
+
:'digital_vba' => :'DigitalVBA',
|
|
172
|
+
:'sign_time' => :'SignTime',
|
|
173
|
+
:'comments' => :'Comments'
|
|
162
174
|
}
|
|
163
175
|
end
|
|
164
176
|
|
|
@@ -190,7 +202,10 @@ module GroupDocsSignatureCloud
|
|
|
190
202
|
:'visible' => :'BOOLEAN',
|
|
191
203
|
:'password' => :'String',
|
|
192
204
|
:'certificate_file_path' => :'String',
|
|
193
|
-
:'x_ad_es_type' => :'String'
|
|
205
|
+
:'x_ad_es_type' => :'String',
|
|
206
|
+
:'digital_vba' => :'DigitalVBA',
|
|
207
|
+
:'sign_time' => :'DateTime',
|
|
208
|
+
:'comments' => :'String'
|
|
194
209
|
}
|
|
195
210
|
end
|
|
196
211
|
|
|
@@ -306,6 +321,18 @@ module GroupDocsSignatureCloud
|
|
|
306
321
|
self.x_ad_es_type = attributes[:'XAdESType']
|
|
307
322
|
end
|
|
308
323
|
|
|
324
|
+
if attributes.key?(:'DigitalVBA')
|
|
325
|
+
self.digital_vba = attributes[:'DigitalVBA']
|
|
326
|
+
end
|
|
327
|
+
|
|
328
|
+
if attributes.key?(:'SignTime')
|
|
329
|
+
self.sign_time = attributes[:'SignTime']
|
|
330
|
+
end
|
|
331
|
+
|
|
332
|
+
if attributes.key?(:'Comments')
|
|
333
|
+
self.comments = attributes[:'Comments']
|
|
334
|
+
end
|
|
335
|
+
|
|
309
336
|
end
|
|
310
337
|
|
|
311
338
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -538,7 +565,10 @@ module GroupDocsSignatureCloud
|
|
|
538
565
|
visible == other.visible &&
|
|
539
566
|
password == other.password &&
|
|
540
567
|
certificate_file_path == other.certificate_file_path &&
|
|
541
|
-
x_ad_es_type == other.x_ad_es_type
|
|
568
|
+
x_ad_es_type == other.x_ad_es_type &&
|
|
569
|
+
digital_vba == other.digital_vba &&
|
|
570
|
+
sign_time == other.sign_time &&
|
|
571
|
+
comments == other.comments
|
|
542
572
|
end
|
|
543
573
|
|
|
544
574
|
# @see the `==` method
|
|
@@ -550,7 +580,7 @@ module GroupDocsSignatureCloud
|
|
|
550
580
|
# Calculates hash code according to all attributes.
|
|
551
581
|
# @return [Fixnum] Hash code
|
|
552
582
|
def hash
|
|
553
|
-
[signature_type, page, all_pages, pages_setup, appearance, image_file_path, left, top, width, height, location_measure_type, size_measure_type, rotation_angle, horizontal_alignment, vertical_alignment, margin, margin_measure_type, transparency, border, reason, contact, location, visible, password, certificate_file_path, x_ad_es_type].hash
|
|
583
|
+
[signature_type, page, all_pages, pages_setup, appearance, image_file_path, left, top, width, height, location_measure_type, size_measure_type, rotation_angle, horizontal_alignment, vertical_alignment, margin, margin_measure_type, transparency, border, reason, contact, location, visible, password, certificate_file_path, x_ad_es_type, digital_vba, sign_time, comments].hash
|
|
554
584
|
end
|
|
555
585
|
|
|
556
586
|
# Downcases first letter.
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
# Common files
|
|
27
27
|
require_relative 'groupdocs_signature_cloud/api_client'
|
|
28
|
-
require_relative 'groupdocs_signature_cloud/
|
|
28
|
+
require_relative 'groupdocs_signature_cloud/api_client_error'
|
|
29
29
|
require_relative 'groupdocs_signature_cloud/version'
|
|
30
30
|
require_relative 'groupdocs_signature_cloud/configuration'
|
|
31
31
|
|
|
@@ -39,6 +39,7 @@ require_relative 'groupdocs_signature_cloud/models/color'
|
|
|
39
39
|
require_relative 'groupdocs_signature_cloud/models/consumption_result'
|
|
40
40
|
require_relative 'groupdocs_signature_cloud/models/delete_options'
|
|
41
41
|
require_relative 'groupdocs_signature_cloud/models/delete_result'
|
|
42
|
+
require_relative 'groupdocs_signature_cloud/models/digital_vba'
|
|
42
43
|
require_relative 'groupdocs_signature_cloud/models/disc_usage'
|
|
43
44
|
require_relative 'groupdocs_signature_cloud/models/error'
|
|
44
45
|
require_relative 'groupdocs_signature_cloud/models/error_details'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: groupdocs_signature_cloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '
|
|
4
|
+
version: '24.4'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GroupDocs
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-04-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -30,20 +30,20 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.8.
|
|
33
|
+
version: 2.8.4
|
|
34
34
|
- - ">="
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
|
-
version: 2.8.
|
|
36
|
+
version: 2.8.4
|
|
37
37
|
type: :runtime
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
40
40
|
requirements:
|
|
41
41
|
- - "~>"
|
|
42
42
|
- !ruby/object:Gem::Version
|
|
43
|
-
version: 2.8.
|
|
43
|
+
version: 2.8.4
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 2.8.
|
|
46
|
+
version: 2.8.4
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: minitest
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -79,7 +79,7 @@ files:
|
|
|
79
79
|
- lib/groupdocs_signature_cloud/api/sign_api.rb
|
|
80
80
|
- lib/groupdocs_signature_cloud/api/storage_api.rb
|
|
81
81
|
- lib/groupdocs_signature_cloud/api_client.rb
|
|
82
|
-
- lib/groupdocs_signature_cloud/
|
|
82
|
+
- lib/groupdocs_signature_cloud/api_client_error.rb
|
|
83
83
|
- lib/groupdocs_signature_cloud/configuration.rb
|
|
84
84
|
- lib/groupdocs_signature_cloud/models/barcode_signature.rb
|
|
85
85
|
- lib/groupdocs_signature_cloud/models/barcode_type.rb
|
|
@@ -97,6 +97,7 @@ files:
|
|
|
97
97
|
- lib/groupdocs_signature_cloud/models/digital_form_field_signature.rb
|
|
98
98
|
- lib/groupdocs_signature_cloud/models/digital_signature.rb
|
|
99
99
|
- lib/groupdocs_signature_cloud/models/digital_signature_appearance.rb
|
|
100
|
+
- lib/groupdocs_signature_cloud/models/digital_vba.rb
|
|
100
101
|
- lib/groupdocs_signature_cloud/models/disc_usage.rb
|
|
101
102
|
- lib/groupdocs_signature_cloud/models/error.rb
|
|
102
103
|
- lib/groupdocs_signature_cloud/models/error_details.rb
|
|
@@ -174,7 +175,7 @@ licenses:
|
|
|
174
175
|
- MIT
|
|
175
176
|
metadata:
|
|
176
177
|
source_code_uri: https://github.com/groupdocs-signature-cloud/groupdocs-signature-cloud-ruby
|
|
177
|
-
post_install_message:
|
|
178
|
+
post_install_message:
|
|
178
179
|
rdoc_options: []
|
|
179
180
|
require_paths:
|
|
180
181
|
- lib
|
|
@@ -189,9 +190,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
189
190
|
- !ruby/object:Gem::Version
|
|
190
191
|
version: '0'
|
|
191
192
|
requirements: []
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
signing_key:
|
|
193
|
+
rubygems_version: 3.1.6
|
|
194
|
+
signing_key:
|
|
195
195
|
specification_version: 4
|
|
196
196
|
summary: GroupDocs.Signature Cloud Ruby SDK
|
|
197
197
|
test_files: []
|