Skip to content

Type Alias: SelectMessageRouting

Makaio Framework


Makaio Framework / services-core / SelectMessageRouting

SelectMessageRouting = typeof messageRouting.$inferSelect

Defined in: ../../../packages/services/core/src/session/message-routing/schema.ts:75

Type for a selected routing entry row.

type SelectMessageRouting = {
error: string | null;
agentId: string;
messageId: string;
status: 'completed' | 'acknowledged' | 'sent';
timestamp: number;
};