Skip to content

Commit 43846da

Browse files
docs: Remove deprecated tag from MERCHANT_LOCKED card type
1 parent 37689a1 commit 43846da

5 files changed

Lines changed: 13 additions & 14 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 175
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-14b3b5bca66c1e0935b314e469476f91193413c29a47ad4a0affa19beb14c7d3.yml
3-
openapi_spec_hash: afba11ad031397d6e3873485b5b42473
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-a6c56df3bc156ac1e6ee5d635c6cd964f0d60836fe17a97deec8af8429bd339c.yml
3+
openapi_spec_hash: c563acd10d96ddabe6c9643b592bd509
44
config_hash: 31d71922d7838f34ae0875c9b8026d99

src/lithic/resources/cards/cards.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ def create(
154154
Reach out at [lithic.com/contact](https://lithic.com/contact) for more
155155
information.
156156
- `SINGLE_USE` - Card is closed upon first successful authorization.
157-
- `MERCHANT_LOCKED` - _[Deprecated]_ Card is locked to the first merchant that
158-
successfully authorizes the card.
157+
- `MERCHANT_LOCKED` - Card is locked to the first merchant that successfully
158+
authorizes the card.
159159
- `UNLOCKED` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please use
160160
VIRTUAL instead.
161161
- `DIGITAL_WALLET` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please
@@ -1336,8 +1336,8 @@ async def create(
13361336
Reach out at [lithic.com/contact](https://lithic.com/contact) for more
13371337
information.
13381338
- `SINGLE_USE` - Card is closed upon first successful authorization.
1339-
- `MERCHANT_LOCKED` - _[Deprecated]_ Card is locked to the first merchant that
1340-
successfully authorizes the card.
1339+
- `MERCHANT_LOCKED` - Card is locked to the first merchant that successfully
1340+
authorizes the card.
13411341
- `UNLOCKED` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please use
13421342
VIRTUAL instead.
13431343
- `DIGITAL_WALLET` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please

src/lithic/types/card_create_params.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class CardCreateParams(TypedDict, total=False):
2323
Reach out at [lithic.com/contact](https://lithic.com/contact) for more
2424
information.
2525
- `SINGLE_USE` - Card is closed upon first successful authorization.
26-
- `MERCHANT_LOCKED` - _[Deprecated]_ Card is locked to the first merchant that
27-
successfully authorizes the card.
26+
- `MERCHANT_LOCKED` - Card is locked to the first merchant that successfully
27+
authorizes the card.
2828
- `UNLOCKED` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please use
2929
VIRTUAL instead.
3030
- `DIGITAL_WALLET` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please

src/lithic/types/card_updated_webhook_event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class CardUpdatedWebhookEvent(BaseModel):
11-
token: str
11+
card_token: str
1212
"""The token of the card that was updated."""
1313

1414
event_type: Literal["card.updated"]

src/lithic/types/non_pci_card.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,10 @@ class NonPCICard(BaseModel):
125125
wallet-enabled). _ `PHYSICAL` - Manufactured and sent to the cardholder. We
126126
offer white label branding, credit, ATM, PIN debit, chip/EMV, NFC and magstripe
127127
functionality. _ `SINGLE_USE` - Card is closed upon first successful
128-
authorization. _ `MERCHANT_LOCKED` - _[Deprecated]_ Card is locked to the first
129-
merchant that successfully authorizes the card. _ `UNLOCKED` - _[Deprecated]_
130-
Similar behavior to VIRTUAL cards, please use VIRTUAL instead. _
131-
`DIGITAL_WALLET` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please use
132-
VIRTUAL instead.
128+
authorization. _ `MERCHANT_LOCKED` - Card is locked to the first merchant that
129+
successfully authorizes the card. _ `UNLOCKED` - _[Deprecated]_ Similar behavior
130+
to VIRTUAL cards, please use VIRTUAL instead. _ `DIGITAL_WALLET` -
131+
_[Deprecated]_ Similar behavior to VIRTUAL cards, please use VIRTUAL instead.
133132
"""
134133

135134
auth_rule_tokens: Optional[List[str]] = None

0 commit comments

Comments
 (0)