feat(schema): publish package

This commit is contained in:
Dax Raad 2026-07-01 13:33:59 -04:00
commit 5e47501b8b
77 changed files with 413 additions and 325 deletions

View file

@ -1,9 +1,9 @@
export * as Reference from "./reference"
export * as Reference from "./reference.js"
import { Schema } from "effect"
import { optional } from "./schema"
import { define, inventory } from "./event"
import { AbsolutePath } from "./schema"
import { optional } from "./schema.js"
import { define, inventory } from "./event.js"
import { AbsolutePath } from "./schema.js"
const Updated = define({ type: "reference.updated", schema: {} })
export const Event = { Updated, Definitions: inventory(Updated) }