candidhealth 1.15.0 → 1.17.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 (454) hide show
  1. package/Client.d.ts +3 -0
  2. package/Client.js +59 -54
  3. package/api/resources/commons/types/BadRequestErrorMessage.d.ts +3 -0
  4. package/api/resources/commons/types/BadRequestErrorMessage.js +3 -0
  5. package/api/resources/commons/types/InternalErrorMessage.d.ts +3 -0
  6. package/api/resources/commons/types/InternalErrorMessage.js +3 -0
  7. package/api/resources/commons/types/index.d.ts +2 -0
  8. package/api/resources/commons/types/index.js +2 -0
  9. package/api/resources/contracts/client/Client.d.ts +3 -0
  10. package/api/resources/contracts/client/Client.js +5 -0
  11. package/api/resources/contracts/resources/index.d.ts +1 -0
  12. package/api/resources/contracts/resources/index.js +2 -1
  13. package/api/resources/contracts/resources/v2/client/Client.d.ts +4 -0
  14. package/api/resources/contracts/resources/v2/client/Client.js +4 -0
  15. package/api/resources/contracts/resources/v3/client/Client.d.ts +109 -0
  16. package/api/resources/contracts/resources/v3/client/Client.js +603 -0
  17. package/api/resources/contracts/resources/v3/client/create.d.ts +19 -0
  18. package/api/resources/contracts/resources/v3/client/create.js +55 -0
  19. package/api/resources/contracts/resources/v3/client/createContractServiceFacility.d.ts +25 -0
  20. package/api/resources/contracts/resources/v3/client/createContractServiceFacility.js +66 -0
  21. package/api/resources/contracts/resources/v3/client/delete.d.ts +25 -0
  22. package/api/resources/contracts/resources/v3/client/delete.js +66 -0
  23. package/api/resources/contracts/resources/v3/client/get.d.ts +25 -0
  24. package/api/resources/contracts/resources/v3/client/get.js +66 -0
  25. package/api/resources/contracts/resources/v3/client/getMulti.d.ts +19 -0
  26. package/api/resources/contracts/resources/v3/client/getMulti.js +55 -0
  27. package/api/resources/contracts/resources/v3/client/index.d.ts +8 -0
  28. package/api/resources/contracts/resources/v3/client/index.js +47 -0
  29. package/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.d.ts +10 -0
  30. package/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.js +3 -0
  31. package/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.d.ts +10 -0
  32. package/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.js +3 -0
  33. package/api/resources/contracts/resources/v3/client/requests/GetMultiContractsRequest.d.ts +23 -0
  34. package/api/resources/contracts/resources/v3/client/requests/GetMultiContractsRequest.js +3 -0
  35. package/api/resources/contracts/resources/v3/client/requests/index.d.ts +3 -0
  36. package/api/resources/contracts/resources/v3/client/requests/index.js +2 -0
  37. package/api/resources/contracts/resources/v3/client/update.d.ts +31 -0
  38. package/api/resources/contracts/resources/v3/client/update.js +77 -0
  39. package/api/resources/contracts/resources/v3/client/updateContractServiceFacility.d.ts +25 -0
  40. package/api/resources/contracts/resources/v3/client/updateContractServiceFacility.js +66 -0
  41. package/api/resources/contracts/resources/v3/index.d.ts +2 -0
  42. package/api/resources/contracts/resources/v3/index.js +18 -0
  43. package/api/resources/contracts/resources/v3/types/Contract.d.ts +10 -0
  44. package/api/resources/contracts/resources/v3/types/Contract.js +3 -0
  45. package/api/resources/contracts/resources/v3/types/ContractBase.d.ts +20 -0
  46. package/api/resources/contracts/resources/v3/types/ContractBase.js +3 -0
  47. package/api/resources/contracts/resources/v3/types/ContractCreate.d.ts +9 -0
  48. package/api/resources/contracts/resources/v3/types/ContractCreate.js +3 -0
  49. package/api/resources/contracts/resources/v3/types/ContractCreateUnion.d.ts +10 -0
  50. package/api/resources/contracts/resources/v3/types/ContractCreateUnion.js +3 -0
  51. package/api/resources/contracts/resources/v3/types/ContractId.d.ts +5 -0
  52. package/api/resources/contracts/resources/v3/types/ContractId.js +7 -0
  53. package/api/resources/contracts/resources/v3/types/ContractServiceFacility.d.ts +6 -0
  54. package/api/resources/contracts/resources/v3/types/ContractServiceFacility.js +3 -0
  55. package/api/resources/contracts/resources/v3/types/ContractServiceFacilityBase.d.ts +6 -0
  56. package/api/resources/contracts/resources/v3/types/ContractServiceFacilityBase.js +3 -0
  57. package/api/resources/contracts/resources/v3/types/ContractServiceFacilityId.d.ts +5 -0
  58. package/api/resources/contracts/resources/v3/types/ContractServiceFacilityId.js +7 -0
  59. package/api/resources/contracts/resources/v3/types/ContractType.d.ts +9 -0
  60. package/api/resources/contracts/resources/v3/types/ContractType.js +12 -0
  61. package/api/resources/contracts/resources/v3/types/ContractUnion.d.ts +10 -0
  62. package/api/resources/contracts/resources/v3/types/ContractUnion.js +3 -0
  63. package/api/resources/contracts/resources/v3/types/ContractUpdate.d.ts +17 -0
  64. package/api/resources/contracts/resources/v3/types/ContractUpdate.js +3 -0
  65. package/api/resources/contracts/resources/v3/types/ContractUpdateUnion.d.ts +10 -0
  66. package/api/resources/contracts/resources/v3/types/ContractUpdateUnion.js +3 -0
  67. package/api/resources/contracts/resources/v3/types/ContractWithProvidersUnion.d.ts +10 -0
  68. package/api/resources/contracts/resources/v3/types/ContractWithProvidersUnion.js +3 -0
  69. package/api/resources/contracts/resources/v3/types/ContractingProviderId.d.ts +5 -0
  70. package/api/resources/contracts/resources/v3/types/ContractingProviderId.js +7 -0
  71. package/api/resources/contracts/resources/v3/types/ContractsPage.d.ts +4 -0
  72. package/api/resources/contracts/resources/v3/types/ContractsPage.js +3 -0
  73. package/api/resources/contracts/resources/v3/types/InstitutionalContract.d.ts +5 -0
  74. package/api/resources/contracts/resources/v3/types/InstitutionalContract.js +3 -0
  75. package/api/resources/contracts/resources/v3/types/InstitutionalContractCreate.d.ts +4 -0
  76. package/api/resources/contracts/resources/v3/types/InstitutionalContractCreate.js +3 -0
  77. package/api/resources/contracts/resources/v3/types/InstitutionalContractUpdate.d.ts +4 -0
  78. package/api/resources/contracts/resources/v3/types/InstitutionalContractUpdate.js +3 -0
  79. package/api/resources/contracts/resources/v3/types/ProfessionalContract.d.ts +5 -0
  80. package/api/resources/contracts/resources/v3/types/ProfessionalContract.js +3 -0
  81. package/api/resources/contracts/resources/v3/types/ProfessionalContractCreate.d.ts +4 -0
  82. package/api/resources/contracts/resources/v3/types/ProfessionalContractCreate.js +3 -0
  83. package/api/resources/contracts/resources/v3/types/ProfessionalContractUpdate.d.ts +4 -0
  84. package/api/resources/contracts/resources/v3/types/ProfessionalContractUpdate.js +3 -0
  85. package/api/resources/contracts/resources/v3/types/RenderingProviderid.d.ts +5 -0
  86. package/api/resources/contracts/resources/v3/types/RenderingProviderid.js +7 -0
  87. package/api/resources/contracts/resources/v3/types/index.d.ts +22 -0
  88. package/api/resources/contracts/resources/v3/types/index.js +38 -0
  89. package/api/resources/events/client/Client.d.ts +14 -0
  90. package/api/resources/events/client/Client.js +15 -0
  91. package/api/resources/events/client/index.d.ts +1 -0
  92. package/api/resources/events/client/index.js +2 -0
  93. package/api/resources/events/index.d.ts +2 -0
  94. package/api/resources/events/index.js +18 -0
  95. package/api/resources/events/resources/index.d.ts +1 -0
  96. package/api/resources/events/resources/index.js +37 -0
  97. package/api/resources/events/resources/v1/client/Client.d.ts +35 -0
  98. package/api/resources/events/resources/v1/client/Client.js +227 -0
  99. package/api/resources/events/resources/v1/client/get.d.ts +37 -0
  100. package/api/resources/events/resources/v1/client/get.js +88 -0
  101. package/api/resources/events/resources/v1/client/index.d.ts +3 -0
  102. package/api/resources/events/resources/v1/client/index.js +42 -0
  103. package/api/resources/events/resources/v1/client/requests/GetEventScanRequest.d.ts +16 -0
  104. package/api/resources/events/resources/v1/client/requests/GetEventScanRequest.js +3 -0
  105. package/api/resources/events/resources/v1/client/requests/index.d.ts +1 -0
  106. package/api/resources/events/resources/v1/client/requests/index.js +2 -0
  107. package/api/resources/events/resources/v1/client/scan.d.ts +31 -0
  108. package/api/resources/events/resources/v1/client/scan.js +77 -0
  109. package/api/resources/events/resources/v1/index.d.ts +2 -0
  110. package/api/resources/events/resources/v1/index.js +18 -0
  111. package/api/resources/events/resources/v1/types/Event.d.ts +9 -0
  112. package/api/resources/events/resources/v1/types/Event.js +3 -0
  113. package/api/resources/events/resources/v1/types/EventId.d.ts +5 -0
  114. package/api/resources/events/resources/v1/types/EventId.js +7 -0
  115. package/api/resources/events/resources/v1/types/EventScanPage.d.ts +5 -0
  116. package/api/resources/events/resources/v1/types/EventScanPage.js +3 -0
  117. package/api/resources/events/resources/v1/types/index.d.ts +3 -0
  118. package/api/resources/events/resources/v1/types/index.js +19 -0
  119. package/api/resources/healthCareCodeInformation/resources/v1/types/D8Date.d.ts +5 -1
  120. package/api/resources/healthCareCodeInformation/resources/v1/types/D8Date.js +4 -0
  121. package/api/resources/healthCareCodeInformation/resources/v1/types/Rd8Date.d.ts +2 -14
  122. package/api/resources/index.d.ts +1 -0
  123. package/api/resources/index.js +3 -2
  124. package/api/resources/patientAr/resources/v1/client/Client.d.ts +0 -4
  125. package/api/resources/patientAr/resources/v1/client/Client.js +0 -4
  126. package/dist/Client.d.ts +3 -0
  127. package/dist/Client.js +59 -54
  128. package/dist/api/resources/commons/types/BadRequestErrorMessage.d.ts +3 -0
  129. package/dist/api/resources/commons/types/BadRequestErrorMessage.js +3 -0
  130. package/dist/api/resources/commons/types/InternalErrorMessage.d.ts +3 -0
  131. package/dist/api/resources/commons/types/InternalErrorMessage.js +3 -0
  132. package/dist/api/resources/commons/types/index.d.ts +2 -0
  133. package/dist/api/resources/commons/types/index.js +2 -0
  134. package/dist/api/resources/contracts/client/Client.d.ts +3 -0
  135. package/dist/api/resources/contracts/client/Client.js +5 -0
  136. package/dist/api/resources/contracts/resources/index.d.ts +1 -0
  137. package/dist/api/resources/contracts/resources/index.js +2 -1
  138. package/dist/api/resources/contracts/resources/v2/client/Client.d.ts +4 -0
  139. package/dist/api/resources/contracts/resources/v2/client/Client.js +4 -0
  140. package/dist/api/resources/contracts/resources/v3/client/Client.d.ts +109 -0
  141. package/dist/api/resources/contracts/resources/v3/client/Client.js +603 -0
  142. package/dist/api/resources/contracts/resources/v3/client/create.d.ts +19 -0
  143. package/dist/api/resources/contracts/resources/v3/client/create.js +55 -0
  144. package/dist/api/resources/contracts/resources/v3/client/createContractServiceFacility.d.ts +25 -0
  145. package/dist/api/resources/contracts/resources/v3/client/createContractServiceFacility.js +66 -0
  146. package/dist/api/resources/contracts/resources/v3/client/delete.d.ts +25 -0
  147. package/dist/api/resources/contracts/resources/v3/client/delete.js +66 -0
  148. package/dist/api/resources/contracts/resources/v3/client/get.d.ts +25 -0
  149. package/dist/api/resources/contracts/resources/v3/client/get.js +66 -0
  150. package/dist/api/resources/contracts/resources/v3/client/getMulti.d.ts +19 -0
  151. package/dist/api/resources/contracts/resources/v3/client/getMulti.js +55 -0
  152. package/dist/api/resources/contracts/resources/v3/client/index.d.ts +8 -0
  153. package/dist/api/resources/contracts/resources/v3/client/index.js +47 -0
  154. package/dist/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.d.ts +10 -0
  155. package/dist/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.js +3 -0
  156. package/dist/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.d.ts +10 -0
  157. package/dist/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.js +3 -0
  158. package/dist/api/resources/contracts/resources/v3/client/requests/GetMultiContractsRequest.d.ts +23 -0
  159. package/dist/api/resources/contracts/resources/v3/client/requests/GetMultiContractsRequest.js +3 -0
  160. package/dist/api/resources/contracts/resources/v3/client/requests/index.d.ts +3 -0
  161. package/dist/api/resources/contracts/resources/v3/client/requests/index.js +2 -0
  162. package/dist/api/resources/contracts/resources/v3/client/update.d.ts +31 -0
  163. package/dist/api/resources/contracts/resources/v3/client/update.js +77 -0
  164. package/dist/api/resources/contracts/resources/v3/client/updateContractServiceFacility.d.ts +25 -0
  165. package/dist/api/resources/contracts/resources/v3/client/updateContractServiceFacility.js +66 -0
  166. package/dist/api/resources/contracts/resources/v3/index.d.ts +2 -0
  167. package/dist/api/resources/contracts/resources/v3/index.js +18 -0
  168. package/dist/api/resources/contracts/resources/v3/types/Contract.d.ts +10 -0
  169. package/dist/api/resources/contracts/resources/v3/types/Contract.js +3 -0
  170. package/dist/api/resources/contracts/resources/v3/types/ContractBase.d.ts +20 -0
  171. package/dist/api/resources/contracts/resources/v3/types/ContractBase.js +3 -0
  172. package/dist/api/resources/contracts/resources/v3/types/ContractCreate.d.ts +9 -0
  173. package/dist/api/resources/contracts/resources/v3/types/ContractCreate.js +3 -0
  174. package/dist/api/resources/contracts/resources/v3/types/ContractCreateUnion.d.ts +10 -0
  175. package/dist/api/resources/contracts/resources/v3/types/ContractCreateUnion.js +3 -0
  176. package/dist/api/resources/contracts/resources/v3/types/ContractId.d.ts +5 -0
  177. package/dist/api/resources/contracts/resources/v3/types/ContractId.js +7 -0
  178. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacility.d.ts +6 -0
  179. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacility.js +3 -0
  180. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacilityBase.d.ts +6 -0
  181. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacilityBase.js +3 -0
  182. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacilityId.d.ts +5 -0
  183. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacilityId.js +7 -0
  184. package/dist/api/resources/contracts/resources/v3/types/ContractType.d.ts +9 -0
  185. package/dist/api/resources/contracts/resources/v3/types/ContractType.js +12 -0
  186. package/dist/api/resources/contracts/resources/v3/types/ContractUnion.d.ts +10 -0
  187. package/dist/api/resources/contracts/resources/v3/types/ContractUnion.js +3 -0
  188. package/dist/api/resources/contracts/resources/v3/types/ContractUpdate.d.ts +17 -0
  189. package/dist/api/resources/contracts/resources/v3/types/ContractUpdate.js +3 -0
  190. package/dist/api/resources/contracts/resources/v3/types/ContractUpdateUnion.d.ts +10 -0
  191. package/dist/api/resources/contracts/resources/v3/types/ContractUpdateUnion.js +3 -0
  192. package/dist/api/resources/contracts/resources/v3/types/ContractWithProvidersUnion.d.ts +10 -0
  193. package/dist/api/resources/contracts/resources/v3/types/ContractWithProvidersUnion.js +3 -0
  194. package/dist/api/resources/contracts/resources/v3/types/ContractingProviderId.d.ts +5 -0
  195. package/dist/api/resources/contracts/resources/v3/types/ContractingProviderId.js +7 -0
  196. package/dist/api/resources/contracts/resources/v3/types/ContractsPage.d.ts +4 -0
  197. package/dist/api/resources/contracts/resources/v3/types/ContractsPage.js +3 -0
  198. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContract.d.ts +5 -0
  199. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContract.js +3 -0
  200. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContractCreate.d.ts +4 -0
  201. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContractCreate.js +3 -0
  202. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContractUpdate.d.ts +4 -0
  203. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContractUpdate.js +3 -0
  204. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContract.d.ts +5 -0
  205. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContract.js +3 -0
  206. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContractCreate.d.ts +4 -0
  207. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContractCreate.js +3 -0
  208. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContractUpdate.d.ts +4 -0
  209. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContractUpdate.js +3 -0
  210. package/dist/api/resources/contracts/resources/v3/types/RenderingProviderid.d.ts +5 -0
  211. package/dist/api/resources/contracts/resources/v3/types/RenderingProviderid.js +7 -0
  212. package/dist/api/resources/contracts/resources/v3/types/index.d.ts +22 -0
  213. package/dist/api/resources/contracts/resources/v3/types/index.js +38 -0
  214. package/dist/api/resources/events/client/Client.d.ts +14 -0
  215. package/dist/api/resources/events/client/Client.js +15 -0
  216. package/dist/api/resources/events/client/index.d.ts +1 -0
  217. package/dist/api/resources/events/client/index.js +2 -0
  218. package/dist/api/resources/events/index.d.ts +2 -0
  219. package/dist/api/resources/events/index.js +18 -0
  220. package/dist/api/resources/events/resources/index.d.ts +1 -0
  221. package/dist/api/resources/events/resources/index.js +37 -0
  222. package/dist/api/resources/events/resources/v1/client/Client.d.ts +35 -0
  223. package/dist/api/resources/events/resources/v1/client/Client.js +227 -0
  224. package/dist/api/resources/events/resources/v1/client/get.d.ts +37 -0
  225. package/dist/api/resources/events/resources/v1/client/get.js +88 -0
  226. package/dist/api/resources/events/resources/v1/client/index.d.ts +3 -0
  227. package/dist/api/resources/events/resources/v1/client/index.js +42 -0
  228. package/dist/api/resources/events/resources/v1/client/requests/GetEventScanRequest.d.ts +16 -0
  229. package/dist/api/resources/events/resources/v1/client/requests/GetEventScanRequest.js +3 -0
  230. package/dist/api/resources/events/resources/v1/client/requests/index.d.ts +1 -0
  231. package/dist/api/resources/events/resources/v1/client/requests/index.js +2 -0
  232. package/dist/api/resources/events/resources/v1/client/scan.d.ts +31 -0
  233. package/dist/api/resources/events/resources/v1/client/scan.js +77 -0
  234. package/dist/api/resources/events/resources/v1/index.d.ts +2 -0
  235. package/dist/api/resources/events/resources/v1/index.js +18 -0
  236. package/dist/api/resources/events/resources/v1/types/Event.d.ts +9 -0
  237. package/dist/api/resources/events/resources/v1/types/Event.js +3 -0
  238. package/dist/api/resources/events/resources/v1/types/EventId.d.ts +5 -0
  239. package/dist/api/resources/events/resources/v1/types/EventId.js +7 -0
  240. package/dist/api/resources/events/resources/v1/types/EventScanPage.d.ts +5 -0
  241. package/dist/api/resources/events/resources/v1/types/EventScanPage.js +3 -0
  242. package/dist/api/resources/events/resources/v1/types/index.d.ts +3 -0
  243. package/dist/api/resources/events/resources/v1/types/index.js +19 -0
  244. package/dist/api/resources/healthCareCodeInformation/resources/v1/types/D8Date.d.ts +5 -1
  245. package/dist/api/resources/healthCareCodeInformation/resources/v1/types/D8Date.js +4 -0
  246. package/dist/api/resources/healthCareCodeInformation/resources/v1/types/Rd8Date.d.ts +2 -14
  247. package/dist/api/resources/index.d.ts +1 -0
  248. package/dist/api/resources/index.js +3 -2
  249. package/dist/api/resources/patientAr/resources/v1/client/Client.d.ts +0 -4
  250. package/dist/api/resources/patientAr/resources/v1/client/Client.js +0 -4
  251. package/dist/serialization/resources/commons/types/BadRequestErrorMessage.d.ts +9 -0
  252. package/dist/serialization/resources/commons/types/BadRequestErrorMessage.js +41 -0
  253. package/dist/serialization/resources/commons/types/InternalErrorMessage.d.ts +9 -0
  254. package/dist/serialization/resources/commons/types/InternalErrorMessage.js +41 -0
  255. package/dist/serialization/resources/commons/types/index.d.ts +2 -0
  256. package/dist/serialization/resources/commons/types/index.js +2 -0
  257. package/dist/serialization/resources/contracts/resources/index.d.ts +1 -0
  258. package/dist/serialization/resources/contracts/resources/index.js +2 -1
  259. package/dist/serialization/resources/contracts/resources/v3/client/createContractServiceFacility.d.ts +12 -0
  260. package/dist/serialization/resources/contracts/resources/v3/client/createContractServiceFacility.js +69 -0
  261. package/dist/serialization/resources/contracts/resources/v3/client/delete.d.ts +12 -0
  262. package/dist/serialization/resources/contracts/resources/v3/client/delete.js +69 -0
  263. package/dist/serialization/resources/contracts/resources/v3/client/get.d.ts +12 -0
  264. package/dist/serialization/resources/contracts/resources/v3/client/get.js +69 -0
  265. package/dist/serialization/resources/contracts/resources/v3/client/index.d.ts +6 -0
  266. package/dist/serialization/resources/contracts/resources/v3/client/index.js +45 -0
  267. package/dist/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.d.ts +9 -0
  268. package/dist/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.js +40 -0
  269. package/dist/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.d.ts +10 -0
  270. package/dist/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.js +42 -0
  271. package/dist/serialization/resources/contracts/resources/v3/client/requests/index.d.ts +2 -0
  272. package/dist/serialization/resources/contracts/resources/v3/client/requests/index.js +7 -0
  273. package/dist/serialization/resources/contracts/resources/v3/client/update.d.ts +17 -0
  274. package/dist/serialization/resources/contracts/resources/v3/client/update.js +75 -0
  275. package/dist/serialization/resources/contracts/resources/v3/client/updateContractServiceFacility.d.ts +12 -0
  276. package/dist/serialization/resources/contracts/resources/v3/client/updateContractServiceFacility.js +69 -0
  277. package/dist/serialization/resources/contracts/resources/v3/index.d.ts +2 -0
  278. package/dist/serialization/resources/contracts/resources/v3/index.js +18 -0
  279. package/dist/serialization/resources/contracts/resources/v3/types/Contract.d.ts +16 -0
  280. package/dist/serialization/resources/contracts/resources/v3/types/Contract.js +50 -0
  281. package/dist/serialization/resources/contracts/resources/v3/types/ContractBase.d.ts +21 -0
  282. package/dist/serialization/resources/contracts/resources/v3/types/ContractBase.js +53 -0
  283. package/dist/serialization/resources/contracts/resources/v3/types/ContractCreate.d.ts +14 -0
  284. package/dist/serialization/resources/contracts/resources/v3/types/ContractCreate.js +48 -0
  285. package/dist/serialization/resources/contracts/resources/v3/types/ContractCreateUnion.d.ts +15 -0
  286. package/dist/serialization/resources/contracts/resources/v3/types/ContractCreateUnion.js +49 -0
  287. package/dist/serialization/resources/contracts/resources/v3/types/ContractId.d.ts +7 -0
  288. package/dist/serialization/resources/contracts/resources/v3/types/ContractId.js +43 -0
  289. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacility.d.ts +13 -0
  290. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacility.js +47 -0
  291. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityBase.d.ts +10 -0
  292. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityBase.js +42 -0
  293. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityId.d.ts +7 -0
  294. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityId.js +43 -0
  295. package/dist/serialization/resources/contracts/resources/v3/types/ContractType.d.ts +7 -0
  296. package/dist/serialization/resources/contracts/resources/v3/types/ContractType.js +39 -0
  297. package/dist/serialization/resources/contracts/resources/v3/types/ContractUnion.d.ts +14 -0
  298. package/dist/serialization/resources/contracts/resources/v3/types/ContractUnion.js +48 -0
  299. package/dist/serialization/resources/contracts/resources/v3/types/ContractUpdate.d.ts +22 -0
  300. package/dist/serialization/resources/contracts/resources/v3/types/ContractUpdate.js +54 -0
  301. package/dist/serialization/resources/contracts/resources/v3/types/ContractUpdateUnion.d.ts +15 -0
  302. package/dist/serialization/resources/contracts/resources/v3/types/ContractUpdateUnion.js +49 -0
  303. package/dist/serialization/resources/contracts/resources/v3/types/ContractWithProvidersUnion.d.ts +15 -0
  304. package/dist/serialization/resources/contracts/resources/v3/types/ContractWithProvidersUnion.js +49 -0
  305. package/dist/serialization/resources/contracts/resources/v3/types/ContractingProviderId.d.ts +7 -0
  306. package/dist/serialization/resources/contracts/resources/v3/types/ContractingProviderId.js +43 -0
  307. package/dist/serialization/resources/contracts/resources/v3/types/ContractsPage.d.ts +11 -0
  308. package/dist/serialization/resources/contracts/resources/v3/types/ContractsPage.js +45 -0
  309. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContract.d.ts +11 -0
  310. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContract.js +45 -0
  311. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContractCreate.d.ts +11 -0
  312. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContractCreate.js +45 -0
  313. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContractUpdate.d.ts +11 -0
  314. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContractUpdate.js +45 -0
  315. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContract.d.ts +10 -0
  316. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContract.js +44 -0
  317. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContractCreate.d.ts +11 -0
  318. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContractCreate.js +45 -0
  319. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContractUpdate.d.ts +11 -0
  320. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContractUpdate.js +45 -0
  321. package/dist/serialization/resources/contracts/resources/v3/types/RenderingProviderid.d.ts +7 -0
  322. package/dist/serialization/resources/contracts/resources/v3/types/RenderingProviderid.js +43 -0
  323. package/dist/serialization/resources/contracts/resources/v3/types/index.d.ts +22 -0
  324. package/dist/serialization/resources/contracts/resources/v3/types/index.js +38 -0
  325. package/dist/serialization/resources/events/index.d.ts +1 -0
  326. package/dist/serialization/resources/events/index.js +17 -0
  327. package/dist/serialization/resources/events/resources/index.d.ts +1 -0
  328. package/dist/serialization/resources/events/resources/index.js +37 -0
  329. package/dist/serialization/resources/events/resources/v1/client/get.d.ts +22 -0
  330. package/dist/serialization/resources/events/resources/v1/client/get.js +81 -0
  331. package/dist/serialization/resources/events/resources/v1/client/index.d.ts +2 -0
  332. package/dist/serialization/resources/events/resources/v1/client/index.js +38 -0
  333. package/dist/serialization/resources/events/resources/v1/client/scan.d.ts +17 -0
  334. package/dist/serialization/resources/events/resources/v1/client/scan.js +75 -0
  335. package/dist/serialization/resources/events/resources/v1/index.d.ts +2 -0
  336. package/dist/serialization/resources/events/resources/v1/index.js +18 -0
  337. package/dist/serialization/resources/events/resources/v1/types/Event.d.ts +15 -0
  338. package/dist/serialization/resources/events/resources/v1/types/Event.js +47 -0
  339. package/dist/serialization/resources/events/resources/v1/types/EventId.d.ts +7 -0
  340. package/dist/serialization/resources/events/resources/v1/types/EventId.js +43 -0
  341. package/dist/serialization/resources/events/resources/v1/types/EventScanPage.d.ts +12 -0
  342. package/dist/serialization/resources/events/resources/v1/types/EventScanPage.js +44 -0
  343. package/dist/serialization/resources/events/resources/v1/types/index.d.ts +3 -0
  344. package/dist/serialization/resources/events/resources/v1/types/index.js +19 -0
  345. package/dist/serialization/resources/healthCareCodeInformation/resources/v1/types/D8Date.d.ts +1 -1
  346. package/dist/serialization/resources/healthCareCodeInformation/resources/v1/types/D8Date.js +5 -1
  347. package/dist/serialization/resources/healthCareCodeInformation/resources/v1/types/Rd8Date.js +2 -2
  348. package/dist/serialization/resources/index.d.ts +1 -0
  349. package/dist/serialization/resources/index.js +3 -2
  350. package/dist/version.d.ts +1 -1
  351. package/dist/version.js +1 -1
  352. package/package.json +1 -1
  353. package/reference.md +574 -22
  354. package/serialization/resources/commons/types/BadRequestErrorMessage.d.ts +9 -0
  355. package/serialization/resources/commons/types/BadRequestErrorMessage.js +41 -0
  356. package/serialization/resources/commons/types/InternalErrorMessage.d.ts +9 -0
  357. package/serialization/resources/commons/types/InternalErrorMessage.js +41 -0
  358. package/serialization/resources/commons/types/index.d.ts +2 -0
  359. package/serialization/resources/commons/types/index.js +2 -0
  360. package/serialization/resources/contracts/resources/index.d.ts +1 -0
  361. package/serialization/resources/contracts/resources/index.js +2 -1
  362. package/serialization/resources/contracts/resources/v3/client/createContractServiceFacility.d.ts +12 -0
  363. package/serialization/resources/contracts/resources/v3/client/createContractServiceFacility.js +69 -0
  364. package/serialization/resources/contracts/resources/v3/client/delete.d.ts +12 -0
  365. package/serialization/resources/contracts/resources/v3/client/delete.js +69 -0
  366. package/serialization/resources/contracts/resources/v3/client/get.d.ts +12 -0
  367. package/serialization/resources/contracts/resources/v3/client/get.js +69 -0
  368. package/serialization/resources/contracts/resources/v3/client/index.d.ts +6 -0
  369. package/serialization/resources/contracts/resources/v3/client/index.js +45 -0
  370. package/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.d.ts +9 -0
  371. package/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.js +40 -0
  372. package/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.d.ts +10 -0
  373. package/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.js +42 -0
  374. package/serialization/resources/contracts/resources/v3/client/requests/index.d.ts +2 -0
  375. package/serialization/resources/contracts/resources/v3/client/requests/index.js +7 -0
  376. package/serialization/resources/contracts/resources/v3/client/update.d.ts +17 -0
  377. package/serialization/resources/contracts/resources/v3/client/update.js +75 -0
  378. package/serialization/resources/contracts/resources/v3/client/updateContractServiceFacility.d.ts +12 -0
  379. package/serialization/resources/contracts/resources/v3/client/updateContractServiceFacility.js +69 -0
  380. package/serialization/resources/contracts/resources/v3/index.d.ts +2 -0
  381. package/serialization/resources/contracts/resources/v3/index.js +18 -0
  382. package/serialization/resources/contracts/resources/v3/types/Contract.d.ts +16 -0
  383. package/serialization/resources/contracts/resources/v3/types/Contract.js +50 -0
  384. package/serialization/resources/contracts/resources/v3/types/ContractBase.d.ts +21 -0
  385. package/serialization/resources/contracts/resources/v3/types/ContractBase.js +53 -0
  386. package/serialization/resources/contracts/resources/v3/types/ContractCreate.d.ts +14 -0
  387. package/serialization/resources/contracts/resources/v3/types/ContractCreate.js +48 -0
  388. package/serialization/resources/contracts/resources/v3/types/ContractCreateUnion.d.ts +15 -0
  389. package/serialization/resources/contracts/resources/v3/types/ContractCreateUnion.js +49 -0
  390. package/serialization/resources/contracts/resources/v3/types/ContractId.d.ts +7 -0
  391. package/serialization/resources/contracts/resources/v3/types/ContractId.js +43 -0
  392. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacility.d.ts +13 -0
  393. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacility.js +47 -0
  394. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityBase.d.ts +10 -0
  395. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityBase.js +42 -0
  396. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityId.d.ts +7 -0
  397. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityId.js +43 -0
  398. package/serialization/resources/contracts/resources/v3/types/ContractType.d.ts +7 -0
  399. package/serialization/resources/contracts/resources/v3/types/ContractType.js +39 -0
  400. package/serialization/resources/contracts/resources/v3/types/ContractUnion.d.ts +14 -0
  401. package/serialization/resources/contracts/resources/v3/types/ContractUnion.js +48 -0
  402. package/serialization/resources/contracts/resources/v3/types/ContractUpdate.d.ts +22 -0
  403. package/serialization/resources/contracts/resources/v3/types/ContractUpdate.js +54 -0
  404. package/serialization/resources/contracts/resources/v3/types/ContractUpdateUnion.d.ts +15 -0
  405. package/serialization/resources/contracts/resources/v3/types/ContractUpdateUnion.js +49 -0
  406. package/serialization/resources/contracts/resources/v3/types/ContractWithProvidersUnion.d.ts +15 -0
  407. package/serialization/resources/contracts/resources/v3/types/ContractWithProvidersUnion.js +49 -0
  408. package/serialization/resources/contracts/resources/v3/types/ContractingProviderId.d.ts +7 -0
  409. package/serialization/resources/contracts/resources/v3/types/ContractingProviderId.js +43 -0
  410. package/serialization/resources/contracts/resources/v3/types/ContractsPage.d.ts +11 -0
  411. package/serialization/resources/contracts/resources/v3/types/ContractsPage.js +45 -0
  412. package/serialization/resources/contracts/resources/v3/types/InstitutionalContract.d.ts +11 -0
  413. package/serialization/resources/contracts/resources/v3/types/InstitutionalContract.js +45 -0
  414. package/serialization/resources/contracts/resources/v3/types/InstitutionalContractCreate.d.ts +11 -0
  415. package/serialization/resources/contracts/resources/v3/types/InstitutionalContractCreate.js +45 -0
  416. package/serialization/resources/contracts/resources/v3/types/InstitutionalContractUpdate.d.ts +11 -0
  417. package/serialization/resources/contracts/resources/v3/types/InstitutionalContractUpdate.js +45 -0
  418. package/serialization/resources/contracts/resources/v3/types/ProfessionalContract.d.ts +10 -0
  419. package/serialization/resources/contracts/resources/v3/types/ProfessionalContract.js +44 -0
  420. package/serialization/resources/contracts/resources/v3/types/ProfessionalContractCreate.d.ts +11 -0
  421. package/serialization/resources/contracts/resources/v3/types/ProfessionalContractCreate.js +45 -0
  422. package/serialization/resources/contracts/resources/v3/types/ProfessionalContractUpdate.d.ts +11 -0
  423. package/serialization/resources/contracts/resources/v3/types/ProfessionalContractUpdate.js +45 -0
  424. package/serialization/resources/contracts/resources/v3/types/RenderingProviderid.d.ts +7 -0
  425. package/serialization/resources/contracts/resources/v3/types/RenderingProviderid.js +43 -0
  426. package/serialization/resources/contracts/resources/v3/types/index.d.ts +22 -0
  427. package/serialization/resources/contracts/resources/v3/types/index.js +38 -0
  428. package/serialization/resources/events/index.d.ts +1 -0
  429. package/serialization/resources/events/index.js +17 -0
  430. package/serialization/resources/events/resources/index.d.ts +1 -0
  431. package/serialization/resources/events/resources/index.js +37 -0
  432. package/serialization/resources/events/resources/v1/client/get.d.ts +22 -0
  433. package/serialization/resources/events/resources/v1/client/get.js +81 -0
  434. package/serialization/resources/events/resources/v1/client/index.d.ts +2 -0
  435. package/serialization/resources/events/resources/v1/client/index.js +38 -0
  436. package/serialization/resources/events/resources/v1/client/scan.d.ts +17 -0
  437. package/serialization/resources/events/resources/v1/client/scan.js +75 -0
  438. package/serialization/resources/events/resources/v1/index.d.ts +2 -0
  439. package/serialization/resources/events/resources/v1/index.js +18 -0
  440. package/serialization/resources/events/resources/v1/types/Event.d.ts +15 -0
  441. package/serialization/resources/events/resources/v1/types/Event.js +47 -0
  442. package/serialization/resources/events/resources/v1/types/EventId.d.ts +7 -0
  443. package/serialization/resources/events/resources/v1/types/EventId.js +43 -0
  444. package/serialization/resources/events/resources/v1/types/EventScanPage.d.ts +12 -0
  445. package/serialization/resources/events/resources/v1/types/EventScanPage.js +44 -0
  446. package/serialization/resources/events/resources/v1/types/index.d.ts +3 -0
  447. package/serialization/resources/events/resources/v1/types/index.js +19 -0
  448. package/serialization/resources/healthCareCodeInformation/resources/v1/types/D8Date.d.ts +1 -1
  449. package/serialization/resources/healthCareCodeInformation/resources/v1/types/D8Date.js +5 -1
  450. package/serialization/resources/healthCareCodeInformation/resources/v1/types/Rd8Date.js +2 -2
  451. package/serialization/resources/index.d.ts +1 -0
  452. package/serialization/resources/index.js +3 -2
  453. package/version.d.ts +1 -1
  454. package/version.js +1 -1
