chore(ts): consolidate effect native closeout

This commit is contained in:
elpresidank 2026-06-11 08:34:59 -05:00
parent cd6c9107d7
commit fab718dce8
21 changed files with 199 additions and 3533 deletions

View file

@ -75,12 +75,12 @@ export const Field = S.Struct({
});
export type Field = typeof Field.Type;
export const RowSchema = S.Struct({
export const Row = S.Struct({
name: S.String,
description: S.optionalKey(S.String),
fields: S.Array(Field).pipe(S.mutable),
});
export type RowSchema = typeof RowSchema.Type;
export type Row = typeof Row.Type;
export const LlmResult = S.Struct({
text: S.String,