Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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
11 changes: 0 additions & 11 deletions 11 api.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,6 @@ Methods:
- <code title="post /cards/{card_token}/renew">client.cards.<a href="./src/lithic/resources/cards/cards.py">renew</a>(card_token, \*\*<a href="src/lithic/types/card_renew_params.py">params</a>) -> <a href="./src/lithic/types/card.py">Card</a></code>
- <code title="get /cards/{card_token}/spend_limits">client.cards.<a href="./src/lithic/resources/cards/cards.py">retrieve_spend_limits</a>(card_token) -> <a href="./src/lithic/types/card_spend_limits.py">CardSpendLimits</a></code>
- <code title="post /cards/search_by_pan">client.cards.<a href="./src/lithic/resources/cards/cards.py">search_by_pan</a>(\*\*<a href="src/lithic/types/card_search_by_pan_params.py">params</a>) -> <a href="./src/lithic/types/card.py">Card</a></code>
- <code>client.cards.<a href="./src/lithic/resources/cards/cards.py">get_embed_html</a>(\*args) -> str</code>
- <code>client.cards.<a href="./src/lithic/resources/cards/cards.py">get_embed_url</a>(\*args) -> URL</code>

## AggregateBalances

Expand Down Expand Up @@ -221,7 +219,6 @@ Methods:
- <code title="post /disputes/{dispute_token}/evidences">client.disputes.<a href="./src/lithic/resources/disputes.py">initiate_evidence_upload</a>(dispute_token, \*\*<a href="src/lithic/types/dispute_initiate_evidence_upload_params.py">params</a>) -> <a href="./src/lithic/types/dispute_evidence.py">DisputeEvidence</a></code>
- <code title="get /disputes/{dispute_token}/evidences">client.disputes.<a href="./src/lithic/resources/disputes.py">list_evidences</a>(dispute_token, \*\*<a href="src/lithic/types/dispute_list_evidences_params.py">params</a>) -> <a href="./src/lithic/types/dispute_evidence.py">SyncCursorPage[DisputeEvidence]</a></code>
- <code title="get /disputes/{dispute_token}/evidences/{evidence_token}">client.disputes.<a href="./src/lithic/resources/disputes.py">retrieve_evidence</a>(evidence_token, \*, dispute_token) -> <a href="./src/lithic/types/dispute_evidence.py">DisputeEvidence</a></code>
- <code>client.disputes.<a href="./src/lithic/resources/disputes.py">upload_evidence</a>(\*args) -> None</code>

# Events

Expand All @@ -236,7 +233,6 @@ Methods:
- <code title="get /events/{event_token}">client.events.<a href="./src/lithic/resources/events/events.py">retrieve</a>(event_token) -> <a href="./src/lithic/types/event.py">Event</a></code>
- <code title="get /events">client.events.<a href="./src/lithic/resources/events/events.py">list</a>(\*\*<a href="src/lithic/types/event_list_params.py">params</a>) -> <a href="./src/lithic/types/event.py">SyncCursorPage[Event]</a></code>
- <code title="get /events/{event_token}/attempts">client.events.<a href="./src/lithic/resources/events/events.py">list_attempts</a>(event_token, \*\*<a href="src/lithic/types/event_list_attempts_params.py">params</a>) -> <a href="./src/lithic/types/message_attempt.py">SyncCursorPage[MessageAttempt]</a></code>
- <code>client.events.<a href="./src/lithic/resources/events/events.py">resend</a>(\*args) -> None</code>

## Subscriptions

Expand Down Expand Up @@ -356,13 +352,6 @@ Methods:
- <code title="delete /responder_endpoints">client.responder_endpoints.<a href="./src/lithic/resources/responder_endpoints.py">delete</a>(\*\*<a href="src/lithic/types/responder_endpoint_delete_params.py">params</a>) -> None</code>
- <code title="get /responder_endpoints">client.responder_endpoints.<a href="./src/lithic/resources/responder_endpoints.py">check_status</a>(\*\*<a href="src/lithic/types/responder_endpoint_check_status_params.py">params</a>) -> <a href="./src/lithic/types/responder_endpoint_status.py">ResponderEndpointStatus</a></code>

# Webhooks

Methods:

- <code>client.webhooks.<a href="./src/lithic/resources/webhooks.py">unwrap</a>(\*args) -> object</code>
- <code>client.webhooks.<a href="./src/lithic/resources/webhooks.py">verify_signature</a>(\*args) -> None</code>

# ExternalBankAccounts

Types:
Expand Down
4 changes: 4 additions & 0 deletions 4 examples/.keep
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
File generated from our OpenAPI spec by Stainless.

This directory can be used to store example files demonstrating usage of this SDK.
It is ignored by Stainless code generation and its content (other than this keep file) won't be touched.
32 changes: 0 additions & 32 deletions 32 integrations/pagination.py

This file was deleted.

4 changes: 0 additions & 4 deletions 4 src/lithic/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ class Lithic(SyncAPIClient):
financial_accounts: resources.FinancialAccounts
transactions: resources.Transactions
responder_endpoints: resources.ResponderEndpoints
webhooks: resources.Webhooks
external_bank_accounts: resources.ExternalBankAccounts
payments: resources.Payments
three_ds: resources.ThreeDS
Expand Down Expand Up @@ -194,7 +193,6 @@ def __init__(
self.financial_accounts = resources.FinancialAccounts(self)
self.transactions = resources.Transactions(self)
self.responder_endpoints = resources.ResponderEndpoints(self)
self.webhooks = resources.Webhooks(self)
self.external_bank_accounts = resources.ExternalBankAccounts(self)
self.payments = resources.Payments(self)
self.three_ds = resources.ThreeDS(self)
Expand Down Expand Up @@ -368,7 +366,6 @@ class AsyncLithic(AsyncAPIClient):
financial_accounts: resources.AsyncFinancialAccounts
transactions: resources.AsyncTransactions
responder_endpoints: resources.AsyncResponderEndpoints
webhooks: resources.AsyncWebhooks
external_bank_accounts: resources.AsyncExternalBankAccounts
payments: resources.AsyncPayments
three_ds: resources.AsyncThreeDS
Expand Down Expand Up @@ -486,7 +483,6 @@ def __init__(
self.financial_accounts = resources.AsyncFinancialAccounts(self)
self.transactions = resources.AsyncTransactions(self)
self.responder_endpoints = resources.AsyncResponderEndpoints(self)
self.webhooks = resources.AsyncWebhooks(self)
self.external_bank_accounts = resources.AsyncExternalBankAccounts(self)
self.payments = resources.AsyncPayments(self)
self.three_ds = resources.AsyncThreeDS(self)
Expand Down
3 changes: 0 additions & 3 deletions 3 src/lithic/resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
ThreeDSWithStreamingResponse,
AsyncThreeDSWithStreamingResponse,
)
from .webhooks import Webhooks, AsyncWebhooks
from .auth_rules import (
AuthRules,
AsyncAuthRules,
Expand Down Expand Up @@ -255,8 +254,6 @@
"AsyncResponderEndpointsWithRawResponse",
"ResponderEndpointsWithStreamingResponse",
"AsyncResponderEndpointsWithStreamingResponse",
"Webhooks",
"AsyncWebhooks",
"ExternalBankAccounts",
"AsyncExternalBankAccounts",
"ExternalBankAccountsWithRawResponse",
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.