14 lines
491 B
TypeScript
14 lines
491 B
TypeScript
import { Schema } from "effect"
|
|
|
|
import { Identifier } from "@/id/id"
|
|
import { withStatics } from "@opencode-ai/core/schema"
|
|
|
|
const workspaceIdSchema = Schema.String.check(Schema.isStartsWith("wrk")).pipe(Schema.brand("WorkspaceID"))
|
|
|
|
export type WorkspaceID = typeof workspaceIdSchema.Type
|
|
|
|
export const WorkspaceID = workspaceIdSchema.pipe(
|
|
withStatics((schema: typeof workspaceIdSchema) => ({
|
|
ascending: (id?: string) => schema.make(Identifier.ascending("workspace", id)),
|
|
})),
|
|
)
|