diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 56b9e50..b4e9013 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.15.1" + ".": "0.16.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index c516d75..eaede9e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f16799..4095306 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index c24a6b6..0da4ab8 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d ``` -composer require "increase/increase 0.15.1" +composer require "increase/increase 0.16.0" ``` diff --git a/src/Exports/ExportCreateParams/BalanceCsv.php b/src/Exports/ExportCreateParams/BalanceCsv.php index 1df6477..7defc70 100644 --- a/src/Exports/ExportCreateParams/BalanceCsv.php +++ b/src/Exports/ExportCreateParams/BalanceCsv.php @@ -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; @@ -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; @@ -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 { @@ -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 { diff --git a/src/Exports/ExportCreateParams/BookkeepingAccountBalanceCsv.php b/src/Exports/ExportCreateParams/BookkeepingAccountBalanceCsv.php index 5f6ab81..e8f2fc2 100644 --- a/src/Exports/ExportCreateParams/BookkeepingAccountBalanceCsv.php +++ b/src/Exports/ExportCreateParams/BookkeepingAccountBalanceCsv.php @@ -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; @@ -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 { diff --git a/src/Version.php b/src/Version.php index e5cfc03..1f8fabe 100644 --- a/src/Version.php +++ b/src/Version.php @@ -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