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.348.0"
".": "0.349.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1084eee4a06751b960309c5854bc2af4d20e8022359fda84882ea67495bdce1b.yml
openapi_spec_hash: 90bed8cf565ade10b60b33d5ca70e6d0
config_hash: a143293c5450ae8f52acad08f3102575
configured_endpoints: 220
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-dc0a89abaae59dd7fc23cc5463a412d79b5c8c042eb144b05e97823d11a76b2b.yml
openapi_spec_hash: 24ce07f273cf90d08b3fa22958316846
config_hash: f0b80170c2ea09811aeae3f1e94bc422
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.349.0 (2025-10-01)

Full Changelog: [v0.348.0...v0.349.0](https://github.com/Increase/increase-python/compare/v0.348.0...v0.349.0)

### Features

* **api:** api update ([3163858](https://github.com/Increase/increase-python/commit/3163858a029ed4daa518f89b3ebe6a45c7865b06))

## 0.348.0 (2025-10-01)

Full Changelog: [v0.347.0...v0.348.0](https://github.com/Increase/increase-python/compare/v0.347.0...v0.348.0)
Expand Down
22 changes: 22 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,22 @@ Methods:
- <code title="get /card_purchase_supplements/{card_purchase_supplement_id}">client.card_purchase_supplements.<a href="./src/increase/resources/card_purchase_supplements.py">retrieve</a>(card_purchase_supplement_id) -> <a href="./src/increase/types/card_purchase_supplement.py">CardPurchaseSupplement</a></code>
- <code title="get /card_purchase_supplements">client.card_purchase_supplements.<a href="./src/increase/resources/card_purchase_supplements.py">list</a>(\*\*<a href="src/increase/types/card_purchase_supplement_list_params.py">params</a>) -> <a href="./src/increase/types/card_purchase_supplement.py">SyncPage[CardPurchaseSupplement]</a></code>

# CardDisputes

Types:

```python
from increase.types import CardDispute
```

Methods:

- <code title="post /card_disputes">client.card_disputes.<a href="./src/increase/resources/card_disputes.py">create</a>(\*\*<a href="src/increase/types/card_dispute_create_params.py">params</a>) -> <a href="./src/increase/types/card_dispute.py">CardDispute</a></code>
- <code title="get /card_disputes/{card_dispute_id}">client.card_disputes.<a href="./src/increase/resources/card_disputes.py">retrieve</a>(card_dispute_id) -> <a href="./src/increase/types/card_dispute.py">CardDispute</a></code>
- <code title="get /card_disputes">client.card_disputes.<a href="./src/increase/resources/card_disputes.py">list</a>(\*\*<a href="src/increase/types/card_dispute_list_params.py">params</a>) -> <a href="./src/increase/types/card_dispute.py">SyncPage[CardDispute]</a></code>
- <code title="post /card_disputes/{card_dispute_id}/submit_user_submission">client.card_disputes.<a href="./src/increase/resources/card_disputes.py">submit_user_submission</a>(card_dispute_id, \*\*<a href="src/increase/types/card_dispute_submit_user_submission_params.py">params</a>) -> <a href="./src/increase/types/card_dispute.py">CardDispute</a></code>
- <code title="post /card_disputes/{card_dispute_id}/withdraw">client.card_disputes.<a href="./src/increase/resources/card_disputes.py">withdraw</a>(card_dispute_id) -> <a href="./src/increase/types/card_dispute.py">CardDispute</a></code>

# PhysicalCards

Types:
Expand Down Expand Up @@ -827,6 +843,12 @@ Methods:

- <code title="post /simulations/card_refunds">client.simulations.card_refunds.<a href="./src/increase/resources/simulations/card_refunds.py">create</a>(\*\*<a href="src/increase/types/simulations/card_refund_create_params.py">params</a>) -> <a href="./src/increase/types/transaction.py">Transaction</a></code>

## CardDisputes

Methods:

- <code title="post /simulations/card_disputes/{card_dispute_id}/action">client.simulations.card_disputes.<a href="./src/increase/resources/simulations/card_disputes.py">action</a>(card_dispute_id, \*\*<a href="src/increase/types/simulations/card_dispute_action_params.py">params</a>) -> <a href="./src/increase/types/card_dispute.py">CardDispute</a></code>

## PhysicalCards

Methods:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "increase"
version = "0.348.0"
version = "0.349.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
9 changes: 9 additions & 0 deletions src/increase/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
oauth_tokens,
transactions,
ach_transfers,
card_disputes,
card_payments,
check_deposits,
physical_cards,
Expand Down Expand Up @@ -115,6 +116,7 @@ class Increase(SyncAPIClient):
cards: cards.CardsResource
card_payments: card_payments.CardPaymentsResource
card_purchase_supplements: card_purchase_supplements.CardPurchaseSupplementsResource
card_disputes: card_disputes.CardDisputesResource
physical_cards: physical_cards.PhysicalCardsResource
digital_card_profiles: digital_card_profiles.DigitalCardProfilesResource
physical_card_profiles: physical_card_profiles.PhysicalCardProfilesResource
Expand Down Expand Up @@ -261,6 +263,7 @@ def __init__(
self.cards = cards.CardsResource(self)
self.card_payments = card_payments.CardPaymentsResource(self)
self.card_purchase_supplements = card_purchase_supplements.CardPurchaseSupplementsResource(self)
self.card_disputes = card_disputes.CardDisputesResource(self)
self.physical_cards = physical_cards.PhysicalCardsResource(self)
self.digital_card_profiles = digital_card_profiles.DigitalCardProfilesResource(self)
self.physical_card_profiles = physical_card_profiles.PhysicalCardProfilesResource(self)
Expand Down Expand Up @@ -476,6 +479,7 @@ class AsyncIncrease(AsyncAPIClient):
cards: cards.AsyncCardsResource
card_payments: card_payments.AsyncCardPaymentsResource
card_purchase_supplements: card_purchase_supplements.AsyncCardPurchaseSupplementsResource
card_disputes: card_disputes.AsyncCardDisputesResource
physical_cards: physical_cards.AsyncPhysicalCardsResource
digital_card_profiles: digital_card_profiles.AsyncDigitalCardProfilesResource
physical_card_profiles: physical_card_profiles.AsyncPhysicalCardProfilesResource
Expand Down Expand Up @@ -624,6 +628,7 @@ def __init__(
self.cards = cards.AsyncCardsResource(self)
self.card_payments = card_payments.AsyncCardPaymentsResource(self)
self.card_purchase_supplements = card_purchase_supplements.AsyncCardPurchaseSupplementsResource(self)
self.card_disputes = card_disputes.AsyncCardDisputesResource(self)
self.physical_cards = physical_cards.AsyncPhysicalCardsResource(self)
self.digital_card_profiles = digital_card_profiles.AsyncDigitalCardProfilesResource(self)
self.physical_card_profiles = physical_card_profiles.AsyncPhysicalCardProfilesResource(self)
Expand Down Expand Up @@ -844,6 +849,7 @@ def __init__(self, client: Increase) -> None:
self.card_purchase_supplements = card_purchase_supplements.CardPurchaseSupplementsResourceWithRawResponse(
client.card_purchase_supplements
)
self.card_disputes = card_disputes.CardDisputesResourceWithRawResponse(client.card_disputes)
self.physical_cards = physical_cards.PhysicalCardsResourceWithRawResponse(client.physical_cards)
self.digital_card_profiles = digital_card_profiles.DigitalCardProfilesResourceWithRawResponse(
client.digital_card_profiles
Expand Down Expand Up @@ -954,6 +960,7 @@ def __init__(self, client: AsyncIncrease) -> None:
self.card_purchase_supplements = card_purchase_supplements.AsyncCardPurchaseSupplementsResourceWithRawResponse(
client.card_purchase_supplements
)
self.card_disputes = card_disputes.AsyncCardDisputesResourceWithRawResponse(client.card_disputes)
self.physical_cards = physical_cards.AsyncPhysicalCardsResourceWithRawResponse(client.physical_cards)
self.digital_card_profiles = digital_card_profiles.AsyncDigitalCardProfilesResourceWithRawResponse(
client.digital_card_profiles
Expand Down Expand Up @@ -1078,6 +1085,7 @@ def __init__(self, client: Increase) -> None:
self.card_purchase_supplements = card_purchase_supplements.CardPurchaseSupplementsResourceWithStreamingResponse(
client.card_purchase_supplements
)
self.card_disputes = card_disputes.CardDisputesResourceWithStreamingResponse(client.card_disputes)
self.physical_cards = physical_cards.PhysicalCardsResourceWithStreamingResponse(client.physical_cards)
self.digital_card_profiles = digital_card_profiles.DigitalCardProfilesResourceWithStreamingResponse(
client.digital_card_profiles
Expand Down Expand Up @@ -1204,6 +1212,7 @@ def __init__(self, client: AsyncIncrease) -> None:
client.card_purchase_supplements
)
)
self.card_disputes = card_disputes.AsyncCardDisputesResourceWithStreamingResponse(client.card_disputes)
self.physical_cards = physical_cards.AsyncPhysicalCardsResourceWithStreamingResponse(client.physical_cards)
self.digital_card_profiles = digital_card_profiles.AsyncDigitalCardProfilesResourceWithStreamingResponse(
client.digital_card_profiles
Expand Down
2 changes: 1 addition & 1 deletion src/increase/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "increase"
__version__ = "0.348.0" # x-release-please-version
__version__ = "0.349.0" # x-release-please-version
14 changes: 14 additions & 0 deletions src/increase/resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,14 @@
ACHTransfersResourceWithStreamingResponse,
AsyncACHTransfersResourceWithStreamingResponse,
)
from .card_disputes import (
CardDisputesResource,
AsyncCardDisputesResource,
CardDisputesResourceWithRawResponse,
AsyncCardDisputesResourceWithRawResponse,
CardDisputesResourceWithStreamingResponse,
AsyncCardDisputesResourceWithStreamingResponse,
)
from .card_payments import (
CardPaymentsResource,
AsyncCardPaymentsResource,
Expand Down Expand Up @@ -471,6 +479,12 @@
"AsyncCardPurchaseSupplementsResourceWithRawResponse",
"CardPurchaseSupplementsResourceWithStreamingResponse",
"AsyncCardPurchaseSupplementsResourceWithStreamingResponse",
"CardDisputesResource",
"AsyncCardDisputesResource",
"CardDisputesResourceWithRawResponse",
"AsyncCardDisputesResourceWithRawResponse",
"CardDisputesResourceWithStreamingResponse",
"AsyncCardDisputesResourceWithStreamingResponse",
"PhysicalCardsResource",
"AsyncPhysicalCardsResource",
"PhysicalCardsResourceWithRawResponse",
Expand Down
Loading