Skip to content
Closed
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,3 +1,3 @@
configured_endpoints: 239
openapi_spec_hash: d691eb2845a0108278fe81faa111d29f
openapi_spec_hash: 6e868f8c81e30884f48f8b4564b49456
config_hash: 1ca082e374ef7000e2a5971e8da740e0
2 changes: 1 addition & 1 deletion scripts/mock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/increase/types/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ class Event(BaseModel):
"physical_card_profile.updated",
"physical_check.created",
"physical_check.updated",
"plaid_processor_token.created",
"checkbook.created",
"checkbook.updated",
"program.created",
Expand Down Expand Up @@ -297,6 +298,8 @@ class Event(BaseModel):
updated.
- `physical_check.created` - Occurs whenever a Physical Check is created.
- `physical_check.updated` - Occurs whenever a Physical Check is updated.
- `plaid_processor_token.created` - Occurs whenever a Plaid Processor Token is
created.
- `checkbook.created` - Occurs whenever a Checkbook is created.
- `checkbook.updated` - Occurs whenever a Checkbook is updated.
- `program.created` - Occurs whenever a Program is created.
Expand Down
1 change: 1 addition & 0 deletions src/increase/types/event_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ class EventListParams(TypedDict, total=False):
"physical_card_profile.updated",
"physical_check.created",
"physical_check.updated",
"plaid_processor_token.created",
"checkbook.created",
"checkbook.updated",
"program.created",
Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/event_subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ class SelectedEventCategory(BaseModel):
"physical_card_profile.updated",
"physical_check.created",
"physical_check.updated",
"plaid_processor_token.created",
"checkbook.created",
"checkbook.updated",
"program.created",
Expand Down Expand Up @@ -285,6 +286,8 @@ class SelectedEventCategory(BaseModel):
updated.
- `physical_check.created` - Occurs whenever a Physical Check is created.
- `physical_check.updated` - Occurs whenever a Physical Check is updated.
- `plaid_processor_token.created` - Occurs whenever a Plaid Processor Token is
created.
- `checkbook.created` - Occurs whenever a Checkbook is created.
- `checkbook.updated` - Occurs whenever a Checkbook is updated.
- `program.created` - Occurs whenever a Program is created.
Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/event_subscription_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ class SelectedEventCategory(TypedDict, total=False):
"physical_card_profile.updated",
"physical_check.created",
"physical_check.updated",
"plaid_processor_token.created",
"checkbook.created",
"checkbook.updated",
"program.created",
Expand Down Expand Up @@ -314,6 +315,8 @@ class SelectedEventCategory(TypedDict, total=False):
updated.
- `physical_check.created` - Occurs whenever a Physical Check is created.
- `physical_check.updated` - Occurs whenever a Physical Check is updated.
- `plaid_processor_token.created` - Occurs whenever a Plaid Processor Token is
created.
- `checkbook.created` - Occurs whenever a Checkbook is created.
- `checkbook.updated` - Occurs whenever a Checkbook is updated.
- `program.created` - Occurs whenever a Program is created.
Expand Down
12 changes: 6 additions & 6 deletions src/increase/types/pending_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -1580,10 +1580,10 @@ class PendingTransaction(BaseModel):
amount: int
"""The Pending Transaction amount in the minor unit of its currency.

For dollars, for example, this is cents. This amount does not change after the
Pending Transaction is created. If a card authorization settles for a different
amount, the settled amount is available on the resulting Transaction and on the
Card Payment's `state.settled_amount`.
For dollars, for example, this is cents. For a card authorization this is the
amount still held: it decreases when the merchant reverses part of the
authorization. The amount that settled is available on the resulting Transaction
and on the Card Payment's `state.settled_amount`.
"""

completed_at: Optional[datetime] = None
Expand Down Expand Up @@ -1651,8 +1651,8 @@ class PendingTransaction(BaseModel):
- `complete` - The Pending Transaction is confirmed. An associated Transaction
exists for this object. The Pending Transaction will no longer count against
your balance and can generally be hidden from UIs, etc. The Pending
Transaction's `amount` is not updated if the associated Transaction settles
for a different amount.
Transaction's `amount` is the amount that was still held when it completed,
which can differ from the amount of the associated Transaction.
"""

type: Literal["pending_transaction"]
Expand Down
3 changes: 3 additions & 0 deletions src/increase/types/unwrap_webhook_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ class UnwrapWebhookEvent(BaseModel):
"physical_card_profile.updated",
"physical_check.created",
"physical_check.updated",
"plaid_processor_token.created",
"checkbook.created",
"checkbook.updated",
"program.created",
Expand Down Expand Up @@ -297,6 +298,8 @@ class UnwrapWebhookEvent(BaseModel):
updated.
- `physical_check.created` - Occurs whenever a Physical Check is created.
- `physical_check.updated` - Occurs whenever a Physical Check is updated.
- `plaid_processor_token.created` - Occurs whenever a Plaid Processor Token is
created.
- `checkbook.created` - Occurs whenever a Checkbook is created.
- `checkbook.updated` - Occurs whenever a Checkbook is updated.
- `program.created` - Occurs whenever a Program is created.
Expand Down
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading