Skip to content

Commit 6cb036b

Browse files
authored
✨ add US Mail to CLI (#290)
1 parent 6f3afdb commit 6cb036b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

mindee/cli.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class CommandConfig(Generic[TypeInference]):
115115
help="Invoice",
116116
doc_class=product.InvoiceV4,
117117
is_sync=True,
118-
is_async=False,
118+
is_async=True,
119119
),
120120
"international-id": CommandConfig(
121121
help="International ID",
@@ -165,6 +165,12 @@ class CommandConfig(Generic[TypeInference]):
165165
is_sync=True,
166166
is_async=False,
167167
),
168+
"us-mail": CommandConfig(
169+
help="US Mail",
170+
doc_class=product.us.UsMailV2,
171+
is_sync=False,
172+
is_async=True,
173+
),
168174
"us-healthcare-card": CommandConfig(
169175
help="US Healthcare Card",
170176
doc_class=product.us.HealthcareCardV1,

0 commit comments

Comments
 (0)