Skip to content

Commit 7c39c9f

Browse files
Version 4.12.0-rc1-v2-21.1.02.00 release (#249)
Co-authored-by: DevCenter-DocuSign <[email protected]>
1 parent cd717ed commit 7c39c9f

File tree

8 files changed

+32
-743
lines changed

8 files changed

+32
-743
lines changed

CHANGELOG.md

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

33
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
4+
## [v4.12.0-rc1] - eSignature API v2-21.1.02.00
5+
### Breaking
6+
- Removed methods `getAccountSettingsExport`,`getSealProviders` from Accounts.
7+
- Removed methods `createConnectSecret`,`deleteConnectSecret`,`generateConnectSecret`,`getConnectSecrets` from Connect.
8+
- Removed methods `completeSignHash`,`getUserInfo`,`healthCheck`,`signHashSessionInfo`,`updateTransaction` from TrustServiceProviders.
9+
- Removed method `getUserListExport` from Users.
10+
11+
### Changed
12+
- Added support for version v2-21.1.02.00 of the DocuSign eSignature API.
13+
- Updated the SDK release version.
14+
415
## [v4.11.0] - eSignature API v2-21.1.01.03
516
### Changed
617
- Added support for version v2-21.1.01.03 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": "4.11.0",
3+
"version": "4.12.0-rc1",
44
"description": "DocuSign Node.js API client.",
55
"license": "MIT",
66
"main": "src/index.js",

src/api/AccountsApi.js

Lines changed: 4 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@
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
/**
@@ -906,63 +906,6 @@ The `canUpgrade` property contains is a Boolean that indicates whether the accou
906906
);
907907
};
908908

909-
/**
910-
* (Optional) Callback function to receive the result of the getAccountSettingsExport operation. If none specified a Promise will be returned.
911-
* @callback module:api/AccountsApi~getAccountSettingsExportCallback
912-
* @param {String} error Error message, if any.
913-
* @param data This operation does not return a value.
914-
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
915-
*/
916-
917-
/**
918-
* Retrieves an account settings comparison.
919-
* @param {String} organizationId
920-
* @param {String} resultId
921-
* @param {module:api/AccountsApi~getAccountSettingsExportCallback} callback The callback function, accepting three arguments: error, data, response
922-
*/
923-
this.getAccountSettingsExport = function(organizationId, resultId, callback) {
924-
var postBody = null;
925-
926-
// verify the required parameter 'organizationId' is set
927-
if (organizationId === undefined || organizationId === null) {
928-
throw new Error("Missing the required parameter 'organizationId' when calling getAccountSettingsExport");
929-
}
930-
931-
// verify the required parameter 'resultId' is set
932-
if (resultId === undefined || resultId === null) {
933-
throw new Error("Missing the required parameter 'resultId' when calling getAccountSettingsExport");
934-
}
935-
936-
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
937-
if (typeof optsOrCallback !== 'undefined') {
938-
optsOrCallback = callback;
939-
}
940-
callback = arguments[arguments.length-1];
941-
}
942-
943-
var pathParams = {
944-
'organizationId': organizationId,
945-
'resultId': resultId
946-
};
947-
var queryParams = {
948-
};
949-
var headerParams = {
950-
};
951-
var formParams = {
952-
};
953-
954-
var authNames = ['docusignAccessCode'];
955-
var contentTypes = [];
956-
var accepts = ['application/json'];
957-
var returnType = null;
958-
959-
return this.apiClient.callApi(
960-
'/v2/organization_exports/{organizationId}/account_settings/{resultId}', 'GET',
961-
pathParams, queryParams, headerParams, formParams, postBody,
962-
authNames, contentTypes, accepts, returnType, callback
963-
);
964-
};
965-
966909
/**
967910
* (Optional) Callback function to receive the result of the getAccountTabSettings operation. If none specified a Promise will be returned.
968911
* @callback module:api/AccountsApi~getAccountTabSettingsCallback
@@ -1835,57 +1778,6 @@ Privileges required: account administrator
18351778
);
18361779
};
18371780

1838-
/**
1839-
* (Optional) Callback function to receive the result of the getSealProviders operation. If none specified a Promise will be returned.
1840-
* @callback module:api/AccountsApi~getSealProvidersCallback
1841-
* @param {String} error Error message, if any.
1842-
* @param {module:model/AccountSeals} data The data returned by the service call.
1843-
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
1844-
*/
1845-
1846-
/**
1847-
* Returns Account available seals for specified account.
1848-
* @param {String} accountId The external account number (int) or account ID Guid.
1849-
* @param {module:api/AccountsApi~getSealProvidersCallback} callback The callback function, accepting three arguments: error, data, response
1850-
* data is of type: {@link module:model/AccountSeals}
1851-
*/
1852-
this.getSealProviders = function(accountId, callback) {
1853-
var postBody = null;
1854-
1855-
// verify the required parameter 'accountId' is set
1856-
if (accountId === undefined || accountId === null) {
1857-
throw new Error("Missing the required parameter 'accountId' when calling getSealProviders");
1858-
}
1859-
1860-
if (typeof callback !== 'function' && arguments.length && typeof arguments[arguments.length-1] === 'function'){
1861-
if (typeof optsOrCallback !== 'undefined') {
1862-
optsOrCallback = callback;
1863-
}
1864-
callback = arguments[arguments.length-1];
1865-
}
1866-
1867-
var pathParams = {
1868-
'accountId': accountId
1869-
};
1870-
var queryParams = {
1871-
};
1872-
var headerParams = {
1873-
};
1874-
var formParams = {
1875-
};
1876-
1877-
var authNames = ['docusignAccessCode'];
1878-
var contentTypes = [];
1879-
var accepts = ['application/json'];
1880-
var returnType = AccountSeals;
1881-
1882-
return this.apiClient.callApi(
1883-
'/v2/accounts/{accountId}/seals', 'GET',
1884-
pathParams, queryParams, headerParams, formParams, postBody,
1885-
authNames, contentTypes, accepts, returnType, callback
1886-
);
1887-
};
1888-
18891781
/**
18901782
* (Optional) Callback function to receive the result of the getSupportedLanguages operation. If none specified a Promise will be returned.
18911783
* @callback module:api/AccountsApi~getSupportedLanguagesCallback

0 commit comments

Comments
 (0)