@botpress/webchat-client
Version:
19 lines (17 loc) • 454 B
text/typescript
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
}
}
}