diff --git a/src/types/api/credentials-exchange.d.ts b/src/types/api/credentials-exchange.d.ts index 5795f07..c930434 100644 --- a/src/types/api/credentials-exchange.d.ts +++ b/src/types/api/credentials-exchange.d.ts @@ -2,11 +2,11 @@ import { Cache } from "./cache"; export interface CredentialsExchange { /** - * Modify the user's login access, such as by rejecting the login attempt. + * Modify the access, such as by rejecting the exchange attempt. */ readonly access: { /** - * Mark the current login attempt as denied. This will prevent the end-user from completing the login flow. This will NOT cancel other user-related side effects (such as metadata changes) requested by this Action. The login flow will immediately stop following the completion of this action and no further Actions will be executed. + * Mark the current exchange attempt as denied. This will prevent the initiating party from completing the exchange flow. */ deny(code: string, reason: string): CredentialsExchange; };