Skip to content

Commit 280030d

Browse files
fix: resolve CI errors from api-sync
1 parent 7fd2e6c commit 280030d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/blindpay/resources/quotes/quotes.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
CurrencyType,
1010
Network,
1111
StablecoinToken,
12+
TransactionDocumentType,
1213
)
1314

1415

@@ -35,6 +36,9 @@ class CreateQuoteInput(TypedDict):
3536
cover_fees: Optional[bool]
3637
description: Optional[str]
3738
partner_fee_id: Optional[str]
39+
transaction_document_file: Optional[str]
40+
transaction_document_id: Optional[str]
41+
transaction_document_type: Optional[TransactionDocumentType]
3842

3943

4044
class CreateQuoteResponse(TypedDict):
@@ -54,7 +58,7 @@ class CreateQuoteResponse(TypedDict):
5458

5559
class GetFxRateInput(TypedDict):
5660
currency_type: CurrencyType
57-
from_currency: StablecoinToken # 'from' is reserved in Python
61+
from_currency: Currency # 'from' is reserved in Python
5862
to: Currency
5963
request_amount: int
6064

0 commit comments

Comments
 (0)