Skip to content

Commit 429c522

Browse files
garg-muditroot
andauthored
Version 8.0.0-rc1-v2.1-24.2.00.00 release (#358)
Co-authored-by: root <[email protected]>
1 parent 37b6a52 commit 429c522

File tree

528 files changed

+1301
-1091
lines changed

Some content is hidden

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

528 files changed

+1301
-1091
lines changed

CHANGELOG.md

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

44

5+
## [v8.0.0-rc1] - eSignature API v2.1-24.2.00.00 - 2024-07-02
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+
### Other Changes
74+
- Updated the SDK release version.
75+
76+
577
## [v7.0.2] - eSignature API v2.1-24.1.01.00 - 2024-06-06
678
### Changed
779
- Resolved an issue with the PDF download logic that caused corrupted data.

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**: 7.0.2
35+
- **Latest SDK version**: 8.0.0-rc1
3636

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docusign-esign",
3-
"version": "7.0.2",
3+
"version": "8.0.0-rc1",
44
"description": "DocuSign Node.js API client.",
55
"license": "MIT",
66
"main": "src/index.js",
@@ -64,7 +64,7 @@
6464
"jsdoc": "3.6.10",
6565
"mocha": "~5.0.4",
6666
"mocha-junit-reporter": "^1.18.0",
67-
"pdf2json": "^3.1.3",
67+
"pdf-parse-fork": "^1.2.0",
6868
"semistandard": "^12.0.1"
6969
}
7070
}

src/ApiClient.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* DocuSign REST API
3-
* The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
2+
* Docusign eSignature REST API
3+
* The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
44
*
55
* OpenAPI spec version: v2.1
66
* Contact: [email protected]
@@ -37,7 +37,7 @@
3737
var defaultHeaders = {
3838
"X-DocuSign-SDK": "Node",
3939
"Node-Ver": process.version,
40-
"User-Agent": `Swagger-Codegen/v2.1/7.0.2/node/${process.version}`,
40+
"User-Agent": `Swagger-Codegen/v2.1/8.0.0-rc1/node/${process.version}`,
4141
};
4242

4343
var SCOPE_SIGNATURE = "signature";

src/api/AccountsApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* DocuSign REST API
3-
* The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
2+
* Docusign eSignature REST API
3+
* The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
44
*
55
* OpenAPI spec version: v2.1
66
* Contact: [email protected]

src/api/AuthenticationApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* DocuSign REST API
3-
* The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
2+
* Docusign eSignature REST API
3+
* The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
44
*
55
* OpenAPI spec version: v2.1
66
* Contact: [email protected]

src/api/BillingApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* DocuSign REST API
3-
* The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
2+
* Docusign eSignature REST API
3+
* The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
44
*
55
* OpenAPI spec version: v2.1
66
* Contact: [email protected]

src/api/BulkEnvelopesApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* DocuSign REST API
3-
* The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
2+
* Docusign eSignature REST API
3+
* The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
44
*
55
* OpenAPI spec version: v2.1
66
* Contact: [email protected]

src/api/BulkProcessDataApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* DocuSign REST API
3-
* The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
2+
* Docusign eSignature REST API
3+
* The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
44
*
55
* OpenAPI spec version: v2.1
66
* Contact: [email protected]

src/api/BulkProcessDataSendApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* DocuSign REST API
3-
* The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
2+
* Docusign eSignature REST API
3+
* The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
44
*
55
* OpenAPI spec version: v2.1
66
* Contact: [email protected]

0 commit comments

Comments
 (0)