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: b920ca422925bb06a6268f840371d1da
config_hash: 2ae0d8aaecf01b38cbf9f9e112822c23
8 changes: 2 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,14 @@ include = [
packages = ["src/increase"]

[tool.hatch.build.targets.sdist]
# Basically everything except hidden files/directories (such as .github, .devcontainers, .python-version, etc)
# Runtime package (src/) plus top-level metadata only.
# Dev files (tests/, examples/, tooling) stay out of the published sdist.
include = [
"/*.toml",
"/*.json",
"/*.lock",
"/*.md",
"/mypy.ini",
"/noxfile.py",
"bin/*",
"examples/*",
"src/*",
"tests/*",
]

[tool.hatch.metadata.hooks.fancy-pypi-readme]
Expand Down
2 changes: 1 addition & 1 deletion scripts/mock

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions src/increase/resources/ach_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ def create(

standard_entry_class_code: The
[Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
to use for the transfer.
to use for the transfer. If not provided, the default is
`corporate_credit_or_debit`.

- `corporate_credit_or_debit` - Corporate Credit and Debit (CCD) is used for
business-to-business payments.
Expand Down Expand Up @@ -527,7 +528,8 @@ async def create(

standard_entry_class_code: The
[Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
to use for the transfer.
to use for the transfer. If not provided, the default is
`corporate_credit_or_debit`.

- `corporate_credit_or_debit` - Corporate Credit and Debit (CCD) is used for
business-to-business payments.
Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/ach_transfer_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ class ACHTransferCreateParams(TypedDict, total=False):
"""
The
[Standard Entry Class (SEC) code](/documentation/ach-standard-entry-class-codes)
to use for the transfer.
to use for the transfer. If not provided, the default is
`corporate_credit_or_debit`.

- `corporate_credit_or_debit` - Corporate Credit and Debit (CCD) is used for
business-to-business payments.
Expand Down
6 changes: 3 additions & 3 deletions src/increase/types/card_push_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -880,9 +880,9 @@ class CardPushTransfer(BaseModel):
status: Literal[
"pending_approval",
"canceled",
"pending_submission",
"pending_reviewing",
"requires_attention",
"pending_submission",
"submitted",
"complete",
"declined",
Expand All @@ -891,11 +891,11 @@ class CardPushTransfer(BaseModel):

- `pending_approval` - The transfer is pending approval.
- `canceled` - The transfer has been canceled.
- `pending_submission` - The transfer is queued to be submitted to the card
network.
- `pending_reviewing` - The transfer is pending review by Increase.
- `requires_attention` - The transfer requires attention from an Increase
operator.
- `pending_submission` - The transfer is queued to be submitted to the card
network.
- `submitted` - The transfer has been submitted and is pending a response from
the card network.
- `complete` - The transfer has been sent successfully and is complete.
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/card_push_transfer_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ class CreatedAt(TypedDict, total=False):
Literal[
"pending_approval",
"canceled",
"pending_submission",
"pending_reviewing",
"requires_attention",
"pending_submission",
"submitted",
"complete",
"declined",
Expand Down
4 changes: 2 additions & 2 deletions src/increase/types/fednow_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,25 +275,25 @@ class FednowTransfer(BaseModel):
"""The Account Number the recipient will see as having sent the transfer."""

status: Literal[
"pending_submitting",
"pending_reviewing",
"canceled",
"reviewing_rejected",
"requires_attention",
"pending_approval",
"pending_submitting",
"pending_response",
"complete",
"rejected",
]
"""The lifecycle status of the transfer.

- `pending_submitting` - The transfer is queued to be submitted to FedNow.
- `pending_reviewing` - The transfer is pending review by Increase.
- `canceled` - The transfer has been canceled.
- `reviewing_rejected` - The transfer has been rejected by Increase.
- `requires_attention` - The transfer requires attention from an Increase
operator.
- `pending_approval` - The transfer is pending approval.
- `pending_submitting` - The transfer is queued to be submitted to FedNow.
- `pending_response` - The transfer has been submitted and is pending a response
from FedNow.
- `complete` - The transfer has been sent successfully and is complete.
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/fednow_transfer_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ class CreatedAt(TypedDict, total=False):
{
"in": List[
Literal[
"pending_submitting",
"pending_reviewing",
"canceled",
"reviewing_rejected",
"requires_attention",
"pending_approval",
"pending_submitting",
"pending_response",
"complete",
"rejected",
Expand Down
3 changes: 2 additions & 1 deletion src/increase/types/inbound_real_time_payments_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ class InboundRealTimePaymentsTransfer(BaseModel):
"""The lifecycle status of the transfer.

- `pending_confirming` - The transfer is pending confirmation.
- `timed_out` - The transfer was not responded to in time.
- `timed_out` - The transfer was not responded to in time. This is rare and
represents an error at Increase.
- `confirmed` - The transfer has been received successfully and is confirmed.
- `declined` - The transfer has been declined.
"""
Expand Down
6 changes: 3 additions & 3 deletions src/increase/types/real_time_payments_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,23 +322,23 @@ class RealTimePaymentsTransfer(BaseModel):
status: Literal[
"pending_approval",
"canceled",
"pending_submission",
"pending_reviewing",
"requires_attention",
"rejected",
"pending_submission",
"submitted",
"complete",
]
"""The lifecycle status of the transfer.

- `pending_approval` - The transfer is pending approval.
- `canceled` - The transfer has been canceled.
- `pending_submission` - The transfer is queued to be submitted to Real-Time
Payments.
- `pending_reviewing` - The transfer is pending review by Increase.
- `requires_attention` - The transfer requires attention from an Increase
operator.
- `rejected` - The transfer was rejected by the network or the recipient's bank.
- `pending_submission` - The transfer is queued to be submitted to Real-Time
Payments.
- `submitted` - The transfer has been submitted and is pending a response from
Real-Time Payments.
- `complete` - The transfer has been sent successfully and is complete.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ class CreatedAt(TypedDict, total=False):
Literal[
"pending_approval",
"canceled",
"pending_submission",
"pending_reviewing",
"requires_attention",
"rejected",
"pending_submission",
"submitted",
"complete",
]
Expand Down
4 changes: 2 additions & 2 deletions src/increase/types/swift_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ class SwiftTransfer(BaseModel):
status: Literal[
"pending_approval",
"canceled",
"pending_initiating",
"pending_reviewing",
"requires_attention",
"pending_initiating",
"initiated",
"rejected",
"returned",
Expand All @@ -200,10 +200,10 @@ class SwiftTransfer(BaseModel):

- `pending_approval` - The transfer is pending approval.
- `canceled` - The transfer has been canceled.
- `pending_initiating` - The transfer is pending initiation.
- `pending_reviewing` - The transfer is pending review by Increase.
- `requires_attention` - The transfer requires attention from an Increase
operator.
- `pending_initiating` - The transfer is pending initiation.
- `initiated` - The transfer has been initiated.
- `rejected` - The transfer has been rejected by Increase.
- `returned` - The transfer has been returned.
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/swift_transfer_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ class CreatedAt(TypedDict, total=False):
Literal[
"pending_approval",
"canceled",
"pending_initiating",
"pending_reviewing",
"requires_attention",
"pending_initiating",
"initiated",
"rejected",
"returned",
Expand Down
4 changes: 2 additions & 2 deletions src/increase/types/wire_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,10 +405,10 @@ class WireTransfer(BaseModel):
status: Literal[
"pending_approval",
"canceled",
"pending_creating",
"pending_reviewing",
"rejected",
"requires_attention",
"pending_creating",
"reversed",
"submitted",
"complete",
Expand All @@ -417,11 +417,11 @@ class WireTransfer(BaseModel):

- `pending_approval` - The transfer is pending approval.
- `canceled` - The transfer has been canceled.
- `pending_creating` - The transfer is pending creation.
- `pending_reviewing` - The transfer is pending review by Increase.
- `rejected` - The transfer has been rejected by Increase.
- `requires_attention` - The transfer requires attention from an Increase
operator.
- `pending_creating` - The transfer is pending creation.
- `reversed` - The transfer has been reversed.
- `submitted` - The transfer has been submitted to Fedwire.
- `complete` - The transfer has been acknowledged by Fedwire and can be
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/wire_transfer_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ class CreatedAt(TypedDict, total=False):
Literal[
"pending_approval",
"canceled",
"pending_creating",
"pending_reviewing",
"rejected",
"requires_attention",
"pending_creating",
"reversed",
"submitted",
"complete",
Expand Down
4 changes: 2 additions & 2 deletions tests/api_resources/test_fednow_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def test_method_list_with_all_params(self, client: Increase) -> None:
external_account_id="external_account_id",
idempotency_key="x",
limit=1,
status={"in": ["pending_reviewing"]},
status={"in": ["pending_submitting"]},
)
assert_matches_type(SyncPage[FednowTransfer], fednow_transfer, path=["response"])

Expand Down Expand Up @@ -379,7 +379,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncIncrease) ->
external_account_id="external_account_id",
idempotency_key="x",
limit=1,
status={"in": ["pending_reviewing"]},
status={"in": ["pending_submitting"]},
)
assert_matches_type(AsyncPage[FednowTransfer], fednow_transfer, path=["response"])

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