Contents
PR Summary
What problems was I solving
The CloudflareClientConfigSchema Zod schema was exported as part of the @architect/cloudflare-client public API even though no external code imported it. Keeping it public enlarged the package's surface area and suggested a supported contract for an object that was only meant to back parseCloudflareClientConfig.
What user-facing changes did I ship
None. This is an internal cleanup with no behavioral, runtime, or API signature changes for existing consumers.
How I implemented it
Removed the schema from the package's barrel re-export in index.ts and dropped the export keyword at the definition site in cloudflare-client-config.ts. The schema object is retained as a private const so parseCloudflareClientConfig and the exported CloudflareClientConfig type continue to work exactly as before.
Description for the changelog
Cleaned up the @architect/cloudflare-client package by removing the unused public export of CloudflareClientConfigSchema; the schema remains a private implementation detail used by parseCloudflareClientConfig. No consumer updates are required.