(wantedId: string, input: AcceptUpstreamClientInput)
| 298 | } |
| 299 | |
| 300 | async acceptUpstream(wantedId: string, input: AcceptUpstreamClientInput): Promise<AcceptOutcome> { |
| 301 | return unwrap( |
| 302 | await acceptUpstream({ ...input, ctx: this.#ctx(), wantedId }), |
| 303 | this.#config.onError |
| 304 | ); |
| 305 | } |
| 306 | |
| 307 | async reject(wantedId: string, input: RejectInput = {}): Promise<MutationOutcome> { |
| 308 | return unwrap( |
no test coverage detected