|
56 | 56 | funding_events, |
57 | 57 | account_holders, |
58 | 58 | credit_products, |
| 59 | + account_activity, |
59 | 60 | digital_card_art, |
60 | 61 | network_programs, |
61 | 62 | external_payments, |
|
80 | 81 | from .resources.funding_events import FundingEvents, AsyncFundingEvents |
81 | 82 | from .resources.account_holders import AccountHolders, AsyncAccountHolders |
82 | 83 | from .resources.reports.reports import Reports, AsyncReports |
| 84 | + from .resources.account_activity import AccountActivity, AsyncAccountActivity |
83 | 85 | from .resources.digital_card_art import DigitalCardArtResource, AsyncDigitalCardArtResource |
84 | 86 | from .resources.network_programs import NetworkPrograms, AsyncNetworkPrograms |
85 | 87 | from .resources.external_payments import ExternalPayments, AsyncExternalPayments |
@@ -368,6 +370,12 @@ def network_programs(self) -> NetworkPrograms: |
368 | 370 |
|
369 | 371 | return NetworkPrograms(self) |
370 | 372 |
|
| 373 | + @cached_property |
| 374 | + def account_activity(self) -> AccountActivity: |
| 375 | + from .resources.account_activity import AccountActivity |
| 376 | + |
| 377 | + return AccountActivity(self) |
| 378 | + |
371 | 379 | @cached_property |
372 | 380 | def with_raw_response(self) -> LithicWithRawResponse: |
373 | 381 | return LithicWithRawResponse(self) |
@@ -754,6 +762,12 @@ def network_programs(self) -> AsyncNetworkPrograms: |
754 | 762 |
|
755 | 763 | return AsyncNetworkPrograms(self) |
756 | 764 |
|
| 765 | + @cached_property |
| 766 | + def account_activity(self) -> AsyncAccountActivity: |
| 767 | + from .resources.account_activity import AsyncAccountActivity |
| 768 | + |
| 769 | + return AsyncAccountActivity(self) |
| 770 | + |
757 | 771 | @cached_property |
758 | 772 | def webhooks(self) -> webhooks.AsyncWebhooks: |
759 | 773 | from .resources.webhooks import AsyncWebhooks |
@@ -1069,6 +1083,12 @@ def network_programs(self) -> network_programs.NetworkProgramsWithRawResponse: |
1069 | 1083 |
|
1070 | 1084 | return NetworkProgramsWithRawResponse(self._client.network_programs) |
1071 | 1085 |
|
| 1086 | + @cached_property |
| 1087 | + def account_activity(self) -> account_activity.AccountActivityWithRawResponse: |
| 1088 | + from .resources.account_activity import AccountActivityWithRawResponse |
| 1089 | + |
| 1090 | + return AccountActivityWithRawResponse(self._client.account_activity) |
| 1091 | + |
1072 | 1092 |
|
1073 | 1093 | class AsyncLithicWithRawResponse: |
1074 | 1094 | _client: AsyncLithic |
@@ -1242,6 +1262,12 @@ def network_programs(self) -> network_programs.AsyncNetworkProgramsWithRawRespon |
1242 | 1262 |
|
1243 | 1263 | return AsyncNetworkProgramsWithRawResponse(self._client.network_programs) |
1244 | 1264 |
|
| 1265 | + @cached_property |
| 1266 | + def account_activity(self) -> account_activity.AsyncAccountActivityWithRawResponse: |
| 1267 | + from .resources.account_activity import AsyncAccountActivityWithRawResponse |
| 1268 | + |
| 1269 | + return AsyncAccountActivityWithRawResponse(self._client.account_activity) |
| 1270 | + |
1245 | 1271 |
|
1246 | 1272 | class LithicWithStreamedResponse: |
1247 | 1273 | _client: Lithic |
@@ -1415,6 +1441,12 @@ def network_programs(self) -> network_programs.NetworkProgramsWithStreamingRespo |
1415 | 1441 |
|
1416 | 1442 | return NetworkProgramsWithStreamingResponse(self._client.network_programs) |
1417 | 1443 |
|
| 1444 | + @cached_property |
| 1445 | + def account_activity(self) -> account_activity.AccountActivityWithStreamingResponse: |
| 1446 | + from .resources.account_activity import AccountActivityWithStreamingResponse |
| 1447 | + |
| 1448 | + return AccountActivityWithStreamingResponse(self._client.account_activity) |
| 1449 | + |
1418 | 1450 |
|
1419 | 1451 | class AsyncLithicWithStreamedResponse: |
1420 | 1452 | _client: AsyncLithic |
@@ -1588,6 +1620,12 @@ def network_programs(self) -> network_programs.AsyncNetworkProgramsWithStreaming |
1588 | 1620 |
|
1589 | 1621 | return AsyncNetworkProgramsWithStreamingResponse(self._client.network_programs) |
1590 | 1622 |
|
| 1623 | + @cached_property |
| 1624 | + def account_activity(self) -> account_activity.AsyncAccountActivityWithStreamingResponse: |
| 1625 | + from .resources.account_activity import AsyncAccountActivityWithStreamingResponse |
| 1626 | + |
| 1627 | + return AsyncAccountActivityWithStreamingResponse(self._client.account_activity) |
| 1628 | + |
1591 | 1629 |
|
1592 | 1630 | Client = Lithic |
1593 | 1631 |
|
|
0 commit comments