(params)
| 721 | return { ok: true } |
| 722 | }, { |
| 723 | validateParams(params) { |
| 724 | const provider = validateStringParams("providerId")(params) |
| 725 | if (!provider.ok) return provider |
| 726 | return validateRequestIdParams(params) |
| 727 | }, |
| 728 | }) |
| 729 | server.register("agent/approval/reject", (params) => { |
| 730 | const bridge = bridgeFor(bridgeRegistry, params) |
nothing calls this directly
no test coverage detected