candidhealth 1.16.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 (316) hide show
  1. package/Client.js +2 -2
  2. package/api/resources/contracts/client/Client.d.ts +3 -0
  3. package/api/resources/contracts/client/Client.js +5 -0
  4. package/api/resources/contracts/resources/index.d.ts +1 -0
  5. package/api/resources/contracts/resources/index.js +2 -1
  6. package/api/resources/contracts/resources/v2/client/Client.d.ts +4 -0
  7. package/api/resources/contracts/resources/v2/client/Client.js +4 -0
  8. package/api/resources/contracts/resources/v3/client/Client.d.ts +109 -0
  9. package/api/resources/contracts/resources/v3/client/Client.js +603 -0
  10. package/api/resources/contracts/resources/v3/client/create.d.ts +19 -0
  11. package/api/resources/contracts/resources/v3/client/create.js +55 -0
  12. package/api/resources/contracts/resources/v3/client/createContractServiceFacility.d.ts +25 -0
  13. package/api/resources/contracts/resources/v3/client/createContractServiceFacility.js +66 -0
  14. package/api/resources/contracts/resources/v3/client/delete.d.ts +25 -0
  15. package/api/resources/contracts/resources/v3/client/delete.js +66 -0
  16. package/api/resources/contracts/resources/v3/client/get.d.ts +25 -0
  17. package/api/resources/contracts/resources/v3/client/get.js +66 -0
  18. package/api/resources/contracts/resources/v3/client/getMulti.d.ts +19 -0
  19. package/api/resources/contracts/resources/v3/client/getMulti.js +55 -0
  20. package/api/resources/contracts/resources/v3/client/index.d.ts +8 -0
  21. package/api/resources/contracts/resources/v3/client/index.js +47 -0
  22. package/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.d.ts +10 -0
  23. package/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.js +3 -0
  24. package/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.d.ts +10 -0
  25. package/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.js +3 -0
  26. package/api/resources/contracts/resources/v3/client/requests/GetMultiContractsRequest.d.ts +23 -0
  27. package/api/resources/contracts/resources/v3/client/requests/GetMultiContractsRequest.js +3 -0
  28. package/api/resources/contracts/resources/v3/client/requests/index.d.ts +3 -0
  29. package/api/resources/contracts/resources/v3/client/requests/index.js +2 -0
  30. package/api/resources/contracts/resources/v3/client/update.d.ts +31 -0
  31. package/api/resources/contracts/resources/v3/client/update.js +77 -0
  32. package/api/resources/contracts/resources/v3/client/updateContractServiceFacility.d.ts +25 -0
  33. package/api/resources/contracts/resources/v3/client/updateContractServiceFacility.js +66 -0
  34. package/api/resources/contracts/resources/v3/index.d.ts +2 -0
  35. package/api/resources/contracts/resources/v3/index.js +18 -0
  36. package/api/resources/contracts/resources/v3/types/Contract.d.ts +10 -0
  37. package/api/resources/contracts/resources/v3/types/Contract.js +3 -0
  38. package/api/resources/contracts/resources/v3/types/ContractBase.d.ts +20 -0
  39. package/api/resources/contracts/resources/v3/types/ContractBase.js +3 -0
  40. package/api/resources/contracts/resources/v3/types/ContractCreate.d.ts +9 -0
  41. package/api/resources/contracts/resources/v3/types/ContractCreate.js +3 -0
  42. package/api/resources/contracts/resources/v3/types/ContractCreateUnion.d.ts +10 -0
  43. package/api/resources/contracts/resources/v3/types/ContractCreateUnion.js +3 -0
  44. package/api/resources/contracts/resources/v3/types/ContractId.d.ts +5 -0
  45. package/api/resources/contracts/resources/v3/types/ContractId.js +7 -0
  46. package/api/resources/contracts/resources/v3/types/ContractServiceFacility.d.ts +6 -0
  47. package/api/resources/contracts/resources/v3/types/ContractServiceFacility.js +3 -0
  48. package/api/resources/contracts/resources/v3/types/ContractServiceFacilityBase.d.ts +6 -0
  49. package/api/resources/contracts/resources/v3/types/ContractServiceFacilityBase.js +3 -0
  50. package/api/resources/contracts/resources/v3/types/ContractServiceFacilityId.d.ts +5 -0
  51. package/api/resources/contracts/resources/v3/types/ContractServiceFacilityId.js +7 -0
  52. package/api/resources/contracts/resources/v3/types/ContractType.d.ts +9 -0
  53. package/api/resources/contracts/resources/v3/types/ContractType.js +12 -0
  54. package/api/resources/contracts/resources/v3/types/ContractUnion.d.ts +10 -0
  55. package/api/resources/contracts/resources/v3/types/ContractUnion.js +3 -0
  56. package/api/resources/contracts/resources/v3/types/ContractUpdate.d.ts +17 -0
  57. package/api/resources/contracts/resources/v3/types/ContractUpdate.js +3 -0
  58. package/api/resources/contracts/resources/v3/types/ContractUpdateUnion.d.ts +10 -0
  59. package/api/resources/contracts/resources/v3/types/ContractUpdateUnion.js +3 -0
  60. package/api/resources/contracts/resources/v3/types/ContractWithProvidersUnion.d.ts +10 -0
  61. package/api/resources/contracts/resources/v3/types/ContractWithProvidersUnion.js +3 -0
  62. package/api/resources/contracts/resources/v3/types/ContractingProviderId.d.ts +5 -0
  63. package/api/resources/contracts/resources/v3/types/ContractingProviderId.js +7 -0
  64. package/api/resources/contracts/resources/v3/types/ContractsPage.d.ts +4 -0
  65. package/api/resources/contracts/resources/v3/types/ContractsPage.js +3 -0
  66. package/api/resources/contracts/resources/v3/types/InstitutionalContract.d.ts +5 -0
  67. package/api/resources/contracts/resources/v3/types/InstitutionalContract.js +3 -0
  68. package/api/resources/contracts/resources/v3/types/InstitutionalContractCreate.d.ts +4 -0
  69. package/api/resources/contracts/resources/v3/types/InstitutionalContractCreate.js +3 -0
  70. package/api/resources/contracts/resources/v3/types/InstitutionalContractUpdate.d.ts +4 -0
  71. package/api/resources/contracts/resources/v3/types/InstitutionalContractUpdate.js +3 -0
  72. package/api/resources/contracts/resources/v3/types/ProfessionalContract.d.ts +5 -0
  73. package/api/resources/contracts/resources/v3/types/ProfessionalContract.js +3 -0
  74. package/api/resources/contracts/resources/v3/types/ProfessionalContractCreate.d.ts +4 -0
  75. package/api/resources/contracts/resources/v3/types/ProfessionalContractCreate.js +3 -0
  76. package/api/resources/contracts/resources/v3/types/ProfessionalContractUpdate.d.ts +4 -0
  77. package/api/resources/contracts/resources/v3/types/ProfessionalContractUpdate.js +3 -0
  78. package/api/resources/contracts/resources/v3/types/RenderingProviderid.d.ts +5 -0
  79. package/api/resources/contracts/resources/v3/types/RenderingProviderid.js +7 -0
  80. package/api/resources/contracts/resources/v3/types/index.d.ts +22 -0
  81. package/api/resources/contracts/resources/v3/types/index.js +38 -0
  82. package/api/resources/healthCareCodeInformation/resources/v1/types/D8Date.d.ts +5 -1
  83. package/api/resources/healthCareCodeInformation/resources/v1/types/D8Date.js +4 -0
  84. package/api/resources/healthCareCodeInformation/resources/v1/types/Rd8Date.d.ts +2 -14
  85. package/dist/Client.js +2 -2
  86. package/dist/api/resources/contracts/client/Client.d.ts +3 -0
  87. package/dist/api/resources/contracts/client/Client.js +5 -0
  88. package/dist/api/resources/contracts/resources/index.d.ts +1 -0
  89. package/dist/api/resources/contracts/resources/index.js +2 -1
  90. package/dist/api/resources/contracts/resources/v2/client/Client.d.ts +4 -0
  91. package/dist/api/resources/contracts/resources/v2/client/Client.js +4 -0
  92. package/dist/api/resources/contracts/resources/v3/client/Client.d.ts +109 -0
  93. package/dist/api/resources/contracts/resources/v3/client/Client.js +603 -0
  94. package/dist/api/resources/contracts/resources/v3/client/create.d.ts +19 -0
  95. package/dist/api/resources/contracts/resources/v3/client/create.js +55 -0
  96. package/dist/api/resources/contracts/resources/v3/client/createContractServiceFacility.d.ts +25 -0
  97. package/dist/api/resources/contracts/resources/v3/client/createContractServiceFacility.js +66 -0
  98. package/dist/api/resources/contracts/resources/v3/client/delete.d.ts +25 -0
  99. package/dist/api/resources/contracts/resources/v3/client/delete.js +66 -0
  100. package/dist/api/resources/contracts/resources/v3/client/get.d.ts +25 -0
  101. package/dist/api/resources/contracts/resources/v3/client/get.js +66 -0
  102. package/dist/api/resources/contracts/resources/v3/client/getMulti.d.ts +19 -0
  103. package/dist/api/resources/contracts/resources/v3/client/getMulti.js +55 -0
  104. package/dist/api/resources/contracts/resources/v3/client/index.d.ts +8 -0
  105. package/dist/api/resources/contracts/resources/v3/client/index.js +47 -0
  106. package/dist/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.d.ts +10 -0
  107. package/dist/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.js +3 -0
  108. package/dist/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.d.ts +10 -0
  109. package/dist/api/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.js +3 -0
  110. package/dist/api/resources/contracts/resources/v3/client/requests/GetMultiContractsRequest.d.ts +23 -0
  111. package/dist/api/resources/contracts/resources/v3/client/requests/GetMultiContractsRequest.js +3 -0
  112. package/dist/api/resources/contracts/resources/v3/client/requests/index.d.ts +3 -0
  113. package/dist/api/resources/contracts/resources/v3/client/requests/index.js +2 -0
  114. package/dist/api/resources/contracts/resources/v3/client/update.d.ts +31 -0
  115. package/dist/api/resources/contracts/resources/v3/client/update.js +77 -0
  116. package/dist/api/resources/contracts/resources/v3/client/updateContractServiceFacility.d.ts +25 -0
  117. package/dist/api/resources/contracts/resources/v3/client/updateContractServiceFacility.js +66 -0
  118. package/dist/api/resources/contracts/resources/v3/index.d.ts +2 -0
  119. package/dist/api/resources/contracts/resources/v3/index.js +18 -0
  120. package/dist/api/resources/contracts/resources/v3/types/Contract.d.ts +10 -0
  121. package/dist/api/resources/contracts/resources/v3/types/Contract.js +3 -0
  122. package/dist/api/resources/contracts/resources/v3/types/ContractBase.d.ts +20 -0
  123. package/dist/api/resources/contracts/resources/v3/types/ContractBase.js +3 -0
  124. package/dist/api/resources/contracts/resources/v3/types/ContractCreate.d.ts +9 -0
  125. package/dist/api/resources/contracts/resources/v3/types/ContractCreate.js +3 -0
  126. package/dist/api/resources/contracts/resources/v3/types/ContractCreateUnion.d.ts +10 -0
  127. package/dist/api/resources/contracts/resources/v3/types/ContractCreateUnion.js +3 -0
  128. package/dist/api/resources/contracts/resources/v3/types/ContractId.d.ts +5 -0
  129. package/dist/api/resources/contracts/resources/v3/types/ContractId.js +7 -0
  130. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacility.d.ts +6 -0
  131. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacility.js +3 -0
  132. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacilityBase.d.ts +6 -0
  133. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacilityBase.js +3 -0
  134. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacilityId.d.ts +5 -0
  135. package/dist/api/resources/contracts/resources/v3/types/ContractServiceFacilityId.js +7 -0
  136. package/dist/api/resources/contracts/resources/v3/types/ContractType.d.ts +9 -0
  137. package/dist/api/resources/contracts/resources/v3/types/ContractType.js +12 -0
  138. package/dist/api/resources/contracts/resources/v3/types/ContractUnion.d.ts +10 -0
  139. package/dist/api/resources/contracts/resources/v3/types/ContractUnion.js +3 -0
  140. package/dist/api/resources/contracts/resources/v3/types/ContractUpdate.d.ts +17 -0
  141. package/dist/api/resources/contracts/resources/v3/types/ContractUpdate.js +3 -0
  142. package/dist/api/resources/contracts/resources/v3/types/ContractUpdateUnion.d.ts +10 -0
  143. package/dist/api/resources/contracts/resources/v3/types/ContractUpdateUnion.js +3 -0
  144. package/dist/api/resources/contracts/resources/v3/types/ContractWithProvidersUnion.d.ts +10 -0
  145. package/dist/api/resources/contracts/resources/v3/types/ContractWithProvidersUnion.js +3 -0
  146. package/dist/api/resources/contracts/resources/v3/types/ContractingProviderId.d.ts +5 -0
  147. package/dist/api/resources/contracts/resources/v3/types/ContractingProviderId.js +7 -0
  148. package/dist/api/resources/contracts/resources/v3/types/ContractsPage.d.ts +4 -0
  149. package/dist/api/resources/contracts/resources/v3/types/ContractsPage.js +3 -0
  150. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContract.d.ts +5 -0
  151. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContract.js +3 -0
  152. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContractCreate.d.ts +4 -0
  153. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContractCreate.js +3 -0
  154. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContractUpdate.d.ts +4 -0
  155. package/dist/api/resources/contracts/resources/v3/types/InstitutionalContractUpdate.js +3 -0
  156. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContract.d.ts +5 -0
  157. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContract.js +3 -0
  158. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContractCreate.d.ts +4 -0
  159. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContractCreate.js +3 -0
  160. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContractUpdate.d.ts +4 -0
  161. package/dist/api/resources/contracts/resources/v3/types/ProfessionalContractUpdate.js +3 -0
  162. package/dist/api/resources/contracts/resources/v3/types/RenderingProviderid.d.ts +5 -0
  163. package/dist/api/resources/contracts/resources/v3/types/RenderingProviderid.js +7 -0
  164. package/dist/api/resources/contracts/resources/v3/types/index.d.ts +22 -0
  165. package/dist/api/resources/contracts/resources/v3/types/index.js +38 -0
  166. package/dist/api/resources/healthCareCodeInformation/resources/v1/types/D8Date.d.ts +5 -1
  167. package/dist/api/resources/healthCareCodeInformation/resources/v1/types/D8Date.js +4 -0
  168. package/dist/api/resources/healthCareCodeInformation/resources/v1/types/Rd8Date.d.ts +2 -14
  169. package/dist/serialization/resources/contracts/resources/index.d.ts +1 -0
  170. package/dist/serialization/resources/contracts/resources/index.js +2 -1
  171. package/dist/serialization/resources/contracts/resources/v3/client/createContractServiceFacility.d.ts +12 -0
  172. package/dist/serialization/resources/contracts/resources/v3/client/createContractServiceFacility.js +69 -0
  173. package/dist/serialization/resources/contracts/resources/v3/client/delete.d.ts +12 -0
  174. package/dist/serialization/resources/contracts/resources/v3/client/delete.js +69 -0
  175. package/dist/serialization/resources/contracts/resources/v3/client/get.d.ts +12 -0
  176. package/dist/serialization/resources/contracts/resources/v3/client/get.js +69 -0
  177. package/dist/serialization/resources/contracts/resources/v3/client/index.d.ts +6 -0
  178. package/dist/serialization/resources/contracts/resources/v3/client/index.js +45 -0
  179. package/dist/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.d.ts +9 -0
  180. package/dist/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.js +40 -0
  181. package/dist/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.d.ts +10 -0
  182. package/dist/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.js +42 -0
  183. package/dist/serialization/resources/contracts/resources/v3/client/requests/index.d.ts +2 -0
  184. package/dist/serialization/resources/contracts/resources/v3/client/requests/index.js +7 -0
  185. package/dist/serialization/resources/contracts/resources/v3/client/update.d.ts +17 -0
  186. package/dist/serialization/resources/contracts/resources/v3/client/update.js +75 -0
  187. package/dist/serialization/resources/contracts/resources/v3/client/updateContractServiceFacility.d.ts +12 -0
  188. package/dist/serialization/resources/contracts/resources/v3/client/updateContractServiceFacility.js +69 -0
  189. package/dist/serialization/resources/contracts/resources/v3/index.d.ts +2 -0
  190. package/dist/serialization/resources/contracts/resources/v3/index.js +18 -0
  191. package/dist/serialization/resources/contracts/resources/v3/types/Contract.d.ts +16 -0
  192. package/dist/serialization/resources/contracts/resources/v3/types/Contract.js +50 -0
  193. package/dist/serialization/resources/contracts/resources/v3/types/ContractBase.d.ts +21 -0
  194. package/dist/serialization/resources/contracts/resources/v3/types/ContractBase.js +53 -0
  195. package/dist/serialization/resources/contracts/resources/v3/types/ContractCreate.d.ts +14 -0
  196. package/dist/serialization/resources/contracts/resources/v3/types/ContractCreate.js +48 -0
  197. package/dist/serialization/resources/contracts/resources/v3/types/ContractCreateUnion.d.ts +15 -0
  198. package/dist/serialization/resources/contracts/resources/v3/types/ContractCreateUnion.js +49 -0
  199. package/dist/serialization/resources/contracts/resources/v3/types/ContractId.d.ts +7 -0
  200. package/dist/serialization/resources/contracts/resources/v3/types/ContractId.js +43 -0
  201. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacility.d.ts +13 -0
  202. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacility.js +47 -0
  203. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityBase.d.ts +10 -0
  204. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityBase.js +42 -0
  205. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityId.d.ts +7 -0
  206. package/dist/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityId.js +43 -0
  207. package/dist/serialization/resources/contracts/resources/v3/types/ContractType.d.ts +7 -0
  208. package/dist/serialization/resources/contracts/resources/v3/types/ContractType.js +39 -0
  209. package/dist/serialization/resources/contracts/resources/v3/types/ContractUnion.d.ts +14 -0
  210. package/dist/serialization/resources/contracts/resources/v3/types/ContractUnion.js +48 -0
  211. package/dist/serialization/resources/contracts/resources/v3/types/ContractUpdate.d.ts +22 -0
  212. package/dist/serialization/resources/contracts/resources/v3/types/ContractUpdate.js +54 -0
  213. package/dist/serialization/resources/contracts/resources/v3/types/ContractUpdateUnion.d.ts +15 -0
  214. package/dist/serialization/resources/contracts/resources/v3/types/ContractUpdateUnion.js +49 -0
  215. package/dist/serialization/resources/contracts/resources/v3/types/ContractWithProvidersUnion.d.ts +15 -0
  216. package/dist/serialization/resources/contracts/resources/v3/types/ContractWithProvidersUnion.js +49 -0
  217. package/dist/serialization/resources/contracts/resources/v3/types/ContractingProviderId.d.ts +7 -0
  218. package/dist/serialization/resources/contracts/resources/v3/types/ContractingProviderId.js +43 -0
  219. package/dist/serialization/resources/contracts/resources/v3/types/ContractsPage.d.ts +11 -0
  220. package/dist/serialization/resources/contracts/resources/v3/types/ContractsPage.js +45 -0
  221. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContract.d.ts +11 -0
  222. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContract.js +45 -0
  223. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContractCreate.d.ts +11 -0
  224. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContractCreate.js +45 -0
  225. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContractUpdate.d.ts +11 -0
  226. package/dist/serialization/resources/contracts/resources/v3/types/InstitutionalContractUpdate.js +45 -0
  227. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContract.d.ts +10 -0
  228. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContract.js +44 -0
  229. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContractCreate.d.ts +11 -0
  230. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContractCreate.js +45 -0
  231. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContractUpdate.d.ts +11 -0
  232. package/dist/serialization/resources/contracts/resources/v3/types/ProfessionalContractUpdate.js +45 -0
  233. package/dist/serialization/resources/contracts/resources/v3/types/RenderingProviderid.d.ts +7 -0
  234. package/dist/serialization/resources/contracts/resources/v3/types/RenderingProviderid.js +43 -0
  235. package/dist/serialization/resources/contracts/resources/v3/types/index.d.ts +22 -0
  236. package/dist/serialization/resources/contracts/resources/v3/types/index.js +38 -0
  237. package/dist/serialization/resources/healthCareCodeInformation/resources/v1/types/D8Date.d.ts +1 -1
  238. package/dist/serialization/resources/healthCareCodeInformation/resources/v1/types/D8Date.js +5 -1
  239. package/dist/serialization/resources/healthCareCodeInformation/resources/v1/types/Rd8Date.js +2 -2
  240. package/dist/version.d.ts +1 -1
  241. package/dist/version.js +1 -1
  242. package/package.json +1 -1
  243. package/reference.md +443 -0
  244. package/serialization/resources/contracts/resources/index.d.ts +1 -0
  245. package/serialization/resources/contracts/resources/index.js +2 -1
  246. package/serialization/resources/contracts/resources/v3/client/createContractServiceFacility.d.ts +12 -0
  247. package/serialization/resources/contracts/resources/v3/client/createContractServiceFacility.js +69 -0
  248. package/serialization/resources/contracts/resources/v3/client/delete.d.ts +12 -0
  249. package/serialization/resources/contracts/resources/v3/client/delete.js +69 -0
  250. package/serialization/resources/contracts/resources/v3/client/get.d.ts +12 -0
  251. package/serialization/resources/contracts/resources/v3/client/get.js +69 -0
  252. package/serialization/resources/contracts/resources/v3/client/index.d.ts +6 -0
  253. package/serialization/resources/contracts/resources/v3/client/index.js +45 -0
  254. package/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.d.ts +9 -0
  255. package/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityCreate.js +40 -0
  256. package/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.d.ts +10 -0
  257. package/serialization/resources/contracts/resources/v3/client/requests/ContractServiceFacilityUpdate.js +42 -0
  258. package/serialization/resources/contracts/resources/v3/client/requests/index.d.ts +2 -0
  259. package/serialization/resources/contracts/resources/v3/client/requests/index.js +7 -0
  260. package/serialization/resources/contracts/resources/v3/client/update.d.ts +17 -0
  261. package/serialization/resources/contracts/resources/v3/client/update.js +75 -0
  262. package/serialization/resources/contracts/resources/v3/client/updateContractServiceFacility.d.ts +12 -0
  263. package/serialization/resources/contracts/resources/v3/client/updateContractServiceFacility.js +69 -0
  264. package/serialization/resources/contracts/resources/v3/index.d.ts +2 -0
  265. package/serialization/resources/contracts/resources/v3/index.js +18 -0
  266. package/serialization/resources/contracts/resources/v3/types/Contract.d.ts +16 -0
  267. package/serialization/resources/contracts/resources/v3/types/Contract.js +50 -0
  268. package/serialization/resources/contracts/resources/v3/types/ContractBase.d.ts +21 -0
  269. package/serialization/resources/contracts/resources/v3/types/ContractBase.js +53 -0
  270. package/serialization/resources/contracts/resources/v3/types/ContractCreate.d.ts +14 -0
  271. package/serialization/resources/contracts/resources/v3/types/ContractCreate.js +48 -0
  272. package/serialization/resources/contracts/resources/v3/types/ContractCreateUnion.d.ts +15 -0
  273. package/serialization/resources/contracts/resources/v3/types/ContractCreateUnion.js +49 -0
  274. package/serialization/resources/contracts/resources/v3/types/ContractId.d.ts +7 -0
  275. package/serialization/resources/contracts/resources/v3/types/ContractId.js +43 -0
  276. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacility.d.ts +13 -0
  277. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacility.js +47 -0
  278. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityBase.d.ts +10 -0
  279. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityBase.js +42 -0
  280. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityId.d.ts +7 -0
  281. package/serialization/resources/contracts/resources/v3/types/ContractServiceFacilityId.js +43 -0
  282. package/serialization/resources/contracts/resources/v3/types/ContractType.d.ts +7 -0
  283. package/serialization/resources/contracts/resources/v3/types/ContractType.js +39 -0
  284. package/serialization/resources/contracts/resources/v3/types/ContractUnion.d.ts +14 -0
  285. package/serialization/resources/contracts/resources/v3/types/ContractUnion.js +48 -0
  286. package/serialization/resources/contracts/resources/v3/types/ContractUpdate.d.ts +22 -0
  287. package/serialization/resources/contracts/resources/v3/types/ContractUpdate.js +54 -0
  288. package/serialization/resources/contracts/resources/v3/types/ContractUpdateUnion.d.ts +15 -0
  289. package/serialization/resources/contracts/resources/v3/types/ContractUpdateUnion.js +49 -0
  290. package/serialization/resources/contracts/resources/v3/types/ContractWithProvidersUnion.d.ts +15 -0
  291. package/serialization/resources/contracts/resources/v3/types/ContractWithProvidersUnion.js +49 -0
  292. package/serialization/resources/contracts/resources/v3/types/ContractingProviderId.d.ts +7 -0
  293. package/serialization/resources/contracts/resources/v3/types/ContractingProviderId.js +43 -0
  294. package/serialization/resources/contracts/resources/v3/types/ContractsPage.d.ts +11 -0
  295. package/serialization/resources/contracts/resources/v3/types/ContractsPage.js +45 -0
  296. package/serialization/resources/contracts/resources/v3/types/InstitutionalContract.d.ts +11 -0
  297. package/serialization/resources/contracts/resources/v3/types/InstitutionalContract.js +45 -0
  298. package/serialization/resources/contracts/resources/v3/types/InstitutionalContractCreate.d.ts +11 -0
  299. package/serialization/resources/contracts/resources/v3/types/InstitutionalContractCreate.js +45 -0
  300. package/serialization/resources/contracts/resources/v3/types/InstitutionalContractUpdate.d.ts +11 -0
  301. package/serialization/resources/contracts/resources/v3/types/InstitutionalContractUpdate.js +45 -0
  302. package/serialization/resources/contracts/resources/v3/types/ProfessionalContract.d.ts +10 -0
  303. package/serialization/resources/contracts/resources/v3/types/ProfessionalContract.js +44 -0
  304. package/serialization/resources/contracts/resources/v3/types/ProfessionalContractCreate.d.ts +11 -0
  305. package/serialization/resources/contracts/resources/v3/types/ProfessionalContractCreate.js +45 -0
  306. package/serialization/resources/contracts/resources/v3/types/ProfessionalContractUpdate.d.ts +11 -0
  307. package/serialization/resources/contracts/resources/v3/types/ProfessionalContractUpdate.js +45 -0
  308. package/serialization/resources/contracts/resources/v3/types/RenderingProviderid.d.ts +7 -0
  309. package/serialization/resources/contracts/resources/v3/types/RenderingProviderid.js +43 -0
  310. package/serialization/resources/contracts/resources/v3/types/index.d.ts +22 -0
  311. package/serialization/resources/contracts/resources/v3/types/index.js +38 -0
  312. package/serialization/resources/healthCareCodeInformation/resources/v1/types/D8Date.d.ts +1 -1
  313. package/serialization/resources/healthCareCodeInformation/resources/v1/types/D8Date.js +5 -1
  314. package/serialization/resources/healthCareCodeInformation/resources/v1/types/Rd8Date.js +2 -2
  315. package/version.d.ts +1 -1
  316. package/version.js +1 -1
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.ContractUpdate = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const Date_1 = require("../../../../commons/types/Date_");
40
+ const AuthorizedSignatoryUpdate_1 = require("../../v2/types/AuthorizedSignatoryUpdate");
41
+ const ContractStatus_1 = require("../../v2/types/ContractStatus");
42
+ const DateUpdate_1 = require("../../v2/types/DateUpdate");
43
+ const InsuranceTypes_1 = require("../../v2/types/InsuranceTypes");
44
+ const RegionsUpdate_1 = require("../../v2/types/RegionsUpdate");
45
+ exports.ContractUpdate = core.serialization.object({
46
+ effectiveDate: core.serialization.property("effective_date", Date_1.Date_.optional()),
47
+ expirationDate: core.serialization.property("expiration_date", DateUpdate_1.DateUpdate.optional()),
48
+ regions: RegionsUpdate_1.RegionsUpdate.optional(),
49
+ contractStatus: core.serialization.property("contract_status", ContractStatus_1.ContractStatus.optional()),
50
+ authorizedSignatory: core.serialization.property("authorized_signatory", AuthorizedSignatoryUpdate_1.AuthorizedSignatoryUpdate.optional()),
51
+ commercialInsuranceTypes: core.serialization.property("commercial_insurance_types", InsuranceTypes_1.InsuranceTypes.optional()),
52
+ medicareInsuranceTypes: core.serialization.property("medicare_insurance_types", InsuranceTypes_1.InsuranceTypes.optional()),
53
+ medicaidInsuranceTypes: core.serialization.property("medicaid_insurance_types", InsuranceTypes_1.InsuranceTypes.optional()),
54
+ });
@@ -0,0 +1,15 @@
1
+ import type * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ import { InstitutionalContractUpdate } from "./InstitutionalContractUpdate";
5
+ import { ProfessionalContractUpdate } from "./ProfessionalContractUpdate";
6
+ export declare const ContractUpdateUnion: core.serialization.Schema<serializers.contracts.v3.ContractUpdateUnion.Raw, CandidApi.contracts.v3.ContractUpdateUnion>;
7
+ export declare namespace ContractUpdateUnion {
8
+ type Raw = ContractUpdateUnion.Professional | ContractUpdateUnion.Institutional;
9
+ interface Professional extends ProfessionalContractUpdate.Raw {
10
+ type: "professional";
11
+ }
12
+ interface Institutional extends InstitutionalContractUpdate.Raw {
13
+ type: "institutional";
14
+ }
15
+ }
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.ContractUpdateUnion = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const InstitutionalContractUpdate_1 = require("./InstitutionalContractUpdate");
40
+ const ProfessionalContractUpdate_1 = require("./ProfessionalContractUpdate");
41
+ exports.ContractUpdateUnion = core.serialization
42
+ .union("type", {
43
+ professional: ProfessionalContractUpdate_1.ProfessionalContractUpdate,
44
+ institutional: InstitutionalContractUpdate_1.InstitutionalContractUpdate,
45
+ })
46
+ .transform({
47
+ transform: (value) => value,
48
+ untransform: (value) => value,
49
+ });
@@ -0,0 +1,15 @@
1
+ import type * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ import { InstitutionalContract } from "./InstitutionalContract";
5
+ import { ProfessionalContract } from "./ProfessionalContract";
6
+ export declare const ContractWithProvidersUnion: core.serialization.Schema<serializers.contracts.v3.ContractWithProvidersUnion.Raw, CandidApi.contracts.v3.ContractWithProvidersUnion>;
7
+ export declare namespace ContractWithProvidersUnion {
8
+ type Raw = ContractWithProvidersUnion.Professional | ContractWithProvidersUnion.Institutional;
9
+ interface Professional extends ProfessionalContract.Raw {
10
+ type: "professional";
11
+ }
12
+ interface Institutional extends InstitutionalContract.Raw {
13
+ type: "institutional";
14
+ }
15
+ }
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.ContractWithProvidersUnion = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const InstitutionalContract_1 = require("./InstitutionalContract");
40
+ const ProfessionalContract_1 = require("./ProfessionalContract");
41
+ exports.ContractWithProvidersUnion = core.serialization
42
+ .union("type", {
43
+ professional: ProfessionalContract_1.ProfessionalContract,
44
+ institutional: InstitutionalContract_1.InstitutionalContract,
45
+ })
46
+ .transform({
47
+ transform: (value) => value,
48
+ untransform: (value) => value,
49
+ });
@@ -0,0 +1,7 @@
1
+ import * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ export declare const ContractingProviderId: core.serialization.Schema<serializers.contracts.v3.ContractingProviderId.Raw, CandidApi.contracts.v3.ContractingProviderId>;
5
+ export declare namespace ContractingProviderId {
6
+ type Raw = string;
7
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.ContractingProviderId = void 0;
38
+ const CandidApi = __importStar(require("../../../../../../api/index"));
39
+ const core = __importStar(require("../../../../../../core"));
40
+ exports.ContractingProviderId = core.serialization.string().transform({
41
+ transform: CandidApi.contracts.v3.ContractingProviderId,
42
+ untransform: (value) => value,
43
+ });
@@ -0,0 +1,11 @@
1
+ import type * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ import { ResourcePage } from "../../../../commons/types/ResourcePage";
5
+ import { ContractUnion } from "./ContractUnion";
6
+ export declare const ContractsPage: core.serialization.ObjectSchema<serializers.contracts.v3.ContractsPage.Raw, CandidApi.contracts.v3.ContractsPage>;
7
+ export declare namespace ContractsPage {
8
+ interface Raw extends ResourcePage.Raw {
9
+ items: ContractUnion.Raw[];
10
+ }
11
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.ContractsPage = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const ResourcePage_1 = require("../../../../commons/types/ResourcePage");
40
+ const ContractUnion_1 = require("./ContractUnion");
41
+ exports.ContractsPage = core.serialization
42
+ .object({
43
+ items: core.serialization.list(ContractUnion_1.ContractUnion),
44
+ })
45
+ .extend(ResourcePage_1.ResourcePage);
@@ -0,0 +1,11 @@
1
+ import type * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ import { Contract } from "./Contract";
5
+ import { ContractServiceFacility } from "./ContractServiceFacility";
6
+ export declare const InstitutionalContract: core.serialization.ObjectSchema<serializers.contracts.v3.InstitutionalContract.Raw, CandidApi.contracts.v3.InstitutionalContract>;
7
+ export declare namespace InstitutionalContract {
8
+ interface Raw extends Contract.Raw {
9
+ contract_service_facilities: ContractServiceFacility.Raw[];
10
+ }
11
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.InstitutionalContract = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const Contract_1 = require("./Contract");
40
+ const ContractServiceFacility_1 = require("./ContractServiceFacility");
41
+ exports.InstitutionalContract = core.serialization
42
+ .object({
43
+ contractServiceFacilities: core.serialization.property("contract_service_facilities", core.serialization.list(ContractServiceFacility_1.ContractServiceFacility)),
44
+ })
45
+ .extend(Contract_1.Contract);
@@ -0,0 +1,11 @@
1
+ import type * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ import { ContractCreate } from "./ContractCreate";
5
+ import { ContractServiceFacilityBase } from "./ContractServiceFacilityBase";
6
+ export declare const InstitutionalContractCreate: core.serialization.ObjectSchema<serializers.contracts.v3.InstitutionalContractCreate.Raw, CandidApi.contracts.v3.InstitutionalContractCreate>;
7
+ export declare namespace InstitutionalContractCreate {
8
+ interface Raw extends ContractCreate.Raw {
9
+ contract_service_facilities: ContractServiceFacilityBase.Raw[];
10
+ }
11
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.InstitutionalContractCreate = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const ContractCreate_1 = require("./ContractCreate");
40
+ const ContractServiceFacilityBase_1 = require("./ContractServiceFacilityBase");
41
+ exports.InstitutionalContractCreate = core.serialization
42
+ .object({
43
+ contractServiceFacilities: core.serialization.property("contract_service_facilities", core.serialization.list(ContractServiceFacilityBase_1.ContractServiceFacilityBase)),
44
+ })
45
+ .extend(ContractCreate_1.ContractCreate);
@@ -0,0 +1,11 @@
1
+ import type * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ import { ContractServiceFacilityId } from "./ContractServiceFacilityId";
5
+ import { ContractUpdate } from "./ContractUpdate";
6
+ export declare const InstitutionalContractUpdate: core.serialization.ObjectSchema<serializers.contracts.v3.InstitutionalContractUpdate.Raw, CandidApi.contracts.v3.InstitutionalContractUpdate>;
7
+ export declare namespace InstitutionalContractUpdate {
8
+ interface Raw extends ContractUpdate.Raw {
9
+ contract_service_facility_ids?: ContractServiceFacilityId.Raw[] | null;
10
+ }
11
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.InstitutionalContractUpdate = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const ContractServiceFacilityId_1 = require("./ContractServiceFacilityId");
40
+ const ContractUpdate_1 = require("./ContractUpdate");
41
+ exports.InstitutionalContractUpdate = core.serialization
42
+ .object({
43
+ contractServiceFacilityIds: core.serialization.property("contract_service_facility_ids", core.serialization.set(ContractServiceFacilityId_1.ContractServiceFacilityId).optional()),
44
+ })
45
+ .extend(ContractUpdate_1.ContractUpdate);
@@ -0,0 +1,10 @@
1
+ import type * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ import { Contract } from "./Contract";
5
+ export declare const ProfessionalContract: core.serialization.ObjectSchema<serializers.contracts.v3.ProfessionalContract.Raw, CandidApi.contracts.v3.ProfessionalContract>;
6
+ export declare namespace ProfessionalContract {
7
+ interface Raw extends Contract.Raw {
8
+ rendering_provider_ids: string[];
9
+ }
10
+ }
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.ProfessionalContract = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const Contract_1 = require("./Contract");
40
+ exports.ProfessionalContract = core.serialization
41
+ .object({
42
+ renderingProviderIds: core.serialization.property("rendering_provider_ids", core.serialization.set(core.serialization.string())),
43
+ })
44
+ .extend(Contract_1.Contract);
@@ -0,0 +1,11 @@
1
+ import type * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ import { ContractCreate } from "./ContractCreate";
5
+ import { RenderingProviderid } from "./RenderingProviderid";
6
+ export declare const ProfessionalContractCreate: core.serialization.ObjectSchema<serializers.contracts.v3.ProfessionalContractCreate.Raw, CandidApi.contracts.v3.ProfessionalContractCreate>;
7
+ export declare namespace ProfessionalContractCreate {
8
+ interface Raw extends ContractCreate.Raw {
9
+ rendering_provider_ids: RenderingProviderid.Raw[];
10
+ }
11
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.ProfessionalContractCreate = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const ContractCreate_1 = require("./ContractCreate");
40
+ const RenderingProviderid_1 = require("./RenderingProviderid");
41
+ exports.ProfessionalContractCreate = core.serialization
42
+ .object({
43
+ renderingProviderIds: core.serialization.property("rendering_provider_ids", core.serialization.set(RenderingProviderid_1.RenderingProviderid)),
44
+ })
45
+ .extend(ContractCreate_1.ContractCreate);
@@ -0,0 +1,11 @@
1
+ import type * as CandidApi from "../../../../../../api/index";
2
+ import * as core from "../../../../../../core";
3
+ import type * as serializers from "../../../../../index";
4
+ import { ContractUpdate } from "./ContractUpdate";
5
+ import { RenderingProviderid } from "./RenderingProviderid";
6
+ export declare const ProfessionalContractUpdate: core.serialization.ObjectSchema<serializers.contracts.v3.ProfessionalContractUpdate.Raw, CandidApi.contracts.v3.ProfessionalContractUpdate>;
7
+ export declare namespace ProfessionalContractUpdate {
8
+ interface Raw extends ContractUpdate.Raw {
9
+ rendering_provider_ids?: RenderingProviderid.Raw[] | null;
10
+ }
11
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ // This file was auto-generated by Fern from our API Definition.
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
15
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
16
+ }) : function(o, v) {
17
+ o["default"] = v;
18
+ });
19
+ var __importStar = (this && this.__importStar) || (function () {
20
+ var ownKeys = function(o) {
21
+ ownKeys = Object.getOwnPropertyNames || function (o) {
22
+ var ar = [];
23
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
24
+ return ar;
25
+ };
26
+ return ownKeys(o);
27
+ };
28
+ return function (mod) {
29
+ if (mod && mod.__esModule) return mod;
30
+ var result = {};
31
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
32
+ __setModuleDefault(result, mod);
33
+ return result;
34
+ };
35
+ })();
36
+ Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.ProfessionalContractUpdate = void 0;
38
+ const core = __importStar(require("../../../../../../core"));
39
+ const ContractUpdate_1 = require("./ContractUpdate");
40
+ const RenderingProviderid_1 = require("./RenderingProviderid");
41
+ exports.ProfessionalContractUpdate = core.serialization
42
+ .object({
43
+ renderingProviderIds: core.serialization.property("rendering_provider_ids", core.serialization.set(RenderingProviderid_1.RenderingProviderid).optional()),
44
+ })
45
+ .extend(ContractUpdate_1.ContractUpdate);