> ## Documentation Index
> Fetch the complete documentation index at: https://developer.suki.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# UpdatePartnerToken Type

> Response type for updatePartnerToken method

## Type definition

Below is the type definition for the `UpdatePartnerTokenResponse` type. This is the return type for the `updatePartnerToken()` method from the `useAuth` hook. It contains updated authentication tokens after successfully updating the `partnerToken`.

```tsx theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
type UpdatePartnerTokenResponse = {
  suki_token: string;
  jwt_bearer: string;
};
```
