Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.558.0"
".": "0.559.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 238
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-eaee3db1b6a076bc5c49879e3b3154e5ae466d0fd278917a3835f4ed0c9cce63.yml
openapi_spec_hash: 34a379fd12fbaa209f10dde757ede478
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-b6168f5ea09213fe8a507a6b13ac02357a31fff02d2801be24c35f8f495142cd.yml
openapi_spec_hash: c0e12e8e60af1893509f4dea2ea2feae
config_hash: ac050010e5453883d5e5fa603554a2e0
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.559.0 (2026-05-08)

Full Changelog: [v0.558.0...v0.559.0](https://github.com/Increase/increase-typescript/compare/v0.558.0...v0.559.0)

### Features

* **api:** api update ([0c3f52b](https://github.com/Increase/increase-typescript/commit/0c3f52b6e843705edcaeb4f75f3c4650f7794dbe))


### Chores

* redact api-key headers in debug logs ([b50112a](https://github.com/Increase/increase-typescript/commit/b50112aaa7dced8ecbb2253475b3ccf12ae72e48))

## 0.558.0 (2026-05-06)

Full Changelog: [v0.557.0...v0.558.0](https://github.com/Increase/increase-typescript/compare/v0.557.0...v0.558.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "increase",
"version": "0.558.0",
"version": "0.559.0",
"description": "The official TypeScript library for the Increase API",
"author": "Increase <dev-feedback@increase.com>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions src/internal/utils/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ export const formatRequestDetails = (details: {
name,
(
name.toLowerCase() === 'authorization' ||
name.toLowerCase() === 'api-key' ||
name.toLowerCase() === 'x-api-key' ||
name.toLowerCase() === 'cookie' ||
name.toLowerCase() === 'set-cookie'
) ?
Expand Down
6 changes: 3 additions & 3 deletions src/resources/exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export interface Export {
* a given date and optional Account.
* - `transaction_csv` - Export a CSV of all transactions for a given time range.
* - `balance_csv` - Export a CSV of account balances for the dates in a given
* range.
* range. (deprecated, use `daily_account_balance_csv` instead)
* - `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
* balances for the dates in a given range.
* - `entity_csv` - Export a CSV of entities with a given status.
Expand Down Expand Up @@ -573,7 +573,7 @@ export interface ExportCreateParams {
* a given date and optional Account.
* - `transaction_csv` - Export a CSV of all transactions for a given time range.
* - `balance_csv` - Export a CSV of account balances for the dates in a given
* range.
* range. (deprecated, use `daily_account_balance_csv` instead)
* - `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
* balances for the dates in a given range.
* - `entity_csv` - Export a CSV of entities with a given status.
Expand Down Expand Up @@ -884,7 +884,7 @@ export interface ExportListParams extends PageParams {
* a given date and optional Account.
* - `transaction_csv` - Export a CSV of all transactions for a given time range.
* - `balance_csv` - Export a CSV of account balances for the dates in a given
* range.
* range. (deprecated, use `daily_account_balance_csv` instead)
* - `bookkeeping_account_balance_csv` - Export a CSV of bookkeeping account
* balances for the dates in a given range.
* - `entity_csv` - Export a CSV of entities with a given status.
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.558.0'; // x-release-please-version
export const VERSION = '0.559.0'; // x-release-please-version
Loading