Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for client, tenant and resource level properties related to HRI #1024

Merged
merged 2 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions src/management/__generated/managers/clients-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ export class ClientsManager extends BaseAPI {
}

/**
* Delete a client credential you previously created. May be enabled or disabled. For more information, read <a href="https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow">Client Credential Flow</a>.
* Delete a client credential
*
* @throws {RequiredError}
Expand Down Expand Up @@ -242,9 +243,9 @@ export class ClientsManager extends BaseAPI {
}

/**
* Get the list of client credentials that are associated to the client.
* Get the details of a client credential.
*
* Important: To enable credentials to be used
* <b>Important</b>: To enable credentials to be used for Private Key JWT authentication method, set the <code>client_authentication_methods</code> property on the client.
* Get client credentials
*
* @throws {RequiredError}
Expand All @@ -271,7 +272,9 @@ export class ClientsManager extends BaseAPI {

/**
* Get the details of a client credential.
* Get client credential
*
* <b>Important</b>: To enable credentials to be used for Private Key JWT authentication method, set the <code>client_authentication_methods</code> property on the client.
* Get client credential details
*
* @throws {RequiredError}
*/
Expand Down Expand Up @@ -336,6 +339,7 @@ export class ClientsManager extends BaseAPI {
}

/**
* Change a client credential you previously created. May be enabled or disabled. For more information, read <a href="https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow">Client Credential Flow</a>.
* Update a client credential
*
* @throws {RequiredError}
Expand Down Expand Up @@ -407,7 +411,8 @@ export class ClientsManager extends BaseAPI {
}

/**
* Create a client credential associated to the client. The credential will be created but not yet enabled
* Create a client credential associated to your application. The credential will be created but not yet enabled for use with Private Key JWT authentication method. To enable the credential, set the <code>client_authentication_methods</code> property on the client.
* For more information, read <a href="https://www.auth0.com//docs/get-started/applications/configure-private-key-jwt">Configure Private Key JWT Authentication</a>.
* Create a client credential
*
* @throws {RequiredError}
Expand Down
Loading
Loading