package/reference.md CHANGED
@@ -807,6 +807,320 @@ await client.chargeCapture.v1.updatePostBilledChanges({
807
807
  <dl>
808
808
  <dd>
809
809
 
810
+ #### 📝 Description
811
+
812
+ <dl>
813
+ <dd>
814
+
815
+ <dl>
816
+ <dd>
817
+
818
+ This API provides access to Professional Contracts. For Professional and Institutional Contracts use Contracts V3.
819
+ </dd>
820
+ </dl>
821
+ </dd>
822
+ </dl>
823
+
824
+ #### 🔌 Usage
825
+
826
+ <dl>
827
+ <dd>
828
+
829
+ <dl>
830
+ <dd>
831
+
832
+ ```typescript
833
+ await client.contracts.v2.get(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
834
+
835
+ ```
836
+ </dd>
837
+ </dl>
838
+ </dd>
839
+ </dl>
840
+
841
+ #### ⚙️ Parameters
842
+
843
+ <dl>
844
+ <dd>
845
+
846
+ <dl>
847
+ <dd>
848
+
849
+ **contractId:** `CandidApi.ContractId`
850
+
851
+ </dd>
852
+ </dl>
853
+
854
+ <dl>
855
+ <dd>
856
+
857
+ **requestOptions:** `V2.RequestOptions`
858
+
859
+ </dd>
860
+ </dl>
861
+ </dd>
862
+ </dl>
863
+
864
+
865
+ </dd>
866
+ </dl>
867
+ </details>
868
+
869
+ <details><summary><code>client.contracts.v2.<a href="/src/api/resources/contracts/resources/v2/client/Client.ts">getMulti</a>({ ...params }) -> core.APIResponse<CandidApi.ContractsPage, CandidApi.contracts.v2.getMulti.Error></code></summary>
870
+ <dl>
871
+ <dd>
872
+
873
+ #### 📝 Description
874
+
875
+ <dl>
876
+ <dd>
877
+
878
+ <dl>
879
+ <dd>
880
+
881
+ This API provides access to Professional Contracts. For Professional and Institutional Contracts use Contracts V3.
882
+ </dd>
883
+ </dl>
884
+ </dd>
885
+ </dl>
886
+
887
+ #### 🔌 Usage
888
+
889
+ <dl>
890
+ <dd>
891
+
892
+ <dl>
893
+ <dd>
894
+
895
+ ```typescript
896
+ await client.contracts.v2.getMulti();
897
+
898
+ ```
899
+ </dd>
900
+ </dl>
901
+ </dd>
902
+ </dl>
903
+
904
+ #### ⚙️ Parameters
905
+
906
+ <dl>
907
+ <dd>
908
+
909
+ <dl>
910
+ <dd>
911
+
912
+ **request:** `CandidApi.contracts.v2.GetMultiContractsRequest`
913
+
914
+ </dd>
915
+ </dl>
916
+
917
+ <dl>
918
+ <dd>
919
+
920
+ **requestOptions:** `V2.RequestOptions`
921
+
922
+ </dd>
923
+ </dl>
924
+ </dd>
925
+ </dl>
926
+
927
+
928
+ </dd>
929
+ </dl>
930
+ </details>
931
+
932
+ <details><summary><code>client.contracts.v2.<a href="/src/api/resources/contracts/resources/v2/client/Client.ts">create</a>({ ...params }) -> core.APIResponse<CandidApi.ContractWithProviders, CandidApi.contracts.v2.create.Error></code></summary>
933
+ <dl>
934
+ <dd>
935
+
936
+ #### 📝 Description
937
+
938
+ <dl>
939
+ <dd>
940
+
941
+ <dl>
942
+ <dd>
943
+
944
+ Creates a new contract within the user's current organization
945
+ </dd>
946
+ </dl>
947
+ </dd>
948
+ </dl>
949
+
950
+ #### 🔌 Usage
951
+
952
+ <dl>
953
+ <dd>
954
+
955
+ <dl>
956
+ <dd>
957
+
958
+ ```typescript
959
+ await client.contracts.v2.create({
960
+ contractingProviderId: CandidApi.ContractingProviderId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
961
+ renderingProviderIds: new Set([CandidApi.RenderingProviderid("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32")]),
962
+ payerUuid: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
963
+ effectiveDate: CandidApi.Date_("effective_date"),
964
+ regions: {
965
+ type: "states",
966
+ states: ["AA", "AA"]
967
+ },
968
+ commercialInsuranceTypes: {
969
+ type: "allApply"
970
+ },
971
+ medicareInsuranceTypes: {
972
+ type: "allApply"
973
+ },
974
+ medicaidInsuranceTypes: {
975
+ type: "allApply"
976
+ }
977
+ });
978
+
979
+ ```
980
+ </dd>
981
+ </dl>
982
+ </dd>
983
+ </dl>
984
+
985
+ #### ⚙️ Parameters
986
+
987
+ <dl>
988
+ <dd>
989
+
990
+ <dl>
991
+ <dd>
992
+
993
+ **request:** `CandidApi.contracts.v2.ContractCreate`
994
+
995
+ </dd>
996
+ </dl>
997
+
998
+ <dl>
999
+ <dd>
1000
+
1001
+ **requestOptions:** `V2.RequestOptions`
1002
+
1003
+ </dd>
1004
+ </dl>
1005
+ </dd>
1006
+ </dl>
1007
+
1008
+
1009
+ </dd>
1010
+ </dl>
1011
+ </details>
1012
+
1013
+ <details><summary><code>client.contracts.v2.<a href="/src/api/resources/contracts/resources/v2/client/Client.ts">delete</a>(contractId) -> core.APIResponse<void, CandidApi.contracts.v2.delete.Error></code></summary>
1014
+ <dl>
1015
+ <dd>
1016
+
1017
+ #### 🔌 Usage
1018
+
1019
+ <dl>
1020
+ <dd>
1021
+
1022
+ <dl>
1023
+ <dd>
1024
+
1025
+ ```typescript
1026
+ await client.contracts.v2.delete(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
1027
+
1028
+ ```
1029
+ </dd>
1030
+ </dl>
1031
+ </dd>
1032
+ </dl>
1033
+
1034
+ #### ⚙️ Parameters
1035
+
1036
+ <dl>
1037
+ <dd>
1038
+
1039
+ <dl>
1040
+ <dd>
1041
+
1042
+ **contractId:** `CandidApi.ContractId`
1043
+
1044
+ </dd>
1045
+ </dl>
1046
+
1047
+ <dl>
1048
+ <dd>
1049
+
1050
+ **requestOptions:** `V2.RequestOptions`
1051
+
1052
+ </dd>
1053
+ </dl>
1054
+ </dd>
1055
+ </dl>
1056
+
1057
+
1058
+ </dd>
1059
+ </dl>
1060
+ </details>
1061
+
1062
+ <details><summary><code>client.contracts.v2.<a href="/src/api/resources/contracts/resources/v2/client/Client.ts">update</a>(contractId, { ...params }) -> core.APIResponse<CandidApi.ContractWithProviders, CandidApi.contracts.v2.update.Error></code></summary>
1063
+ <dl>
1064
+ <dd>
1065
+
1066
+ #### 🔌 Usage
1067
+
1068
+ <dl>
1069
+ <dd>
1070
+
1071
+ <dl>
1072
+ <dd>
1073
+
1074
+ ```typescript
1075
+ await client.contracts.v2.update(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
1076
+
1077
+ ```
1078
+ </dd>
1079
+ </dl>
1080
+ </dd>
1081
+ </dl>
1082
+
1083
+ #### ⚙️ Parameters
1084
+
1085
+ <dl>
1086
+ <dd>
1087
+
1088
+ <dl>
1089
+ <dd>
1090
+
1091
+ **contractId:** `CandidApi.ContractId`
1092
+
1093
+ </dd>
1094
+ </dl>
1095
+
1096
+ <dl>
1097
+ <dd>
1098
+
1099
+ **request:** `CandidApi.contracts.v2.ContractUpdate`
1100
+
1101
+ </dd>
1102
+ </dl>
1103
+
1104
+ <dl>
1105
+ <dd>
1106
+
1107
+ **requestOptions:** `V2.RequestOptions`
1108
+
1109
+ </dd>
1110
+ </dl>
1111
+ </dd>
1112
+ </dl>
1113
+
1114
+
1115
+ </dd>
1116
+ </dl>
1117
+ </details>
1118
+
1119
+ ## Contracts V3
1120
+ <details><summary><code>client.contracts.v3.<a href="/src/api/resources/contracts/resources/v3/client/Client.ts">get</a>(contractId) -> core.APIResponse<CandidApi.ContractWithProvidersUnion, CandidApi.contracts.v3.get.Error></code></summary>
1121
+ <dl>
1122
+ <dd>
1123
+
810
1124
  #### 🔌 Usage
811
1125
 
812
1126
  <dl>
@@ -816,7 +1130,7 @@ await client.chargeCapture.v1.updatePostBilledChanges({
816
1130
  <dd>
817
1131
 
818
1132
  ```typescript
819
- await client.contracts.v2.get(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
1133
+ await client.contracts.v3.get(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
820
1134
 
821
1135
  ```
822
1136
  </dd>
@@ -840,7 +1154,7 @@ await client.contracts.v2.get(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd
840
1154
  <dl>
841
1155
  <dd>
842
1156
 
843
- **requestOptions:** `V2.RequestOptions`
1157
+ **requestOptions:** `V3.RequestOptions`
844
1158
 
845
1159
  </dd>
846
1160
  </dl>
@@ -852,7 +1166,7 @@ await client.contracts.v2.get(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd
852
1166
  </dl>
853
1167
  </details>
854
1168
 
855
- <details><summary><code>client.contracts.v2.<a href="/src/api/resources/contracts/resources/v2/client/Client.ts">getMulti</a>({ ...params }) -> core.APIResponse<CandidApi.ContractsPage, CandidApi.contracts.v2.getMulti.Error></code></summary>
1169
+ <details><summary><code>client.contracts.v3.<a href="/src/api/resources/contracts/resources/v3/client/Client.ts">getMulti</a>({ ...params }) -> core.APIResponse<CandidApi.ContractsPage, CandidApi.contracts.v3.getMulti.Error></code></summary>
856
1170
  <dl>
857
1171
  <dd>
858
1172
 
@@ -865,7 +1179,7 @@ await client.contracts.v2.get(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd
865
1179
  <dd>
866
1180
 
867
1181
  ```typescript
868
- await client.contracts.v2.getMulti();
1182
+ await client.contracts.v3.getMulti();
869
1183
 
870
1184
  ```
871
1185
  </dd>
@@ -881,7 +1195,7 @@ await client.contracts.v2.getMulti();
881
1195
  <dl>
882
1196
  <dd>
883
1197
 
884
- **request:** `CandidApi.contracts.v2.GetMultiContractsRequest`
1198
+ **request:** `CandidApi.contracts.v3.GetMultiContractsRequest`
885
1199
 
886
1200
  </dd>
887
1201
  </dl>
@@ -889,7 +1203,7 @@ await client.contracts.v2.getMulti();
889
1203
  <dl>
890
1204
  <dd>
891
1205
 
892
- **requestOptions:** `V2.RequestOptions`
1206
+ **requestOptions:** `V3.RequestOptions`
893
1207
 
894
1208
  </dd>
895
1209
  </dl>
@@ -901,7 +1215,7 @@ await client.contracts.v2.getMulti();
901
1215
  </dl>
902
1216
  </details>
903
1217
 
904
- <details><summary><code>client.contracts.v2.<a href="/src/api/resources/contracts/resources/v2/client/Client.ts">create</a>({ ...params }) -> core.APIResponse<CandidApi.ContractWithProviders, CandidApi.contracts.v2.create.Error></code></summary>
1218
+ <details><summary><code>client.contracts.v3.<a href="/src/api/resources/contracts/resources/v3/client/Client.ts">create</a>({ ...params }) -> core.APIResponse<CandidApi.ContractWithProvidersUnion, CandidApi.contracts.v3.create.Error></code></summary>
905
1219
  <dl>
906
1220
  <dd>
907
1221
 
@@ -928,9 +1242,11 @@ Creates a new contract within the user's current organization
928
1242
  <dd>
929
1243
 
930
1244
  ```typescript
931
- await client.contracts.v2.create({
932
- contractingProviderId: CandidApi.ContractingProviderId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
1245
+ await client.contracts.v3.create({
1246
+ type: "professional",
933
1247
  renderingProviderIds: new Set([CandidApi.RenderingProviderid("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32")]),
1248
+ contractType: "professional",
1249
+ contractingProviderId: CandidApi.ContractingProviderId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"),
934
1250
  payerUuid: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
935
1251
  effectiveDate: CandidApi.Date_("effective_date"),
936
1252
  regions: {
@@ -962,7 +1278,7 @@ await client.contracts.v2.create({
962
1278
  <dl>
963
1279
  <dd>
964
1280
 
965
- **request:** `CandidApi.contracts.v2.ContractCreate`
1281
+ **request:** `CandidApi.ContractCreateUnion`
966
1282
 
967
1283
  </dd>
968
1284
  </dl>
@@ -970,7 +1286,7 @@ await client.contracts.v2.create({
970
1286
  <dl>
971
1287
  <dd>
972
1288
 
973
- **requestOptions:** `V2.RequestOptions`
1289
+ **requestOptions:** `V3.RequestOptions`
974
1290
 
975
1291
  </dd>
976
1292
  </dl>
@@ -982,7 +1298,7 @@ await client.contracts.v2.create({
982
1298
  </dl>
983
1299
  </details>
984
1300
 
985
- <details><summary><code>client.contracts.v2.<a href="/src/api/resources/contracts/resources/v2/client/Client.ts">delete</a>(contractId) -> core.APIResponse<void, CandidApi.contracts.v2.delete.Error></code></summary>
1301
+ <details><summary><code>client.contracts.v3.<a href="/src/api/resources/contracts/resources/v3/client/Client.ts">delete</a>(contractId) -> core.APIResponse<void, CandidApi.contracts.v3.delete.Error></code></summary>
986
1302
  <dl>
987
1303
  <dd>
988
1304
 
@@ -995,7 +1311,7 @@ await client.contracts.v2.create({
995
1311
  <dd>
996
1312
 
997
1313
  ```typescript
998
- await client.contracts.v2.delete(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
1314
+ await client.contracts.v3.delete(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
999
1315
 
1000
1316
  ```
1001
1317
  </dd>
@@ -1019,7 +1335,7 @@ await client.contracts.v2.delete(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7
1019
1335
  <dl>
1020
1336
  <dd>
1021
1337
 
1022
- **requestOptions:** `V2.RequestOptions`
1338
+ **requestOptions:** `V3.RequestOptions`
1023
1339
 
1024
1340
  </dd>
1025
1341
  </dl>
@@ -1031,7 +1347,7 @@ await client.contracts.v2.delete(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7
1031
1347
  </dl>
1032
1348
  </details>
1033
1349
 
1034
- <details><summary><code>client.contracts.v2.<a href="/src/api/resources/contracts/resources/v2/client/Client.ts">update</a>(contractId, { ...params }) -> core.APIResponse<CandidApi.ContractWithProviders, CandidApi.contracts.v2.update.Error></code></summary>
1350
+ <details><summary><code>client.contracts.v3.<a href="/src/api/resources/contracts/resources/v3/client/Client.ts">update</a>(contractId, { ...params }) -> core.APIResponse<CandidApi.ContractWithProvidersUnion, CandidApi.contracts.v3.update.Error></code></summary>
1035
1351
  <dl>
1036
1352
  <dd>
1037
1353
 
@@ -1044,7 +1360,9 @@ await client.contracts.v2.delete(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7
1044
1360
  <dd>
1045
1361
 
1046
1362
  ```typescript
1047
- await client.contracts.v2.update(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
1363
+ await client.contracts.v3.update(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"), {
1364
+ type: "professional"
1365
+ });
1048
1366
 
1049
1367
  ```
1050
1368
  </dd>
@@ -1068,7 +1386,7 @@ await client.contracts.v2.update(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7
1068
1386
  <dl>
1069
1387
  <dd>
1070
1388
 
1071
- **request:** `CandidApi.contracts.v2.ContractUpdate`
1389
+ **request:** `CandidApi.ContractUpdateUnion`
1072
1390
 
1073
1391
  </dd>
1074
1392
  </dl>
@@ -1076,7 +1394,132 @@ await client.contracts.v2.update(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7
1076
1394
  <dl>
1077
1395
  <dd>
1078
1396
 
1079
- **requestOptions:** `V2.RequestOptions`
1397
+ **requestOptions:** `V3.RequestOptions`
1398
+
1399
+ </dd>
1400
+ </dl>
1401
+ </dd>
1402
+ </dl>
1403
+
1404
+
1405
+ </dd>
1406
+ </dl>
1407
+ </details>
1408
+
1409
+ <details><summary><code>client.contracts.v3.<a href="/src/api/resources/contracts/resources/v3/client/Client.ts">createContractServiceFacility</a>(contractId, { ...params }) -> core.APIResponse<CandidApi.ContractServiceFacility, CandidApi.contracts.v3.createContractServiceFacility.Error></code></summary>
1410
+ <dl>
1411
+ <dd>
1412
+
1413
+ #### 🔌 Usage
1414
+
1415
+ <dl>
1416
+ <dd>
1417
+
1418
+ <dl>
1419
+ <dd>
1420
+
1421
+ ```typescript
1422
+ await client.contracts.v3.createContractServiceFacility(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"), {
1423
+ serviceFacilityId: "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
1424
+ providerIds: new Set(["d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"])
1425
+ });
1426
+
1427
+ ```
1428
+ </dd>
1429
+ </dl>
1430
+ </dd>
1431
+ </dl>
1432
+
1433
+ #### ⚙️ Parameters
1434
+
1435
+ <dl>
1436
+ <dd>
1437
+
1438
+ <dl>
1439
+ <dd>
1440
+
1441
+ **contractId:** `CandidApi.ContractId`
1442
+
1443
+ </dd>
1444
+ </dl>
1445
+
1446
+ <dl>
1447
+ <dd>
1448
+
1449
+ **request:** `CandidApi.contracts.v3.ContractServiceFacilityCreate`
1450
+
1451
+ </dd>
1452
+ </dl>
1453
+
1454
+ <dl>
1455
+ <dd>
1456
+
1457
+ **requestOptions:** `V3.RequestOptions`
1458
+
1459
+ </dd>
1460
+ </dl>
1461
+ </dd>
1462
+ </dl>
1463
+
1464
+
1465
+ </dd>
1466
+ </dl>
1467
+ </details>
1468
+
1469
+ <details><summary><code>client.contracts.v3.<a href="/src/api/resources/contracts/resources/v3/client/Client.ts">updateContractServiceFacility</a>(contractId, contractServiceFacilityId, { ...params }) -> core.APIResponse<CandidApi.ContractServiceFacility, CandidApi.contracts.v3.updateContractServiceFacility.Error></code></summary>
1470
+ <dl>
1471
+ <dd>
1472
+
1473
+ #### 🔌 Usage
1474
+
1475
+ <dl>
1476
+ <dd>
1477
+
1478
+ <dl>
1479
+ <dd>
1480
+
1481
+ ```typescript
1482
+ await client.contracts.v3.updateContractServiceFacility(CandidApi.ContractId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"), CandidApi.ContractServiceFacilityId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
1483
+
1484
+ ```
1485
+ </dd>
1486
+ </dl>
1487
+ </dd>
1488
+ </dl>
1489
+
1490
+ #### ⚙️ Parameters
1491
+
1492
+ <dl>
1493
+ <dd>
1494
+
1495
+ <dl>
1496
+ <dd>
1497
+
1498
+ **contractId:** `CandidApi.ContractId`
1499
+
1500
+ </dd>
1501
+ </dl>
1502
+
1503
+ <dl>
1504
+ <dd>
1505
+
1506
+ **contractServiceFacilityId:** `CandidApi.ContractServiceFacilityId`
1507
+
1508
+ </dd>
1509
+ </dl>
1510
+
1511
+ <dl>
1512
+ <dd>
1513
+
1514
+ **request:** `CandidApi.contracts.v3.ContractServiceFacilityUpdate`
1515
+
1516
+ </dd>
1517
+ </dl>
1518
+
1519
+ <dl>
1520
+ <dd>
1521
+
1522
+ **requestOptions:** `V3.RequestOptions`
1080
1523
 
1081
1524
  </dd>
1082
1525
  </dl>
@@ -3749,6 +4192,119 @@ await client.encounters.v4.update(CandidApi.EncounterId("d5e9c84f-c2b2-4bf4-b4b0
3749
4192
  </dl>
3750
4193
 
3751
4194
 
4195
+ </dd>
4196
+ </dl>
4197
+ </details>
4198
+
4199
+ ## Events V1
4200
+ <details><summary><code>client.events.v1.<a href="/src/api/resources/events/resources/v1/client/Client.ts">scan</a>({ ...params }) -> core.APIResponse<CandidApi.EventScanPage, CandidApi.events.v1.scan.Error></code></summary>
4201
+ <dl>
4202
+ <dd>
4203
+
4204
+ #### 📝 Description
4205
+
4206
+ <dl>
4207
+ <dd>
4208
+
4209
+ <dl>
4210
+ <dd>
4211
+
4212
+ Scans the last 30 days of events. All results are sorted by created date, descending.
4213
+ </dd>
4214
+ </dl>
4215
+ </dd>
4216
+ </dl>
4217
+
4218
+ #### 🔌 Usage
4219
+
4220
+ <dl>
4221
+ <dd>
4222
+
4223
+ <dl>
4224
+ <dd>
4225
+
4226
+ ```typescript
4227
+ await client.events.v1.scan();
4228
+
4229
+ ```
4230
+ </dd>
4231
+ </dl>
4232
+ </dd>
4233
+ </dl>
4234
+
4235
+ #### ⚙️ Parameters
4236
+
4237
+ <dl>
4238
+ <dd>
4239
+
4240
+ <dl>
4241
+ <dd>
4242
+
4243
+ **request:** `CandidApi.events.v1.GetEventScanRequest`
4244
+
4245
+ </dd>
4246
+ </dl>
4247
+
4248
+ <dl>
4249
+ <dd>
4250
+
4251
+ **requestOptions:** `V1.RequestOptions`
4252
+
4253
+ </dd>
4254
+ </dl>
4255
+ </dd>
4256
+ </dl>
4257
+
4258
+
4259
+ </dd>
4260
+ </dl>
4261
+ </details>
4262
+
4263
+ <details><summary><code>client.events.v1.<a href="/src/api/resources/events/resources/v1/client/Client.ts">get</a>(eventId) -> core.APIResponse<CandidApi.Event, CandidApi.events.v1.get.Error></code></summary>
4264
+ <dl>
4265
+ <dd>
4266
+
4267
+ #### 🔌 Usage
4268
+
4269
+ <dl>
4270
+ <dd>
4271
+
4272
+ <dl>
4273
+ <dd>
4274
+
4275
+ ```typescript
4276
+ await client.events.v1.get(CandidApi.EventId("d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"));
4277
+
4278
+ ```
4279
+ </dd>
4280
+ </dl>
4281
+ </dd>
4282
+ </dl>
4283
+
4284
+ #### ⚙️ Parameters
4285
+
4286
+ <dl>
4287
+ <dd>
4288
+
4289
+ <dl>
4290
+ <dd>
4291
+
4292
+ **eventId:** `CandidApi.EventId`
4293
+
4294
+ </dd>
4295
+ </dl>
4296
+
4297
+ <dl>
4298
+ <dd>
4299
+
4300
+ **requestOptions:** `V1.RequestOptions`
4301
+
4302
+ </dd>
4303
+ </dl>
4304
+ </dd>
4305
+ </dl>
4306
+
4307
+
3752
4308
  </dd>
3753
4309
  </dl>
3754
4310
  </details>
@@ -7829,8 +8385,6 @@ await client.organizationServiceFacilities.v2.delete(CandidApi.OrganizationServi
7829
8385
  <dl>
7830
8386
  <dd>
7831
8387
 
7832
- NOTE: This service is in-development and can only be used by select partners. Please contact Candid Health to request access.
7833
-
7834
8388
  Retrieve a list of inventory records based on the provided filters. Each inventory record provides the latest invoiceable status of the associated claim.
7835
8389
  The response is paginated, and the `page_token` can be used to retrieve subsequent pages. Initial requests should not include `page_token`.
7836
8390
  </dd>
@@ -7895,8 +8449,6 @@ await client.patientAr.v1.listInventory();
7895
8449
  <dl>
7896
8450
  <dd>
7897
8451
 
7898
- NOTE: This service is in-development and can only be used by select partners. Please contact Candid Health to request access.
7899
-
7900
8452
  Provides detailed itemization of invoice data for a specific claim.
7901
8453
  </dd>
7902
8454
  </dl>