Skip to content

Commit e5577c2

Browse files
authored
v5.4.0-rc1 (#175)
1 parent ea3e6bc commit e5577c2

File tree

435 files changed

+2118
-2083
lines changed

Some content is hidden

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

435 files changed

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

src/api/AccountsApi.js

Lines changed: 211 additions & 212 deletions
Large diffs are not rendered by default.

src/api/AuthenticationApi.js

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
/**
3030
* Authentication service.
3131
* @module api/AuthenticationApi
32-
* @version 5.3.0
3332
*/
3433

3534
/**
@@ -53,15 +52,15 @@
5352

5453

5554
/**
56-
* (Optional)Callback function to receive the result of the deleteSocialLogin operation. If none specified a Promise will be returned.
55+
* (Optional) Callback function to receive the result of the deleteSocialLogin operation. If none specified a Promise will be returned.
5756
* @callback module:api/AuthenticationApi~deleteSocialLoginCallback
5857
* @param {String} error Error message, if any.
5958
* @param data This operation does not return a value.
6059
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
6160
*/
6261

6362
/**
64-
* Deletes user's social account.
63+
* Deletes user's social account.
6564
* Deletes a social account from a use's account.
6665
* @param {String} accountId The external account number (int) or account ID Guid.
6766
* @param {String} userId The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
@@ -80,12 +79,12 @@
8079
var postBody = optsOrCallback['socialAccountInformation'];
8180

8281
// verify the required parameter 'accountId' is set
83-
if (accountId == undefined || accountId == null) {
82+
if (accountId === undefined || accountId === null) {
8483
throw new Error("Missing the required parameter 'accountId' when calling deleteSocialLogin");
8584
}
8685

8786
// verify the required parameter 'userId' is set
88-
if (userId == undefined || userId == null) {
87+
if (userId === undefined || userId === null) {
8988
throw new Error("Missing the required parameter 'userId' when calling deleteSocialLogin");
9089
}
9190

@@ -107,7 +106,7 @@
107106
var formParams = {
108107
};
109108

110-
var authNames = [];
109+
var authNames = ['docusignAccessCode'];
111110
var contentTypes = [];
112111
var accepts = ['application/json'];
113112
var returnType = null;
@@ -120,7 +119,7 @@
120119
};
121120

122121
/**
123-
* (Optional)Callback function to receive the result of the getOAuthToken operation. If none specified a Promise will be returned.
122+
* (Optional) Callback function to receive the result of the getOAuthToken operation. If none specified a Promise will be returned.
124123
* @callback module:api/AuthenticationApi~getOAuthTokenCallback
125124
* @param {String} error Error message, if any.
126125
* @param {module:model/OauthAccess} data The data returned by the service call.
@@ -152,7 +151,7 @@
152151
var formParams = {
153152
};
154153

155-
var authNames = [];
154+
var authNames = ['docusignAccessCode'];
156155
var contentTypes = [];
157156
var accepts = ['application/json'];
158157
var returnType = OauthAccess;
@@ -165,15 +164,15 @@
165164
};
166165

167166
/**
168-
* (Optional)Callback function to receive the result of the listSocialLogins operation. If none specified a Promise will be returned.
167+
* (Optional) Callback function to receive the result of the listSocialLogins operation. If none specified a Promise will be returned.
169168
* @callback module:api/AuthenticationApi~listSocialLoginsCallback
170169
* @param {String} error Error message, if any.
171170
* @param {module:model/UserSocialIdResult} data The data returned by the service call.
172171
* @param {String} If a callback was specified, the response The complete HTTP response, else a Promise resolving the response Data.
173172
*/
174173

175174
/**
176-
* Gets a list of a user's social accounts.
175+
* Gets a list of a user's social accounts.
177176
* Retrieves a list of social accounts linked to a user's account.
178177
* @param {String} accountId The external account number (int) or account ID Guid.
179178
* @param {String} userId The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
@@ -184,12 +183,12 @@
184183
var postBody = null;
185184

186185
// verify the required parameter 'accountId' is set
187-
if (accountId == undefined || accountId == null) {
186+
if (accountId === undefined || accountId === null) {
188187
throw new Error("Missing the required parameter 'accountId' when calling listSocialLogins");
189188
}
190189

191190
// verify the required parameter 'userId' is set
192-
if (userId == undefined || userId == null) {
191+
if (userId === undefined || userId === null) {
193192
throw new Error("Missing the required parameter 'userId' when calling listSocialLogins");
194193
}
195194

@@ -211,7 +210,7 @@
211210
var formParams = {
212211
};
213212

214-
var authNames = [];
213+
var authNames = ['docusignAccessCode'];
215214
var contentTypes = [];
216215
var accepts = ['application/json'];
217216
var returnType = UserSocialIdResult;
@@ -224,7 +223,7 @@
224223
};
225224

226225
/**
227-
* (Optional)Callback function to receive the result of the login operation. If none specified a Promise will be returned.
226+
* (Optional) Callback function to receive the result of the login operation. If none specified a Promise will be returned.
228227
* @callback module:api/AuthenticationApi~loginCallback
229228
* @param {String} error Error message, if any.
230229
* @param {module:model/LoginInformation} data The data returned by the service call.
@@ -274,7 +273,7 @@ The `baseUrl` property, returned in the response, is used in all future API call
274273
var formParams = {
275274
};
276275

277-
var authNames = [];
276+
var authNames = ['docusignAccessCode'];
278277
var contentTypes = [];
279278
var accepts = ['application/json'];
280279
var returnType = LoginInformation;
@@ -287,7 +286,7 @@ The `baseUrl` property, returned in the response, is used in all future API call
287286
};
288287

289288
/**
290-
* (Optional)Callback function to receive the result of the revokeOAuthToken operation. If none specified a Promise will be returned.
289+
* (Optional) Callback function to receive the result of the revokeOAuthToken operation. If none specified a Promise will be returned.
291290
* @callback module:api/AuthenticationApi~revokeOAuthTokenCallback
292291
* @param {String} error Error message, if any.
293292
* @param data This operation does not return a value.
@@ -318,7 +317,7 @@ The `baseUrl` property, returned in the response, is used in all future API call
318317
var formParams = {
319318
};
320319

321-
var authNames = [];
320+
var authNames = ['docusignAccessCode'];
322321
var contentTypes = [];
323322
var accepts = ['application/json'];
324323
var returnType = null;
@@ -331,7 +330,7 @@ The `baseUrl` property, returned in the response, is used in all future API call
331330
};
332331

333332
/**
334-
* (Optional)Callback function to receive the result of the updatePassword operation. If none specified a Promise will be returned.
333+
* (Optional) Callback function to receive the result of the updatePassword operation. If none specified a Promise will be returned.
335334
* @callback module:api/AuthenticationApi~updatePasswordCallback
336335
* @param {String} error Error message, if any.
337336
* @param data This operation does not return a value.
@@ -357,7 +356,7 @@ The `baseUrl` property, returned in the response, is used in all future API call
357356
var postBody = optsOrCallback['userPasswordInformation'];
358357

359358
// verify the required parameter 'loginPart' is set
360-
if (loginPart == undefined || loginPart == null) {
359+
if (loginPart === undefined || loginPart === null) {
361360
throw new Error("Missing the required parameter 'loginPart' when calling updatePassword");
362361
}
363362

@@ -378,7 +377,7 @@ The `baseUrl` property, returned in the response, is used in all future API call
378377
var formParams = {
379378
};
380379

381-
var authNames = [];
380+
var authNames = ['docusignAccessCode'];
382381
var contentTypes = [];
383382
var accepts = ['application/json'];
384383
var returnType = null;
@@ -391,7 +390,7 @@ The `baseUrl` property, returned in the response, is used in all future API call
391390
};
392391

393392
/**
394-
* (Optional)Callback function to receive the result of the updateSocialLogin operation. If none specified a Promise will be returned.
393+
* (Optional) Callback function to receive the result of the updateSocialLogin operation. If none specified a Promise will be returned.
395394
* @callback module:api/AuthenticationApi~updateSocialLoginCallback
396395
* @param {String} error Error message, if any.
397396
* @param data This operation does not return a value.
@@ -418,12 +417,12 @@ The `baseUrl` property, returned in the response, is used in all future API call
418417
var postBody = optsOrCallback['socialAccountInformation'];
419418

420419
// verify the required parameter 'accountId' is set
421-
if (accountId == undefined || accountId == null) {
420+
if (accountId === undefined || accountId === null) {
422421
throw new Error("Missing the required parameter 'accountId' when calling updateSocialLogin");
423422
}
424423

425424
// verify the required parameter 'userId' is set
426-
if (userId == undefined || userId == null) {
425+
if (userId === undefined || userId === null) {
427426
throw new Error("Missing the required parameter 'userId' when calling updateSocialLogin");
428427
}
429428

@@ -445,7 +444,7 @@ The `baseUrl` property, returned in the response, is used in all future API call
445444
var formParams = {
446445
};
447446

448-
var authNames = [];
447+
var authNames = ['docusignAccessCode'];
449448
var contentTypes = [];
450449
var accepts = ['application/json'];
451450
var returnType = null;
@@ -459,4 +458,4 @@ The `baseUrl` property, returned in the response, is used in all future API call
459458
};
460459

461460
return exports;
462-
}));
461+
}));

0 commit comments

Comments
 (0)