///
import { toSchema } from "commonfabric";
type Cfc = T & { readonly __ct_cfc__?: Meta };
type OpaqueInput<
T,
Spec extends true | { schema?: unknown; allowPassThrough?: boolean } = true,
> = Cfc;
interface SecretPayload {
token: OpaqueInput;
}
const schema = toSchema();
// FIXTURE: opaque-input-lowering
// Verifies: OpaqueInput lowers to ifc.opaque in emitted schemas
export default schema;