| export * as InstallationEvent from "./installation-event" | |
| import { Schema } from "effect" | |
| import { Event } from "./event" | |
| export const Updated = Event.define({ | |
| type: "installation.updated", | |
| schema: { | |
| version: Schema.String, | |
| }, | |
| }) | |
| export const UpdateAvailable = Event.define({ | |
| type: "installation.update-available", | |
| schema: { | |
| version: Schema.String, | |
| }, | |
| }) | |
| export const Definitions = Event.inventory(Updated, UpdateAvailable) | |