Skip to content

Commit 2e30eae

Browse files
Version v5.12.0-rc1-v2.1-21.2.02.00 release (#266)
Co-authored-by: dhaval-brahmbhatt <[email protected]>
1 parent 2f2236a commit 2e30eae

23 files changed

+191
-72
lines changed

CHANGELOG.md

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

44

5-
## [v5.11.1] - eSignature API v2.1-21.2.00.00 (07/29/2021)
5+
## [v5.12.0-rc1] - eSignature API v2.1-21.2.02.00 - 2021-08-11
6+
### Changed
7+
- Added support for version v2.1-21.2.02.00 of the DocuSign ESignature API.
8+
- Updated the SDK release version.
9+
10+
11+
## [v5.11.1] - eSignature API v2.1-21.2.00.00 - 2021-07-29
612
### Changed
713
- Updated Get Form Data unit test.
814
- Updated Travis-CI badge in README.md

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

src/api/BulkEnvelopesApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,12 +316,12 @@
316316
* @param {String} accountId The external account number (int) or account ID Guid.
317317
* @param {String} bulkSendBatchId
318318
* @param {Object} optsOrCallback Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely.
319-
* @param {Number} optsOrCallback.count
319+
* @param {String} optsOrCallback.count
320320
* @param {String} optsOrCallback.include
321321
* @param {String} optsOrCallback.order
322322
* @param {String} optsOrCallback.orderBy
323323
* @param {String} optsOrCallback.searchText
324-
* @param {Number} optsOrCallback.startPosition
324+
* @param {String} optsOrCallback.startPosition
325325
* @param {String} optsOrCallback.status
326326
* @param {String} optsOrCallback.userId
327327
* @param {module:api/BulkEnvelopesApi~getBulkSendBatchEnvelopesCallback} callback The callback function, accepting three arguments: error, data, response

src/index.js

Lines changed: 3 additions & 8 deletions
Large diffs are not rendered by default.

src/model/AccountBillingPlan.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@
127127
if (data.hasOwnProperty('seatDiscounts')) {
128128
obj['seatDiscounts'] = ApiClient.convertToType(data['seatDiscounts'], [SeatDiscount]);
129129
}
130+
if (data.hasOwnProperty('subscriptionStartDate')) {
131+
obj['subscriptionStartDate'] = ApiClient.convertToType(data['subscriptionStartDate'], 'String');
132+
}
130133
if (data.hasOwnProperty('supportIncidentFee')) {
131134
obj['supportIncidentFee'] = ApiClient.convertToType(data['supportIncidentFee'], 'String');
132135
}
@@ -256,6 +259,11 @@
256259
* @member {Array.<module:model/SeatDiscount>} seatDiscounts
257260
*/
258261
exports.prototype['seatDiscounts'] = undefined;
262+
/**
263+
*
264+
* @member {String} subscriptionStartDate
265+
*/
266+
exports.prototype['subscriptionStartDate'] = undefined;
259267
/**
260268
* The support incident fee charged for each support incident.
261269
* @member {String} supportIncidentFee

src/model/AccountBillingPlanResponse.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@
7373
if (data.hasOwnProperty('downgradePlanInformation')) {
7474
obj['downgradePlanInformation'] = DowngradePlanUpdateResponse.constructFromObject(data['downgradePlanInformation']);
7575
}
76+
if (data.hasOwnProperty('entityName')) {
77+
obj['entityName'] = ApiClient.convertToType(data['entityName'], 'String');
78+
}
7679
if (data.hasOwnProperty('paymentMethod')) {
7780
obj['paymentMethod'] = ApiClient.convertToType(data['paymentMethod'], 'String');
7881
}
@@ -114,6 +117,11 @@
114117
* @member {module:model/DowngradePlanUpdateResponse} downgradePlanInformation
115118
*/
116119
exports.prototype['downgradePlanInformation'] = undefined;
120+
/**
121+
*
122+
* @member {String} entityName
123+
*/
124+
exports.prototype['entityName'] = undefined;
117125
/**
118126
*
119127
* @member {String} paymentMethod

src/model/AccountSignatureDefinition.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@
9393
if (data.hasOwnProperty('signatureName')) {
9494
obj['signatureName'] = ApiClient.convertToType(data['signatureName'], 'String');
9595
}
96+
if (data.hasOwnProperty('signatureType')) {
97+
obj['signatureType'] = ApiClient.convertToType(data['signatureType'], 'String');
98+
}
9699
if (data.hasOwnProperty('signatureUsers')) {
97100
obj['signatureUsers'] = ApiClient.convertToType(data['signatureUsers'], [SignatureUserDef]);
98101
}
@@ -170,6 +173,11 @@
170173
* @member {String} signatureName
171174
*/
172175
exports.prototype['signatureName'] = undefined;
176+
/**
177+
*
178+
* @member {String} signatureType
179+
*/
180+
exports.prototype['signatureType'] = undefined;
173181
/**
174182
*
175183
* @member {Array.<module:model/SignatureUserDef>} signatureUsers

src/model/Agent.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,6 @@
187187
if (data.hasOwnProperty('phoneNumber')) {
188188
obj['phoneNumber'] = RecipientPhoneNumber.constructFromObject(data['phoneNumber']);
189189
}
190-
if (data.hasOwnProperty('phoneNumberMetadata')) {
191-
obj['phoneNumberMetadata'] = PropertyMetadata.constructFromObject(data['phoneNumberMetadata']);
192-
}
193190
if (data.hasOwnProperty('recipientAttachments')) {
194191
obj['recipientAttachments'] = ApiClient.convertToType(data['recipientAttachments'], [RecipientAttachment]);
195192
}
@@ -479,10 +476,6 @@
479476
* @member {module:model/RecipientPhoneNumber} phoneNumber
480477
*/
481478
exports.prototype['phoneNumber'] = undefined;
482-
/**
483-
* @member {module:model/PropertyMetadata} phoneNumberMetadata
484-
*/
485-
exports.prototype['phoneNumberMetadata'] = undefined;
486479
/**
487480
* Reserved:
488481
* @member {Array.<module:model/RecipientAttachment>} recipientAttachments

src/model/CarbonCopy.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,6 @@
195195
if (data.hasOwnProperty('phoneNumber')) {
196196
obj['phoneNumber'] = RecipientPhoneNumber.constructFromObject(data['phoneNumber']);
197197
}
198-
if (data.hasOwnProperty('phoneNumberMetadata')) {
199-
obj['phoneNumberMetadata'] = PropertyMetadata.constructFromObject(data['phoneNumberMetadata']);
200-
}
201198
if (data.hasOwnProperty('proofFile')) {
202199
obj['proofFile'] = RecipientProofFile.constructFromObject(data['proofFile']);
203200
}
@@ -508,10 +505,6 @@
508505
* @member {module:model/RecipientPhoneNumber} phoneNumber
509506
*/
510507
exports.prototype['phoneNumber'] = undefined;
511-
/**
512-
* @member {module:model/PropertyMetadata} phoneNumberMetadata
513-
*/
514-
exports.prototype['phoneNumberMetadata'] = undefined;
515508
/**
516509
* @member {module:model/RecipientProofFile} proofFile
517510
*/

src/model/CertifiedDelivery.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,6 @@
192192
if (data.hasOwnProperty('phoneNumber')) {
193193
obj['phoneNumber'] = RecipientPhoneNumber.constructFromObject(data['phoneNumber']);
194194
}
195-
if (data.hasOwnProperty('phoneNumberMetadata')) {
196-
obj['phoneNumberMetadata'] = PropertyMetadata.constructFromObject(data['phoneNumberMetadata']);
197-
}
198195
if (data.hasOwnProperty('proofFile')) {
199196
obj['proofFile'] = RecipientProofFile.constructFromObject(data['proofFile']);
200197
}
@@ -497,10 +494,6 @@
497494
* @member {module:model/RecipientPhoneNumber} phoneNumber
498495
*/
499496
exports.prototype['phoneNumber'] = undefined;
500-
/**
501-
* @member {module:model/PropertyMetadata} phoneNumberMetadata
502-
*/
503-
exports.prototype['phoneNumberMetadata'] = undefined;
504497
/**
505498
* @member {module:model/RecipientProofFile} proofFile
506499
*/

0 commit comments

Comments
 (0)