Skip to content
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
1,430 changes: 1,170 additions & 260 deletions reference.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions src/Auth0.ManagementApi/ClientGrants/ClientGrantsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal ClientGrantsClient(RawClient client)
public Auth0.ManagementApi.ClientGrants.IOrganizationsClient Organizations { get; }

/// <summary>
/// Retrieve a list of <see href="https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants">client grants</see>, including the scopes associated with the application/API pair.
/// Retrieve a list of [client grants](https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants), including the scopes associated with the application/API pair.
/// </summary>
private WithRawResponseTask<ListClientGrantPaginatedResponseContent> ListInternalAsync(
ListClientGrantsRequestParameters request,
Expand Down Expand Up @@ -401,7 +401,7 @@ private async Task<WithRawResponse<UpdateClientGrantResponseContent>> UpdateAsyn
}

/// <summary>
/// Retrieve a list of <see href="https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants">client grants</see>, including the scopes associated with the application/API pair.
/// Retrieve a list of [client grants](https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants), including the scopes associated with the application/API pair.
/// </summary>
/// <example><code>
/// await client.ClientGrants.ListAsync(
Expand Down Expand Up @@ -452,7 +452,7 @@ await ListInternalAsync(request, options, cancellationToken).WithRawResponse(),
}

/// <summary>
/// Create a client grant for a machine-to-machine login flow. To learn more, read <see href="https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow">Client Credential Flow</see>.
/// Create a client grant for a machine-to-machine login flow. To learn more, read [Client Credential Flow](https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow).
/// </summary>
/// <example><code>
/// await client.ClientGrants.CreateAsync(
Expand All @@ -471,7 +471,7 @@ public WithRawResponseTask<CreateClientGrantResponseContent> CreateAsync(
}

/// <summary>
/// Retrieve a single <see href="https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants">client grant</see>, including the
/// Retrieve a single [client grant](https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants), including the
/// scopes associated with the application/API pair.
/// </summary>
/// <example><code>
Expand All @@ -489,7 +489,7 @@ public WithRawResponseTask<GetClientGrantResponseContent> GetAsync(
}

/// <summary>
/// Delete the <see href="https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow">Client Credential Flow</see> from your machine-to-machine application.
/// Delete the [Client Credential Flow](https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow) from your machine-to-machine application.
/// </summary>
/// <example><code>
/// await client.ClientGrants.DeleteAsync("id");
Expand Down
8 changes: 4 additions & 4 deletions src/Auth0.ManagementApi/ClientGrants/IClientGrantsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public partial interface IClientGrantsClient
public Auth0.ManagementApi.ClientGrants.IOrganizationsClient Organizations { get; }

/// <summary>
/// Retrieve a list of <see href="https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants">client grants</see>, including the scopes associated with the application/API pair.
/// Retrieve a list of [client grants](https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants), including the scopes associated with the application/API pair.
/// </summary>
Task<Pager<ClientGrantResponseContent>> ListAsync(
ListClientGrantsRequestParameters request,
Expand All @@ -16,7 +16,7 @@ Task<Pager<ClientGrantResponseContent>> ListAsync(
);

/// <summary>
/// Create a client grant for a machine-to-machine login flow. To learn more, read <see href="https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow">Client Credential Flow</see>.
/// Create a client grant for a machine-to-machine login flow. To learn more, read [Client Credential Flow](https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow).
/// </summary>
WithRawResponseTask<CreateClientGrantResponseContent> CreateAsync(
CreateClientGrantRequestContent request,
Expand All @@ -25,7 +25,7 @@ WithRawResponseTask<CreateClientGrantResponseContent> CreateAsync(
);

/// <summary>
/// Retrieve a single <see href="https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants">client grant</see>, including the
/// Retrieve a single [client grant](https://auth0.com/docs/get-started/applications/application-access-to-apis-client-grants), including the
/// scopes associated with the application/API pair.
/// </summary>
WithRawResponseTask<GetClientGrantResponseContent> GetAsync(
Expand All @@ -35,7 +35,7 @@ WithRawResponseTask<GetClientGrantResponseContent> GetAsync(
);

/// <summary>
/// Delete the <see href="https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow">Client Credential Flow</see> from your machine-to-machine application.
/// Delete the [Client Credential Flow](https://www.auth0.com/docs/get-started/authentication-and-authorization-flow/client-credentials-flow) from your machine-to-machine application.
/// </summary>
Task DeleteAsync(
string id,
Expand Down
Loading
Loading