import { CUSTOMER_API_URL } from '../api/endpoints'; import { useInwinkApi, type InwinkApi } from './useInwinkApi'; /** Accès à l'API Customer inwink (Bearer token + renouvellement 401 gérés). */ export function useInwinkCustomerApi(): InwinkApi { return useInwinkApi(CUSTOMER_API_URL); }