@metriport/shared 0.33.1 → 0.33.4

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 (1102) hide show
  1. package/dist/domain/network-query/query.d.ts +6 -2
  2. package/dist/domain/network-query/query.d.ts.map +1 -1
  3. package/dist/domain/network-query/source.d.ts +1 -1
  4. package/dist/domain/network-query/source.d.ts.map +1 -1
  5. package/dist/domain/network-query/source.js.map +1 -1
  6. package/dist/interface/external/ehr/canvas/appointment.d.ts +15 -10
  7. package/dist/interface/external/ehr/canvas/appointment.d.ts.map +1 -1
  8. package/dist/interface/external/ehr/canvas/appointment.js +16 -2
  9. package/dist/interface/external/ehr/canvas/appointment.js.map +1 -1
  10. package/dist/interface/external/ehr/canvas/cx-mapping.d.ts +12 -0
  11. package/dist/interface/external/ehr/canvas/cx-mapping.d.ts.map +1 -1
  12. package/dist/interface/external/ehr/canvas/cx-mapping.js +5 -0
  13. package/dist/interface/external/ehr/canvas/cx-mapping.js.map +1 -1
  14. package/dist/interface/external/surescripts/notifications/file-name.d.ts +14 -0
  15. package/dist/interface/external/surescripts/notifications/file-name.d.ts.map +1 -0
  16. package/dist/interface/external/surescripts/notifications/file-name.js +18 -0
  17. package/dist/interface/external/surescripts/notifications/file-name.js.map +1 -0
  18. package/dist/interface/external/surescripts/notifications/index.d.ts +3 -0
  19. package/dist/interface/external/surescripts/notifications/index.d.ts.map +1 -0
  20. package/dist/interface/external/surescripts/notifications/index.js +19 -0
  21. package/dist/interface/external/surescripts/notifications/index.js.map +1 -0
  22. package/dist/interface/external/surescripts/notifications/types.d.ts +36 -0
  23. package/dist/interface/external/surescripts/notifications/types.d.ts.map +1 -0
  24. package/dist/interface/external/surescripts/notifications/types.js +20 -0
  25. package/dist/interface/external/surescripts/notifications/types.js.map +1 -0
  26. package/dist/net/__tests__/retry.test.js +11 -0
  27. package/dist/net/__tests__/retry.test.js.map +1 -1
  28. package/dist/net/retry.d.ts +2 -0
  29. package/dist/net/retry.d.ts.map +1 -1
  30. package/dist/net/retry.js +9 -7
  31. package/dist/net/retry.js.map +1 -1
  32. package/dist/src/__tests__/env-setup.d.ts +2 -0
  33. package/dist/src/__tests__/env-setup.d.ts.map +1 -0
  34. package/dist/src/__tests__/env-setup.js +45 -0
  35. package/dist/src/__tests__/env-setup.js.map +1 -0
  36. package/dist/src/api/index.d.ts +2 -0
  37. package/dist/src/api/index.d.ts.map +1 -0
  38. package/dist/src/api/index.js +18 -0
  39. package/dist/src/api/index.js.map +1 -0
  40. package/dist/src/api/pagination.d.ts +13 -0
  41. package/dist/src/api/pagination.d.ts.map +1 -0
  42. package/dist/src/api/pagination.js +3 -0
  43. package/dist/src/api/pagination.js.map +1 -0
  44. package/dist/src/common/__tests__/boolean.test.d.ts +2 -0
  45. package/dist/src/common/__tests__/boolean.test.d.ts.map +1 -0
  46. package/dist/src/common/__tests__/boolean.test.js +46 -0
  47. package/dist/src/common/__tests__/boolean.test.js.map +1 -0
  48. package/dist/src/common/__tests__/date.test.d.ts +2 -0
  49. package/dist/src/common/__tests__/date.test.d.ts.map +1 -0
  50. package/dist/src/common/__tests__/date.test.js +225 -0
  51. package/dist/src/common/__tests__/date.test.js.map +1 -0
  52. package/dist/src/common/__tests__/demographics.test.d.ts +2 -0
  53. package/dist/src/common/__tests__/demographics.test.d.ts.map +1 -0
  54. package/dist/src/common/__tests__/demographics.test.js +187 -0
  55. package/dist/src/common/__tests__/demographics.test.js.map +1 -0
  56. package/dist/src/common/__tests__/html-encode.test.d.ts +2 -0
  57. package/dist/src/common/__tests__/html-encode.test.d.ts.map +1 -0
  58. package/dist/src/common/__tests__/html-encode.test.js +31 -0
  59. package/dist/src/common/__tests__/html-encode.test.js.map +1 -0
  60. package/dist/src/common/__tests__/normalize-oid.test.d.ts +2 -0
  61. package/dist/src/common/__tests__/normalize-oid.test.d.ts.map +1 -0
  62. package/dist/src/common/__tests__/normalize-oid.test.js +68 -0
  63. package/dist/src/common/__tests__/normalize-oid.test.js.map +1 -0
  64. package/dist/src/common/__tests__/npi.d.ts +7 -0
  65. package/dist/src/common/__tests__/npi.d.ts.map +1 -0
  66. package/dist/src/common/__tests__/npi.js +31 -0
  67. package/dist/src/common/__tests__/npi.js.map +1 -0
  68. package/dist/src/common/__tests__/number.test.d.ts +2 -0
  69. package/dist/src/common/__tests__/number.test.d.ts.map +1 -0
  70. package/dist/src/common/__tests__/number.test.js +33 -0
  71. package/dist/src/common/__tests__/number.test.js.map +1 -0
  72. package/dist/src/common/__tests__/oid.d.ts +20 -0
  73. package/dist/src/common/__tests__/oid.d.ts.map +1 -0
  74. package/dist/src/common/__tests__/oid.js +29 -0
  75. package/dist/src/common/__tests__/oid.js.map +1 -0
  76. package/dist/src/common/__tests__/oid.test.d.ts +2 -0
  77. package/dist/src/common/__tests__/oid.test.d.ts.map +1 -0
  78. package/dist/src/common/__tests__/oid.test.js +51 -0
  79. package/dist/src/common/__tests__/oid.test.js.map +1 -0
  80. package/dist/src/common/__tests__/retry.test.d.ts +2 -0
  81. package/dist/src/common/__tests__/retry.test.d.ts.map +1 -0
  82. package/dist/src/common/__tests__/retry.test.js +263 -0
  83. package/dist/src/common/__tests__/retry.test.js.map +1 -0
  84. package/dist/src/common/__tests__/string.test.d.ts +2 -0
  85. package/dist/src/common/__tests__/string.test.d.ts.map +1 -0
  86. package/dist/src/common/__tests__/string.test.js +149 -0
  87. package/dist/src/common/__tests__/string.test.js.map +1 -0
  88. package/dist/src/common/__tests__/title-case.test.d.ts +2 -0
  89. package/dist/src/common/__tests__/title-case.test.d.ts.map +1 -0
  90. package/dist/src/common/__tests__/title-case.test.js +71 -0
  91. package/dist/src/common/__tests__/title-case.test.js.map +1 -0
  92. package/dist/src/common/__tests__/validate-npi.test.d.ts +2 -0
  93. package/dist/src/common/__tests__/validate-npi.test.d.ts.map +1 -0
  94. package/dist/src/common/__tests__/validate-npi.test.js +24 -0
  95. package/dist/src/common/__tests__/validate-npi.test.js.map +1 -0
  96. package/dist/src/common/array.d.ts +2 -0
  97. package/dist/src/common/array.d.ts.map +1 -0
  98. package/dist/src/common/array.js +10 -0
  99. package/dist/src/common/array.js.map +1 -0
  100. package/dist/src/common/boolean.d.ts +9 -0
  101. package/dist/src/common/boolean.d.ts.map +1 -0
  102. package/dist/src/common/boolean.js +26 -0
  103. package/dist/src/common/boolean.js.map +1 -0
  104. package/dist/src/common/date.d.ts +68 -0
  105. package/dist/src/common/date.d.ts.map +1 -0
  106. package/dist/src/common/date.js +218 -0
  107. package/dist/src/common/date.js.map +1 -0
  108. package/dist/src/common/demographics.d.ts +24 -0
  109. package/dist/src/common/demographics.d.ts.map +1 -0
  110. package/dist/src/common/demographics.js +115 -0
  111. package/dist/src/common/demographics.js.map +1 -0
  112. package/dist/src/common/duration.d.ts +8 -0
  113. package/dist/src/common/duration.d.ts.map +1 -0
  114. package/dist/src/common/duration.js +32 -0
  115. package/dist/src/common/duration.js.map +1 -0
  116. package/dist/src/common/email.d.ts +5 -0
  117. package/dist/src/common/email.d.ts.map +1 -0
  118. package/dist/src/common/email.js +13 -0
  119. package/dist/src/common/email.js.map +1 -0
  120. package/dist/src/common/env-var.d.ts +12 -0
  121. package/dist/src/common/env-var.d.ts.map +1 -0
  122. package/dist/src/common/env-var.js +52 -0
  123. package/dist/src/common/env-var.js.map +1 -0
  124. package/dist/src/common/error.d.ts +2 -0
  125. package/dist/src/common/error.d.ts.map +1 -0
  126. package/dist/src/common/error.js +7 -0
  127. package/dist/src/common/error.js.map +1 -0
  128. package/dist/src/common/filter-map.d.ts +11 -0
  129. package/dist/src/common/filter-map.d.ts.map +1 -0
  130. package/dist/src/common/filter-map.js +16 -0
  131. package/dist/src/common/filter-map.js.map +1 -0
  132. package/dist/src/common/general.d.ts +6 -0
  133. package/dist/src/common/general.d.ts.map +1 -0
  134. package/dist/src/common/general.js +15 -0
  135. package/dist/src/common/general.js.map +1 -0
  136. package/dist/src/common/html.d.ts +2 -0
  137. package/dist/src/common/html.d.ts.map +1 -0
  138. package/dist/src/common/html.js +12 -0
  139. package/dist/src/common/html.js.map +1 -0
  140. package/dist/src/common/merge-settings.d.ts +21 -0
  141. package/dist/src/common/merge-settings.d.ts.map +1 -0
  142. package/dist/src/common/merge-settings.js +28 -0
  143. package/dist/src/common/merge-settings.js.map +1 -0
  144. package/dist/src/common/metriport-organization.d.ts +3 -0
  145. package/dist/src/common/metriport-organization.d.ts.map +1 -0
  146. package/dist/src/common/metriport-organization.js +25 -0
  147. package/dist/src/common/metriport-organization.js.map +1 -0
  148. package/dist/src/common/net.d.ts +2 -0
  149. package/dist/src/common/net.d.ts.map +1 -0
  150. package/dist/src/common/net.js +15 -0
  151. package/dist/src/common/net.js.map +1 -0
  152. package/dist/src/common/normalize-oid.d.ts +9 -0
  153. package/dist/src/common/normalize-oid.d.ts.map +1 -0
  154. package/dist/src/common/normalize-oid.js +92 -0
  155. package/dist/src/common/normalize-oid.js.map +1 -0
  156. package/dist/src/common/numbers.d.ts +21 -0
  157. package/dist/src/common/numbers.d.ts.map +1 -0
  158. package/dist/src/common/numbers.js +67 -0
  159. package/dist/src/common/numbers.js.map +1 -0
  160. package/dist/src/common/purpose-of-use.d.ts +30 -0
  161. package/dist/src/common/purpose-of-use.d.ts.map +1 -0
  162. package/dist/src/common/purpose-of-use.js +35 -0
  163. package/dist/src/common/purpose-of-use.js.map +1 -0
  164. package/dist/src/common/response.d.ts +5 -0
  165. package/dist/src/common/response.d.ts.map +1 -0
  166. package/dist/src/common/response.js +16 -0
  167. package/dist/src/common/response.js.map +1 -0
  168. package/dist/src/common/retry.d.ts +67 -0
  169. package/dist/src/common/retry.d.ts.map +1 -0
  170. package/dist/src/common/retry.js +127 -0
  171. package/dist/src/common/retry.js.map +1 -0
  172. package/dist/src/common/sleep.d.ts +14 -0
  173. package/dist/src/common/sleep.d.ts.map +1 -0
  174. package/dist/src/common/sleep.js +28 -0
  175. package/dist/src/common/sleep.js.map +1 -0
  176. package/dist/src/common/sql.d.ts +17 -0
  177. package/dist/src/common/sql.d.ts.map +1 -0
  178. package/dist/src/common/sql.js +3 -0
  179. package/dist/src/common/sql.js.map +1 -0
  180. package/dist/src/common/string.d.ts +22 -0
  181. package/dist/src/common/string.d.ts.map +1 -0
  182. package/dist/src/common/string.js +62 -0
  183. package/dist/src/common/string.js.map +1 -0
  184. package/dist/src/common/timer.d.ts +18 -0
  185. package/dist/src/common/timer.d.ts.map +1 -0
  186. package/dist/src/common/timer.js +25 -0
  187. package/dist/src/common/timer.js.map +1 -0
  188. package/dist/src/common/title-case.d.ts +3 -0
  189. package/dist/src/common/title-case.d.ts.map +1 -0
  190. package/dist/src/common/title-case.js +25 -0
  191. package/dist/src/common/title-case.js.map +1 -0
  192. package/dist/src/common/types.d.ts +9 -0
  193. package/dist/src/common/types.d.ts.map +1 -0
  194. package/dist/src/common/types.js +16 -0
  195. package/dist/src/common/types.js.map +1 -0
  196. package/dist/src/common/uuid.d.ts +5 -0
  197. package/dist/src/common/uuid.d.ts.map +1 -0
  198. package/dist/src/common/uuid.js +11 -0
  199. package/dist/src/common/uuid.js.map +1 -0
  200. package/dist/src/common/validate-npi.d.ts +10 -0
  201. package/dist/src/common/validate-npi.d.ts.map +1 -0
  202. package/dist/src/common/validate-npi.js +40 -0
  203. package/dist/src/common/validate-npi.js.map +1 -0
  204. package/dist/src/common/xml-parser.d.ts +3 -0
  205. package/dist/src/common/xml-parser.d.ts.map +1 -0
  206. package/dist/src/common/xml-parser.js +16 -0
  207. package/dist/src/common/xml-parser.js.map +1 -0
  208. package/dist/src/common/zod.d.ts +3 -0
  209. package/dist/src/common/zod.d.ts.map +1 -0
  210. package/dist/src/common/zod.js +11 -0
  211. package/dist/src/common/zod.js.map +1 -0
  212. package/dist/src/domain/__tests__/cursor-utils.test.d.ts +2 -0
  213. package/dist/src/domain/__tests__/cursor-utils.test.d.ts.map +1 -0
  214. package/dist/src/domain/__tests__/cursor-utils.test.js +216 -0
  215. package/dist/src/domain/__tests__/cursor-utils.test.js.map +1 -0
  216. package/dist/src/domain/__tests__/dob.test.d.ts +2 -0
  217. package/dist/src/domain/__tests__/dob.test.d.ts.map +1 -0
  218. package/dist/src/domain/__tests__/dob.test.js +37 -0
  219. package/dist/src/domain/__tests__/dob.test.js.map +1 -0
  220. package/dist/src/domain/__tests__/gender.test.d.ts +2 -0
  221. package/dist/src/domain/__tests__/gender.test.d.ts.map +1 -0
  222. package/dist/src/domain/__tests__/gender.test.js +64 -0
  223. package/dist/src/domain/__tests__/gender.test.js.map +1 -0
  224. package/dist/src/domain/__tests__/pagination-schema.test.d.ts +2 -0
  225. package/dist/src/domain/__tests__/pagination-schema.test.d.ts.map +1 -0
  226. package/dist/src/domain/__tests__/pagination-schema.test.js +165 -0
  227. package/dist/src/domain/__tests__/pagination-schema.test.js.map +1 -0
  228. package/dist/src/domain/address/__tests__/country.test.d.ts +2 -0
  229. package/dist/src/domain/address/__tests__/country.test.d.ts.map +1 -0
  230. package/dist/src/domain/address/__tests__/country.test.js +51 -0
  231. package/dist/src/domain/address/__tests__/country.test.js.map +1 -0
  232. package/dist/src/domain/address/__tests__/state.test.d.ts +2 -0
  233. package/dist/src/domain/address/__tests__/state.test.d.ts.map +1 -0
  234. package/dist/src/domain/address/__tests__/state.test.js +40 -0
  235. package/dist/src/domain/address/__tests__/state.test.js.map +1 -0
  236. package/dist/src/domain/address/__tests__/territory.test.d.ts +2 -0
  237. package/dist/src/domain/address/__tests__/territory.test.d.ts.map +1 -0
  238. package/dist/src/domain/address/__tests__/territory.test.js +35 -0
  239. package/dist/src/domain/address/__tests__/territory.test.js.map +1 -0
  240. package/dist/src/domain/address/__tests__/zip.test.d.ts +2 -0
  241. package/dist/src/domain/address/__tests__/zip.test.d.ts.map +1 -0
  242. package/dist/src/domain/address/__tests__/zip.test.js +162 -0
  243. package/dist/src/domain/address/__tests__/zip.test.js.map +1 -0
  244. package/dist/src/domain/address/city.d.ts +2 -0
  245. package/dist/src/domain/address/city.d.ts.map +1 -0
  246. package/dist/src/domain/address/city.js +8 -0
  247. package/dist/src/domain/address/city.js.map +1 -0
  248. package/dist/src/domain/address/country.d.ts +4 -0
  249. package/dist/src/domain/address/country.d.ts.map +1 -0
  250. package/dist/src/domain/address/country.js +31 -0
  251. package/dist/src/domain/address/country.js.map +1 -0
  252. package/dist/src/domain/address/index.d.ts +6 -0
  253. package/dist/src/domain/address/index.d.ts.map +1 -0
  254. package/dist/src/domain/address/index.js +20 -0
  255. package/dist/src/domain/address/index.js.map +1 -0
  256. package/dist/src/domain/address/state.d.ts +58 -0
  257. package/dist/src/domain/address/state.d.ts.map +1 -0
  258. package/dist/src/domain/address/state.js +179 -0
  259. package/dist/src/domain/address/state.js.map +1 -0
  260. package/dist/src/domain/address/territory.d.ts +10 -0
  261. package/dist/src/domain/address/territory.d.ts.map +1 -0
  262. package/dist/src/domain/address/territory.js +32 -0
  263. package/dist/src/domain/address/territory.js.map +1 -0
  264. package/dist/src/domain/address/zip.d.ts +9 -0
  265. package/dist/src/domain/address/zip.d.ts.map +1 -0
  266. package/dist/src/domain/address/zip.js +86 -0
  267. package/dist/src/domain/address/zip.js.map +1 -0
  268. package/dist/src/domain/base-domain.d.ts +14 -0
  269. package/dist/src/domain/base-domain.d.ts.map +1 -0
  270. package/dist/src/domain/base-domain.js +3 -0
  271. package/dist/src/domain/base-domain.js.map +1 -0
  272. package/dist/src/domain/baseDto.d.ts +9 -0
  273. package/dist/src/domain/baseDto.d.ts.map +1 -0
  274. package/dist/src/domain/baseDto.js +10 -0
  275. package/dist/src/domain/baseDto.js.map +1 -0
  276. package/dist/src/domain/care-gap.d.ts +49 -0
  277. package/dist/src/domain/care-gap.d.ts.map +1 -0
  278. package/dist/src/domain/care-gap.js +3 -0
  279. package/dist/src/domain/care-gap.js.map +1 -0
  280. package/dist/src/domain/cohort.d.ts +90 -0
  281. package/dist/src/domain/cohort.d.ts.map +1 -0
  282. package/dist/src/domain/cohort.js +78 -0
  283. package/dist/src/domain/cohort.js.map +1 -0
  284. package/dist/src/domain/consolidated/recreate/event-type.d.ts +7 -0
  285. package/dist/src/domain/consolidated/recreate/event-type.d.ts.map +1 -0
  286. package/dist/src/domain/consolidated/recreate/event-type.js +11 -0
  287. package/dist/src/domain/consolidated/recreate/event-type.js.map +1 -0
  288. package/dist/src/domain/consolidated/recreate/index.d.ts +3 -0
  289. package/dist/src/domain/consolidated/recreate/index.d.ts.map +1 -0
  290. package/dist/src/domain/consolidated/recreate/index.js +19 -0
  291. package/dist/src/domain/consolidated/recreate/index.js.map +1 -0
  292. package/dist/src/domain/consolidated/recreate/supported-event-types.d.ts +8 -0
  293. package/dist/src/domain/consolidated/recreate/supported-event-types.d.ts.map +1 -0
  294. package/dist/src/domain/consolidated/recreate/supported-event-types.js +24 -0
  295. package/dist/src/domain/consolidated/recreate/supported-event-types.js.map +1 -0
  296. package/dist/src/domain/contact/__tests__/email.test.d.ts +2 -0
  297. package/dist/src/domain/contact/__tests__/email.test.d.ts.map +1 -0
  298. package/dist/src/domain/contact/__tests__/email.test.js +136 -0
  299. package/dist/src/domain/contact/__tests__/email.test.js.map +1 -0
  300. package/dist/src/domain/contact/__tests__/phone.test.d.ts +2 -0
  301. package/dist/src/domain/contact/__tests__/phone.test.d.ts.map +1 -0
  302. package/dist/src/domain/contact/__tests__/phone.test.js +194 -0
  303. package/dist/src/domain/contact/__tests__/phone.test.js.map +1 -0
  304. package/dist/src/domain/contact/email.d.ts +32 -0
  305. package/dist/src/domain/contact/email.d.ts.map +1 -0
  306. package/dist/src/domain/contact/email.js +101 -0
  307. package/dist/src/domain/contact/email.js.map +1 -0
  308. package/dist/src/domain/contact/phone.d.ts +22 -0
  309. package/dist/src/domain/contact/phone.d.ts.map +1 -0
  310. package/dist/src/domain/contact/phone.js +68 -0
  311. package/dist/src/domain/contact/phone.js.map +1 -0
  312. package/dist/src/domain/cql-engine/transform.d.ts +32 -0
  313. package/dist/src/domain/cql-engine/transform.d.ts.map +1 -0
  314. package/dist/src/domain/cql-engine/transform.js +19 -0
  315. package/dist/src/domain/cql-engine/transform.js.map +1 -0
  316. package/dist/src/domain/cursor-utils.d.ts +20 -0
  317. package/dist/src/domain/cursor-utils.d.ts.map +1 -0
  318. package/dist/src/domain/cursor-utils.js +50 -0
  319. package/dist/src/domain/cursor-utils.js.map +1 -0
  320. package/dist/src/domain/customer.d.ts +123 -0
  321. package/dist/src/domain/customer.d.ts.map +1 -0
  322. package/dist/src/domain/customer.js +30 -0
  323. package/dist/src/domain/customer.js.map +1 -0
  324. package/dist/src/domain/db.d.ts +71 -0
  325. package/dist/src/domain/db.d.ts.map +1 -0
  326. package/dist/src/domain/db.js +45 -0
  327. package/dist/src/domain/db.js.map +1 -0
  328. package/dist/src/domain/dob.d.ts +10 -0
  329. package/dist/src/domain/dob.d.ts.map +1 -0
  330. package/dist/src/domain/dob.js +26 -0
  331. package/dist/src/domain/dob.js.map +1 -0
  332. package/dist/src/domain/externalId.d.ts +2 -0
  333. package/dist/src/domain/externalId.d.ts.map +1 -0
  334. package/dist/src/domain/externalId.js +7 -0
  335. package/dist/src/domain/externalId.js.map +1 -0
  336. package/dist/src/domain/gender.d.ts +8 -0
  337. package/dist/src/domain/gender.d.ts.map +1 -0
  338. package/dist/src/domain/gender.js +33 -0
  339. package/dist/src/domain/gender.js.map +1 -0
  340. package/dist/src/domain/job/job-status.d.ts +15 -0
  341. package/dist/src/domain/job/job-status.d.ts.map +1 -0
  342. package/dist/src/domain/job/job-status.js +57 -0
  343. package/dist/src/domain/job/job-status.js.map +1 -0
  344. package/dist/src/domain/job/patient-job.d.ts +54 -0
  345. package/dist/src/domain/job/patient-job.d.ts.map +1 -0
  346. package/dist/src/domain/job/patient-job.js +31 -0
  347. package/dist/src/domain/job/patient-job.js.map +1 -0
  348. package/dist/src/domain/job/types.d.ts +19 -0
  349. package/dist/src/domain/job/types.d.ts.map +1 -0
  350. package/dist/src/domain/job/types.js +15 -0
  351. package/dist/src/domain/job/types.js.map +1 -0
  352. package/dist/src/domain/jwt-token.d.ts +6 -0
  353. package/dist/src/domain/jwt-token.d.ts.map +1 -0
  354. package/dist/src/domain/jwt-token.js +3 -0
  355. package/dist/src/domain/jwt-token.js.map +1 -0
  356. package/dist/src/domain/metriport.d.ts +9 -0
  357. package/dist/src/domain/metriport.d.ts.map +1 -0
  358. package/dist/src/domain/metriport.js +13 -0
  359. package/dist/src/domain/metriport.js.map +1 -0
  360. package/dist/src/domain/network-query/__tests__/source.test.d.ts +2 -0
  361. package/dist/src/domain/network-query/__tests__/source.test.d.ts.map +1 -0
  362. package/dist/src/domain/network-query/__tests__/source.test.js +450 -0
  363. package/dist/src/domain/network-query/__tests__/source.test.js.map +1 -0
  364. package/dist/src/domain/network-query/index.d.ts +4 -0
  365. package/dist/src/domain/network-query/index.d.ts.map +1 -0
  366. package/dist/src/domain/network-query/index.js +20 -0
  367. package/dist/src/domain/network-query/index.js.map +1 -0
  368. package/dist/src/domain/network-query/query.d.ts +367 -0
  369. package/dist/src/domain/network-query/query.d.ts.map +1 -0
  370. package/dist/src/domain/network-query/query.js +23 -0
  371. package/dist/src/domain/network-query/query.js.map +1 -0
  372. package/dist/src/domain/network-query/source.d.ts +734 -0
  373. package/dist/src/domain/network-query/source.d.ts.map +1 -0
  374. package/dist/src/domain/network-query/source.js +382 -0
  375. package/dist/src/domain/network-query/source.js.map +1 -0
  376. package/dist/src/domain/network-query/supported-event-types.d.ts +17 -0
  377. package/dist/src/domain/network-query/supported-event-types.d.ts.map +1 -0
  378. package/dist/src/domain/network-query/supported-event-types.js +60 -0
  379. package/dist/src/domain/network-query/supported-event-types.js.map +1 -0
  380. package/dist/src/domain/notification-webhooks/index.d.ts +2 -0
  381. package/dist/src/domain/notification-webhooks/index.d.ts.map +1 -0
  382. package/dist/src/domain/notification-webhooks/index.js +18 -0
  383. package/dist/src/domain/notification-webhooks/index.js.map +1 -0
  384. package/dist/src/domain/notification-webhooks/types.d.ts +33 -0
  385. package/dist/src/domain/notification-webhooks/types.d.ts.map +1 -0
  386. package/dist/src/domain/notification-webhooks/types.js +26 -0
  387. package/dist/src/domain/notification-webhooks/types.js.map +1 -0
  388. package/dist/src/domain/organization.d.ts +90 -0
  389. package/dist/src/domain/organization.d.ts.map +1 -0
  390. package/dist/src/domain/organization.js +41 -0
  391. package/dist/src/domain/organization.js.map +1 -0
  392. package/dist/src/domain/pagination-v2.d.ts +230 -0
  393. package/dist/src/domain/pagination-v2.d.ts.map +1 -0
  394. package/dist/src/domain/pagination-v2.js +132 -0
  395. package/dist/src/domain/pagination-v2.js.map +1 -0
  396. package/dist/src/domain/pagination.d.ts +71 -0
  397. package/dist/src/domain/pagination.d.ts.map +1 -0
  398. package/dist/src/domain/pagination.js +36 -0
  399. package/dist/src/domain/pagination.js.map +1 -0
  400. package/dist/src/domain/patient/__tests__/ssn.test.d.ts +2 -0
  401. package/dist/src/domain/patient/__tests__/ssn.test.d.ts.map +1 -0
  402. package/dist/src/domain/patient/__tests__/ssn.test.js +54 -0
  403. package/dist/src/domain/patient/__tests__/ssn.test.js.map +1 -0
  404. package/dist/src/domain/patient/patient-import/__tests__/status.test.d.ts +2 -0
  405. package/dist/src/domain/patient/patient-import/__tests__/status.test.d.ts.map +1 -0
  406. package/dist/src/domain/patient/patient-import/__tests__/status.test.js +74 -0
  407. package/dist/src/domain/patient/patient-import/__tests__/status.test.js.map +1 -0
  408. package/dist/src/domain/patient/patient-import/__tests__/types.d.ts +4 -0
  409. package/dist/src/domain/patient/patient-import/__tests__/types.d.ts.map +1 -0
  410. package/dist/src/domain/patient/patient-import/__tests__/types.js +19 -0
  411. package/dist/src/domain/patient/patient-import/__tests__/types.js.map +1 -0
  412. package/dist/src/domain/patient/patient-import/__tests__/types.test.d.ts +2 -0
  413. package/dist/src/domain/patient/patient-import/__tests__/types.test.d.ts.map +1 -0
  414. package/dist/src/domain/patient/patient-import/__tests__/types.test.js +69 -0
  415. package/dist/src/domain/patient/patient-import/__tests__/types.test.js.map +1 -0
  416. package/dist/src/domain/patient/patient-import/create.d.ts +19 -0
  417. package/dist/src/domain/patient/patient-import/create.d.ts.map +1 -0
  418. package/dist/src/domain/patient/patient-import/create.js +49 -0
  419. package/dist/src/domain/patient/patient-import/create.js.map +1 -0
  420. package/dist/src/domain/patient/patient-import/mapping.d.ts +20 -0
  421. package/dist/src/domain/patient/patient-import/mapping.d.ts.map +1 -0
  422. package/dist/src/domain/patient/patient-import/mapping.js +3 -0
  423. package/dist/src/domain/patient/patient-import/mapping.js.map +1 -0
  424. package/dist/src/domain/patient/patient-import/metadata.d.ts +9 -0
  425. package/dist/src/domain/patient/patient-import/metadata.d.ts.map +1 -0
  426. package/dist/src/domain/patient/patient-import/metadata.js +21 -0
  427. package/dist/src/domain/patient/patient-import/metadata.js.map +1 -0
  428. package/dist/src/domain/patient/patient-import/schemas.d.ts +46 -0
  429. package/dist/src/domain/patient/patient-import/schemas.d.ts.map +1 -0
  430. package/dist/src/domain/patient/patient-import/schemas.js +49 -0
  431. package/dist/src/domain/patient/patient-import/schemas.js.map +1 -0
  432. package/dist/src/domain/patient/patient-import/status.d.ts +15 -0
  433. package/dist/src/domain/patient/patient-import/status.d.ts.map +1 -0
  434. package/dist/src/domain/patient/patient-import/status.js +48 -0
  435. package/dist/src/domain/patient/patient-import/status.js.map +1 -0
  436. package/dist/src/domain/patient/patient-import/types.d.ts +43 -0
  437. package/dist/src/domain/patient/patient-import/types.d.ts.map +1 -0
  438. package/dist/src/domain/patient/patient-import/types.js +15 -0
  439. package/dist/src/domain/patient/patient-import/types.js.map +1 -0
  440. package/dist/src/domain/patient/patient-monitoring/__tests__/utils.test.d.ts +2 -0
  441. package/dist/src/domain/patient/patient-monitoring/__tests__/utils.test.d.ts.map +1 -0
  442. package/dist/src/domain/patient/patient-monitoring/__tests__/utils.test.js +66 -0
  443. package/dist/src/domain/patient/patient-monitoring/__tests__/utils.test.js.map +1 -0
  444. package/dist/src/domain/patient/patient-monitoring/discharge-requery.d.ts +364 -0
  445. package/dist/src/domain/patient/patient-monitoring/discharge-requery.d.ts.map +1 -0
  446. package/dist/src/domain/patient/patient-monitoring/discharge-requery.js +55 -0
  447. package/dist/src/domain/patient/patient-monitoring/discharge-requery.js.map +1 -0
  448. package/dist/src/domain/patient/patient-monitoring/utils.d.ts +59 -0
  449. package/dist/src/domain/patient/patient-monitoring/utils.d.ts.map +1 -0
  450. package/dist/src/domain/patient/patient-monitoring/utils.js +120 -0
  451. package/dist/src/domain/patient/patient-monitoring/utils.js.map +1 -0
  452. package/dist/src/domain/patient/patient-settings.d.ts +121 -0
  453. package/dist/src/domain/patient/patient-settings.d.ts.map +1 -0
  454. package/dist/src/domain/patient/patient-settings.js +27 -0
  455. package/dist/src/domain/patient/patient-settings.js.map +1 -0
  456. package/dist/src/domain/patient/patient.d.ts +23 -0
  457. package/dist/src/domain/patient/patient.d.ts.map +1 -0
  458. package/dist/src/domain/patient/patient.js +14 -0
  459. package/dist/src/domain/patient/patient.js.map +1 -0
  460. package/dist/src/domain/patient/ssn.d.ts +3 -0
  461. package/dist/src/domain/patient/ssn.d.ts.map +1 -0
  462. package/dist/src/domain/patient/ssn.js +28 -0
  463. package/dist/src/domain/patient/ssn.js.map +1 -0
  464. package/dist/src/domain/patient-cohort.d.ts +6 -0
  465. package/dist/src/domain/patient-cohort.d.ts.map +1 -0
  466. package/dist/src/domain/patient-cohort.js +3 -0
  467. package/dist/src/domain/patient-cohort.js.map +1 -0
  468. package/dist/src/domain/patient-or-all.d.ts +34 -0
  469. package/dist/src/domain/patient-or-all.d.ts.map +1 -0
  470. package/dist/src/domain/patient-or-all.js +17 -0
  471. package/dist/src/domain/patient-or-all.js.map +1 -0
  472. package/dist/src/domain/patient.d.ts +90 -0
  473. package/dist/src/domain/patient.d.ts.map +1 -0
  474. package/dist/src/domain/patient.js +32 -0
  475. package/dist/src/domain/patient.js.map +1 -0
  476. package/dist/src/domain/rate-limiting/index.d.ts +34 -0
  477. package/dist/src/domain/rate-limiting/index.d.ts.map +1 -0
  478. package/dist/src/domain/rate-limiting/index.js +55 -0
  479. package/dist/src/domain/rate-limiting/index.js.map +1 -0
  480. package/dist/src/domain/roster/patient-roster-added-by.d.ts +6 -0
  481. package/dist/src/domain/roster/patient-roster-added-by.d.ts.map +1 -0
  482. package/dist/src/domain/roster/patient-roster-added-by.js +19 -0
  483. package/dist/src/domain/roster/patient-roster-added-by.js.map +1 -0
  484. package/dist/src/domain/roster/patient-roster.d.ts +24 -0
  485. package/dist/src/domain/roster/patient-roster.d.ts.map +1 -0
  486. package/dist/src/domain/roster/patient-roster.js +3 -0
  487. package/dist/src/domain/roster/patient-roster.js.map +1 -0
  488. package/dist/src/domain/roster/roster-status.d.ts +16 -0
  489. package/dist/src/domain/roster/roster-status.d.ts.map +1 -0
  490. package/dist/src/domain/roster/roster-status.js +49 -0
  491. package/dist/src/domain/roster/roster-status.js.map +1 -0
  492. package/dist/src/domain/roster/roster.d.ts +39 -0
  493. package/dist/src/domain/roster/roster.d.ts.map +1 -0
  494. package/dist/src/domain/roster/roster.js +3 -0
  495. package/dist/src/domain/roster/roster.js.map +1 -0
  496. package/dist/src/domain/secrets.d.ts +4 -0
  497. package/dist/src/domain/secrets.d.ts.map +1 -0
  498. package/dist/src/domain/secrets.js +7 -0
  499. package/dist/src/domain/secrets.js.map +1 -0
  500. package/dist/src/domain/suspect.d.ts +5 -0
  501. package/dist/src/domain/suspect.d.ts.map +1 -0
  502. package/dist/src/domain/suspect.js +3 -0
  503. package/dist/src/domain/suspect.js.map +1 -0
  504. package/dist/src/domain/tcm-encounter.d.ts +453 -0
  505. package/dist/src/domain/tcm-encounter.d.ts.map +1 -0
  506. package/dist/src/domain/tcm-encounter.js +98 -0
  507. package/dist/src/domain/tcm-encounter.js.map +1 -0
  508. package/dist/src/error/__tests__/shared.test.d.ts +2 -0
  509. package/dist/src/error/__tests__/shared.test.d.ts.map +1 -0
  510. package/dist/src/error/__tests__/shared.test.js +539 -0
  511. package/dist/src/error/__tests__/shared.test.js.map +1 -0
  512. package/dist/src/error/bad-request.d.ts +5 -0
  513. package/dist/src/error/bad-request.d.ts.map +1 -0
  514. package/dist/src/error/bad-request.js +18 -0
  515. package/dist/src/error/bad-request.js.map +1 -0
  516. package/dist/src/error/metriport-error.d.ts +9 -0
  517. package/dist/src/error/metriport-error.d.ts.map +1 -0
  518. package/dist/src/error/metriport-error.js +22 -0
  519. package/dist/src/error/metriport-error.js.map +1 -0
  520. package/dist/src/error/not-found.d.ts +5 -0
  521. package/dist/src/error/not-found.d.ts.map +1 -0
  522. package/dist/src/error/not-found.js +18 -0
  523. package/dist/src/error/not-found.js.map +1 -0
  524. package/dist/src/error/shared.d.ts +10 -0
  525. package/dist/src/error/shared.d.ts.map +1 -0
  526. package/dist/src/error/shared.js +79 -0
  527. package/dist/src/error/shared.js.map +1 -0
  528. package/dist/src/error/too-many-requests.d.ts +5 -0
  529. package/dist/src/error/too-many-requests.d.ts.map +1 -0
  530. package/dist/src/error/too-many-requests.js +18 -0
  531. package/dist/src/error/too-many-requests.js.map +1 -0
  532. package/dist/src/external/ehr/practicefusion/allergy-data-map.d.ts +34 -0
  533. package/dist/src/external/ehr/practicefusion/allergy-data-map.d.ts.map +1 -0
  534. package/dist/src/external/ehr/practicefusion/allergy-data-map.js +2612 -0
  535. package/dist/src/external/ehr/practicefusion/allergy-data-map.js.map +1 -0
  536. package/dist/src/external/ehr/practicefusion/index.d.ts +3 -0
  537. package/dist/src/external/ehr/practicefusion/index.d.ts.map +1 -0
  538. package/dist/src/external/ehr/practicefusion/index.js +19 -0
  539. package/dist/src/external/ehr/practicefusion/index.js.map +1 -0
  540. package/dist/src/external/ehr/practicefusion/shared.d.ts +18 -0
  541. package/dist/src/external/ehr/practicefusion/shared.d.ts.map +1 -0
  542. package/dist/src/external/ehr/practicefusion/shared.js +65 -0
  543. package/dist/src/external/ehr/practicefusion/shared.js.map +1 -0
  544. package/dist/src/external/hl7v2/constants.d.ts +39 -0
  545. package/dist/src/external/hl7v2/constants.d.ts.map +1 -0
  546. package/dist/src/external/hl7v2/constants.js +56 -0
  547. package/dist/src/external/hl7v2/constants.js.map +1 -0
  548. package/dist/src/external/ihe/constants.d.ts +17 -0
  549. package/dist/src/external/ihe/constants.d.ts.map +1 -0
  550. package/dist/src/external/ihe/constants.js +72 -0
  551. package/dist/src/external/ihe/constants.js.map +1 -0
  552. package/dist/src/external/ihe/index.d.ts +3 -0
  553. package/dist/src/external/ihe/index.d.ts.map +1 -0
  554. package/dist/src/external/ihe/index.js +19 -0
  555. package/dist/src/external/ihe/index.js.map +1 -0
  556. package/dist/src/external/ihe/shared.d.ts +8 -0
  557. package/dist/src/external/ihe/shared.d.ts.map +1 -0
  558. package/dist/src/external/ihe/shared.js +24 -0
  559. package/dist/src/external/ihe/shared.js.map +1 -0
  560. package/dist/src/external/index.d.ts +4 -0
  561. package/dist/src/external/index.d.ts.map +1 -0
  562. package/dist/src/external/index.js +20 -0
  563. package/dist/src/external/index.js.map +1 -0
  564. package/dist/src/external/zod/__tests__/iso-date.test.d.ts +2 -0
  565. package/dist/src/external/zod/__tests__/iso-date.test.d.ts.map +1 -0
  566. package/dist/src/external/zod/__tests__/iso-date.test.js +115 -0
  567. package/dist/src/external/zod/__tests__/iso-date.test.js.map +1 -0
  568. package/dist/src/external/zod/date.d.ts +12 -0
  569. package/dist/src/external/zod/date.d.ts.map +1 -0
  570. package/dist/src/external/zod/date.js +28 -0
  571. package/dist/src/external/zod/date.js.map +1 -0
  572. package/dist/src/external/zod/index.d.ts +5 -0
  573. package/dist/src/external/zod/index.d.ts.map +1 -0
  574. package/dist/src/external/zod/index.js +21 -0
  575. package/dist/src/external/zod/index.js.map +1 -0
  576. package/dist/src/external/zod/string.d.ts +11 -0
  577. package/dist/src/external/zod/string.d.ts.map +1 -0
  578. package/dist/src/external/zod/string.js +27 -0
  579. package/dist/src/external/zod/string.js.map +1 -0
  580. package/dist/src/external/zod/us-state.d.ts +3 -0
  581. package/dist/src/external/zod/us-state.d.ts.map +1 -0
  582. package/dist/src/external/zod/us-state.js +10 -0
  583. package/dist/src/external/zod/us-state.js.map +1 -0
  584. package/dist/src/external/zod/zip.d.ts +3 -0
  585. package/dist/src/external/zod/zip.d.ts.map +1 -0
  586. package/dist/src/external/zod/zip.js +13 -0
  587. package/dist/src/external/zod/zip.js.map +1 -0
  588. package/dist/src/index.d.ts +63 -0
  589. package/dist/src/index.d.ts.map +1 -0
  590. package/dist/src/index.js +123 -0
  591. package/dist/src/index.js.map +1 -0
  592. package/dist/src/interface/external/carequality/directory/simplified-org.d.ts +10 -0
  593. package/dist/src/interface/external/carequality/directory/simplified-org.d.ts.map +1 -0
  594. package/dist/src/interface/external/carequality/directory/simplified-org.js +3 -0
  595. package/dist/src/interface/external/carequality/directory/simplified-org.js.map +1 -0
  596. package/dist/src/interface/external/ehr/athenahealth/allergy.d.ts +206 -0
  597. package/dist/src/interface/external/ehr/athenahealth/allergy.d.ts.map +1 -0
  598. package/dist/src/interface/external/ehr/athenahealth/allergy.js +44 -0
  599. package/dist/src/interface/external/ehr/athenahealth/allergy.js.map +1 -0
  600. package/dist/src/interface/external/ehr/athenahealth/appointment.d.ts +129 -0
  601. package/dist/src/interface/external/ehr/athenahealth/appointment.d.ts.map +1 -0
  602. package/dist/src/interface/external/ehr/athenahealth/appointment.js +30 -0
  603. package/dist/src/interface/external/ehr/athenahealth/appointment.js.map +1 -0
  604. package/dist/src/interface/external/ehr/athenahealth/clinical-document.d.ts +27 -0
  605. package/dist/src/interface/external/ehr/athenahealth/clinical-document.d.ts.map +1 -0
  606. package/dist/src/interface/external/ehr/athenahealth/clinical-document.js +14 -0
  607. package/dist/src/interface/external/ehr/athenahealth/clinical-document.js.map +1 -0
  608. package/dist/src/interface/external/ehr/athenahealth/cx-mapping.d.ts +484 -0
  609. package/dist/src/interface/external/ehr/athenahealth/cx-mapping.d.ts.map +1 -0
  610. package/dist/src/interface/external/ehr/athenahealth/cx-mapping.js +17 -0
  611. package/dist/src/interface/external/ehr/athenahealth/cx-mapping.js.map +1 -0
  612. package/dist/src/interface/external/ehr/athenahealth/department.d.ts +28 -0
  613. package/dist/src/interface/external/ehr/athenahealth/department.d.ts.map +1 -0
  614. package/dist/src/interface/external/ehr/athenahealth/department.js +11 -0
  615. package/dist/src/interface/external/ehr/athenahealth/department.js.map +1 -0
  616. package/dist/src/interface/external/ehr/athenahealth/encounter.d.ts +33 -0
  617. package/dist/src/interface/external/ehr/athenahealth/encounter.d.ts.map +1 -0
  618. package/dist/src/interface/external/ehr/athenahealth/encounter.js +13 -0
  619. package/dist/src/interface/external/ehr/athenahealth/encounter.js.map +1 -0
  620. package/dist/src/interface/external/ehr/athenahealth/family-history.d.ts +305 -0
  621. package/dist/src/interface/external/ehr/athenahealth/family-history.d.ts.map +1 -0
  622. package/dist/src/interface/external/ehr/athenahealth/family-history.js +44 -0
  623. package/dist/src/interface/external/ehr/athenahealth/family-history.js.map +1 -0
  624. package/dist/src/interface/external/ehr/athenahealth/index.d.ts +17 -0
  625. package/dist/src/interface/external/ehr/athenahealth/index.d.ts.map +1 -0
  626. package/dist/src/interface/external/ehr/athenahealth/index.js +33 -0
  627. package/dist/src/interface/external/ehr/athenahealth/index.js.map +1 -0
  628. package/dist/src/interface/external/ehr/athenahealth/jwt-token.d.ts +46 -0
  629. package/dist/src/interface/external/ehr/athenahealth/jwt-token.d.ts.map +1 -0
  630. package/dist/src/interface/external/ehr/athenahealth/jwt-token.js +26 -0
  631. package/dist/src/interface/external/ehr/athenahealth/jwt-token.js.map +1 -0
  632. package/dist/src/interface/external/ehr/athenahealth/lab-result.d.ts +27 -0
  633. package/dist/src/interface/external/ehr/athenahealth/lab-result.d.ts.map +1 -0
  634. package/dist/src/interface/external/ehr/athenahealth/lab-result.js +14 -0
  635. package/dist/src/interface/external/ehr/athenahealth/lab-result.js.map +1 -0
  636. package/dist/src/interface/external/ehr/athenahealth/medication.d.ts +63 -0
  637. package/dist/src/interface/external/ehr/athenahealth/medication.d.ts.map +1 -0
  638. package/dist/src/interface/external/ehr/athenahealth/medication.js +19 -0
  639. package/dist/src/interface/external/ehr/athenahealth/medication.js.map +1 -0
  640. package/dist/src/interface/external/ehr/athenahealth/patient-mapping.d.ts +14 -0
  641. package/dist/src/interface/external/ehr/athenahealth/patient-mapping.d.ts.map +1 -0
  642. package/dist/src/interface/external/ehr/athenahealth/patient-mapping.js +11 -0
  643. package/dist/src/interface/external/ehr/athenahealth/patient-mapping.js.map +1 -0
  644. package/dist/src/interface/external/ehr/athenahealth/patient.d.ts +78 -0
  645. package/dist/src/interface/external/ehr/athenahealth/patient.d.ts.map +1 -0
  646. package/dist/src/interface/external/ehr/athenahealth/patient.js +15 -0
  647. package/dist/src/interface/external/ehr/athenahealth/patient.js.map +1 -0
  648. package/dist/src/interface/external/ehr/athenahealth/problem.d.ts +27 -0
  649. package/dist/src/interface/external/ehr/athenahealth/problem.d.ts.map +1 -0
  650. package/dist/src/interface/external/ehr/athenahealth/problem.js +14 -0
  651. package/dist/src/interface/external/ehr/athenahealth/problem.js.map +1 -0
  652. package/dist/src/interface/external/ehr/athenahealth/subscription.d.ts +20 -0
  653. package/dist/src/interface/external/ehr/athenahealth/subscription.d.ts.map +1 -0
  654. package/dist/src/interface/external/ehr/athenahealth/subscription.js +11 -0
  655. package/dist/src/interface/external/ehr/athenahealth/subscription.js.map +1 -0
  656. package/dist/src/interface/external/ehr/athenahealth/surgical-history.d.ts +27 -0
  657. package/dist/src/interface/external/ehr/athenahealth/surgical-history.d.ts.map +1 -0
  658. package/dist/src/interface/external/ehr/athenahealth/surgical-history.js +14 -0
  659. package/dist/src/interface/external/ehr/athenahealth/surgical-history.js.map +1 -0
  660. package/dist/src/interface/external/ehr/athenahealth/vaccine.d.ts +18 -0
  661. package/dist/src/interface/external/ehr/athenahealth/vaccine.d.ts.map +1 -0
  662. package/dist/src/interface/external/ehr/athenahealth/vaccine.js +11 -0
  663. package/dist/src/interface/external/ehr/athenahealth/vaccine.js.map +1 -0
  664. package/dist/src/interface/external/ehr/athenahealth/vitals.d.ts +67 -0
  665. package/dist/src/interface/external/ehr/athenahealth/vitals.d.ts.map +1 -0
  666. package/dist/src/interface/external/ehr/athenahealth/vitals.js +15 -0
  667. package/dist/src/interface/external/ehr/athenahealth/vitals.js.map +1 -0
  668. package/dist/src/interface/external/ehr/canvas/allergen.d.ts +13 -0
  669. package/dist/src/interface/external/ehr/canvas/allergen.d.ts.map +1 -0
  670. package/dist/src/interface/external/ehr/canvas/allergen.js +9 -0
  671. package/dist/src/interface/external/ehr/canvas/allergen.js.map +1 -0
  672. package/dist/src/interface/external/ehr/canvas/appointment.d.ts +170 -0
  673. package/dist/src/interface/external/ehr/canvas/appointment.d.ts.map +1 -0
  674. package/dist/src/interface/external/ehr/canvas/appointment.js +24 -0
  675. package/dist/src/interface/external/ehr/canvas/appointment.js.map +1 -0
  676. package/dist/src/interface/external/ehr/canvas/cx-mapping.d.ts +469 -0
  677. package/dist/src/interface/external/ehr/canvas/cx-mapping.d.ts.map +1 -0
  678. package/dist/src/interface/external/ehr/canvas/cx-mapping.js +12 -0
  679. package/dist/src/interface/external/ehr/canvas/cx-mapping.js.map +1 -0
  680. package/dist/src/interface/external/ehr/canvas/external-event.d.ts +67 -0
  681. package/dist/src/interface/external/ehr/canvas/external-event.d.ts.map +1 -0
  682. package/dist/src/interface/external/ehr/canvas/external-event.js +48 -0
  683. package/dist/src/interface/external/ehr/canvas/external-event.js.map +1 -0
  684. package/dist/src/interface/external/ehr/canvas/index.d.ts +7 -0
  685. package/dist/src/interface/external/ehr/canvas/index.d.ts.map +1 -0
  686. package/dist/src/interface/external/ehr/canvas/index.js +23 -0
  687. package/dist/src/interface/external/ehr/canvas/index.js.map +1 -0
  688. package/dist/src/interface/external/ehr/canvas/jwt-token.d.ts +73 -0
  689. package/dist/src/interface/external/ehr/canvas/jwt-token.d.ts.map +1 -0
  690. package/dist/src/interface/external/ehr/canvas/jwt-token.js +37 -0
  691. package/dist/src/interface/external/ehr/canvas/jwt-token.js.map +1 -0
  692. package/dist/src/interface/external/ehr/canvas/note.d.ts +119 -0
  693. package/dist/src/interface/external/ehr/canvas/note.d.ts.map +1 -0
  694. package/dist/src/interface/external/ehr/canvas/note.js +26 -0
  695. package/dist/src/interface/external/ehr/canvas/note.js.map +1 -0
  696. package/dist/src/interface/external/ehr/eclinicalworks/cx-mapping.d.ts +465 -0
  697. package/dist/src/interface/external/ehr/eclinicalworks/cx-mapping.d.ts.map +1 -0
  698. package/dist/src/interface/external/ehr/eclinicalworks/cx-mapping.js +10 -0
  699. package/dist/src/interface/external/ehr/eclinicalworks/cx-mapping.js.map +1 -0
  700. package/dist/src/interface/external/ehr/eclinicalworks/index.d.ts +2 -0
  701. package/dist/src/interface/external/ehr/eclinicalworks/index.d.ts.map +1 -0
  702. package/dist/src/interface/external/ehr/eclinicalworks/index.js +18 -0
  703. package/dist/src/interface/external/ehr/eclinicalworks/index.js.map +1 -0
  704. package/dist/src/interface/external/ehr/eclinicalworks/jwt-token.d.ts +18 -0
  705. package/dist/src/interface/external/ehr/eclinicalworks/jwt-token.d.ts.map +1 -0
  706. package/dist/src/interface/external/ehr/eclinicalworks/jwt-token.js +15 -0
  707. package/dist/src/interface/external/ehr/eclinicalworks/jwt-token.js.map +1 -0
  708. package/dist/src/interface/external/ehr/elation/appointment.d.ts +71 -0
  709. package/dist/src/interface/external/ehr/elation/appointment.d.ts.map +1 -0
  710. package/dist/src/interface/external/ehr/elation/appointment.js +16 -0
  711. package/dist/src/interface/external/ehr/elation/appointment.js.map +1 -0
  712. package/dist/src/interface/external/ehr/elation/ccda.d.ts +13 -0
  713. package/dist/src/interface/external/ehr/elation/ccda.d.ts.map +1 -0
  714. package/dist/src/interface/external/ehr/elation/ccda.js +9 -0
  715. package/dist/src/interface/external/ehr/elation/ccda.js.map +1 -0
  716. package/dist/src/interface/external/ehr/elation/cx-mapping.d.ts +508 -0
  717. package/dist/src/interface/external/ehr/elation/cx-mapping.d.ts.map +1 -0
  718. package/dist/src/interface/external/ehr/elation/cx-mapping.js +25 -0
  719. package/dist/src/interface/external/ehr/elation/cx-mapping.js.map +1 -0
  720. package/dist/src/interface/external/ehr/elation/event.d.ts +106 -0
  721. package/dist/src/interface/external/ehr/elation/event.d.ts.map +1 -0
  722. package/dist/src/interface/external/ehr/elation/event.js +31 -0
  723. package/dist/src/interface/external/ehr/elation/event.js.map +1 -0
  724. package/dist/src/interface/external/ehr/elation/index.d.ts +13 -0
  725. package/dist/src/interface/external/ehr/elation/index.d.ts.map +1 -0
  726. package/dist/src/interface/external/ehr/elation/index.js +29 -0
  727. package/dist/src/interface/external/ehr/elation/index.js.map +1 -0
  728. package/dist/src/interface/external/ehr/elation/jwt-token.d.ts +46 -0
  729. package/dist/src/interface/external/ehr/elation/jwt-token.d.ts.map +1 -0
  730. package/dist/src/interface/external/ehr/elation/jwt-token.js +26 -0
  731. package/dist/src/interface/external/ehr/elation/jwt-token.js.map +1 -0
  732. package/dist/src/interface/external/ehr/elation/lab.d.ts +10 -0
  733. package/dist/src/interface/external/ehr/elation/lab.d.ts.map +1 -0
  734. package/dist/src/interface/external/ehr/elation/lab.js +8 -0
  735. package/dist/src/interface/external/ehr/elation/lab.js.map +1 -0
  736. package/dist/src/interface/external/ehr/elation/note.d.ts +10 -0
  737. package/dist/src/interface/external/ehr/elation/note.d.ts.map +1 -0
  738. package/dist/src/interface/external/ehr/elation/note.js +8 -0
  739. package/dist/src/interface/external/ehr/elation/note.js.map +1 -0
  740. package/dist/src/interface/external/ehr/elation/patient.d.ts +96 -0
  741. package/dist/src/interface/external/ehr/elation/patient.d.ts.map +1 -0
  742. package/dist/src/interface/external/ehr/elation/patient.js +33 -0
  743. package/dist/src/interface/external/ehr/elation/patient.js.map +1 -0
  744. package/dist/src/interface/external/ehr/elation/practice.d.ts +44 -0
  745. package/dist/src/interface/external/ehr/elation/practice.d.ts.map +1 -0
  746. package/dist/src/interface/external/ehr/elation/practice.js +13 -0
  747. package/dist/src/interface/external/ehr/elation/practice.js.map +1 -0
  748. package/dist/src/interface/external/ehr/elation/problem.d.ts +10 -0
  749. package/dist/src/interface/external/ehr/elation/problem.d.ts.map +1 -0
  750. package/dist/src/interface/external/ehr/elation/problem.js +8 -0
  751. package/dist/src/interface/external/ehr/elation/problem.js.map +1 -0
  752. package/dist/src/interface/external/ehr/elation/subscription.d.ts +53 -0
  753. package/dist/src/interface/external/ehr/elation/subscription.d.ts.map +1 -0
  754. package/dist/src/interface/external/ehr/elation/subscription.js +22 -0
  755. package/dist/src/interface/external/ehr/elation/subscription.js.map +1 -0
  756. package/dist/src/interface/external/ehr/elation/vtial.d.ts +10 -0
  757. package/dist/src/interface/external/ehr/elation/vtial.d.ts.map +1 -0
  758. package/dist/src/interface/external/ehr/elation/vtial.js +8 -0
  759. package/dist/src/interface/external/ehr/elation/vtial.js.map +1 -0
  760. package/dist/src/interface/external/ehr/embed/cx-mapping.d.ts +4 -0
  761. package/dist/src/interface/external/ehr/embed/cx-mapping.d.ts.map +1 -0
  762. package/dist/src/interface/external/ehr/embed/cx-mapping.js +6 -0
  763. package/dist/src/interface/external/ehr/embed/cx-mapping.js.map +1 -0
  764. package/dist/src/interface/external/ehr/embed/index.d.ts +3 -0
  765. package/dist/src/interface/external/ehr/embed/index.d.ts.map +1 -0
  766. package/dist/src/interface/external/ehr/embed/index.js +19 -0
  767. package/dist/src/interface/external/ehr/embed/index.js.map +1 -0
  768. package/dist/src/interface/external/ehr/embed/jwt-token.d.ts +28 -0
  769. package/dist/src/interface/external/ehr/embed/jwt-token.d.ts.map +1 -0
  770. package/dist/src/interface/external/ehr/embed/jwt-token.js +23 -0
  771. package/dist/src/interface/external/ehr/embed/jwt-token.js.map +1 -0
  772. package/dist/src/interface/external/ehr/fhir-resource.d.ts +269 -0
  773. package/dist/src/interface/external/ehr/fhir-resource.d.ts.map +1 -0
  774. package/dist/src/interface/external/ehr/fhir-resource.js +62 -0
  775. package/dist/src/interface/external/ehr/fhir-resource.js.map +1 -0
  776. package/dist/src/interface/external/ehr/healthie/allergy.d.ts +249 -0
  777. package/dist/src/interface/external/ehr/healthie/allergy.d.ts.map +1 -0
  778. package/dist/src/interface/external/ehr/healthie/allergy.js +31 -0
  779. package/dist/src/interface/external/ehr/healthie/allergy.js.map +1 -0
  780. package/dist/src/interface/external/ehr/healthie/appointment.d.ts +221 -0
  781. package/dist/src/interface/external/ehr/healthie/appointment.d.ts.map +1 -0
  782. package/dist/src/interface/external/ehr/healthie/appointment.js +21 -0
  783. package/dist/src/interface/external/ehr/healthie/appointment.js.map +1 -0
  784. package/dist/src/interface/external/ehr/healthie/condition.d.ts +287 -0
  785. package/dist/src/interface/external/ehr/healthie/condition.d.ts.map +1 -0
  786. package/dist/src/interface/external/ehr/healthie/condition.js +40 -0
  787. package/dist/src/interface/external/ehr/healthie/condition.js.map +1 -0
  788. package/dist/src/interface/external/ehr/healthie/cx-mapping.d.ts +931 -0
  789. package/dist/src/interface/external/ehr/healthie/cx-mapping.d.ts.map +1 -0
  790. package/dist/src/interface/external/ehr/healthie/cx-mapping.js +42 -0
  791. package/dist/src/interface/external/ehr/healthie/cx-mapping.js.map +1 -0
  792. package/dist/src/interface/external/ehr/healthie/event.d.ts +44 -0
  793. package/dist/src/interface/external/ehr/healthie/event.d.ts.map +1 -0
  794. package/dist/src/interface/external/ehr/healthie/event.js +20 -0
  795. package/dist/src/interface/external/ehr/healthie/event.js.map +1 -0
  796. package/dist/src/interface/external/ehr/healthie/form-answer-group.d.ts +605 -0
  797. package/dist/src/interface/external/ehr/healthie/form-answer-group.d.ts.map +1 -0
  798. package/dist/src/interface/external/ehr/healthie/form-answer-group.js +49 -0
  799. package/dist/src/interface/external/ehr/healthie/form-answer-group.js.map +1 -0
  800. package/dist/src/interface/external/ehr/healthie/immunization.d.ts +108 -0
  801. package/dist/src/interface/external/ehr/healthie/immunization.d.ts.map +1 -0
  802. package/dist/src/interface/external/ehr/healthie/immunization.js +19 -0
  803. package/dist/src/interface/external/ehr/healthie/immunization.js.map +1 -0
  804. package/dist/src/interface/external/ehr/healthie/index.d.ts +13 -0
  805. package/dist/src/interface/external/ehr/healthie/index.d.ts.map +1 -0
  806. package/dist/src/interface/external/ehr/healthie/index.js +29 -0
  807. package/dist/src/interface/external/ehr/healthie/index.js.map +1 -0
  808. package/dist/src/interface/external/ehr/healthie/jwt-token.d.ts +18 -0
  809. package/dist/src/interface/external/ehr/healthie/jwt-token.d.ts.map +1 -0
  810. package/dist/src/interface/external/ehr/healthie/jwt-token.js +15 -0
  811. package/dist/src/interface/external/ehr/healthie/jwt-token.js.map +1 -0
  812. package/dist/src/interface/external/ehr/healthie/lab.d.ts +492 -0
  813. package/dist/src/interface/external/ehr/healthie/lab.d.ts.map +1 -0
  814. package/dist/src/interface/external/ehr/healthie/lab.js +33 -0
  815. package/dist/src/interface/external/ehr/healthie/lab.js.map +1 -0
  816. package/dist/src/interface/external/ehr/healthie/medication.d.ts +212 -0
  817. package/dist/src/interface/external/ehr/healthie/medication.d.ts.map +1 -0
  818. package/dist/src/interface/external/ehr/healthie/medication.js +36 -0
  819. package/dist/src/interface/external/ehr/healthie/medication.js.map +1 -0
  820. package/dist/src/interface/external/ehr/healthie/patient.d.ts +319 -0
  821. package/dist/src/interface/external/ehr/healthie/patient.d.ts.map +1 -0
  822. package/dist/src/interface/external/ehr/healthie/patient.js +44 -0
  823. package/dist/src/interface/external/ehr/healthie/patient.js.map +1 -0
  824. package/dist/src/interface/external/ehr/healthie/subscription.d.ts +326 -0
  825. package/dist/src/interface/external/ehr/healthie/subscription.d.ts.map +1 -0
  826. package/dist/src/interface/external/ehr/healthie/subscription.js +54 -0
  827. package/dist/src/interface/external/ehr/healthie/subscription.js.map +1 -0
  828. package/dist/src/interface/external/ehr/index.d.ts +5 -0
  829. package/dist/src/interface/external/ehr/index.d.ts.map +1 -0
  830. package/dist/src/interface/external/ehr/index.js +21 -0
  831. package/dist/src/interface/external/ehr/index.js.map +1 -0
  832. package/dist/src/interface/external/ehr/patient.d.ts +250 -0
  833. package/dist/src/interface/external/ehr/patient.d.ts.map +1 -0
  834. package/dist/src/interface/external/ehr/patient.js +35 -0
  835. package/dist/src/interface/external/ehr/patient.js.map +1 -0
  836. package/dist/src/interface/external/ehr/practicefusion/appointment.d.ts +137 -0
  837. package/dist/src/interface/external/ehr/practicefusion/appointment.d.ts.map +1 -0
  838. package/dist/src/interface/external/ehr/practicefusion/appointment.js +29 -0
  839. package/dist/src/interface/external/ehr/practicefusion/appointment.js.map +1 -0
  840. package/dist/src/interface/external/ehr/practicefusion/cx-mapping.d.ts +472 -0
  841. package/dist/src/interface/external/ehr/practicefusion/cx-mapping.d.ts.map +1 -0
  842. package/dist/src/interface/external/ehr/practicefusion/cx-mapping.js +13 -0
  843. package/dist/src/interface/external/ehr/practicefusion/cx-mapping.js.map +1 -0
  844. package/dist/src/interface/external/ehr/practicefusion/index.d.ts +4 -0
  845. package/dist/src/interface/external/ehr/practicefusion/index.d.ts.map +1 -0
  846. package/dist/src/interface/external/ehr/practicefusion/index.js +20 -0
  847. package/dist/src/interface/external/ehr/practicefusion/index.js.map +1 -0
  848. package/dist/src/interface/external/ehr/practicefusion/jwt-token.d.ts +33 -0
  849. package/dist/src/interface/external/ehr/practicefusion/jwt-token.d.ts.map +1 -0
  850. package/dist/src/interface/external/ehr/practicefusion/jwt-token.js +22 -0
  851. package/dist/src/interface/external/ehr/practicefusion/jwt-token.js.map +1 -0
  852. package/dist/src/interface/external/ehr/practicefusion/patient.d.ts +2 -0
  853. package/dist/src/interface/external/ehr/practicefusion/patient.d.ts.map +1 -0
  854. package/dist/src/interface/external/ehr/practicefusion/patient.js +6 -0
  855. package/dist/src/interface/external/ehr/practicefusion/patient.js.map +1 -0
  856. package/dist/src/interface/external/ehr/practicefusion/refresh-token.d.ts +19 -0
  857. package/dist/src/interface/external/ehr/practicefusion/refresh-token.d.ts.map +1 -0
  858. package/dist/src/interface/external/ehr/practicefusion/refresh-token.js +11 -0
  859. package/dist/src/interface/external/ehr/practicefusion/refresh-token.js.map +1 -0
  860. package/dist/src/interface/external/ehr/practitioner.d.ts +49 -0
  861. package/dist/src/interface/external/ehr/practitioner.d.ts.map +1 -0
  862. package/dist/src/interface/external/ehr/practitioner.js +20 -0
  863. package/dist/src/interface/external/ehr/practitioner.js.map +1 -0
  864. package/dist/src/interface/external/ehr/salesforce/cx-mapping.d.ts +465 -0
  865. package/dist/src/interface/external/ehr/salesforce/cx-mapping.d.ts.map +1 -0
  866. package/dist/src/interface/external/ehr/salesforce/cx-mapping.js +10 -0
  867. package/dist/src/interface/external/ehr/salesforce/cx-mapping.js.map +1 -0
  868. package/dist/src/interface/external/ehr/salesforce/index.d.ts +2 -0
  869. package/dist/src/interface/external/ehr/salesforce/index.d.ts.map +1 -0
  870. package/dist/src/interface/external/ehr/salesforce/index.js +18 -0
  871. package/dist/src/interface/external/ehr/salesforce/index.js.map +1 -0
  872. package/dist/src/interface/external/ehr/salesforce/jwt-token.d.ts +21 -0
  873. package/dist/src/interface/external/ehr/salesforce/jwt-token.d.ts.map +1 -0
  874. package/dist/src/interface/external/ehr/salesforce/jwt-token.js +16 -0
  875. package/dist/src/interface/external/ehr/salesforce/jwt-token.js.map +1 -0
  876. package/dist/src/interface/external/ehr/salesforce/patient.d.ts +326 -0
  877. package/dist/src/interface/external/ehr/salesforce/patient.d.ts.map +1 -0
  878. package/dist/src/interface/external/ehr/salesforce/patient.js +69 -0
  879. package/dist/src/interface/external/ehr/salesforce/patient.js.map +1 -0
  880. package/dist/src/interface/external/ehr/shared.d.ts +1845 -0
  881. package/dist/src/interface/external/ehr/shared.d.ts.map +1 -0
  882. package/dist/src/interface/external/ehr/shared.js +133 -0
  883. package/dist/src/interface/external/ehr/shared.js.map +1 -0
  884. package/dist/src/interface/external/ehr/source.d.ts +27 -0
  885. package/dist/src/interface/external/ehr/source.d.ts.map +1 -0
  886. package/dist/src/interface/external/ehr/source.js +55 -0
  887. package/dist/src/interface/external/ehr/source.js.map +1 -0
  888. package/dist/src/interface/external/index.d.ts +3 -0
  889. package/dist/src/interface/external/index.d.ts.map +1 -0
  890. package/dist/src/interface/external/index.js +19 -0
  891. package/dist/src/interface/external/index.js.map +1 -0
  892. package/dist/src/interface/external/quest/roster.d.ts +21 -0
  893. package/dist/src/interface/external/quest/roster.d.ts.map +1 -0
  894. package/dist/src/interface/external/quest/roster.js +39 -0
  895. package/dist/src/interface/external/quest/roster.js.map +1 -0
  896. package/dist/src/interface/external/quest/source.d.ts +11 -0
  897. package/dist/src/interface/external/quest/source.d.ts.map +1 -0
  898. package/dist/src/interface/external/quest/source.js +10 -0
  899. package/dist/src/interface/external/quest/source.js.map +1 -0
  900. package/dist/src/interface/external/surescripts/added-by.d.ts +8 -0
  901. package/dist/src/interface/external/surescripts/added-by.d.ts.map +1 -0
  902. package/dist/src/interface/external/surescripts/added-by.js +23 -0
  903. package/dist/src/interface/external/surescripts/added-by.js.map +1 -0
  904. package/dist/src/interface/external/surescripts/code-list-qualifier.d.ts +6 -0
  905. package/dist/src/interface/external/surescripts/code-list-qualifier.d.ts.map +1 -0
  906. package/dist/src/interface/external/surescripts/code-list-qualifier.js +17 -0
  907. package/dist/src/interface/external/surescripts/code-list-qualifier.js.map +1 -0
  908. package/dist/src/interface/external/surescripts/dea-schedule.d.ts +7 -0
  909. package/dist/src/interface/external/surescripts/dea-schedule.d.ts.map +1 -0
  910. package/dist/src/interface/external/surescripts/dea-schedule.js +32 -0
  911. package/dist/src/interface/external/surescripts/dea-schedule.js.map +1 -0
  912. package/dist/src/interface/external/surescripts/index.d.ts +7 -0
  913. package/dist/src/interface/external/surescripts/index.d.ts.map +1 -0
  914. package/dist/src/interface/external/surescripts/index.js +23 -0
  915. package/dist/src/interface/external/surescripts/index.js.map +1 -0
  916. package/dist/src/interface/external/surescripts/ncpdp.d.ts +12 -0
  917. package/dist/src/interface/external/surescripts/ncpdp.d.ts.map +1 -0
  918. package/dist/src/interface/external/surescripts/ncpdp.js +1472 -0
  919. package/dist/src/interface/external/surescripts/ncpdp.js.map +1 -0
  920. package/dist/src/interface/external/surescripts/notifications/file-name.d.ts +14 -0
  921. package/dist/src/interface/external/surescripts/notifications/file-name.d.ts.map +1 -0
  922. package/dist/src/interface/external/surescripts/notifications/file-name.js +18 -0
  923. package/dist/src/interface/external/surescripts/notifications/file-name.js.map +1 -0
  924. package/dist/src/interface/external/surescripts/notifications/index.d.ts +3 -0
  925. package/dist/src/interface/external/surescripts/notifications/index.d.ts.map +1 -0
  926. package/dist/src/interface/external/surescripts/notifications/index.js +19 -0
  927. package/dist/src/interface/external/surescripts/notifications/index.js.map +1 -0
  928. package/dist/src/interface/external/surescripts/notifications/types.d.ts +36 -0
  929. package/dist/src/interface/external/surescripts/notifications/types.d.ts.map +1 -0
  930. package/dist/src/interface/external/surescripts/notifications/types.js +20 -0
  931. package/dist/src/interface/external/surescripts/notifications/types.js.map +1 -0
  932. package/dist/src/interface/external/surescripts/payment-code.d.ts +14 -0
  933. package/dist/src/interface/external/surescripts/payment-code.d.ts.map +1 -0
  934. package/dist/src/interface/external/surescripts/payment-code.js +78 -0
  935. package/dist/src/interface/external/surescripts/payment-code.js.map +1 -0
  936. package/dist/src/interface/external/surescripts/plan-code.d.ts +7 -0
  937. package/dist/src/interface/external/surescripts/plan-code.d.ts.map +1 -0
  938. package/dist/src/interface/external/surescripts/plan-code.js +25 -0
  939. package/dist/src/interface/external/surescripts/plan-code.js.map +1 -0
  940. package/dist/src/interface/external/surescripts/realtime-pulls/file-name.d.ts +15 -0
  941. package/dist/src/interface/external/surescripts/realtime-pulls/file-name.d.ts.map +1 -0
  942. package/dist/src/interface/external/surescripts/realtime-pulls/file-name.js +19 -0
  943. package/dist/src/interface/external/surescripts/realtime-pulls/file-name.js.map +1 -0
  944. package/dist/src/interface/external/surescripts/realtime-pulls/index.d.ts +3 -0
  945. package/dist/src/interface/external/surescripts/realtime-pulls/index.d.ts.map +1 -0
  946. package/dist/src/interface/external/surescripts/realtime-pulls/index.js +19 -0
  947. package/dist/src/interface/external/surescripts/realtime-pulls/index.js.map +1 -0
  948. package/dist/src/interface/external/surescripts/realtime-pulls/status-codes.d.ts +91 -0
  949. package/dist/src/interface/external/surescripts/realtime-pulls/status-codes.d.ts.map +1 -0
  950. package/dist/src/interface/external/surescripts/realtime-pulls/status-codes.js +64 -0
  951. package/dist/src/interface/external/surescripts/realtime-pulls/status-codes.js.map +1 -0
  952. package/dist/src/interface/external/surescripts/roster.d.ts +14 -0
  953. package/dist/src/interface/external/surescripts/roster.d.ts.map +1 -0
  954. package/dist/src/interface/external/surescripts/roster.js +40 -0
  955. package/dist/src/interface/external/surescripts/roster.js.map +1 -0
  956. package/dist/src/interface/external/surescripts/source.d.ts +2 -0
  957. package/dist/src/interface/external/surescripts/source.d.ts.map +1 -0
  958. package/dist/src/interface/external/surescripts/source.js +5 -0
  959. package/dist/src/interface/external/surescripts/source.js.map +1 -0
  960. package/dist/src/interface/index.d.ts +4 -0
  961. package/dist/src/interface/index.d.ts.map +1 -0
  962. package/dist/src/interface/index.js +20 -0
  963. package/dist/src/interface/index.js.map +1 -0
  964. package/dist/src/interface/internal/cohort.d.ts +1000 -0
  965. package/dist/src/interface/internal/cohort.d.ts.map +1 -0
  966. package/dist/src/interface/internal/cohort.js +66 -0
  967. package/dist/src/interface/internal/cohort.js.map +1 -0
  968. package/dist/src/interface/internal/consolidated.d.ts +374 -0
  969. package/dist/src/interface/internal/consolidated.d.ts.map +1 -0
  970. package/dist/src/interface/internal/consolidated.js +35 -0
  971. package/dist/src/interface/internal/consolidated.js.map +1 -0
  972. package/dist/src/interface/internal/customer.d.ts +14 -0
  973. package/dist/src/interface/internal/customer.d.ts.map +1 -0
  974. package/dist/src/interface/internal/customer.js +28 -0
  975. package/dist/src/interface/internal/customer.js.map +1 -0
  976. package/dist/src/interface/internal/document-query.d.ts +31 -0
  977. package/dist/src/interface/internal/document-query.d.ts.map +1 -0
  978. package/dist/src/interface/internal/document-query.js +21 -0
  979. package/dist/src/interface/internal/document-query.js.map +1 -0
  980. package/dist/src/interface/internal/index.d.ts +5 -0
  981. package/dist/src/interface/internal/index.d.ts.map +1 -0
  982. package/dist/src/interface/internal/index.js +21 -0
  983. package/dist/src/interface/internal/index.js.map +1 -0
  984. package/dist/src/interface/schema/feedback.d.ts +36 -0
  985. package/dist/src/interface/schema/feedback.d.ts.map +1 -0
  986. package/dist/src/interface/schema/feedback.js +17 -0
  987. package/dist/src/interface/schema/feedback.js.map +1 -0
  988. package/dist/src/interface/schema/index.d.ts +2 -0
  989. package/dist/src/interface/schema/index.d.ts.map +1 -0
  990. package/dist/src/interface/schema/index.js +18 -0
  991. package/dist/src/interface/schema/index.js.map +1 -0
  992. package/dist/src/medical/fhir/bundle.d.ts +11 -0
  993. package/dist/src/medical/fhir/bundle.d.ts.map +1 -0
  994. package/dist/src/medical/fhir/bundle.js +23 -0
  995. package/dist/src/medical/fhir/bundle.js.map +1 -0
  996. package/dist/src/medical/fhir/coding.d.ts +16 -0
  997. package/dist/src/medical/fhir/coding.d.ts.map +1 -0
  998. package/dist/src/medical/fhir/coding.js +49 -0
  999. package/dist/src/medical/fhir/coding.js.map +1 -0
  1000. package/dist/src/medical/fhir/constants.d.ts +42 -0
  1001. package/dist/src/medical/fhir/constants.d.ts.map +1 -0
  1002. package/dist/src/medical/fhir/constants.js +68 -0
  1003. package/dist/src/medical/fhir/constants.js.map +1 -0
  1004. package/dist/src/medical/fhir/conversion.d.ts +3 -0
  1005. package/dist/src/medical/fhir/conversion.d.ts.map +1 -0
  1006. package/dist/src/medical/fhir/conversion.js +5 -0
  1007. package/dist/src/medical/fhir/conversion.js.map +1 -0
  1008. package/dist/src/medical/fhir/imaging-detection.d.ts +693 -0
  1009. package/dist/src/medical/fhir/imaging-detection.d.ts.map +1 -0
  1010. package/dist/src/medical/fhir/imaging-detection.js +361 -0
  1011. package/dist/src/medical/fhir/imaging-detection.js.map +1 -0
  1012. package/dist/src/medical/fhir/loinc/loinc-class-display-lookup.json +1730 -0
  1013. package/dist/src/medical/fhir/loinc/loinc-code-class-lookup.json +432994 -0
  1014. package/dist/src/medical/fhir/observations.d.ts +9 -0
  1015. package/dist/src/medical/fhir/observations.d.ts.map +1 -0
  1016. package/dist/src/medical/fhir/observations.js +55 -0
  1017. package/dist/src/medical/fhir/observations.js.map +1 -0
  1018. package/dist/src/medical/fhir/procedure-type.d.ts +1316 -0
  1019. package/dist/src/medical/fhir/procedure-type.d.ts.map +1 -0
  1020. package/dist/src/medical/fhir/procedure-type.js +263 -0
  1021. package/dist/src/medical/fhir/procedure-type.js.map +1 -0
  1022. package/dist/src/medical/fhir/resources.d.ts +6 -0
  1023. package/dist/src/medical/fhir/resources.d.ts.map +1 -0
  1024. package/dist/src/medical/fhir/resources.js +81 -0
  1025. package/dist/src/medical/fhir/resources.js.map +1 -0
  1026. package/dist/src/medical/fhir/specialty-codes.d.ts +79 -0
  1027. package/dist/src/medical/fhir/specialty-codes.d.ts.map +1 -0
  1028. package/dist/src/medical/fhir/specialty-codes.js +1722 -0
  1029. package/dist/src/medical/fhir/specialty-codes.js.map +1 -0
  1030. package/dist/src/medical/index.d.ts +10 -0
  1031. package/dist/src/medical/index.d.ts.map +1 -0
  1032. package/dist/src/medical/index.js +26 -0
  1033. package/dist/src/medical/index.js.map +1 -0
  1034. package/dist/src/medical/webhook/webhook-request.d.ts +4264 -0
  1035. package/dist/src/medical/webhook/webhook-request.d.ts.map +1 -0
  1036. package/dist/src/medical/webhook/webhook-request.js +348 -0
  1037. package/dist/src/medical/webhook/webhook-request.js.map +1 -0
  1038. package/dist/src/medical/webhook/webhook-status-response.d.ts +7 -0
  1039. package/dist/src/medical/webhook/webhook-status-response.d.ts.map +1 -0
  1040. package/dist/src/medical/webhook/webhook-status-response.js +3 -0
  1041. package/dist/src/medical/webhook/webhook-status-response.js.map +1 -0
  1042. package/dist/src/net/__tests__/axios.d.ts +42 -0
  1043. package/dist/src/net/__tests__/axios.d.ts.map +1 -0
  1044. package/dist/src/net/__tests__/axios.js +113 -0
  1045. package/dist/src/net/__tests__/axios.js.map +1 -0
  1046. package/dist/src/net/__tests__/retry.test.d.ts +2 -0
  1047. package/dist/src/net/__tests__/retry.test.d.ts.map +1 -0
  1048. package/dist/src/net/__tests__/retry.test.js +267 -0
  1049. package/dist/src/net/__tests__/retry.test.js.map +1 -0
  1050. package/dist/src/net/error.d.ts +24 -0
  1051. package/dist/src/net/error.d.ts.map +1 -0
  1052. package/dist/src/net/error.js +81 -0
  1053. package/dist/src/net/error.js.map +1 -0
  1054. package/dist/src/net/http.d.ts +25 -0
  1055. package/dist/src/net/http.d.ts.map +1 -0
  1056. package/dist/src/net/http.js +75 -0
  1057. package/dist/src/net/http.js.map +1 -0
  1058. package/dist/src/net/index.d.ts +5 -0
  1059. package/dist/src/net/index.d.ts.map +1 -0
  1060. package/dist/src/net/index.js +21 -0
  1061. package/dist/src/net/index.js.map +1 -0
  1062. package/dist/src/net/retry.d.ts +38 -0
  1063. package/dist/src/net/retry.d.ts.map +1 -0
  1064. package/dist/src/net/retry.js +134 -0
  1065. package/dist/src/net/retry.js.map +1 -0
  1066. package/dist/src/net/url.d.ts +2 -0
  1067. package/dist/src/net/url.d.ts.map +1 -0
  1068. package/dist/src/net/url.js +15 -0
  1069. package/dist/src/net/url.js.map +1 -0
  1070. package/dist/src/util/__tests__/base64.test.d.ts +2 -0
  1071. package/dist/src/util/__tests__/base64.test.d.ts.map +1 -0
  1072. package/dist/src/util/__tests__/base64.test.js +66 -0
  1073. package/dist/src/util/__tests__/base64.test.js.map +1 -0
  1074. package/dist/src/util/base64.d.ts +25 -0
  1075. package/dist/src/util/base64.d.ts.map +1 -0
  1076. package/dist/src/util/base64.js +52 -0
  1077. package/dist/src/util/base64.js.map +1 -0
  1078. package/dist/src/util/duration.d.ts +13 -0
  1079. package/dist/src/util/duration.d.ts.map +1 -0
  1080. package/dist/src/util/duration.js +35 -0
  1081. package/dist/src/util/duration.js.map +1 -0
  1082. package/dist/src/util/index.d.ts +5 -0
  1083. package/dist/src/util/index.d.ts.map +1 -0
  1084. package/dist/src/util/index.js +21 -0
  1085. package/dist/src/util/index.js.map +1 -0
  1086. package/dist/src/util/sqs-delay-from-uuid.d.ts +11 -0
  1087. package/dist/src/util/sqs-delay-from-uuid.d.ts.map +1 -0
  1088. package/dist/src/util/sqs-delay-from-uuid.js +21 -0
  1089. package/dist/src/util/sqs-delay-from-uuid.js.map +1 -0
  1090. package/dist/src/util/stack-trace.d.ts +17 -0
  1091. package/dist/src/util/stack-trace.d.ts.map +1 -0
  1092. package/dist/src/util/stack-trace.js +32 -0
  1093. package/dist/src/util/stack-trace.js.map +1 -0
  1094. package/dist/src/util/uuid-v7.d.ts +162 -0
  1095. package/dist/src/util/uuid-v7.d.ts.map +1 -0
  1096. package/dist/src/util/uuid-v7.js +418 -0
  1097. package/dist/src/util/uuid-v7.js.map +1 -0
  1098. package/dist/src/util/zod.d.ts +13 -0
  1099. package/dist/src/util/zod.d.ts.map +1 -0
  1100. package/dist/src/util/zod.js +26 -0
  1101. package/dist/src/util/zod.js.map +1 -0
  1102. package/package.json +2 -2
