Six mutation RPCs (create/edit/pause/resume/complete/clear) move into
dsh-host-apiproxy (the PR's host/runtime carrier is gone): goalService()
resolves ctx.get('goals') with a loud absence error, mutateGoal() resolves
the session's agent (agentFor, the command.* implicit-resume precedent) and
acknowledges with the new CAS ref only. GoalError codes ride err.details.
goal.get and the wire GoalView/goalViewSchema are gone: the read side is the
'goal' session projection (whole values on the history tail page and
session/projection frames), so responses never feed client state — the rule
whose absence forced the original PR's write-revision fences.
80 lines
3.0 KiB
TypeScript
80 lines
3.0 KiB
TypeScript
/**
|
|
* goals domain zod schemas. Mutation-only shapes: every value schema is a
|
|
* `{ ref }` acknowledgement (clear: `{ cleared }`) — the current goal state
|
|
* travels exclusively on the 'goal' session projection.
|
|
*/
|
|
|
|
import { z } from 'zod'
|
|
import type { Wire } from './rpc.schema.ts'
|
|
import type { GoalRef, RequestPayload, ResponseValue } from './index.ts'
|
|
|
|
/** GoalRef schema. */
|
|
export const goalRefSchema = z.object({
|
|
id: z.string(),
|
|
revision: z.number().int().positive(),
|
|
}) as unknown as z.ZodType<Wire<GoalRef>>
|
|
|
|
/** Shared `{ ref }` acknowledgement value of every non-clear mutation. */
|
|
const goalRefValueSchema = z.object({ ref: goalRefSchema })
|
|
|
|
/** goal.create request payload. */
|
|
export const goalCreateRequestSchema = z.object({
|
|
sessionId: z.string(),
|
|
objective: z.string().min(1),
|
|
maxGoalRounds: z.number().int().positive().optional(),
|
|
}) as unknown as z.ZodType<Wire<RequestPayload<'goal.create'>>>
|
|
|
|
/** goal.create response value. */
|
|
export const goalCreateValueSchema = goalRefValueSchema as unknown as z.ZodType<Wire<ResponseValue<'goal.create'>>>
|
|
|
|
/** goal.edit request payload. */
|
|
export const goalEditRequestSchema = z.object({
|
|
sessionId: z.string(),
|
|
ref: goalRefSchema,
|
|
objective: z.string().min(1).optional(),
|
|
maxGoalRounds: z.number().int().positive().optional(),
|
|
}).refine(value => value.objective !== undefined || value.maxGoalRounds !== undefined, {
|
|
message: 'goal.edit requires objective or maxGoalRounds',
|
|
}) as unknown as z.ZodType<Wire<RequestPayload<'goal.edit'>>>
|
|
|
|
/** goal.edit response value. */
|
|
export const goalEditValueSchema = goalRefValueSchema as unknown as z.ZodType<Wire<ResponseValue<'goal.edit'>>>
|
|
|
|
/** goal.pause request payload. */
|
|
export const goalPauseRequestSchema = z.object({
|
|
sessionId: z.string(),
|
|
ref: goalRefSchema,
|
|
}) as unknown as z.ZodType<Wire<RequestPayload<'goal.pause'>>>
|
|
|
|
/** goal.pause response value. */
|
|
export const goalPauseValueSchema = goalRefValueSchema as unknown as z.ZodType<Wire<ResponseValue<'goal.pause'>>>
|
|
|
|
/** goal.resume request payload. */
|
|
export const goalResumeRequestSchema = z.object({
|
|
sessionId: z.string(),
|
|
ref: goalRefSchema,
|
|
}) as unknown as z.ZodType<Wire<RequestPayload<'goal.resume'>>>
|
|
|
|
/** goal.resume response value. */
|
|
export const goalResumeValueSchema = goalRefValueSchema as unknown as z.ZodType<Wire<ResponseValue<'goal.resume'>>>
|
|
|
|
/** goal.complete request payload. */
|
|
export const goalCompleteRequestSchema = z.object({
|
|
sessionId: z.string(),
|
|
ref: goalRefSchema,
|
|
}) as unknown as z.ZodType<Wire<RequestPayload<'goal.complete'>>>
|
|
|
|
/** goal.complete response value. */
|
|
export const goalCompleteValueSchema = goalRefValueSchema as unknown as z.ZodType<Wire<ResponseValue<'goal.complete'>>>
|
|
|
|
/** goal.clear request payload. */
|
|
export const goalClearRequestSchema = z.object({
|
|
sessionId: z.string(),
|
|
ref: goalRefSchema,
|
|
}) as unknown as z.ZodType<Wire<RequestPayload<'goal.clear'>>>
|
|
|
|
/** goal.clear response value. */
|
|
export const goalClearValueSchema = z.object({
|
|
cleared: z.literal(true),
|
|
}) as unknown as z.ZodType<Wire<ResponseValue<'goal.clear'>>>
|