Skip to content
Closed
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 .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 238
openapi_spec_hash: ed21325b0e3f886a49c45d2decc4f5d0
openapi_spec_hash: 3d0dec1a1f5543d2bcf82585d07a5f59
config_hash: 2ae0d8aaecf01b38cbf9f9e112822c23
2 changes: 1 addition & 1 deletion scripts/mock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/ACHTransfers/ACHTransferCreateParams.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ enum: DestinationAccountHolder::class
public ?string $routingNumber;

/**
* The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer.
* The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer. If not provided, the default is `corporate_credit_or_debit`.
*
* @var value-of<StandardEntryClassCode>|null $standardEntryClassCode
*/
Expand Down Expand Up @@ -461,7 +461,7 @@ public function withRoutingNumber(string $routingNumber): self
}

/**
* The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer.
* The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer. If not provided, the default is `corporate_credit_or_debit`.
*
* @param StandardEntryClassCode|value-of<StandardEntryClassCode> $standardEntryClassCode
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Increase\ACHTransfers\ACHTransferCreateParams;

/**
* The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer.
* The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer. If not provided, the default is `corporate_credit_or_debit`.
*/
enum StandardEntryClassCode: string
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ public function __construct(
'Accept' => 'application/json',
'User-Agent' => sprintf('increase/PHP %s', VERSION),
'X-Stainless-Lang' => 'php',
'X-Stainless-Package-Version' => '0.135.0',
'X-Stainless-Package-Version' => '0.136.0',
'X-Stainless-Arch' => Util::machtype(),
'X-Stainless-OS' => Util::ostype(),
'X-Stainless-Runtime' => php_sapi_name(),
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceContracts/ACHTransfersContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ interface ACHTransfersContract
* @param PreferredEffectiveDate|PreferredEffectiveDateShape $preferredEffectiveDate Configuration for how the effective date of the transfer will be set. This determines same-day vs future-dated settlement timing. If not set, defaults to a `settlement_schedule` of `same_day`. If set, exactly one of the child attributes must be set.
* @param bool $requireApproval whether the transfer requires explicit approval via the dashboard or API
* @param string $routingNumber the American Bankers' Association (ABA) Routing Transit Number (RTN) for the destination account
* @param StandardEntryClassCode|value-of<StandardEntryClassCode> $standardEntryClassCode the [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer
* @param StandardEntryClassCode|value-of<StandardEntryClassCode> $standardEntryClassCode The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer. If not provided, the default is `corporate_credit_or_debit`.
* @param TransactionTiming|value-of<TransactionTiming> $transactionTiming the timing of the transaction
* @param RequestOpts|null $requestOptions
*
Expand Down
2 changes: 1 addition & 1 deletion src/Services/ACHTransfersService.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function __construct(private Client $client)
* @param PreferredEffectiveDate|PreferredEffectiveDateShape $preferredEffectiveDate Configuration for how the effective date of the transfer will be set. This determines same-day vs future-dated settlement timing. If not set, defaults to a `settlement_schedule` of `same_day`. If set, exactly one of the child attributes must be set.
* @param bool $requireApproval whether the transfer requires explicit approval via the dashboard or API
* @param string $routingNumber the American Bankers' Association (ABA) Routing Transit Number (RTN) for the destination account
* @param StandardEntryClassCode|value-of<StandardEntryClassCode> $standardEntryClassCode the [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer
* @param StandardEntryClassCode|value-of<StandardEntryClassCode> $standardEntryClassCode The [Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes) to use for the transfer. If not provided, the default is `corporate_credit_or_debit`.
* @param TransactionTiming|value-of<TransactionTiming> $transactionTiming the timing of the transaction
* @param RequestOpts|null $requestOptions
*
Expand Down