Skip to content

Commit b4064b5

Browse files
♻️ add missing entries to CLI tool (#248)
1 parent 197ced9 commit b4064b5

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

mindee/cli.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class CommandConfig(Generic[TypeInference]):
6161
help="Financial Document (receipt or invoice)",
6262
doc_class=product.FinancialDocumentV1,
6363
is_sync=True,
64-
is_async=False,
64+
is_async=True,
6565
),
6666
"fr-bank-account-details": CommandConfig(
6767
help="FR Bank Account Details",
@@ -147,6 +147,12 @@ class CommandConfig(Generic[TypeInference]):
147147
is_sync=True,
148148
is_async=False,
149149
),
150+
"resume": CommandConfig(
151+
help="Resume",
152+
doc_class=product.ResumeV1,
153+
is_sync=False,
154+
is_async=True,
155+
),
150156
"us-bank-check": CommandConfig(
151157
help="US Bank Check",
152158
doc_class=product.us.BankCheckV1,
@@ -159,6 +165,12 @@ class CommandConfig(Generic[TypeInference]):
159165
is_sync=True,
160166
is_async=False,
161167
),
168+
"us-healthcare-card": CommandConfig(
169+
help="US Healthcare Card",
170+
doc_class=product.us.HealthcareCardV1,
171+
is_sync=False,
172+
is_async=True,
173+
),
162174
"us-w9": CommandConfig(
163175
help="US W9",
164176
doc_class=product.us.W9V1,

0 commit comments

Comments
 (0)