14 lines
397 B
TypeScript
14 lines
397 B
TypeScript
import { Schema } from "effect"
|
|
import z from "zod"
|
|
|
|
import { Identifier } from "@/id/id"
|
|
import { withStatics } from "@/util/schema"
|
|
|
|
export const EventID = Schema.String.pipe(
|
|
Schema.brand("EventID"),
|
|
withStatics((s) => ({
|
|
ascending: (id?: string) => s.make(Identifier.ascending("event", id)),
|
|
zod: Identifier.schema("event").pipe(z.custom<Schema.Schema.Type<typeof s>>()),
|
|
})),
|
|
)
|