Skip to content

Commit 8304f9f

Browse files
raileendrroot
andauthored
Version 6.3.0-v2.1-23.2.00.00 release (#330)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent c630885 commit 8304f9f

15 files changed

Lines changed: 296 additions & 15 deletions

CHANGELOG.md

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

44

5+
## [v6.3.0] - eSignature API v2.1-23.2.00.00 - 2023-05-15
6+
### Changed
7+
- Added support for version v2.1-23.2.00.00 of the DocuSign ESignature API.
8+
- Updated the SDK release version.
9+
510
## [v6.2.0] - eSignature API v2.1-23.1.01.01 - 2023-04-05
611
### Changed
712
- Added support for version v2.1-23.1.01.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": "6.2.0",
3+
"version": "6.3.0",
44
"description": "DocuSign Node.js API client.",
55
"license": "MIT",
66
"main": "src/index.js",

src/api/AccountsApi.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,7 +1658,8 @@ The `canUpgrade` property contains is a Boolean that indicates whether the accou
16581658
* @param {Object} optsOrCallback Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely.
16591659
* @param {String} optsOrCallback.activeOnly
16601660
* @param {String} optsOrCallback.count
1661-
* @param {String} optsOrCallback.emailSubstring
1661+
* @param {String} optsOrCallback.emailSubstring Part (substring) of email we are searching for.
1662+
* @param {String} optsOrCallback.includeClosedUsers
16621663
* @param {String} optsOrCallback.permissions
16631664
* @param {String} optsOrCallback.startPosition
16641665
* @param {String} optsOrCallback.userNameSubstring
@@ -1700,6 +1701,7 @@ The `canUpgrade` property contains is a Boolean that indicates whether the accou
17001701
'active_only': optsOrCallback['activeOnly'],
17011702
'count': optsOrCallback['count'],
17021703
'email_substring': optsOrCallback['emailSubstring'],
1704+
'include_closed_users': optsOrCallback['includeClosedUsers'],
17031705
'permissions': optsOrCallback['permissions'],
17041706
'start_position': optsOrCallback['startPosition'],
17051707
'user_name_substring': optsOrCallback['userNameSubstring']
@@ -2194,7 +2196,7 @@ A brand uses a set of brand resource files to control the sending, signing, emai
21942196
* Gets the Electronic Record and Signature Disclosure.
21952197
* Retrieves the Electronic Record and Signature Disclosure, with HTML formatting, for the requested envelope recipient. This might be different than the current account disclosure depending on account settings, such as branding, and when the account disclosure was last updated. An optional query string can be included to return the language for the disclosure.
21962198
* @param {String} accountId The external account number (int) or account ID Guid.
2197-
* @param {String} langCode The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language.
2199+
* @param {String} langCode The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language.
21982200
* @param {module:api/AccountsApi~getConsumerDisclosureCallback} callback The callback function, accepting three arguments: error, data, response
21992201
* data is of type: {@link module:model/ConsumerDisclosure}
22002202
*/
@@ -2699,7 +2701,8 @@ A brand uses a set of brand resource files to control the sending, signing, emai
26992701
* @param {Object} optsOrCallback Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely.
27002702
* @param {String} optsOrCallback.activeOnly
27012703
* @param {String} optsOrCallback.count
2702-
* @param {String} optsOrCallback.emailSubstring
2704+
* @param {String} optsOrCallback.emailSubstring Part (substring) of email we are searching for.
2705+
* @param {String} optsOrCallback.includeClosedUsers
27032706
* @param {String} optsOrCallback.permissions
27042707
* @param {String} optsOrCallback.startPosition
27052708
* @param {String} optsOrCallback.userNameSubstring
@@ -2741,6 +2744,7 @@ A brand uses a set of brand resource files to control the sending, signing, emai
27412744
'active_only': optsOrCallback['activeOnly'],
27422745
'count': optsOrCallback['count'],
27432746
'email_substring': optsOrCallback['emailSubstring'],
2747+
'include_closed_users': optsOrCallback['includeClosedUsers'],
27442748
'permissions': optsOrCallback['permissions'],
27452749
'start_position': optsOrCallback['startPosition'],
27462750
'user_name_substring': optsOrCallback['userNameSubstring']
@@ -4152,7 +4156,7 @@ When you update a custom disclosure, you can update all of the properties except
41524156
41534157
41544158
* @param {String} accountId The external account number (int) or account ID Guid.
4155-
* @param {String} langCode The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language.
4159+
* @param {String} langCode The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language.
41564160
* @param {Object} optsOrCallback Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely.
41574161
* @param {String} optsOrCallback.includeMetadata
41584162
* @param {module:model/ConsumerDisclosure} optsOrCallback.consumerDisclosure

src/api/BillingApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ The following table provides a description of the different `chargeName` propert
230230
231231
| chargeName | Description |
232232
| --- | --- |
233-
| id_check | IDÂ Check Charge |
233+
| id_check | ID Check Charge |
234234
| in_person_signing | In Person Signing charge |
235235
| envelopes Included | Sent Envelopes for the account |
236236
| age_verify | Age verification check |

src/api/EnvelopesApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4053,7 +4053,7 @@ stream.
40534053
* @param {String} accountId The external account number (int) or account ID Guid.
40544054
* @param {String} envelopeId The envelopeId Guid of the envelope being accessed.
40554055
* @param {String} recipientId The ID of the recipient being accessed.
4056-
* @param {String} langCode The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language.
4056+
* @param {String} langCode The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language.
40574057
* @param {Object} optsOrCallback Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely.
40584058
* @param {String} optsOrCallback.langCode2 The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language.
40594059
* @param {module:api/EnvelopesApi~getConsumerDisclosureCallback} callback The callback function, accepting three arguments: error, data, response

0 commit comments

Comments
 (0)