import { GetAPISchema, createEndpoint } from '@commerce/api' import customerEndpoint from '@commerce/api/endpoints/customer' import type { CustomerSchema } from '../../../types/customer' import type { BigcommerceAPI } from '../..' import getLoggedInCustomer from './get-logged-in-customer' export type CustomerAPI = GetAPISchema export type CustomerEndpoint = CustomerAPI['endpoint'] export const handlers: CustomerEndpoint['handlers'] = { getLoggedInCustomer } const customerApi = createEndpoint({ handler: customerEndpoint, handlers, }) export default customerApi