File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class CommandConfig(Generic[TypeInference]):
61
61
help = "Financial Document (receipt or invoice)" ,
62
62
doc_class = product .FinancialDocumentV1 ,
63
63
is_sync = True ,
64
- is_async = False ,
64
+ is_async = True ,
65
65
),
66
66
"fr-bank-account-details" : CommandConfig (
67
67
help = "FR Bank Account Details" ,
@@ -147,6 +147,12 @@ class CommandConfig(Generic[TypeInference]):
147
147
is_sync = True ,
148
148
is_async = False ,
149
149
),
150
+ "resume" : CommandConfig (
151
+ help = "Resume" ,
152
+ doc_class = product .ResumeV1 ,
153
+ is_sync = False ,
154
+ is_async = True ,
155
+ ),
150
156
"us-bank-check" : CommandConfig (
151
157
help = "US Bank Check" ,
152
158
doc_class = product .us .BankCheckV1 ,
@@ -159,6 +165,12 @@ class CommandConfig(Generic[TypeInference]):
159
165
is_sync = True ,
160
166
is_async = False ,
161
167
),
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
+ ),
162
174
"us-w9" : CommandConfig (
163
175
help = "US W9" ,
164
176
doc_class = product .us .W9V1 ,
You can’t perform that action at this time.
0 commit comments