UNPKG

@sociate/sociate-api-sdk

Version:

Javascript client for Sociate AI APIs

14 lines (13 loc) 326 B
export class UsersAPI { httpClient; constructor(httpClient) { this.httpClient = httpClient; } /** * Retrieves the current user's information. * @returns A promise that resolves to the user's information. */ async me() { return await this.httpClient.get('/users/me'); } }