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 .stats.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
configured_endpoints: 143
configured_endpoints: 141
13 changes: 0 additions & 13 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,19 +304,6 @@ Methods:
- <code title="post /ach_transfers/{ach_transfer_id}/approve">client.ach_transfers.<a href="./src/increase/resources/ach_transfers.py">approve</a>(ach_transfer_id) -> <a href="./src/increase/types/ach_transfer.py">ACHTransfer</a></code>
- <code title="post /ach_transfers/{ach_transfer_id}/cancel">client.ach_transfers.<a href="./src/increase/resources/ach_transfers.py">cancel</a>(ach_transfer_id) -> <a href="./src/increase/types/ach_transfer.py">ACHTransfer</a></code>

# InboundACHTransferReturns

Types:

```python
from increase.types import InboundACHTransferReturn
```

Methods:

- <code title="get /inbound_ach_transfer_returns/{inbound_ach_transfer_return_id}">client.inbound_ach_transfer_returns.<a href="./src/increase/resources/inbound_ach_transfer_returns.py">retrieve</a>(inbound_ach_transfer_return_id) -> <a href="./src/increase/types/inbound_ach_transfer_return.py">InboundACHTransferReturn</a></code>
- <code title="get /inbound_ach_transfer_returns">client.inbound_ach_transfer_returns.<a href="./src/increase/resources/inbound_ach_transfer_returns.py">list</a>(\*\*<a href="src/increase/types/inbound_ach_transfer_return_list_params.py">params</a>) -> <a href="./src/increase/types/inbound_ach_transfer_return.py">SyncPage[InboundACHTransferReturn]</a></code>

# ACHPrenotifications

Types:
Expand Down
4 changes: 0 additions & 4 deletions src/increase/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ class Increase(SyncAPIClient):
limits: resources.Limits
account_transfers: resources.AccountTransfers
ach_transfers: resources.ACHTransfers
inbound_ach_transfer_returns: resources.InboundACHTransferReturns
ach_prenotifications: resources.ACHPrenotifications
documents: resources.Documents
wire_transfers: resources.WireTransfers
Expand Down Expand Up @@ -180,7 +179,6 @@ def __init__(
self.limits = resources.Limits(self)
self.account_transfers = resources.AccountTransfers(self)
self.ach_transfers = resources.ACHTransfers(self)
self.inbound_ach_transfer_returns = resources.InboundACHTransferReturns(self)
self.ach_prenotifications = resources.ACHPrenotifications(self)
self.documents = resources.Documents(self)
self.wire_transfers = resources.WireTransfers(self)
Expand Down Expand Up @@ -358,7 +356,6 @@ class AsyncIncrease(AsyncAPIClient):
limits: resources.AsyncLimits
account_transfers: resources.AsyncAccountTransfers
ach_transfers: resources.AsyncACHTransfers
inbound_ach_transfer_returns: resources.AsyncInboundACHTransferReturns
ach_prenotifications: resources.AsyncACHPrenotifications
documents: resources.AsyncDocuments
wire_transfers: resources.AsyncWireTransfers
Expand Down Expand Up @@ -464,7 +461,6 @@ def __init__(
self.limits = resources.AsyncLimits(self)
self.account_transfers = resources.AsyncAccountTransfers(self)
self.ach_transfers = resources.AsyncACHTransfers(self)
self.inbound_ach_transfer_returns = resources.AsyncInboundACHTransferReturns(self)
self.ach_prenotifications = resources.AsyncACHPrenotifications(self)
self.documents = resources.AsyncDocuments(self)
self.wire_transfers = resources.AsyncWireTransfers(self)
Expand Down
6 changes: 0 additions & 6 deletions src/increase/resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@
CardPurchaseSupplements,
AsyncCardPurchaseSupplements,
)
from .inbound_ach_transfer_returns import (
InboundACHTransferReturns,
AsyncInboundACHTransferReturns,
)
from .real_time_payments_transfers import (
RealTimePaymentsTransfers,
AsyncRealTimePaymentsTransfers,
Expand Down Expand Up @@ -98,8 +94,6 @@
"AsyncAccountTransfers",
"ACHTransfers",
"AsyncACHTransfers",
"InboundACHTransferReturns",
"AsyncInboundACHTransferReturns",
"ACHPrenotifications",
"AsyncACHPrenotifications",
"Documents",
Expand Down
178 changes: 0 additions & 178 deletions src/increase/resources/inbound_ach_transfer_returns.py

This file was deleted.

4 changes: 2 additions & 2 deletions src/increase/resources/inbound_ach_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def transfer_return(
idempotency_key: str | None = None,
) -> InboundACHTransfer:
"""
Create an ACH Return
Return an Inbound ACH Transfer

Args:
inbound_ach_transfer_id: The identifier of the Inbound ACH Transfer to return to the originating
Expand Down Expand Up @@ -393,7 +393,7 @@ async def transfer_return(
idempotency_key: str | None = None,
) -> InboundACHTransfer:
"""
Create an ACH Return
Return an Inbound ACH Transfer

Args:
inbound_ach_transfer_id: The identifier of the Inbound ACH Transfer to return to the originating
Expand Down
6 changes: 0 additions & 6 deletions src/increase/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@
from .check_deposit_create_params import (
CheckDepositCreateParams as CheckDepositCreateParams,
)
from .inbound_ach_transfer_return import (
InboundACHTransferReturn as InboundACHTransferReturn,
)
from .real_time_payments_transfer import (
RealTimePaymentsTransfer as RealTimePaymentsTransfer,
)
Expand Down Expand Up @@ -185,9 +182,6 @@
from .card_purchase_supplement_list_params import (
CardPurchaseSupplementListParams as CardPurchaseSupplementListParams,
)
from .inbound_ach_transfer_return_list_params import (
InboundACHTransferReturnListParams as InboundACHTransferReturnListParams,
)
from .real_time_payments_transfer_list_params import (
RealTimePaymentsTransferListParams as RealTimePaymentsTransferListParams,
)
Expand Down
80 changes: 0 additions & 80 deletions src/increase/types/inbound_ach_transfer_return.py

This file was deleted.

18 changes: 0 additions & 18 deletions src/increase/types/inbound_ach_transfer_return_list_params.py

This file was deleted.

Loading