Skip to content

Commit

Permalink
Add fields docstring to get client by id (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjmcgrath committed Oct 10, 2022
1 parent b486af7 commit f8a1783
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/management/ClientsManager.js
Expand Up @@ -97,6 +97,8 @@ class ClientsManager extends BaseManager {
* });
* @param {object} params Client parameters.
* @param {string} params.client_id Application client ID.
* @param {string} params.fields Comma-separated list of fields to include or exclude (based on value provided for include_fields).
* @param {string} params.include_fields Whether specified fields are to be included (true) or excluded (false).
* @param {Function} [cb] Callback function.
* @returns {Promise|undefined}
*/
Expand Down
2 changes: 2 additions & 0 deletions src/management/index.js
Expand Up @@ -525,6 +525,8 @@ class ManagementClient {
* });
* @param {object} params Client parameters.
* @param {string} params.client_id Application client ID.
* @param {string} params.fields Comma-separated list of fields to include or exclude (based on value provided for include_fields).
* @param {string} params.include_fields Whether specified fields are to be included (true) or excluded (false).
* @param {Function} [cb] Callback function.
* @returns {Promise|undefined}
*/
Expand Down

0 comments on commit f8a1783

Please sign in to comment.