From a0860aefdf11923d416dbf92f8d3b23ddeecde35 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 08:56:39 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 +- src/Exports/Export.php | 27 +++++ src/Exports/Export/Category.php | 2 + src/Exports/Export/VoidedCheck.php | 99 +++++++++++++++++ src/Exports/Export/VoidedCheck/Payer.php | 68 ++++++++++++ src/Exports/ExportCreateParams.php | 25 +++++ src/Exports/ExportCreateParams/Category.php | 2 + .../ExportCreateParams/VoidedCheck.php | 103 ++++++++++++++++++ .../ExportCreateParams/VoidedCheck/Payer.php | 68 ++++++++++++ src/Exports/ExportListParams/Category.php | 2 + src/ServiceContracts/ExportsContract.php | 4 + src/Services/ExportsRawService.php | 3 + src/Services/ExportsService.php | 5 + tests/Services/ExportsTest.php | 3 + 14 files changed, 413 insertions(+), 2 deletions(-) create mode 100644 src/Exports/Export/VoidedCheck.php create mode 100644 src/Exports/Export/VoidedCheck/Payer.php create mode 100644 src/Exports/ExportCreateParams/VoidedCheck.php create mode 100644 src/Exports/ExportCreateParams/VoidedCheck/Payer.php diff --git a/.stats.yml b/.stats.yml index 8bcc436..bdfd829 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-089e28882ee6d2ba5caaf094e99a95593ab5db652954f68fa7ce9c5b5ca76198.yml -openapi_spec_hash: 7cb683d243b088c97c04c3cd5623106a +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aa6f3892142cc2ba55731765b00f760408d264406fc74ece34aafe2fa1a0c64a.yml +openapi_spec_hash: 06d242fe01faa91bebb737697488d7d2 config_hash: 4b562e97b3d8b4cba758a87d4927a76d diff --git a/src/Exports/Export.php b/src/Exports/Export.php index 26cde7d..dc0e2e4 100644 --- a/src/Exports/Export.php +++ b/src/Exports/Export.php @@ -23,6 +23,7 @@ use Increase\Exports\Export\TransactionCsv; use Increase\Exports\Export\Type; use Increase\Exports\Export\VendorCsv; +use Increase\Exports\Export\VoidedCheck; /** * Exports are generated files. Some exports can contain a lot of data, like a CSV of your transactions. Others can be a single document, like a tax form. Since they can take a while, they are generated asynchronously. We send a webhook when they are ready. For more information, please read our [Exports documentation](https://increase.com/documentation/exports). @@ -40,6 +41,7 @@ * @phpstan-import-type ResultShape from \Increase\Exports\Export\Result * @phpstan-import-type TransactionCsvShape from \Increase\Exports\Export\TransactionCsv * @phpstan-import-type VendorCsvShape from \Increase\Exports\Export\VendorCsv + * @phpstan-import-type VoidedCheckShape from \Increase\Exports\Export\VoidedCheck * * @phpstan-type ExportShape = array{ * id: string, @@ -61,6 +63,7 @@ * transactionCsv: null|TransactionCsv|TransactionCsvShape, * type: Type|value-of, * vendorCsv: null|VendorCsv|VendorCsvShape, + * voidedCheck: null|VoidedCheck|VoidedCheckShape, * } */ final class Export implements BaseModel @@ -188,6 +191,12 @@ final class Export implements BaseModel #[Required('vendor_csv')] public ?VendorCsv $vendorCsv; + /** + * Details of the voided check export. This field will be present when the `category` is equal to `voided_check`. + */ + #[Required('voided_check')] + public ?VoidedCheck $voidedCheck; + /** * `new Export()` is missing required properties by the API. * @@ -213,6 +222,7 @@ final class Export implements BaseModel * transactionCsv: ..., * type: ..., * vendorCsv: ..., + * voidedCheck: ..., * ) * ``` * @@ -239,6 +249,7 @@ final class Export implements BaseModel * ->withTransactionCsv(...) * ->withType(...) * ->withVendorCsv(...) + * ->withVoidedCheck(...) * ``` */ public function __construct() @@ -267,6 +278,7 @@ public function __construct() * @param TransactionCsv|TransactionCsvShape|null $transactionCsv * @param Type|value-of $type * @param VendorCsv|VendorCsvShape|null $vendorCsv + * @param VoidedCheck|VoidedCheckShape|null $voidedCheck */ public static function with( string $id, @@ -288,6 +300,7 @@ public static function with( TransactionCsv|array|null $transactionCsv, Type|string $type, VendorCsv|array|null $vendorCsv, + VoidedCheck|array|null $voidedCheck, ): self { $self = new self; @@ -310,6 +323,7 @@ public static function with( $self['transactionCsv'] = $transactionCsv; $self['type'] = $type; $self['vendorCsv'] = $vendorCsv; + $self['voidedCheck'] = $voidedCheck; return $self; } @@ -562,4 +576,17 @@ public function withVendorCsv(VendorCsv|array|null $vendorCsv): self return $self; } + + /** + * Details of the voided check export. This field will be present when the `category` is equal to `voided_check`. + * + * @param VoidedCheck|VoidedCheckShape|null $voidedCheck + */ + public function withVoidedCheck(VoidedCheck|array|null $voidedCheck): self + { + $self = clone $this; + $self['voidedCheck'] = $voidedCheck; + + return $self; + } } diff --git a/src/Exports/Export/Category.php b/src/Exports/Export/Category.php index 0c56071..dafbb3a 100644 --- a/src/Exports/Export/Category.php +++ b/src/Exports/Export/Category.php @@ -32,4 +32,6 @@ enum Category: string case FORM_1099_INT = 'form_1099_int'; case FORM_1099_MISC = 'form_1099_misc'; + + case VOIDED_CHECK = 'voided_check'; } diff --git a/src/Exports/Export/VoidedCheck.php b/src/Exports/Export/VoidedCheck.php new file mode 100644 index 0000000..dd68c5c --- /dev/null +++ b/src/Exports/Export/VoidedCheck.php @@ -0,0 +1,99 @@ + + * } + */ +final class VoidedCheck implements BaseModel +{ + /** @use SdkModel */ + use SdkModel; + + /** + * The Account Number for the voided check. + */ + #[Required('account_number_id')] + public string $accountNumberID; + + /** + * The payer information printed on the check. + * + * @var list $payer + */ + #[Required(list: Payer::class)] + public array $payer; + + /** + * `new VoidedCheck()` is missing required properties by the API. + * + * To enforce required parameters use + * ``` + * VoidedCheck::with(accountNumberID: ..., payer: ...) + * ``` + * + * Otherwise ensure the following setters are called + * + * ``` + * (new VoidedCheck)->withAccountNumberID(...)->withPayer(...) + * ``` + */ + public function __construct() + { + $this->initialize(); + } + + /** + * Construct an instance from the required parameters. + * + * You must use named parameters to construct any parameters with a default value. + * + * @param list $payer + */ + public static function with(string $accountNumberID, array $payer): self + { + $self = new self; + + $self['accountNumberID'] = $accountNumberID; + $self['payer'] = $payer; + + return $self; + } + + /** + * The Account Number for the voided check. + */ + public function withAccountNumberID(string $accountNumberID): self + { + $self = clone $this; + $self['accountNumberID'] = $accountNumberID; + + return $self; + } + + /** + * The payer information printed on the check. + * + * @param list $payer + */ + public function withPayer(array $payer): self + { + $self = clone $this; + $self['payer'] = $payer; + + return $self; + } +} diff --git a/src/Exports/Export/VoidedCheck/Payer.php b/src/Exports/Export/VoidedCheck/Payer.php new file mode 100644 index 0000000..9cc9bd3 --- /dev/null +++ b/src/Exports/Export/VoidedCheck/Payer.php @@ -0,0 +1,68 @@ + */ + use SdkModel; + + /** + * The contents of the line. + */ + #[Required] + public string $line; + + /** + * `new Payer()` is missing required properties by the API. + * + * To enforce required parameters use + * ``` + * Payer::with(line: ...) + * ``` + * + * Otherwise ensure the following setters are called + * + * ``` + * (new Payer)->withLine(...) + * ``` + */ + public function __construct() + { + $this->initialize(); + } + + /** + * Construct an instance from the required parameters. + * + * You must use named parameters to construct any parameters with a default value. + */ + public static function with(string $line): self + { + $self = new self; + + $self['line'] = $line; + + return $self; + } + + /** + * The contents of the line. + */ + public function withLine(string $line): self + { + $self = clone $this; + $self['line'] = $line; + + return $self; + } +} diff --git a/src/Exports/ExportCreateParams.php b/src/Exports/ExportCreateParams.php index 36a7e87..69fa696 100644 --- a/src/Exports/ExportCreateParams.php +++ b/src/Exports/ExportCreateParams.php @@ -19,6 +19,7 @@ use Increase\Exports\ExportCreateParams\FundingInstructions; use Increase\Exports\ExportCreateParams\TransactionCsv; use Increase\Exports\ExportCreateParams\VendorCsv; +use Increase\Exports\ExportCreateParams\VoidedCheck; /** * Create an Export. @@ -34,6 +35,7 @@ * @phpstan-import-type FundingInstructionsShape from \Increase\Exports\ExportCreateParams\FundingInstructions * @phpstan-import-type TransactionCsvShape from \Increase\Exports\ExportCreateParams\TransactionCsv * @phpstan-import-type VendorCsvShape from \Increase\Exports\ExportCreateParams\VendorCsv + * @phpstan-import-type VoidedCheckShape from \Increase\Exports\ExportCreateParams\VoidedCheck * * @phpstan-type ExportCreateParamsShape = array{ * category: Category|value-of, @@ -46,6 +48,7 @@ * fundingInstructions?: null|FundingInstructions|FundingInstructionsShape, * transactionCsv?: null|TransactionCsv|TransactionCsvShape, * vendorCsv?: null|VendorCsv|VendorCsvShape, + * voidedCheck?: null|VoidedCheck|VoidedCheckShape, * } */ final class ExportCreateParams implements BaseModel @@ -116,6 +119,12 @@ final class ExportCreateParams implements BaseModel #[Optional('vendor_csv')] public ?VendorCsv $vendorCsv; + /** + * Options for the created export. Required if `category` is equal to `voided_check`. + */ + #[Optional('voided_check')] + public ?VoidedCheck $voidedCheck; + /** * `new ExportCreateParams()` is missing required properties by the API. * @@ -150,6 +159,7 @@ public function __construct() * @param FundingInstructions|FundingInstructionsShape|null $fundingInstructions * @param TransactionCsv|TransactionCsvShape|null $transactionCsv * @param VendorCsv|VendorCsvShape|null $vendorCsv + * @param VoidedCheck|VoidedCheckShape|null $voidedCheck */ public static function with( Category|string $category, @@ -162,6 +172,7 @@ public static function with( FundingInstructions|array|null $fundingInstructions = null, TransactionCsv|array|null $transactionCsv = null, VendorCsv|array|null $vendorCsv = null, + VoidedCheck|array|null $voidedCheck = null, ): self { $self = new self; @@ -176,6 +187,7 @@ public static function with( null !== $fundingInstructions && $self['fundingInstructions'] = $fundingInstructions; null !== $transactionCsv && $self['transactionCsv'] = $transactionCsv; null !== $vendorCsv && $self['vendorCsv'] = $vendorCsv; + null !== $voidedCheck && $self['voidedCheck'] = $voidedCheck; return $self; } @@ -315,4 +327,17 @@ public function withVendorCsv(VendorCsv|array $vendorCsv): self return $self; } + + /** + * Options for the created export. Required if `category` is equal to `voided_check`. + * + * @param VoidedCheck|VoidedCheckShape $voidedCheck + */ + public function withVoidedCheck(VoidedCheck|array $voidedCheck): self + { + $self = clone $this; + $self['voidedCheck'] = $voidedCheck; + + return $self; + } } diff --git a/src/Exports/ExportCreateParams/Category.php b/src/Exports/ExportCreateParams/Category.php index 910e7d0..ba6823b 100644 --- a/src/Exports/ExportCreateParams/Category.php +++ b/src/Exports/ExportCreateParams/Category.php @@ -26,4 +26,6 @@ enum Category: string case ACCOUNT_VERIFICATION_LETTER = 'account_verification_letter'; case FUNDING_INSTRUCTIONS = 'funding_instructions'; + + case VOIDED_CHECK = 'voided_check'; } diff --git a/src/Exports/ExportCreateParams/VoidedCheck.php b/src/Exports/ExportCreateParams/VoidedCheck.php new file mode 100644 index 0000000..6f3cef1 --- /dev/null +++ b/src/Exports/ExportCreateParams/VoidedCheck.php @@ -0,0 +1,103 @@ +|null + * } + */ +final class VoidedCheck implements BaseModel +{ + /** @use SdkModel */ + use SdkModel; + + /** + * The Account Number for the voided check. + */ + #[Required('account_number_id')] + public string $accountNumberID; + + /** + * The payer information to be printed on the check. + * + * @var list|null $payer + */ + #[Optional(list: Payer::class)] + public ?array $payer; + + /** + * `new VoidedCheck()` is missing required properties by the API. + * + * To enforce required parameters use + * ``` + * VoidedCheck::with(accountNumberID: ...) + * ``` + * + * Otherwise ensure the following setters are called + * + * ``` + * (new VoidedCheck)->withAccountNumberID(...) + * ``` + */ + public function __construct() + { + $this->initialize(); + } + + /** + * Construct an instance from the required parameters. + * + * You must use named parameters to construct any parameters with a default value. + * + * @param list|null $payer + */ + public static function with( + string $accountNumberID, + ?array $payer = null + ): self { + $self = new self; + + $self['accountNumberID'] = $accountNumberID; + + null !== $payer && $self['payer'] = $payer; + + return $self; + } + + /** + * The Account Number for the voided check. + */ + public function withAccountNumberID(string $accountNumberID): self + { + $self = clone $this; + $self['accountNumberID'] = $accountNumberID; + + return $self; + } + + /** + * The payer information to be printed on the check. + * + * @param list $payer + */ + public function withPayer(array $payer): self + { + $self = clone $this; + $self['payer'] = $payer; + + return $self; + } +} diff --git a/src/Exports/ExportCreateParams/VoidedCheck/Payer.php b/src/Exports/ExportCreateParams/VoidedCheck/Payer.php new file mode 100644 index 0000000..aed5571 --- /dev/null +++ b/src/Exports/ExportCreateParams/VoidedCheck/Payer.php @@ -0,0 +1,68 @@ + */ + use SdkModel; + + /** + * The contents of the line. + */ + #[Required] + public string $line; + + /** + * `new Payer()` is missing required properties by the API. + * + * To enforce required parameters use + * ``` + * Payer::with(line: ...) + * ``` + * + * Otherwise ensure the following setters are called + * + * ``` + * (new Payer)->withLine(...) + * ``` + */ + public function __construct() + { + $this->initialize(); + } + + /** + * Construct an instance from the required parameters. + * + * You must use named parameters to construct any parameters with a default value. + */ + public static function with(string $line): self + { + $self = new self; + + $self['line'] = $line; + + return $self; + } + + /** + * The contents of the line. + */ + public function withLine(string $line): self + { + $self = clone $this; + $self['line'] = $line; + + return $self; + } +} diff --git a/src/Exports/ExportListParams/Category.php b/src/Exports/ExportListParams/Category.php index 7f36e6f..7ee6088 100644 --- a/src/Exports/ExportListParams/Category.php +++ b/src/Exports/ExportListParams/Category.php @@ -32,4 +32,6 @@ enum Category: string case FORM_1099_INT = 'form_1099_int'; case FORM_1099_MISC = 'form_1099_misc'; + + case VOIDED_CHECK = 'voided_check'; } diff --git a/src/ServiceContracts/ExportsContract.php b/src/ServiceContracts/ExportsContract.php index 9e78390..015f9ae 100644 --- a/src/ServiceContracts/ExportsContract.php +++ b/src/ServiceContracts/ExportsContract.php @@ -16,6 +16,7 @@ use Increase\Exports\ExportCreateParams\FundingInstructions; use Increase\Exports\ExportCreateParams\TransactionCsv; use Increase\Exports\ExportCreateParams\VendorCsv; +use Increase\Exports\ExportCreateParams\VoidedCheck; use Increase\Exports\ExportListParams\CreatedAt; use Increase\Exports\ExportListParams\Form1099Int; use Increase\Exports\ExportListParams\Form1099Misc; @@ -33,6 +34,7 @@ * @phpstan-import-type FundingInstructionsShape from \Increase\Exports\ExportCreateParams\FundingInstructions * @phpstan-import-type TransactionCsvShape from \Increase\Exports\ExportCreateParams\TransactionCsv * @phpstan-import-type VendorCsvShape from \Increase\Exports\ExportCreateParams\VendorCsv + * @phpstan-import-type VoidedCheckShape from \Increase\Exports\ExportCreateParams\VoidedCheck * @phpstan-import-type CreatedAtShape from \Increase\Exports\ExportListParams\CreatedAt * @phpstan-import-type Form1099IntShape from \Increase\Exports\ExportListParams\Form1099Int * @phpstan-import-type Form1099MiscShape from \Increase\Exports\ExportListParams\Form1099Misc @@ -54,6 +56,7 @@ interface ExportsContract * @param FundingInstructions|FundingInstructionsShape $fundingInstructions Options for the created export. Required if `category` is equal to `funding_instructions`. * @param TransactionCsv|TransactionCsvShape $transactionCsv Options for the created export. Required if `category` is equal to `transaction_csv`. * @param VendorCsv|VendorCsvShape $vendorCsv Options for the created export. Required if `category` is equal to `vendor_csv`. + * @param VoidedCheck|VoidedCheckShape $voidedCheck Options for the created export. Required if `category` is equal to `voided_check`. * @param RequestOpts|null $requestOptions * * @throws APIException @@ -69,6 +72,7 @@ public function create( FundingInstructions|array|null $fundingInstructions = null, TransactionCsv|array|null $transactionCsv = null, VendorCsv|array|null $vendorCsv = null, + VoidedCheck|array|null $voidedCheck = null, RequestOptions|array|null $requestOptions = null, ): Export; diff --git a/src/Services/ExportsRawService.php b/src/Services/ExportsRawService.php index 5a1288b..2519b69 100644 --- a/src/Services/ExportsRawService.php +++ b/src/Services/ExportsRawService.php @@ -20,6 +20,7 @@ use Increase\Exports\ExportCreateParams\FundingInstructions; use Increase\Exports\ExportCreateParams\TransactionCsv; use Increase\Exports\ExportCreateParams\VendorCsv; +use Increase\Exports\ExportCreateParams\VoidedCheck; use Increase\Exports\ExportListParams; use Increase\Exports\ExportListParams\CreatedAt; use Increase\Exports\ExportListParams\Form1099Int; @@ -39,6 +40,7 @@ * @phpstan-import-type FundingInstructionsShape from \Increase\Exports\ExportCreateParams\FundingInstructions * @phpstan-import-type TransactionCsvShape from \Increase\Exports\ExportCreateParams\TransactionCsv * @phpstan-import-type VendorCsvShape from \Increase\Exports\ExportCreateParams\VendorCsv + * @phpstan-import-type VoidedCheckShape from \Increase\Exports\ExportCreateParams\VoidedCheck * @phpstan-import-type CreatedAtShape from \Increase\Exports\ExportListParams\CreatedAt * @phpstan-import-type Form1099IntShape from \Increase\Exports\ExportListParams\Form1099Int * @phpstan-import-type Form1099MiscShape from \Increase\Exports\ExportListParams\Form1099Misc @@ -69,6 +71,7 @@ public function __construct(private Client $client) {} * fundingInstructions?: FundingInstructions|FundingInstructionsShape, * transactionCsv?: TransactionCsv|TransactionCsvShape, * vendorCsv?: VendorCsv|VendorCsvShape, + * voidedCheck?: VoidedCheck|VoidedCheckShape, * }|ExportCreateParams $params * @param RequestOpts|null $requestOptions * diff --git a/src/Services/ExportsService.php b/src/Services/ExportsService.php index 0094efc..341322e 100644 --- a/src/Services/ExportsService.php +++ b/src/Services/ExportsService.php @@ -18,6 +18,7 @@ use Increase\Exports\ExportCreateParams\FundingInstructions; use Increase\Exports\ExportCreateParams\TransactionCsv; use Increase\Exports\ExportCreateParams\VendorCsv; +use Increase\Exports\ExportCreateParams\VoidedCheck; use Increase\Exports\ExportListParams\CreatedAt; use Increase\Exports\ExportListParams\Form1099Int; use Increase\Exports\ExportListParams\Form1099Misc; @@ -36,6 +37,7 @@ * @phpstan-import-type FundingInstructionsShape from \Increase\Exports\ExportCreateParams\FundingInstructions * @phpstan-import-type TransactionCsvShape from \Increase\Exports\ExportCreateParams\TransactionCsv * @phpstan-import-type VendorCsvShape from \Increase\Exports\ExportCreateParams\VendorCsv + * @phpstan-import-type VoidedCheckShape from \Increase\Exports\ExportCreateParams\VoidedCheck * @phpstan-import-type CreatedAtShape from \Increase\Exports\ExportListParams\CreatedAt * @phpstan-import-type Form1099IntShape from \Increase\Exports\ExportListParams\Form1099Int * @phpstan-import-type Form1099MiscShape from \Increase\Exports\ExportListParams\Form1099Misc @@ -72,6 +74,7 @@ public function __construct(private Client $client) * @param FundingInstructions|FundingInstructionsShape $fundingInstructions Options for the created export. Required if `category` is equal to `funding_instructions`. * @param TransactionCsv|TransactionCsvShape $transactionCsv Options for the created export. Required if `category` is equal to `transaction_csv`. * @param VendorCsv|VendorCsvShape $vendorCsv Options for the created export. Required if `category` is equal to `vendor_csv`. + * @param VoidedCheck|VoidedCheckShape $voidedCheck Options for the created export. Required if `category` is equal to `voided_check`. * @param RequestOpts|null $requestOptions * * @throws APIException @@ -87,6 +90,7 @@ public function create( FundingInstructions|array|null $fundingInstructions = null, TransactionCsv|array|null $transactionCsv = null, VendorCsv|array|null $vendorCsv = null, + VoidedCheck|array|null $voidedCheck = null, RequestOptions|array|null $requestOptions = null, ): Export { $params = Util::removeNulls( @@ -101,6 +105,7 @@ public function create( 'fundingInstructions' => $fundingInstructions, 'transactionCsv' => $transactionCsv, 'vendorCsv' => $vendorCsv, + 'voidedCheck' => $voidedCheck, ], ); diff --git a/tests/Services/ExportsTest.php b/tests/Services/ExportsTest.php index aace5a1..e8c2d01 100644 --- a/tests/Services/ExportsTest.php +++ b/tests/Services/ExportsTest.php @@ -89,6 +89,9 @@ public function testCreateWithOptionalParams(): void ], ], vendorCsv: [], + voidedCheck: [ + 'accountNumberID' => 'account_number_id', 'payer' => [['line' => 'x']], + ], ); // @phpstan-ignore-next-line method.alreadyNarrowedType From 90f82e9f608dc0a8937502b91cf1e5efdd872523 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 08:56:58 +0000 Subject: [PATCH 2/2] release: 0.31.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 2 +- src/Version.php | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 554e34b..f81bf99 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.30.0" + ".": "0.31.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 069845b..7b855fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.31.0 (2026-02-10) + +Full Changelog: [v0.30.0...v0.31.0](https://github.com/Increase/increase-php/compare/v0.30.0...v0.31.0) + +### Features + +* **api:** api update ([a0860ae](https://github.com/Increase/increase-php/commit/a0860aefdf11923d416dbf92f8d3b23ddeecde35)) + ## 0.30.0 (2026-02-10) Full Changelog: [v0.29.0...v0.30.0](https://github.com/Increase/increase-php/compare/v0.29.0...v0.30.0) diff --git a/README.md b/README.md index 237d549..f234654 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.30.0" +composer require "increase/increase 0.31.0" ``` diff --git a/src/Version.php b/src/Version.php index e229b6a..9992cdd 100644 --- a/src/Version.php +++ b/src/Version.php @@ -5,5 +5,5 @@ namespace Increase; // x-release-please-start-version -const VERSION = '0.30.0'; +const VERSION = '0.31.0'; // x-release-please-end