candidhealth 0.9.0 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (341) hide show
  1. package/Client.d.ts +3 -0
  2. package/Client.js +7 -2
  3. package/api/resources/auth/resources/v2/client/Client.js +1 -1
  4. package/api/resources/billingNotes/resources/v2/client/Client.js +1 -1
  5. package/api/resources/commons/types/TaskAssignmentId.d.ts +8 -0
  6. package/api/resources/commons/types/TaskAssignmentId.js +10 -0
  7. package/api/resources/commons/types/TaskId.d.ts +8 -0
  8. package/api/resources/commons/types/TaskId.js +10 -0
  9. package/api/resources/commons/types/TaskNoteId.d.ts +8 -0
  10. package/api/resources/commons/types/TaskNoteId.js +10 -0
  11. package/api/resources/commons/types/UnprocessableEntityErrorMessage.d.ts +6 -0
  12. package/api/resources/commons/types/UnprocessableEntityErrorMessage.js +5 -0
  13. package/api/resources/commons/types/UserId.d.ts +8 -0
  14. package/api/resources/commons/types/UserId.js +10 -0
  15. package/api/resources/commons/types/index.d.ts +5 -0
  16. package/api/resources/commons/types/index.js +5 -0
  17. package/api/resources/eligibility/resources/v2/client/Client.js +1 -1
  18. package/api/resources/encounters/resources/v4/client/Client.js +4 -4
  19. package/api/resources/expectedNetworkStatus/resources/v1/client/Client.js +1 -1
  20. package/api/resources/expectedNetworkStatus/resources/v2/client/Client.js +2 -2
  21. package/api/resources/exports/resources/v3/client/Client.js +1 -1
  22. package/api/resources/guarantor/resources/v1/client/Client.js +3 -3
  23. package/api/resources/index.d.ts +1 -0
  24. package/api/resources/index.js +2 -1
  25. package/api/resources/insuranceAdjudications/resources/v1/client/Client.js +3 -3
  26. package/api/resources/insuranceRefunds/resources/v1/client/Client.js +3 -3
  27. package/api/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.d.ts +1 -0
  28. package/api/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.d.ts +1 -0
  29. package/api/resources/organizationProviders/resources/v3/client/Client.js +4 -4
  30. package/api/resources/organizationServiceFacilities/resources/v2/client/Client.js +5 -5
  31. package/api/resources/patientPayments/resources/v4/client/Client.js +3 -3
  32. package/api/resources/patientRefunds/resources/v1/client/Client.js +3 -3
  33. package/api/resources/payers/resources/v3/client/Client.js +2 -2
  34. package/api/resources/payers/resources/v3/types/PayerId.d.ts +8 -0
  35. package/api/resources/payers/resources/v3/types/PayerId.js +10 -0
  36. package/api/resources/payers/resources/v3/types/index.d.ts +1 -0
  37. package/api/resources/payers/resources/v3/types/index.js +1 -0
  38. package/api/resources/tasks/client/Client.d.ts +18 -0
  39. package/api/resources/tasks/client/Client.js +18 -0
  40. package/api/resources/tasks/client/index.d.ts +1 -0
  41. package/api/resources/tasks/client/index.js +2 -0
  42. package/api/resources/tasks/index.d.ts +2 -0
  43. package/api/resources/tasks/index.js +18 -0
  44. package/api/resources/tasks/resources/commons/index.d.ts +1 -0
  45. package/api/resources/tasks/resources/commons/index.js +17 -0
  46. package/api/resources/tasks/resources/commons/types/TaskCategory.d.ts +45 -0
  47. package/api/resources/tasks/resources/commons/types/TaskCategory.js +47 -0
  48. package/api/resources/tasks/resources/commons/types/TaskStatus.d.ts +13 -0
  49. package/api/resources/tasks/resources/commons/types/TaskStatus.js +15 -0
  50. package/api/resources/tasks/resources/commons/types/TaskType.d.ts +18 -0
  51. package/api/resources/tasks/resources/commons/types/TaskType.js +20 -0
  52. package/api/resources/tasks/resources/commons/types/index.d.ts +3 -0
  53. package/api/resources/tasks/resources/commons/types/index.js +19 -0
  54. package/api/resources/tasks/resources/index.d.ts +3 -0
  55. package/api/resources/tasks/resources/index.js +32 -0
  56. package/api/resources/tasks/resources/v3/client/Client.d.ts +42 -0
  57. package/api/resources/tasks/resources/v3/client/Client.js +306 -0
  58. package/api/resources/tasks/resources/v3/client/create.d.ts +22 -0
  59. package/api/resources/tasks/resources/v3/client/create.js +47 -0
  60. package/api/resources/tasks/resources/v3/client/get.d.ts +34 -0
  61. package/api/resources/tasks/resources/v3/client/get.js +69 -0
  62. package/api/resources/tasks/resources/v3/client/getActions.d.ts +22 -0
  63. package/api/resources/tasks/resources/v3/client/getActions.js +47 -0
  64. package/api/resources/tasks/resources/v3/client/getMulti.d.ts +31 -0
  65. package/api/resources/tasks/resources/v3/client/getMulti.js +58 -0
  66. package/api/resources/tasks/resources/v3/client/index.d.ts +6 -0
  67. package/api/resources/tasks/resources/v3/client/index.js +35 -0
  68. package/api/resources/tasks/resources/v3/client/requests/GetAllTasksRequest.d.ts +49 -0
  69. package/api/resources/tasks/resources/v3/client/requests/GetAllTasksRequest.js +5 -0
  70. package/api/resources/tasks/resources/v3/client/requests/index.d.ts +1 -0
  71. package/api/resources/tasks/resources/v3/client/requests/index.js +2 -0
  72. package/api/resources/tasks/resources/v3/client/update.d.ts +40 -0
  73. package/api/resources/tasks/resources/v3/client/update.js +80 -0
  74. package/api/resources/tasks/resources/v3/index.d.ts +2 -0
  75. package/api/resources/tasks/resources/v3/index.js +18 -0
  76. package/api/resources/tasks/resources/v3/types/Task.d.ts +26 -0
  77. package/api/resources/tasks/resources/v3/types/Task.js +5 -0
  78. package/api/resources/tasks/resources/v3/types/TaskAction.d.ts +8 -0
  79. package/api/resources/tasks/resources/v3/types/TaskAction.js +5 -0
  80. package/api/resources/tasks/resources/v3/types/TaskActionExecutionMethod.d.ts +10 -0
  81. package/api/resources/tasks/resources/v3/types/TaskActionExecutionMethod.js +5 -0
  82. package/api/resources/tasks/resources/v3/types/TaskActions.d.ts +7 -0
  83. package/api/resources/tasks/resources/v3/types/TaskActions.js +5 -0
  84. package/api/resources/tasks/resources/v3/types/TaskAssignment.d.ts +8 -0
  85. package/api/resources/tasks/resources/v3/types/TaskAssignment.js +5 -0
  86. package/api/resources/tasks/resources/v3/types/TaskCreateV3.d.ts +13 -0
  87. package/api/resources/tasks/resources/v3/types/TaskCreateV3.js +5 -0
  88. package/api/resources/tasks/resources/v3/types/TaskNote.d.ts +11 -0
  89. package/api/resources/tasks/resources/v3/types/TaskNote.js +5 -0
  90. package/api/resources/tasks/resources/v3/types/TaskPage.d.ts +7 -0
  91. package/api/resources/tasks/resources/v3/types/TaskPage.js +5 -0
  92. package/api/resources/tasks/resources/v3/types/TaskSortOptions.d.ts +28 -0
  93. package/api/resources/tasks/resources/v3/types/TaskSortOptions.js +30 -0
  94. package/api/resources/tasks/resources/v3/types/TaskUpdateV3.d.ts +9 -0
  95. package/api/resources/tasks/resources/v3/types/TaskUpdateV3.js +5 -0
  96. package/api/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.d.ts +7 -0
  97. package/api/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.js +5 -0
  98. package/api/resources/tasks/resources/v3/types/index.d.ts +11 -0
  99. package/api/resources/tasks/resources/v3/types/index.js +27 -0
  100. package/api/resources/writeOffs/resources/v1/client/Client.js +3 -3
  101. package/dist/Client.d.ts +3 -0
  102. package/dist/Client.js +7 -2
  103. package/dist/api/resources/auth/resources/v2/client/Client.js +1 -1
  104. package/dist/api/resources/billingNotes/resources/v2/client/Client.js +1 -1
  105. package/dist/api/resources/commons/types/TaskAssignmentId.d.ts +8 -0
  106. package/dist/api/resources/commons/types/TaskAssignmentId.js +10 -0
  107. package/dist/api/resources/commons/types/TaskId.d.ts +8 -0
  108. package/dist/api/resources/commons/types/TaskId.js +10 -0
  109. package/dist/api/resources/commons/types/TaskNoteId.d.ts +8 -0
  110. package/dist/api/resources/commons/types/TaskNoteId.js +10 -0
  111. package/dist/api/resources/commons/types/UnprocessableEntityErrorMessage.d.ts +6 -0
  112. package/dist/api/resources/commons/types/UnprocessableEntityErrorMessage.js +5 -0
  113. package/dist/api/resources/commons/types/UserId.d.ts +8 -0
  114. package/dist/api/resources/commons/types/UserId.js +10 -0
  115. package/dist/api/resources/commons/types/index.d.ts +5 -0
  116. package/dist/api/resources/commons/types/index.js +5 -0
  117. package/dist/api/resources/eligibility/resources/v2/client/Client.js +1 -1
  118. package/dist/api/resources/encounters/resources/v4/client/Client.js +4 -4
  119. package/dist/api/resources/expectedNetworkStatus/resources/v1/client/Client.js +1 -1
  120. package/dist/api/resources/expectedNetworkStatus/resources/v2/client/Client.js +2 -2
  121. package/dist/api/resources/exports/resources/v3/client/Client.js +1 -1
  122. package/dist/api/resources/guarantor/resources/v1/client/Client.js +3 -3
  123. package/dist/api/resources/index.d.ts +1 -0
  124. package/dist/api/resources/index.js +2 -1
  125. package/dist/api/resources/insuranceAdjudications/resources/v1/client/Client.js +3 -3
  126. package/dist/api/resources/insuranceRefunds/resources/v1/client/Client.js +3 -3
  127. package/dist/api/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.d.ts +1 -0
  128. package/dist/api/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.d.ts +1 -0
  129. package/dist/api/resources/organizationProviders/resources/v3/client/Client.js +4 -4
  130. package/dist/api/resources/organizationServiceFacilities/resources/v2/client/Client.js +5 -5
  131. package/dist/api/resources/patientPayments/resources/v4/client/Client.js +3 -3
  132. package/dist/api/resources/patientRefunds/resources/v1/client/Client.js +3 -3
  133. package/dist/api/resources/payers/resources/v3/client/Client.js +2 -2
  134. package/dist/api/resources/payers/resources/v3/types/PayerId.d.ts +8 -0
  135. package/dist/api/resources/payers/resources/v3/types/PayerId.js +10 -0
  136. package/dist/api/resources/payers/resources/v3/types/index.d.ts +1 -0
  137. package/dist/api/resources/payers/resources/v3/types/index.js +1 -0
  138. package/dist/api/resources/tasks/client/Client.d.ts +18 -0
  139. package/dist/api/resources/tasks/client/Client.js +18 -0
  140. package/dist/api/resources/tasks/client/index.d.ts +1 -0
  141. package/dist/api/resources/tasks/client/index.js +2 -0
  142. package/dist/api/resources/tasks/index.d.ts +2 -0
  143. package/dist/api/resources/tasks/index.js +18 -0
  144. package/dist/api/resources/tasks/resources/commons/index.d.ts +1 -0
  145. package/dist/api/resources/tasks/resources/commons/index.js +17 -0
  146. package/dist/api/resources/tasks/resources/commons/types/TaskCategory.d.ts +45 -0
  147. package/dist/api/resources/tasks/resources/commons/types/TaskCategory.js +47 -0
  148. package/dist/api/resources/tasks/resources/commons/types/TaskStatus.d.ts +13 -0
  149. package/dist/api/resources/tasks/resources/commons/types/TaskStatus.js +15 -0
  150. package/dist/api/resources/tasks/resources/commons/types/TaskType.d.ts +18 -0
  151. package/dist/api/resources/tasks/resources/commons/types/TaskType.js +20 -0
  152. package/dist/api/resources/tasks/resources/commons/types/index.d.ts +3 -0
  153. package/dist/api/resources/tasks/resources/commons/types/index.js +19 -0
  154. package/dist/api/resources/tasks/resources/index.d.ts +3 -0
  155. package/dist/api/resources/tasks/resources/index.js +32 -0
  156. package/dist/api/resources/tasks/resources/v3/client/Client.d.ts +42 -0
  157. package/dist/api/resources/tasks/resources/v3/client/Client.js +306 -0
  158. package/dist/api/resources/tasks/resources/v3/client/create.d.ts +22 -0
  159. package/dist/api/resources/tasks/resources/v3/client/create.js +47 -0
  160. package/dist/api/resources/tasks/resources/v3/client/get.d.ts +34 -0
  161. package/dist/api/resources/tasks/resources/v3/client/get.js +69 -0
  162. package/dist/api/resources/tasks/resources/v3/client/getActions.d.ts +22 -0
  163. package/dist/api/resources/tasks/resources/v3/client/getActions.js +47 -0
  164. package/dist/api/resources/tasks/resources/v3/client/getMulti.d.ts +31 -0
  165. package/dist/api/resources/tasks/resources/v3/client/getMulti.js +58 -0
  166. package/dist/api/resources/tasks/resources/v3/client/index.d.ts +6 -0
  167. package/dist/api/resources/tasks/resources/v3/client/index.js +35 -0
  168. package/dist/api/resources/tasks/resources/v3/client/requests/GetAllTasksRequest.d.ts +49 -0
  169. package/dist/api/resources/tasks/resources/v3/client/requests/GetAllTasksRequest.js +5 -0
  170. package/dist/api/resources/tasks/resources/v3/client/requests/index.d.ts +1 -0
  171. package/dist/api/resources/tasks/resources/v3/client/requests/index.js +2 -0
  172. package/dist/api/resources/tasks/resources/v3/client/update.d.ts +40 -0
  173. package/dist/api/resources/tasks/resources/v3/client/update.js +80 -0
  174. package/dist/api/resources/tasks/resources/v3/index.d.ts +2 -0
  175. package/dist/api/resources/tasks/resources/v3/index.js +18 -0
  176. package/dist/api/resources/tasks/resources/v3/types/Task.d.ts +26 -0
  177. package/dist/api/resources/tasks/resources/v3/types/Task.js +5 -0
  178. package/dist/api/resources/tasks/resources/v3/types/TaskAction.d.ts +8 -0
  179. package/dist/api/resources/tasks/resources/v3/types/TaskAction.js +5 -0
  180. package/dist/api/resources/tasks/resources/v3/types/TaskActionExecutionMethod.d.ts +10 -0
  181. package/dist/api/resources/tasks/resources/v3/types/TaskActionExecutionMethod.js +5 -0
  182. package/dist/api/resources/tasks/resources/v3/types/TaskActions.d.ts +7 -0
  183. package/dist/api/resources/tasks/resources/v3/types/TaskActions.js +5 -0
  184. package/dist/api/resources/tasks/resources/v3/types/TaskAssignment.d.ts +8 -0
  185. package/dist/api/resources/tasks/resources/v3/types/TaskAssignment.js +5 -0
  186. package/dist/api/resources/tasks/resources/v3/types/TaskCreateV3.d.ts +13 -0
  187. package/dist/api/resources/tasks/resources/v3/types/TaskCreateV3.js +5 -0
  188. package/dist/api/resources/tasks/resources/v3/types/TaskNote.d.ts +11 -0
  189. package/dist/api/resources/tasks/resources/v3/types/TaskNote.js +5 -0
  190. package/dist/api/resources/tasks/resources/v3/types/TaskPage.d.ts +7 -0
  191. package/dist/api/resources/tasks/resources/v3/types/TaskPage.js +5 -0
  192. package/dist/api/resources/tasks/resources/v3/types/TaskSortOptions.d.ts +28 -0
  193. package/dist/api/resources/tasks/resources/v3/types/TaskSortOptions.js +30 -0
  194. package/dist/api/resources/tasks/resources/v3/types/TaskUpdateV3.d.ts +9 -0
  195. package/dist/api/resources/tasks/resources/v3/types/TaskUpdateV3.js +5 -0
  196. package/dist/api/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.d.ts +7 -0
  197. package/dist/api/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.js +5 -0
  198. package/dist/api/resources/tasks/resources/v3/types/index.d.ts +11 -0
  199. package/dist/api/resources/tasks/resources/v3/types/index.js +27 -0
  200. package/dist/api/resources/writeOffs/resources/v1/client/Client.js +3 -3
  201. package/dist/serialization/resources/commons/types/TaskAssignmentId.d.ts +10 -0
  202. package/dist/serialization/resources/commons/types/TaskAssignmentId.js +35 -0
  203. package/dist/serialization/resources/commons/types/TaskId.d.ts +10 -0
  204. package/dist/serialization/resources/commons/types/TaskId.js +37 -0
  205. package/dist/serialization/resources/commons/types/TaskNoteId.d.ts +10 -0
  206. package/dist/serialization/resources/commons/types/TaskNoteId.js +35 -0
  207. package/dist/serialization/resources/commons/types/UnprocessableEntityErrorMessage.d.ts +12 -0
  208. package/dist/serialization/resources/commons/types/UnprocessableEntityErrorMessage.js +33 -0
  209. package/dist/serialization/resources/commons/types/UserId.d.ts +10 -0
  210. package/dist/serialization/resources/commons/types/UserId.js +37 -0
  211. package/dist/serialization/resources/commons/types/index.d.ts +5 -0
  212. package/dist/serialization/resources/commons/types/index.js +5 -0
  213. package/dist/serialization/resources/index.d.ts +1 -0
  214. package/dist/serialization/resources/index.js +2 -1
  215. package/dist/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.d.ts +1 -0
  216. package/dist/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.js +1 -0
  217. package/dist/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.d.ts +1 -0
  218. package/dist/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.js +1 -0
  219. package/dist/serialization/resources/payers/resources/v3/types/PayerId.d.ts +10 -0
  220. package/dist/serialization/resources/payers/resources/v3/types/PayerId.js +35 -0
  221. package/dist/serialization/resources/payers/resources/v3/types/index.d.ts +1 -0
  222. package/dist/serialization/resources/payers/resources/v3/types/index.js +1 -0
  223. package/dist/serialization/resources/tasks/index.d.ts +1 -0
  224. package/dist/serialization/resources/tasks/index.js +17 -0
  225. package/dist/serialization/resources/tasks/resources/commons/index.d.ts +1 -0
  226. package/dist/serialization/resources/tasks/resources/commons/index.js +17 -0
  227. package/dist/serialization/resources/tasks/resources/commons/types/TaskCategory.d.ts +10 -0
  228. package/dist/serialization/resources/tasks/resources/commons/types/TaskCategory.js +71 -0
  229. package/dist/serialization/resources/tasks/resources/commons/types/TaskStatus.d.ts +10 -0
  230. package/dist/serialization/resources/tasks/resources/commons/types/TaskStatus.js +39 -0
  231. package/dist/serialization/resources/tasks/resources/commons/types/TaskType.d.ts +10 -0
  232. package/dist/serialization/resources/tasks/resources/commons/types/TaskType.js +44 -0
  233. package/dist/serialization/resources/tasks/resources/commons/types/index.d.ts +3 -0
  234. package/dist/serialization/resources/tasks/resources/commons/types/index.js +19 -0
  235. package/dist/serialization/resources/tasks/resources/index.d.ts +3 -0
  236. package/dist/serialization/resources/tasks/resources/index.js +32 -0
  237. package/dist/serialization/resources/tasks/resources/v3/client/get.d.ts +18 -0
  238. package/dist/serialization/resources/tasks/resources/v3/client/get.js +51 -0
  239. package/dist/serialization/resources/tasks/resources/v3/client/getMulti.d.ts +14 -0
  240. package/dist/serialization/resources/tasks/resources/v3/client/getMulti.js +46 -0
  241. package/dist/serialization/resources/tasks/resources/v3/client/index.d.ts +3 -0
  242. package/dist/serialization/resources/tasks/resources/v3/client/index.js +29 -0
  243. package/dist/serialization/resources/tasks/resources/v3/client/update.d.ts +22 -0
  244. package/dist/serialization/resources/tasks/resources/v3/client/update.js +56 -0
  245. package/dist/serialization/resources/tasks/resources/v3/index.d.ts +2 -0
  246. package/dist/serialization/resources/tasks/resources/v3/index.js +18 -0
  247. package/dist/serialization/resources/tasks/resources/v3/types/Task.d.ts +29 -0
  248. package/dist/serialization/resources/tasks/resources/v3/types/Task.js +50 -0
  249. package/dist/serialization/resources/tasks/resources/v3/types/TaskAction.d.ts +13 -0
  250. package/dist/serialization/resources/tasks/resources/v3/types/TaskAction.js +34 -0
  251. package/dist/serialization/resources/tasks/resources/v3/types/TaskActionExecutionMethod.d.ts +13 -0
  252. package/dist/serialization/resources/tasks/resources/v3/types/TaskActionExecutionMethod.js +38 -0
  253. package/dist/serialization/resources/tasks/resources/v3/types/TaskActions.d.ts +12 -0
  254. package/dist/serialization/resources/tasks/resources/v3/types/TaskActions.js +33 -0
  255. package/dist/serialization/resources/tasks/resources/v3/types/TaskAssignment.d.ts +13 -0
  256. package/dist/serialization/resources/tasks/resources/v3/types/TaskAssignment.js +34 -0
  257. package/dist/serialization/resources/tasks/resources/v3/types/TaskCreateV3.d.ts +18 -0
  258. package/dist/serialization/resources/tasks/resources/v3/types/TaskCreateV3.js +39 -0
  259. package/dist/serialization/resources/tasks/resources/v3/types/TaskNote.d.ts +16 -0
  260. package/dist/serialization/resources/tasks/resources/v3/types/TaskNote.js +37 -0
  261. package/dist/serialization/resources/tasks/resources/v3/types/TaskPage.d.ts +12 -0
  262. package/dist/serialization/resources/tasks/resources/v3/types/TaskPage.js +35 -0
  263. package/dist/serialization/resources/tasks/resources/v3/types/TaskSortOptions.d.ts +10 -0
  264. package/dist/serialization/resources/tasks/resources/v3/types/TaskSortOptions.js +54 -0
  265. package/dist/serialization/resources/tasks/resources/v3/types/TaskUpdateV3.d.ts +14 -0
  266. package/dist/serialization/resources/tasks/resources/v3/types/TaskUpdateV3.js +35 -0
  267. package/dist/serialization/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.d.ts +12 -0
  268. package/dist/serialization/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.js +33 -0
  269. package/dist/serialization/resources/tasks/resources/v3/types/index.d.ts +11 -0
  270. package/dist/serialization/resources/tasks/resources/v3/types/index.js +27 -0
  271. package/package.json +1 -1
  272. package/serialization/resources/commons/types/TaskAssignmentId.d.ts +10 -0
  273. package/serialization/resources/commons/types/TaskAssignmentId.js +35 -0
  274. package/serialization/resources/commons/types/TaskId.d.ts +10 -0
  275. package/serialization/resources/commons/types/TaskId.js +37 -0
  276. package/serialization/resources/commons/types/TaskNoteId.d.ts +10 -0
  277. package/serialization/resources/commons/types/TaskNoteId.js +35 -0
  278. package/serialization/resources/commons/types/UnprocessableEntityErrorMessage.d.ts +12 -0
  279. package/serialization/resources/commons/types/UnprocessableEntityErrorMessage.js +33 -0
  280. package/serialization/resources/commons/types/UserId.d.ts +10 -0
  281. package/serialization/resources/commons/types/UserId.js +37 -0
  282. package/serialization/resources/commons/types/index.d.ts +5 -0
  283. package/serialization/resources/commons/types/index.js +5 -0
  284. package/serialization/resources/index.d.ts +1 -0
  285. package/serialization/resources/index.js +2 -1
  286. package/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.d.ts +1 -0
  287. package/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefund.js +1 -0
  288. package/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.d.ts +1 -0
  289. package/serialization/resources/insuranceRefunds/resources/v1/types/InsuranceRefundCreate.js +1 -0
  290. package/serialization/resources/payers/resources/v3/types/PayerId.d.ts +10 -0
  291. package/serialization/resources/payers/resources/v3/types/PayerId.js +35 -0
  292. package/serialization/resources/payers/resources/v3/types/index.d.ts +1 -0
  293. package/serialization/resources/payers/resources/v3/types/index.js +1 -0
  294. package/serialization/resources/tasks/index.d.ts +1 -0
  295. package/serialization/resources/tasks/index.js +17 -0
  296. package/serialization/resources/tasks/resources/commons/index.d.ts +1 -0
  297. package/serialization/resources/tasks/resources/commons/index.js +17 -0
  298. package/serialization/resources/tasks/resources/commons/types/TaskCategory.d.ts +10 -0
  299. package/serialization/resources/tasks/resources/commons/types/TaskCategory.js +71 -0
  300. package/serialization/resources/tasks/resources/commons/types/TaskStatus.d.ts +10 -0
  301. package/serialization/resources/tasks/resources/commons/types/TaskStatus.js +39 -0
  302. package/serialization/resources/tasks/resources/commons/types/TaskType.d.ts +10 -0
  303. package/serialization/resources/tasks/resources/commons/types/TaskType.js +44 -0
  304. package/serialization/resources/tasks/resources/commons/types/index.d.ts +3 -0
  305. package/serialization/resources/tasks/resources/commons/types/index.js +19 -0
  306. package/serialization/resources/tasks/resources/index.d.ts +3 -0
  307. package/serialization/resources/tasks/resources/index.js +32 -0
  308. package/serialization/resources/tasks/resources/v3/client/get.d.ts +18 -0
  309. package/serialization/resources/tasks/resources/v3/client/get.js +51 -0
  310. package/serialization/resources/tasks/resources/v3/client/getMulti.d.ts +14 -0
  311. package/serialization/resources/tasks/resources/v3/client/getMulti.js +46 -0
  312. package/serialization/resources/tasks/resources/v3/client/index.d.ts +3 -0
  313. package/serialization/resources/tasks/resources/v3/client/index.js +29 -0
  314. package/serialization/resources/tasks/resources/v3/client/update.d.ts +22 -0
  315. package/serialization/resources/tasks/resources/v3/client/update.js +56 -0
  316. package/serialization/resources/tasks/resources/v3/index.d.ts +2 -0
  317. package/serialization/resources/tasks/resources/v3/index.js +18 -0
  318. package/serialization/resources/tasks/resources/v3/types/Task.d.ts +29 -0
  319. package/serialization/resources/tasks/resources/v3/types/Task.js +50 -0
  320. package/serialization/resources/tasks/resources/v3/types/TaskAction.d.ts +13 -0
  321. package/serialization/resources/tasks/resources/v3/types/TaskAction.js +34 -0
  322. package/serialization/resources/tasks/resources/v3/types/TaskActionExecutionMethod.d.ts +13 -0
  323. package/serialization/resources/tasks/resources/v3/types/TaskActionExecutionMethod.js +38 -0
  324. package/serialization/resources/tasks/resources/v3/types/TaskActions.d.ts +12 -0
  325. package/serialization/resources/tasks/resources/v3/types/TaskActions.js +33 -0
  326. package/serialization/resources/tasks/resources/v3/types/TaskAssignment.d.ts +13 -0
  327. package/serialization/resources/tasks/resources/v3/types/TaskAssignment.js +34 -0
  328. package/serialization/resources/tasks/resources/v3/types/TaskCreateV3.d.ts +18 -0
  329. package/serialization/resources/tasks/resources/v3/types/TaskCreateV3.js +39 -0
  330. package/serialization/resources/tasks/resources/v3/types/TaskNote.d.ts +16 -0
  331. package/serialization/resources/tasks/resources/v3/types/TaskNote.js +37 -0
  332. package/serialization/resources/tasks/resources/v3/types/TaskPage.d.ts +12 -0
  333. package/serialization/resources/tasks/resources/v3/types/TaskPage.js +35 -0
  334. package/serialization/resources/tasks/resources/v3/types/TaskSortOptions.d.ts +10 -0
  335. package/serialization/resources/tasks/resources/v3/types/TaskSortOptions.js +54 -0
  336. package/serialization/resources/tasks/resources/v3/types/TaskUpdateV3.d.ts +14 -0
  337. package/serialization/resources/tasks/resources/v3/types/TaskUpdateV3.js +35 -0
  338. package/serialization/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.d.ts +12 -0
  339. package/serialization/resources/tasks/resources/v3/types/TaskUpdatedToDeprecatedStatusErrorType.js +33 -0
  340. package/serialization/resources/tasks/resources/v3/types/index.d.ts +11 -0
  341. package/serialization/resources/tasks/resources/v3/types/index.js +27 -0
