import * as __ctHelpers from "commontools"; import { cell, derive, lift } from "commontools"; const stage = cell("initial", { type: "string" } as const satisfies __ctHelpers.JSONSchema); const attemptCount = cell(0, { type: "number" } as const satisfies __ctHelpers.JSONSchema); const acceptedCount = cell(0, { type: "number" } as const satisfies __ctHelpers.JSONSchema); const rejectedCount = cell(0, { type: "number" } as const satisfies __ctHelpers.JSONSchema); const normalizedStage = lift({ type: "string" } as const satisfies __ctHelpers.JSONSchema, { type: "string" } as const satisfies __ctHelpers.JSONSchema, (value: string) => value)(stage); const attempts = lift({ type: "number" } as const satisfies __ctHelpers.JSONSchema, { type: "number" } as const satisfies __ctHelpers.JSONSchema, (count: number) => count)(attemptCount); const accepted = lift({ type: "number" } as const satisfies __ctHelpers.JSONSchema, { type: "number" } as const satisfies __ctHelpers.JSONSchema, (count: number) => count)(acceptedCount); const rejected = lift({ type: "number" } as const satisfies __ctHelpers.JSONSchema, { type: "number" } as const satisfies __ctHelpers.JSONSchema, (count: number) => count)(rejectedCount); const _summary = derive({ type: "object", properties: { stage: { type: "string", asOpaque: true }, attempts: { type: "number", asOpaque: true }, accepted: { type: "number", asOpaque: true }, rejected: { type: "number", asOpaque: true } }, required: ["stage", "attempts", "accepted", "rejected"] } as const satisfies __ctHelpers.JSONSchema, { type: "string" } as const satisfies __ctHelpers.JSONSchema, { stage: normalizedStage, attempts: attempts, accepted: accepted, rejected: rejected, }, (snapshot) => `stage:${snapshot.stage} attempts:${snapshot.attempts}` + ` accepted:${snapshot.accepted} rejected:${snapshot.rejected}`); // @ts-ignore: Internals function h(...args: any[]) { return __ctHelpers.h.apply(null, args); } // @ts-ignore: Internals h.fragment = __ctHelpers.h.fragment;