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,37 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.TaskId = void 0;
30
+ const CandidApi = __importStar(require("../../../../api"));
31
+ const core = __importStar(require("../../../../core"));
32
+ exports.TaskId = core.serialization
33
+ .string()
34
+ .transform({
35
+ transform: CandidApi.TaskId,
36
+ untransform: (value) => value,
37
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../..";
5
+ import * as CandidApi from "../../../../api";
6
+ import * as core from "../../../../core";
7
+ export declare const TaskNoteId: core.serialization.Schema<serializers.TaskNoteId.Raw, CandidApi.TaskNoteId>;
8
+ export declare namespace TaskNoteId {
9
+ type Raw = string;
10
+ }
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.TaskNoteId = void 0;
30
+ const CandidApi = __importStar(require("../../../../api"));
31
+ const core = __importStar(require("../../../../core"));
32
+ exports.TaskNoteId = core.serialization.string().transform({
33
+ transform: CandidApi.TaskNoteId,
34
+ untransform: (value) => value,
35
+ });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../..";
5
+ import * as CandidApi from "../../../../api";
6
+ import * as core from "../../../../core";
7
+ export declare const UnprocessableEntityErrorMessage: core.serialization.ObjectSchema<serializers.UnprocessableEntityErrorMessage.Raw, CandidApi.UnprocessableEntityErrorMessage>;
8
+ export declare namespace UnprocessableEntityErrorMessage {
9
+ interface Raw {
10
+ message?: string | null;
11
+ }
12
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.UnprocessableEntityErrorMessage = void 0;
30
+ const core = __importStar(require("../../../../core"));
31
+ exports.UnprocessableEntityErrorMessage = core.serialization.object({
32
+ message: core.serialization.string().optional(),
33
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../..";
5
+ import * as CandidApi from "../../../../api";
6
+ import * as core from "../../../../core";
7
+ export declare const UserId: core.serialization.Schema<serializers.UserId.Raw, CandidApi.UserId>;
8
+ export declare namespace UserId {
9
+ type Raw = string;
10
+ }
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.UserId = void 0;
30
+ const CandidApi = __importStar(require("../../../../api"));
31
+ const core = __importStar(require("../../../../core"));
32
+ exports.UserId = core.serialization
33
+ .string()
34
+ .transform({
35
+ transform: CandidApi.UserId,
36
+ untransform: (value) => value,
37
+ });
@@ -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);
@@ -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"));
@@ -8,6 +8,7 @@ export declare const InsuranceRefund: core.serialization.ObjectSchema<serializer
8
8
  export declare namespace InsuranceRefund {
9
9
  interface Raw {
10
10
  insurance_refund_id: serializers.insuranceRefunds.v1.InsuranceRefundId.Raw;
11
+ payer_id: serializers.payers.v3.PayerId.Raw;
11
12
  amount_cents: number;
12
13
  refund_timestamp?: string | null;
13
14
  refund_note?: string | null;
@@ -30,6 +30,7 @@ exports.InsuranceRefund = void 0;
30
30
  const core = __importStar(require("../../../../../../core"));
31
31
  exports.InsuranceRefund = core.serialization.object({
32
32
  insuranceRefundId: core.serialization.property("insurance_refund_id", core.serialization.lazy(async () => (await Promise.resolve().then(() => __importStar(require("../../../../..")))).insuranceRefunds.v1.InsuranceRefundId)),
33
+ payerId: core.serialization.property("payer_id", core.serialization.lazy(async () => (await Promise.resolve().then(() => __importStar(require("../../../../..")))).payers.v3.PayerId)),
33
34
  amountCents: core.serialization.property("amount_cents", core.serialization.number()),
34
35
  refundTimestamp: core.serialization.property("refund_timestamp", core.serialization.date().optional()),
35
36
  refundNote: core.serialization.property("refund_note", core.serialization.string().optional()),
@@ -7,6 +7,7 @@ import * as core from "../../../../../../core";
7
7
  export declare const InsuranceRefundCreate: core.serialization.ObjectSchema<serializers.insuranceRefunds.v1.InsuranceRefundCreate.Raw, CandidApi.insuranceRefunds.v1.InsuranceRefundCreate>;
8
8
  export declare namespace InsuranceRefundCreate {
9
9
  interface Raw {
10
+ payer_id: serializers.payers.v3.PayerId.Raw;
10
11
  amount_cents: number;
11
12
  refund_timestamp?: string | null;
12
13
  refund_note?: string | null;
@@ -29,6 +29,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
29
29
  exports.InsuranceRefundCreate = void 0;
30
30
  const core = __importStar(require("../../../../../../core"));
31
31
  exports.InsuranceRefundCreate = core.serialization.object({
32
+ payerId: core.serialization.property("payer_id", core.serialization.lazy(async () => (await Promise.resolve().then(() => __importStar(require("../../../../..")))).payers.v3.PayerId)),
32
33
  amountCents: core.serialization.property("amount_cents", core.serialization.number()),
33
34
  refundTimestamp: core.serialization.property("refund_timestamp", core.serialization.date().optional()),
34
35
  refundNote: core.serialization.property("refund_note", core.serialization.string().optional()),
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../../..";
5
+ import * as CandidApi from "../../../../../../api";
6
+ import * as core from "../../../../../../core";
7
+ export declare const PayerId: core.serialization.Schema<serializers.payers.v3.PayerId.Raw, CandidApi.payers.v3.PayerId>;
8
+ export declare namespace PayerId {
9
+ type Raw = string;
10
+ }
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.PayerId = void 0;
30
+ const CandidApi = __importStar(require("../../../../../../api"));
31
+ const core = __importStar(require("../../../../../../core"));
32
+ exports.PayerId = core.serialization.string().transform({
33
+ transform: CandidApi.payers.v3.PayerId,
34
+ untransform: (value) => value,
35
+ });
@@ -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 @@
1
+ export * from "./resources";
@@ -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("./resources"), 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,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../../..";
5
+ import * as CandidApi from "../../../../../../api";
6
+ import * as core from "../../../../../../core";
7
+ export declare const TaskCategory: core.serialization.Schema<serializers.tasks.TaskCategory.Raw, CandidApi.tasks.TaskCategory>;
8
+ export declare namespace TaskCategory {
9
+ type Raw = "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";
10
+ }
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.TaskCategory = void 0;
30
+ const core = __importStar(require("../../../../../../core"));
31
+ exports.TaskCategory = core.serialization.enum_([
32
+ "other",
33
+ "provider_credentialing",
34
+ "authorization_required",
35
+ "inactive_coverage",
36
+ "unknown_eligibility_or_patient_not_found",
37
+ "incorrect_member_id",
38
+ "documentation_addendum_request",
39
+ "coordination_of_benefits",
40
+ "missing_or_incorrect_gender",
41
+ "incorrect_date_of_birth",
42
+ "incorrect_payer",
43
+ "incorrect_name",
44
+ "invalid_diagnosis_code",
45
+ "non_covered_diagnosis_codes",
46
+ "information_requested_from_patient",
47
+ "incorrect_rendering_provider_info",
48
+ "missing_or_incorrect_modifier",
49
+ "coding_frequency_error",
50
+ "incorrect_patient_address",
51
+ "multiple_em_claims",
52
+ "missing_or_incorrect_charge_amount",
53
+ "medical_records_request",
54
+ "provider_enrollment_or_contracting",
55
+ "missing_or_incorrect_group_number",
56
+ "missing_diagnosis_codes",
57
+ "missing_patient_authorization",
58
+ "incorrect_billing_provider_info",
59
+ "incorrect_procedure_code",
60
+ "incorrect_quantity",
61
+ "incorrect_place_of_service_code",
62
+ "incorrect_service_facility_info",
63
+ "incorrect_date_of_service",
64
+ "missing_or_incorrect_ndc",
65
+ "patient_collections",
66
+ "submit_to_secondary",
67
+ "transient_server_error",
68
+ "missing_remittance_enrollment",
69
+ "missing_claims_enrollment",
70
+ "held_by_customer",
71
+ ]);
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../../..";
5
+ import * as CandidApi from "../../../../../../api";
6
+ import * as core from "../../../../../../core";
7
+ export declare const TaskStatus: core.serialization.Schema<serializers.tasks.TaskStatus.Raw, CandidApi.tasks.TaskStatus>;
8
+ export declare namespace TaskStatus {
9
+ type Raw = "finished" | "addressed_by_provider_group" | "sent_to_provider_group" | "open" | "blocked" | "waiting_for_review" | "in_progress";
10
+ }
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.TaskStatus = void 0;
30
+ const core = __importStar(require("../../../../../../core"));
31
+ exports.TaskStatus = core.serialization.enum_([
32
+ "finished",
33
+ "addressed_by_provider_group",
34
+ "sent_to_provider_group",
35
+ "open",
36
+ "blocked",
37
+ "waiting_for_review",
38
+ "in_progress",
39
+ ]);
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../../..";
5
+ import * as CandidApi from "../../../../../../api";
6
+ import * as core from "../../../../../../core";
7
+ export declare const TaskType: core.serialization.Schema<serializers.tasks.TaskType.Raw, CandidApi.tasks.TaskType>;
8
+ export declare namespace TaskType {
9
+ type Raw = "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";
10
+ }
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || function (mod) {
22
+ if (mod && mod.__esModule) return mod;
23
+ var result = {};
24
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
+ __setModuleDefault(result, mod);
26
+ return result;
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ exports.TaskType = void 0;
30
+ const core = __importStar(require("../../../../../../core"));
31
+ exports.TaskType = core.serialization.enum_([
32
+ "CUSTOMER_DATA_REQUEST",
33
+ "CLAIM_SUBMISSION_RUN_VALIDATIONS_FAILURE",
34
+ "CLAIM_SUBMISSION_SUBMIT_CLAIM_FAILURE",
35
+ "CLAIM_SUBMISSION_TRANSFORM_FAILURE",
36
+ "CODE_CLAIM",
37
+ "CODE_CLAIM_REVIEW",
38
+ "ELIGIBILITY",
39
+ "CLAIM_FOLLOW_UP",
40
+ "REJECTION_RESOLUTION",
41
+ "PAYER_CONFIGURATION_ERROR",
42
+ "DENIAL_RESOLUTION",
43
+ "MISSING_ENROLLMENT",
44
+ ]);
@@ -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";