@0xmonaco/types 0.6.1 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/auth/index.d.ts
CHANGED
|
@@ -66,11 +66,11 @@ export interface AuthAPI extends BaseAPI {
|
|
|
66
66
|
*/
|
|
67
67
|
refreshToken(refreshToken: string): Promise<TokenRefreshResponse>;
|
|
68
68
|
/**
|
|
69
|
-
* Revokes
|
|
70
|
-
*
|
|
69
|
+
* Revokes the current session's refresh token.
|
|
70
|
+
* The server identifies the token to revoke from the access token in the Authorization header.
|
|
71
71
|
* @returns Promise resolving when the token is revoked
|
|
72
72
|
*/
|
|
73
|
-
revokeToken(
|
|
73
|
+
revokeToken(): Promise<void>;
|
|
74
74
|
/**
|
|
75
75
|
* Sets the wallet client for signing operations.
|
|
76
76
|
* Used when the wallet becomes available after SDK initialization.
|