Skip to content

Commit 5ede227

Browse files
authored
New SDK Build Relase Candidate (#209)
### Changed - Added support for version v2-20.2.02.02 of the DocuSign eSignature API. - Updated the SDK release version.
1 parent f60b123 commit 5ede227

File tree

5 files changed

+33
-3
lines changed

5 files changed

+33
-3
lines changed

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

src/api/BulkEnvelopesApi.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,6 @@ The response returns information about the envelopes sent with bulk recipient ba
286286
* @param {String} accountId The external account number (int) or account ID Guid.
287287
* @param {Object} optsOrCallback Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely.
288288
* @param {String} optsOrCallback.count The number of results to return. This can be 1 to 20.
289-
* @param {String} optsOrCallback.include
290289
* @param {String} optsOrCallback.startPosition The position of the bulk envelope items in the response. This is used for repeated calls, when the number of bulk envelopes returned is too large for one return. The default value is 0.
291290
* @param {module:api/BulkEnvelopesApi~listCallback} callback The callback function, accepting three arguments: error, data, response
292291
* data is of type: {@link module:model/BulkEnvelopesResponse}
@@ -318,7 +317,6 @@ The response returns information about the envelopes sent with bulk recipient ba
318317
};
319318
var queryParams = {
320319
'count': optsOrCallback['count'],
321-
'include': optsOrCallback['include'],
322320
'start_position': optsOrCallback['startPosition']
323321
};
324322
var headerParams = {

src/model/NewUser.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@
6666
if (data.hasOwnProperty('errorDetails')) {
6767
obj['errorDetails'] = ErrorDetails.constructFromObject(data['errorDetails']);
6868
}
69+
if (data.hasOwnProperty('membershipId')) {
70+
obj['membershipId'] = ApiClient.convertToType(data['membershipId'], 'String');
71+
}
6972
if (data.hasOwnProperty('permissionProfileId')) {
7073
obj['permissionProfileId'] = ApiClient.convertToType(data['permissionProfileId'], 'String');
7174
}
@@ -107,6 +110,11 @@
107110
* @member {module:model/ErrorDetails} errorDetails
108111
*/
109112
exports.prototype['errorDetails'] = undefined;
113+
/**
114+
*
115+
* @member {String} membershipId
116+
*/
117+
exports.prototype['membershipId'] = undefined;
110118
/**
111119
*
112120
* @member {String} permissionProfileId

src/model/SenderEmailNotifications.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@
7272
if (data.hasOwnProperty('offlineSigningFailed')) {
7373
obj['offlineSigningFailed'] = ApiClient.convertToType(data['offlineSigningFailed'], 'String');
7474
}
75+
if (data.hasOwnProperty('powerformResponsesLimitNotificationEmail')) {
76+
obj['powerformResponsesLimitNotificationEmail'] = ApiClient.convertToType(data['powerformResponsesLimitNotificationEmail'], 'String');
77+
}
7578
if (data.hasOwnProperty('recipientViewed')) {
7679
obj['recipientViewed'] = ApiClient.convertToType(data['recipientViewed'], 'String');
7780
}
@@ -115,6 +118,11 @@
115118
* @member {String} offlineSigningFailed
116119
*/
117120
exports.prototype['offlineSigningFailed'] = undefined;
121+
/**
122+
*
123+
* @member {String} powerformResponsesLimitNotificationEmail
124+
*/
125+
exports.prototype['powerformResponsesLimitNotificationEmail'] = undefined;
118126
/**
119127
* When set to **true**, the sender receives notification that the recipient viewed the enveloper.
120128
* @member {String} recipientViewed

src/model/TabMetadata.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,15 @@
156156
if (data.hasOwnProperty('paymentItemName')) {
157157
obj['paymentItemName'] = ApiClient.convertToType(data['paymentItemName'], 'String');
158158
}
159+
if (data.hasOwnProperty('requireAll')) {
160+
obj['requireAll'] = ApiClient.convertToType(data['requireAll'], 'String');
161+
}
159162
if (data.hasOwnProperty('required')) {
160163
obj['required'] = ApiClient.convertToType(data['required'], 'String');
161164
}
165+
if (data.hasOwnProperty('requireInitialOnSharedChange')) {
166+
obj['requireInitialOnSharedChange'] = ApiClient.convertToType(data['requireInitialOnSharedChange'], 'String');
167+
}
162168
if (data.hasOwnProperty('scaleValue')) {
163169
obj['scaleValue'] = ApiClient.convertToType(data['scaleValue'], 'String');
164170
}
@@ -365,11 +371,21 @@
365371
* @member {String} paymentItemName
366372
*/
367373
exports.prototype['paymentItemName'] = undefined;
374+
/**
375+
* When set to **true** and shared is true, information must be entered in this field to complete the envelope.
376+
* @member {String} requireAll
377+
*/
378+
exports.prototype['requireAll'] = undefined;
368379
/**
369380
* When set to **true**, the signer is required to fill out this tab
370381
* @member {String} required
371382
*/
372383
exports.prototype['required'] = undefined;
384+
/**
385+
* Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field.
386+
* @member {String} requireInitialOnSharedChange
387+
*/
388+
exports.prototype['requireInitialOnSharedChange'] = undefined;
373389
/**
374390
*
375391
* @member {String} scaleValue

0 commit comments

Comments
 (0)