import { DatagateClient } from "datagate";// With API key (recommended)const client = new DatagateClient({ apiKey: "dg_live_..." });// With JWT access tokenconst client = new DatagateClient({ accessToken: "eyJ..." });// With custom base URL (for local development)const client = new DatagateClient({ apiKey: "dg_live_...", baseUrl: "http://localhost:8080",});