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: 239
openapi_spec_hash: ec98ee98f7777d5d0f87bcb178e47d8d
openapi_spec_hash: 73fc9368a756985a674d3e4a943ae5b9
config_hash: 1ca082e374ef7000e2a5971e8da740e0
2 changes: 1 addition & 1 deletion scripts/mock

Large diffs are not rendered by default.

18 changes: 10 additions & 8 deletions src/increase/resources/simulations/inbound_check_deposits.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@ def create(

This imitates someone
depositing a check at their bank that was issued from your account. It may or
may not be associated with a Check Transfer. Increase will evaluate the Inbound
Check Deposit as we would in production and either create a Transaction or a
Declined Transaction as a result. You can inspect the resulting Inbound Check
Deposit object to see the result.
may not be associated with a Check Transfer. The resulting Inbound Check Deposit
will have a `status` of `pending`, and after an hour Increase will evaluate it
as we would in production and either create a Transaction or a Declined
Transaction as a result. To resolve it sooner, use the simulation to accept an
Inbound Check Deposit or the API to decline one.

Args:
account_number_id: The identifier of the Account Number the Inbound Check Deposit will be against.
Expand Down Expand Up @@ -230,10 +231,11 @@ async def create(

This imitates someone
depositing a check at their bank that was issued from your account. It may or
may not be associated with a Check Transfer. Increase will evaluate the Inbound
Check Deposit as we would in production and either create a Transaction or a
Declined Transaction as a result. You can inspect the resulting Inbound Check
Deposit object to see the result.
may not be associated with a Check Transfer. The resulting Inbound Check Deposit
will have a `status` of `pending`, and after an hour Increase will evaluate it
as we would in production and either create a Transaction or a Declined
Transaction as a result. To resolve it sooner, use the simulation to accept an
Inbound Check Deposit or the API to decline one.

Args:
account_number_id: The identifier of the Account Number the Inbound Check Deposit will be against.
Expand Down
6 changes: 2 additions & 4 deletions src/increase/types/check_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,8 @@ class PhysicalCheck(BaseModel):
shipping_method: Literal["usps_first_class", "fedex_overnight"]
"""The shipping method for the check.

- `usps_first_class` - Ship the checks via USPS First Class, which supports a
maximum of 1000 pages (checks and attachments combined).
- `fedex_overnight` - Ship the checks via FedEx Overnight, which supports a
maximum of 50 pages (checks and attachments combined).
- `usps_first_class` - USPS First Class
- `fedex_overnight` - FedEx Overnight
"""

signature: PhysicalCheckSignature
Expand Down
6 changes: 2 additions & 4 deletions src/increase/types/check_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,8 @@ class PhysicalCheck(TypedDict, total=False, extra_items=object): # type: ignore
For details on pricing, timing, and restrictions, see
https://increase.com/documentation/originating-checks#printing-checks .

- `usps_first_class` - Ship the checks via USPS First Class, which supports a
maximum of 1000 pages (checks and attachments combined).
- `fedex_overnight` - Ship the checks via FedEx Overnight, which supports a
maximum of 50 pages (checks and attachments combined).
- `usps_first_class` - USPS First Class
- `fedex_overnight` - FedEx Overnight
"""

signature: PhysicalCheckSignature
Expand Down
7 changes: 7 additions & 0 deletions src/increase/types/routing_number_list_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ class RoutingNumberListResponse(BaseModel):
name: str
"""The name of the financial institution belonging to a routing number."""

real_time_payments_request_for_payment: Literal["supported", "not_supported"]
"""This routing number's support for Real-Time Payments Requests for Payment.

- `supported` - The routing number can receive this transfer type.
- `not_supported` - The routing number cannot receive this transfer type.
"""

real_time_payments_transfers: Literal["supported", "not_supported"]
"""This routing number's support for Real-Time Payments Transfers.

Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading