Skip to content

Commit 3baeff8

Browse files
asif-docusignroot
andauthored
Version 5.0.0-v2.1-24.1.01.00 release (#279)
Co-authored-by: root <[email protected]>
1 parent baf8ca5 commit 3baeff8

File tree

3 files changed

+107
-2
lines changed

3 files changed

+107
-2
lines changed

CHANGELOG.md

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,111 @@
11
# DocuSign Java Client Changelog
22
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
33

4+
## [v5.0.0] - eSignature API v2.1-24.1.01.00 - 2024-05-22
5+
## Endpoint-Specific Changes
6+
7+
### Updated [EnvelopeRecipients: createRecipientProofFileResourceToken](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/enveloperecipients/createrecipientprooffileresourcetoken/)
8+
The `"token_scopes"` parameter has been moved from path parameters to query parameters for the above mentioned endpoint.
9+
10+
### 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/)
11+
The body parameter `returnUrlRequest` has been changed to `envelopeViewRequest`.
12+
`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.
13+
14+
### Updated [TemplateViews: createEdit](https://developers.docusign.com/docs/esign-rest-api/reference/templates/templateviews/createedit/)
15+
The body parameter `returnUrlRequest` has been changed to `templateViewRequest`.
16+
`templateViewRequest` has the same properties as the previous `returnUrlRequest` but now includes an additional `viewAccess` string.
17+
18+
## Model Changes
19+
20+
- Updated existing models
21+
22+
### `accountSettingsInformation`
23+
24+
- **Added fields:**
25+
- `allowConnectEnvelopeRemovedEvent`
26+
- `allowOrganizationBranding`
27+
- `allowOrganizationBrandingMetadata`
28+
- `allowPendingDestinationUrlEdition`
29+
- `allowPendingDestinationUrlEditionMetadata`
30+
- `disableBulkSendRecipientLimit`
31+
- `disableBulkSendRecipientLimitMetaData`
32+
- `enableAdvancedSearch`
33+
- `enableAdvancedSearchMetadata`
34+
- `enableContentSearch`
35+
- `enableContentSearchMetadata`
36+
- `enableMultiUserRepositoryFeatures`
37+
- `enableMultiUserRepositoryFeaturesMetadata`
38+
- `enablePremiumDataVerificationExtensions`
39+
- `enablePremiumDataVerificationExtensionsMetadata`
40+
- `enableSaveAsEnvelopeCustomFieldInWebForms`
41+
- `enableSaveAsEnvelopeCustomFieldInWebFormsMetadata`
42+
- `enableScheduledRelease`
43+
- `enableScheduledReleaseMetadata`
44+
- `isvOemEmbed`
45+
- `isvOemEmbedMetaData`
46+
47+
- **Removed fields:**
48+
- `enableInboxRelevanceSortForRecentAccounts`
49+
- `enableInboxRelevanceSortForRecentAccountsMetadata`
50+
- `enableScheduledRelease`
51+
- `enableScheduledReleaseMetadata`
52+
- `enableSearch`
53+
- `enableSearchMetadata`
54+
- `enableSearchUI`
55+
- `enableSearchUIMetadata`
56+
57+
### `accountUISettings`
58+
59+
- **Added fields:**
60+
- `enableEnvelopeTypes`
61+
- `enableEnvelopeTypesMetadata`
62+
63+
### `envelopDefinitions`
64+
65+
- **Added field:**
66+
- `uSigState`
67+
68+
### `envelopTemplate`
69+
70+
- **Added field:**
71+
- `uSigState`
72+
73+
### `group`
74+
75+
- **Added property:**
76+
- `lastModifiedOn`
77+
78+
### `receipientViewRequest`
79+
80+
- **Added property:**
81+
- `displayFormat`
82+
83+
### `userSettingsInformation`
84+
85+
- **Added properties:**
86+
- `accountAgreementsAccessType`
87+
- `accountAgreementsAccessTypeMetadata`
88+
- `canBulkUploadAgreements`
89+
- `canBulkUploadAgreementsMetadata`
90+
- `canManageAgreementParties`
91+
- `canManageAgreementPartiesMetadata`
92+
93+
### Newly added Models
94+
95+
- `envelopeViewDocumentSettings`
96+
- `envelopeViewEnvelopeCustomFieldSettings`
97+
- `envelopeViewRecipientSettings`
98+
- `envelopeViewRequest`
99+
- `envelopeViewSettings`
100+
- `envelopeViewTaggerSettings`
101+
- `envelopeViewTemplateSettings`
102+
- `paletteItemSettings`
103+
- `paletteSettings`
104+
- `templateViewRequest`
105+
106+
### Removed Models
107+
- `returnUrlRequest`
108+
4109
## [v5.0.0-RC1] - eSignature API v2.1-24.1.01.00 - 2024-05-02
5110
### Changed
6111
- Added support for version v2.1-24.1.01.00 of the DocuSign ESignature API.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>docusign-esign-java</artifactId>
66
<packaging>jar</packaging>
77
<name>docusign-esign-java</name>
8-
<version>5.0.0-RC1</version>
8+
<version>5.0.0</version>
99
<url>https://developers.docusign.com</url>
1010
<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>
1111

src/main/java/com/docusign/esign/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public ApiClient() {
9696
String javaVersion = System.getProperty("java.version");
9797

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

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

0 commit comments

Comments
 (0)