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.451.0"
".": "0.452.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-e1f7516f9b6e2330afbb9f36fc3721a0c6b43947b8996105fa21d551591a3950.yml
openapi_spec_hash: 782bc3e21cf8b511cf17b2a48600a67e
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1127bb6ee64bebab1bbf8ecbd9ec71c0deb5ca8552fd454fa2ec120fd9eac14a.yml
openapi_spec_hash: 9fedc9dc133202e4d39bf7bffe4839d9
config_hash: 4b562e97b3d8b4cba758a87d4927a76d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.452.0 (2026-02-14)

Full Changelog: [v0.451.0...v0.452.0](https://github.com/Increase/increase-go/compare/v0.451.0...v0.452.0)

### Features

* **api:** api update ([25f8fe5](https://github.com/Increase/increase-go/commit/25f8fe597c7fd927f1771635fb4a80379a3b6c72))

## 0.451.0 (2026-02-10)

Full Changelog: [v0.450.0...v0.451.0](https://github.com/Increase/increase-go/compare/v0.450.0...v0.451.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/Increase/increase-go@v0.451.0'
go get -u 'github.com/Increase/increase-go@v0.452.0'
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion accountstatement.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ type AccountStatement struct {
// The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the Account
// Statement was created.
CreatedAt time.Time `json:"created_at,required" format:"date-time"`
// The Account's balance at the start of its statement period.
// The Account's balance at the end of its statement period.
EndingBalance int64 `json:"ending_balance,required"`
// The identifier of the File containing a PDF of the statement.
FileID string `json:"file_id,required"`
Expand Down
4 changes: 2 additions & 2 deletions achtransfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ type ACHTransfer struct {
InboundFundsHold ACHTransferInboundFundsHold `json:"inbound_funds_hold,required,nullable"`
// Your identifier for the transfer recipient.
IndividualID string `json:"individual_id,required,nullable"`
// The name of the transfer recipient. This value is information and not verified
// The name of the transfer recipient. This value is informational and not verified
// by the recipient's bank.
IndividualName string `json:"individual_name,required,nullable"`
// The transfer's network.
Expand Down Expand Up @@ -1106,7 +1106,7 @@ type ACHTransferSubmission struct {
// settlement schedule) at the time the transfer was submitted.
EffectiveDate time.Time `json:"effective_date,required" format:"date"`
// When the transfer is expected to settle in the recipient's account. Credits may
// be available sooner, at the receiving banks discretion. The FedACH schedule is
// be available sooner, at the receiving bank's discretion. The FedACH schedule is
// published
// [here](https://www.frbservices.org/resources/resource-centers/same-day-ach/fedach-processing-schedule.html).
ExpectedFundsSettlementAt time.Time `json:"expected_funds_settlement_at,required" format:"date-time"`
Expand Down
2 changes: 1 addition & 1 deletion bookkeepingaccount.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func (r BookkeepingAccountType) IsKnown() bool {
return false
}

// Represents a request to lookup the balance of an Bookkeeping Account at a given
// Represents a request to lookup the balance of a Bookkeeping Account at a given
// point in time.
type BookkeepingBalanceLookup struct {
// The Bookkeeping Account's current balance, representing the sum of all
Expand Down
2 changes: 1 addition & 1 deletion bookkeepingentry.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ type BookkeepingEntry struct {
Amount int64 `json:"amount,required"`
// When the entry set was created.
CreatedAt time.Time `json:"created_at,required" format:"date-time"`
// The identifier for the Account the Entry belongs to.
// The identifier for the Entry Set the Entry belongs to.
EntrySetID string `json:"entry_set_id,required"`
// A constant representing the object's type. For this resource it will always be
// `bookkeeping_entry`.
Expand Down
20 changes: 10 additions & 10 deletions cardpayment.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ type CardPaymentElement struct {
CardAuthentication CardPaymentElementsCardAuthentication `json:"card_authentication,nullable"`
// A Card Authorization object. This field will be present in the JSON response if
// and only if `category` is equal to `card_authorization`. Card Authorizations are
// temporary holds placed on a customers funds with the intent to later clear a
// temporary holds placed on a customer's funds with the intent to later clear a
// transaction.
CardAuthorization CardPaymentElementsCardAuthorization `json:"card_authorization,nullable"`
// A Card Authorization Expiration object. This field will be present in the JSON
Expand All @@ -154,7 +154,7 @@ type CardPaymentElement struct {
CardDecline CardPaymentElementsCardDecline `json:"card_decline,nullable"`
// A Card Financial object. This field will be present in the JSON response if and
// only if `category` is equal to `card_financial`. Card Financials are temporary
// holds placed on a customers funds with the intent to later clear a transaction.
// holds placed on a customer's funds with the intent to later clear a transaction.
CardFinancial CardPaymentElementsCardFinancial `json:"card_financial,nullable"`
// A Card Fuel Confirmation object. This field will be present in the JSON response
// if and only if `category` is equal to `card_fuel_confirmation`. Card Fuel
Expand All @@ -167,7 +167,7 @@ type CardPaymentElement struct {
CardIncrement CardPaymentElementsCardIncrement `json:"card_increment,nullable"`
// A Card Refund object. This field will be present in the JSON response if and
// only if `category` is equal to `card_refund`. Card Refunds move money back to
// the cardholder. While they are usually connected to a Card Settlement an
// the cardholder. While they are usually connected to a Card Settlement, an
// acquirer can also refund money directly to a card without relation to a
// transaction.
CardRefund CardPaymentElementsCardRefund `json:"card_refund,nullable"`
Expand Down Expand Up @@ -520,7 +520,7 @@ func (r CardPaymentElementsCardAuthenticationType) IsKnown() bool {

// A Card Authorization object. This field will be present in the JSON response if
// and only if `category` is equal to `card_authorization`. Card Authorizations are
// temporary holds placed on a customers funds with the intent to later clear a
// temporary holds placed on a customer's funds with the intent to later clear a
// transaction.
type CardPaymentElementsCardAuthorization struct {
// The Card Authorization identifier.
Expand Down Expand Up @@ -3381,7 +3381,7 @@ func (r cardPaymentElementsCardDeclineVerificationCardholderNameJSON) RawJSON()

// A Card Financial object. This field will be present in the JSON response if and
// only if `category` is equal to `card_financial`. Card Financials are temporary
// holds placed on a customers funds with the intent to later clear a transaction.
// holds placed on a customer's funds with the intent to later clear a transaction.
type CardPaymentElementsCardFinancial struct {
// The Card Financial identifier.
ID string `json:"id,required"`
Expand Down Expand Up @@ -4986,7 +4986,7 @@ func (r CardPaymentElementsCardIncrementType) IsKnown() bool {

// A Card Refund object. This field will be present in the JSON response if and
// only if `category` is equal to `card_refund`. Card Refunds move money back to
// the cardholder. While they are usually connected to a Card Settlement an
// the cardholder. While they are usually connected to a Card Settlement, an
// acquirer can also refund money directly to a card without relation to a
// transaction.
type CardPaymentElementsCardRefund struct {
Expand All @@ -5003,7 +5003,7 @@ type CardPaymentElementsCardRefund struct {
// The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
// transaction's settlement currency.
Currency CardPaymentElementsCardRefundCurrency `json:"currency,required"`
// Interchange assessed as a part of this transaciton.
// Interchange assessed as a part of this transaction.
Interchange CardPaymentElementsCardRefundInterchange `json:"interchange,required,nullable"`
// The merchant identifier (commonly abbreviated as MID) of the merchant the card
// is transacting with.
Expand Down Expand Up @@ -5133,7 +5133,7 @@ func (r CardPaymentElementsCardRefundCurrency) IsKnown() bool {
return false
}

// Interchange assessed as a part of this transaciton.
// Interchange assessed as a part of this transaction.
type CardPaymentElementsCardRefundInterchange struct {
// The interchange amount given as a string containing a decimal number in major
// units (so e.g., "3.14" for $3.14). The amount is a positive number if it is
Expand Down Expand Up @@ -6069,7 +6069,7 @@ type CardPaymentElementsCardSettlement struct {
// fields.
PurchaseDetails CardPaymentElementsCardSettlementPurchaseDetails `json:"purchase_details,required,nullable"`
// Surcharge amount details, if applicable. The amount is positive if the surcharge
// is added to to the overall transaction amount (surcharge), and negative if the
// is added to the overall transaction amount (surcharge), and negative if the
// surcharge is deducted from the overall transaction amount (discount).
Surcharge CardPaymentElementsCardSettlementSurcharge `json:"surcharge,required,nullable"`
// The identifier of the Transaction associated with this Transaction.
Expand Down Expand Up @@ -6864,7 +6864,7 @@ func (r CardPaymentElementsCardSettlementPurchaseDetailsTravelTripLegsStopOverCo
}

// Surcharge amount details, if applicable. The amount is positive if the surcharge
// is added to to the overall transaction amount (surcharge), and negative if the
// is added to the overall transaction amount (surcharge), and negative if the
// surcharge is deducted from the overall transaction amount (discount).
type CardPaymentElementsCardSettlementSurcharge struct {
// The surcharge amount in the minor unit of the transaction's settlement currency.
Expand Down
2 changes: 1 addition & 1 deletion cardpushtransfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ type CardPushTransferSubmission struct {
// A unique reference for the transfer.
SenderReference string `json:"sender_reference,required"`
// The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
// the transfer was submitted to card network.
// the transfer was submitted to the card network.
SubmittedAt time.Time `json:"submitted_at,required" format:"date-time"`
// A 6-digit trace number that identifies the transfer within a small window of
// time.
Expand Down
2 changes: 1 addition & 1 deletion digitalcardprofile.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ type DigitalCardProfile struct {
// A website the user can visit to view and receive support for their card.
ContactWebsite string `json:"contact_website,required,nullable"`
// The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
// the Card Dispute was created.
// the Digital Card Profile was created.
CreatedAt time.Time `json:"created_at,required" format:"date-time"`
// A description you can use to identify the Card Profile.
Description string `json:"description,required"`
Expand Down
2 changes: 1 addition & 1 deletion filelink.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ type FileLinkNewParams struct {
// The File to create a File Link for.
FileID param.Field[string] `json:"file_id,required"`
// The time at which the File Link will expire. The default is 1 hour from the time
// of the request. The maxiumum is 1 day from the time of the request.
// of the request. The maximum is 1 day from the time of the request.
ExpiresAt param.Field[time.Time] `json:"expires_at" format:"date-time"`
}

Expand Down
2 changes: 1 addition & 1 deletion inboundachtransfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ func (r InboundACHTransferInternationalAddendaReceivingDepositoryFinancialInstit
type InboundACHTransferNotificationOfChange struct {
// The new account number provided in the notification of change.
UpdatedAccountNumber string `json:"updated_account_number,required,nullable"`
// The new account number provided in the notification of change.
// The new routing number provided in the notification of change.
UpdatedRoutingNumber string `json:"updated_routing_number,required,nullable"`
JSON inboundACHTransferNotificationOfChangeJSON `json:"-"`
}
Expand Down
2 changes: 1 addition & 1 deletion inboundmailitem.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (r *InboundMailItemService) ListAutoPaging(ctx context.Context, query Inbou
return pagination.NewPageAutoPager(r.List(ctx, query, opts...))
}

// Action a Inbound Mail Item
// Action an Inbound Mail Item
func (r *InboundMailItemService) Action(ctx context.Context, inboundMailItemID string, body InboundMailItemActionParams, opts ...option.RequestOption) (res *InboundMailItem, err error) {
opts = slices.Concat(r.Options, opts)
if inboundMailItemID == "" {
Expand Down
2 changes: 1 addition & 1 deletion inboundwiredrawdownrequest.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ type InboundWireDrawdownRequest struct {
// The amount being requested in cents.
Amount int64 `json:"amount,required"`
// The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
// the inbound wire drawdown requested was created.
// the inbound wire drawdown request was created.
CreatedAt time.Time `json:"created_at,required" format:"date-time"`
// The creditor's account number.
CreditorAccountNumber string `json:"creditor_account_number,required"`
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package internal

const PackageVersion = "0.451.0" // x-release-please-version
const PackageVersion = "0.452.0" // x-release-please-version
4 changes: 2 additions & 2 deletions pendingtransaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ type PendingTransactionSource struct {
BlockchainOnrampTransferInstruction PendingTransactionSourceBlockchainOnrampTransferInstruction `json:"blockchain_onramp_transfer_instruction,nullable"`
// A Card Authorization object. This field will be present in the JSON response if
// and only if `category` is equal to `card_authorization`. Card Authorizations are
// temporary holds placed on a customers funds with the intent to later clear a
// temporary holds placed on a customer's funds with the intent to later clear a
// transaction.
CardAuthorization PendingTransactionSourceCardAuthorization `json:"card_authorization,nullable"`
// A Card Push Transfer Instruction object. This field will be present in the JSON
Expand Down Expand Up @@ -485,7 +485,7 @@ func (r pendingTransactionSourceBlockchainOnrampTransferInstructionJSON) RawJSON

// A Card Authorization object. This field will be present in the JSON response if
// and only if `category` is equal to `card_authorization`. Card Authorizations are
// temporary holds placed on a customers funds with the intent to later clear a
// temporary holds placed on a customer's funds with the intent to later clear a
// transaction.
type PendingTransactionSourceCardAuthorization struct {
// The Card Authorization identifier.
Expand Down
2 changes: 1 addition & 1 deletion physicalcardprofile.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ type PhysicalCardProfile struct {
// A phone number the user can contact to receive support for their card.
ContactPhone string `json:"contact_phone,required,nullable"`
// The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
// the Card Dispute was created.
// the Physical Card Profile was created.
CreatedAt time.Time `json:"created_at,required" format:"date-time"`
// The creator of this Physical Card Profile.
Creator PhysicalCardProfileCreator `json:"creator,required"`
Expand Down
4 changes: 2 additions & 2 deletions simulationachtransfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ func NewSimulationACHTransferService(opts ...option.RequestOption) (r *Simulatio
}

// Simulates the acknowledgement of an [ACH Transfer](#ach-transfers) by the
// Federal Reserve. This transfer must first have a `status` of `submitted` . In
// Federal Reserve. This transfer must first have a `status` of `submitted`. In
// production, the Federal Reserve generally acknowledges submitted ACH files
// within 30 minutes. Since sandbox ACH Transfers are not submitted to the Federal
// Reserve, this endpoint allows you to skip that delay and add the acknowledgment
// Reserve, this endpoint allows you to skip that delay and add the acknowledgement
// subresource to the ACH Transfer.
func (r *SimulationACHTransferService) Acknowledge(ctx context.Context, achTransferID string, opts ...option.RequestOption) (res *ACHTransfer, err error) {
opts = slices.Concat(r.Options, opts)
Expand Down
2 changes: 1 addition & 1 deletion simulationcardincrement.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (r *SimulationCardIncrementService) New(ctx context.Context, body Simulatio
type SimulationCardIncrementNewParams struct {
// The amount of the increment in minor units in the card authorization's currency.
Amount param.Field[int64] `json:"amount,required"`
// The identifier of the Card Payment to create a increment on.
// The identifier of the Card Payment to create an increment on.
CardPaymentID param.Field[string] `json:"card_payment_id,required"`
// The identifier of the Event Subscription to use. If provided, will override the
// default real time event subscription. Because you can only create one real time
Expand Down
2 changes: 1 addition & 1 deletion simulationdigitalwallettokenrequest.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func NewSimulationDigitalWalletTokenRequestService(opts ...option.RequestOption)
return
}

// Simulates a user attempting add a [Card](#cards) to a digital wallet such as
// Simulates a user attempting to add a [Card](#cards) to a digital wallet such as
// Apple Pay.
func (r *SimulationDigitalWalletTokenRequestService) New(ctx context.Context, body SimulationDigitalWalletTokenRequestNewParams, opts ...option.RequestOption) (res *SimulationDigitalWalletTokenRequestNewResponse, err error) {
opts = slices.Concat(r.Options, opts)
Expand Down
Loading