@@ -54,7 +54,7 @@ class V1 {
54
54
  Authorization: await this._getAuthorizationHeader(),
55
55
  "X-Fern-Language": "JavaScript",
56
56
  "X-Fern-SDK-Name": "candidhealth",
57
- "X-Fern-SDK-Version": "0.9.0",
57
+ "X-Fern-SDK-Version": "0.10.0",
58
58
  },
59
59
  contentType: "application/json",
60
60
  timeoutMs: 60000,
@@ -90,7 +90,7 @@ class V1 {
90
90
  Authorization: await this._getAuthorizationHeader(),
91
91
  "X-Fern-Language": "JavaScript",
92
92
  "X-Fern-SDK-Name": "candidhealth",
93
- "X-Fern-SDK-Version": "0.9.0",
93
+ "X-Fern-SDK-Version": "0.10.0",
94
94
  },
95
95
  contentType: "application/json",
96
96
  body: await serializers.insuranceRefunds.v1.InsuranceRefundCreate.jsonOrThrow(request, {
@@ -129,7 +129,7 @@ class V1 {
129
129
  Authorization: await this._getAuthorizationHeader(),
130
130
  "X-Fern-Language": "JavaScript",
131
131
  "X-Fern-SDK-Name": "candidhealth",
132
- "X-Fern-SDK-Version": "0.9.0",
132
+ "X-Fern-SDK-Version": "0.10.0",
133
133
  },
134
134
  contentType: "application/json",
135
135
  timeoutMs: 60000,
@@ -4,6 +4,7 @@
4
4
  import * as CandidApi from "../../../../..";
5
5
  export interface InsuranceRefund {
6
6
  insuranceRefundId: CandidApi.insuranceRefunds.v1.InsuranceRefundId;
7
+ payerId: CandidApi.payers.v3.PayerId;
7
8
  amountCents: number;
8
9
  refundTimestamp?: Date;
9
10
  refundNote?: string;
@@ -3,6 +3,7 @@
3
3
  */
4
4
  import * as CandidApi from "../../../../..";
5
5
  export interface InsuranceRefundCreate {
6
+ payerId: CandidApi.payers.v3.PayerId;
6
7
  amountCents: number;
7
8
  refundTimestamp?: Date;
8
9
  refundNote?: string;
@@ -49,7 +49,7 @@ class V3 {
49
49
  Authorization: await this._getAuthorizationHeader(),
50
50
  "X-Fern-Language": "JavaScript",
51
51
  "X-Fern-SDK-Name": "candidhealth",
52
- "X-Fern-SDK-Version": "0.9.0",
52
+ "X-Fern-SDK-Version": "0.10.0",
53
53
  },
54
54
  contentType: "application/json",
55
55
  timeoutMs: 60000,
@@ -115,7 +115,7 @@ class V3 {
115
115
  Authorization: await this._getAuthorizationHeader(),
116
116
  "X-Fern-Language": "JavaScript",
117
117
  "X-Fern-SDK-Name": "candidhealth",
118
- "X-Fern-SDK-Version": "0.9.0",
118
+ "X-Fern-SDK-Version": "0.10.0",
119
119
  },
120
120
  contentType: "application/json",
121
121
  queryParameters: _queryParams,
@@ -145,7 +145,7 @@ class V3 {
145
145
  Authorization: await this._getAuthorizationHeader(),
146
146
  "X-Fern-Language": "JavaScript",
147
147
  "X-Fern-SDK-Name": "candidhealth",
148
- "X-Fern-SDK-Version": "0.9.0",
148
+ "X-Fern-SDK-Version": "0.10.0",
149
149
  },
150
150
  contentType: "application/json",
151
151
  body: await serializers.organizationProviders.v3.OrganizationProviderCreateV2.jsonOrThrow(request, {
@@ -192,7 +192,7 @@ class V3 {
192
192
  Authorization: await this._getAuthorizationHeader(),
193
193
  "X-Fern-Language": "JavaScript",
194
194
  "X-Fern-SDK-Name": "candidhealth",
195
- "X-Fern-SDK-Version": "0.9.0",
195
+ "X-Fern-SDK-Version": "0.10.0",
196
196
  },
197
197
  contentType: "application/json",
198
198
  body: await serializers.organizationProviders.v3.OrganizationProviderUpdateV2.jsonOrThrow(request, {
@@ -49,7 +49,7 @@ class V2 {
49
49
  Authorization: await this._getAuthorizationHeader(),
50
50
  "X-Fern-Language": "JavaScript",
51
51
  "X-Fern-SDK-Name": "candidhealth",
52
- "X-Fern-SDK-Version": "0.9.0",
52
+ "X-Fern-SDK-Version": "0.10.0",
53
53
  },
54
54
  contentType: "application/json",
55
55
  timeoutMs: 60000,
@@ -103,7 +103,7 @@ class V2 {
103
103
  Authorization: await this._getAuthorizationHeader(),
104
104
  "X-Fern-Language": "JavaScript",
105
105
  "X-Fern-SDK-Name": "candidhealth",
106
- "X-Fern-SDK-Version": "0.9.0",
106
+ "X-Fern-SDK-Version": "0.10.0",
107
107
  },
108
108
  contentType: "application/json",
109
109
  queryParameters: _queryParams,
@@ -133,7 +133,7 @@ class V2 {
133
133
  Authorization: await this._getAuthorizationHeader(),
134
134
  "X-Fern-Language": "JavaScript",
135
135
  "X-Fern-SDK-Name": "candidhealth",
136
- "X-Fern-SDK-Version": "0.9.0",
136
+ "X-Fern-SDK-Version": "0.10.0",
137
137
  },
138
138
  contentType: "application/json",
139
139
  body: await serializers.organizationServiceFacilities.v2.OrganizationServiceFacilityCreate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -177,7 +177,7 @@ class V2 {
177
177
  Authorization: await this._getAuthorizationHeader(),
178
178
  "X-Fern-Language": "JavaScript",
179
179
  "X-Fern-SDK-Name": "candidhealth",
180
- "X-Fern-SDK-Version": "0.9.0",
180
+ "X-Fern-SDK-Version": "0.10.0",
181
181
  },
182
182
  contentType: "application/json",
183
183
  body: await serializers.organizationServiceFacilities.v2.OrganizationServiceFacilityUpdate.jsonOrThrow(request, { unrecognizedObjectKeys: "strip" }),
@@ -222,7 +222,7 @@ class V2 {
222
222
  Authorization: await this._getAuthorizationHeader(),
223
223
  "X-Fern-Language": "JavaScript",
224
224
  "X-Fern-SDK-Name": "candidhealth",
225
- "X-Fern-SDK-Version": "0.9.0",
225
+ "X-Fern-SDK-Version": "0.10.0",
226
226
  },
227
227
  contentType: "application/json",
228
228
  timeoutMs: 60000,
@@ -53,7 +53,7 @@ class V4 {
53
53
  Authorization: await this._getAuthorizationHeader(),
54
54
  "X-Fern-Language": "JavaScript",
55
55
  "X-Fern-SDK-Name": "candidhealth",
56
- "X-Fern-SDK-Version": "0.9.0",
56
+ "X-Fern-SDK-Version": "0.10.0",
57
57
  },
58
58
  contentType: "application/json",
59
59
  timeoutMs: 60000,
@@ -89,7 +89,7 @@ class V4 {
89
89
  Authorization: await this._getAuthorizationHeader(),
90
90
  "X-Fern-Language": "JavaScript",
91
91
  "X-Fern-SDK-Name": "candidhealth",
92
- "X-Fern-SDK-Version": "0.9.0",
92
+ "X-Fern-SDK-Version": "0.10.0",
93
93
  },
94
94
  contentType: "application/json",
95
95
  body: await serializers.patientPayments.v4.PatientPaymentCreate.jsonOrThrow(request, {
@@ -126,7 +126,7 @@ class V4 {
126
126
  Authorization: await this._getAuthorizationHeader(),
127
127
  "X-Fern-Language": "JavaScript",
128
128
  "X-Fern-SDK-Name": "candidhealth",
129
- "X-Fern-SDK-Version": "0.9.0",
129
+ "X-Fern-SDK-Version": "0.10.0",
130
130
  },
131
131
  contentType: "application/json",
132
132
  timeoutMs: 60000,
@@ -53,7 +53,7 @@ class V1 {
53
53
  Authorization: await this._getAuthorizationHeader(),
54
54
  "X-Fern-Language": "JavaScript",
55
55
  "X-Fern-SDK-Name": "candidhealth",
56
- "X-Fern-SDK-Version": "0.9.0",
56
+ "X-Fern-SDK-Version": "0.10.0",
57
57
  },
58
58
  contentType: "application/json",
59
59
  timeoutMs: 60000,
@@ -89,7 +89,7 @@ class V1 {
89
89
  Authorization: await this._getAuthorizationHeader(),
90
90
  "X-Fern-Language": "JavaScript",
91
91
  "X-Fern-SDK-Name": "candidhealth",
92
- "X-Fern-SDK-Version": "0.9.0",
92
+ "X-Fern-SDK-Version": "0.10.0",
93
93
  },
94
94
  contentType: "application/json",
95
95
  body: await serializers.patientRefunds.v1.PatientRefundCreate.jsonOrThrow(request, {
@@ -126,7 +126,7 @@ class V1 {
126
126
  Authorization: await this._getAuthorizationHeader(),
127
127
  "X-Fern-Language": "JavaScript",
128
128
  "X-Fern-SDK-Name": "candidhealth",
129
- "X-Fern-SDK-Version": "0.9.0",
129
+ "X-Fern-SDK-Version": "0.10.0",
130
130
  },
131
131
  contentType: "application/json",
132
132
  timeoutMs: 60000,
@@ -49,7 +49,7 @@ class V3 {
49
49
  Authorization: await this._getAuthorizationHeader(),
50
50
  "X-Fern-Language": "JavaScript",
51
51
  "X-Fern-SDK-Name": "candidhealth",
52
- "X-Fern-SDK-Version": "0.9.0",
52
+ "X-Fern-SDK-Version": "0.10.0",
53
53
  },
54
54
  contentType: "application/json",
55
55
  timeoutMs: 60000,
@@ -89,7 +89,7 @@ class V3 {
89
89
  Authorization: await this._getAuthorizationHeader(),
90
90
  "X-Fern-Language": "JavaScript",
91
91
  "X-Fern-SDK-Name": "candidhealth",
92
- "X-Fern-SDK-Version": "0.9.0",
92
+ "X-Fern-SDK-Version": "0.10.0",
93
93
  },
94
94
  contentType: "application/json",
95
95
  queryParameters: _queryParams,
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as CandidApi from "../../../../..";
5
+ export declare type PayerId = string & {
6
+ payers_v3_PayerId: void;
7
+ };
8
+ export declare function PayerId(value: string): CandidApi.payers.v3.PayerId;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.PayerId = void 0;
7
+ function PayerId(value) {
8
+ return value;
9
+ }
10
+ exports.PayerId = PayerId;
@@ -1,3 +1,4 @@
1
1
  export * from "./PayerUuid";
2
+ export * from "./PayerId";
2
3
  export * from "./PayerPage";
3
4
  export * from "./Payer";
@@ -15,5 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./PayerUuid"), exports);
18
+ __exportStar(require("./PayerId"), exports);
18
19
  __exportStar(require("./PayerPage"), exports);
19
20
  __exportStar(require("./Payer"), exports);
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../environments";
5
+ import * as core from "../../../../core";
6
+ import { V3 } from "../resources/v3/client/Client";
7
+ export declare namespace Tasks {
8
+ interface Options {
9
+ environment?: environments.CandidApiEnvironment | string;
10
+ token?: core.Supplier<core.BearerToken | undefined>;
11
+ }
12
+ }
13
+ export declare class Tasks {
14
+ protected readonly options: Tasks.Options;
15
+ constructor(options: Tasks.Options);
16
+ protected _v3: V3 | undefined;
17
+ get v3(): V3;
18
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Tasks = void 0;
7
+ const Client_1 = require("../resources/v3/client/Client");
8
+ class Tasks {
9
+ options;
10
+ constructor(options) {
11
+ this.options = options;
12
+ }
13
+ _v3;
14
+ get v3() {
15
+ return (this._v3 ??= new Client_1.V3(this.options));
16
+ }
17
+ }
18
+ exports.Tasks = Tasks;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./resources";
2
+ export * from "./client";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./resources"), exports);
18
+ __exportStar(require("./client"), exports);
@@ -0,0 +1 @@
1
+ export * from "./types";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./types"), exports);
@@ -0,0 +1,45 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export declare type TaskCategory = "other" | "provider_credentialing" | "authorization_required" | "inactive_coverage" | "unknown_eligibility_or_patient_not_found" | "incorrect_member_id" | "documentation_addendum_request" | "coordination_of_benefits" | "missing_or_incorrect_gender" | "incorrect_date_of_birth" | "incorrect_payer" | "incorrect_name" | "invalid_diagnosis_code" | "non_covered_diagnosis_codes" | "information_requested_from_patient" | "incorrect_rendering_provider_info" | "missing_or_incorrect_modifier" | "coding_frequency_error" | "incorrect_patient_address" | "multiple_em_claims" | "missing_or_incorrect_charge_amount" | "medical_records_request" | "provider_enrollment_or_contracting" | "missing_or_incorrect_group_number" | "missing_diagnosis_codes" | "missing_patient_authorization" | "incorrect_billing_provider_info" | "incorrect_procedure_code" | "incorrect_quantity" | "incorrect_place_of_service_code" | "incorrect_service_facility_info" | "incorrect_date_of_service" | "missing_or_incorrect_ndc" | "patient_collections" | "submit_to_secondary" | "transient_server_error" | "missing_remittance_enrollment" | "missing_claims_enrollment" | "held_by_customer";
5
+ export declare const TaskCategory: {
6
+ readonly Other: "other";
7
+ readonly ProviderCredentialing: "provider_credentialing";
8
+ readonly AuthorizationRequired: "authorization_required";
9
+ readonly InactiveCoverage: "inactive_coverage";
10
+ readonly UnknownEligibilityOrPatientNotFound: "unknown_eligibility_or_patient_not_found";
11
+ readonly IncorrectMemberId: "incorrect_member_id";
12
+ readonly DocumentationAddendumRequest: "documentation_addendum_request";
13
+ readonly CoordinationOfBenefits: "coordination_of_benefits";
14
+ readonly MissingOrIncorrectGender: "missing_or_incorrect_gender";
15
+ readonly IncorrectDateOfBirth: "incorrect_date_of_birth";
16
+ readonly IncorrectPayer: "incorrect_payer";
17
+ readonly IncorrectName: "incorrect_name";
18
+ readonly InvalidDiagnosisCode: "invalid_diagnosis_code";
19
+ readonly NonCoveredDiagnosisCodes: "non_covered_diagnosis_codes";
20
+ readonly InformationRequestedFromPatient: "information_requested_from_patient";
21
+ readonly IncorrectRenderingProviderInfo: "incorrect_rendering_provider_info";
22
+ readonly MissingOrIncorrectModifier: "missing_or_incorrect_modifier";
23
+ readonly CodingFrequencyError: "coding_frequency_error";
24
+ readonly IncorrectPatientAddress: "incorrect_patient_address";
25
+ readonly MultipleEmClaims: "multiple_em_claims";
26
+ readonly MissingOrIncorrectChargeAmount: "missing_or_incorrect_charge_amount";
27
+ readonly MedicalRecordsRequest: "medical_records_request";
28
+ readonly ProviderEnrollmentOrContracting: "provider_enrollment_or_contracting";
29
+ readonly MissingOrIncorrectGroupNumber: "missing_or_incorrect_group_number";
30
+ readonly MissingDiagnosisCodes: "missing_diagnosis_codes";
31
+ readonly MissingPatientAuthorization: "missing_patient_authorization";
32
+ readonly IncorrectBillingProviderInfo: "incorrect_billing_provider_info";
33
+ readonly IncorrectProcedureCode: "incorrect_procedure_code";
34
+ readonly IncorrectQuantity: "incorrect_quantity";
35
+ readonly IncorrectPlaceOfServiceCode: "incorrect_place_of_service_code";
36
+ readonly IncorrectServiceFacilityInfo: "incorrect_service_facility_info";
37
+ readonly IncorrectDateOfService: "incorrect_date_of_service";
38
+ readonly MissingOrIncorrectNdc: "missing_or_incorrect_ndc";
39
+ readonly PatientCollections: "patient_collections";
40
+ readonly SubmitToSecondary: "submit_to_secondary";
41
+ readonly TransientServerError: "transient_server_error";
42
+ readonly MissingRemittanceEnrollment: "missing_remittance_enrollment";
43
+ readonly MissingClaimsEnrollment: "missing_claims_enrollment";
44
+ readonly HeldByCustomer: "held_by_customer";
45
+ };
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.TaskCategory = void 0;
7
+ exports.TaskCategory = {
8
+ Other: "other",
9
+ ProviderCredentialing: "provider_credentialing",
10
+ AuthorizationRequired: "authorization_required",
11
+ InactiveCoverage: "inactive_coverage",
12
+ UnknownEligibilityOrPatientNotFound: "unknown_eligibility_or_patient_not_found",
13
+ IncorrectMemberId: "incorrect_member_id",
14
+ DocumentationAddendumRequest: "documentation_addendum_request",
15
+ CoordinationOfBenefits: "coordination_of_benefits",
16
+ MissingOrIncorrectGender: "missing_or_incorrect_gender",
17
+ IncorrectDateOfBirth: "incorrect_date_of_birth",
18
+ IncorrectPayer: "incorrect_payer",
19
+ IncorrectName: "incorrect_name",
20
+ InvalidDiagnosisCode: "invalid_diagnosis_code",
21
+ NonCoveredDiagnosisCodes: "non_covered_diagnosis_codes",
22
+ InformationRequestedFromPatient: "information_requested_from_patient",
23
+ IncorrectRenderingProviderInfo: "incorrect_rendering_provider_info",
24
+ MissingOrIncorrectModifier: "missing_or_incorrect_modifier",
25
+ CodingFrequencyError: "coding_frequency_error",
26
+ IncorrectPatientAddress: "incorrect_patient_address",
27
+ MultipleEmClaims: "multiple_em_claims",
28
+ MissingOrIncorrectChargeAmount: "missing_or_incorrect_charge_amount",
29
+ MedicalRecordsRequest: "medical_records_request",
30
+ ProviderEnrollmentOrContracting: "provider_enrollment_or_contracting",
31
+ MissingOrIncorrectGroupNumber: "missing_or_incorrect_group_number",
32
+ MissingDiagnosisCodes: "missing_diagnosis_codes",
33
+ MissingPatientAuthorization: "missing_patient_authorization",
34
+ IncorrectBillingProviderInfo: "incorrect_billing_provider_info",
35
+ IncorrectProcedureCode: "incorrect_procedure_code",
36
+ IncorrectQuantity: "incorrect_quantity",
37
+ IncorrectPlaceOfServiceCode: "incorrect_place_of_service_code",
38
+ IncorrectServiceFacilityInfo: "incorrect_service_facility_info",
39
+ IncorrectDateOfService: "incorrect_date_of_service",
40
+ MissingOrIncorrectNdc: "missing_or_incorrect_ndc",
41
+ PatientCollections: "patient_collections",
42
+ SubmitToSecondary: "submit_to_secondary",
43
+ TransientServerError: "transient_server_error",
44
+ MissingRemittanceEnrollment: "missing_remittance_enrollment",
45
+ MissingClaimsEnrollment: "missing_claims_enrollment",
46
+ HeldByCustomer: "held_by_customer",
47
+ };
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export declare type TaskStatus = "finished" | "addressed_by_provider_group" | "sent_to_provider_group" | "open" | "blocked" | "waiting_for_review" | "in_progress";
5
+ export declare const TaskStatus: {
6
+ readonly Finished: "finished";
7
+ readonly AddressedByProviderGroup: "addressed_by_provider_group";
8
+ readonly SentToProviderGroup: "sent_to_provider_group";
9
+ readonly OpenTask: "open";
10
+ readonly Blocked: "blocked";
11
+ readonly WaitingForReview: "waiting_for_review";
12
+ readonly InProgress: "in_progress";
13
+ };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.TaskStatus = void 0;
7
+ exports.TaskStatus = {
8
+ Finished: "finished",
9
+ AddressedByProviderGroup: "addressed_by_provider_group",
10
+ SentToProviderGroup: "sent_to_provider_group",
11
+ OpenTask: "open",
12
+ Blocked: "blocked",
13
+ WaitingForReview: "waiting_for_review",
14
+ InProgress: "in_progress",
15
+ };
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export declare type TaskType = "CUSTOMER_DATA_REQUEST" | "CLAIM_SUBMISSION_RUN_VALIDATIONS_FAILURE" | "CLAIM_SUBMISSION_SUBMIT_CLAIM_FAILURE" | "CLAIM_SUBMISSION_TRANSFORM_FAILURE" | "CODE_CLAIM" | "CODE_CLAIM_REVIEW" | "ELIGIBILITY" | "CLAIM_FOLLOW_UP" | "REJECTION_RESOLUTION" | "PAYER_CONFIGURATION_ERROR" | "DENIAL_RESOLUTION" | "MISSING_ENROLLMENT";
5
+ export declare const TaskType: {
6
+ readonly CustomerDataRequest: "CUSTOMER_DATA_REQUEST";
7
+ readonly ClaimSubmissionRunValidationsFailure: "CLAIM_SUBMISSION_RUN_VALIDATIONS_FAILURE";
8
+ readonly ClaimSubmissionSubmitClaimFailure: "CLAIM_SUBMISSION_SUBMIT_CLAIM_FAILURE";
9
+ readonly ClaimSubmissionTransformFailure: "CLAIM_SUBMISSION_TRANSFORM_FAILURE";
10
+ readonly CodeClaim: "CODE_CLAIM";
11
+ readonly CodeClaimReview: "CODE_CLAIM_REVIEW";
12
+ readonly Eligibility: "ELIGIBILITY";
13
+ readonly ClaimFollowUp: "CLAIM_FOLLOW_UP";
14
+ readonly RejectionResolution: "REJECTION_RESOLUTION";
15
+ readonly PayerConfigurationError: "PAYER_CONFIGURATION_ERROR";
16
+ readonly DenialResolution: "DENIAL_RESOLUTION";
17
+ readonly MissingEnrollment: "MISSING_ENROLLMENT";
18
+ };
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.TaskType = void 0;
7
+ exports.TaskType = {
8
+ CustomerDataRequest: "CUSTOMER_DATA_REQUEST",
9
+ ClaimSubmissionRunValidationsFailure: "CLAIM_SUBMISSION_RUN_VALIDATIONS_FAILURE",
10
+ ClaimSubmissionSubmitClaimFailure: "CLAIM_SUBMISSION_SUBMIT_CLAIM_FAILURE",
11
+ ClaimSubmissionTransformFailure: "CLAIM_SUBMISSION_TRANSFORM_FAILURE",
12
+ CodeClaim: "CODE_CLAIM",
13
+ CodeClaimReview: "CODE_CLAIM_REVIEW",
14
+ Eligibility: "ELIGIBILITY",
15
+ ClaimFollowUp: "CLAIM_FOLLOW_UP",
16
+ RejectionResolution: "REJECTION_RESOLUTION",
17
+ PayerConfigurationError: "PAYER_CONFIGURATION_ERROR",
18
+ DenialResolution: "DENIAL_RESOLUTION",
19
+ MissingEnrollment: "MISSING_ENROLLMENT",
20
+ };
@@ -0,0 +1,3 @@
1
+ export * from "./TaskStatus";
2
+ export * from "./TaskType";
3
+ export * from "./TaskCategory";
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./TaskStatus"), exports);
18
+ __exportStar(require("./TaskType"), exports);
19
+ __exportStar(require("./TaskCategory"), exports);
@@ -0,0 +1,3 @@
1
+ export * as v3 from "./v3";
2
+ export * as commons from "./commons";
3
+ export * from "./commons/types";
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
26
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.commons = exports.v3 = void 0;
30
+ exports.v3 = __importStar(require("./v3"));
31
+ exports.commons = __importStar(require("./commons"));
32
+ __exportStar(require("./commons/types"), exports);
@@ -0,0 +1,42 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../../../environments";
5
+ import * as core from "../../../../../../core";
6
+ import * as CandidApi from "../../../../..";
7
+ export declare namespace V3 {
8
+ interface Options {
9
+ environment?: environments.CandidApiEnvironment | string;
10
+ token?: core.Supplier<core.BearerToken | undefined>;
11
+ }
12
+ }
13
+ export declare class V3 {
14
+ protected readonly options: V3.Options;
15
+ constructor(options: V3.Options);
16
+ /**
17
+ * **This endpoint is incubating.**
18
+ *
19
+ */
20
+ getActions(taskId: CandidApi.TaskId): Promise<core.APIResponse<CandidApi.tasks.v3.TaskActions, CandidApi.tasks.v3.getActions.Error>>;
21
+ /**
22
+ * **This endpoint is incubating.**
23
+ *
24
+ */
25
+ getMulti(request?: CandidApi.tasks.v3.GetAllTasksRequest): Promise<core.APIResponse<CandidApi.tasks.v3.TaskPage, CandidApi.tasks.v3.getMulti.Error>>;
26
+ /**
27
+ * **This endpoint is incubating.**
28
+ *
29
+ */
30
+ get(taskId: CandidApi.TaskId): Promise<core.APIResponse<CandidApi.tasks.v3.Task, CandidApi.tasks.v3.get.Error>>;
31
+ /**
32
+ * **This endpoint is incubating.**
33
+ *
34
+ */
35
+ create(request: CandidApi.tasks.v3.TaskCreateV3): Promise<core.APIResponse<CandidApi.tasks.v3.Task, CandidApi.tasks.v3.create.Error>>;
36
+ /**
37
+ * **This endpoint is incubating.**
38
+ *
39
+ */
40
+ update(taskId: CandidApi.TaskId, request: CandidApi.tasks.v3.TaskUpdateV3): Promise<core.APIResponse<CandidApi.tasks.v3.Task, CandidApi.tasks.v3.update.Error>>;
41
+ protected _getAuthorizationHeader(): Promise<string | undefined>;
42
+ }