/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/dashboard/src/api/telemetry.ts
18 строк
392 B
Dima Grossman
fix(dashboard): alias CLI anonymous id for Connect funnel fixes NV-7938 (#11396)
01 июн 2026, 16:13
Не верифицирован
01 июн 2026, 16:13
2f34116
Код
Авторство
О чём код?
import { post } from './api.client'; export const measure = async (event: string, data?: Record<string, unknown>): Promise<void> => { await post('/telemetry/measure', { body: { event, data, }, }); }; export const identifyTelemetry = async (anonymousId: string): Promise<void> => { await post('/telemetry/identify', { body: { anonymousId, }, }); };