candidhealth 0.35.2 → 0.35.3

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 (330) hide show
  1. package/api/resources/auth/resources/v2/client/Client.js +1 -1
  2. package/api/resources/billingNotes/resources/v2/client/Client.js +1 -1
  3. package/api/resources/contracts/resources/v2/client/Client.js +5 -5
  4. package/api/resources/credentialing/resources/v2/client/Client.js +5 -5
  5. package/api/resources/customSchemas/resources/v1/client/Client.js +4 -4
  6. package/api/resources/diagnoses/client/Client.js +3 -3
  7. package/api/resources/eligibility/resources/v2/client/Client.js +3 -3
  8. package/api/resources/encounterProviders/resources/v2/client/Client.js +12 -12
  9. package/api/resources/encounters/resources/v4/client/Client.js +5 -5
  10. package/api/resources/expectedNetworkStatus/resources/v1/client/Client.js +1 -1
  11. package/api/resources/expectedNetworkStatus/resources/v2/client/Client.js +2 -2
  12. package/api/resources/exports/resources/v3/client/Client.js +1 -1
  13. package/api/resources/externalPaymentAccountConfig/resources/v1/client/Client.js +1 -1
  14. package/api/resources/feeSchedules/resources/v3/client/Client.js +10 -10
  15. package/api/resources/guarantor/resources/v1/client/Client.js +3 -3
  16. package/api/resources/importInvoice/resources/v1/client/Client.js +4 -4
  17. package/api/resources/insuranceAdjudications/resources/v1/client/Client.js +3 -3
  18. package/api/resources/insurancePayments/resources/v1/client/Client.js +5 -5
  19. package/api/resources/insuranceRefunds/resources/v1/client/Client.js +5 -5
  20. package/api/resources/medicationDispense/resources/v1/client/Client.js +1 -1
  21. package/api/resources/nonInsurancePayerPayments/resources/v1/client/Client.js +5 -5
  22. package/api/resources/nonInsurancePayerRefunds/resources/v1/client/Client.js +5 -5
  23. package/api/resources/nonInsurancePayers/resources/v1/client/Client.js +6 -6
  24. package/api/resources/organizationProviders/resources/v3/client/Client.js +4 -4
  25. package/api/resources/organizationServiceFacilities/resources/v2/client/Client.js +5 -5
  26. package/api/resources/patientPayments/resources/v4/client/Client.js +5 -5
  27. package/api/resources/patientRefunds/resources/v1/client/Client.js +5 -5
  28. package/api/resources/payers/resources/v3/client/Client.js +2 -2
  29. package/api/resources/preEncounter/client/Client.d.ts +6 -0
  30. package/api/resources/preEncounter/client/Client.js +12 -2
  31. package/api/resources/preEncounter/resources/appointments/resources/v1/client/Client.js +6 -6
  32. package/api/resources/preEncounter/resources/appointments/resources/v1/types/Appointment.d.ts +1 -10
  33. package/api/resources/preEncounter/resources/common/types/BaseModel.d.ts +15 -0
  34. package/api/resources/preEncounter/resources/common/types/BaseModel.js +5 -0
  35. package/api/resources/preEncounter/resources/common/types/NoteId.d.ts +11 -0
  36. package/api/resources/preEncounter/resources/common/types/NoteId.js +10 -0
  37. package/api/resources/preEncounter/resources/common/types/TagId.d.ts +11 -0
  38. package/api/resources/preEncounter/resources/common/types/TagId.js +10 -0
  39. package/api/resources/preEncounter/resources/common/types/index.d.ts +3 -0
  40. package/api/resources/preEncounter/resources/common/types/index.js +3 -0
  41. package/api/resources/preEncounter/resources/coverages/resources/v1/client/Client.js +8 -8
  42. package/api/resources/preEncounter/resources/coverages/resources/v1/types/Coverage.d.ts +1 -10
  43. package/api/resources/preEncounter/resources/index.d.ts +2 -0
  44. package/api/resources/preEncounter/resources/index.js +3 -1
  45. package/api/resources/preEncounter/resources/lists/resources/v1/client/Client.js +2 -2
  46. package/api/resources/preEncounter/resources/lists/resources/v1/types/FilterQueryString.d.ts +1 -1
  47. package/api/resources/preEncounter/resources/notes/client/Client.d.ts +26 -0
  48. package/api/resources/preEncounter/resources/notes/client/Client.js +17 -0
  49. package/api/resources/preEncounter/resources/notes/client/index.d.ts +1 -0
  50. package/api/resources/preEncounter/resources/notes/client/index.js +2 -0
  51. package/api/resources/preEncounter/resources/notes/index.d.ts +2 -0
  52. package/api/resources/preEncounter/resources/notes/index.js +18 -0
  53. package/api/resources/preEncounter/resources/notes/resources/index.d.ts +1 -0
  54. package/api/resources/preEncounter/resources/notes/resources/index.js +27 -0
  55. package/api/resources/preEncounter/resources/notes/resources/v1/client/Client.d.ts +76 -0
  56. package/api/resources/preEncounter/resources/notes/resources/v1/client/Client.js +261 -0
  57. package/api/resources/preEncounter/resources/notes/resources/v1/client/create.d.ts +22 -0
  58. package/api/resources/preEncounter/resources/notes/resources/v1/client/create.js +47 -0
  59. package/api/resources/preEncounter/resources/notes/resources/v1/client/deactivate.d.ts +22 -0
  60. package/api/resources/preEncounter/resources/notes/resources/v1/client/deactivate.js +47 -0
  61. package/api/resources/preEncounter/resources/notes/resources/v1/client/get.d.ts +22 -0
  62. package/api/resources/preEncounter/resources/notes/resources/v1/client/get.js +47 -0
  63. package/api/resources/preEncounter/resources/notes/resources/v1/client/index.d.ts +4 -0
  64. package/api/resources/preEncounter/resources/notes/resources/v1/client/index.js +30 -0
  65. package/api/resources/preEncounter/resources/notes/resources/v1/client/update.d.ts +22 -0
  66. package/api/resources/preEncounter/resources/notes/resources/v1/client/update.js +47 -0
  67. package/api/resources/preEncounter/resources/notes/resources/v1/index.d.ts +2 -0
  68. package/api/resources/preEncounter/resources/notes/resources/v1/index.js +18 -0
  69. package/api/resources/preEncounter/resources/notes/resources/v1/types/MutableNote.d.ts +11 -0
  70. package/api/resources/preEncounter/resources/notes/resources/v1/types/MutableNote.js +5 -0
  71. package/api/resources/preEncounter/resources/notes/resources/v1/types/Note.d.ts +11 -0
  72. package/api/resources/preEncounter/resources/notes/resources/v1/types/Note.js +5 -0
  73. package/api/resources/preEncounter/resources/notes/resources/v1/types/index.d.ts +2 -0
  74. package/api/resources/preEncounter/resources/notes/resources/v1/types/index.js +18 -0
  75. package/api/resources/preEncounter/resources/patients/resources/v1/client/Client.d.ts +9 -3
  76. package/api/resources/preEncounter/resources/patients/resources/v1/client/Client.js +18 -12
  77. package/api/resources/preEncounter/resources/patients/resources/v1/client/requests/CreatePatientRequest.d.ts +3 -1
  78. package/api/resources/preEncounter/resources/patients/resources/v1/client/requests/CreatePatientWithMrnRequest.d.ts +3 -1
  79. package/api/resources/preEncounter/resources/patients/resources/v1/types/MutablePatient.d.ts +2 -0
  80. package/api/resources/preEncounter/resources/patients/resources/v1/types/Patient.d.ts +1 -10
  81. package/api/resources/preEncounter/resources/tags/client/Client.d.ts +26 -0
  82. package/api/resources/preEncounter/resources/tags/client/Client.js +17 -0
  83. package/api/resources/preEncounter/resources/tags/client/index.d.ts +1 -0
  84. package/api/resources/preEncounter/resources/tags/client/index.js +2 -0
  85. package/api/resources/preEncounter/resources/tags/index.d.ts +2 -0
  86. package/api/resources/preEncounter/resources/tags/index.js +18 -0
  87. package/api/resources/preEncounter/resources/tags/resources/index.d.ts +1 -0
  88. package/api/resources/preEncounter/resources/tags/resources/index.js +27 -0
  89. package/api/resources/preEncounter/resources/tags/resources/v1/client/Client.d.ts +85 -0
  90. package/api/resources/preEncounter/resources/tags/resources/v1/client/Client.js +312 -0
  91. package/api/resources/preEncounter/resources/tags/resources/v1/client/create.d.ts +22 -0
  92. package/api/resources/preEncounter/resources/tags/resources/v1/client/create.js +47 -0
  93. package/api/resources/preEncounter/resources/tags/resources/v1/client/deactivate.d.ts +22 -0
  94. package/api/resources/preEncounter/resources/tags/resources/v1/client/deactivate.js +47 -0
  95. package/api/resources/preEncounter/resources/tags/resources/v1/client/get.d.ts +22 -0
  96. package/api/resources/preEncounter/resources/tags/resources/v1/client/get.js +47 -0
  97. package/api/resources/preEncounter/resources/tags/resources/v1/client/getAll.d.ts +22 -0
  98. package/api/resources/preEncounter/resources/tags/resources/v1/client/getAll.js +47 -0
  99. package/api/resources/preEncounter/resources/tags/resources/v1/client/index.d.ts +6 -0
  100. package/api/resources/preEncounter/resources/tags/resources/v1/client/index.js +35 -0
  101. package/api/resources/preEncounter/resources/tags/resources/v1/client/requests/GetAllTagsRequest.d.ts +15 -0
  102. package/api/resources/preEncounter/resources/tags/resources/v1/client/requests/GetAllTagsRequest.js +5 -0
  103. package/api/resources/preEncounter/resources/tags/resources/v1/client/requests/index.d.ts +1 -0
  104. package/api/resources/preEncounter/resources/tags/resources/v1/client/requests/index.js +2 -0
  105. package/api/resources/preEncounter/resources/tags/resources/v1/client/update.d.ts +22 -0
  106. package/api/resources/preEncounter/resources/tags/resources/v1/client/update.js +47 -0
  107. package/api/resources/preEncounter/resources/tags/resources/v1/index.d.ts +2 -0
  108. package/api/resources/preEncounter/resources/tags/resources/v1/index.js +18 -0
  109. package/api/resources/preEncounter/resources/tags/resources/v1/types/MutableTag.d.ts +9 -0
  110. package/api/resources/preEncounter/resources/tags/resources/v1/types/MutableTag.js +5 -0
  111. package/api/resources/preEncounter/resources/tags/resources/v1/types/Tag.d.ts +10 -0
  112. package/api/resources/preEncounter/resources/tags/resources/v1/types/Tag.js +5 -0
  113. package/api/resources/preEncounter/resources/tags/resources/v1/types/TagPage.d.ts +7 -0
  114. package/api/resources/preEncounter/resources/tags/resources/v1/types/TagPage.js +5 -0
  115. package/api/resources/preEncounter/resources/tags/resources/v1/types/index.d.ts +3 -0
  116. package/api/resources/preEncounter/resources/tags/resources/v1/types/index.js +19 -0
  117. package/api/resources/serviceFacility/client/Client.js +1 -1
  118. package/api/resources/serviceLines/resources/v2/client/Client.js +3 -3
  119. package/api/resources/tasks/resources/v3/client/Client.js +5 -5
  120. package/api/resources/writeOffs/resources/v1/client/Client.js +4 -4
  121. package/dist/api/resources/auth/resources/v2/client/Client.js +1 -1
  122. package/dist/api/resources/billingNotes/resources/v2/client/Client.js +1 -1
  123. package/dist/api/resources/contracts/resources/v2/client/Client.js +5 -5
  124. package/dist/api/resources/credentialing/resources/v2/client/Client.js +5 -5
  125. package/dist/api/resources/customSchemas/resources/v1/client/Client.js +4 -4
  126. package/dist/api/resources/diagnoses/client/Client.js +3 -3
  127. package/dist/api/resources/eligibility/resources/v2/client/Client.js +3 -3
  128. package/dist/api/resources/encounterProviders/resources/v2/client/Client.js +12 -12
  129. package/dist/api/resources/encounters/resources/v4/client/Client.js +5 -5
  130. package/dist/api/resources/expectedNetworkStatus/resources/v1/client/Client.js +1 -1
  131. package/dist/api/resources/expectedNetworkStatus/resources/v2/client/Client.js +2 -2
  132. package/dist/api/resources/exports/resources/v3/client/Client.js +1 -1
  133. package/dist/api/resources/externalPaymentAccountConfig/resources/v1/client/Client.js +1 -1
  134. package/dist/api/resources/feeSchedules/resources/v3/client/Client.js +10 -10
  135. package/dist/api/resources/guarantor/resources/v1/client/Client.js +3 -3
  136. package/dist/api/resources/importInvoice/resources/v1/client/Client.js +4 -4
  137. package/dist/api/resources/insuranceAdjudications/resources/v1/client/Client.js +3 -3
  138. package/dist/api/resources/insurancePayments/resources/v1/client/Client.js +5 -5
  139. package/dist/api/resources/insuranceRefunds/resources/v1/client/Client.js +5 -5
  140. package/dist/api/resources/medicationDispense/resources/v1/client/Client.js +1 -1
  141. package/dist/api/resources/nonInsurancePayerPayments/resources/v1/client/Client.js +5 -5
  142. package/dist/api/resources/nonInsurancePayerRefunds/resources/v1/client/Client.js +5 -5
  143. package/dist/api/resources/nonInsurancePayers/resources/v1/client/Client.js +6 -6
  144. package/dist/api/resources/organizationProviders/resources/v3/client/Client.js +4 -4
  145. package/dist/api/resources/organizationServiceFacilities/resources/v2/client/Client.js +5 -5
  146. package/dist/api/resources/patientPayments/resources/v4/client/Client.js +5 -5
  147. package/dist/api/resources/patientRefunds/resources/v1/client/Client.js +5 -5
  148. package/dist/api/resources/payers/resources/v3/client/Client.js +2 -2
  149. package/dist/api/resources/preEncounter/client/Client.d.ts +6 -0
  150. package/dist/api/resources/preEncounter/client/Client.js +12 -2
  151. package/dist/api/resources/preEncounter/resources/appointments/resources/v1/client/Client.js +6 -6
  152. package/dist/api/resources/preEncounter/resources/appointments/resources/v1/types/Appointment.d.ts +1 -10
  153. package/dist/api/resources/preEncounter/resources/common/types/BaseModel.d.ts +15 -0
  154. package/dist/api/resources/preEncounter/resources/common/types/BaseModel.js +5 -0
  155. package/dist/api/resources/preEncounter/resources/common/types/NoteId.d.ts +11 -0
  156. package/dist/api/resources/preEncounter/resources/common/types/NoteId.js +10 -0
  157. package/dist/api/resources/preEncounter/resources/common/types/TagId.d.ts +11 -0
  158. package/dist/api/resources/preEncounter/resources/common/types/TagId.js +10 -0
  159. package/dist/api/resources/preEncounter/resources/common/types/index.d.ts +3 -0
  160. package/dist/api/resources/preEncounter/resources/common/types/index.js +3 -0
  161. package/dist/api/resources/preEncounter/resources/coverages/resources/v1/client/Client.js +8 -8
  162. package/dist/api/resources/preEncounter/resources/coverages/resources/v1/types/Coverage.d.ts +1 -10
  163. package/dist/api/resources/preEncounter/resources/index.d.ts +2 -0
  164. package/dist/api/resources/preEncounter/resources/index.js +3 -1
  165. package/dist/api/resources/preEncounter/resources/lists/resources/v1/client/Client.js +2 -2
  166. package/dist/api/resources/preEncounter/resources/lists/resources/v1/types/FilterQueryString.d.ts +1 -1
  167. package/dist/api/resources/preEncounter/resources/notes/client/Client.d.ts +26 -0
  168. package/dist/api/resources/preEncounter/resources/notes/client/Client.js +17 -0
  169. package/dist/api/resources/preEncounter/resources/notes/client/index.d.ts +1 -0
  170. package/dist/api/resources/preEncounter/resources/notes/client/index.js +2 -0
  171. package/dist/api/resources/preEncounter/resources/notes/index.d.ts +2 -0
  172. package/dist/api/resources/preEncounter/resources/notes/index.js +18 -0
  173. package/dist/api/resources/preEncounter/resources/notes/resources/index.d.ts +1 -0
  174. package/dist/api/resources/preEncounter/resources/notes/resources/index.js +27 -0
  175. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/Client.d.ts +76 -0
  176. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/Client.js +261 -0
  177. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/create.d.ts +22 -0
  178. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/create.js +47 -0
  179. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/deactivate.d.ts +22 -0
  180. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/deactivate.js +47 -0
  181. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/get.d.ts +22 -0
  182. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/get.js +47 -0
  183. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/index.d.ts +4 -0
  184. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/index.js +30 -0
  185. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/update.d.ts +22 -0
  186. package/dist/api/resources/preEncounter/resources/notes/resources/v1/client/update.js +47 -0
  187. package/dist/api/resources/preEncounter/resources/notes/resources/v1/index.d.ts +2 -0
  188. package/dist/api/resources/preEncounter/resources/notes/resources/v1/index.js +18 -0
  189. package/dist/api/resources/preEncounter/resources/notes/resources/v1/types/MutableNote.d.ts +11 -0
  190. package/dist/api/resources/preEncounter/resources/notes/resources/v1/types/MutableNote.js +5 -0
  191. package/dist/api/resources/preEncounter/resources/notes/resources/v1/types/Note.d.ts +11 -0
  192. package/dist/api/resources/preEncounter/resources/notes/resources/v1/types/Note.js +5 -0
  193. package/dist/api/resources/preEncounter/resources/notes/resources/v1/types/index.d.ts +2 -0
  194. package/dist/api/resources/preEncounter/resources/notes/resources/v1/types/index.js +18 -0
  195. package/dist/api/resources/preEncounter/resources/patients/resources/v1/client/Client.d.ts +9 -3
  196. package/dist/api/resources/preEncounter/resources/patients/resources/v1/client/Client.js +18 -12
  197. package/dist/api/resources/preEncounter/resources/patients/resources/v1/client/requests/CreatePatientRequest.d.ts +3 -1
  198. package/dist/api/resources/preEncounter/resources/patients/resources/v1/client/requests/CreatePatientWithMrnRequest.d.ts +3 -1
  199. package/dist/api/resources/preEncounter/resources/patients/resources/v1/types/MutablePatient.d.ts +2 -0
  200. package/dist/api/resources/preEncounter/resources/patients/resources/v1/types/Patient.d.ts +1 -10
  201. package/dist/api/resources/preEncounter/resources/tags/client/Client.d.ts +26 -0
  202. package/dist/api/resources/preEncounter/resources/tags/client/Client.js +17 -0
  203. package/dist/api/resources/preEncounter/resources/tags/client/index.d.ts +1 -0
  204. package/dist/api/resources/preEncounter/resources/tags/client/index.js +2 -0
  205. package/dist/api/resources/preEncounter/resources/tags/index.d.ts +2 -0
  206. package/dist/api/resources/preEncounter/resources/tags/index.js +18 -0
  207. package/dist/api/resources/preEncounter/resources/tags/resources/index.d.ts +1 -0
  208. package/dist/api/resources/preEncounter/resources/tags/resources/index.js +27 -0
  209. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/Client.d.ts +85 -0
  210. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/Client.js +312 -0
  211. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/create.d.ts +22 -0
  212. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/create.js +47 -0
  213. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/deactivate.d.ts +22 -0
  214. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/deactivate.js +47 -0
  215. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/get.d.ts +22 -0
  216. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/get.js +47 -0
  217. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/getAll.d.ts +22 -0
  218. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/getAll.js +47 -0
  219. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/index.d.ts +6 -0
  220. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/index.js +35 -0
  221. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/requests/GetAllTagsRequest.d.ts +15 -0
  222. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/requests/GetAllTagsRequest.js +5 -0
  223. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/requests/index.d.ts +1 -0
  224. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/requests/index.js +2 -0
  225. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/update.d.ts +22 -0
  226. package/dist/api/resources/preEncounter/resources/tags/resources/v1/client/update.js +47 -0
  227. package/dist/api/resources/preEncounter/resources/tags/resources/v1/index.d.ts +2 -0
  228. package/dist/api/resources/preEncounter/resources/tags/resources/v1/index.js +18 -0
  229. package/dist/api/resources/preEncounter/resources/tags/resources/v1/types/MutableTag.d.ts +9 -0
  230. package/dist/api/resources/preEncounter/resources/tags/resources/v1/types/MutableTag.js +5 -0
  231. package/dist/api/resources/preEncounter/resources/tags/resources/v1/types/Tag.d.ts +10 -0
  232. package/dist/api/resources/preEncounter/resources/tags/resources/v1/types/Tag.js +5 -0
  233. package/dist/api/resources/preEncounter/resources/tags/resources/v1/types/TagPage.d.ts +7 -0
  234. package/dist/api/resources/preEncounter/resources/tags/resources/v1/types/TagPage.js +5 -0
  235. package/dist/api/resources/preEncounter/resources/tags/resources/v1/types/index.d.ts +3 -0
  236. package/dist/api/resources/preEncounter/resources/tags/resources/v1/types/index.js +19 -0
  237. package/dist/api/resources/serviceFacility/client/Client.js +1 -1
  238. package/dist/api/resources/serviceLines/resources/v2/client/Client.js +3 -3
  239. package/dist/api/resources/tasks/resources/v3/client/Client.js +5 -5
  240. package/dist/api/resources/writeOffs/resources/v1/client/Client.js +4 -4
  241. package/dist/serialization/resources/preEncounter/resources/appointments/resources/v1/types/Appointment.d.ts +2 -8
  242. package/dist/serialization/resources/preEncounter/resources/appointments/resources/v1/types/Appointment.js +2 -7
  243. package/dist/serialization/resources/preEncounter/resources/common/types/BaseModel.d.ts +18 -0
  244. package/dist/serialization/resources/preEncounter/resources/common/types/BaseModel.js +39 -0
  245. package/dist/serialization/resources/preEncounter/resources/common/types/NoteId.d.ts +10 -0
  246. package/dist/serialization/resources/preEncounter/resources/common/types/NoteId.js +35 -0
  247. package/dist/serialization/resources/preEncounter/resources/common/types/TagId.d.ts +10 -0
  248. package/dist/serialization/resources/preEncounter/resources/common/types/TagId.js +35 -0
  249. package/dist/serialization/resources/preEncounter/resources/common/types/index.d.ts +3 -0
  250. package/dist/serialization/resources/preEncounter/resources/common/types/index.js +3 -0
  251. package/dist/serialization/resources/preEncounter/resources/coverages/resources/v1/types/Coverage.d.ts +2 -8
  252. package/dist/serialization/resources/preEncounter/resources/coverages/resources/v1/types/Coverage.js +2 -7
  253. package/dist/serialization/resources/preEncounter/resources/index.d.ts +2 -0
  254. package/dist/serialization/resources/preEncounter/resources/index.js +3 -1
  255. package/dist/serialization/resources/preEncounter/resources/notes/index.d.ts +1 -0
  256. package/dist/serialization/resources/preEncounter/resources/notes/index.js +17 -0
  257. package/dist/serialization/resources/preEncounter/resources/notes/resources/index.d.ts +1 -0
  258. package/dist/serialization/resources/preEncounter/resources/notes/resources/index.js +27 -0
  259. package/dist/serialization/resources/preEncounter/resources/notes/resources/v1/index.d.ts +1 -0
  260. package/dist/serialization/resources/preEncounter/resources/notes/resources/v1/index.js +17 -0
  261. package/dist/serialization/resources/preEncounter/resources/notes/resources/v1/types/MutableNote.d.ts +14 -0
  262. package/dist/serialization/resources/preEncounter/resources/notes/resources/v1/types/MutableNote.js +35 -0
  263. package/dist/serialization/resources/preEncounter/resources/notes/resources/v1/types/Note.d.ts +16 -0
  264. package/dist/serialization/resources/preEncounter/resources/notes/resources/v1/types/Note.js +40 -0
  265. package/dist/serialization/resources/preEncounter/resources/notes/resources/v1/types/index.d.ts +2 -0
  266. package/dist/serialization/resources/preEncounter/resources/notes/resources/v1/types/index.js +18 -0
  267. package/dist/serialization/resources/preEncounter/resources/patients/resources/v1/types/MutablePatient.d.ts +4 -0
  268. package/dist/serialization/resources/preEncounter/resources/patients/resources/v1/types/MutablePatient.js +4 -0
  269. package/dist/serialization/resources/preEncounter/resources/patients/resources/v1/types/Patient.d.ts +2 -8
  270. package/dist/serialization/resources/preEncounter/resources/patients/resources/v1/types/Patient.js +2 -7
  271. package/dist/serialization/resources/preEncounter/resources/tags/index.d.ts +1 -0
  272. package/dist/serialization/resources/preEncounter/resources/tags/index.js +17 -0
  273. package/dist/serialization/resources/preEncounter/resources/tags/resources/index.d.ts +1 -0
  274. package/dist/serialization/resources/preEncounter/resources/tags/resources/index.js +27 -0
  275. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/index.d.ts +1 -0
  276. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/index.js +17 -0
  277. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/types/MutableTag.d.ts +12 -0
  278. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/types/MutableTag.js +33 -0
  279. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/types/Tag.d.ts +15 -0
  280. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/types/Tag.js +39 -0
  281. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/types/TagPage.d.ts +14 -0
  282. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/types/TagPage.js +37 -0
  283. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/types/index.d.ts +3 -0
  284. package/dist/serialization/resources/preEncounter/resources/tags/resources/v1/types/index.js +19 -0
  285. package/package.json +1 -1
  286. package/reference.md +1225 -585
  287. package/serialization/resources/preEncounter/resources/appointments/resources/v1/types/Appointment.d.ts +2 -8
  288. package/serialization/resources/preEncounter/resources/appointments/resources/v1/types/Appointment.js +2 -7
  289. package/serialization/resources/preEncounter/resources/common/types/BaseModel.d.ts +18 -0
  290. package/serialization/resources/preEncounter/resources/common/types/BaseModel.js +39 -0
  291. package/serialization/resources/preEncounter/resources/common/types/NoteId.d.ts +10 -0
  292. package/serialization/resources/preEncounter/resources/common/types/NoteId.js +35 -0
  293. package/serialization/resources/preEncounter/resources/common/types/TagId.d.ts +10 -0
  294. package/serialization/resources/preEncounter/resources/common/types/TagId.js +35 -0
  295. package/serialization/resources/preEncounter/resources/common/types/index.d.ts +3 -0
  296. package/serialization/resources/preEncounter/resources/common/types/index.js +3 -0
  297. package/serialization/resources/preEncounter/resources/coverages/resources/v1/types/Coverage.d.ts +2 -8
  298. package/serialization/resources/preEncounter/resources/coverages/resources/v1/types/Coverage.js +2 -7
  299. package/serialization/resources/preEncounter/resources/index.d.ts +2 -0
  300. package/serialization/resources/preEncounter/resources/index.js +3 -1
  301. package/serialization/resources/preEncounter/resources/notes/index.d.ts +1 -0
  302. package/serialization/resources/preEncounter/resources/notes/index.js +17 -0
  303. package/serialization/resources/preEncounter/resources/notes/resources/index.d.ts +1 -0
  304. package/serialization/resources/preEncounter/resources/notes/resources/index.js +27 -0
  305. package/serialization/resources/preEncounter/resources/notes/resources/v1/index.d.ts +1 -0
  306. package/serialization/resources/preEncounter/resources/notes/resources/v1/index.js +17 -0
  307. package/serialization/resources/preEncounter/resources/notes/resources/v1/types/MutableNote.d.ts +14 -0
  308. package/serialization/resources/preEncounter/resources/notes/resources/v1/types/MutableNote.js +35 -0
  309. package/serialization/resources/preEncounter/resources/notes/resources/v1/types/Note.d.ts +16 -0
  310. package/serialization/resources/preEncounter/resources/notes/resources/v1/types/Note.js +40 -0
  311. package/serialization/resources/preEncounter/resources/notes/resources/v1/types/index.d.ts +2 -0
  312. package/serialization/resources/preEncounter/resources/notes/resources/v1/types/index.js +18 -0
  313. package/serialization/resources/preEncounter/resources/patients/resources/v1/types/MutablePatient.d.ts +4 -0
  314. package/serialization/resources/preEncounter/resources/patients/resources/v1/types/MutablePatient.js +4 -0
  315. package/serialization/resources/preEncounter/resources/patients/resources/v1/types/Patient.d.ts +2 -8
  316. package/serialization/resources/preEncounter/resources/patients/resources/v1/types/Patient.js +2 -7
  317. package/serialization/resources/preEncounter/resources/tags/index.d.ts +1 -0
  318. package/serialization/resources/preEncounter/resources/tags/index.js +17 -0
  319. package/serialization/resources/preEncounter/resources/tags/resources/index.d.ts +1 -0
  320. package/serialization/resources/preEncounter/resources/tags/resources/index.js +27 -0
  321. package/serialization/resources/preEncounter/resources/tags/resources/v1/index.d.ts +1 -0
  322. package/serialization/resources/preEncounter/resources/tags/resources/v1/index.js +17 -0
  323. package/serialization/resources/preEncounter/resources/tags/resources/v1/types/MutableTag.d.ts +12 -0
  324. package/serialization/resources/preEncounter/resources/tags/resources/v1/types/MutableTag.js +33 -0
  325. package/serialization/resources/preEncounter/resources/tags/resources/v1/types/Tag.d.ts +15 -0
  326. package/serialization/resources/preEncounter/resources/tags/resources/v1/types/Tag.js +39 -0
  327. package/serialization/resources/preEncounter/resources/tags/resources/v1/types/TagPage.d.ts +14 -0
  328. package/serialization/resources/preEncounter/resources/tags/resources/v1/types/TagPage.js +37 -0
  329. package/serialization/resources/preEncounter/resources/tags/resources/v1/types/index.d.ts +3 -0
  330. package/serialization/resources/preEncounter/resources/tags/resources/v1/types/index.js +19 -0
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,22 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as CandidApi from "../../../../../../../index";
5
+ import * as core from "../../../../../../../../core";
6
+ export declare type Error = CandidApi.preEncounter.tags.v1.update.Error._Unknown;
7
+ export declare namespace Error {
8
+ interface _Unknown extends _Utils {
9
+ errorName: void;
10
+ content: core.Fetcher.Error;
11
+ }
12
+ interface _Utils {
13
+ _visit: <_Result>(visitor: CandidApi.preEncounter.tags.v1.update.Error._Visitor<_Result>) => _Result;
14
+ }
15
+ interface _Visitor<_Result> {
16
+ _other: (value: core.Fetcher.Error) => _Result;
17
+ }
18
+ }
19
+ export declare const Error: {
20
+ readonly _unknown: (fetcherError: core.Fetcher.Error) => CandidApi.preEncounter.tags.v1.update.Error._Unknown;
21
+ readonly _visit: <_Result>(value: CandidApi.preEncounter.tags.v1.update.Error, visitor: CandidApi.preEncounter.tags.v1.update.Error._Visitor<_Result>) => _Result;
22
+ };
@@ -0,0 +1,47 @@
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.Error = void 0;
30
+ const CandidApi = __importStar(require("../../../../../../../index"));
31
+ exports.Error = {
32
+ _unknown: (fetcherError) => {
33
+ return {
34
+ errorName: undefined,
35
+ content: fetcherError,
36
+ _visit: function (visitor) {
37
+ return CandidApi.preEncounter.tags.v1.update.Error._visit(this, visitor);
38
+ },
39
+ };
40
+ },
41
+ _visit: (value, visitor) => {
42
+ switch (value.errorName) {
43
+ default:
44
+ return visitor._other(value);
45
+ }
46
+ },
47
+ };
@@ -0,0 +1,2 @@
1
+ export * from "./types";
2
+ export * from "./client";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./types"), exports);
18
+ __exportStar(require("./client"), exports);
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * An object representing a Tag.
6
+ */
7
+ export interface MutableTag {
8
+ value: string;
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,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as CandidApi from "../../../../../../../index";
5
+ /**
6
+ * A Tag object with immutable server-owned properties.
7
+ */
8
+ export interface Tag extends CandidApi.preEncounter.BaseModel, CandidApi.preEncounter.tags.v1.MutableTag {
9
+ id: CandidApi.preEncounter.TagId;
10
+ }
@@ -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 "../../../../../../../index";
5
+ export interface TagPage extends CandidApi.preEncounter.ResourcePage {
6
+ items: CandidApi.preEncounter.tags.v1.Tag[];
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,3 @@
1
+ export * from "./MutableTag";
2
+ export * from "./Tag";
3
+ export * from "./TagPage";
@@ -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("./MutableTag"), exports);
18
+ __exportStar(require("./Tag"), exports);
19
+ __exportStar(require("./TagPage"), exports);
@@ -77,7 +77,7 @@ class ServiceFacility {
77
77
  Authorization: yield this._getAuthorizationHeader(),
78
78
  "X-Fern-Language": "JavaScript",
79
79
  "X-Fern-SDK-Name": "candidhealth",
80
- "X-Fern-SDK-Version": "0.35.2",
80
+ "X-Fern-SDK-Version": "0.35.3",
81
81
  "X-Fern-Runtime": core.RUNTIME.type,
82
82
  "X-Fern-Runtime-Version": core.RUNTIME.version,
83
83
  },
@@ -113,7 +113,7 @@ class V2 {
113
113
  Authorization: yield this._getAuthorizationHeader(),
114
114
  "X-Fern-Language": "JavaScript",
115
115
  "X-Fern-SDK-Name": "candidhealth",
116
- "X-Fern-SDK-Version": "0.35.2",
116
+ "X-Fern-SDK-Version": "0.35.3",
117
117
  "X-Fern-Runtime": core.RUNTIME.type,
118
118
  "X-Fern-Runtime-Version": core.RUNTIME.version,
119
119
  },
@@ -208,7 +208,7 @@ class V2 {
208
208
  Authorization: yield this._getAuthorizationHeader(),
209
209
  "X-Fern-Language": "JavaScript",
210
210
  "X-Fern-SDK-Name": "candidhealth",
211
- "X-Fern-SDK-Version": "0.35.2",
211
+ "X-Fern-SDK-Version": "0.35.3",
212
212
  "X-Fern-Runtime": core.RUNTIME.type,
213
213
  "X-Fern-Runtime-Version": core.RUNTIME.version,
214
214
  },
@@ -272,7 +272,7 @@ class V2 {
272
272
  Authorization: yield this._getAuthorizationHeader(),
273
273
  "X-Fern-Language": "JavaScript",
274
274
  "X-Fern-SDK-Name": "candidhealth",
275
- "X-Fern-SDK-Version": "0.35.2",
275
+ "X-Fern-SDK-Version": "0.35.3",
276
276
  "X-Fern-Runtime": core.RUNTIME.type,
277
277
  "X-Fern-Runtime-Version": core.RUNTIME.version,
278
278
  },
@@ -66,7 +66,7 @@ class V3 {
66
66
  Authorization: yield this._getAuthorizationHeader(),
67
67
  "X-Fern-Language": "JavaScript",
68
68
  "X-Fern-SDK-Name": "candidhealth",
69
- "X-Fern-SDK-Version": "0.35.2",
69
+ "X-Fern-SDK-Version": "0.35.3",
70
70
  "X-Fern-Runtime": core.RUNTIME.type,
71
71
  "X-Fern-Runtime-Version": core.RUNTIME.version,
72
72
  },
@@ -166,7 +166,7 @@ class V3 {
166
166
  Authorization: yield this._getAuthorizationHeader(),
167
167
  "X-Fern-Language": "JavaScript",
168
168
  "X-Fern-SDK-Name": "candidhealth",
169
- "X-Fern-SDK-Version": "0.35.2",
169
+ "X-Fern-SDK-Version": "0.35.3",
170
170
  "X-Fern-Runtime": core.RUNTIME.type,
171
171
  "X-Fern-Runtime-Version": core.RUNTIME.version,
172
172
  },
@@ -226,7 +226,7 @@ class V3 {
226
226
  Authorization: yield this._getAuthorizationHeader(),
227
227
  "X-Fern-Language": "JavaScript",
228
228
  "X-Fern-SDK-Name": "candidhealth",
229
- "X-Fern-SDK-Version": "0.35.2",
229
+ "X-Fern-SDK-Version": "0.35.3",
230
230
  "X-Fern-Runtime": core.RUNTIME.type,
231
231
  "X-Fern-Runtime-Version": core.RUNTIME.version,
232
232
  },
@@ -294,7 +294,7 @@ class V3 {
294
294
  Authorization: yield this._getAuthorizationHeader(),
295
295
  "X-Fern-Language": "JavaScript",
296
296
  "X-Fern-SDK-Name": "candidhealth",
297
- "X-Fern-SDK-Version": "0.35.2",
297
+ "X-Fern-SDK-Version": "0.35.3",
298
298
  "X-Fern-Runtime": core.RUNTIME.type,
299
299
  "X-Fern-Runtime-Version": core.RUNTIME.version,
300
300
  },
@@ -345,7 +345,7 @@ class V3 {
345
345
  Authorization: yield this._getAuthorizationHeader(),
346
346
  "X-Fern-Language": "JavaScript",
347
347
  "X-Fern-SDK-Name": "candidhealth",
348
- "X-Fern-SDK-Version": "0.35.2",
348
+ "X-Fern-SDK-Version": "0.35.3",
349
349
  "X-Fern-Runtime": core.RUNTIME.type,
350
350
  "X-Fern-Runtime-Version": core.RUNTIME.version,
351
351
  },
@@ -116,7 +116,7 @@ class V1 {
116
116
  Authorization: yield this._getAuthorizationHeader(),
117
117
  "X-Fern-Language": "JavaScript",
118
118
  "X-Fern-SDK-Name": "candidhealth",
119
- "X-Fern-SDK-Version": "0.35.2",
119
+ "X-Fern-SDK-Version": "0.35.3",
120
120
  "X-Fern-Runtime": core.RUNTIME.type,
121
121
  "X-Fern-Runtime-Version": core.RUNTIME.version,
122
122
  },
@@ -164,7 +164,7 @@ class V1 {
164
164
  Authorization: yield this._getAuthorizationHeader(),
165
165
  "X-Fern-Language": "JavaScript",
166
166
  "X-Fern-SDK-Name": "candidhealth",
167
- "X-Fern-SDK-Version": "0.35.2",
167
+ "X-Fern-SDK-Version": "0.35.3",
168
168
  "X-Fern-Runtime": core.RUNTIME.type,
169
169
  "X-Fern-Runtime-Version": core.RUNTIME.version,
170
170
  },
@@ -221,7 +221,7 @@ class V1 {
221
221
  Authorization: yield this._getAuthorizationHeader(),
222
222
  "X-Fern-Language": "JavaScript",
223
223
  "X-Fern-SDK-Name": "candidhealth",
224
- "X-Fern-SDK-Version": "0.35.2",
224
+ "X-Fern-SDK-Version": "0.35.3",
225
225
  "X-Fern-Runtime": core.RUNTIME.type,
226
226
  "X-Fern-Runtime-Version": core.RUNTIME.version,
227
227
  },
@@ -271,7 +271,7 @@ class V1 {
271
271
  Authorization: yield this._getAuthorizationHeader(),
272
272
  "X-Fern-Language": "JavaScript",
273
273
  "X-Fern-SDK-Name": "candidhealth",
274
- "X-Fern-SDK-Version": "0.35.2",
274
+ "X-Fern-SDK-Version": "0.35.3",
275
275
  "X-Fern-Runtime": core.RUNTIME.type,
276
276
  "X-Fern-Runtime-Version": core.RUNTIME.version,
277
277
  },
@@ -5,17 +5,11 @@ import * as serializers from "../../../../../../../index";
5
5
  import * as CandidApi from "../../../../../../../../api/index";
6
6
  import * as core from "../../../../../../../../core";
7
7
  import { AppointmentId } from "../../../../common/types/AppointmentId";
8
- import { OrganizationId } from "../../../../common/types/OrganizationId";
9
- import { UserId } from "../../../../common/types/UserId";
8
+ import { BaseModel } from "../../../../common/types/BaseModel";
10
9
  import { MutableAppointment } from "./MutableAppointment";
11
10
  export declare const Appointment: core.serialization.ObjectSchema<serializers.preEncounter.appointments.v1.Appointment.Raw, CandidApi.preEncounter.appointments.v1.Appointment>;
12
11
  export declare namespace Appointment {
13
- interface Raw extends MutableAppointment.Raw {
12
+ interface Raw extends BaseModel.Raw, MutableAppointment.Raw {
14
13
  id: AppointmentId.Raw;
15
- organization_id: OrganizationId.Raw;
16
- deactivated: boolean;
17
- version: number;
18
- updated_at: string;
19
- updating_user_id: UserId.Raw;
20
14
  }
21
15
  }
@@ -29,16 +29,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
29
29
  exports.Appointment = void 0;
30
30
  const core = __importStar(require("../../../../../../../../core"));
31
31
  const AppointmentId_1 = require("../../../../common/types/AppointmentId");
32
- const OrganizationId_1 = require("../../../../common/types/OrganizationId");
33
- const UserId_1 = require("../../../../common/types/UserId");
32
+ const BaseModel_1 = require("../../../../common/types/BaseModel");
34
33
  const MutableAppointment_1 = require("./MutableAppointment");
35
34
  exports.Appointment = core.serialization
36
35
  .object({
37
36
  id: AppointmentId_1.AppointmentId,
38
- organizationId: core.serialization.property("organization_id", OrganizationId_1.OrganizationId),
39
- deactivated: core.serialization.boolean(),
40
- version: core.serialization.number(),
41
- updatedAt: core.serialization.property("updated_at", core.serialization.date()),
42
- updatingUserId: core.serialization.property("updating_user_id", UserId_1.UserId),
43
37
  })
38
+ .extend(BaseModel_1.BaseModel)
44
39
  .extend(MutableAppointment_1.MutableAppointment);
@@ -0,0 +1,18 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../../../index";
5
+ import * as CandidApi from "../../../../../../api/index";
6
+ import * as core from "../../../../../../core";
7
+ import { OrganizationId } from "./OrganizationId";
8
+ import { UserId } from "./UserId";
9
+ export declare const BaseModel: core.serialization.ObjectSchema<serializers.preEncounter.BaseModel.Raw, CandidApi.preEncounter.BaseModel>;
10
+ export declare namespace BaseModel {
11
+ interface Raw {
12
+ organization_id: OrganizationId.Raw;
13
+ deactivated: boolean;
14
+ version: number;
15
+ updated_at: string;
16
+ updating_user_id: UserId.Raw;
17
+ }
18
+ }
@@ -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.BaseModel = void 0;
30
+ const core = __importStar(require("../../../../../../core"));
31
+ const OrganizationId_1 = require("./OrganizationId");
32
+ const UserId_1 = require("./UserId");
33
+ exports.BaseModel = core.serialization.object({
34
+ organizationId: core.serialization.property("organization_id", OrganizationId_1.OrganizationId),
35
+ deactivated: core.serialization.boolean(),
36
+ version: core.serialization.number(),
37
+ updatedAt: core.serialization.property("updated_at", core.serialization.date()),
38
+ updatingUserId: core.serialization.property("updating_user_id", UserId_1.UserId),
39
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../../../index";
5
+ import * as CandidApi from "../../../../../../api/index";
6
+ import * as core from "../../../../../../core";
7
+ export declare const NoteId: core.serialization.Schema<serializers.preEncounter.NoteId.Raw, CandidApi.preEncounter.NoteId>;
8
+ export declare namespace NoteId {
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.NoteId = void 0;
30
+ const CandidApi = __importStar(require("../../../../../../api/index"));
31
+ const core = __importStar(require("../../../../../../core"));
32
+ exports.NoteId = core.serialization.string().transform({
33
+ transform: CandidApi.preEncounter.NoteId,
34
+ untransform: (value) => value,
35
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as serializers from "../../../../../index";
5
+ import * as CandidApi from "../../../../../../api/index";
6
+ import * as core from "../../../../../../core";
7
+ export declare const TagId: core.serialization.Schema<serializers.preEncounter.TagId.Raw, CandidApi.preEncounter.TagId>;
8
+ export declare namespace TagId {
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.TagId = void 0;
30
+ const CandidApi = __importStar(require("../../../../../../api/index"));
31
+ const core = __importStar(require("../../../../../../core"));
32
+ exports.TagId = core.serialization.string().transform({
33
+ transform: CandidApi.preEncounter.TagId,
34
+ untransform: (value) => value,
35
+ });
@@ -1,9 +1,12 @@
1
1
  export * from "./OrganizationId";
2
2
  export * from "./UserId";
3
+ export * from "./BaseModel";
3
4
  export * from "./PayerId";
4
5
  export * from "./PatientId";
5
6
  export * from "./CoverageId";
6
7
  export * from "./AppointmentId";
8
+ export * from "./NoteId";
9
+ export * from "./TagId";
7
10
  export * from "./CanonicalProviderId";
8
11
  export * from "./CanonicalNonInsurancePayerAssociation";
9
12
  export * from "./CanonicalNonInsurancePayerId";
@@ -16,10 +16,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./OrganizationId"), exports);
18
18
  __exportStar(require("./UserId"), exports);
19
+ __exportStar(require("./BaseModel"), exports);
19
20
  __exportStar(require("./PayerId"), exports);
20
21
  __exportStar(require("./PatientId"), exports);
21
22
  __exportStar(require("./CoverageId"), exports);
22
23
  __exportStar(require("./AppointmentId"), exports);
24
+ __exportStar(require("./NoteId"), exports);
25
+ __exportStar(require("./TagId"), exports);
23
26
  __exportStar(require("./CanonicalProviderId"), exports);
24
27
  __exportStar(require("./CanonicalNonInsurancePayerAssociation"), exports);
25
28
  __exportStar(require("./CanonicalNonInsurancePayerId"), exports);
@@ -5,17 +5,11 @@ import * as serializers from "../../../../../../../index";
5
5
  import * as CandidApi from "../../../../../../../../api/index";
6
6
  import * as core from "../../../../../../../../core";
7
7
  import { CoverageId } from "../../../../common/types/CoverageId";
8
- import { OrganizationId } from "../../../../common/types/OrganizationId";
9
- import { UserId } from "../../../../common/types/UserId";
8
+ import { BaseModel } from "../../../../common/types/BaseModel";
10
9
  import { MutableCoverage } from "./MutableCoverage";
11
10
  export declare const Coverage: core.serialization.ObjectSchema<serializers.preEncounter.coverages.v1.Coverage.Raw, CandidApi.preEncounter.coverages.v1.Coverage>;
12
11
  export declare namespace Coverage {
13
- interface Raw extends MutableCoverage.Raw {
12
+ interface Raw extends BaseModel.Raw, MutableCoverage.Raw {
14
13
  id: CoverageId.Raw;
15
- organization_id: OrganizationId.Raw;
16
- deactivated: boolean;
17
- version: number;
18
- updated_at: string;
19
- updating_user_id: UserId.Raw;
20
14
  }
21
15
  }
@@ -29,16 +29,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
29
29
  exports.Coverage = void 0;
30
30
  const core = __importStar(require("../../../../../../../../core"));
31
31
  const CoverageId_1 = require("../../../../common/types/CoverageId");
32
- const OrganizationId_1 = require("../../../../common/types/OrganizationId");
33
- const UserId_1 = require("../../../../common/types/UserId");
32
+ const BaseModel_1 = require("../../../../common/types/BaseModel");
34
33
  const MutableCoverage_1 = require("./MutableCoverage");
35
34
  exports.Coverage = core.serialization
36
35
  .object({
37
36
  id: CoverageId_1.CoverageId,
38
- organizationId: core.serialization.property("organization_id", OrganizationId_1.OrganizationId),
39
- deactivated: core.serialization.boolean(),
40
- version: core.serialization.number(),
41
- updatedAt: core.serialization.property("updated_at", core.serialization.date()),
42
- updatingUserId: core.serialization.property("updating_user_id", UserId_1.UserId),
43
37
  })
38
+ .extend(BaseModel_1.BaseModel)
44
39
  .extend(MutableCoverage_1.MutableCoverage);
@@ -1,6 +1,8 @@
1
1
  export * as appointments from "./appointments";
2
2
  export * as coverages from "./coverages";
3
3
  export * as lists from "./lists";
4
+ export * as notes from "./notes";
4
5
  export * as patients from "./patients";
6
+ export * as tags from "./tags";
5
7
  export * as common from "./common";
6
8
  export * from "./common/types";
@@ -26,10 +26,12 @@ 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.common = exports.patients = exports.lists = exports.coverages = exports.appointments = void 0;
29
+ exports.common = exports.tags = exports.patients = exports.notes = exports.lists = exports.coverages = exports.appointments = void 0;
30
30
  exports.appointments = __importStar(require("./appointments"));
31
31
  exports.coverages = __importStar(require("./coverages"));
32
32
  exports.lists = __importStar(require("./lists"));
33
+ exports.notes = __importStar(require("./notes"));
33
34
  exports.patients = __importStar(require("./patients"));
35
+ exports.tags = __importStar(require("./tags"));
34
36
  exports.common = __importStar(require("./common"));
35
37
  __exportStar(require("./common/types"), 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);