44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
export * as Plugin from "./plugin.js"
|
|
|
|
import { Schema } from "effect"
|
|
import { ephemeral, inventory } from "./event.js"
|
|
import { optional } from "./schema.js"
|
|
|
|
export const ID = Schema.String.pipe(Schema.brand("Plugin.ID"))
|
|
export type ID = typeof ID.Type
|
|
|
|
export const Source = Schema.Union([
|
|
Schema.Struct({ type: Schema.Literal("builtin") }),
|
|
Schema.Struct({ type: Schema.Literal("package"), package: Schema.String }),
|
|
Schema.Struct({ type: Schema.Literal("local"), path: Schema.String }),
|
|
Schema.Struct({ type: Schema.Literal("sdk") }),
|
|
]).annotate({ identifier: "Plugin.Source" })
|
|
export type Source = typeof Source.Type
|
|
|
|
export const Info = Schema.Union([
|
|
Schema.Struct({
|
|
id: ID,
|
|
source: Source,
|
|
status: Schema.Literal("active"),
|
|
tui: Schema.Boolean,
|
|
}),
|
|
Schema.Struct({
|
|
id: ID.pipe(optional),
|
|
source: Source,
|
|
status: Schema.Literal("failed"),
|
|
error: Schema.String,
|
|
tui: Schema.Boolean,
|
|
}),
|
|
]).annotate({ identifier: "Plugin.Info" })
|
|
export type Info = typeof Info.Type
|
|
|
|
const Added = ephemeral({
|
|
type: "plugin.added",
|
|
schema: { id: ID },
|
|
})
|
|
const Updated = ephemeral({
|
|
type: "plugin.updated",
|
|
schema: {},
|
|
})
|
|
export const Event = { Added, Updated, Definitions: inventory(Added, Updated) }
|