Skip to content

Commit 6377c22

Browse files
Release 1.11.0
1 parent e4415bb commit 6377c22

128 files changed

Lines changed: 1041 additions & 832 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ script:
88
- bundle install --path vendor/bundle
99
- bundle exec rspec
1010
- gem build dropbox-sign.gemspec
11-
- gem install ./dropbox-sign-1.10.0.gem
11+
- gem install ./dropbox-sign-1.11.0.gem

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
dropbox-sign (1.10.0)
4+
dropbox-sign (1.11.0)
55
typhoeus (~> 1.0, >= 1.0.1)
66

77
GEM

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ directory that corresponds to the file you want updated.
2525
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
2626

2727
- API version: 3.0.0
28-
- Package version: 1.10.0
28+
- Package version: 1.11.0
2929
- Generator version: 7.12.0
3030
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
3131

@@ -47,15 +47,15 @@ gem build dropbox-sign.gemspec
4747
Then install the gem locally:
4848

4949
```shell
50-
gem install ./dropbox-sign-1.10.0.gem
50+
gem install ./dropbox-sign-1.11.0.gem
5151
```
5252

53-
(for development, run `gem install --dev ./dropbox-sign-1.10.0.gem` to install the development dependencies)
53+
(for development, run `gem install --dev ./dropbox-sign-1.11.0.gem` to install the development dependencies)
5454

5555

5656
Finally add this to the Gemfile:
5757

58-
gem 'dropbox-sign', '~> 1.10.0'
58+
gem 'dropbox-sign', '~> 1.11.0'
5959

6060
### Install from Git
6161

@@ -189,6 +189,7 @@ All URIs are relative to *https://api.hellosign.com/v3*
189189
- [Dropbox::Sign::AccountGetResponse](docs/AccountGetResponse.md)
190190
- [Dropbox::Sign::AccountResponse](docs/AccountResponse.md)
191191
- [Dropbox::Sign::AccountResponseQuotas](docs/AccountResponseQuotas.md)
192+
- [Dropbox::Sign::AccountResponseSettings](docs/AccountResponseSettings.md)
192193
- [Dropbox::Sign::AccountResponseUsage](docs/AccountResponseUsage.md)
193194
- [Dropbox::Sign::AccountUpdateRequest](docs/AccountUpdateRequest.md)
194195
- [Dropbox::Sign::AccountVerifyRequest](docs/AccountVerifyRequest.md)
@@ -332,7 +333,6 @@ All URIs are relative to *https://api.hellosign.com/v3*
332333
- [Dropbox::Sign::TemplateCreateRequest](docs/TemplateCreateRequest.md)
333334
- [Dropbox::Sign::TemplateCreateResponse](docs/TemplateCreateResponse.md)
334335
- [Dropbox::Sign::TemplateCreateResponseTemplate](docs/TemplateCreateResponseTemplate.md)
335-
- [Dropbox::Sign::TemplateEditResponse](docs/TemplateEditResponse.md)
336336
- [Dropbox::Sign::TemplateGetResponse](docs/TemplateGetResponse.md)
337337
- [Dropbox::Sign::TemplateListResponse](docs/TemplateListResponse.md)
338338
- [Dropbox::Sign::TemplateRemoveUserRequest](docs/TemplateRemoveUserRequest.md)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.10.0
1+
1.11.0