@@ -0,0 +1,484 @@
1
+ import { z } from "zod";
2
+ export declare const athenaSecondaryMappingsSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
3
+ departmentIds: z.ZodArray<z.ZodString, "many">;
4
+ webhookAppointmentDisabled: z.ZodOptional<z.ZodBoolean>;
5
+ backgroundAppointmentsDisabled: z.ZodOptional<z.ZodBoolean>;
6
+ appointmentTypesFilter: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7
+ contributionEncounterAppointmentTypesBlacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8
+ contributionEncounterSummariesEnabled: z.ZodOptional<z.ZodBoolean>;
9
+ }, {
10
+ writeBackEnabled: z.ZodOptional<z.ZodBoolean>;
11
+ writeBackFilters: z.ZodOptional<z.ZodObject<{
12
+ lab: z.ZodOptional<z.ZodObject<{
13
+ loincCodes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
14
+ minCountPerCode: z.ZodOptional<z.ZodNumber>;
15
+ relativeDateRange: z.ZodOptional<z.ZodObject<{
16
+ days: z.ZodOptional<z.ZodNumber>;
17
+ months: z.ZodOptional<z.ZodNumber>;
18
+ years: z.ZodOptional<z.ZodNumber>;
19
+ }, "strip", z.ZodTypeAny, {
20
+ days?: number | undefined;
21
+ months?: number | undefined;
22
+ years?: number | undefined;
23
+ }, {
24
+ days?: number | undefined;
25
+ months?: number | undefined;
26
+ years?: number | undefined;
27
+ }>>;
28
+ absoluteDate: z.ZodOptional<z.ZodString>;
29
+ disabled: z.ZodOptional<z.ZodBoolean>;
30
+ }, "strip", z.ZodTypeAny, {
31
+ loincCodes?: string[] | undefined;
32
+ minCountPerCode?: number | undefined;
33
+ relativeDateRange?: {
34
+ days?: number | undefined;
35
+ months?: number | undefined;
36
+ years?: number | undefined;
37
+ } | undefined;
38
+ absoluteDate?: string | undefined;
39
+ disabled?: boolean | undefined;
40
+ }, {
41
+ loincCodes?: string[] | undefined;
42
+ minCountPerCode?: number | undefined;
43
+ relativeDateRange?: {
44
+ days?: number | undefined;
45
+ months?: number | undefined;
46
+ years?: number | undefined;
47
+ } | undefined;
48
+ absoluteDate?: string | undefined;
49
+ disabled?: boolean | undefined;
50
+ }>>;
51
+ labPanel: z.ZodOptional<z.ZodObject<{
52
+ loincCodes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
53
+ minCountPerCode: z.ZodOptional<z.ZodNumber>;
54
+ relativeDateRange: z.ZodOptional<z.ZodObject<{
55
+ days: z.ZodOptional<z.ZodNumber>;
56
+ months: z.ZodOptional<z.ZodNumber>;
57
+ years: z.ZodOptional<z.ZodNumber>;
58
+ }, "strip", z.ZodTypeAny, {
59
+ days?: number | undefined;
60
+ months?: number | undefined;
61
+ years?: number | undefined;
62
+ }, {
63
+ days?: number | undefined;
64
+ months?: number | undefined;
65
+ years?: number | undefined;
66
+ }>>;
67
+ absoluteDate: z.ZodOptional<z.ZodString>;
68
+ disabled: z.ZodOptional<z.ZodBoolean>;
69
+ }, "strip", z.ZodTypeAny, {
70
+ loincCodes?: string[] | undefined;
71
+ minCountPerCode?: number | undefined;
72
+ relativeDateRange?: {
73
+ days?: number | undefined;
74
+ months?: number | undefined;
75
+ years?: number | undefined;
76
+ } | undefined;
77
+ absoluteDate?: string | undefined;
78
+ disabled?: boolean | undefined;
79
+ }, {
80
+ loincCodes?: string[] | undefined;
81
+ minCountPerCode?: number | undefined;
82
+ relativeDateRange?: {
83
+ days?: number | undefined;
84
+ months?: number | undefined;
85
+ years?: number | undefined;
86
+ } | undefined;
87
+ absoluteDate?: string | undefined;
88
+ disabled?: boolean | undefined;
89
+ }>>;
90
+ problem: z.ZodOptional<z.ZodObject<{
91
+ stringFilters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
92
+ latestOnly: z.ZodOptional<z.ZodBoolean>;
93
+ earliestOnly: z.ZodOptional<z.ZodBoolean>;
94
+ chronicityFilter: z.ZodOptional<z.ZodEnum<["all", "chronic", "non-chronic"]>>;
95
+ hccFilter: z.ZodOptional<z.ZodEnum<["all", "hcc", "non-hcc"]>>;
96
+ chronicOrHcc: z.ZodOptional<z.ZodBoolean>;
97
+ relativeDateRange: z.ZodOptional<z.ZodObject<{
98
+ days: z.ZodOptional<z.ZodNumber>;
99
+ months: z.ZodOptional<z.ZodNumber>;
100
+ years: z.ZodOptional<z.ZodNumber>;
101
+ }, "strip", z.ZodTypeAny, {
102
+ days?: number | undefined;
103
+ months?: number | undefined;
104
+ years?: number | undefined;
105
+ }, {
106
+ days?: number | undefined;
107
+ months?: number | undefined;
108
+ years?: number | undefined;
109
+ }>>;
110
+ disabled: z.ZodOptional<z.ZodBoolean>;
111
+ }, "strip", z.ZodTypeAny, {
112
+ relativeDateRange?: {
113
+ days?: number | undefined;
114
+ months?: number | undefined;
115
+ years?: number | undefined;
116
+ } | undefined;
117
+ disabled?: boolean | undefined;
118
+ stringFilters?: string[] | undefined;
119
+ latestOnly?: boolean | undefined;
120
+ earliestOnly?: boolean | undefined;
121
+ chronicityFilter?: "all" | "chronic" | "non-chronic" | undefined;
122
+ hccFilter?: "all" | "hcc" | "non-hcc" | undefined;
123
+ chronicOrHcc?: boolean | undefined;
124
+ }, {
125
+ relativeDateRange?: {
126
+ days?: number | undefined;
127
+ months?: number | undefined;
128
+ years?: number | undefined;
129
+ } | undefined;
130
+ disabled?: boolean | undefined;
131
+ stringFilters?: string[] | undefined;
132
+ latestOnly?: boolean | undefined;
133
+ earliestOnly?: boolean | undefined;
134
+ chronicityFilter?: "all" | "chronic" | "non-chronic" | undefined;
135
+ hccFilter?: "all" | "hcc" | "non-hcc" | undefined;
136
+ chronicOrHcc?: boolean | undefined;
137
+ }>>;
138
+ vital: z.ZodOptional<z.ZodObject<{
139
+ loincCodes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
140
+ latestOnly: z.ZodOptional<z.ZodBoolean>;
141
+ relativeDateRange: z.ZodOptional<z.ZodObject<{
142
+ days: z.ZodOptional<z.ZodNumber>;
143
+ months: z.ZodOptional<z.ZodNumber>;
144
+ years: z.ZodOptional<z.ZodNumber>;
145
+ }, "strip", z.ZodTypeAny, {
146
+ days?: number | undefined;
147
+ months?: number | undefined;
148
+ years?: number | undefined;
149
+ }, {
150
+ days?: number | undefined;
151
+ months?: number | undefined;
152
+ years?: number | undefined;
153
+ }>>;
154
+ disabled: z.ZodOptional<z.ZodBoolean>;
155
+ }, "strip", z.ZodTypeAny, {
156
+ loincCodes?: string[] | undefined;
157
+ relativeDateRange?: {
158
+ days?: number | undefined;
159
+ months?: number | undefined;
160
+ years?: number | undefined;
161
+ } | undefined;
162
+ disabled?: boolean | undefined;
163
+ latestOnly?: boolean | undefined;
164
+ }, {
165
+ loincCodes?: string[] | undefined;
166
+ relativeDateRange?: {
167
+ days?: number | undefined;
168
+ months?: number | undefined;
169
+ years?: number | undefined;
170
+ } | undefined;
171
+ disabled?: boolean | undefined;
172
+ latestOnly?: boolean | undefined;
173
+ }>>;
174
+ medicationStatement: z.ZodOptional<z.ZodObject<{
175
+ rxnormCodes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
176
+ absoluteDate: z.ZodOptional<z.ZodString>;
177
+ disabled: z.ZodOptional<z.ZodBoolean>;
178
+ }, "strip", z.ZodTypeAny, {
179
+ absoluteDate?: string | undefined;
180
+ disabled?: boolean | undefined;
181
+ rxnormCodes?: string[] | undefined;
182
+ }, {
183
+ absoluteDate?: string | undefined;
184
+ disabled?: boolean | undefined;
185
+ rxnormCodes?: string[] | undefined;
186
+ }>>;
187
+ procedure: z.ZodOptional<z.ZodObject<{
188
+ cptCodes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
189
+ disabled: z.ZodOptional<z.ZodBoolean>;
190
+ }, "strip", z.ZodTypeAny, {
191
+ disabled?: boolean | undefined;
192
+ cptCodes?: string[] | undefined;
193
+ }, {
194
+ disabled?: boolean | undefined;
195
+ cptCodes?: string[] | undefined;
196
+ }>>;
197
+ allergy: z.ZodOptional<z.ZodObject<{
198
+ disabled: z.ZodOptional<z.ZodBoolean>;
199
+ }, "strip", z.ZodTypeAny, {
200
+ disabled?: boolean | undefined;
201
+ }, {
202
+ disabled?: boolean | undefined;
203
+ }>>;
204
+ familyMemberHistory: z.ZodOptional<z.ZodObject<{
205
+ disabled: z.ZodOptional<z.ZodBoolean>;
206
+ }, "strip", z.ZodTypeAny, {
207
+ disabled?: boolean | undefined;
208
+ }, {
209
+ disabled?: boolean | undefined;
210
+ }>>;
211
+ }, "strip", z.ZodTypeAny, {
212
+ lab?: {
213
+ loincCodes?: string[] | undefined;
214
+ minCountPerCode?: number | undefined;
215
+ relativeDateRange?: {
216
+ days?: number | undefined;
217
+ months?: number | undefined;
218
+ years?: number | undefined;
219
+ } | undefined;
220
+ absoluteDate?: string | undefined;
221
+ disabled?: boolean | undefined;
222
+ } | undefined;
223
+ labPanel?: {
224
+ loincCodes?: string[] | undefined;
225
+ minCountPerCode?: number | undefined;
226
+ relativeDateRange?: {
227
+ days?: number | undefined;
228
+ months?: number | undefined;
229
+ years?: number | undefined;
230
+ } | undefined;
231
+ absoluteDate?: string | undefined;
232
+ disabled?: boolean | undefined;
233
+ } | undefined;
234
+ problem?: {
235
+ relativeDateRange?: {
236
+ days?: number | undefined;
237
+ months?: number | undefined;
238
+ years?: number | undefined;
239
+ } | undefined;
240
+ disabled?: boolean | undefined;
241
+ stringFilters?: string[] | undefined;
242
+ latestOnly?: boolean | undefined;
243
+ earliestOnly?: boolean | undefined;
244
+ chronicityFilter?: "all" | "chronic" | "non-chronic" | undefined;
245
+ hccFilter?: "all" | "hcc" | "non-hcc" | undefined;
246
+ chronicOrHcc?: boolean | undefined;
247
+ } | undefined;
248
+ vital?: {
249
+ loincCodes?: string[] | undefined;
250
+ relativeDateRange?: {
251
+ days?: number | undefined;
252
+ months?: number | undefined;
253
+ years?: number | undefined;
254
+ } | undefined;
255
+ disabled?: boolean | undefined;
256
+ latestOnly?: boolean | undefined;
257
+ } | undefined;
258
+ medicationStatement?: {
259
+ absoluteDate?: string | undefined;
260
+ disabled?: boolean | undefined;
261
+ rxnormCodes?: string[] | undefined;
262
+ } | undefined;
263
+ procedure?: {
264
+ disabled?: boolean | undefined;
265
+ cptCodes?: string[] | undefined;
266
+ } | undefined;
267
+ allergy?: {
268
+ disabled?: boolean | undefined;
269
+ } | undefined;
270
+ familyMemberHistory?: {
271
+ disabled?: boolean | undefined;
272
+ } | undefined;
273
+ }, {
274
+ lab?: {
275
+ loincCodes?: string[] | undefined;
276
+ minCountPerCode?: number | undefined;
277
+ relativeDateRange?: {
278
+ days?: number | undefined;
279
+ months?: number | undefined;
280
+ years?: number | undefined;
281
+ } | undefined;
282
+ absoluteDate?: string | undefined;
283
+ disabled?: boolean | undefined;
284
+ } | undefined;
285
+ labPanel?: {
286
+ loincCodes?: string[] | undefined;
287
+ minCountPerCode?: number | undefined;
288
+ relativeDateRange?: {
289
+ days?: number | undefined;
290
+ months?: number | undefined;
291
+ years?: number | undefined;
292
+ } | undefined;
293
+ absoluteDate?: string | undefined;
294
+ disabled?: boolean | undefined;
295
+ } | undefined;
296
+ problem?: {
297
+ relativeDateRange?: {
298
+ days?: number | undefined;
299
+ months?: number | undefined;
300
+ years?: number | undefined;
301
+ } | undefined;
302
+ disabled?: boolean | undefined;
303
+ stringFilters?: string[] | undefined;
304
+ latestOnly?: boolean | undefined;
305
+ earliestOnly?: boolean | undefined;
306
+ chronicityFilter?: "all" | "chronic" | "non-chronic" | undefined;
307
+ hccFilter?: "all" | "hcc" | "non-hcc" | undefined;
308
+ chronicOrHcc?: boolean | undefined;
309
+ } | undefined;
310
+ vital?: {
311
+ loincCodes?: string[] | undefined;
312
+ relativeDateRange?: {
313
+ days?: number | undefined;
314
+ months?: number | undefined;
315
+ years?: number | undefined;
316
+ } | undefined;
317
+ disabled?: boolean | undefined;
318
+ latestOnly?: boolean | undefined;
319
+ } | undefined;
320
+ medicationStatement?: {
321
+ absoluteDate?: string | undefined;
322
+ disabled?: boolean | undefined;
323
+ rxnormCodes?: string[] | undefined;
324
+ } | undefined;
325
+ procedure?: {
326
+ disabled?: boolean | undefined;
327
+ cptCodes?: string[] | undefined;
328
+ } | undefined;
329
+ allergy?: {
330
+ disabled?: boolean | undefined;
331
+ } | undefined;
332
+ familyMemberHistory?: {
333
+ disabled?: boolean | undefined;
334
+ } | undefined;
335
+ }>>;
336
+ }>, {
337
+ sendDocumentQueryWebhookEnabled: z.ZodOptional<z.ZodBoolean>;
338
+ }>, "strip", z.ZodTypeAny, {
339
+ departmentIds: string[];
340
+ writeBackEnabled?: boolean | undefined;
341
+ writeBackFilters?: {
342
+ lab?: {
343
+ loincCodes?: string[] | undefined;
344
+ minCountPerCode?: number | undefined;
345
+ relativeDateRange?: {
346
+ days?: number | undefined;
347
+ months?: number | undefined;
348
+ years?: number | undefined;
349
+ } | undefined;
350
+ absoluteDate?: string | undefined;
351
+ disabled?: boolean | undefined;
352
+ } | undefined;
353
+ labPanel?: {
354
+ loincCodes?: string[] | undefined;
355
+ minCountPerCode?: number | undefined;
356
+ relativeDateRange?: {
357
+ days?: number | undefined;
358
+ months?: number | undefined;
359
+ years?: number | undefined;
360
+ } | undefined;
361
+ absoluteDate?: string | undefined;
362
+ disabled?: boolean | undefined;
363
+ } | undefined;
364
+ problem?: {
365
+ relativeDateRange?: {
366
+ days?: number | undefined;
367
+ months?: number | undefined;
368
+ years?: number | undefined;
369
+ } | undefined;
370
+ disabled?: boolean | undefined;
371
+ stringFilters?: string[] | undefined;
372
+ latestOnly?: boolean | undefined;
373
+ earliestOnly?: boolean | undefined;
374
+ chronicityFilter?: "all" | "chronic" | "non-chronic" | undefined;
375
+ hccFilter?: "all" | "hcc" | "non-hcc" | undefined;
376
+ chronicOrHcc?: boolean | undefined;
377
+ } | undefined;
378
+ vital?: {
379
+ loincCodes?: string[] | undefined;
380
+ relativeDateRange?: {
381
+ days?: number | undefined;
382
+ months?: number | undefined;
383
+ years?: number | undefined;
384
+ } | undefined;
385
+ disabled?: boolean | undefined;
386
+ latestOnly?: boolean | undefined;
387
+ } | undefined;
388
+ medicationStatement?: {
389
+ absoluteDate?: string | undefined;
390
+ disabled?: boolean | undefined;
391
+ rxnormCodes?: string[] | undefined;
392
+ } | undefined;
393
+ procedure?: {
394
+ disabled?: boolean | undefined;
395
+ cptCodes?: string[] | undefined;
396
+ } | undefined;
397
+ allergy?: {
398
+ disabled?: boolean | undefined;
399
+ } | undefined;
400
+ familyMemberHistory?: {
401
+ disabled?: boolean | undefined;
402
+ } | undefined;
403
+ } | undefined;
404
+ sendDocumentQueryWebhookEnabled?: boolean | undefined;
405
+ backgroundAppointmentsDisabled?: boolean | undefined;
406
+ webhookAppointmentDisabled?: boolean | undefined;
407
+ appointmentTypesFilter?: string[] | undefined;
408
+ contributionEncounterAppointmentTypesBlacklist?: string[] | undefined;
409
+ contributionEncounterSummariesEnabled?: boolean | undefined;
410
+ }, {
411
+ departmentIds: string[];
412
+ writeBackEnabled?: boolean | undefined;
413
+ writeBackFilters?: {
414
+ lab?: {
415
+ loincCodes?: string[] | undefined;
416
+ minCountPerCode?: number | undefined;
417
+ relativeDateRange?: {
418
+ days?: number | undefined;
419
+ months?: number | undefined;
420
+ years?: number | undefined;
421
+ } | undefined;
422
+ absoluteDate?: string | undefined;
423
+ disabled?: boolean | undefined;
424
+ } | undefined;
425
+ labPanel?: {
426
+ loincCodes?: string[] | undefined;
427
+ minCountPerCode?: number | undefined;
428
+ relativeDateRange?: {
429
+ days?: number | undefined;
430
+ months?: number | undefined;
431
+ years?: number | undefined;
432
+ } | undefined;
433
+ absoluteDate?: string | undefined;
434
+ disabled?: boolean | undefined;
435
+ } | undefined;
436
+ problem?: {
437
+ relativeDateRange?: {
438
+ days?: number | undefined;
439
+ months?: number | undefined;
440
+ years?: number | undefined;
441
+ } | undefined;
442
+ disabled?: boolean | undefined;
443
+ stringFilters?: string[] | undefined;
444
+ latestOnly?: boolean | undefined;
445
+ earliestOnly?: boolean | undefined;
446
+ chronicityFilter?: "all" | "chronic" | "non-chronic" | undefined;
447
+ hccFilter?: "all" | "hcc" | "non-hcc" | undefined;
448
+ chronicOrHcc?: boolean | undefined;
449
+ } | undefined;
450
+ vital?: {
451
+ loincCodes?: string[] | undefined;
452
+ relativeDateRange?: {
453
+ days?: number | undefined;
454
+ months?: number | undefined;
455
+ years?: number | undefined;
456
+ } | undefined;
457
+ disabled?: boolean | undefined;
458
+ latestOnly?: boolean | undefined;
459
+ } | undefined;
460
+ medicationStatement?: {
461
+ absoluteDate?: string | undefined;
462
+ disabled?: boolean | undefined;
463
+ rxnormCodes?: string[] | undefined;
464
+ } | undefined;
465
+ procedure?: {
466
+ disabled?: boolean | undefined;
467
+ cptCodes?: string[] | undefined;
468
+ } | undefined;
469
+ allergy?: {
470
+ disabled?: boolean | undefined;
471
+ } | undefined;
472
+ familyMemberHistory?: {
473
+ disabled?: boolean | undefined;
474
+ } | undefined;
475
+ } | undefined;
476
+ sendDocumentQueryWebhookEnabled?: boolean | undefined;
477
+ backgroundAppointmentsDisabled?: boolean | undefined;
478
+ webhookAppointmentDisabled?: boolean | undefined;
479
+ appointmentTypesFilter?: string[] | undefined;
480
+ contributionEncounterAppointmentTypesBlacklist?: string[] | undefined;
481
+ contributionEncounterSummariesEnabled?: boolean | undefined;
482
+ }>;
483
+ export type AthenaSecondaryMappings = z.infer<typeof athenaSecondaryMappingsSchema>;
484
+ //# sourceMappingURL=cx-mapping.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cx-mapping.d.ts","sourceRoot":"","sources":["../../../../../../src/interface/external/ehr/athenahealth/cx-mapping.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUC,CAAC;AAC5C,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC"}
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.athenaSecondaryMappingsSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ const shared_1 = require("../shared");
6
+ exports.athenaSecondaryMappingsSchema = zod_1.z
7
+ .object({
8
+ departmentIds: zod_1.z.string().array(),
9
+ webhookAppointmentDisabled: zod_1.z.boolean().optional(),
10
+ backgroundAppointmentsDisabled: zod_1.z.boolean().optional(),
11
+ appointmentTypesFilter: zod_1.z.string().array().optional(),
12
+ contributionEncounterAppointmentTypesBlacklist: zod_1.z.string().array().optional(),
13
+ contributionEncounterSummariesEnabled: zod_1.z.boolean().optional(),
14
+ })
15
+ .merge(shared_1.writeBackFiltersSchema)
16
+ .merge(shared_1.documentQueryWebhookFiltersSchema);
17
+ //# sourceMappingURL=cx-mapping.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cx-mapping.js","sourceRoot":"","sources":["../../../../../../src/interface/external/ehr/athenahealth/cx-mapping.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,sCAAsF;AAEzE,QAAA,6BAA6B,GAAG,OAAC;KAC3C,MAAM,CAAC;IACN,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE;IACjC,0BAA0B,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAClD,8BAA8B,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACtD,sBAAsB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACrD,8CAA8C,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC7E,qCAAqC,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAC9D,CAAC;KACD,KAAK,CAAC,+BAAsB,CAAC;KAC7B,KAAK,CAAC,0CAAiC,CAAC,CAAC"}
@@ -0,0 +1,28 @@
1
+ import { z } from "zod";
2
+ export declare const departmentSchema: z.ZodObject<{
3
+ departmentid: z.ZodString;
4
+ }, "strip", z.ZodTypeAny, {
5
+ departmentid: string;
6
+ }, {
7
+ departmentid: string;
8
+ }>;
9
+ export type Department = z.infer<typeof departmentSchema>;
10
+ export declare const departmentsSchema: z.ZodObject<{
11
+ departments: z.ZodArray<z.ZodObject<{
12
+ departmentid: z.ZodString;
13
+ }, "strip", z.ZodTypeAny, {
14
+ departmentid: string;
15
+ }, {
16
+ departmentid: string;
17
+ }>, "many">;
18
+ }, "strip", z.ZodTypeAny, {
19
+ departments: {
20
+ departmentid: string;
21
+ }[];
22
+ }, {
23
+ departments: {
24
+ departmentid: string;
25
+ }[];
26
+ }>;
27
+ export type Departments = z.infer<typeof departmentsSchema>;
28
+ //# sourceMappingURL=department.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"department.d.ts","sourceRoot":"","sources":["../../../../../../src/interface/external/ehr/athenahealth/department.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,gBAAgB;;;;;;EAE3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC1D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;EAE5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.departmentsSchema = exports.departmentSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ exports.departmentSchema = zod_1.z.object({
6
+ departmentid: zod_1.z.string(),
7
+ });
8
+ exports.departmentsSchema = zod_1.z.object({
9
+ departments: exports.departmentSchema.array(),
10
+ });
11
+ //# sourceMappingURL=department.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"department.js","sourceRoot":"","sources":["../../../../../../src/interface/external/ehr/athenahealth/department.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;CACzB,CAAC,CAAC;AAEU,QAAA,iBAAiB,GAAG,OAAC,CAAC,MAAM,CAAC;IACxC,WAAW,EAAE,wBAAgB,CAAC,KAAK,EAAE;CACtC,CAAC,CAAC"}
@@ -0,0 +1,33 @@
1
+ import { z } from "zod";
2
+ declare const encounterSchema: z.ZodObject<{
3
+ appointmentid: z.ZodString;
4
+ status: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ status: string;
7
+ appointmentid: string;
8
+ }, {
9
+ status: string;
10
+ appointmentid: string;
11
+ }>;
12
+ export type Encounter = z.infer<typeof encounterSchema>;
13
+ export declare const encountersSchema: z.ZodArray<z.ZodObject<{
14
+ appointmentid: z.ZodString;
15
+ status: z.ZodString;
16
+ }, "strip", z.ZodTypeAny, {
17
+ status: string;
18
+ appointmentid: string;
19
+ }, {
20
+ status: string;
21
+ appointmentid: string;
22
+ }>, "many">;
23
+ export type Encounters = z.infer<typeof encountersSchema>;
24
+ export declare const encounterSummarySchema: z.ZodObject<{
25
+ summaryhtml: z.ZodString;
26
+ }, "strip", z.ZodTypeAny, {
27
+ summaryhtml: string;
28
+ }, {
29
+ summaryhtml: string;
30
+ }>;
31
+ export type EncounterSummary = z.infer<typeof encounterSummarySchema>;
32
+ export {};
33
+ //# sourceMappingURL=encounter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"encounter.d.ts","sourceRoot":"","sources":["../../../../../../src/interface/external/ehr/athenahealth/encounter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,QAAA,MAAM,eAAe;;;;;;;;;EAGnB,CAAC;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD,eAAO,MAAM,gBAAgB;;;;;;;;;WAA0B,CAAC;AACxD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D,eAAO,MAAM,sBAAsB;;;;;;EAEjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.encounterSummarySchema = exports.encountersSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ const encounterSchema = zod_1.z.object({
6
+ appointmentid: zod_1.z.coerce.string(),
7
+ status: zod_1.z.string(),
8
+ });
9
+ exports.encountersSchema = encounterSchema.array();
10
+ exports.encounterSummarySchema = zod_1.z.object({
11
+ summaryhtml: zod_1.z.string(),
12
+ });
13
+ //# sourceMappingURL=encounter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"encounter.js","sourceRoot":"","sources":["../../../../../../src/interface/external/ehr/athenahealth/encounter.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,MAAM,eAAe,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/B,aAAa,EAAE,OAAC,CAAC,MAAM,CAAC,MAAM,EAAE;IAChC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAC;AAGU,QAAA,gBAAgB,GAAG,eAAe,CAAC,KAAK,EAAE,CAAC;AAG3C,QAAA,sBAAsB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7C,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC"}