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.193.0"
".": "0.194.0"
}
4 changes: 3 additions & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
configured_endpoints: 199
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-37dc1802736b75bd7602c7be0989e9bbfcd9d2d93b1a3491011ce86cb150cc5a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-33b4fdf3af0d0c7816a818cea776370220613e9ea8812a8339e6203d0f4b23e6.yml
openapi_spec_hash: 242db9c21568746bbbbdf9cf090db82e
config_hash: 20a463ecd33bd32b7b9bc6f4990907ac
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.194.0 (2025-03-26)

Full Changelog: [v0.193.0...v0.194.0](https://github.com/Increase/increase-node/compare/v0.193.0...v0.194.0)

### Features

* **api:** api update ([#938](https://github.com/Increase/increase-node/issues/938)) ([b4c0ce7](https://github.com/Increase/increase-node/commit/b4c0ce7b5e8602ad1e1c908ecc27f01a755eb71a))

## 0.193.0 (2025-03-22)

Full Changelog: [v0.192.0...v0.193.0](https://github.com/Increase/increase-node/compare/v0.192.0...v0.193.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.193.0",
"version": "0.194.0",
"description": "The official TypeScript library for the Increase API",
"author": "Increase <dev-feedback@increase.com>",
"types": "dist/index.d.ts",
Expand Down
20 changes: 20 additions & 0 deletions src/resources/ach-transfers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1253,6 +1253,8 @@ export interface ACHTransferListParams extends PageParams {
* [idempotency](https://increase.com/documentation/idempotency-keys).
*/
idempotency_key?: string;

status?: ACHTransferListParams.Status;
}

export namespace ACHTransferListParams {
Expand Down Expand Up @@ -1281,6 +1283,24 @@ export namespace ACHTransferListParams {
*/
on_or_before?: string;
}

export interface Status {
/**
* Return results whose value is in the provided list. For GET requests, this
* should be encoded as a comma-delimited string, such as `?in=one,two,three`.
*/
in?: Array<
| 'pending_approval'
| 'pending_transfer_session_confirmation'
| 'canceled'
| 'pending_submission'
| 'pending_reviewing'
| 'requires_attention'
| 'rejected'
| 'submitted'
| 'returned'
>;
}
}

ACHTransfers.ACHTransfersPage = ACHTransfersPage;
Expand Down
19 changes: 19 additions & 0 deletions src/resources/real-time-payments-transfers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,8 @@ export interface RealTimePaymentsTransferListParams extends PageParams {
* [idempotency](https://increase.com/documentation/idempotency-keys).
*/
idempotency_key?: string;

status?: RealTimePaymentsTransferListParams.Status;
}

export namespace RealTimePaymentsTransferListParams {
Expand Down Expand Up @@ -564,6 +566,23 @@ export namespace RealTimePaymentsTransferListParams {
*/
on_or_before?: string;
}

export interface Status {
/**
* Return results whose value is in the provided list. For GET requests, this
* should be encoded as a comma-delimited string, such as `?in=one,two,three`.
*/
in?: Array<
| 'pending_approval'
| 'canceled'
| 'pending_reviewing'
| 'requires_attention'
| 'rejected'
| 'pending_submission'
| 'submitted'
| 'complete'
>;
}
}

RealTimePaymentsTransfers.RealTimePaymentsTransfersPage = RealTimePaymentsTransfersPage;
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.193.0'; // x-release-please-version
export const VERSION = '0.194.0'; // x-release-please-version
1 change: 1 addition & 0 deletions tests/api-resources/ach-transfers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ describe('resource achTransfers', () => {
external_account_id: 'external_account_id',
idempotency_key: 'x',
limit: 1,
status: { in: ['pending_approval'] },
},
{ path: '/_stainless_unknown_path' },
),
Expand Down
1 change: 1 addition & 0 deletions tests/api-resources/real-time-payments-transfers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ describe('resource realTimePaymentsTransfers', () => {
external_account_id: 'external_account_id',
idempotency_key: 'x',
limit: 1,
status: { in: ['pending_approval'] },
},
{ path: '/_stainless_unknown_path' },
),
Expand Down