@amityco/ts-sdk-react-native
Version:
Amity Social Cloud Typescript SDK
23 lines (19 loc) • 563 B
text/typescript
import { getActiveClient } from './activeClient';
/**
* ```js
* import { getChatSettings } from '@amityco/ts-sdk-react-native'
* const chatSettings = await getChatSettings()
* ```
*
* Fetches a {@link Amity.ChatSettings} object
*
* @returns A Promise of {@link Amity.ChatSettings} object
*
* @category Client API
* @async
*/
export const getChatSettings = async (): Promise<Amity.ChatSettings> => {
const client = getActiveClient();
const { data } = await client.http.get<Amity.ChatSettings>(`/api/v3/network-settings/chat`);
return data;
};