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.15.1"
".": "0.16.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-8152ea97ddd6f87a1bc6102d458a3fd3711ca468f6a62cd3be0f6e464376b3e6.yml
openapi_spec_hash: 03c6b4e530600d03fab9344887dc4639
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-42d3718c22feafafc0c3b9952574f79ed506e2fe6a3b336743d2cc3442d3455c.yml
openapi_spec_hash: 5ce48171c112d3c6addb850db1c9535d
config_hash: 27e44ed36b9c5617b580ead7231a594a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.16.0 (2026-01-31)

Full Changelog: [v0.15.1...v0.16.0](https://github.com/Increase/increase-php/compare/v0.15.1...v0.16.0)

### Features

* **api:** api update ([252e33d](https://github.com/Increase/increase-php/commit/252e33d3d03e09a6c83729fed75cde157303f865))

## 0.15.1 (2026-01-30)

Full Changelog: [v0.15.0...v0.15.1](https://github.com/Increase/increase-php/compare/v0.15.0...v0.15.1)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d
<!-- x-release-please-start-version -->

```
composer require "increase/increase 0.15.1"
composer require "increase/increase 0.16.0"
```

<!-- x-release-please-end -->
Expand Down
8 changes: 4 additions & 4 deletions src/Exports/ExportCreateParams/BalanceCsv.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ final class BalanceCsv implements BaseModel
use SdkModel;

/**
* Filter exported Transactions to the specified Account.
* Filter exported Balances to the specified Account.
*/
#[Optional('account_id')]
public ?string $accountID;
Expand All @@ -38,7 +38,7 @@ final class BalanceCsv implements BaseModel
public ?CreatedAt $createdAt;

/**
* Filter exported Transactions to the specified Program.
* Filter exported Balances to the specified Program.
*/
#[Optional('program_id')]
public ?string $programID;
Expand Down Expand Up @@ -70,7 +70,7 @@ public static function with(
}

/**
* Filter exported Transactions to the specified Account.
* Filter exported Balances to the specified Account.
*/
public function withAccountID(string $accountID): self
{
Expand All @@ -94,7 +94,7 @@ public function withCreatedAt(CreatedAt|array $createdAt): self
}

/**
* Filter exported Transactions to the specified Program.
* Filter exported Balances to the specified Program.
*/
public function withProgramID(string $programID): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ final class BookkeepingAccountBalanceCsv implements BaseModel
use SdkModel;

/**
* Filter exported Transactions to the specified Bookkeeping Account.
* Filter exported Bookkeeping Account Balances to the specified Bookkeeping Account.
*/
#[Optional('bookkeeping_account_id')]
public ?string $bookkeepingAccountID;
Expand Down Expand Up @@ -60,7 +60,7 @@ public static function with(
}

/**
* Filter exported Transactions to the specified Bookkeeping Account.
* Filter exported Bookkeeping Account Balances to the specified Bookkeeping Account.
*/
public function withBookkeepingAccountID(string $bookkeepingAccountID): self
{
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
namespace Increase;

// x-release-please-start-version
const VERSION = '0.15.1';
const VERSION = '0.16.0';
// x-release-please-end