mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 02:36:57 -04:00
24 lines
830 B
TypeScript
24 lines
830 B
TypeScript
export * as SessionInput from "./session-input"
|
|
|
|
import { Schema } from "effect"
|
|
import { optional } from "./schema"
|
|
import { Prompt } from "./prompt"
|
|
import { DateTimeUtcFromMillis, NonNegativeInt } from "./schema"
|
|
import { SessionDelivery } from "./session-delivery"
|
|
import { SessionID } from "./session-id"
|
|
import { SessionMessage } from "./session-message"
|
|
|
|
export const Delivery = SessionDelivery.Delivery
|
|
export type Delivery = SessionDelivery.Delivery
|
|
|
|
export interface Admitted extends Schema.Schema.Type<typeof Admitted> {}
|
|
export const Admitted = Schema.Struct({
|
|
admittedSeq: NonNegativeInt,
|
|
id: SessionMessage.ID,
|
|
sessionID: SessionID,
|
|
prompt: Prompt,
|
|
delivery: Delivery,
|
|
timeCreated: DateTimeUtcFromMillis,
|
|
promotedSeq: NonNegativeInt.pipe(optional),
|
|
}).annotate({ identifier: "SessionInput.Admitted" })
|