Skip to content

Interface: ClientConfig

Defined in: core/interfaces/clientConfig.ts:1

Properties

apiKey

ts
apiKey: string;

Defined in: core/interfaces/clientConfig.ts:3


apiToken

ts
apiToken: string;

Defined in: core/interfaces/clientConfig.ts:4


headers?

ts
optional headers?: Record<string, string>;

Defined in: core/interfaces/clientConfig.ts:5


host?

ts
optional host?: string;

Defined in: core/interfaces/clientConfig.ts:2


skipParsing?

ts
optional skipParsing?: boolean;

Defined in: core/interfaces/clientConfig.ts:11

When true, schema.parse() is not called on successful responses — neither Zod validation nor schema transforms (e.g. z.coerce.date()) run. Date fields remain plain strings. Use as an escape hatch against schema drift or to skip parsing overhead on large responses. Defaults to false.