Skip to content

Commit 16d9634

Browse files
feat(api): manual updates
1 parent 128b2f6 commit 16d9634

File tree

15 files changed

+64
-7
lines changed

15 files changed

+64
-7
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 156
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-8469aee20249c9dcb2b57796df62fd39d2c14668a6853476b6c1bab9c80a4e4c.yml
3-
openapi_spec_hash: 3339f9fd912f2eb8ba5efc3c73f5d030
4-
config_hash: 620bf845d9ccfaf0ad7e2452463bb227
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-9580d7ed7ee603cba3dd0db9bb1ee48094dfe2a90c1ca13a7f10ab8deaa73e2c.yml
3+
openapi_spec_hash: 6f707e3df699aec761f20db720fb3a32
4+
config_hash: dc221a354631e360e545ebb7435ecd35

src/lithic/resources/cards/cards.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,7 @@ def list(
416416
begin: Union[str, datetime] | NotGiven = NOT_GIVEN,
417417
end: Union[str, datetime] | NotGiven = NOT_GIVEN,
418418
ending_before: str | NotGiven = NOT_GIVEN,
419+
memo: str | NotGiven = NOT_GIVEN,
419420
page_size: int | NotGiven = NOT_GIVEN,
420421
starting_after: str | NotGiven = NOT_GIVEN,
421422
state: Literal["CLOSED", "OPEN", "PAUSED", "PENDING_ACTIVATION", "PENDING_FULFILLMENT"] | NotGiven = NOT_GIVEN,
@@ -441,6 +442,8 @@ def list(
441442
ending_before: A cursor representing an item's token before which a page of results should end.
442443
Used to retrieve the previous page of results before this item.
443444
445+
memo: Returns cards containing the specified partial or full memo text.
446+
444447
page_size: Page size (for pagination).
445448
446449
starting_after: A cursor representing an item's token after which a page of results should
@@ -470,6 +473,7 @@ def list(
470473
"begin": begin,
471474
"end": end,
472475
"ending_before": ending_before,
476+
"memo": memo,
473477
"page_size": page_size,
474478
"starting_after": starting_after,
475479
"state": state,
@@ -1403,6 +1407,7 @@ def list(
14031407
begin: Union[str, datetime] | NotGiven = NOT_GIVEN,
14041408
end: Union[str, datetime] | NotGiven = NOT_GIVEN,
14051409
ending_before: str | NotGiven = NOT_GIVEN,
1410+
memo: str | NotGiven = NOT_GIVEN,
14061411
page_size: int | NotGiven = NOT_GIVEN,
14071412
starting_after: str | NotGiven = NOT_GIVEN,
14081413
state: Literal["CLOSED", "OPEN", "PAUSED", "PENDING_ACTIVATION", "PENDING_FULFILLMENT"] | NotGiven = NOT_GIVEN,
@@ -1428,6 +1433,8 @@ def list(
14281433
ending_before: A cursor representing an item's token before which a page of results should end.
14291434
Used to retrieve the previous page of results before this item.
14301435
1436+
memo: Returns cards containing the specified partial or full memo text.
1437+
14311438
page_size: Page size (for pagination).
14321439
14331440
starting_after: A cursor representing an item's token after which a page of results should
@@ -1457,6 +1464,7 @@ def list(
14571464
"begin": begin,
14581465
"end": end,
14591466
"ending_before": ending_before,
1467+
"memo": memo,
14601468
"page_size": page_size,
14611469
"starting_after": starting_after,
14621470
"state": state,

src/lithic/resources/events/events.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ def list(
133133
"external_payment.updated",
134134
"financial_account.created",
135135
"financial_account.updated",
136+
"funding_event.created",
136137
"loan_tape.created",
137138
"loan_tape.updated",
138139
"management_operation.created",
@@ -397,6 +398,7 @@ def list(
397398
"external_payment.updated",
398399
"financial_account.created",
399400
"financial_account.updated",
401+
"funding_event.created",
400402
"loan_tape.created",
401403
"loan_tape.updated",
402404
"management_operation.created",

src/lithic/resources/events/subscriptions.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def create(
8585
"external_payment.updated",
8686
"financial_account.created",
8787
"financial_account.updated",
88+
"funding_event.created",
8889
"loan_tape.created",
8990
"loan_tape.updated",
9091
"management_operation.created",
@@ -219,6 +220,7 @@ def update(
219220
"external_payment.updated",
220221
"financial_account.created",
221222
"financial_account.updated",
223+
"funding_event.created",
222224
"loan_tape.created",
223225
"loan_tape.updated",
224226
"management_operation.created",
@@ -659,6 +661,7 @@ def send_simulated_example(
659661
"external_payment.updated",
660662
"financial_account.created",
661663
"financial_account.updated",
664+
"funding_event.created",
662665
"loan_tape.created",
663666
"loan_tape.updated",
664667
"management_operation.created",
@@ -769,6 +772,7 @@ async def create(
769772
"external_payment.updated",
770773
"financial_account.created",
771774
"financial_account.updated",
775+
"funding_event.created",
772776
"loan_tape.created",
773777
"loan_tape.updated",
774778
"management_operation.created",
@@ -903,6 +907,7 @@ async def update(
903907
"external_payment.updated",
904908
"financial_account.created",
905909
"financial_account.updated",
910+
"funding_event.created",
906911
"loan_tape.created",
907912
"loan_tape.updated",
908913
"management_operation.created",
@@ -1343,6 +1348,7 @@ async def send_simulated_example(
13431348
"external_payment.updated",
13441349
"financial_account.created",
13451350
"financial_account.updated",
1351+
"funding_event.created",
13461352
"loan_tape.created",
13471353
"loan_tape.updated",
13481354
"management_operation.created",

src/lithic/types/card_list_params.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ class CardListParams(TypedDict, total=False):
3333
Used to retrieve the previous page of results before this item.
3434
"""
3535

36+
memo: str
37+
"""Returns cards containing the specified partial or full memo text."""
38+
3639
page_size: int
3740
"""Page size (for pagination)."""
3841

src/lithic/types/event.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class Event(BaseModel):
4545
"external_payment.updated",
4646
"financial_account.created",
4747
"financial_account.updated",
48+
"funding_event.created",
4849
"loan_tape.created",
4950
"loan_tape.updated",
5051
"management_operation.created",

src/lithic/types/event_list_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ class EventListParams(TypedDict, total=False):
5757
"external_payment.updated",
5858
"financial_account.created",
5959
"financial_account.updated",
60+
"funding_event.created",
6061
"loan_tape.created",
6162
"loan_tape.updated",
6263
"management_operation.created",

src/lithic/types/event_subscription.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class EventSubscription(BaseModel):
4848
"external_payment.updated",
4949
"financial_account.created",
5050
"financial_account.updated",
51+
"funding_event.created",
5152
"loan_tape.created",
5253
"loan_tape.updated",
5354
"management_operation.created",

src/lithic/types/events/subscription_create_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class SubscriptionCreateParams(TypedDict, total=False):
4545
"external_payment.updated",
4646
"financial_account.created",
4747
"financial_account.updated",
48+
"funding_event.created",
4849
"loan_tape.created",
4950
"loan_tape.updated",
5051
"management_operation.created",

src/lithic/types/events/subscription_send_simulated_example_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class SubscriptionSendSimulatedExampleParams(TypedDict, total=False):
3434
"external_payment.updated",
3535
"financial_account.created",
3636
"financial_account.updated",
37+
"funding_event.created",
3738
"loan_tape.created",
3839
"loan_tape.updated",
3940
"management_operation.created",

0 commit comments

Comments
 (0)