From d68f552ba503b0a3c41159d2f26047e1c143a39c Mon Sep 17 00:00:00 2001 From: Mindee Date: Tue, 10 Dec 2024 08:58:39 +0100 Subject: [PATCH] :sparkles: add US Mail to CLI --- mindee/cli.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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,