/**
 * Generated by @abacus/api-client-generator
 * Do not edit manually.
 */
const z = zod;

{{#each schemas}}
{{#unless (ifEndsWith @key "_Body" )}}
const {{@key}} = {{{this}}};
{{/unless}}
{{/each}}

{{#each schemas}}
{{#unless (ifEndsWith @key "_Body" )}}
export const {{pascalToCamel @key}} = {{@key}};
{{/unless}}
{{/each}}