import type { ApiError, Endpoint } from '../api.js'; export type GetPlainHmac = Endpoint<{ Method: 'GET'; Path: `/api/v1/plain`; Success: { data: { hash: string; }; }; Error: ApiError<'unauthorized'>; }>;