diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f3f39e10..4aaf3562 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.558.0" + ".": "0.559.0" } diff --git a/.stats.yml b/.stats.yml index fd8a5981..f08fdee0 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b6bdef..b6ab12b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index d4bbcb92..356561c5 100644 --- a/package.json +++ b/package.json @@ -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 ", "types": "dist/index.d.ts", diff --git a/src/internal/utils/log.ts b/src/internal/utils/log.ts index c99bdbaa..e9efe6c5 100644 --- a/src/internal/utils/log.ts +++ b/src/internal/utils/log.ts @@ -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' ) ? diff --git a/src/resources/exports.ts b/src/resources/exports.ts index dbbf476f..11857232 100644 --- a/src/resources/exports.ts +++ b/src/resources/exports.ts @@ -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. @@ -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. @@ -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. diff --git a/src/version.ts b/src/version.ts index ab0bb91f..fd7284e4 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.558.0'; // x-release-please-version +export const VERSION = '0.559.0'; // x-release-please-version