Skip to content

Commit

Permalink
✨ add US Mail to CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindee committed Dec 10, 2024
1 parent 6f3afdb commit d68f552
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion mindee/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit d68f552

Please sign in to comment.