[1.9.0] - 2026-01-13
Changed
- BREAKING: Rename
FetchResponse<T, E>toFetchResult<T>(simplified type,Eis alwaysError) - BREAKING: Rename
FetchTask.responseproperty toFetchTask.result
Migration
// Before
import type { FetchResponse } from '@happy-ts/fetch-t';
const task = fetchT(url, { abortable: true });
const result = await task.response;
// After
import type { FetchResult } from '@happy-ts/fetch-t';
const task = fetchT(url, { abortable: true });
const result = await task.result;Full Changelog: v1.8.1...v1.9.0