UNPKG

@ejazullah/smart-browser-automation

Version:

A smart AI-driven browser automation library and REST API server using MCP (Model Context Protocol) and LangChain for multi-step task execution. Includes both programmatic library usage and HTTP API server for remote automation.

19 lines (17 loc) 477 B
/** * Error format * * {@link https://postgrest.org/en/stable/api.html?highlight=options#errors-and-http-status-codes} */ export default class PostgrestError extends Error { details: string hint: string code: string constructor(context: { message: string; details: string; hint: string; code: string }) { super(context.message) this.name = 'PostgrestError' this.details = context.details this.hint = context.hint this.code = context.code } }