Skip to content

Commit

Permalink
Version 5.0.0-v2.1-24.1.01.00 release (#279)
Browse files Browse the repository at this point in the history
Co-authored-by: root <[email protected]>
  • Loading branch information
asif-docusign and root authored May 22, 2024
1 parent baf8ca5 commit 3baeff8
Show file tree
Hide file tree
Showing 3 changed files with 107 additions and 2 deletions.
105 changes: 105 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,111 @@
# DocuSign Java Client Changelog
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.

## [v5.0.0] - eSignature API v2.1-24.1.01.00 - 2024-05-22
## Endpoint-Specific Changes

### Updated [EnvelopeRecipients: createRecipientProofFileResourceToken](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/enveloperecipients/createrecipientprooffileresourcetoken/)
The `"token_scopes"` parameter has been moved from path parameters to query parameters for the above mentioned endpoint.

### Updated [EnvelopeView:CreateSender](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeviews/createsender/) and [EnvelopeView:CreateEdit](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeviews/createedit/)
The body parameter `returnUrlRequest` has been changed to `envelopeViewRequest`.
`envelopeViewRequest` has the same properties as the previous `returnUrlRequest` but now includes additional `viewAccess` and `settings` properties, where settings is a complex object with several UI controls for the view experience.

### Updated [TemplateViews: createEdit](https://developers.docusign.com/docs/esign-rest-api/reference/templates/templateviews/createedit/)
The body parameter `returnUrlRequest` has been changed to `templateViewRequest`.
`templateViewRequest` has the same properties as the previous `returnUrlRequest` but now includes an additional `viewAccess` string.

## Model Changes

- Updated existing models

### `accountSettingsInformation`

- **Added fields:**
- `allowConnectEnvelopeRemovedEvent`
- `allowOrganizationBranding`
- `allowOrganizationBrandingMetadata`
- `allowPendingDestinationUrlEdition`
- `allowPendingDestinationUrlEditionMetadata`
- `disableBulkSendRecipientLimit`
- `disableBulkSendRecipientLimitMetaData`
- `enableAdvancedSearch`
- `enableAdvancedSearchMetadata`
- `enableContentSearch`
- `enableContentSearchMetadata`
- `enableMultiUserRepositoryFeatures`
- `enableMultiUserRepositoryFeaturesMetadata`
- `enablePremiumDataVerificationExtensions`
- `enablePremiumDataVerificationExtensionsMetadata`
- `enableSaveAsEnvelopeCustomFieldInWebForms`
- `enableSaveAsEnvelopeCustomFieldInWebFormsMetadata`
- `enableScheduledRelease`
- `enableScheduledReleaseMetadata`
- `isvOemEmbed`
- `isvOemEmbedMetaData`

- **Removed fields:**
- `enableInboxRelevanceSortForRecentAccounts`
- `enableInboxRelevanceSortForRecentAccountsMetadata`
- `enableScheduledRelease`
- `enableScheduledReleaseMetadata`
- `enableSearch`
- `enableSearchMetadata`
- `enableSearchUI`
- `enableSearchUIMetadata`

### `accountUISettings`

- **Added fields:**
- `enableEnvelopeTypes`
- `enableEnvelopeTypesMetadata`

### `envelopDefinitions`

- **Added field:**
- `uSigState`

### `envelopTemplate`

- **Added field:**
- `uSigState`

### `group`

- **Added property:**
- `lastModifiedOn`

### `receipientViewRequest`

- **Added property:**
- `displayFormat`

### `userSettingsInformation`

- **Added properties:**
- `accountAgreementsAccessType`
- `accountAgreementsAccessTypeMetadata`
- `canBulkUploadAgreements`
- `canBulkUploadAgreementsMetadata`
- `canManageAgreementParties`
- `canManageAgreementPartiesMetadata`

### Newly added Models

- `envelopeViewDocumentSettings`
- `envelopeViewEnvelopeCustomFieldSettings`
- `envelopeViewRecipientSettings`
- `envelopeViewRequest`
- `envelopeViewSettings`
- `envelopeViewTaggerSettings`
- `envelopeViewTemplateSettings`
- `paletteItemSettings`
- `paletteSettings`
- `templateViewRequest`

### Removed Models
- `returnUrlRequest`

## [v5.0.0-RC1] - eSignature API v2.1-24.1.01.00 - 2024-05-02
### Changed
- Added support for version v2.1-24.1.01.00 of the DocuSign ESignature API.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>docusign-esign-java</artifactId>
<packaging>jar</packaging>
<name>docusign-esign-java</name>
<version>5.0.0-RC1</version>
<version>5.0.0</version>
<url>https://developers.docusign.com</url>
<description>The official DocuSign eSignature JAVA client is based on version 2.1 of the DocuSign REST API and provides libraries for JAVA application integration. It is recommended that you use this version of the library for new development.</description>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/docusign/esign/client/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public ApiClient() {
String javaVersion = System.getProperty("java.version");

// Set default User-Agent.
setUserAgent("Swagger-Codegen/v2.1/5.0.0-RC1/Java/" + javaVersion);
setUserAgent("Swagger-Codegen/v2.1/5.0.0/Java/" + javaVersion);

// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap<String, Authentication>();
Expand Down

0 comments on commit 3baeff8

Please sign in to comment.