@likeminds.community/chat-js-beta
Version:
LikeMinds Javascript SDK for chat APIs
17 lines (16 loc) • 448 B
TypeScript
import { Community } from '../../../shared/interfaces/Community';
import { Member } from '../../../shared/interfaces/Member';
export interface InitiateUserResponse {
community: Community;
accessToken: string;
refreshToken: string;
user: Member;
appAccess: boolean;
hasAnswers?: boolean;
}
export interface ValidateUserResponse {
appAccess: boolean;
community: Community;
hasAnswers: boolean;
user: Member;
}