docs/AccountResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@
1717
| `team_id` | ```String``` | The id of the team account belongs to. | |
1818
| `locale` | ```String``` | The locale used in this Account. Check out the list of [supported locales](/api/reference/constants/#supported-locales) to learn more about the possible values. | |
1919
| `usage` | [```AccountResponseUsage```](AccountResponseUsage.md) | | |
20+
| `settings` | [```AccountResponseSettings```](AccountResponseSettings.md) | | |
2021

docs/AccountResponseSettings.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Dropbox::Sign::AccountResponseSettings
2+
3+
Subset of configured settings
4+
5+
## Properties
6+
7+
| Name | Type | Description | Notes |
8+
| ---- | ---- | ----------- | ----- |
9+
| `signer_access_codes` | ```Boolean``` | Returns `true` if _Custom access codes_ is enabled in Admin Console. [Read more](https://developers.hellosign.com/docs/sms-tools/walkthrough). | |
10+
| `sms_delivery` | ```Boolean``` | Returns `true` if _Text message_ is enabled in Admin Console. [Read more](https://developers.hellosign.com/docs/sms-tools/walkthrough). | |
11+
| `sms_authentication` | ```Boolean``` | Returns `true` if _Signer authentication_ is enabled in Admin Console. [Read more](https://developers.hellosign.com/docs/sms-tools/walkthrough). | |
12+

docs/SignatureRequestApi.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,7 @@ signing_options.draw = true
390390
signing_options.phone = false
391391
signing_options.type = true
392392
signing_options.upload = true
393+
signing_options.force_advanced_signature_details = false
393394

394395
signers_1 = Dropbox::Sign::SubSignatureRequestSigner.new
395396
signers_1.name = "Jack"
@@ -497,6 +498,7 @@ signing_options.draw = true
497498
signing_options.phone = false
498499
signing_options.type = true
499500
signing_options.upload = true
501+
signing_options.force_advanced_signature_details = false
500502

501503
signers_1 = Dropbox::Sign::SubSignatureRequestTemplateSigner.new
502504
signers_1.role = "Client"
@@ -1609,6 +1611,7 @@ signing_options.draw = true
16091611
signing_options.phone = false
16101612
signing_options.type = true
16111613
signing_options.upload = true
1614+
signing_options.force_advanced_signature_details = false
16121615

16131616
signers_1 = Dropbox::Sign::SubSignatureRequestSigner.new
16141617
signers_1.name = "Jack"
@@ -1723,6 +1726,7 @@ signing_options.draw = true
17231726
signing_options.phone = false
17241727
signing_options.type = true
17251728
signing_options.upload = true
1729+
signing_options.force_advanced_signature_details = false
17261730

17271731
signers_1 = Dropbox::Sign::SubSignatureRequestTemplateSigner.new
17281732
signers_1.role = "Client"

docs/SignatureRequestEditRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
| `form_field_rules` | [```Array<SubFormFieldRule>```](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | |
2222
| `form_fields_per_document` | [```Array<SubFormFieldsPerDocumentBase>```](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)<br><br>**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.<br><br>* Text Field use `SubFormFieldsPerDocumentText`<br>* Dropdown Field use `SubFormFieldsPerDocumentDropdown`<br>* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`<br>* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`<br>* Radio Field use `SubFormFieldsPerDocumentRadio`<br>* Signature Field use `SubFormFieldsPerDocumentSignature`<br>* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`<br>* Initials Field use `SubFormFieldsPerDocumentInitials`<br>* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`<br>* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | |
2323
| `hide_text_tags` | ```Boolean``` | Enables automatic Text Tag removal when set to true.<br><br>**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [default to false] |
24-
| `is_eid` | ```Boolean``` | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.&lt;br&gt;<br>**NOTE:** eID is only available on the Premium API plan. Cannot be used in `test_mode`. Only works on requests with one signer. | [default to false] |
24+
| `is_eid` | ```Boolean``` | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.&lt;br&gt;<br>**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [default to false] |
2525
| `message` | ```String``` | The custom message in the email that will be sent to the signers. | |
2626
| `metadata` | ```Hash<String, Object>``` | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer&#39;s order number for look up when receiving events for the signature request.<br><br>Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | |
2727
| `signing_options` | [```SubSigningOptions```](SubSigningOptions.md) | | |

docs/SignatureRequestEditWithTemplateRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
| `custom_fields` | [```Array<SubCustomField>```](SubCustomField.md) | An array defining values and options for custom fields. Required when a custom field exists in the Template. | |
1515
| `files` | ```Array<File>``` | Use `files[]` to indicate the uploaded file(s) to send for signature.<br><br>This endpoint requires either **files** or **file_urls[]**, but not both. | |
1616
| `file_urls` | ```Array<String>``` | Use `file_urls[]` to have Dropbox Sign download the file(s) to send for signature.<br><br>This endpoint requires either **files** or **file_urls[]**, but not both. | |
17-
| `is_eid` | ```Boolean``` | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.&lt;br&gt;<br>**NOTE:** eID is only available on the Premium API plan. Cannot be used in `test_mode`. Only works on requests with one signer. | [default to false] |
17+
| `is_eid` | ```Boolean``` | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.&lt;br&gt;<br>**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [default to false] |
1818
| `message` | ```String``` | The custom message in the email that will be sent to the signers. | |
1919
| `metadata` | ```Hash<String, Object>``` | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer&#39;s order number for look up when receiving events for the signature request.<br><br>Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | |
2020
| `signing_options` | [```SubSigningOptions```](SubSigningOptions.md) | | |

docs/SignatureRequestSendRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
| `form_fields_per_document` | [```Array<SubFormFieldsPerDocumentBase>```](SubFormFieldsPerDocumentBase.md) | The fields that should appear on the document, expressed as an array of objects. (For more details you can read about it here: [Using Form Fields per Document](/docs/openapi/form-fields-per-document).)<br><br>**NOTE:** Fields like **text**, **dropdown**, **checkbox**, **radio**, and **hyperlink** have additional required and optional parameters. Check out the list of [additional parameters](/api/reference/constants/#form-fields-per-document) for these field types.<br><br>* Text Field use `SubFormFieldsPerDocumentText`<br>* Dropdown Field use `SubFormFieldsPerDocumentDropdown`<br>* Hyperlink Field use `SubFormFieldsPerDocumentHyperlink`<br>* Checkbox Field use `SubFormFieldsPerDocumentCheckbox`<br>* Radio Field use `SubFormFieldsPerDocumentRadio`<br>* Signature Field use `SubFormFieldsPerDocumentSignature`<br>* Date Signed Field use `SubFormFieldsPerDocumentDateSigned`<br>* Initials Field use `SubFormFieldsPerDocumentInitials`<br>* Text Merge Field use `SubFormFieldsPerDocumentTextMerge`<br>* Checkbox Merge Field use `SubFormFieldsPerDocumentCheckboxMerge` | |
2323
| `hide_text_tags` | ```Boolean``` | Enables automatic Text Tag removal when set to true.<br><br>**NOTE:** Removing text tags this way can cause unwanted clipping. We recommend leaving this setting on `false` and instead hiding your text tags using white text or a similar approach. See the [Text Tags Walkthrough](https://app.hellosign.com/api/textTagsWalkthrough#TextTagIntro) for more information. | [default to false] |
2424
| `is_qualified_signature` | ```Boolean``` | Send with a value of `true` if you wish to enable [Qualified Electronic Signatures](https://www.hellosign.com/features/qualified-electronic-signatures) (QES), which requires a face-to-face call to verify the signer&#39;s identity.&lt;br&gt;<br>**NOTE:** QES is only available on the Premium API plan as an add-on purchase. Cannot be used in `test_mode`. Only works on requests with one signer. | [default to false] |
25-
| `is_eid` | ```Boolean``` | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.&lt;br&gt;<br>**NOTE:** eID is only available on the Premium API plan. Cannot be used in `test_mode`. Only works on requests with one signer. | [default to false] |
25+
| `is_eid` | ```Boolean``` | Send with a value of `true` if you wish to enable [electronic identification (eID)](https://www.hellosign.com/features/electronic-id), which requires the signer to verify their identity with an eID provider to sign a document.&lt;br&gt;<br>**NOTE:** You need the eID add-on to use this feature. Please [contact sales](https://sign.dropbox.com/form/contact-sales) for more information. Cannot be used in `test_mode`. Only works on requests with one signer. | [default to false] |
2626
| `message` | ```String``` | The custom message in the email that will be sent to the signers. | |
2727
| `metadata` | ```Hash<String, Object>``` | Key-value data that should be attached to the signature request. This metadata is included in all API responses and events involving the signature request. For example, use the metadata field to store a signer&#39;s order number for look up when receiving events for the signature request.<br><br>Each request can include up to 10 metadata keys (or 50 nested metadata keys), with key names up to 40 characters long and values up to 1000 characters long. | |
2828
| `signing_options` | [```SubSigningOptions```](SubSigningOptions.md) | | |

0 commit comments

Comments
 (0)