fix(core): update
This commit is contained in:
37
ts/sio-interfaces.data.ts
Normal file
37
ts/sio-interfaces.data.ts
Normal file
@@ -0,0 +1,37 @@
|
||||
import * as plugins from './interfaces.plugins';
|
||||
|
||||
// Basic Conversation
|
||||
export interface ISioConversationParty {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export interface ISioConversationBlock {
|
||||
partyId: string;
|
||||
text: string;
|
||||
}
|
||||
|
||||
export interface ISioConversation {
|
||||
parties: ISioConversationParty[];
|
||||
conversationBlocks: ISioConversationBlock[];
|
||||
}
|
||||
|
||||
// Sessions
|
||||
export interface ISioSession {
|
||||
tenantId: string;
|
||||
active: boolean;
|
||||
abandoned: boolean;
|
||||
markedForDeletion: boolean;
|
||||
profileInfo?: {
|
||||
profileId: string;
|
||||
name: string;
|
||||
email: string;
|
||||
mobilePhone: string;
|
||||
|
||||
};
|
||||
conversations: ISioConversation[];
|
||||
}
|
||||
|
||||
// tenant
|
||||
export interface ISioTenant {}
|
||||
Reference in New Issue
Block a user