hellosign-ruby-sdk 3.2.8 → 3.2.9
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/lib/hello_sign/api/signature_request.rb +4 -2
- data/lib/hello_sign/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 460b7235efe34095a98aa16fbf1b78364015fca7
|
|
4
|
+
data.tar.gz: c53ec9382a3de44689c407eb6a4e6978f67daf06
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e6165b989d89664737a9b2517173aefa61268ae6fec57f6a0fedef83be3f7adefd86c7e1e807345d499013649dd8efe797b9e8a58e7f4d1306e9c3b3a611ad95
|
|
7
|
+
data.tar.gz: a712f89962e3640b84643368cfccee19134ee07debc4a23720dcb69aa2b895eb1788cbe21821f33459f796a602e4c58d1cd15511dff0858e6299bfec6f9ca6d6
|
|
@@ -137,7 +137,8 @@ module HelloSign
|
|
|
137
137
|
# * :order (Integer) The order the signer is required to sign in
|
|
138
138
|
# * :pin (Integer) The 4- to 12-character access code that will secure this signer's signature page. You must have a business plan to use this feature.
|
|
139
139
|
# @option opts [Array<Hash>] ccs The email addresses CC destinations. Required when a CC role exists for the Template.
|
|
140
|
-
# @option opts [
|
|
140
|
+
# @option opts [Hash] custom_fields (deprecated) The value to fill in for the custom field with the name of CustomFieldName.
|
|
141
|
+
# @option opts [Array<Hash>] custom_fields An array of custom merge fields, representing those present in the template. Only specify this when NOT specifying custom_fields by hash (the old way).
|
|
141
142
|
# @option opts [Integer] ux_version sets the version of the signer page to use
|
|
142
143
|
#
|
|
143
144
|
# @return [HelloSign::Resource::SignatureRequest] a SignatureRequest
|
|
@@ -322,7 +323,8 @@ module HelloSign
|
|
|
322
323
|
# * :order (Integer) The order the signer is required to sign in
|
|
323
324
|
# * :pin (Integer) The 4- to 12-character access code that will secure this signer's signature page. You must have a business plan to use this feature.
|
|
324
325
|
# @option opts [Hash] ccs The email address of the CC filling the role of RoleName. Required when a CC role exists for the Template.
|
|
325
|
-
# @option opts [Hash] custom_fields The value to fill in for custom field with the name of CustomFieldName.
|
|
326
|
+
# @option opts [Hash] custom_fields (deprecated) The value to fill in for custom field with the name of CustomFieldName.
|
|
327
|
+
# @option opts [Array<Hash>] custom_fields An array of custom merge fields, representing those present in the template. Only specify this when NOT specifying custom_fields by hash (the old way)
|
|
326
328
|
# @option opts [Integer] ux_version sets the version of the signer page to use
|
|
327
329
|
#
|
|
328
330
|
# @return [HelloSign::Resource::SignatureRequest] a SignatureRequest
|
data/lib/hello_sign/version.rb
CHANGED