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.439.0"
".": "0.440.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: 232
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-949ee3a47313a37ba0147670d429c72ff0cfb477f7abe8f1212dc892ed4ad6d2.yml
openapi_spec_hash: b7a3d5406d046298e53103020cec545d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-5a71b48efd87b38f1e7fd01e83a58b902b2c262b2606c4bf8e1ad0d7f562772e.yml
openapi_spec_hash: a159f26827b08d4900b7b354854535c7
config_hash: 4b562e97b3d8b4cba758a87d4927a76d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.440.0 (2026-02-24)

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

### Features

* **api:** api update ([88b0b75](https://github.com/Increase/increase-typescript/commit/88b0b75464f86c513bada17e565edaf208f34fcb))

## 0.439.0 (2026-02-23)

Full Changelog: [v0.438.0...v0.439.0](https://github.com/Increase/increase-typescript/compare/v0.438.0...v0.439.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.439.0",
"version": "0.440.0",
"description": "The official TypeScript library for the Increase API",
"author": "Increase <dev-feedback@increase.com>",
"types": "dist/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions src/resources/wire-drawdown-requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,12 @@ export interface WireDrawdownRequestCreateParams {
*/
debtor_routing_number?: string;

/**
* A free-form reference string set by the sender mirrored back in the subsequent
* wire transfer.
*/
end_to_end_identification?: string;

[k: string]: unknown;
}

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.439.0'; // x-release-please-version
export const VERSION = '0.440.0'; // x-release-please-version
1 change: 1 addition & 0 deletions tests/api-resources/wire-drawdown-requests.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ describe('resource wireDrawdownRequests', () => {
debtor_account_number: '987654321',
debtor_external_account_id: 'debtor_external_account_id',
debtor_routing_number: '101050001',
end_to_end_identification: 'x',
});
});

Expand Down