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.519.0"
".": "0.520.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: 241
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-16584f71f31837a98f04250e08aec539fd7eb0bf69178b0e6b24254642f6755f.yml
openapi_spec_hash: a67f1f1147858e6b2143b5215fc80e04
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-9cc37a5650ead65f77fe88834795d2e80f5f0f79e474d15030145f8303835a4f.yml
openapi_spec_hash: 68ec4be9e1dd4153a3175ad41a36352f
config_hash: d48e9f65bcf642f92610034d6c43f07a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.520.0 (2026-04-10)

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

### Features

* **api:** api update ([6978044](https://github.com/Increase/increase-typescript/commit/69780444d1720d3483f8f3c5838cc6865ba553d6))

## 0.519.0 (2026-04-10)

Full Changelog: [v0.518.0...v0.519.0](https://github.com/Increase/increase-typescript/compare/v0.518.0...v0.519.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.519.0",
"version": "0.520.0",
"description": "The official TypeScript library for the Increase API",
"author": "Increase <dev-feedback@increase.com>",
"types": "dist/index.d.ts",
Expand Down
54 changes: 8 additions & 46 deletions src/resources/exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -356,26 +356,14 @@ export namespace Export {
bookkeeping_account_id: string | null;

/**
* Filter balances by their created date.
* Filter balances to those on or after this date.
*/
created_at: BookkeepingAccountBalanceCsv.CreatedAt | null;
}
on_or_after_date: string | null;

export namespace BookkeepingAccountBalanceCsv {
/**
* Filter balances by their created date.
* Filter balances to those on or before this date.
*/
export interface CreatedAt {
/**
* Filter balances created after this time.
*/
after: string | null;

/**
* Filter balances created before this time.
*/
before: string | null;
}
on_or_before_date: string | null;
}

/**
Expand Down Expand Up @@ -814,40 +802,14 @@ export namespace ExportCreateParams {
bookkeeping_account_id?: string;

/**
* Filter results by time range on the `created_at` attribute.
* Filter exported Balances to those on or after this date.
*/
created_at?: BookkeepingAccountBalanceCsv.CreatedAt;
}
on_or_after_date?: string;

export namespace BookkeepingAccountBalanceCsv {
/**
* Filter results by time range on the `created_at` attribute.
* Filter exported Balances to those on or before this date.
*/
export interface CreatedAt {
/**
* Return results after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
* timestamp.
*/
after?: string;

/**
* Return results before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)
* timestamp.
*/
before?: string;

/**
* Return results on or after this
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
*/
on_or_after?: string;

/**
* Return results on or before this
* [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) timestamp.
*/
on_or_before?: string;
}
on_or_before_date?: string;
}

/**
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.519.0'; // x-release-please-version
export const VERSION = '0.520.0'; // x-release-please-version
8 changes: 2 additions & 6 deletions tests/api-resources/exports.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,8 @@ describe('resource exports', () => {
},
bookkeeping_account_balance_csv: {
bookkeeping_account_id: 'bookkeeping_account_id',
created_at: {
after: '2019-12-27T18:11:19.117Z',
before: '2019-12-27T18:11:19.117Z',
on_or_after: '2019-12-27T18:11:19.117Z',
on_or_before: '2019-12-27T18:11:19.117Z',
},
on_or_after_date: '2019-12-27',
on_or_before_date: '2019-12-27',
},
daily_account_balance_csv: {
account_id: 'account_id',
Expand Down
Loading