api-bones 4.3.0

Opinionated REST API types: errors (RFC 9457), pagination, health checks, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Changelog

All notable changes to `@brefwiz/api-bones-axios` are documented here.

The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this package adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.1] — 2026-04-24

### Fixed
- `addEnvelopeUnwrapInterceptor` now accepts the real axios default export (`AxiosStatic`) and any `AxiosInstance` without a type error. Previously, the structural `AxiosLikeInstance` type used `AxiosInterceptorManager<EnvelopeAxiosResponse>` which was incompatible with axios's native `AxiosInterceptorManager<AxiosResponse>` instantiation.
- Removed the unused `[key: string]: unknown;` index signature from `EnvelopeAxiosRequestConfig`; it blocked assignment from axios's `InternalAxiosRequestConfig`.

## [0.1.0] — 2026-04-23

### Added
- Initial release: `addEnvelopeUnwrapInterceptor`, `getEnvelopeMeta`, `getEnvelopeLinks`, and structural types for the `api_bones::response::ApiResponse` envelope.