@@ -113,7 +113,7 @@ def with_streaming_response(self) -> CardsWithStreamingResponse:
113113 def create (
114114 self ,
115115 * ,
116- type : Literal ["MERCHANT_LOCKED" , "PHYSICAL" , "SINGLE_USE" , "VIRTUAL" ],
116+ type : Literal ["MERCHANT_LOCKED" , "PHYSICAL" , "SINGLE_USE" , "VIRTUAL" , "UNLOCKED" , "DIGITAL_WALLET" ],
117117 account_token : str | NotGiven = NOT_GIVEN ,
118118 card_program_token : str | NotGiven = NOT_GIVEN ,
119119 carrier : Carrier | NotGiven = NOT_GIVEN ,
@@ -157,6 +157,10 @@ def create(
157157 - `SINGLE_USE` - Card is closed upon first successful authorization.
158158 - `MERCHANT_LOCKED` - _[Deprecated]_ Card is locked to the first merchant that
159159 successfully authorizes the card.
160+ - `UNLOCKED` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please use
161+ VIRTUAL instead.
162+ - `DIGITAL_WALLET` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please
163+ use VIRTUAL instead.
160164
161165 account_token: Globally unique identifier for the account that the card will be associated
162166 with. Required for programs enrolling users using the
@@ -1006,7 +1010,7 @@ def with_streaming_response(self) -> AsyncCardsWithStreamingResponse:
10061010 async def create (
10071011 self ,
10081012 * ,
1009- type : Literal ["MERCHANT_LOCKED" , "PHYSICAL" , "SINGLE_USE" , "VIRTUAL" ],
1013+ type : Literal ["MERCHANT_LOCKED" , "PHYSICAL" , "SINGLE_USE" , "VIRTUAL" , "UNLOCKED" , "DIGITAL_WALLET" ],
10101014 account_token : str | NotGiven = NOT_GIVEN ,
10111015 card_program_token : str | NotGiven = NOT_GIVEN ,
10121016 carrier : Carrier | NotGiven = NOT_GIVEN ,
@@ -1050,6 +1054,10 @@ async def create(
10501054 - `SINGLE_USE` - Card is closed upon first successful authorization.
10511055 - `MERCHANT_LOCKED` - _[Deprecated]_ Card is locked to the first merchant that
10521056 successfully authorizes the card.
1057+ - `UNLOCKED` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please use
1058+ VIRTUAL instead.
1059+ - `DIGITAL_WALLET` - _[Deprecated]_ Similar behavior to VIRTUAL cards, please
1060+ use VIRTUAL instead.
10531061
10541062 account_token: Globally unique identifier for the account that the card will be associated
10551063 with. Required for programs enrolling users using the
0 commit comments