Skip to content

Commit 2e138be

Browse files
Version 5.9.0-v2.1-21.1.01.03 release (#244)
Co-authored-by: DevCenter-DocuSign <[email protected]>
1 parent ecd6af4 commit 2e138be

40 files changed

+306
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# DocuSign Node Client Changelog
22

33
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
4+
## [v5.9.0] - eSignature API v2.1-21.1.01.03
5+
### Changed
6+
- Added support for version v2.1-21.1.01.03 of the DocuSign eSignature API.
7+
- Updated the SDK release version.
8+
49
## [v5.8.1] - eSignature API v2.1-20.3.01
510
### Changed
611
- Added support for version v2.1-20.3.01 of the DocuSign eSignature API.

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": "5.9.0-rc2",
3+
"version": "5.9.0",
44
"description": "DocuSign Node.js API client.",
55
"license": "MIT",
66
"main": "src/index.js",

src/api/EnvelopesApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ agent (can add name and email information for later recipients/signers) | [`agen
855855
carbon copy (receives a copy of the documents) | [`carbonCopy`](#/definitions/carbonCopy)
856856
certified delivery (receives a copy of the documents and must acknowledge receipt) | [`certifiedDelivery`](#/definitions/certifiedDelivery)
857857
editor (can change recipients and document fields for later recipients/signers) | [`editor`](#/definitions/editor)
858-
in-person signer ("hosts" someone who signs in-person) | [`inPersonSigner`](#/definitions/inPersonSigner)
858+
in-person signer (“hosts” someone who signs in-person) | [`inPersonSigner`](#/definitions/inPersonSigner)
859859
intermediary (can add name and email information for some later recipients/signers.) | [`intermediary`](#/definitions/intermediary)
860860
signer (signs and/or updates document fields) | [`signer`](#/definitions/signer)
861861
@@ -892,7 +892,7 @@ The Envelopes::create method includes an optional [eventNotification object](#de
892892
### Connect Webhooks
893893
Connect can be used to create a webhook for all envelopes sent by all users in an account, either through the API or via other DocuSign clients (web, mobile, etc). Connect configurations are independent of specific envelopes. A Connect configuration includes a filter that may be used to limit the webhook to specific users, envelope statuses, etc.
894894
895-
Connect configurations may be created and managed using the [ConnectConfigurations resource](../../Connect/ConnectConfigurations). Configurations can also be created and managed from the Administration tool accessed by selecting "Go to Admin" from the menu next to your picture on the DocuSign web app. See the Integrations/Connect section of the Admin tool. For repeatability, and to minimize support questions, creating Connect configurations via the API is recommended, especially for ISVs.
895+
Connect configurations may be created and managed using the [ConnectConfigurations resource](../../Connect/ConnectConfigurations). Configurations can also be created and managed from the Administration tool accessed by selecting “Go to Admin” from the menu next to your picture on the DocuSign web app. See the Integrations/Connect section of the Admin tool. For repeatability, and to minimize support questions, creating Connect configurations via the API is recommended, especially for ISVs.
896896
897897
Connect is available for some DocuSign account types. Please contact DocuSign Sales for more information.
898898
@@ -935,7 +935,7 @@ For example, if you have a simple inline template with only one tab in it with a
935935
936936
* The defaultRecipient field enables you to specify which recipient the generated tabs from a PDF form are mapped to. You can also set PDF form generated tabs to a recipient other than the DefaultRecipient by specifying the mapping of the tab label that is created to one of the template recipients.
937937
938-
* You can use tabLabel wild carding to map a series of tabs from the PDF form. To use this you must end a tab label with "\*" and then the system matches tabs that start with the label.
938+
* You can use tabLabel wild carding to map a series of tabs from the PDF form. To use this you must end a tab label with “\*” and then the system matches tabs that start with the label.
939939
940940
* If no DefaultRecipient is specified, tabs must be explicitly mapped to recipients in order to be generated from the form. Unmapped form objects will not be generated into their DocuSign equivalents. (In the case of Signature/Initials, the tabs will be disregarded entirely; in the case of pdf text fields, the field data will be flattened on the Envelope document, but there will not be a corresponding DocuSign data tab.)
941941
@@ -983,7 +983,7 @@ DocuSignSignerAttachmentOptional or eSignSignerAttachmentOptional | Optional Sig
983983
984984
Any other PDF Form Text Field will be transformed to a DocuSign data (text) tab.
985985
986-
PDF Form Field Names that include "DocuSignIgnoreTransform" or "eSignIgnoreTransform" will not be transformed.
986+
PDF Form Field Names that include “DocuSignIgnoreTransform” or “eSignIgnoreTransform” will not be transformed.
987987
988988
PDF Form Date fields will be transformed to Date Signed fields if their name includes DocuSignDateSigned or eSignDateSigned.
989989

src/model/Approve.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,9 @@
231231
if (data.hasOwnProperty('smartContractInformation')) {
232232
obj['smartContractInformation'] = SmartContractInformation.constructFromObject(data['smartContractInformation']);
233233
}
234+
if (data.hasOwnProperty('source')) {
235+
obj['source'] = ApiClient.convertToType(data['source'], 'String');
236+
}
234237
if (data.hasOwnProperty('status')) {
235238
obj['status'] = ApiClient.convertToType(data['status'], 'String');
236239
}
@@ -577,6 +580,11 @@
577580
* @member {module:model/SmartContractInformation} smartContractInformation
578581
*/
579582
exports.prototype['smartContractInformation'] = undefined;
583+
/**
584+
*
585+
* @member {String} source
586+
*/
587+
exports.prototype['source'] = undefined;
580588
/**
581589
* Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.
582590
* @member {String} status

src/model/Checkbox.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,9 @@
258258
if (data.hasOwnProperty('smartContractInformation')) {
259259
obj['smartContractInformation'] = SmartContractInformation.constructFromObject(data['smartContractInformation']);
260260
}
261+
if (data.hasOwnProperty('source')) {
262+
obj['source'] = ApiClient.convertToType(data['source'], 'String');
263+
}
261264
if (data.hasOwnProperty('status')) {
262265
obj['status'] = ApiClient.convertToType(data['status'], 'String');
263266
}
@@ -645,6 +648,11 @@
645648
* @member {module:model/SmartContractInformation} smartContractInformation
646649
*/
647650
exports.prototype['smartContractInformation'] = undefined;
651+
/**
652+
*
653+
* @member {String} source
654+
*/
655+
exports.prototype['source'] = undefined;
648656
/**
649657
* Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.
650658
* @member {String} status

src/model/CommentThread.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,9 @@
228228
if (data.hasOwnProperty('smartContractInformation')) {
229229
obj['smartContractInformation'] = SmartContractInformation.constructFromObject(data['smartContractInformation']);
230230
}
231+
if (data.hasOwnProperty('source')) {
232+
obj['source'] = ApiClient.convertToType(data['source'], 'String');
233+
}
231234
if (data.hasOwnProperty('status')) {
232235
obj['status'] = ApiClient.convertToType(data['status'], 'String');
233236
}
@@ -573,6 +576,11 @@
573576
* @member {module:model/SmartContractInformation} smartContractInformation
574577
*/
575578
exports.prototype['smartContractInformation'] = undefined;
579+
/**
580+
*
581+
* @member {String} source
582+
*/
583+
exports.prototype['source'] = undefined;
576584
/**
577585
* Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.
578586
* @member {String} status

src/model/CommissionCounty.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,9 @@
267267
if (data.hasOwnProperty('smartContractInformation')) {
268268
obj['smartContractInformation'] = SmartContractInformation.constructFromObject(data['smartContractInformation']);
269269
}
270+
if (data.hasOwnProperty('source')) {
271+
obj['source'] = ApiClient.convertToType(data['source'], 'String');
272+
}
270273
if (data.hasOwnProperty('status')) {
271274
obj['status'] = ApiClient.convertToType(data['status'], 'String');
272275
}
@@ -673,6 +676,11 @@
673676
* @member {module:model/SmartContractInformation} smartContractInformation
674677
*/
675678
exports.prototype['smartContractInformation'] = undefined;
679+
/**
680+
*
681+
* @member {String} source
682+
*/
683+
exports.prototype['source'] = undefined;
676684
/**
677685
* Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.
678686
* @member {String} status

src/model/CommissionExpiration.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,9 @@
267267
if (data.hasOwnProperty('smartContractInformation')) {
268268
obj['smartContractInformation'] = SmartContractInformation.constructFromObject(data['smartContractInformation']);
269269
}
270+
if (data.hasOwnProperty('source')) {
271+
obj['source'] = ApiClient.convertToType(data['source'], 'String');
272+
}
270273
if (data.hasOwnProperty('status')) {
271274
obj['status'] = ApiClient.convertToType(data['status'], 'String');
272275
}
@@ -673,6 +676,11 @@
673676
* @member {module:model/SmartContractInformation} smartContractInformation
674677
*/
675678
exports.prototype['smartContractInformation'] = undefined;
679+
/**
680+
*
681+
* @member {String} source
682+
*/
683+
exports.prototype['source'] = undefined;
676684
/**
677685
* Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.
678686
* @member {String} status

src/model/CommissionNumber.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,9 @@
267267
if (data.hasOwnProperty('smartContractInformation')) {
268268
obj['smartContractInformation'] = SmartContractInformation.constructFromObject(data['smartContractInformation']);
269269
}
270+
if (data.hasOwnProperty('source')) {
271+
obj['source'] = ApiClient.convertToType(data['source'], 'String');
272+
}
270273
if (data.hasOwnProperty('status')) {
271274
obj['status'] = ApiClient.convertToType(data['status'], 'String');
272275
}
@@ -673,6 +676,11 @@
673676
* @member {module:model/SmartContractInformation} smartContractInformation
674677
*/
675678
exports.prototype['smartContractInformation'] = undefined;
679+
/**
680+
*
681+
* @member {String} source
682+
*/
683+
exports.prototype['source'] = undefined;
676684
/**
677685
* Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.
678686
* @member {String} status

src/model/CommissionState.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,9 @@
267267
if (data.hasOwnProperty('smartContractInformation')) {
268268
obj['smartContractInformation'] = SmartContractInformation.constructFromObject(data['smartContractInformation']);
269269
}
270+
if (data.hasOwnProperty('source')) {
271+
obj['source'] = ApiClient.convertToType(data['source'], 'String');
272+
}
270273
if (data.hasOwnProperty('status')) {
271274
obj['status'] = ApiClient.convertToType(data['status'], 'String');
272275
}
@@ -673,6 +676,11 @@
673676
* @member {module:model/SmartContractInformation} smartContractInformation
674677
*/
675678
exports.prototype['smartContractInformation'] = undefined;
679+
/**
680+
*
681+
* @member {String} source
682+
*/
683+
exports.prototype['source'] = undefined;
676684
/**
677685
* Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later.
678686
* @member {String} status

0 commit comments

Comments
 (0)