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: 9a970d9f5d1fe0aba1b390f682db71c3
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/ACHTransfer/Return_.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ final class Return_ implements BaseModel
public string $transactionID;

/**
* The identifier of the ACH Transfer associated with this return.
* The identifier of the ACH Transfer associated with this return. This matches the original Transaction's `source.ach_transfer_intention.transfer_id`.
*/
#[Required('transfer_id')]
public string $transferID;
Expand Down Expand Up @@ -182,7 +182,7 @@ public function withTransactionID(string $transactionID): self
}

/**
* The identifier of the ACH Transfer associated with this return.
* The identifier of the ACH Transfer associated with this return. This matches the original Transaction's `source.ach_transfer_intention.transfer_id`.
*/
public function withTransferID(string $transferID): self
{
Expand Down
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
4 changes: 2 additions & 2 deletions src/Accounts/AccountCreateParams.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ final class AccountCreateParams implements BaseModel
public ?Loan $loan;

/**
* The identifier for the Program that this Account falls under. Required if you operate more than one Program.
* The identifier for the Program that this Account falls under. Required if your Group operates more than one Program. List your [Programs](#programs) to find their identifiers.
*/
#[Optional('program_id')]
public ?string $programID;
Expand Down Expand Up @@ -181,7 +181,7 @@ public function withLoan(Loan|array $loan): self
}

/**
* The identifier for the Program that this Account falls under. Required if you operate more than one Program.
* The identifier for the Program that this Account falls under. Required if your Group operates more than one Program. List your [Programs](#programs) to find their identifiers.
*/
public function withProgramID(string $programID): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Identification implements BaseModel
public string $method;

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
#[Required]
public string $number;
Expand Down Expand Up @@ -127,7 +127,7 @@ public function withMethod(Method|string $method): self
}

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
public function withNumber(string $number): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Identification implements BaseModel
public string $method;

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
#[Required]
public string $number;
Expand Down Expand Up @@ -127,7 +127,7 @@ public function withMethod(Method|string $method): self
}

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
public function withNumber(string $number): self
{
Expand Down
4 changes: 2 additions & 2 deletions src/CardPushTransfers/CardPushTransfer/Status.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ enum Status: string

case CANCELED = 'canceled';

case PENDING_SUBMISSION = 'pending_submission';

case PENDING_REVIEWING = 'pending_reviewing';

case REQUIRES_ATTENTION = 'requires_attention';

case PENDING_SUBMISSION = 'pending_submission';

case SUBMITTED = 'submitted';

case COMPLETE = 'complete';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ enum In: string

case CANCELED = 'canceled';

case PENDING_SUBMISSION = 'pending_submission';

case PENDING_REVIEWING = 'pending_reviewing';

case REQUIRES_ATTENTION = 'requires_attention';

case PENDING_SUBMISSION = 'pending_submission';

case SUBMITTED = 'submitted';

case COMPLETE = 'complete';
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
4 changes: 2 additions & 2 deletions src/Entities/EntityCreateParams/Corporation.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ final class Corporation implements BaseModel
public array $beneficialOwners;

/**
* The legal identifier of the corporation. This is usually the Employer Identification Number (EIN).
* The legal identifier of the corporation. This is usually the Employer Identification Number (EIN). This replaces the deprecated `tax_identifier` field.
*/
#[Required('legal_identifier')]
public LegalIdentifier $legalIdentifier;
Expand Down Expand Up @@ -187,7 +187,7 @@ public function withBeneficialOwners(array $beneficialOwners): self
}

/**
* The legal identifier of the corporation. This is usually the Employer Identification Number (EIN).
* The legal identifier of the corporation. This is usually the Employer Identification Number (EIN). This replaces the deprecated `tax_identifier` field.
*
* @param LegalIdentifier|LegalIdentifierShape $legalIdentifier
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Identification implements BaseModel
public string $method;

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
#[Required]
public string $number;
Expand Down Expand Up @@ -127,7 +127,7 @@ public function withMethod(Method|string $method): self
}

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
public function withNumber(string $number): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use Increase\Entities\EntityCreateParams\Corporation\LegalIdentifier\Category;

/**
* The legal identifier of the corporation. This is usually the Employer Identification Number (EIN).
* The legal identifier of the corporation. This is usually the Employer Identification Number (EIN). This replaces the deprecated `tax_identifier` field.
*
* @phpstan-type LegalIdentifierShape = array{
* value: string, category?: null|Category|value-of<Category>
Expand All @@ -23,7 +23,7 @@ final class LegalIdentifier implements BaseModel
use SdkModel;

/**
* The legal identifier. For US Employer Identification Numbers, submit nine digits with no dashes or other separators.
* The legal identifier. For US Employer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
#[Required]
public string $value;
Expand Down Expand Up @@ -76,7 +76,7 @@ public static function with(
}

/**
* The legal identifier. For US Employer Identification Numbers, submit nine digits with no dashes or other separators.
* The legal identifier. For US Employer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
public function withValue(string $value): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Identification implements BaseModel
public string $method;

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
#[Required]
public string $number;
Expand Down Expand Up @@ -127,7 +127,7 @@ public function withMethod(Method|string $method): self
}

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
public function withNumber(string $number): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Identification implements BaseModel
public string $method;

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
#[Required]
public string $number;
Expand Down Expand Up @@ -127,7 +127,7 @@ public function withMethod(Method|string $method): self
}

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
public function withNumber(string $number): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Identification implements BaseModel
public string $method;

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
#[Required]
public string $number;
Expand Down Expand Up @@ -127,7 +127,7 @@ public function withMethod(Method|string $method): self
}

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
public function withNumber(string $number): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Identification implements BaseModel
public string $method;

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
#[Required]
public string $number;
Expand Down Expand Up @@ -127,7 +127,7 @@ public function withMethod(Method|string $method): self
}

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
public function withNumber(string $number): self
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ final class Identification implements BaseModel
public string $method;

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
#[Required]
public string $number;
Expand Down Expand Up @@ -127,7 +127,7 @@ public function withMethod(Method|string $method): self
}

/**
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators.
* An identification number that can be used to verify the individual's identity, such as a social security number. For Social Security Numbers and Individual Taxpayer Identification Numbers, submit nine digits with no dashes or other separators. When testing in sandbox, use one of our [sandbox test values](https://increase.com/documentation/sandbox-test-values).
*/
public function withNumber(string $number): self
{
Expand Down
4 changes: 2 additions & 2 deletions src/FednowTransfers/FednowTransfer/Status.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
*/
enum Status: string
{
case PENDING_SUBMITTING = 'pending_submitting';

case PENDING_REVIEWING = 'pending_reviewing';

case CANCELED = 'canceled';
Expand All @@ -19,8 +21,6 @@ enum Status: string

case PENDING_APPROVAL = 'pending_approval';

case PENDING_SUBMITTING = 'pending_submitting';

case PENDING_RESPONSE = 'pending_response';

case COMPLETE = 'complete';
Expand Down
4 changes: 2 additions & 2 deletions src/FednowTransfers/FednowTransferListParams/Status/In.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

enum In: string
{
case PENDING_SUBMITTING = 'pending_submitting';

case PENDING_REVIEWING = 'pending_reviewing';

case CANCELED = 'canceled';
Expand All @@ -16,8 +18,6 @@ enum In: string

case PENDING_APPROVAL = 'pending_approval';

case PENDING_SUBMITTING = 'pending_submitting';

case PENDING_RESPONSE = 'pending_response';

case COMPLETE = 'complete';
Expand Down
Loading