Skip to content

Commit 97c5266

Browse files
acooper4960acooper4960
andauthored
v4.6.0-rc1 (#166)
Co-authored-by: Alex <[email protected]>
1 parent df9cd04 commit 97c5266

File tree

389 files changed

+821
-481
lines changed

Some content is hidden

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

389 files changed

+821
-481
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
44

5+
## [v4.6.0] - eSignature API v2-20.1.00
6+
### Changed
7+
- The SDK now supports version 20.1.00 of the DocuSign eSignature v2 API.
8+
- SDK Release Version updated.
9+
510
## [v4.5.0] - eSignature API v2-19.4.01
611
### Changed
712
- The SDK now supports version 19.4.01 of the DocuSign eSignature v2 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": "4.5.0",
3+
"version": "4.6.0-rc1",
44
"description": "DocuSign Node.js API client.",
55
"license": "MIT",
66
"main": "src/index.js",

src/api/AccountsApi.js

Lines changed: 6 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@
1212
(function(root, factory) {
1313
if (typeof define === 'function' && define.amd) {
1414
// AMD. Register as an anonymous module.
15-
define(['Configuration', 'ApiClient', 'model/AccountIdentityVerificationResponse', 'model/AccountInformation', 'model/AccountPasswordRules', 'model/AccountSeals', 'model/AccountSettingsInformation', 'model/AccountSharedAccess', 'model/AccountSignatureProviders', 'model/BillingChargeResponse', 'model/Brand', 'model/BrandResources', 'model/BrandResourcesList', 'model/BrandsRequest', 'model/BrandsResponse', 'model/CaptiveRecipientInformation', 'model/ConsumerDisclosure', 'model/CustomField', 'model/CustomFields', 'model/ENoteConfiguration', 'model/ErrorDetails', 'model/FileTypeList', 'model/NewAccountDefinition', 'model/NewAccountSummary', 'model/PaymentGatewayAccountsInfo', 'model/PermissionProfile', 'model/PermissionProfileInformation', 'model/ProvisioningInformation', 'model/RecipientNamesResponse', 'model/SupportedLanguages', 'model/TabAccountSettings', 'model/UserPasswordRules', 'model/Watermark'], factory);
15+
define(['Configuration', 'ApiClient', 'model/AccountIdentityVerificationResponse', 'model/AccountInformation', 'model/AccountPasswordRules', 'model/AccountSettingsInformation', 'model/AccountSharedAccess', 'model/AccountSignatureProviders', 'model/BillingChargeResponse', 'model/Brand', 'model/BrandResources', 'model/BrandResourcesList', 'model/BrandsRequest', 'model/BrandsResponse', 'model/CaptiveRecipientInformation', 'model/ConsumerDisclosure', 'model/CustomField', 'model/CustomFields', 'model/ENoteConfiguration', 'model/ErrorDetails', 'model/FileTypeList', 'model/NewAccountDefinition', 'model/NewAccountSummary', 'model/PaymentGatewayAccountsInfo', 'model/PermissionProfile', 'model/PermissionProfileInformation', 'model/ProvisioningInformation', 'model/RecipientNamesResponse', 'model/SupportedLanguages', 'model/TabAccountSettings', 'model/UserPasswordRules', 'model/Watermark'], factory);
1616
} else if (typeof module === 'object' && module.exports) {
1717
// CommonJS-like environments that support module.exports, like Node.
18-
module.exports = factory(require('../Configuration'), require('../ApiClient'), require('../model/AccountIdentityVerificationResponse'), require('../model/AccountInformation'), require('../model/AccountPasswordRules'), require('../model/AccountSeals'), require('../model/AccountSettingsInformation'), require('../model/AccountSharedAccess'), require('../model/AccountSignatureProviders'), require('../model/BillingChargeResponse'), require('../model/Brand'), require('../model/BrandResources'), require('../model/BrandResourcesList'), require('../model/BrandsRequest'), require('../model/BrandsResponse'), require('../model/CaptiveRecipientInformation'), require('../model/ConsumerDisclosure'), require('../model/CustomField'), require('../model/CustomFields'), require('../model/ENoteConfiguration'), require('../model/ErrorDetails'), require('../model/FileTypeList'), require('../model/NewAccountDefinition'), require('../model/NewAccountSummary'), require('../model/PaymentGatewayAccountsInfo'), require('../model/PermissionProfile'), require('../model/PermissionProfileInformation'), require('../model/ProvisioningInformation'), require('../model/RecipientNamesResponse'), require('../model/SupportedLanguages'), require('../model/TabAccountSettings'), require('../model/UserPasswordRules'), require('../model/Watermark'));
18+
module.exports = factory(require('../Configuration'), require('../ApiClient'), require('../model/AccountIdentityVerificationResponse'), require('../model/AccountInformation'), require('../model/AccountPasswordRules'), require('../model/AccountSettingsInformation'), require('../model/AccountSharedAccess'), require('../model/AccountSignatureProviders'), require('../model/BillingChargeResponse'), require('../model/Brand'), require('../model/BrandResources'), require('../model/BrandResourcesList'), require('../model/BrandsRequest'), require('../model/BrandsResponse'), require('../model/CaptiveRecipientInformation'), require('../model/ConsumerDisclosure'), require('../model/CustomField'), require('../model/CustomFields'), require('../model/ENoteConfiguration'), require('../model/ErrorDetails'), require('../model/FileTypeList'), require('../model/NewAccountDefinition'), require('../model/NewAccountSummary'), require('../model/PaymentGatewayAccountsInfo'), require('../model/PermissionProfile'), require('../model/PermissionProfileInformation'), require('../model/ProvisioningInformation'), require('../model/RecipientNamesResponse'), require('../model/SupportedLanguages'), require('../model/TabAccountSettings'), require('../model/UserPasswordRules'), require('../model/Watermark'));
1919
} else {
2020
// Browser globals (root is window)
2121
if (!root.Docusign) {
2222
root.Docusign = {};
2323
}
24-
root.Docusign.AccountsApi = factory(root.Docusign.Configuration, root.Docusign.ApiClient, root.Docusign.AccountIdentityVerificationResponse, root.Docusign.AccountInformation, root.Docusign.AccountPasswordRules, root.Docusign.AccountSeals, root.Docusign.AccountSettingsInformation, root.Docusign.AccountSharedAccess, root.Docusign.AccountSignatureProviders, root.Docusign.BillingChargeResponse, root.Docusign.Brand, root.Docusign.BrandResources, root.Docusign.BrandResourcesList, root.Docusign.BrandsRequest, root.Docusign.BrandsResponse, root.Docusign.CaptiveRecipientInformation, root.Docusign.ConsumerDisclosure, root.Docusign.CustomField, root.Docusign.CustomFields, root.Docusign.ENoteConfiguration, root.Docusign.ErrorDetails, root.Docusign.FileTypeList, root.Docusign.NewAccountDefinition, root.Docusign.NewAccountSummary, root.Docusign.PaymentGatewayAccountsInfo, root.Docusign.PermissionProfile, root.Docusign.PermissionProfileInformation, root.Docusign.ProvisioningInformation, root.Docusign.RecipientNamesResponse, root.Docusign.SupportedLanguages, root.Docusign.TabAccountSettings, root.Docusign.UserPasswordRules, root.Docusign.Watermark);
24+
root.Docusign.AccountsApi = factory(root.Docusign.Configuration, root.Docusign.ApiClient, root.Docusign.AccountIdentityVerificationResponse, root.Docusign.AccountInformation, root.Docusign.AccountPasswordRules, root.Docusign.AccountSettingsInformation, root.Docusign.AccountSharedAccess, root.Docusign.AccountSignatureProviders, root.Docusign.BillingChargeResponse, root.Docusign.Brand, root.Docusign.BrandResources, root.Docusign.BrandResourcesList, root.Docusign.BrandsRequest, root.Docusign.BrandsResponse, root.Docusign.CaptiveRecipientInformation, root.Docusign.ConsumerDisclosure, root.Docusign.CustomField, root.Docusign.CustomFields, root.Docusign.ENoteConfiguration, root.Docusign.ErrorDetails, root.Docusign.FileTypeList, root.Docusign.NewAccountDefinition, root.Docusign.NewAccountSummary, root.Docusign.PaymentGatewayAccountsInfo, root.Docusign.PermissionProfile, root.Docusign.PermissionProfileInformation, root.Docusign.ProvisioningInformation, root.Docusign.RecipientNamesResponse, root.Docusign.SupportedLanguages, root.Docusign.TabAccountSettings, root.Docusign.UserPasswordRules, root.Docusign.Watermark);
2525
}
26-
}(this, function(Configuration, ApiClient, AccountIdentityVerificationResponse, AccountInformation, AccountPasswordRules, AccountSeals, AccountSettingsInformation, AccountSharedAccess, AccountSignatureProviders, BillingChargeResponse, Brand, BrandResources, BrandResourcesList, BrandsRequest, BrandsResponse, CaptiveRecipientInformation, ConsumerDisclosure, CustomField, CustomFields, ENoteConfiguration, ErrorDetails, FileTypeList, NewAccountDefinition, NewAccountSummary, PaymentGatewayAccountsInfo, PermissionProfile, PermissionProfileInformation, ProvisioningInformation, RecipientNamesResponse, SupportedLanguages, TabAccountSettings, UserPasswordRules, Watermark) {
26+
}(this, function(Configuration, ApiClient, AccountIdentityVerificationResponse, AccountInformation, AccountPasswordRules, AccountSettingsInformation, AccountSharedAccess, AccountSignatureProviders, BillingChargeResponse, Brand, BrandResources, BrandResourcesList, BrandsRequest, BrandsResponse, CaptiveRecipientInformation, ConsumerDisclosure, CustomField, CustomFields, ENoteConfiguration, ErrorDetails, FileTypeList, NewAccountDefinition, NewAccountSummary, PaymentGatewayAccountsInfo, PermissionProfile, PermissionProfileInformation, ProvisioningInformation, RecipientNamesResponse, SupportedLanguages, TabAccountSettings, UserPasswordRules, Watermark) {
2727
'use strict';
2828

2929
/**
3030
* Accounts service.
3131
* @module api/AccountsApi
32-
* @version 3.0.0
32+
* @version 4.6.0-rc1
3333
*/
3434

3535
/**
@@ -1779,57 +1779,6 @@ Privileges required: account administrator
17791779
);
17801780
};
17811781

1782-
/**
1783-
* (Optional)Callback function to receive the result of the getSealProviders operation. If none specified a Promise will be returned.
1784-
* @callback module:api/AccountsApi~getSealProvidersCallback
1785-
* @param {String} error Error message, if any.
1786-
* @param {module:model/AccountSeals} data The data returned by the service call.
1787-
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
1788-
*/
1789-
1790-
/**
1791-
* Returns Account available seals for specified account.
1792-
* @param {String} accountId The external account number (int) or account ID Guid.
1793-
* @param {module:api/AccountsApi~getSealProvidersCallback} callback The callback function, accepting three arguments: error, data, response
1794-
* data is of type: {@link module:model/AccountSeals}
1795-
*/
1796-
this.getSealProviders = function(accountId, callback) {
1797-
var postBody = null;
1798-
1799-
// verify the required parameter 'accountId' is set
1800-
if (accountId == undefined || accountId == null) {
1801-
throw new Error("Missing the required parameter 'accountId' when calling getSealProviders");
1802-
}
1803-
1804-
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
1805-
if (typeof optsOrCallback !== 'undefined') {
1806-
optsOrCallback = callback;
1807-
}
1808-
callback = arguments[arguments.length-1];
1809-
}
1810-
1811-
var pathParams = {
1812-
'accountId': accountId
1813-
};
1814-
var queryParams = {
1815-
};
1816-
var headerParams = {
1817-
};
1818-
var formParams = {
1819-
};
1820-
1821-
var authNames = [];
1822-
var contentTypes = [];
1823-
var accepts = ['application/json'];
1824-
var returnType = AccountSeals;
1825-
1826-
return this.apiClient.callApi(
1827-
'/v2/accounts/{accountId}/seals', 'GET',
1828-
pathParams, queryParams, headerParams, formParams, postBody,
1829-
authNames, contentTypes, accepts, returnType, callback
1830-
);
1831-
};
1832-
18331782
/**
18341783
* (Optional)Callback function to receive the result of the getSupportedLanguages operation. If none specified a Promise will be returned.
18351784
* @callback module:api/AccountsApi~getSupportedLanguagesCallback
@@ -2607,7 +2556,7 @@ Users with account administration privileges can retrieve shared access informat
26072556
/**
26082557
* Put one branding logo.
26092558
* @param {String} logoFileBytes Brand logo binary Stream. Supported formats: JPG, GIF, PNG. Maximum file size: 300 KB. Recommended dimensions: 296 x 76 pixels (larger images will be resized). Changes may take up to one hour to display in all places
2610-
* @param {String} accountId The external account number (int) or account ID Guid.
2559+
* @param {String} accountId The external account number (int) or account id GUID.
26112560
* @param {String} brandId The unique identifier of a brand.
26122561
* @param {String} logoType One of **Primary**, **Secondary** or **Email**.
26132562
* @param {module:api/AccountsApi~updateBrandLogoByTypeCallback} callback The callback function, accepting three arguments: error, data, response

src/api/AuthenticationApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Authentication service.
3131
* @module api/AuthenticationApi
32-
* @version 3.0.0
32+
* @version 4.6.0-rc1
3333
*/
3434

3535
/**

src/api/BillingApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Billing service.
3131
* @module api/BillingApi
32-
* @version 3.0.0
32+
* @version 4.6.0-rc1
3333
*/
3434

3535
/**

src/api/BulkEnvelopesApi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* BulkEnvelopes service.
3131
* @module api/BulkEnvelopesApi
32-
* @version 3.0.0
32+
* @version 4.6.0-rc1
3333
*/
3434

3535
/**
@@ -135,7 +135,7 @@ After using this, the `bulkRecipientsUri` property is not returned in subsequent
135135
* @param {String} batchId
136136
* @param {Object} optsOrCallback Optional parameters, if you are passing no optional parameters, you can either pass a null or omit this parameter entirely.
137137
* @param {String} optsOrCallback.count Specifies the number of entries to return.
138-
* @param {String} optsOrCallback.include Specifies which entries are included in the response. Multiple entries can be included by using commas in the query string (example: ?include&#x3D;”failed,queued”) Valid values are: * all - Returns all entries. If present, overrides all other query settings. This is the default if no query string is provided. * failed - This only returns entries with a failed status. * queued - This only returns entries with a queued status. * sent – This only returns entries with a sent status.
138+
* @param {String} optsOrCallback.include Specifies which entries are included in the response. Multiple entries can be included by using commas in the query string (example: ?include&#x3D;\&quot;failed,queued\&quot;) Valid values are: * all - Returns all entries. If present, overrides all other query settings. This is the default if no query string is provided. * failed - This only returns entries with a failed status. * queued - This only returns entries with a queued status. * sent - This only returns entries with a sent status.
139139
* @param {String} optsOrCallback.startPosition Specifies the location in the list of envelopes from which to start.
140140
* @param {module:api/BulkEnvelopesApi~getCallback} callback The callback function, accepting three arguments: error, data, response
141141
* data is of type: {@link module:model/BulkEnvelopeStatus}
@@ -353,7 +353,7 @@ The response returns information about the envelopes sent with bulk recipient ba
353353
354354
The REST API does not support modifying individual rows or values in the bulk recipients file. It only allows the entire file to be added or replaced with a new file.
355355
* @param {String} bulkRecipientsRequest
356-
* @param {String} accountId The external account number (int) or account ID Guid.
356+
* @param {String} accountId The external account number (int) or account id GUID.
357357
* @param {String} envelopeId The envelope&#39;s GUID. Eg 93be49ab-afa0-4adf-933c-f752070d71ec
358358
* @param {String} recipientId The &#x60;recipientId&#x60; used when the envelope or template was created.
359359
* @param {module:api/BulkEnvelopesApi~updateRecipientsCallback} callback The callback function, accepting three arguments: error, data, response

src/api/CloudStorageApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* CloudStorage service.
3131
* @module api/CloudStorageApi
32-
* @version 3.0.0
32+
* @version 4.6.0-rc1
3333
*/
3434

3535
/**

src/api/ConnectApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Connect service.
3131
* @module api/ConnectApi
32-
* @version 3.0.0
32+
* @version 4.6.0-rc1
3333
*/
3434

3535
/**

src/api/CustomTabsApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* CustomTabs service.
3131
* @module api/CustomTabsApi
32-
* @version 3.0.0
32+
* @version 4.6.0-rc1
3333
*/
3434

3535
/**

src/api/DiagnosticsApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* Diagnostics service.
3131
* @module api/DiagnosticsApi
32-
* @version 3.0.0
32+
* @version 4.6.0-rc1
3333
*/
3434

3535
/**

0 commit comments

Comments
 (0)