Skip to content

Commit e909d1c

Browse files
Release 2.7.0 (#46)
1 parent 504372f commit e909d1c

45 files changed

Lines changed: 671 additions & 310 deletions

Some content is hidden

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

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Add this dependency to your project's POM:
5656
<dependency>
5757
<groupId>com.dropbox.sign</groupId>
5858
<artifactId>dropbox-sign</artifactId>
59-
<version>2.6.0</version>
59+
<version>2.7.0</version>
6060
<scope>compile</scope>
6161
</dependency>
6262
```
@@ -72,7 +72,7 @@ Add this dependency to your project's build file:
7272
}
7373
7474
dependencies {
75-
implementation "com.dropbox.sign:dropbox-sign:2.6.0"
75+
implementation "com.dropbox.sign:dropbox-sign:2.7.0"
7676
}
7777
```
7878

@@ -86,7 +86,7 @@ mvn clean package
8686

8787
Then manually install the following JARs:
8888

89-
- `target/dropbox-sign-2.6.0.jar`
89+
- `target/dropbox-sign-2.7.0.jar`
9090
- `target/lib/*.jar`
9191

9292
## Getting Started
@@ -232,6 +232,7 @@ Class | Method | HTTP request | Description
232232
- [AccountGetResponse](docs/AccountGetResponse.md)
233233
- [AccountResponse](docs/AccountResponse.md)
234234
- [AccountResponseQuotas](docs/AccountResponseQuotas.md)
235+
- [AccountResponseSettings](docs/AccountResponseSettings.md)
235236
- [AccountResponseUsage](docs/AccountResponseUsage.md)
236237
- [AccountUpdateRequest](docs/AccountUpdateRequest.md)
237238
- [AccountVerifyRequest](docs/AccountVerifyRequest.md)
@@ -375,7 +376,6 @@ Class | Method | HTTP request | Description
375376
- [TemplateCreateRequest](docs/TemplateCreateRequest.md)
376377
- [TemplateCreateResponse](docs/TemplateCreateResponse.md)
377378
- [TemplateCreateResponseTemplate](docs/TemplateCreateResponseTemplate.md)
378-
- [TemplateEditResponse](docs/TemplateEditResponse.md)
379379
- [TemplateGetResponse](docs/TemplateGetResponse.md)
380380
- [TemplateListResponse](docs/TemplateListResponse.md)
381381
- [TemplateRemoveUserRequest](docs/TemplateRemoveUserRequest.md)
@@ -453,7 +453,7 @@ apisupport@hellosign.com
453453
This Java package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
454454

455455
- API version: `3.0.0`
456-
- Package version: `2.6.0`
456+
- Package version: `2.7.0`
457457
- Build package: `org.openapitools.codegen.languages.JavaClientCodegen`
458458

459459

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.0
1+
2.7.0

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ apply plugin: 'signing'
2121

2222
group = 'com.dropbox.sign'
2323
archivesBaseName = 'dropbox-sign'
24-
version = '2.6.0'
24+
version = '2.7.0'
2525
sourceCompatibility = JavaVersion.VERSION_1_8
2626
targetCompatibility = JavaVersion.VERSION_1_8
2727

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.dropbox.sign",
44
name := "dropbox-sign",
5-
version := "2.6.0",
5+
version := "2.7.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
Compile / javacOptions ++= Seq("-Xlint:deprecation"),

docs/AccountResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
| `teamId` | ```String``` | The id of the team account belongs to. | |
2020
| `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. | |
2121
| `usage` | [```AccountResponseUsage```](AccountResponseUsage.md) | | |
22+
| `settings` | [```AccountResponseSettings```](AccountResponseSettings.md) | | |
2223

2324

2425

docs/AccountResponseSettings.md

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

docs/ReportCreateRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
| USER_ACTIVITY | &quot;user_activity&quot; |
2222
| DOCUMENT_STATUS | &quot;document_status&quot; |
2323
| SMS_ACTIVITY | &quot;sms_activity&quot; |
24+
| FAX_USAGE | &quot;fax_usage&quot; |
2425

2526

2627

docs/ReportResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Contains information about the report request.
2222
| USER_ACTIVITY | &quot;user_activity&quot; |
2323
| DOCUMENT_STATUS | &quot;document_status&quot; |
2424
| SMS_ACTIVITY | &quot;sms_activity&quot; |
25+
| FAX_USAGE | &quot;fax_usage&quot; |
2526

2627

2728

docs/SignatureRequestApi.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,7 @@ public class SignatureRequestCreateEmbeddedExample
459459
signingOptions.phone(false);
460460
signingOptions.type(true);
461461
signingOptions.upload(true);
462+
signingOptions.forceAdvancedSignatureDetails(false);
462463

463464
var signers1 = new SubSignatureRequestSigner();
464465
signers1.name("Jack");
@@ -579,6 +580,7 @@ public class SignatureRequestCreateEmbeddedWithTemplateExample
579580
signingOptions.phone(false);
580581
signingOptions.type(true);
581582
signingOptions.upload(true);
583+
signingOptions.forceAdvancedSignatureDetails(false);
582584

583585
var signers1 = new SubSignatureRequestTemplateSigner();
584586
signers1.role("Client");
@@ -1874,6 +1876,7 @@ public class SignatureRequestSendExample
18741876
signingOptions.phone(false);
18751877
signingOptions.type(true);
18761878
signingOptions.upload(true);
1879+
signingOptions.forceAdvancedSignatureDetails(false);
18771880

18781881
var signers1 = new SubSignatureRequestSigner();
18791882
signers1.name("Jack");
@@ -2000,6 +2003,7 @@ public class SignatureRequestSendWithTemplateExample
20002003
signingOptions.phone(false);
20012004
signingOptions.type(true);
20022005
signingOptions.upload(true);
2006+
signingOptions.forceAdvancedSignatureDetails(false);
20032007

20042008
var signers1 = new SubSignatureRequestTemplateSigner();
20052009
signers1.role("Client");

docs/SignatureRequestEditRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
| `formFieldRules` | [```List<SubFormFieldRule>```](SubFormFieldRule.md) | Conditional Logic rules for fields defined in `form_fields_per_document`. | |
2424
| `formFieldsPerDocument` | [```List<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` | |
2525
| `hideTextTags` | ```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. | |
26-
| `isEid` | ```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. | |
26+
| `isEid` | ```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. | |
2727
| `message` | ```String``` | The custom message in the email that will be sent to the signers. | |
2828
| `metadata` | ```Map<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. | |
2929
| `signingOptions` | [```SubSigningOptions```](SubSigningOptions.md) | | |

0 commit comments

Comments
 (0)