mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-16 03:31:10 +00:00
181 lines
3.4 KiB
TypeScript
181 lines
3.4 KiB
TypeScript
export type QaBusConversationKind = "direct" | "channel";
|
|
|
|
export type QaBusConversation = {
|
|
id: string;
|
|
kind: QaBusConversationKind;
|
|
title?: string;
|
|
};
|
|
|
|
export type QaBusMessage = {
|
|
id: string;
|
|
accountId: string;
|
|
direction: "inbound" | "outbound";
|
|
conversation: QaBusConversation;
|
|
senderId: string;
|
|
senderName?: string;
|
|
text: string;
|
|
timestamp: number;
|
|
threadId?: string;
|
|
threadTitle?: string;
|
|
replyToId?: string;
|
|
deleted?: boolean;
|
|
editedAt?: number;
|
|
reactions: Array<{
|
|
emoji: string;
|
|
senderId: string;
|
|
timestamp: number;
|
|
}>;
|
|
};
|
|
|
|
export type QaBusThread = {
|
|
id: string;
|
|
accountId: string;
|
|
conversationId: string;
|
|
title: string;
|
|
createdAt: number;
|
|
createdBy: string;
|
|
};
|
|
|
|
export type QaBusEvent =
|
|
| {
|
|
cursor: number;
|
|
kind: "inbound-message";
|
|
accountId: string;
|
|
message: QaBusMessage;
|
|
}
|
|
| {
|
|
cursor: number;
|
|
kind: "outbound-message";
|
|
accountId: string;
|
|
message: QaBusMessage;
|
|
}
|
|
| {
|
|
cursor: number;
|
|
kind: "thread-created";
|
|
accountId: string;
|
|
thread: QaBusThread;
|
|
}
|
|
| {
|
|
cursor: number;
|
|
kind: "message-edited";
|
|
accountId: string;
|
|
message: QaBusMessage;
|
|
}
|
|
| {
|
|
cursor: number;
|
|
kind: "message-deleted";
|
|
accountId: string;
|
|
message: QaBusMessage;
|
|
}
|
|
| {
|
|
cursor: number;
|
|
kind: "reaction-added";
|
|
accountId: string;
|
|
message: QaBusMessage;
|
|
emoji: string;
|
|
senderId: string;
|
|
};
|
|
|
|
export type QaBusInboundMessageInput = {
|
|
accountId?: string;
|
|
conversation: QaBusConversation;
|
|
senderId: string;
|
|
senderName?: string;
|
|
text: string;
|
|
timestamp?: number;
|
|
threadId?: string;
|
|
threadTitle?: string;
|
|
replyToId?: string;
|
|
};
|
|
|
|
export type QaBusOutboundMessageInput = {
|
|
accountId?: string;
|
|
to: string;
|
|
senderId?: string;
|
|
senderName?: string;
|
|
text: string;
|
|
timestamp?: number;
|
|
threadId?: string;
|
|
replyToId?: string;
|
|
};
|
|
|
|
export type QaBusCreateThreadInput = {
|
|
accountId?: string;
|
|
conversationId: string;
|
|
title: string;
|
|
createdBy?: string;
|
|
timestamp?: number;
|
|
};
|
|
|
|
export type QaBusReactToMessageInput = {
|
|
accountId?: string;
|
|
messageId: string;
|
|
emoji: string;
|
|
senderId?: string;
|
|
timestamp?: number;
|
|
};
|
|
|
|
export type QaBusEditMessageInput = {
|
|
accountId?: string;
|
|
messageId: string;
|
|
text: string;
|
|
timestamp?: number;
|
|
};
|
|
|
|
export type QaBusDeleteMessageInput = {
|
|
accountId?: string;
|
|
messageId: string;
|
|
timestamp?: number;
|
|
};
|
|
|
|
export type QaBusSearchMessagesInput = {
|
|
accountId?: string;
|
|
query?: string;
|
|
conversationId?: string;
|
|
threadId?: string;
|
|
limit?: number;
|
|
};
|
|
|
|
export type QaBusReadMessageInput = {
|
|
accountId?: string;
|
|
messageId: string;
|
|
};
|
|
|
|
export type QaBusPollInput = {
|
|
accountId?: string;
|
|
cursor?: number;
|
|
timeoutMs?: number;
|
|
limit?: number;
|
|
};
|
|
|
|
export type QaBusPollResult = {
|
|
cursor: number;
|
|
events: QaBusEvent[];
|
|
};
|
|
|
|
export type QaBusStateSnapshot = {
|
|
cursor: number;
|
|
conversations: QaBusConversation[];
|
|
threads: QaBusThread[];
|
|
messages: QaBusMessage[];
|
|
events: QaBusEvent[];
|
|
};
|
|
|
|
export type QaBusWaitForInput =
|
|
| {
|
|
timeoutMs?: number;
|
|
kind: "event-kind";
|
|
eventKind: QaBusEvent["kind"];
|
|
}
|
|
| {
|
|
timeoutMs?: number;
|
|
kind: "message-text";
|
|
textIncludes: string;
|
|
direction?: QaBusMessage["direction"];
|
|
}
|
|
| {
|
|
timeoutMs?: number;
|
|
kind: "thread-id";
|
|
threadId: string;
|
|
};
|