import { Schema } from "effect" import { AbsolutePath, DateTimeUtcFromMillis, NonNegativeInt, optional, PositiveInt, RelativePath, statics, } from "@opencode-ai/schema/schema" export { AbsolutePath, DateTimeUtcFromMillis, NonNegativeInt, optional, PositiveInt, RelativePath, statics } /** * Strip `readonly` from a nested type. Stand-in for `effect`'s `Types.DeepMutable` * until `effect:core/x228my` ("Types.DeepMutable widens unknown to `{}`") lands. * * The upstream version falls through `unknown` into `{ -readonly [K in keyof T]: ... }` * where `keyof unknown = never`, so `unknown` collapses to `{}`. This local * version gates the object branch on `extends object` (which `unknown` does * not) so `unknown` passes through untouched. * * Primitive bailout matches upstream — without it, branded strings like * `string & Brand<"SessionID">` fall into the object branch and get their * prototype methods walked. * * Tuple branch preserves readonly tuples (e.g. `ConfigPlugin.Spec`'s * `readonly [string, Options]`); the general array branch would otherwise * widen them to unbounded arrays. */ // eslint-disable-next-line @typescript-eslint/ban-types export type DeepMutable = T extends string | number | boolean | bigint | symbol | Function ? T : T extends readonly [unknown, ...unknown[]] ? { -readonly [K in keyof T]: DeepMutable } : T extends readonly (infer U)[] ? DeepMutable[] : T extends object ? { -readonly [K in keyof T]: DeepMutable } : T /** * Nominal wrapper for scalar types. The class itself is a valid schema — * pass it directly to `Schema.decode`, `Schema.decodeEffect`, etc. * * Overrides `~type.make` on the derived `Schema.Opaque` so `Schema.Schema.Type` * of a field using this newtype resolves to `Self` rather than the underlying * branded phantom. Without that override, passing a class instance to code * typed against `Schema.Schema.Type` would require a cast even * though the values are structurally equivalent at runtime. * * @example * class QuestionID extends Newtype()("QuestionID", Schema.String) { * static make(id: string): QuestionID { * return this.make(id) * } * } * * Schema.decodeEffect(QuestionID)(input) */ export function Newtype() { return (tag: Tag, schema: S) => { abstract class Base { declare readonly _newtype: Tag static make(value: Schema.Schema.Type): Self { return value as unknown as Self } } Object.setPrototypeOf(Base, schema) return Base as unknown as (abstract new (_: never) => { readonly _newtype: Tag }) & { readonly make: (value: Schema.Schema.Type) => Self } & Omit, "make" | "~type.make"> & { readonly "~type.make": Self } } }