refactor(schema): extract public event definitions (#33579)

This commit is contained in:
Kit Langton
2026-06-24 16:43:17 -04:00
committed by GitHub
parent 858f35f1b3
commit 24b0132bc5
93 changed files with 2740 additions and 2124 deletions
+13
View File
@@ -0,0 +1,13 @@
export * as VcsEvent from "./vcs-event"
import { Schema } from "effect"
import { Event } from "./event"
export const BranchUpdated = Event.define({
type: "vcs.branch.updated",
schema: {
branch: Schema.optional(Schema.String),
},
})
export const Definitions = Event.inventory(BranchUpdated)