Skip to content

Commit 0d2d64d

Browse files
vinzroot
andauthored
Version 8.0.0-v2.1-24.2.00.00 release (#365)
Co-authored-by: root <[email protected]>
1 parent 0d92a1d commit 0d2d64d

File tree

4 files changed

+77
-3
lines changed

4 files changed

+77
-3
lines changed

CHANGELOG.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,80 @@
22
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
33

44

5+
## [v8.0.0] - eSignature API v2.1-24.2.00.00 - 2024-07-25
6+
### Breaking Changes
7+
8+
<details>
9+
<summary>API Changes (Click to expand)</summary>
10+
11+
<div style="margin-left: 20px;">
12+
13+
<br/>
14+
Added support for version v2.1-24.2.00.00 of the Docusign ESignature API.
15+
16+
## Endpoint-Specific Changes
17+
18+
### Updated [Envelopes: get](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/get/)
19+
Added new optional query parameter named `include_anchor_tab_locations` of type string.
20+
21+
### Updated [Envelopes: update](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/update/)
22+
Added new optional query parameter named `recycle_on_void` of type string.
23+
24+
### Updated [EnvelopeViews : createCorrect](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeviews/createcorrect/)
25+
Request body object `correctViewRequest` has been changed to `envelopeViewRequest`.
26+
27+
## Model Changes
28+
29+
### Updated existing models
30+
31+
### `accountInformation`
32+
33+
- **Added fields:**
34+
- `freeEnvelopeSendsRemainingForAdvancedDocGen`
35+
36+
### `accountSettingsInformation`
37+
38+
- **Added fields:**
39+
- `defaultSigningResponsiveView`
40+
- `defaultSigningResponsiveViewMetadata`
41+
- `dss_SCOREFDN_196_Rebrand_DocuSignIsNotAVerb`
42+
- `enableAdditionalAdvancedWebFormsFeatures`
43+
- `enableAdditionalAdvancedWebFormsFeaturesMetadata`
44+
45+
- **Removed fields:**
46+
- `enableSaveAsEnvelopeCustomFieldInWebForms`
47+
- `enableSaveAsEnvelopeCustomFieldInWebFormsMetadata`
48+
49+
### `bulksendingCopyDocGenFormField`
50+
51+
- **Added field:**
52+
- `rowValues`
53+
54+
### `notaryRecipient`
55+
56+
- **Added field:**
57+
- `canNotaryCorrectEnvelope`
58+
59+
### `tabAccountSettings`
60+
61+
- **Added field:**
62+
- `enableTabAgreementDetails`
63+
- `enableTabAgreementDetailsMetadata`
64+
65+
66+
### Newly added Models
67+
68+
- `bulkSendingCopyDocGenFormFieldRowValue`
69+
70+
</div>
71+
</details>
72+
73+
74+
### Other Changes
75+
- Converted `defaultHeaders` from a shared global state to a local state within each `ApiClient` instance.
76+
- Fixed the overriding of the Authorization header in `GetUserInfo` when `defaultHeaders` already had an Authorization header.
77+
- Updated the SDK release version.
78+
579
## [v8.0.0-rc2] - eSignature API v2.1-24.2.00.00 - 2024-07-19
680
### Changed
781
- Converted `defaultHeaders` from a shared global state to a local state within each `ApiClient` instance.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This client SDK is provided as open source, which enables you to customize its f
3232
<a id="versionInformation"></a>
3333
### Version Information
3434
- **API version**: v2.1
35-
- **Latest SDK version**: 8.0.0-rc2
35+
- **Latest SDK version**: 8.0.0
3636

3737
<a id="requirements"></a>
3838
## Requirements

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docusign-esign",
3-
"version": "8.0.0-rc2",
3+
"version": "8.0.0",
44
"description": "Docusign Node.js API client.",
55
"license": "MIT",
66
"main": "src/index.js",

src/ApiClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
this.defaultHeaders = {
186186
"X-DocuSign-SDK": "Node",
187187
"Node-Ver": process.version,
188-
"User-Agent": `Swagger-Codegen/v2.1/8.0.0-rc2/node/${process.version}`,
188+
"User-Agent": `Swagger-Codegen/v2.1/8.0.0/node/${process.version}`,
189189
};
190190

191191
opts = {...defaults, ...opts};

0 commit comments

Comments
 (0)