// API identité unifiée — appelle le hub /identity/* (écritures réservées admin côté hub). import { HUB_URL as HUB } from 'src/config/hub' async function j (path, init) { const r = await fetch(HUB + path, init) const d = await r.json().catch(() => ({})) if (!r.ok) throw new Error(d.error || ('Identity API ' + r.status)) return d } const post = (path, body) => j(path, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(body || {}) }) export const getIdentityMap = () => j('/identity/map') // upsert : { key?, label, primary_email, alias_emails?, tech_id?, employee? } export const upsertIdentity = (body) => post('/identity', body) export const setAlias = (key, email, remove = false) => post('/identity/' + encodeURIComponent(key) + '/alias', { email, remove }) export const mergeIdentity = (into, from) => post('/identity/merge', { into, from }) export const deleteIdentity = (key) => j('/identity/' + encodeURIComponent(key), { method: 'DELETE' })