UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

11 lines (10 loc) 510 B
import type { ChannelDeliveryMetadata, SessionTraceContext } from "#channel/types.js"; export interface ChannelDeliverySource { readonly acceptedDeploymentId?: string; readonly channelKind: string; readonly channelName: string; readonly requestId?: string; readonly requestTraceContext?: SessionTraceContext; } /** Mints the opaque identity for one inbound channel operation. */ export declare function createChannelDeliveryMetadata(source: ChannelDeliverySource): ChannelDeliveryMetadata;