Skip to content

Commit

Permalink
Fix type of upsert and send_completion_email
Browse files Browse the repository at this point in the history
  • Loading branch information
orangain authored and lbalmaceda committed Mar 6, 2020
1 parent 057063f commit 4235906
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/management/JobsManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ JobsManager.prototype.get = function(params, cb) {
* @param {String} data.connection_id connection_id of the connection to which users will be imported.
* @param {String} [data.users] Path to the users data file. Either users or users_json is mandatory.
* @param {String} [data.users_json] JSON data for the users.
* @param {String} [data.upsert] Whether to update users if they already exist (true) or to ignore them (false).
* @param {String} [data.send_completion_email] Whether to send a completion email to all tenant owners when the job is finished (true) or not (false).
* @param {Boolean} [data.upsert] Whether to update users if they already exist (true) or to ignore them (false).
* @param {Boolean} [data.send_completion_email] Whether to send a completion email to all tenant owners when the job is finished (true) or not (false).
* @param {Function} [cb] Callback function.
*
* @return {Promise|undefined}
Expand Down
4 changes: 2 additions & 2 deletions src/management/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2037,8 +2037,8 @@ utils.wrapPropertyMethod(ManagementClient, 'getJob', 'jobs.get');
* @param {String} data.connection_id connection_id of the connection to which users will be imported.
* @param {String} [data.users] Path to the users data file. Either users or users_json is mandatory.
* @param {String} [data.users_json] JSON data for the users.
* @param {String} [data.upsert] Whether to update users if they already exist (true) or to ignore them (false).
* @param {String} [data.send_completion_email] Whether to send a completion email to all tenant owners when the job is finished (true) or not (false).
* @param {Boolean} [data.upsert] Whether to update users if they already exist (true) or to ignore them (false).
* @param {Boolean} [data.send_completion_email] Whether to send a completion email to all tenant owners when the job is finished (true) or not (false).
* @param {Function} [cb] Callback function.
*
* @return {Promise|undefined}
Expand Down

0 comments on commit 4235906

Please sign in to comment.