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
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as CandidApi from "../../../../..";
5
+ export interface TaskActions {
6
+ actions: CandidApi.tasks.v3.TaskAction[];
7
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 interface TaskAssignment {
6
+ taskAssignmentId: CandidApi.TaskAssignmentId;
7
+ assigneeUserId?: CandidApi.UserId;
8
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as CandidApi from "../../../../..";
5
+ export interface TaskCreateV3 {
6
+ encounterId: CandidApi.EncounterId;
7
+ taskType: CandidApi.tasks.TaskType;
8
+ description: string;
9
+ blocksClaimSubmission?: boolean;
10
+ assigneeUserId?: CandidApi.UserId;
11
+ category?: CandidApi.tasks.TaskCategory;
12
+ workQueueId: CandidApi.WorkQueueId;
13
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as CandidApi from "../../../../..";
5
+ export interface TaskNote {
6
+ taskNoteId: CandidApi.TaskNoteId;
7
+ text: string;
8
+ createdAt: Date;
9
+ authorName: string;
10
+ authorOrganizationName: string;
11
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as CandidApi from "../../../../..";
5
+ export interface TaskPage extends CandidApi.ResourcePage {
6
+ items: CandidApi.tasks.v3.Task[];
7
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,28 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export declare type TaskSortOptions = "updated_at:asc" | "updated_at:desc" | "patient_name:asc" | "patient_name:desc" | "patient_external_id:asc" | "patient_external_id:desc" | "payer_name:asc" | "payer_name:desc" | "payer_id:asc" | "payer_id:desc" | "status:asc" | "status:desc" | "task_type:asc" | "task_type:desc" | "category:asc" | "category:desc" | "agg_updated_at:asc" | "agg_updated_at:desc" | "date_of_service:asc" | "date_of_service:desc" | "blocks_claim_submission:asc" | "blocks_claim_submission:desc";
5
+ export declare const TaskSortOptions: {
6
+ readonly UpdatedAtAsc: "updated_at:asc";
7
+ readonly UpdatedAtDesc: "updated_at:desc";
8
+ readonly PatientNameAsc: "patient_name:asc";
9
+ readonly PatientNameDesc: "patient_name:desc";
10
+ readonly PatientExternalIdAsc: "patient_external_id:asc";
11
+ readonly PatientExternalIdDesc: "patient_external_id:desc";
12
+ readonly PayerNameAsc: "payer_name:asc";
13
+ readonly PayerNameDesc: "payer_name:desc";
14
+ readonly PayerIdAsc: "payer_id:asc";
15
+ readonly PayerIdDesc: "payer_id:desc";
16
+ readonly StatusAsc: "status:asc";
17
+ readonly StatusDesc: "status:desc";
18
+ readonly TaskTypeAsc: "task_type:asc";
19
+ readonly TaskTypeDesc: "task_type:desc";
20
+ readonly CategoryAsc: "category:asc";
21
+ readonly CategoryDesc: "category:desc";
22
+ readonly AggUpdatedAtAsc: "agg_updated_at:asc";
23
+ readonly AggUpdatedAtDesc: "agg_updated_at:desc";
24
+ readonly DateOfServiceAsc: "date_of_service:asc";
25
+ readonly DateOfServiceDesc: "date_of_service:desc";
26
+ readonly BlocksClaimSubmissionAsc: "blocks_claim_submission:asc";
27
+ readonly BlocksClaimSubmissionDesc: "blocks_claim_submission:desc";
28
+ };
@@ -0,0 +1,30 @@
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.TaskSortOptions = void 0;
7
+ exports.TaskSortOptions = {
8
+ UpdatedAtAsc: "updated_at:asc",
9
+ UpdatedAtDesc: "updated_at:desc",
10
+ PatientNameAsc: "patient_name:asc",
11
+ PatientNameDesc: "patient_name:desc",
12
+ PatientExternalIdAsc: "patient_external_id:asc",
13
+ PatientExternalIdDesc: "patient_external_id:desc",
14
+ PayerNameAsc: "payer_name:asc",
15
+ PayerNameDesc: "payer_name:desc",
16
+ PayerIdAsc: "payer_id:asc",
17
+ PayerIdDesc: "payer_id:desc",
18
+ StatusAsc: "status:asc",
19
+ StatusDesc: "status:desc",
20
+ TaskTypeAsc: "task_type:asc",
21
+ TaskTypeDesc: "task_type:desc",
22
+ CategoryAsc: "category:asc",
23
+ CategoryDesc: "category:desc",
24
+ AggUpdatedAtAsc: "agg_updated_at:asc",
25
+ AggUpdatedAtDesc: "agg_updated_at:desc",
26
+ DateOfServiceAsc: "date_of_service:asc",
27
+ DateOfServiceDesc: "date_of_service:desc",
28
+ BlocksClaimSubmissionAsc: "blocks_claim_submission:asc",
29
+ BlocksClaimSubmissionDesc: "blocks_claim_submission:desc",
30
+ };
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as CandidApi from "../../../../..";
5
+ export interface TaskUpdateV3 {
6
+ status?: CandidApi.tasks.TaskStatus;
7
+ assigneeUserId?: CandidApi.UserId;
8
+ blocksClaimSubmission?: boolean;
9
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as CandidApi from "../../../../..";
5
+ export interface TaskUpdatedToDeprecatedStatusErrorType {
6
+ deprecatedStatus?: CandidApi.tasks.TaskStatus;
7
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ export * from "./Task";
2
+ export * from "./TaskNote";
3
+ export * from "./TaskAssignment";
4
+ export * from "./TaskSortOptions";
5
+ export * from "./TaskActionExecutionMethod";
6
+ export * from "./TaskActions";
7
+ export * from "./TaskAction";
8
+ export * from "./TaskCreateV3";
9
+ export * from "./TaskUpdateV3";
10
+ export * from "./TaskPage";
11
+ export * from "./TaskUpdatedToDeprecatedStatusErrorType";
@@ -0,0 +1,27 @@
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("./Task"), exports);
18
+ __exportStar(require("./TaskNote"), exports);
19
+ __exportStar(require("./TaskAssignment"), exports);
20
+ __exportStar(require("./TaskSortOptions"), exports);
21
+ __exportStar(require("./TaskActionExecutionMethod"), exports);
22
+ __exportStar(require("./TaskActions"), exports);
23
+ __exportStar(require("./TaskAction"), exports);
24
+ __exportStar(require("./TaskCreateV3"), exports);
25
+ __exportStar(require("./TaskUpdateV3"), exports);
26
+ __exportStar(require("./TaskPage"), exports);
27
+ __exportStar(require("./TaskUpdatedToDeprecatedStatusErrorType"), exports);
@@ -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.writeOffs.v1.CreateWriteOffsRequest.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,
package/dist/Client.d.ts CHANGED
@@ -17,6 +17,7 @@ import { OrganizationProviders } from "./api/resources/organizationProviders/cli
17
17
  import { PatientPayments } from "./api/resources/patientPayments/client/Client";
18
18
  import { PatientRefunds } from "./api/resources/patientRefunds/client/Client";
19
19
  import { Payers } from "./api/resources/payers/client/Client";
20
+ import { Tasks } from "./api/resources/tasks/client/Client";
20
21
  import { WriteOffs } from "./api/resources/writeOffs/client/Client";
21
22
  export declare namespace CandidApiClient {
22
23
  interface Options {
@@ -55,6 +56,8 @@ export declare class CandidApiClient {
55
56
  get patientRefunds(): PatientRefunds;
56
57
  protected _payers: Payers | undefined;
57
58
  get payers(): Payers;
59
+ protected _tasks: Tasks | undefined;
60
+ get tasks(): Tasks;
58
61
  protected _writeOffs: WriteOffs | undefined;
59
62
  get writeOffs(): WriteOffs;
60
63
  }
package/dist/Client.js CHANGED
@@ -18,7 +18,8 @@ const Client_11 = require("./api/resources/organizationProviders/client/Client")
18
18
  const Client_12 = require("./api/resources/patientPayments/client/Client");
19
19
  const Client_13 = require("./api/resources/patientRefunds/client/Client");
20
20
  const Client_14 = require("./api/resources/payers/client/Client");
21
- const Client_15 = require("./api/resources/writeOffs/client/Client");
21
+ const Client_15 = require("./api/resources/tasks/client/Client");
22
+ const Client_16 = require("./api/resources/writeOffs/client/Client");
22
23
  class CandidApiClient {
23
24
  options;
24
25
  constructor(options) {
@@ -80,9 +81,13 @@ class CandidApiClient {
80
81
  get payers() {
81
82
  return (this._payers ??= new Client_14.Payers(this.options));
82
83
  }
84
+ _tasks;
85
+ get tasks() {
86
+ return (this._tasks ??= new Client_15.Tasks(this.options));
87
+ }
83
88
  _writeOffs;
84
89
  get writeOffs() {
85
- return (this._writeOffs ??= new Client_15.WriteOffs(this.options));
90
+ return (this._writeOffs ??= new Client_16.WriteOffs(this.options));
86
91
  }
87
92
  }
88
93
  exports.CandidApiClient = CandidApiClient;
@@ -62,7 +62,7 @@ class V2 {
62
62
  Authorization: await this._getAuthorizationHeader(),
63
63
  "X-Fern-Language": "JavaScript",
64
64
  "X-Fern-SDK-Name": "candidhealth",
65
- "X-Fern-SDK-Version": "0.9.0",
65
+ "X-Fern-SDK-Version": "0.10.0",
66
66
  },
67
67
  contentType: "application/json",
68
68
  body: await serializers.auth.v2.AuthGetTokenRequest.jsonOrThrow(request, {
@@ -48,7 +48,7 @@ class V2 {
48
48
  Authorization: await this._getAuthorizationHeader(),
49
49
  "X-Fern-Language": "JavaScript",
50
50
  "X-Fern-SDK-Name": "candidhealth",
51
- "X-Fern-SDK-Version": "0.9.0",
51
+ "X-Fern-SDK-Version": "0.10.0",
52
52
  },
53
53
  contentType: "application/json",
54
54
  body: await serializers.billingNotes.v2.StandaloneBillingNoteCreate.jsonOrThrow(request, {
@@ -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 TaskAssignmentId = string & {
6
+ TaskAssignmentId: void;
7
+ };
8
+ export declare function TaskAssignmentId(value: string): CandidApi.TaskAssignmentId;
@@ -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.TaskAssignmentId = void 0;
7
+ function TaskAssignmentId(value) {
8
+ return value;
9
+ }
10
+ exports.TaskAssignmentId = TaskAssignmentId;
@@ -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 TaskId = string & {
6
+ TaskId: void;
7
+ };
8
+ export declare function TaskId(value: string): CandidApi.TaskId;
@@ -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.TaskId = void 0;
7
+ function TaskId(value) {
8
+ return value;
9
+ }
10
+ exports.TaskId = TaskId;
@@ -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 TaskNoteId = string & {
6
+ TaskNoteId: void;
7
+ };
8
+ export declare function TaskNoteId(value: string): CandidApi.TaskNoteId;
@@ -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.TaskNoteId = void 0;
7
+ function TaskNoteId(value) {
8
+ return value;
9
+ }
10
+ exports.TaskNoteId = TaskNoteId;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export interface UnprocessableEntityErrorMessage {
5
+ message?: string;
6
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 UserId = string & {
6
+ UserId: void;
7
+ };
8
+ export declare function UserId(value: string): CandidApi.UserId;
@@ -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.UserId = void 0;
7
+ function UserId(value) {
8
+ return value;
9
+ }
10
+ exports.UserId = UserId;
@@ -6,6 +6,10 @@ export * from "./PatientExternalId";
6
6
  export * from "./EncounterExternalId";
7
7
  export * from "./Npi";
8
8
  export * from "./WorkQueueId";
9
+ export * from "./UserId";
10
+ export * from "./TaskId";
11
+ export * from "./TaskAssignmentId";
12
+ export * from "./TaskNoteId";
9
13
  export * from "./ProviderId";
10
14
  export * from "./InvoiceId";
11
15
  export * from "./LinkUrl";
@@ -31,6 +35,7 @@ export * from "./EmrPayerCrosswalk";
31
35
  export * from "./ErrorMessage";
32
36
  export * from "./EntityNotFoundErrorMessage";
33
37
  export * from "./UnauthorizedErrorMessage";
38
+ export * from "./UnprocessableEntityErrorMessage";
34
39
  export * from "./HttpServiceUnavailableErrorMessage";
35
40
  export * from "./RequestValidationError";
36
41
  export * from "./UpdatesDisabledDueToExternalSystemIntegrationErrorMessage";
@@ -22,6 +22,10 @@ __exportStar(require("./PatientExternalId"), exports);
22
22
  __exportStar(require("./EncounterExternalId"), exports);
23
23
  __exportStar(require("./Npi"), exports);
24
24
  __exportStar(require("./WorkQueueId"), exports);
25
+ __exportStar(require("./UserId"), exports);
26
+ __exportStar(require("./TaskId"), exports);
27
+ __exportStar(require("./TaskAssignmentId"), exports);
28
+ __exportStar(require("./TaskNoteId"), exports);
25
29
  __exportStar(require("./ProviderId"), exports);
26
30
  __exportStar(require("./InvoiceId"), exports);
27
31
  __exportStar(require("./LinkUrl"), exports);
@@ -47,6 +51,7 @@ __exportStar(require("./EmrPayerCrosswalk"), exports);
47
51
  __exportStar(require("./ErrorMessage"), exports);
48
52
  __exportStar(require("./EntityNotFoundErrorMessage"), exports);
49
53
  __exportStar(require("./UnauthorizedErrorMessage"), exports);
54
+ __exportStar(require("./UnprocessableEntityErrorMessage"), exports);
50
55
  __exportStar(require("./HttpServiceUnavailableErrorMessage"), exports);
51
56
  __exportStar(require("./RequestValidationError"), exports);
52
57
  __exportStar(require("./UpdatesDisabledDueToExternalSystemIntegrationErrorMessage"), exports);
@@ -65,7 +65,7 @@ class V2 {
65
65
  Authorization: await this._getAuthorizationHeader(),
66
66
  "X-Fern-Language": "JavaScript",
67
67
  "X-Fern-SDK-Name": "candidhealth",
68
- "X-Fern-SDK-Version": "0.9.0",
68
+ "X-Fern-SDK-Version": "0.10.0",
69
69
  },
70
70
  contentType: "application/json",
71
71
  body: request,
@@ -103,7 +103,7 @@ class V4 {
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 V4 {
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
  timeoutMs: 60000,
@@ -162,7 +162,7 @@ class V4 {
162
162
  Authorization: await this._getAuthorizationHeader(),
163
163
  "X-Fern-Language": "JavaScript",
164
164
  "X-Fern-SDK-Name": "candidhealth",
165
- "X-Fern-SDK-Version": "0.9.0",
165
+ "X-Fern-SDK-Version": "0.10.0",
166
166
  },
167
167
  contentType: "application/json",
168
168
  body: await serializers.encounters.v4.EncounterCreate.jsonOrThrow(request, {
@@ -212,7 +212,7 @@ class V4 {
212
212
  Authorization: await this._getAuthorizationHeader(),
213
213
  "X-Fern-Language": "JavaScript",
214
214
  "X-Fern-SDK-Name": "candidhealth",
215
- "X-Fern-SDK-Version": "0.9.0",
215
+ "X-Fern-SDK-Version": "0.10.0",
216
216
  },
217
217
  contentType: "application/json",
218
218
  body: await serializers.encounters.v4.EncounterUpdate.jsonOrThrow(request, {
@@ -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
  body: await serializers.expectedNetworkStatus.v1.ExpectedNetworkStatusRequest.jsonOrThrow(request, {
@@ -55,7 +55,7 @@ class V2 {
55
55
  Authorization: await this._getAuthorizationHeader(),
56
56
  "X-Fern-Language": "JavaScript",
57
57
  "X-Fern-SDK-Name": "candidhealth",
58
- "X-Fern-SDK-Version": "0.9.0",
58
+ "X-Fern-SDK-Version": "0.10.0",
59
59
  },
60
60
  contentType: "application/json",
61
61
  body: await serializers.expectedNetworkStatus.v2.ExpectedNetworkStatusRequestV2.jsonOrThrow(request, {
@@ -111,7 +111,7 @@ class V2 {
111
111
  Authorization: await this._getAuthorizationHeader(),
112
112
  "X-Fern-Language": "JavaScript",
113
113
  "X-Fern-SDK-Name": "candidhealth",
114
- "X-Fern-SDK-Version": "0.9.0",
114
+ "X-Fern-SDK-Version": "0.10.0",
115
115
  },
116
116
  contentType: "application/json",
117
117
  body: await serializers.expectedNetworkStatus.v2.ComputeAllInNetworkProvidersRequest.jsonOrThrow(request, {
@@ -68,7 +68,7 @@ class V3 {
68
68
  Authorization: await this._getAuthorizationHeader(),
69
69
  "X-Fern-Language": "JavaScript",
70
70
  "X-Fern-SDK-Name": "candidhealth",
71
- "X-Fern-SDK-Version": "0.9.0",
71
+ "X-Fern-SDK-Version": "0.10.0",
72
72
  },
73
73
  contentType: "application/json",
74
74
  queryParameters: _queryParams,
@@ -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
  body: await serializers.guarantor.v1.GuarantorCreate.jsonOrThrow(request, {
@@ -104,7 +104,7 @@ class V1 {
104
104
  Authorization: await this._getAuthorizationHeader(),
105
105
  "X-Fern-Language": "JavaScript",
106
106
  "X-Fern-SDK-Name": "candidhealth",
107
- "X-Fern-SDK-Version": "0.9.0",
107
+ "X-Fern-SDK-Version": "0.10.0",
108
108
  },
109
109
  contentType: "application/json",
110
110
  timeoutMs: 60000,
@@ -138,7 +138,7 @@ class V1 {
138
138
  Authorization: await this._getAuthorizationHeader(),
139
139
  "X-Fern-Language": "JavaScript",
140
140
  "X-Fern-SDK-Name": "candidhealth",
141
- "X-Fern-SDK-Version": "0.9.0",
141
+ "X-Fern-SDK-Version": "0.10.0",
142
142
  },
143
143
  contentType: "application/json",
144
144
  body: await serializers.guarantor.v1.GuarantorUpdate.jsonOrThrow(request, {
@@ -14,6 +14,7 @@ export * as patientPayments from "./patientPayments";
14
14
  export * as patientRefunds from "./patientRefunds";
15
15
  export * as payers from "./payers";
16
16
  export * as serviceLines from "./serviceLines";
17
+ export * as tasks from "./tasks";
17
18
  export * as writeOffs from "./writeOffs";
18
19
  export * as x12 from "./x12";
19
20
  export * as claims from "./claims";
@@ -26,7 +26,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
26
26
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
27
27
  };
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.eligibility = exports.tags = exports.serviceFacility = exports.invoices = exports.insuranceCard = exports.individual = exports.identifiers = exports.financials = exports.era = exports.diagnoses = exports.contracts = exports.commons = exports.claims = exports.x12 = exports.writeOffs = exports.serviceLines = exports.payers = exports.patientRefunds = exports.patientPayments = exports.organizationProviders = exports.organizationServiceFacilities = exports.insuranceRefunds = exports.insuranceAdjudications = exports.guarantor = exports.exports = exports.expectedNetworkStatus = exports.encounters = exports.encounterProviders = exports.claimSubmission = exports.billingNotes = exports.auth = void 0;
29
+ exports.eligibility = exports.tags = exports.serviceFacility = exports.invoices = exports.insuranceCard = exports.individual = exports.identifiers = exports.financials = exports.era = exports.diagnoses = exports.contracts = exports.commons = exports.claims = exports.x12 = exports.writeOffs = exports.tasks = exports.serviceLines = exports.payers = exports.patientRefunds = exports.patientPayments = exports.organizationProviders = exports.organizationServiceFacilities = exports.insuranceRefunds = exports.insuranceAdjudications = exports.guarantor = exports.exports = exports.expectedNetworkStatus = exports.encounters = exports.encounterProviders = exports.claimSubmission = exports.billingNotes = exports.auth = void 0;
30
30
  exports.auth = __importStar(require("./auth"));
31
31
  exports.billingNotes = __importStar(require("./billingNotes"));
32
32
  exports.claimSubmission = __importStar(require("./claimSubmission"));
@@ -43,6 +43,7 @@ exports.patientPayments = __importStar(require("./patientPayments"));
43
43
  exports.patientRefunds = __importStar(require("./patientRefunds"));
44
44
  exports.payers = __importStar(require("./payers"));
45
45
  exports.serviceLines = __importStar(require("./serviceLines"));
46
+ exports.tasks = __importStar(require("./tasks"));
46
47
  exports.writeOffs = __importStar(require("./writeOffs"));
47
48
  exports.x12 = __importStar(require("./x12"));
48
49
  exports.claims = __importStar(require("./claims"));
@@ -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,
@@ -87,7 +87,7 @@ class V1 {
87
87
  Authorization: await this._getAuthorizationHeader(),
88
88
  "X-Fern-Language": "JavaScript",
89
89
  "X-Fern-SDK-Name": "candidhealth",
90
- "X-Fern-SDK-Version": "0.9.0",
90
+ "X-Fern-SDK-Version": "0.10.0",
91
91
  },
92
92
  contentType: "application/json",
93
93
  body: await serializers.insuranceAdjudications.v1.InsuranceAdjudicationCreate.jsonOrThrow(request, {
@@ -124,7 +124,7 @@ class V1 {
124
124
  Authorization: await this._getAuthorizationHeader(),
125
125
  "X-Fern-Language": "JavaScript",
126
126
  "X-Fern-SDK-Name": "candidhealth",
127
- "X-Fern-SDK-Version": "0.9.0",
127
+ "X-Fern-SDK-Version": "0.10.0",
128
128
  },
129
129
  contentType: "application/json",
130
130
  timeoutMs: 60000,