Skip to content

Commit f4fee3f

Browse files
HobbyProjectsroot
andauthored
Version 5.13.0-v2.1-21.3.02.00 release (#279)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent 3479923 commit f4fee3f

File tree

7 files changed

+174
-12
lines changed

7 files changed

+174
-12
lines changed

CHANGELOG.md

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

44

5+
## [5.13.0] - ESignature API v2.1-21.3.02.00 - 2021-10-29
6+
### Changed
7+
- Added support for version v2.1-21.3.02.00 of the DocuSign ESignature API.
8+
- Updated the SDK release version.
9+
10+
511
## [5.13.0-rc1] - ESignature API v2.1-21.3.00.00 - 2021-09-20
612
### Changed
713
- Added support for version v2.1-21.3.00.00 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": "5.13.0-rc1",
3+
"version": "5.13.0",
44
"description": "DocuSign Node.js API client.",
55
"license": "MIT",
66
"main": "src/index.js",

src/api/AccountsApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3581,7 +3581,7 @@ Users with account administration privileges can retrieve shared access informat
35813581
/**
35823582
* Put one branding logo.
35833583
* @param {String} accountId The external account number (int) or account ID GUID.
3584-
* @param {String} brandId The id of the brand.
3584+
* @param {String} brandId The ID of the brand.
35853585
* @param {String} logoType The type of logo. Valid values are:
35863586
35873587
- `primary`
@@ -3655,7 +3655,7 @@ Users with account administration privileges can retrieve shared access informat
36553655
/**
36563656
* Uploads a branding resource file.
36573657
* @param {String} accountId The external account number (int) or account ID GUID.
3658-
* @param {String} brandId The id of the brand.
3658+
* @param {String} brandId The ID of the brand.
36593659
* @param {String} resourceContentType The type of brand resource file that you are updating. Valid values are:
36603660
36613661
- `sending`

src/api/ConnectApi.js

Lines changed: 7 additions & 6 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/ConnectConfigResults', 'model/ConnectCustomConfiguration', 'model/ConnectFailureFilter', 'model/ConnectFailureResults', 'model/ConnectLog', 'model/ConnectLogs', 'model/ErrorDetails', 'model/IntegratedConnectUserInfoList', 'model/IntegratedUserInfoList', 'model/MobileNotifierConfigurationInformation'], factory);
15+
define(['Configuration', 'ApiClient', 'model/ConnectConfigResults', 'model/ConnectCustomConfiguration', 'model/ConnectDeleteFailureResult', 'model/ConnectFailureFilter', 'model/ConnectFailureResults', 'model/ConnectLog', 'model/ConnectLogs', 'model/ErrorDetails', 'model/IntegratedConnectUserInfoList', 'model/IntegratedUserInfoList', 'model/MobileNotifierConfigurationInformation'], 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/ConnectConfigResults'), require('../model/ConnectCustomConfiguration'), require('../model/ConnectFailureFilter'), require('../model/ConnectFailureResults'), require('../model/ConnectLog'), require('../model/ConnectLogs'), require('../model/ErrorDetails'), require('../model/IntegratedConnectUserInfoList'), require('../model/IntegratedUserInfoList'), require('../model/MobileNotifierConfigurationInformation'));
18+
module.exports = factory(require('../Configuration'), require('../ApiClient'), require('../model/ConnectConfigResults'), require('../model/ConnectCustomConfiguration'), require('../model/ConnectDeleteFailureResult'), require('../model/ConnectFailureFilter'), require('../model/ConnectFailureResults'), require('../model/ConnectLog'), require('../model/ConnectLogs'), require('../model/ErrorDetails'), require('../model/IntegratedConnectUserInfoList'), require('../model/IntegratedUserInfoList'), require('../model/MobileNotifierConfigurationInformation'));
1919
} else {
2020
// Browser globals (root is window)
2121
if (!root.Docusign) {
2222
root.Docusign = {};
2323
}
24-
root.Docusign.ConnectApi = factory(root.Docusign.Configuration, root.Docusign.ApiClient, root.Docusign.ConnectConfigResults, root.Docusign.ConnectCustomConfiguration, root.Docusign.ConnectFailureFilter, root.Docusign.ConnectFailureResults, root.Docusign.ConnectLog, root.Docusign.ConnectLogs, root.Docusign.ErrorDetails, root.Docusign.IntegratedConnectUserInfoList, root.Docusign.IntegratedUserInfoList, root.Docusign.MobileNotifierConfigurationInformation);
24+
root.Docusign.ConnectApi = factory(root.Docusign.Configuration, root.Docusign.ApiClient, root.Docusign.ConnectConfigResults, root.Docusign.ConnectCustomConfiguration, root.Docusign.ConnectDeleteFailureResult, root.Docusign.ConnectFailureFilter, root.Docusign.ConnectFailureResults, root.Docusign.ConnectLog, root.Docusign.ConnectLogs, root.Docusign.ErrorDetails, root.Docusign.IntegratedConnectUserInfoList, root.Docusign.IntegratedUserInfoList, root.Docusign.MobileNotifierConfigurationInformation);
2525
}
26-
}(this, function(Configuration, ApiClient, ConnectConfigResults, ConnectCustomConfiguration, ConnectFailureFilter, ConnectFailureResults, ConnectLog, ConnectLogs, ErrorDetails, IntegratedConnectUserInfoList, IntegratedUserInfoList, MobileNotifierConfigurationInformation) {
26+
}(this, function(Configuration, ApiClient, ConnectConfigResults, ConnectCustomConfiguration, ConnectDeleteFailureResult, ConnectFailureFilter, ConnectFailureResults, ConnectLog, ConnectLogs, ErrorDetails, IntegratedConnectUserInfoList, IntegratedUserInfoList, MobileNotifierConfigurationInformation) {
2727
'use strict';
2828

2929
/**
@@ -181,7 +181,7 @@
181181
* (Optional) Callback function to receive the result of the deleteEventFailureLog operation. If none specified a Promise will be returned.
182182
* @callback module:api/ConnectApi~deleteEventFailureLogCallback
183183
* @param {String} error Error message, if any.
184-
* @param data This operation does not return a value.
184+
* @param {module:model/ConnectDeleteFailureResult} data The data returned by the service call.
185185
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
186186
*/
187187

@@ -191,6 +191,7 @@
191191
* @param {String} accountId The external account number (int) or account ID Guid.
192192
* @param {String} failureId The ID of the failed connect log entry.
193193
* @param {module:api/ConnectApi~deleteEventFailureLogCallback} callback The callback function, accepting three arguments: error, data, response
194+
* data is of type: {@link module:model/ConnectDeleteFailureResult}
194195
*/
195196
this.deleteEventFailureLog = function(accountId, failureId, callback) {
196197
var postBody = null;
@@ -226,7 +227,7 @@
226227
var authNames = ['docusignAccessCode'];
227228
var contentTypes = [];
228229
var accepts = ['application/json'];
229-
var returnType = null;
230+
var returnType = ConnectDeleteFailureResult;
230231

231232
return this.apiClient.callApi(
232233
'/v2.1/accounts/{accountId}/connect/failures/{failureId}', 'DELETE',

src/index.js

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

src/model/AccountSettingsInformation.js

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,12 +358,36 @@
358358
if (data.hasOwnProperty('allowOpenTrustSignerCertificateMetadata')) {
359359
obj['allowOpenTrustSignerCertificateMetadata'] = SettingsMetadata.constructFromObject(data['allowOpenTrustSignerCertificateMetadata']);
360360
}
361+
if (data.hasOwnProperty('allowOrganizationDocusignMonitor')) {
362+
obj['allowOrganizationDocusignMonitor'] = ApiClient.convertToType(data['allowOrganizationDocusignMonitor'], 'String');
363+
}
364+
if (data.hasOwnProperty('allowOrganizationDocusignMonitorMetadata')) {
365+
obj['allowOrganizationDocusignMonitorMetadata'] = SettingsMetadata.constructFromObject(data['allowOrganizationDocusignMonitorMetadata']);
366+
}
367+
if (data.hasOwnProperty('allowOrganizationDomainUserManagement')) {
368+
obj['allowOrganizationDomainUserManagement'] = ApiClient.convertToType(data['allowOrganizationDomainUserManagement'], 'String');
369+
}
370+
if (data.hasOwnProperty('allowOrganizationDomainUserManagementMetadata')) {
371+
obj['allowOrganizationDomainUserManagementMetadata'] = SettingsMetadata.constructFromObject(data['allowOrganizationDomainUserManagementMetadata']);
372+
}
361373
if (data.hasOwnProperty('allowOrganizations')) {
362374
obj['allowOrganizations'] = ApiClient.convertToType(data['allowOrganizations'], 'String');
363375
}
364376
if (data.hasOwnProperty('allowOrganizationsMetadata')) {
365377
obj['allowOrganizationsMetadata'] = SettingsMetadata.constructFromObject(data['allowOrganizationsMetadata']);
366378
}
379+
if (data.hasOwnProperty('allowOrganizationSsoManagement')) {
380+
obj['allowOrganizationSsoManagement'] = ApiClient.convertToType(data['allowOrganizationSsoManagement'], 'String');
381+
}
382+
if (data.hasOwnProperty('allowOrganizationSsoManagementMetadata')) {
383+
obj['allowOrganizationSsoManagementMetadata'] = SettingsMetadata.constructFromObject(data['allowOrganizationSsoManagementMetadata']);
384+
}
385+
if (data.hasOwnProperty('allowOrganizationToUseRemoteNotary')) {
386+
obj['allowOrganizationToUseRemoteNotary'] = ApiClient.convertToType(data['allowOrganizationToUseRemoteNotary'], 'String');
387+
}
388+
if (data.hasOwnProperty('allowOrganizationToUseRemoteNotaryMetadata')) {
389+
obj['allowOrganizationToUseRemoteNotaryMetadata'] = SettingsMetadata.constructFromObject(data['allowOrganizationToUseRemoteNotaryMetadata']);
390+
}
367391
if (data.hasOwnProperty('allowPaymentProcessing')) {
368392
obj['allowPaymentProcessing'] = ApiClient.convertToType(data['allowPaymentProcessing'], 'String');
369393
}
@@ -1147,6 +1171,9 @@
11471171
if (data.hasOwnProperty('guidedFormsHtmlAllowedMetadata')) {
11481172
obj['guidedFormsHtmlAllowedMetadata'] = SettingsMetadata.constructFromObject(data['guidedFormsHtmlAllowedMetadata']);
11491173
}
1174+
if (data.hasOwnProperty('hasRecipientConnectClaimedDomain')) {
1175+
obj['hasRecipientConnectClaimedDomain'] = ApiClient.convertToType(data['hasRecipientConnectClaimedDomain'], 'String');
1176+
}
11501177
if (data.hasOwnProperty('hideAccountAddressInCoC')) {
11511178
obj['hideAccountAddressInCoC'] = ApiClient.convertToType(data['hideAccountAddressInCoC'], 'String');
11521179
}
@@ -1285,6 +1312,12 @@
12851312
if (data.hasOwnProperty('pkiSignDownloadedPDFDocsMetadata')) {
12861313
obj['pkiSignDownloadedPDFDocsMetadata'] = SettingsMetadata.constructFromObject(data['pkiSignDownloadedPDFDocsMetadata']);
12871314
}
1315+
if (data.hasOwnProperty('readOnlyMode')) {
1316+
obj['readOnlyMode'] = ApiClient.convertToType(data['readOnlyMode'], 'String');
1317+
}
1318+
if (data.hasOwnProperty('readOnlyModeMetadata')) {
1319+
obj['readOnlyModeMetadata'] = SettingsMetadata.constructFromObject(data['readOnlyModeMetadata']);
1320+
}
12881321
if (data.hasOwnProperty('recipientsCanSignOffline')) {
12891322
obj['recipientsCanSignOffline'] = ApiClient.convertToType(data['recipientsCanSignOffline'], 'String');
12901323
}
@@ -2187,6 +2220,24 @@
21872220
* @member {module:model/SettingsMetadata} allowOpenTrustSignerCertificateMetadata
21882221
*/
21892222
exports.prototype['allowOpenTrustSignerCertificateMetadata'] = undefined;
2223+
/**
2224+
*
2225+
* @member {String} allowOrganizationDocusignMonitor
2226+
*/
2227+
exports.prototype['allowOrganizationDocusignMonitor'] = undefined;
2228+
/**
2229+
* @member {module:model/SettingsMetadata} allowOrganizationDocusignMonitorMetadata
2230+
*/
2231+
exports.prototype['allowOrganizationDocusignMonitorMetadata'] = undefined;
2232+
/**
2233+
*
2234+
* @member {String} allowOrganizationDomainUserManagement
2235+
*/
2236+
exports.prototype['allowOrganizationDomainUserManagement'] = undefined;
2237+
/**
2238+
* @member {module:model/SettingsMetadata} allowOrganizationDomainUserManagementMetadata
2239+
*/
2240+
exports.prototype['allowOrganizationDomainUserManagementMetadata'] = undefined;
21902241
/**
21912242
*
21922243
* @member {String} allowOrganizations
@@ -2196,6 +2247,24 @@
21962247
* @member {module:model/SettingsMetadata} allowOrganizationsMetadata
21972248
*/
21982249
exports.prototype['allowOrganizationsMetadata'] = undefined;
2250+
/**
2251+
*
2252+
* @member {String} allowOrganizationSsoManagement
2253+
*/
2254+
exports.prototype['allowOrganizationSsoManagement'] = undefined;
2255+
/**
2256+
* @member {module:model/SettingsMetadata} allowOrganizationSsoManagementMetadata
2257+
*/
2258+
exports.prototype['allowOrganizationSsoManagementMetadata'] = undefined;
2259+
/**
2260+
*
2261+
* @member {String} allowOrganizationToUseRemoteNotary
2262+
*/
2263+
exports.prototype['allowOrganizationToUseRemoteNotary'] = undefined;
2264+
/**
2265+
* @member {module:model/SettingsMetadata} allowOrganizationToUseRemoteNotaryMetadata
2266+
*/
2267+
exports.prototype['allowOrganizationToUseRemoteNotaryMetadata'] = undefined;
21992268
/**
22002269
*
22012270
* @member {String} allowPaymentProcessing
@@ -3371,6 +3440,11 @@
33713440
* @member {module:model/SettingsMetadata} guidedFormsHtmlAllowedMetadata
33723441
*/
33733442
exports.prototype['guidedFormsHtmlAllowedMetadata'] = undefined;
3443+
/**
3444+
*
3445+
* @member {String} hasRecipientConnectClaimedDomain
3446+
*/
3447+
exports.prototype['hasRecipientConnectClaimedDomain'] = undefined;
33743448
/**
33753449
*
33763450
* @member {String} hideAccountAddressInCoC
@@ -3580,6 +3654,15 @@
35803654
* @member {module:model/SettingsMetadata} pkiSignDownloadedPDFDocsMetadata
35813655
*/
35823656
exports.prototype['pkiSignDownloadedPDFDocsMetadata'] = undefined;
3657+
/**
3658+
*
3659+
* @member {String} readOnlyMode
3660+
*/
3661+
exports.prototype['readOnlyMode'] = undefined;
3662+
/**
3663+
* @member {module:model/SettingsMetadata} readOnlyModeMetadata
3664+
*/
3665+
exports.prototype['readOnlyModeMetadata'] = undefined;
35833666
/**
35843667
*
35853668
* @member {String} recipientsCanSignOffline
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/**
2+
* DocuSign REST API
3+
* The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
4+
*
5+
* OpenAPI spec version: v2.1
6+
* Contact: devcenter@docusign.com
7+
*
8+
* NOTE: This class is auto generated. Do not edit the class manually and submit a new issue instead.
9+
*
10+
*/
11+
12+
(function(root, factory) {
13+
if (typeof define === 'function' && define.amd) {
14+
// AMD. Register as an anonymous module.
15+
define(['ApiClient'], factory);
16+
} else if (typeof module === 'object' && module.exports) {
17+
// CommonJS-like environments that support module.exports, like Node.
18+
module.exports = factory(require('../ApiClient'));
19+
} else {
20+
// Browser globals (root is window)
21+
if (!root.Docusign) {
22+
root.Docusign = {};
23+
}
24+
root.Docusign.ConnectDeleteFailureResult = factory(root.Docusign.ApiClient);
25+
}
26+
}(this, function(ApiClient) {
27+
'use strict';
28+
29+
30+
/**
31+
* The ConnectDeleteFailureResult model module.
32+
* @module model/ConnectDeleteFailureResult
33+
*/
34+
35+
/**
36+
* Constructs a new <code>ConnectDeleteFailureResult</code>.
37+
* @alias module:model/ConnectDeleteFailureResult
38+
* @class
39+
*/
40+
var exports = function() {
41+
var _this = this;
42+
43+
44+
};
45+
46+
/**
47+
* Constructs a <code>ConnectDeleteFailureResult</code> from a plain JavaScript object, optionally creating a new instance.
48+
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
49+
* @param {Object} data The plain JavaScript object bearing properties of interest.
50+
* @param {module:model/ConnectDeleteFailureResult} obj Optional instance to populate.
51+
* @return {module:model/ConnectDeleteFailureResult} The populated <code>ConnectDeleteFailureResult</code> instance.
52+
*/
53+
exports.constructFromObject = function(data, obj) {
54+
if (data) {
55+
obj = obj || new exports();
56+
57+
}
58+
return obj;
59+
}
60+
61+
62+
63+
64+
return exports;
65+
}));
66+
67+

0 commit comments

Comments
 (0)