7f571d36ea
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
27 lines
826 B
TypeScript
27 lines
826 B
TypeScript
import { Schema } from "effect"
|
|
|
|
import { Identifier } from "@/id/id"
|
|
import { SessionV2 } from "@opencode-ai/core/session"
|
|
import { withStatics } from "@opencode-ai/core/schema"
|
|
|
|
export const SessionID = SessionV2.ID
|
|
export type SessionID = Schema.Schema.Type<typeof SessionID>
|
|
|
|
export const MessageID = Schema.String.check(Schema.isStartsWith("msg")).pipe(
|
|
Schema.brand("MessageID"),
|
|
withStatics((s) => ({
|
|
ascending: (id?: string) => s.make(Identifier.ascending("message", id)),
|
|
})),
|
|
)
|
|
|
|
export type MessageID = Schema.Schema.Type<typeof MessageID>
|
|
|
|
export const PartID = Schema.String.check(Schema.isStartsWith("prt")).pipe(
|
|
Schema.brand("PartID"),
|
|
withStatics((s) => ({
|
|
ascending: (id?: string) => s.make(Identifier.ascending("part", id)),
|
|
})),
|
|
)
|
|
|
|
export type PartID = Schema.Schema.Type<typeof PartID>
|