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.26.0"
".": "0.27.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-a466a501f72055942acea051bd2b1c735b70d65f3dd2710c5484e6125c8b640d.yml
openapi_spec_hash: d68789006ab658b380a02da2f03599b4
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b85fc3d079fefa2ba0b1601db0bac8ca23c0ddb9c5ffe03e6727d666080d7585.yml
openapi_spec_hash: e1cf9b81380c14c64dfe9d74be4fff97
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.27.0 (2026-02-06)

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

### Features

* **api:** api update ([9a2a8f7](https://github.com/Increase/increase-php/commit/9a2a8f7262471fb1e011aa29bdf89a1439d869b8))

## 0.26.0 (2026-02-05)

Full Changelog: [v0.25.0...v0.26.0](https://github.com/Increase/increase-php/compare/v0.25.0...v0.26.0)
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.26.0"
composer require "increase/increase 0.27.0"
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion src/Services/Simulations/ProgramsRawService.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct(private Client $client) {}
*
* @param array{
* name: string,
* bank?: value-of<Bank>,
* bank?: Bank|value-of<Bank>,
* lendingMaximumExtendableCredit?: int,
* reserveAccountID?: string,
* }|ProgramCreateParams $params
Expand Down
4 changes: 0 additions & 4 deletions src/Simulations/Programs/ProgramCreateParams/Bank.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,10 @@
*/
enum Bank: string
{
case BLUE_RIDGE_BANK = 'blue_ridge_bank';

case CORE_BANK = 'core_bank';

case FIRST_INTERNET_BANK = 'first_internet_bank';

case GLOBAL_INNOVATIONS_BANK = 'global_innovations_bank';

case GRASSHOPPER_BANK = 'grasshopper_bank';

case TWIN_CITY_BANK = 'twin_city_bank';
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.26.0';
const VERSION = '0.27.0';
// x-release-please-end
2 changes: 1 addition & 1 deletion tests/Services/Simulations/ProgramsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function testCreateWithOptionalParams(): void
{
$result = $this->client->simulations->programs->create(
name: 'For Benefit Of',
bank: 'blue_ridge_bank',
bank: 'core_bank',
lendingMaximumExtendableCredit: 0,
reserveAccountID: 'reserve_account_id',
);
Expand Down