/** * Package version. Kept in sync with `package.json` manually on each * release. Used as the default User-Agent suffix when the client makes * requests so engine operators can see which SDK version they're * talking to in their access logs. */ export declare const VERSION = "0.3.0"; /** * The minimum engine version this SDK is known to be compatible with. * * Engine v0.59.0 introduced the `GET /v1/capabilities` endpoint that * the SDK's `capabilities()` method depends on. Connectors that call * `capabilities()` against an older engine will see a `404 Not Found` * (legacy engines don't have the route at all). * * The SDK does NOT enforce this version floor automatically — it is * exposed for connector tier code that wants to compare against * `(await client.capabilities()).version` and emit a clear error or * warning at setup time. */ export declare const MIN_ENGINE_VERSION = "0.59.0"; //# sourceMappingURL=version.d.ts.map