/** * routes/stepup.ts * * Handlers for the relay step-up ceremony verbs over the shared StepUpService * (relay/step-up-service.ts). Thin verb registration: read+validate the * invocation params, call the service, return its result. The same service * instance backs the daemon's real StepUpAssertionVerifier, so a challenge * minted here is the object the relay gate later consumes. */ import type { GatewayMethodCatalog } from '../method-catalog.js'; import type { StepUpService } from '../../relay/step-up-service.js'; export type StepUpGatewayService = Pick; export declare function registerStepUpGatewayMethods(catalog: GatewayMethodCatalog, service: StepUpGatewayService): void; //# sourceMappingURL=stepup.d.ts.map