diff --git a/mindee/cli.py b/mindee/cli.py index 500a8839..7bfccee1 100644 --- a/mindee/cli.py +++ b/mindee/cli.py @@ -115,7 +115,7 @@ class CommandConfig(Generic[TypeInference]): help="Invoice", doc_class=product.InvoiceV4, is_sync=True, - is_async=False, + is_async=True, ), "international-id": CommandConfig( help="International ID", @@ -165,6 +165,12 @@ class CommandConfig(Generic[TypeInference]): is_sync=True, is_async=False, ), + "us-mail": CommandConfig( + help="US Mail", + doc_class=product.us.UsMailV2, + is_sync=False, + is_async=True, + ), "us-healthcare-card": CommandConfig( help="US Healthcare Card", doc_class=product.us.HealthcareCardV1,