@Post('/:method')
  @HttpCode(200)
  async call (@Param('method', MethodBlacklist) method: string, @Body() call?: CallRequest): Promise<any> {
    return await this.client.call(method, call?.params ?? [], 'lossless')
  }