/**
 * Lead Forms query helpers — wave-8 leaf5.
 * Thin re-export from marketing.ts, keeping the dedicated-file contract
 * required by the lead-form-builder spec.
 *
 * Routes import from @zync/db/queries (barrel) — never directly from here.
 */
export {
  listLeadForms,
  getLeadForm,
  getLeadFormBySlug,
  getLeadFormSubmissionCount,
  createLeadForm,
  updateLeadForm,
  deleteLeadForm,
  createFormSubmissionAndLead,
  createLeadFormSchema,
  updateLeadFormSchema,
  publicFormSubmitSchema,
} from './marketing'

export type {
  LeadFormObject,
  LeadFormSubmissionObject,
  FieldConfig,
  FormStyle,
  CreateLeadFormInput,
  UpdateLeadFormInput,
  PublicFormSubmitInput,
} from './marketing'
