@greensecurity/javascript-sdk 0.9.1

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 (432) hide show
  1. package/.devcontainer/README.md +35 -0
  2. package/.devcontainer/devcontainer.json +45 -0
  3. package/FUNCTIONS.md +109 -0
  4. package/REACT_QUERY.md +318 -0
  5. package/README.md +561 -0
  6. package/RUNTIMES.md +48 -0
  7. package/core.d.ts +10 -0
  8. package/core.d.ts.map +1 -0
  9. package/core.js +17 -0
  10. package/core.js.map +1 -0
  11. package/docs/sdks/greensecurity/README.md +14 -0
  12. package/docs/sdks/organizations/README.md +252 -0
  13. package/docs/sdks/user/README.md +348 -0
  14. package/docs/sdks/vendors/README.md +219 -0
  15. package/funcs/organizationsGetFacility.d.ts +17 -0
  16. package/funcs/organizationsGetFacility.d.ts.map +1 -0
  17. package/funcs/organizationsGetFacility.js +117 -0
  18. package/funcs/organizationsGetFacility.js.map +1 -0
  19. package/funcs/organizationsListOrSearchFacilities.d.ts +28 -0
  20. package/funcs/organizationsListOrSearchFacilities.d.ts.map +1 -0
  21. package/funcs/organizationsListOrSearchFacilities.js +131 -0
  22. package/funcs/organizationsListOrSearchFacilities.js.map +1 -0
  23. package/funcs/userGetCurrentUser.d.ts +16 -0
  24. package/funcs/userGetCurrentUser.d.ts.map +1 -0
  25. package/funcs/userGetCurrentUser.js +101 -0
  26. package/funcs/userGetCurrentUser.js.map +1 -0
  27. package/funcs/userGetUserById.d.ts +17 -0
  28. package/funcs/userGetUserById.d.ts.map +1 -0
  29. package/funcs/userGetUserById.js +117 -0
  30. package/funcs/userGetUserById.js.map +1 -0
  31. package/funcs/userLogsUserIntoTheSystem.d.ts +46 -0
  32. package/funcs/userLogsUserIntoTheSystem.d.ts.map +1 -0
  33. package/funcs/userLogsUserIntoTheSystem.js +137 -0
  34. package/funcs/userLogsUserIntoTheSystem.js.map +1 -0
  35. package/funcs/vendorsCreateVendorRegistration.d.ts +16 -0
  36. package/funcs/vendorsCreateVendorRegistration.d.ts.map +1 -0
  37. package/funcs/vendorsCreateVendorRegistration.js +107 -0
  38. package/funcs/vendorsCreateVendorRegistration.js.map +1 -0
  39. package/funcs/vendorsListVendorJobTitles.d.ts +16 -0
  40. package/funcs/vendorsListVendorJobTitles.d.ts.map +1 -0
  41. package/funcs/vendorsListVendorJobTitles.js +114 -0
  42. package/funcs/vendorsListVendorJobTitles.js.map +1 -0
  43. package/hooks/hooks.d.ts +24 -0
  44. package/hooks/hooks.d.ts.map +1 -0
  45. package/hooks/hooks.js +86 -0
  46. package/hooks/hooks.js.map +1 -0
  47. package/hooks/index.d.ts +3 -0
  48. package/hooks/index.d.ts.map +1 -0
  49. package/hooks/index.js +22 -0
  50. package/hooks/index.js.map +1 -0
  51. package/hooks/registration.d.ts +3 -0
  52. package/hooks/registration.d.ts.map +1 -0
  53. package/hooks/registration.js +15 -0
  54. package/hooks/registration.js.map +1 -0
  55. package/hooks/types.d.ts +78 -0
  56. package/hooks/types.d.ts.map +1 -0
  57. package/hooks/types.js +6 -0
  58. package/hooks/types.js.map +1 -0
  59. package/index.d.ts +4 -0
  60. package/index.d.ts.map +1 -0
  61. package/index.js +46 -0
  62. package/index.js.map +1 -0
  63. package/jsr.json +27 -0
  64. package/lib/base64.d.ts +10 -0
  65. package/lib/base64.d.ts.map +1 -0
  66. package/lib/base64.js +71 -0
  67. package/lib/base64.js.map +1 -0
  68. package/lib/config.d.ts +38 -0
  69. package/lib/config.d.ts.map +1 -0
  70. package/lib/config.js +46 -0
  71. package/lib/config.js.map +1 -0
  72. package/lib/dlv.d.ts +14 -0
  73. package/lib/dlv.d.ts.map +1 -0
  74. package/lib/dlv.js +49 -0
  75. package/lib/dlv.js.map +1 -0
  76. package/lib/encodings.d.ts +52 -0
  77. package/lib/encodings.d.ts.map +1 -0
  78. package/lib/encodings.js +368 -0
  79. package/lib/encodings.js.map +1 -0
  80. package/lib/env.d.ts +16 -0
  81. package/lib/env.d.ts.map +1 -0
  82. package/lib/env.js +66 -0
  83. package/lib/env.js.map +1 -0
  84. package/lib/files.d.ts +8 -0
  85. package/lib/files.d.ts.map +1 -0
  86. package/lib/files.js +36 -0
  87. package/lib/files.js.map +1 -0
  88. package/lib/http.d.ts +67 -0
  89. package/lib/http.d.ts.map +1 -0
  90. package/lib/http.js +217 -0
  91. package/lib/http.js.map +1 -0
  92. package/lib/is-plain-object.d.ts +2 -0
  93. package/lib/is-plain-object.d.ts.map +1 -0
  94. package/lib/is-plain-object.js +41 -0
  95. package/lib/is-plain-object.js.map +1 -0
  96. package/lib/logger.d.ts +6 -0
  97. package/lib/logger.d.ts.map +1 -0
  98. package/lib/logger.js +6 -0
  99. package/lib/logger.js.map +1 -0
  100. package/lib/matchers.d.ts +64 -0
  101. package/lib/matchers.d.ts.map +1 -0
  102. package/lib/matchers.js +204 -0
  103. package/lib/matchers.js.map +1 -0
  104. package/lib/primitives.d.ts +23 -0
  105. package/lib/primitives.d.ts.map +1 -0
  106. package/lib/primitives.js +104 -0
  107. package/lib/primitives.js.map +1 -0
  108. package/lib/retries.d.ts +38 -0
  109. package/lib/retries.d.ts.map +1 -0
  110. package/lib/retries.js +153 -0
  111. package/lib/retries.js.map +1 -0
  112. package/lib/schemas.d.ts +19 -0
  113. package/lib/schemas.d.ts.map +1 -0
  114. package/lib/schemas.js +62 -0
  115. package/lib/schemas.js.map +1 -0
  116. package/lib/sdks.d.ts +60 -0
  117. package/lib/sdks.d.ts.map +1 -0
  118. package/lib/sdks.js +280 -0
  119. package/lib/sdks.js.map +1 -0
  120. package/lib/security.d.ts +82 -0
  121. package/lib/security.d.ts.map +1 -0
  122. package/lib/security.js +145 -0
  123. package/lib/security.js.map +1 -0
  124. package/lib/url.d.ts +5 -0
  125. package/lib/url.d.ts.map +1 -0
  126. package/lib/url.js +25 -0
  127. package/lib/url.js.map +1 -0
  128. package/models/components/contact.d.ts +135 -0
  129. package/models/components/contact.d.ts.map +1 -0
  130. package/models/components/contact.js +172 -0
  131. package/models/components/contact.js.map +1 -0
  132. package/models/components/departmentsummary.d.ts +34 -0
  133. package/models/components/departmentsummary.d.ts.map +1 -0
  134. package/models/components/departmentsummary.js +71 -0
  135. package/models/components/departmentsummary.js.map +1 -0
  136. package/models/components/desc.d.ts +25 -0
  137. package/models/components/desc.d.ts.map +1 -0
  138. package/models/components/desc.js +66 -0
  139. package/models/components/desc.js.map +1 -0
  140. package/models/components/expand.d.ts +79 -0
  141. package/models/components/expand.d.ts.map +1 -0
  142. package/models/components/expand.js +79 -0
  143. package/models/components/expand.js.map +1 -0
  144. package/models/components/facility.d.ts +544 -0
  145. package/models/components/facility.d.ts.map +1 -0
  146. package/models/components/facility.js +797 -0
  147. package/models/components/facility.js.map +1 -0
  148. package/models/components/facilitysummary.d.ts +34 -0
  149. package/models/components/facilitysummary.d.ts.map +1 -0
  150. package/models/components/facilitysummary.js +71 -0
  151. package/models/components/facilitysummary.js.map +1 -0
  152. package/models/components/imageset.d.ts +38 -0
  153. package/models/components/imageset.d.ts.map +1 -0
  154. package/models/components/imageset.js +75 -0
  155. package/models/components/imageset.js.map +1 -0
  156. package/models/components/index.d.ts +20 -0
  157. package/models/components/index.d.ts.map +1 -0
  158. package/models/components/index.js +39 -0
  159. package/models/components/index.js.map +1 -0
  160. package/models/components/loginemailandpassword.d.ts +45 -0
  161. package/models/components/loginemailandpassword.d.ts.map +1 -0
  162. package/models/components/loginemailandpassword.js +82 -0
  163. package/models/components/loginemailandpassword.js.map +1 -0
  164. package/models/components/loginrequirementsfromemail.d.ts +40 -0
  165. package/models/components/loginrequirementsfromemail.d.ts.map +1 -0
  166. package/models/components/loginrequirementsfromemail.js +80 -0
  167. package/models/components/loginrequirementsfromemail.js.map +1 -0
  168. package/models/components/mfarequiredresponse.d.ts +98 -0
  169. package/models/components/mfarequiredresponse.d.ts.map +1 -0
  170. package/models/components/mfarequiredresponse.js +126 -0
  171. package/models/components/mfarequiredresponse.js.map +1 -0
  172. package/models/components/pager.d.ts +69 -0
  173. package/models/components/pager.d.ts.map +1 -0
  174. package/models/components/pager.js +97 -0
  175. package/models/components/pager.js.map +1 -0
  176. package/models/components/passwordrequiredresponse.d.ts +62 -0
  177. package/models/components/passwordrequiredresponse.d.ts.map +1 -0
  178. package/models/components/passwordrequiredresponse.js +92 -0
  179. package/models/components/passwordrequiredresponse.js.map +1 -0
  180. package/models/components/samlloginrequiredresponse.d.ts +73 -0
  181. package/models/components/samlloginrequiredresponse.d.ts.map +1 -0
  182. package/models/components/samlloginrequiredresponse.js +106 -0
  183. package/models/components/samlloginrequiredresponse.js.map +1 -0
  184. package/models/components/security.d.ts +31 -0
  185. package/models/components/security.d.ts.map +1 -0
  186. package/models/components/security.js +80 -0
  187. package/models/components/security.js.map +1 -0
  188. package/models/components/status.d.ts +37 -0
  189. package/models/components/status.d.ts.map +1 -0
  190. package/models/components/status.js +65 -0
  191. package/models/components/status.js.map +1 -0
  192. package/models/components/systemsummary.d.ts +34 -0
  193. package/models/components/systemsummary.d.ts.map +1 -0
  194. package/models/components/systemsummary.js +71 -0
  195. package/models/components/systemsummary.js.map +1 -0
  196. package/models/components/user.d.ts +265 -0
  197. package/models/components/user.d.ts.map +1 -0
  198. package/models/components/user.js +284 -0
  199. package/models/components/user.js.map +1 -0
  200. package/models/components/vendorjobtitle.d.ts +41 -0
  201. package/models/components/vendorjobtitle.d.ts.map +1 -0
  202. package/models/components/vendorjobtitle.js +71 -0
  203. package/models/components/vendorjobtitle.js.map +1 -0
  204. package/models/components/vendortype.d.ts +69 -0
  205. package/models/components/vendortype.d.ts.map +1 -0
  206. package/models/components/vendortype.js +135 -0
  207. package/models/components/vendortype.js.map +1 -0
  208. package/models/errors/apierror.d.ts +8 -0
  209. package/models/errors/apierror.d.ts.map +1 -0
  210. package/models/errors/apierror.js +21 -0
  211. package/models/errors/apierror.js.map +1 -0
  212. package/models/errors/apierrorresponse.d.ts +51 -0
  213. package/models/errors/apierrorresponse.d.ts.map +1 -0
  214. package/models/errors/apierrorresponse.js +91 -0
  215. package/models/errors/apierrorresponse.js.map +1 -0
  216. package/models/errors/httpclienterrors.d.ts +44 -0
  217. package/models/errors/httpclienterrors.d.ts.map +1 -0
  218. package/models/errors/httpclienterrors.js +78 -0
  219. package/models/errors/httpclienterrors.js.map +1 -0
  220. package/models/errors/index.d.ts +5 -0
  221. package/models/errors/index.d.ts.map +1 -0
  222. package/models/errors/index.js +24 -0
  223. package/models/errors/index.js.map +1 -0
  224. package/models/errors/sdkvalidationerror.d.ts +20 -0
  225. package/models/errors/sdkvalidationerror.d.ts.map +1 -0
  226. package/models/errors/sdkvalidationerror.js +115 -0
  227. package/models/errors/sdkvalidationerror.js.map +1 -0
  228. package/models/operations/createvendorregistration.d.ts +115 -0
  229. package/models/operations/createvendorregistration.d.ts.map +1 -0
  230. package/models/operations/createvendorregistration.js +143 -0
  231. package/models/operations/createvendorregistration.js.map +1 -0
  232. package/models/operations/getfacility.d.ts +32 -0
  233. package/models/operations/getfacility.d.ts.map +1 -0
  234. package/models/operations/getfacility.js +69 -0
  235. package/models/operations/getfacility.js.map +1 -0
  236. package/models/operations/getuserbyid.d.ts +32 -0
  237. package/models/operations/getuserbyid.d.ts.map +1 -0
  238. package/models/operations/getuserbyid.js +69 -0
  239. package/models/operations/getuserbyid.js.map +1 -0
  240. package/models/operations/index.d.ts +7 -0
  241. package/models/operations/index.d.ts.map +1 -0
  242. package/models/operations/index.js +26 -0
  243. package/models/operations/index.js.map +1 -0
  244. package/models/operations/listorsearchfacilities.d.ts +110 -0
  245. package/models/operations/listorsearchfacilities.d.ts.map +1 -0
  246. package/models/operations/listorsearchfacilities.js +130 -0
  247. package/models/operations/listorsearchfacilities.js.map +1 -0
  248. package/models/operations/listvendorjobtitles.d.ts +86 -0
  249. package/models/operations/listvendorjobtitles.d.ts.map +1 -0
  250. package/models/operations/listvendorjobtitles.js +118 -0
  251. package/models/operations/listvendorjobtitles.js.map +1 -0
  252. package/models/operations/logsuserintothesystem.d.ts +98 -0
  253. package/models/operations/logsuserintothesystem.d.ts.map +1 -0
  254. package/models/operations/logsuserintothesystem.js +164 -0
  255. package/models/operations/logsuserintothesystem.js.map +1 -0
  256. package/package.json +41 -0
  257. package/react-query/_context.d.ts +8 -0
  258. package/react-query/_context.d.ts.map +1 -0
  259. package/react-query/_context.js +21 -0
  260. package/react-query/_context.js.map +1 -0
  261. package/react-query/_types.d.ts +14 -0
  262. package/react-query/_types.d.ts.map +1 -0
  263. package/react-query/_types.js +6 -0
  264. package/react-query/_types.js.map +1 -0
  265. package/react-query/index.d.ts +10 -0
  266. package/react-query/index.d.ts.map +1 -0
  267. package/react-query/index.js +32 -0
  268. package/react-query/index.js.map +1 -0
  269. package/react-query/organizationsGetFacility.d.ts +31 -0
  270. package/react-query/organizationsGetFacility.d.ts.map +1 -0
  271. package/react-query/organizationsGetFacility.js +87 -0
  272. package/react-query/organizationsGetFacility.js.map +1 -0
  273. package/react-query/organizationsListOrSearchFacilities.d.ts +91 -0
  274. package/react-query/organizationsListOrSearchFacilities.d.ts.map +1 -0
  275. package/react-query/organizationsListOrSearchFacilities.js +132 -0
  276. package/react-query/organizationsListOrSearchFacilities.js.map +1 -0
  277. package/react-query/userGetCurrentUser.d.ts +29 -0
  278. package/react-query/userGetCurrentUser.d.ts.map +1 -0
  279. package/react-query/userGetCurrentUser.js +75 -0
  280. package/react-query/userGetCurrentUser.js.map +1 -0
  281. package/react-query/userGetUserById.d.ts +31 -0
  282. package/react-query/userGetUserById.d.ts.map +1 -0
  283. package/react-query/userGetUserById.js +87 -0
  284. package/react-query/userGetUserById.js.map +1 -0
  285. package/react-query/userLogsUserIntoTheSystem.d.ts +53 -0
  286. package/react-query/userLogsUserIntoTheSystem.d.ts.map +1 -0
  287. package/react-query/userLogsUserIntoTheSystem.js +77 -0
  288. package/react-query/userLogsUserIntoTheSystem.js.map +1 -0
  289. package/react-query/vendorsCreateVendorRegistration.d.ts +23 -0
  290. package/react-query/vendorsCreateVendorRegistration.d.ts.map +1 -0
  291. package/react-query/vendorsCreateVendorRegistration.js +51 -0
  292. package/react-query/vendorsCreateVendorRegistration.js.map +1 -0
  293. package/react-query/vendorsListVendorJobTitles.d.ts +53 -0
  294. package/react-query/vendorsListVendorJobTitles.d.ts.map +1 -0
  295. package/react-query/vendorsListVendorJobTitles.js +102 -0
  296. package/react-query/vendorsListVendorJobTitles.js.map +1 -0
  297. package/sdk/index.d.ts +2 -0
  298. package/sdk/index.d.ts.map +1 -0
  299. package/sdk/index.js +21 -0
  300. package/sdk/index.js.map +1 -0
  301. package/sdk/organizations.d.ts +33 -0
  302. package/sdk/organizations.d.ts.map +1 -0
  303. package/sdk/organizations.js +45 -0
  304. package/sdk/organizations.js.map +1 -0
  305. package/sdk/sdk.d.ts +13 -0
  306. package/sdk/sdk.d.ts.map +1 -0
  307. package/sdk/sdk.js +23 -0
  308. package/sdk/sdk.js.map +1 -0
  309. package/sdk/user.d.ts +57 -0
  310. package/sdk/user.d.ts.map +1 -0
  311. package/sdk/user.js +72 -0
  312. package/sdk/user.js.map +1 -0
  313. package/sdk/vendors.d.ts +19 -0
  314. package/sdk/vendors.d.ts.map +1 -0
  315. package/sdk/vendors.js +32 -0
  316. package/sdk/vendors.js.map +1 -0
  317. package/src/core.ts +13 -0
  318. package/src/funcs/organizationsGetFacility.ts +144 -0
  319. package/src/funcs/organizationsListOrSearchFacilities.ts +152 -0
  320. package/src/funcs/userGetCurrentUser.ts +118 -0
  321. package/src/funcs/userGetUserById.ts +141 -0
  322. package/src/funcs/userLogsUserIntoTheSystem.ts +161 -0
  323. package/src/funcs/vendorsCreateVendorRegistration.ts +132 -0
  324. package/src/funcs/vendorsListVendorJobTitles.ts +141 -0
  325. package/src/hooks/hooks.ts +132 -0
  326. package/src/hooks/index.ts +6 -0
  327. package/src/hooks/registration.ts +14 -0
  328. package/src/hooks/types.ts +110 -0
  329. package/src/index.ts +7 -0
  330. package/src/lib/base64.ts +37 -0
  331. package/src/lib/config.ts +76 -0
  332. package/src/lib/dlv.ts +53 -0
  333. package/src/lib/encodings.ts +483 -0
  334. package/src/lib/env.ts +43 -0
  335. package/src/lib/files.ts +40 -0
  336. package/src/lib/http.ts +323 -0
  337. package/src/lib/is-plain-object.ts +43 -0
  338. package/src/lib/logger.ts +9 -0
  339. package/src/lib/matchers.ts +322 -0
  340. package/src/lib/primitives.ts +136 -0
  341. package/src/lib/retries.ts +218 -0
  342. package/src/lib/schemas.ts +91 -0
  343. package/src/lib/sdks.ts +400 -0
  344. package/src/lib/security.ts +260 -0
  345. package/src/lib/url.ts +33 -0
  346. package/src/models/components/contact.ts +268 -0
  347. package/src/models/components/departmentsummary.ts +73 -0
  348. package/src/models/components/desc.ts +48 -0
  349. package/src/models/components/expand.ts +52 -0
  350. package/src/models/components/facility.ts +1334 -0
  351. package/src/models/components/facilitysummary.ts +71 -0
  352. package/src/models/components/imageset.ts +77 -0
  353. package/src/models/components/index.ts +23 -0
  354. package/src/models/components/loginemailandpassword.ts +95 -0
  355. package/src/models/components/loginrequirementsfromemail.ts +88 -0
  356. package/src/models/components/mfarequiredresponse.ts +160 -0
  357. package/src/models/components/pager.ts +126 -0
  358. package/src/models/components/passwordrequiredresponse.ts +105 -0
  359. package/src/models/components/samlloginrequiredresponse.ts +136 -0
  360. package/src/models/components/security.ts +75 -0
  361. package/src/models/components/status.ts +38 -0
  362. package/src/models/components/systemsummary.ts +69 -0
  363. package/src/models/components/user.ts +451 -0
  364. package/src/models/components/vendorjobtitle.ts +76 -0
  365. package/src/models/components/vendortype.ts +170 -0
  366. package/src/models/errors/apierror.ts +27 -0
  367. package/src/models/errors/apierrorresponse.ts +95 -0
  368. package/src/models/errors/httpclienterrors.ts +62 -0
  369. package/src/models/errors/index.ts +8 -0
  370. package/src/models/errors/sdkvalidationerror.ts +97 -0
  371. package/src/models/operations/createvendorregistration.ts +237 -0
  372. package/src/models/operations/getfacility.ts +69 -0
  373. package/src/models/operations/getuserbyid.ts +69 -0
  374. package/src/models/operations/index.ts +10 -0
  375. package/src/models/operations/listorsearchfacilities.ts +219 -0
  376. package/src/models/operations/listvendorjobtitles.ts +179 -0
  377. package/src/models/operations/logsuserintothesystem.ts +270 -0
  378. package/src/react-query/_types.ts +91 -0
  379. package/src/react-query/index.ts +14 -0
  380. package/src/react-query/organizationsGetFacility.ts +154 -0
  381. package/src/react-query/organizationsListOrSearchFacilities.ts +241 -0
  382. package/src/react-query/userGetCurrentUser.ts +124 -0
  383. package/src/react-query/userGetUserById.ts +152 -0
  384. package/src/react-query/userLogsUserIntoTheSystem.ts +119 -0
  385. package/src/react-query/vendorsCreateVendorRegistration.ts +93 -0
  386. package/src/react-query/vendorsListVendorJobTitles.ts +194 -0
  387. package/src/sdk/index.ts +5 -0
  388. package/src/sdk/organizations.ts +59 -0
  389. package/src/sdk/sdk.ts +25 -0
  390. package/src/sdk/user.ts +92 -0
  391. package/src/sdk/vendors.ts +45 -0
  392. package/src/types/blobs.ts +31 -0
  393. package/src/types/constdatetime.ts +15 -0
  394. package/src/types/enums.ts +16 -0
  395. package/src/types/fp.ts +50 -0
  396. package/src/types/index.ts +11 -0
  397. package/src/types/operations.ts +105 -0
  398. package/src/types/rfcdate.ts +54 -0
  399. package/src/types/streams.ts +21 -0
  400. package/tsconfig.json +41 -0
  401. package/types/blobs.d.ts +4 -0
  402. package/types/blobs.d.ts.map +1 -0
  403. package/types/blobs.js +62 -0
  404. package/types/blobs.js.map +1 -0
  405. package/types/constdatetime.d.ts +3 -0
  406. package/types/constdatetime.d.ts.map +1 -0
  407. package/types/constdatetime.js +46 -0
  408. package/types/constdatetime.js.map +1 -0
  409. package/types/enums.d.ts +12 -0
  410. package/types/enums.d.ts.map +1 -0
  411. package/types/enums.js +10 -0
  412. package/types/enums.js.map +1 -0
  413. package/types/fp.d.ts +31 -0
  414. package/types/fp.d.ts.map +1 -0
  415. package/types/fp.js +37 -0
  416. package/types/fp.js.map +1 -0
  417. package/types/index.d.ts +8 -0
  418. package/types/index.d.ts.map +1 -0
  419. package/types/index.js +16 -0
  420. package/types/index.js.map +1 -0
  421. package/types/operations.d.ts +27 -0
  422. package/types/operations.d.ts.map +1 -0
  423. package/types/operations.js +83 -0
  424. package/types/operations.js.map +1 -0
  425. package/types/rfcdate.d.ts +21 -0
  426. package/types/rfcdate.d.ts.map +1 -0
  427. package/types/rfcdate.js +46 -0
  428. package/types/rfcdate.js.map +1 -0
  429. package/types/streams.d.ts +2 -0
  430. package/types/streams.d.ts.map +1 -0
  431. package/types/streams.js +18 -0
  432. package/types/streams.js.map +1 -0
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+ /*
3
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
4
+ */
5
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ var desc = Object.getOwnPropertyDescriptor(m, k);
8
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
9
+ desc = { enumerable: true, get: function() { return m[k]; } };
10
+ }
11
+ Object.defineProperty(o, k2, desc);
12
+ }) : (function(o, m, k, k2) {
13
+ if (k2 === undefined) k2 = k;
14
+ o[k2] = m[k];
15
+ }));
16
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
17
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
18
+ }) : function(o, v) {
19
+ o["default"] = v;
20
+ });
21
+ var __importStar = (this && this.__importStar) || (function () {
22
+ var ownKeys = function(o) {
23
+ ownKeys = Object.getOwnPropertyNames || function (o) {
24
+ var ar = [];
25
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
26
+ return ar;
27
+ };
28
+ return ownKeys(o);
29
+ };
30
+ return function (mod) {
31
+ if (mod && mod.__esModule) return mod;
32
+ var result = {};
33
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
34
+ __setModuleDefault(result, mod);
35
+ return result;
36
+ };
37
+ })();
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.Expand$ = exports.Expand$outboundSchema = exports.Expand$inboundSchema = exports.Expand = void 0;
40
+ const z = __importStar(require("zod"));
41
+ /**
42
+ * An expansion scope that is valid for the object being requested.
43
+ */
44
+ exports.Expand = {
45
+ User: "user",
46
+ ContactFacility: "contact.facility",
47
+ ContactSystem: "contact.system",
48
+ ContactDepartment: "contact.department",
49
+ FacilityAppointmentPolicy: "facility.appointment_policy",
50
+ FacilityContacts: "facility.contacts",
51
+ FacilityVendorCounts: "facility.vendor_counts",
52
+ FacilityFluCredential: "facility.flu_credential",
53
+ FacilityScrubsPolicy: "facility.scrubs_policy",
54
+ FacilitySystem: "facility.system",
55
+ FacilityVendorGuestPolicy: "facility.vendor_guest_policy",
56
+ FacilityVendorPolicy: "facility.vendor_policy",
57
+ FacilityVisitorPolicy: "facility.visitor_policy",
58
+ FacilityWorkflow: "facility.workflow",
59
+ VendorUser: "vendor.user",
60
+ VendorVendorType: "vendor.vendor_type",
61
+ VendorPaymentProfile: "vendor.payment_profile",
62
+ };
63
+ /** @internal */
64
+ exports.Expand$inboundSchema = z
65
+ .nativeEnum(exports.Expand);
66
+ /** @internal */
67
+ exports.Expand$outboundSchema = exports.Expand$inboundSchema;
68
+ /**
69
+ * @internal
70
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
71
+ */
72
+ var Expand$;
73
+ (function (Expand$) {
74
+ /** @deprecated use `Expand$inboundSchema` instead. */
75
+ Expand$.inboundSchema = exports.Expand$inboundSchema;
76
+ /** @deprecated use `Expand$outboundSchema` instead. */
77
+ Expand$.outboundSchema = exports.Expand$outboundSchema;
78
+ })(Expand$ || (exports.Expand$ = Expand$ = {}));
79
+ //# sourceMappingURL=expand.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"expand.js","sourceRoot":"","sources":["../../src/models/components/expand.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,MAAM,GAAG;IACpB,IAAI,EAAE,MAAM;IACZ,eAAe,EAAE,kBAAkB;IACnC,aAAa,EAAE,gBAAgB;IAC/B,iBAAiB,EAAE,oBAAoB;IACvC,yBAAyB,EAAE,6BAA6B;IACxD,gBAAgB,EAAE,mBAAmB;IACrC,oBAAoB,EAAE,wBAAwB;IAC9C,qBAAqB,EAAE,yBAAyB;IAChD,oBAAoB,EAAE,wBAAwB;IAC9C,cAAc,EAAE,iBAAiB;IACjC,yBAAyB,EAAE,8BAA8B;IACzD,oBAAoB,EAAE,wBAAwB;IAC9C,qBAAqB,EAAE,yBAAyB;IAChD,gBAAgB,EAAE,mBAAmB;IACrC,UAAU,EAAE,aAAa;IACzB,gBAAgB,EAAE,oBAAoB;IACtC,oBAAoB,EAAE,wBAAwB;CACtC,CAAC;AAMX,gBAAgB;AACH,QAAA,oBAAoB,GAAmC,CAAC;KAClE,UAAU,CAAC,cAAM,CAAC,CAAC;AAEtB,gBAAgB;AACH,QAAA,qBAAqB,GAChC,4BAAoB,CAAC;AAEvB;;;GAGG;AACH,IAAiB,OAAO,CAKvB;AALD,WAAiB,OAAO;IACtB,sDAAsD;IACzC,qBAAa,GAAG,4BAAoB,CAAC;IAClD,uDAAuD;IAC1C,sBAAc,GAAG,6BAAqB,CAAC;AACtD,CAAC,EALgB,OAAO,uBAAP,OAAO,QAKvB"}
@@ -0,0 +1,544 @@
1
+ import * as z from "zod";
2
+ import { ClosedEnum } from "../../types/enums.js";
3
+ import { Result as SafeParseResult } from "../../types/fp.js";
4
+ import { RFCDate } from "../../types/rfcdate.js";
5
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
6
+ import { Contact, Contact$Outbound } from "./contact.js";
7
+ import { ImageSet, ImageSet$Outbound } from "./imageset.js";
8
+ import { SystemSummary, SystemSummary$Outbound } from "./systemsummary.js";
9
+ import { VendorType, VendorType$Outbound } from "./vendortype.js";
10
+ export type AppointmentPolicy = {
11
+ standingApptPeriod?: string | undefined;
12
+ apptRequestInfo?: string | undefined;
13
+ allowVendorApptRequests?: boolean | undefined;
14
+ allowContactApptRequests?: boolean | undefined;
15
+ allowPendingVendorApptRequests?: boolean | undefined;
16
+ allowMultiFacilityApptRequests?: boolean | undefined;
17
+ maxInvitesPerAppt?: number | undefined;
18
+ };
19
+ export type Contacts = {
20
+ /**
21
+ * This object represents a contact at the system or facility level. Use it to verify vendors, create appointments, or check in visitors.
22
+ */
23
+ contact?: Contact | undefined;
24
+ /**
25
+ * This object represents a contact at the system or facility level. Use it to verify vendors, create appointments, or check in visitors.
26
+ */
27
+ adminContact?: Contact | undefined;
28
+ /**
29
+ * This object represents a contact at the system or facility level. Use it to verify vendors, create appointments, or check in visitors.
30
+ */
31
+ techContact?: Contact | undefined;
32
+ /**
33
+ * This object represents a contact at the system or facility level. Use it to verify vendors, create appointments, or check in visitors.
34
+ */
35
+ greenSecurityCsm?: Contact | undefined;
36
+ /**
37
+ * This object represents a contact at the system or facility level. Use it to verify vendors, create appointments, or check in visitors.
38
+ */
39
+ accountManager?: Contact | undefined;
40
+ };
41
+ export type VendorCounts = {
42
+ countTargetedActiveApproved?: number | undefined;
43
+ countTargetedActivePending?: number | undefined;
44
+ countTargetedInactiveApproved?: number | undefined;
45
+ countTargetedInactivePending?: number | undefined;
46
+ countPrimaryActiveApproved?: number | undefined;
47
+ countPrimaryActivePending?: number | undefined;
48
+ countPrimaryInactiveApproved?: number | undefined;
49
+ countPrimaryInactivePending?: number | undefined;
50
+ };
51
+ export type FacilityFluCredential = string | number;
52
+ export type FluCredential = {
53
+ fluCredential?: string | number | null | undefined;
54
+ fluDateBegins?: RFCDate | null | undefined;
55
+ fluDateEnds?: RFCDate | null | undefined;
56
+ };
57
+ export type Location = {
58
+ streetAddress?: string | null | undefined;
59
+ city?: string | null | undefined;
60
+ state?: string | null | undefined;
61
+ zip?: string | null | undefined;
62
+ email?: string | null | undefined;
63
+ phone?: string | null | undefined;
64
+ fax?: string | null | undefined;
65
+ website?: string | null | undefined;
66
+ utcOffset?: number | null | undefined;
67
+ timezone?: string | null | undefined;
68
+ latitude?: number | null | undefined;
69
+ longitude?: number | null | undefined;
70
+ };
71
+ export type ScrubsPolicy = {
72
+ unlimitedScrubs?: boolean | undefined;
73
+ scrubDebitsPerDay?: number | undefined;
74
+ minutesBetweenScrubDebits?: number | undefined;
75
+ };
76
+ export type FacilitySystem = SystemSummary | number;
77
+ export type Uses = {
78
+ calendaring: boolean;
79
+ credentialing: boolean;
80
+ rfid: boolean;
81
+ scrubs: boolean;
82
+ valueAnalysis: boolean;
83
+ visitorManagement: boolean;
84
+ visitorSearch: boolean;
85
+ };
86
+ export declare const VendorGuestLimitAndOr: {
87
+ readonly And: "and";
88
+ readonly Or: "or";
89
+ };
90
+ export type VendorGuestLimitAndOr = ClosedEnum<typeof VendorGuestLimitAndOr>;
91
+ export type VendorGuestPolicy = {
92
+ enabled: boolean;
93
+ vendorGuestLimit?: number | undefined;
94
+ vendorGuestLimitAndOr?: VendorGuestLimitAndOr | undefined;
95
+ vendorGuestLimitDays?: number | undefined;
96
+ vendorGuestRequireEmail: boolean;
97
+ };
98
+ export type VendorPolicy = {
99
+ allowDepartmentOther: boolean;
100
+ allowFood: boolean;
101
+ allowNonKioskCheckouts: boolean;
102
+ autoScanOutViolation: boolean;
103
+ contractorGuestRequireEmail: boolean;
104
+ visitorCheckinRequirePhone: boolean;
105
+ vendorTypes: Array<VendorType>;
106
+ };
107
+ export type VisitorPolicy = {
108
+ autoCheckoutVisitors: boolean;
109
+ requireVisitRequestZone: boolean;
110
+ showGeneralVisitor: boolean;
111
+ storeVisitorDlNumber: boolean;
112
+ visitRequestDemographics?: string | undefined;
113
+ visitorSubtypes?: Array<string> | undefined;
114
+ };
115
+ export type WorkflowPolicy = {
116
+ autoApproveDeptChangeRequests: boolean;
117
+ autoApproveRoleChangeRequests: boolean;
118
+ autoApproveZoneChangeRequests: boolean;
119
+ };
120
+ /**
121
+ * Describes a facility which typically represents a physical building or logical grouping of offices which act as a single entity.
122
+ */
123
+ export type Facility = {
124
+ appointmentPolicy?: AppointmentPolicy | null | undefined;
125
+ contacts?: Contacts | null | undefined;
126
+ vendorCounts?: VendorCounts | null | undefined;
127
+ emailDomain?: string | null | undefined;
128
+ facilityType?: string | null | undefined;
129
+ fluCredential?: FluCredential | undefined;
130
+ id?: number | undefined;
131
+ /**
132
+ * A set of images in different sizes
133
+ */
134
+ imageUrls?: ImageSet | undefined;
135
+ location?: Location | undefined;
136
+ name?: string | undefined;
137
+ scrubsPolicy?: ScrubsPolicy | null | undefined;
138
+ status?: string | undefined;
139
+ system?: SystemSummary | number | undefined;
140
+ uses?: Uses | undefined;
141
+ vendorGuestPolicy?: VendorGuestPolicy | null | undefined;
142
+ vendorPolicy?: VendorPolicy | null | undefined;
143
+ visible?: boolean | undefined;
144
+ visitorPolicy?: VisitorPolicy | null | undefined;
145
+ workflowPolicy?: WorkflowPolicy | null | undefined;
146
+ };
147
+ /** @internal */
148
+ export declare const AppointmentPolicy$inboundSchema: z.ZodType<AppointmentPolicy, z.ZodTypeDef, unknown>;
149
+ /** @internal */
150
+ export type AppointmentPolicy$Outbound = {
151
+ standing_appt_period?: string | undefined;
152
+ appt_request_info?: string | undefined;
153
+ allow_vendor_appt_requests?: boolean | undefined;
154
+ allow_contact_appt_requests?: boolean | undefined;
155
+ allow_pending_vendor_appt_requests?: boolean | undefined;
156
+ allow_multi_facility_appt_requests?: boolean | undefined;
157
+ max_invites_per_appt?: number | undefined;
158
+ };
159
+ /** @internal */
160
+ export declare const AppointmentPolicy$outboundSchema: z.ZodType<AppointmentPolicy$Outbound, z.ZodTypeDef, AppointmentPolicy>;
161
+ /**
162
+ * @internal
163
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
164
+ */
165
+ export declare namespace AppointmentPolicy$ {
166
+ /** @deprecated use `AppointmentPolicy$inboundSchema` instead. */
167
+ const inboundSchema: z.ZodType<AppointmentPolicy, z.ZodTypeDef, unknown>;
168
+ /** @deprecated use `AppointmentPolicy$outboundSchema` instead. */
169
+ const outboundSchema: z.ZodType<AppointmentPolicy$Outbound, z.ZodTypeDef, AppointmentPolicy>;
170
+ /** @deprecated use `AppointmentPolicy$Outbound` instead. */
171
+ type Outbound = AppointmentPolicy$Outbound;
172
+ }
173
+ export declare function appointmentPolicyToJSON(appointmentPolicy: AppointmentPolicy): string;
174
+ export declare function appointmentPolicyFromJSON(jsonString: string): SafeParseResult<AppointmentPolicy, SDKValidationError>;
175
+ /** @internal */
176
+ export declare const Contacts$inboundSchema: z.ZodType<Contacts, z.ZodTypeDef, unknown>;
177
+ /** @internal */
178
+ export type Contacts$Outbound = {
179
+ contact?: Contact$Outbound | undefined;
180
+ admin_contact?: Contact$Outbound | undefined;
181
+ tech_contact?: Contact$Outbound | undefined;
182
+ green_security_csm?: Contact$Outbound | undefined;
183
+ account_manager?: Contact$Outbound | undefined;
184
+ };
185
+ /** @internal */
186
+ export declare const Contacts$outboundSchema: z.ZodType<Contacts$Outbound, z.ZodTypeDef, Contacts>;
187
+ /**
188
+ * @internal
189
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
190
+ */
191
+ export declare namespace Contacts$ {
192
+ /** @deprecated use `Contacts$inboundSchema` instead. */
193
+ const inboundSchema: z.ZodType<Contacts, z.ZodTypeDef, unknown>;
194
+ /** @deprecated use `Contacts$outboundSchema` instead. */
195
+ const outboundSchema: z.ZodType<Contacts$Outbound, z.ZodTypeDef, Contacts>;
196
+ /** @deprecated use `Contacts$Outbound` instead. */
197
+ type Outbound = Contacts$Outbound;
198
+ }
199
+ export declare function contactsToJSON(contacts: Contacts): string;
200
+ export declare function contactsFromJSON(jsonString: string): SafeParseResult<Contacts, SDKValidationError>;
201
+ /** @internal */
202
+ export declare const VendorCounts$inboundSchema: z.ZodType<VendorCounts, z.ZodTypeDef, unknown>;
203
+ /** @internal */
204
+ export type VendorCounts$Outbound = {
205
+ count_targeted_active_approved?: number | undefined;
206
+ count_targeted_active_pending?: number | undefined;
207
+ count_targeted_inactive_approved?: number | undefined;
208
+ count_targeted_inactive_pending?: number | undefined;
209
+ count_primary_active_approved?: number | undefined;
210
+ count_primary_active_pending?: number | undefined;
211
+ count_primary_inactive_approved?: number | undefined;
212
+ count_primary_inactive_pending?: number | undefined;
213
+ };
214
+ /** @internal */
215
+ export declare const VendorCounts$outboundSchema: z.ZodType<VendorCounts$Outbound, z.ZodTypeDef, VendorCounts>;
216
+ /**
217
+ * @internal
218
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
219
+ */
220
+ export declare namespace VendorCounts$ {
221
+ /** @deprecated use `VendorCounts$inboundSchema` instead. */
222
+ const inboundSchema: z.ZodType<VendorCounts, z.ZodTypeDef, unknown>;
223
+ /** @deprecated use `VendorCounts$outboundSchema` instead. */
224
+ const outboundSchema: z.ZodType<VendorCounts$Outbound, z.ZodTypeDef, VendorCounts>;
225
+ /** @deprecated use `VendorCounts$Outbound` instead. */
226
+ type Outbound = VendorCounts$Outbound;
227
+ }
228
+ export declare function vendorCountsToJSON(vendorCounts: VendorCounts): string;
229
+ export declare function vendorCountsFromJSON(jsonString: string): SafeParseResult<VendorCounts, SDKValidationError>;
230
+ /** @internal */
231
+ export declare const FacilityFluCredential$inboundSchema: z.ZodType<FacilityFluCredential, z.ZodTypeDef, unknown>;
232
+ /** @internal */
233
+ export type FacilityFluCredential$Outbound = string | number;
234
+ /** @internal */
235
+ export declare const FacilityFluCredential$outboundSchema: z.ZodType<FacilityFluCredential$Outbound, z.ZodTypeDef, FacilityFluCredential>;
236
+ /**
237
+ * @internal
238
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
239
+ */
240
+ export declare namespace FacilityFluCredential$ {
241
+ /** @deprecated use `FacilityFluCredential$inboundSchema` instead. */
242
+ const inboundSchema: z.ZodType<FacilityFluCredential, z.ZodTypeDef, unknown>;
243
+ /** @deprecated use `FacilityFluCredential$outboundSchema` instead. */
244
+ const outboundSchema: z.ZodType<FacilityFluCredential$Outbound, z.ZodTypeDef, FacilityFluCredential>;
245
+ /** @deprecated use `FacilityFluCredential$Outbound` instead. */
246
+ type Outbound = FacilityFluCredential$Outbound;
247
+ }
248
+ export declare function facilityFluCredentialToJSON(facilityFluCredential: FacilityFluCredential): string;
249
+ export declare function facilityFluCredentialFromJSON(jsonString: string): SafeParseResult<FacilityFluCredential, SDKValidationError>;
250
+ /** @internal */
251
+ export declare const FluCredential$inboundSchema: z.ZodType<FluCredential, z.ZodTypeDef, unknown>;
252
+ /** @internal */
253
+ export type FluCredential$Outbound = {
254
+ flu_credential?: string | number | null | undefined;
255
+ flu_date_begins?: string | null | undefined;
256
+ flu_date_ends?: string | null | undefined;
257
+ };
258
+ /** @internal */
259
+ export declare const FluCredential$outboundSchema: z.ZodType<FluCredential$Outbound, z.ZodTypeDef, FluCredential>;
260
+ /**
261
+ * @internal
262
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
263
+ */
264
+ export declare namespace FluCredential$ {
265
+ /** @deprecated use `FluCredential$inboundSchema` instead. */
266
+ const inboundSchema: z.ZodType<FluCredential, z.ZodTypeDef, unknown>;
267
+ /** @deprecated use `FluCredential$outboundSchema` instead. */
268
+ const outboundSchema: z.ZodType<FluCredential$Outbound, z.ZodTypeDef, FluCredential>;
269
+ /** @deprecated use `FluCredential$Outbound` instead. */
270
+ type Outbound = FluCredential$Outbound;
271
+ }
272
+ export declare function fluCredentialToJSON(fluCredential: FluCredential): string;
273
+ export declare function fluCredentialFromJSON(jsonString: string): SafeParseResult<FluCredential, SDKValidationError>;
274
+ /** @internal */
275
+ export declare const Location$inboundSchema: z.ZodType<Location, z.ZodTypeDef, unknown>;
276
+ /** @internal */
277
+ export type Location$Outbound = {
278
+ street_address?: string | null | undefined;
279
+ city?: string | null | undefined;
280
+ state?: string | null | undefined;
281
+ zip?: string | null | undefined;
282
+ email?: string | null | undefined;
283
+ phone?: string | null | undefined;
284
+ fax?: string | null | undefined;
285
+ website?: string | null | undefined;
286
+ utc_offset?: number | null | undefined;
287
+ timezone?: string | null | undefined;
288
+ latitude?: number | null | undefined;
289
+ longitude?: number | null | undefined;
290
+ };
291
+ /** @internal */
292
+ export declare const Location$outboundSchema: z.ZodType<Location$Outbound, z.ZodTypeDef, Location>;
293
+ /**
294
+ * @internal
295
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
296
+ */
297
+ export declare namespace Location$ {
298
+ /** @deprecated use `Location$inboundSchema` instead. */
299
+ const inboundSchema: z.ZodType<Location, z.ZodTypeDef, unknown>;
300
+ /** @deprecated use `Location$outboundSchema` instead. */
301
+ const outboundSchema: z.ZodType<Location$Outbound, z.ZodTypeDef, Location>;
302
+ /** @deprecated use `Location$Outbound` instead. */
303
+ type Outbound = Location$Outbound;
304
+ }
305
+ export declare function locationToJSON(location: Location): string;
306
+ export declare function locationFromJSON(jsonString: string): SafeParseResult<Location, SDKValidationError>;
307
+ /** @internal */
308
+ export declare const ScrubsPolicy$inboundSchema: z.ZodType<ScrubsPolicy, z.ZodTypeDef, unknown>;
309
+ /** @internal */
310
+ export type ScrubsPolicy$Outbound = {
311
+ unlimited_scrubs?: boolean | undefined;
312
+ scrub_debits_per_day?: number | undefined;
313
+ minutes_between_scrub_debits?: number | undefined;
314
+ };
315
+ /** @internal */
316
+ export declare const ScrubsPolicy$outboundSchema: z.ZodType<ScrubsPolicy$Outbound, z.ZodTypeDef, ScrubsPolicy>;
317
+ /**
318
+ * @internal
319
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
320
+ */
321
+ export declare namespace ScrubsPolicy$ {
322
+ /** @deprecated use `ScrubsPolicy$inboundSchema` instead. */
323
+ const inboundSchema: z.ZodType<ScrubsPolicy, z.ZodTypeDef, unknown>;
324
+ /** @deprecated use `ScrubsPolicy$outboundSchema` instead. */
325
+ const outboundSchema: z.ZodType<ScrubsPolicy$Outbound, z.ZodTypeDef, ScrubsPolicy>;
326
+ /** @deprecated use `ScrubsPolicy$Outbound` instead. */
327
+ type Outbound = ScrubsPolicy$Outbound;
328
+ }
329
+ export declare function scrubsPolicyToJSON(scrubsPolicy: ScrubsPolicy): string;
330
+ export declare function scrubsPolicyFromJSON(jsonString: string): SafeParseResult<ScrubsPolicy, SDKValidationError>;
331
+ /** @internal */
332
+ export declare const FacilitySystem$inboundSchema: z.ZodType<FacilitySystem, z.ZodTypeDef, unknown>;
333
+ /** @internal */
334
+ export type FacilitySystem$Outbound = SystemSummary$Outbound | number;
335
+ /** @internal */
336
+ export declare const FacilitySystem$outboundSchema: z.ZodType<FacilitySystem$Outbound, z.ZodTypeDef, FacilitySystem>;
337
+ /**
338
+ * @internal
339
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
340
+ */
341
+ export declare namespace FacilitySystem$ {
342
+ /** @deprecated use `FacilitySystem$inboundSchema` instead. */
343
+ const inboundSchema: z.ZodType<FacilitySystem, z.ZodTypeDef, unknown>;
344
+ /** @deprecated use `FacilitySystem$outboundSchema` instead. */
345
+ const outboundSchema: z.ZodType<FacilitySystem$Outbound, z.ZodTypeDef, FacilitySystem>;
346
+ /** @deprecated use `FacilitySystem$Outbound` instead. */
347
+ type Outbound = FacilitySystem$Outbound;
348
+ }
349
+ export declare function facilitySystemToJSON(facilitySystem: FacilitySystem): string;
350
+ export declare function facilitySystemFromJSON(jsonString: string): SafeParseResult<FacilitySystem, SDKValidationError>;
351
+ /** @internal */
352
+ export declare const Uses$inboundSchema: z.ZodType<Uses, z.ZodTypeDef, unknown>;
353
+ /** @internal */
354
+ export type Uses$Outbound = {
355
+ calendaring: boolean;
356
+ credentialing: boolean;
357
+ rfid: boolean;
358
+ scrubs: boolean;
359
+ value_analysis: boolean;
360
+ visitor_management: boolean;
361
+ visitor_search: boolean;
362
+ };
363
+ /** @internal */
364
+ export declare const Uses$outboundSchema: z.ZodType<Uses$Outbound, z.ZodTypeDef, Uses>;
365
+ /**
366
+ * @internal
367
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
368
+ */
369
+ export declare namespace Uses$ {
370
+ /** @deprecated use `Uses$inboundSchema` instead. */
371
+ const inboundSchema: z.ZodType<Uses, z.ZodTypeDef, unknown>;
372
+ /** @deprecated use `Uses$outboundSchema` instead. */
373
+ const outboundSchema: z.ZodType<Uses$Outbound, z.ZodTypeDef, Uses>;
374
+ /** @deprecated use `Uses$Outbound` instead. */
375
+ type Outbound = Uses$Outbound;
376
+ }
377
+ export declare function usesToJSON(uses: Uses): string;
378
+ export declare function usesFromJSON(jsonString: string): SafeParseResult<Uses, SDKValidationError>;
379
+ /** @internal */
380
+ export declare const VendorGuestLimitAndOr$inboundSchema: z.ZodNativeEnum<typeof VendorGuestLimitAndOr>;
381
+ /** @internal */
382
+ export declare const VendorGuestLimitAndOr$outboundSchema: z.ZodNativeEnum<typeof VendorGuestLimitAndOr>;
383
+ /**
384
+ * @internal
385
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
386
+ */
387
+ export declare namespace VendorGuestLimitAndOr$ {
388
+ /** @deprecated use `VendorGuestLimitAndOr$inboundSchema` instead. */
389
+ const inboundSchema: z.ZodNativeEnum<{
390
+ readonly And: "and";
391
+ readonly Or: "or";
392
+ }>;
393
+ /** @deprecated use `VendorGuestLimitAndOr$outboundSchema` instead. */
394
+ const outboundSchema: z.ZodNativeEnum<{
395
+ readonly And: "and";
396
+ readonly Or: "or";
397
+ }>;
398
+ }
399
+ /** @internal */
400
+ export declare const VendorGuestPolicy$inboundSchema: z.ZodType<VendorGuestPolicy, z.ZodTypeDef, unknown>;
401
+ /** @internal */
402
+ export type VendorGuestPolicy$Outbound = {
403
+ enabled: boolean;
404
+ vendor_guest_limit?: number | undefined;
405
+ vendor_guest_limit_and_or: string;
406
+ vendor_guest_limit_days?: number | undefined;
407
+ vendor_guest_require_email: boolean;
408
+ };
409
+ /** @internal */
410
+ export declare const VendorGuestPolicy$outboundSchema: z.ZodType<VendorGuestPolicy$Outbound, z.ZodTypeDef, VendorGuestPolicy>;
411
+ /**
412
+ * @internal
413
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
414
+ */
415
+ export declare namespace VendorGuestPolicy$ {
416
+ /** @deprecated use `VendorGuestPolicy$inboundSchema` instead. */
417
+ const inboundSchema: z.ZodType<VendorGuestPolicy, z.ZodTypeDef, unknown>;
418
+ /** @deprecated use `VendorGuestPolicy$outboundSchema` instead. */
419
+ const outboundSchema: z.ZodType<VendorGuestPolicy$Outbound, z.ZodTypeDef, VendorGuestPolicy>;
420
+ /** @deprecated use `VendorGuestPolicy$Outbound` instead. */
421
+ type Outbound = VendorGuestPolicy$Outbound;
422
+ }
423
+ export declare function vendorGuestPolicyToJSON(vendorGuestPolicy: VendorGuestPolicy): string;
424
+ export declare function vendorGuestPolicyFromJSON(jsonString: string): SafeParseResult<VendorGuestPolicy, SDKValidationError>;
425
+ /** @internal */
426
+ export declare const VendorPolicy$inboundSchema: z.ZodType<VendorPolicy, z.ZodTypeDef, unknown>;
427
+ /** @internal */
428
+ export type VendorPolicy$Outbound = {
429
+ allow_department_other: boolean;
430
+ allow_food: boolean;
431
+ allow_non_kiosk_checkouts: boolean;
432
+ auto_scan_out_violation: boolean;
433
+ contractor_guest_require_email: boolean;
434
+ visitor_checkin_require_phone: boolean;
435
+ vendor_types: Array<VendorType$Outbound>;
436
+ };
437
+ /** @internal */
438
+ export declare const VendorPolicy$outboundSchema: z.ZodType<VendorPolicy$Outbound, z.ZodTypeDef, VendorPolicy>;
439
+ /**
440
+ * @internal
441
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
442
+ */
443
+ export declare namespace VendorPolicy$ {
444
+ /** @deprecated use `VendorPolicy$inboundSchema` instead. */
445
+ const inboundSchema: z.ZodType<VendorPolicy, z.ZodTypeDef, unknown>;
446
+ /** @deprecated use `VendorPolicy$outboundSchema` instead. */
447
+ const outboundSchema: z.ZodType<VendorPolicy$Outbound, z.ZodTypeDef, VendorPolicy>;
448
+ /** @deprecated use `VendorPolicy$Outbound` instead. */
449
+ type Outbound = VendorPolicy$Outbound;
450
+ }
451
+ export declare function vendorPolicyToJSON(vendorPolicy: VendorPolicy): string;
452
+ export declare function vendorPolicyFromJSON(jsonString: string): SafeParseResult<VendorPolicy, SDKValidationError>;
453
+ /** @internal */
454
+ export declare const VisitorPolicy$inboundSchema: z.ZodType<VisitorPolicy, z.ZodTypeDef, unknown>;
455
+ /** @internal */
456
+ export type VisitorPolicy$Outbound = {
457
+ auto_checkout_visitors: boolean;
458
+ require_visit_request_zone: boolean;
459
+ show_general_visitor: boolean;
460
+ store_visitor_dl_number: boolean;
461
+ visit_request_demographics?: string | undefined;
462
+ visitor_subtypes?: Array<string> | undefined;
463
+ };
464
+ /** @internal */
465
+ export declare const VisitorPolicy$outboundSchema: z.ZodType<VisitorPolicy$Outbound, z.ZodTypeDef, VisitorPolicy>;
466
+ /**
467
+ * @internal
468
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
469
+ */
470
+ export declare namespace VisitorPolicy$ {
471
+ /** @deprecated use `VisitorPolicy$inboundSchema` instead. */
472
+ const inboundSchema: z.ZodType<VisitorPolicy, z.ZodTypeDef, unknown>;
473
+ /** @deprecated use `VisitorPolicy$outboundSchema` instead. */
474
+ const outboundSchema: z.ZodType<VisitorPolicy$Outbound, z.ZodTypeDef, VisitorPolicy>;
475
+ /** @deprecated use `VisitorPolicy$Outbound` instead. */
476
+ type Outbound = VisitorPolicy$Outbound;
477
+ }
478
+ export declare function visitorPolicyToJSON(visitorPolicy: VisitorPolicy): string;
479
+ export declare function visitorPolicyFromJSON(jsonString: string): SafeParseResult<VisitorPolicy, SDKValidationError>;
480
+ /** @internal */
481
+ export declare const WorkflowPolicy$inboundSchema: z.ZodType<WorkflowPolicy, z.ZodTypeDef, unknown>;
482
+ /** @internal */
483
+ export type WorkflowPolicy$Outbound = {
484
+ auto_approve_dept_change_requests: boolean;
485
+ auto_approve_role_change_requests: boolean;
486
+ auto_approve_zone_change_requests: boolean;
487
+ };
488
+ /** @internal */
489
+ export declare const WorkflowPolicy$outboundSchema: z.ZodType<WorkflowPolicy$Outbound, z.ZodTypeDef, WorkflowPolicy>;
490
+ /**
491
+ * @internal
492
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
493
+ */
494
+ export declare namespace WorkflowPolicy$ {
495
+ /** @deprecated use `WorkflowPolicy$inboundSchema` instead. */
496
+ const inboundSchema: z.ZodType<WorkflowPolicy, z.ZodTypeDef, unknown>;
497
+ /** @deprecated use `WorkflowPolicy$outboundSchema` instead. */
498
+ const outboundSchema: z.ZodType<WorkflowPolicy$Outbound, z.ZodTypeDef, WorkflowPolicy>;
499
+ /** @deprecated use `WorkflowPolicy$Outbound` instead. */
500
+ type Outbound = WorkflowPolicy$Outbound;
501
+ }
502
+ export declare function workflowPolicyToJSON(workflowPolicy: WorkflowPolicy): string;
503
+ export declare function workflowPolicyFromJSON(jsonString: string): SafeParseResult<WorkflowPolicy, SDKValidationError>;
504
+ /** @internal */
505
+ export declare const Facility$inboundSchema: z.ZodType<Facility, z.ZodTypeDef, unknown>;
506
+ /** @internal */
507
+ export type Facility$Outbound = {
508
+ appointment_policy?: AppointmentPolicy$Outbound | null | undefined;
509
+ contacts?: Contacts$Outbound | null | undefined;
510
+ vendor_counts?: VendorCounts$Outbound | null | undefined;
511
+ email_domain?: string | null | undefined;
512
+ facility_type?: string | null | undefined;
513
+ flu_credential?: FluCredential$Outbound | undefined;
514
+ id?: number | undefined;
515
+ image_urls?: ImageSet$Outbound | undefined;
516
+ location?: Location$Outbound | undefined;
517
+ name?: string | undefined;
518
+ scrubs_policy?: ScrubsPolicy$Outbound | null | undefined;
519
+ status?: string | undefined;
520
+ system?: SystemSummary$Outbound | number | undefined;
521
+ uses?: Uses$Outbound | undefined;
522
+ vendor_guest_policy?: VendorGuestPolicy$Outbound | null | undefined;
523
+ vendor_policy?: VendorPolicy$Outbound | null | undefined;
524
+ visible?: boolean | undefined;
525
+ visitor_policy?: VisitorPolicy$Outbound | null | undefined;
526
+ workflow_policy?: WorkflowPolicy$Outbound | null | undefined;
527
+ };
528
+ /** @internal */
529
+ export declare const Facility$outboundSchema: z.ZodType<Facility$Outbound, z.ZodTypeDef, Facility>;
530
+ /**
531
+ * @internal
532
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
533
+ */
534
+ export declare namespace Facility$ {
535
+ /** @deprecated use `Facility$inboundSchema` instead. */
536
+ const inboundSchema: z.ZodType<Facility, z.ZodTypeDef, unknown>;
537
+ /** @deprecated use `Facility$outboundSchema` instead. */
538
+ const outboundSchema: z.ZodType<Facility$Outbound, z.ZodTypeDef, Facility>;
539
+ /** @deprecated use `Facility$Outbound` instead. */
540
+ type Outbound = Facility$Outbound;
541
+ }
542
+ export declare function facilityToJSON(facility: Facility): string;
543
+ export declare function facilityFromJSON(jsonString: string): SafeParseResult<Facility, SDKValidationError>;
544
+ //# sourceMappingURL=facility.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"facility.d.ts","sourceRoot":"","sources":["../../src/models/components/facility.ts"],"names":[],"mappings":"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"}