UNPKG

@botpress/webchat-client

Version:
19 lines (17 loc) 454 B
import type { GetConversationResponse, GetUserResponse, ListConversationMessagesResponse, ListParticipantsResponse, } from '../../../gen/client' export type Initialize = { type: 'init' data: { conversation: GetConversationResponse['conversation'] messages: ListConversationMessagesResponse['messages'] participants: ListParticipantsResponse['participants'] user: GetUserResponse['user'] & { userKey: string } } }