Sorry if this is a noob question (I’m especially a noob when it comes to `handlebars`), but I’m trying to make the output to export not only the schemas, but also the types. On this page (https://github.com/astahmer/openapi-zod-client/blob/main/examples/export-schemas-and-types-directly/schemas-and-types-directly.hbs), I found a template that does that. However, I also need the additional “standard” declarations, like all the endpoints, and ```ts export const MyApi = new Zodios(endpoints); ``` or ```ts export function createApiClient(baseUrl: string, options?: ZodiosOptions) { return new Zodios(baseUrl, endpoints, options); } ``` Is there any “default” Handlebars template that I can use as a base and customize as needed?