@silkline/paramify 0.0.2

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 (588) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/LICENSE +201 -0
  3. package/README.md +402 -0
  4. package/api-promise.d.mts +2 -0
  5. package/api-promise.d.mts.map +1 -0
  6. package/api-promise.d.ts +2 -0
  7. package/api-promise.d.ts.map +1 -0
  8. package/api-promise.js +6 -0
  9. package/api-promise.js.map +1 -0
  10. package/api-promise.mjs +2 -0
  11. package/api-promise.mjs.map +1 -0
  12. package/client.d.mts +199 -0
  13. package/client.d.mts.map +1 -0
  14. package/client.d.ts +199 -0
  15. package/client.d.ts.map +1 -0
  16. package/client.js +494 -0
  17. package/client.js.map +1 -0
  18. package/client.mjs +490 -0
  19. package/client.mjs.map +1 -0
  20. package/core/api-promise.d.mts +46 -0
  21. package/core/api-promise.d.mts.map +1 -0
  22. package/core/api-promise.d.ts +46 -0
  23. package/core/api-promise.d.ts.map +1 -0
  24. package/core/api-promise.js +74 -0
  25. package/core/api-promise.js.map +1 -0
  26. package/core/api-promise.mjs +70 -0
  27. package/core/api-promise.mjs.map +1 -0
  28. package/core/error.d.mts +46 -0
  29. package/core/error.d.mts.map +1 -0
  30. package/core/error.d.ts +46 -0
  31. package/core/error.d.ts.map +1 -0
  32. package/core/error.js +113 -0
  33. package/core/error.js.map +1 -0
  34. package/core/error.mjs +97 -0
  35. package/core/error.mjs.map +1 -0
  36. package/core/resource.d.mts +6 -0
  37. package/core/resource.d.mts.map +1 -0
  38. package/core/resource.d.ts +6 -0
  39. package/core/resource.d.ts.map +1 -0
  40. package/core/resource.js +11 -0
  41. package/core/resource.js.map +1 -0
  42. package/core/resource.mjs +7 -0
  43. package/core/resource.mjs.map +1 -0
  44. package/core/uploads.d.mts +3 -0
  45. package/core/uploads.d.mts.map +1 -0
  46. package/core/uploads.d.ts +3 -0
  47. package/core/uploads.d.ts.map +1 -0
  48. package/core/uploads.js +6 -0
  49. package/core/uploads.js.map +1 -0
  50. package/core/uploads.mjs +2 -0
  51. package/core/uploads.mjs.map +1 -0
  52. package/error.d.mts +2 -0
  53. package/error.d.mts.map +1 -0
  54. package/error.d.ts +2 -0
  55. package/error.d.ts.map +1 -0
  56. package/error.js +6 -0
  57. package/error.js.map +1 -0
  58. package/error.mjs +2 -0
  59. package/error.mjs.map +1 -0
  60. package/index.d.mts +6 -0
  61. package/index.d.mts.map +1 -0
  62. package/index.d.ts +6 -0
  63. package/index.d.ts.map +1 -0
  64. package/index.js +30 -0
  65. package/index.js.map +1 -0
  66. package/index.mjs +7 -0
  67. package/index.mjs.map +1 -0
  68. package/internal/builtin-types.d.mts +73 -0
  69. package/internal/builtin-types.d.mts.map +1 -0
  70. package/internal/builtin-types.d.ts +73 -0
  71. package/internal/builtin-types.d.ts.map +1 -0
  72. package/internal/builtin-types.js +4 -0
  73. package/internal/builtin-types.js.map +1 -0
  74. package/internal/builtin-types.mjs +3 -0
  75. package/internal/builtin-types.mjs.map +1 -0
  76. package/internal/detect-platform.d.mts +15 -0
  77. package/internal/detect-platform.d.mts.map +1 -0
  78. package/internal/detect-platform.d.ts +15 -0
  79. package/internal/detect-platform.d.ts.map +1 -0
  80. package/internal/detect-platform.js +162 -0
  81. package/internal/detect-platform.js.map +1 -0
  82. package/internal/detect-platform.mjs +157 -0
  83. package/internal/detect-platform.mjs.map +1 -0
  84. package/internal/errors.d.mts +3 -0
  85. package/internal/errors.d.mts.map +1 -0
  86. package/internal/errors.d.ts +3 -0
  87. package/internal/errors.d.ts.map +1 -0
  88. package/internal/errors.js +41 -0
  89. package/internal/errors.js.map +1 -0
  90. package/internal/errors.mjs +36 -0
  91. package/internal/errors.mjs.map +1 -0
  92. package/internal/headers.d.mts +20 -0
  93. package/internal/headers.d.mts.map +1 -0
  94. package/internal/headers.d.ts +20 -0
  95. package/internal/headers.d.ts.map +1 -0
  96. package/internal/headers.js +79 -0
  97. package/internal/headers.js.map +1 -0
  98. package/internal/headers.mjs +74 -0
  99. package/internal/headers.mjs.map +1 -0
  100. package/internal/parse.d.mts +12 -0
  101. package/internal/parse.d.mts.map +1 -0
  102. package/internal/parse.d.ts +12 -0
  103. package/internal/parse.d.ts.map +1 -0
  104. package/internal/parse.js +40 -0
  105. package/internal/parse.js.map +1 -0
  106. package/internal/parse.mjs +37 -0
  107. package/internal/parse.mjs.map +1 -0
  108. package/internal/qs/formats.d.mts +7 -0
  109. package/internal/qs/formats.d.mts.map +1 -0
  110. package/internal/qs/formats.d.ts +7 -0
  111. package/internal/qs/formats.d.ts.map +1 -0
  112. package/internal/qs/formats.js +13 -0
  113. package/internal/qs/formats.js.map +1 -0
  114. package/internal/qs/formats.mjs +9 -0
  115. package/internal/qs/formats.mjs.map +1 -0
  116. package/internal/qs/index.d.mts +10 -0
  117. package/internal/qs/index.d.mts.map +1 -0
  118. package/internal/qs/index.d.ts +10 -0
  119. package/internal/qs/index.d.ts.map +1 -0
  120. package/internal/qs/index.js +14 -0
  121. package/internal/qs/index.js.map +1 -0
  122. package/internal/qs/index.mjs +10 -0
  123. package/internal/qs/index.mjs.map +1 -0
  124. package/internal/qs/stringify.d.mts +3 -0
  125. package/internal/qs/stringify.d.mts.map +1 -0
  126. package/internal/qs/stringify.d.ts +3 -0
  127. package/internal/qs/stringify.d.ts.map +1 -0
  128. package/internal/qs/stringify.js +277 -0
  129. package/internal/qs/stringify.js.map +1 -0
  130. package/internal/qs/stringify.mjs +274 -0
  131. package/internal/qs/stringify.mjs.map +1 -0
  132. package/internal/qs/types.d.mts +57 -0
  133. package/internal/qs/types.d.mts.map +1 -0
  134. package/internal/qs/types.d.ts +57 -0
  135. package/internal/qs/types.d.ts.map +1 -0
  136. package/internal/qs/types.js +3 -0
  137. package/internal/qs/types.js.map +1 -0
  138. package/internal/qs/types.mjs +2 -0
  139. package/internal/qs/types.mjs.map +1 -0
  140. package/internal/qs/utils.d.mts +15 -0
  141. package/internal/qs/utils.d.mts.map +1 -0
  142. package/internal/qs/utils.d.ts +15 -0
  143. package/internal/qs/utils.d.ts.map +1 -0
  144. package/internal/qs/utils.js +230 -0
  145. package/internal/qs/utils.js.map +1 -0
  146. package/internal/qs/utils.mjs +217 -0
  147. package/internal/qs/utils.mjs.map +1 -0
  148. package/internal/request-options.d.mts +75 -0
  149. package/internal/request-options.d.mts.map +1 -0
  150. package/internal/request-options.d.ts +75 -0
  151. package/internal/request-options.d.ts.map +1 -0
  152. package/internal/request-options.js +14 -0
  153. package/internal/request-options.js.map +1 -0
  154. package/internal/request-options.mjs +10 -0
  155. package/internal/request-options.mjs.map +1 -0
  156. package/internal/shim-types.d.mts +17 -0
  157. package/internal/shim-types.d.mts.map +1 -0
  158. package/internal/shim-types.d.ts +17 -0
  159. package/internal/shim-types.d.ts.map +1 -0
  160. package/internal/shim-types.js +4 -0
  161. package/internal/shim-types.js.map +1 -0
  162. package/internal/shim-types.mjs +3 -0
  163. package/internal/shim-types.mjs.map +1 -0
  164. package/internal/shims.d.mts +20 -0
  165. package/internal/shims.d.mts.map +1 -0
  166. package/internal/shims.d.ts +20 -0
  167. package/internal/shims.d.ts.map +1 -0
  168. package/internal/shims.js +92 -0
  169. package/internal/shims.js.map +1 -0
  170. package/internal/shims.mjs +85 -0
  171. package/internal/shims.mjs.map +1 -0
  172. package/internal/to-file.d.mts +45 -0
  173. package/internal/to-file.d.mts.map +1 -0
  174. package/internal/to-file.d.ts +45 -0
  175. package/internal/to-file.d.ts.map +1 -0
  176. package/internal/to-file.js +91 -0
  177. package/internal/to-file.js.map +1 -0
  178. package/internal/to-file.mjs +88 -0
  179. package/internal/to-file.mjs.map +1 -0
  180. package/internal/tslib.js +81 -0
  181. package/internal/tslib.mjs +17 -0
  182. package/internal/types.d.mts +69 -0
  183. package/internal/types.d.mts.map +1 -0
  184. package/internal/types.d.ts +69 -0
  185. package/internal/types.d.ts.map +1 -0
  186. package/internal/types.js +4 -0
  187. package/internal/types.js.map +1 -0
  188. package/internal/types.mjs +3 -0
  189. package/internal/types.mjs.map +1 -0
  190. package/internal/uploads.d.mts +42 -0
  191. package/internal/uploads.d.mts.map +1 -0
  192. package/internal/uploads.d.ts +42 -0
  193. package/internal/uploads.d.ts.map +1 -0
  194. package/internal/uploads.js +141 -0
  195. package/internal/uploads.js.map +1 -0
  196. package/internal/uploads.mjs +131 -0
  197. package/internal/uploads.mjs.map +1 -0
  198. package/internal/utils/base64.d.mts +3 -0
  199. package/internal/utils/base64.d.mts.map +1 -0
  200. package/internal/utils/base64.d.ts +3 -0
  201. package/internal/utils/base64.d.ts.map +1 -0
  202. package/internal/utils/base64.js +38 -0
  203. package/internal/utils/base64.js.map +1 -0
  204. package/internal/utils/base64.mjs +33 -0
  205. package/internal/utils/base64.mjs.map +1 -0
  206. package/internal/utils/bytes.d.mts +4 -0
  207. package/internal/utils/bytes.d.mts.map +1 -0
  208. package/internal/utils/bytes.d.ts +4 -0
  209. package/internal/utils/bytes.d.ts.map +1 -0
  210. package/internal/utils/bytes.js +31 -0
  211. package/internal/utils/bytes.js.map +1 -0
  212. package/internal/utils/bytes.mjs +26 -0
  213. package/internal/utils/bytes.mjs.map +1 -0
  214. package/internal/utils/env.d.mts +9 -0
  215. package/internal/utils/env.d.mts.map +1 -0
  216. package/internal/utils/env.d.ts +9 -0
  217. package/internal/utils/env.d.ts.map +1 -0
  218. package/internal/utils/env.js +22 -0
  219. package/internal/utils/env.js.map +1 -0
  220. package/internal/utils/env.mjs +18 -0
  221. package/internal/utils/env.mjs.map +1 -0
  222. package/internal/utils/log.d.mts +37 -0
  223. package/internal/utils/log.d.mts.map +1 -0
  224. package/internal/utils/log.d.ts +37 -0
  225. package/internal/utils/log.d.ts.map +1 -0
  226. package/internal/utils/log.js +87 -0
  227. package/internal/utils/log.js.map +1 -0
  228. package/internal/utils/log.mjs +81 -0
  229. package/internal/utils/log.mjs.map +1 -0
  230. package/internal/utils/path.d.mts +15 -0
  231. package/internal/utils/path.d.mts.map +1 -0
  232. package/internal/utils/path.d.ts +15 -0
  233. package/internal/utils/path.d.ts.map +1 -0
  234. package/internal/utils/path.js +79 -0
  235. package/internal/utils/path.js.map +1 -0
  236. package/internal/utils/path.mjs +74 -0
  237. package/internal/utils/path.mjs.map +1 -0
  238. package/internal/utils/query.d.mts +2 -0
  239. package/internal/utils/query.d.mts.map +1 -0
  240. package/internal/utils/query.d.ts +2 -0
  241. package/internal/utils/query.d.ts.map +1 -0
  242. package/internal/utils/query.js +10 -0
  243. package/internal/utils/query.js.map +1 -0
  244. package/internal/utils/query.mjs +6 -0
  245. package/internal/utils/query.mjs.map +1 -0
  246. package/internal/utils/sleep.d.mts +2 -0
  247. package/internal/utils/sleep.d.mts.map +1 -0
  248. package/internal/utils/sleep.d.ts +2 -0
  249. package/internal/utils/sleep.d.ts.map +1 -0
  250. package/internal/utils/sleep.js +7 -0
  251. package/internal/utils/sleep.js.map +1 -0
  252. package/internal/utils/sleep.mjs +3 -0
  253. package/internal/utils/sleep.mjs.map +1 -0
  254. package/internal/utils/uuid.d.mts +5 -0
  255. package/internal/utils/uuid.d.mts.map +1 -0
  256. package/internal/utils/uuid.d.ts +5 -0
  257. package/internal/utils/uuid.d.ts.map +1 -0
  258. package/internal/utils/uuid.js +19 -0
  259. package/internal/utils/uuid.js.map +1 -0
  260. package/internal/utils/uuid.mjs +15 -0
  261. package/internal/utils/uuid.mjs.map +1 -0
  262. package/internal/utils/values.d.mts +18 -0
  263. package/internal/utils/values.d.mts.map +1 -0
  264. package/internal/utils/values.d.ts +18 -0
  265. package/internal/utils/values.d.ts.map +1 -0
  266. package/internal/utils/values.js +112 -0
  267. package/internal/utils/values.js.map +1 -0
  268. package/internal/utils/values.mjs +94 -0
  269. package/internal/utils/values.mjs.map +1 -0
  270. package/internal/utils.d.mts +8 -0
  271. package/internal/utils.d.mts.map +1 -0
  272. package/internal/utils.d.ts +8 -0
  273. package/internal/utils.d.ts.map +1 -0
  274. package/internal/utils.js +12 -0
  275. package/internal/utils.js.map +1 -0
  276. package/internal/utils.mjs +9 -0
  277. package/internal/utils.mjs.map +1 -0
  278. package/package.json +149 -0
  279. package/resource.d.mts +2 -0
  280. package/resource.d.mts.map +1 -0
  281. package/resource.d.ts +2 -0
  282. package/resource.d.ts.map +1 -0
  283. package/resource.js +6 -0
  284. package/resource.js.map +1 -0
  285. package/resource.mjs +2 -0
  286. package/resource.mjs.map +1 -0
  287. package/resources/assessments/assessments.d.mts +269 -0
  288. package/resources/assessments/assessments.d.mts.map +1 -0
  289. package/resources/assessments/assessments.d.ts +269 -0
  290. package/resources/assessments/assessments.d.ts.map +1 -0
  291. package/resources/assessments/assessments.js +100 -0
  292. package/resources/assessments/assessments.js.map +1 -0
  293. package/resources/assessments/assessments.mjs +95 -0
  294. package/resources/assessments/assessments.mjs.map +1 -0
  295. package/resources/assessments/cycles.d.mts +209 -0
  296. package/resources/assessments/cycles.d.mts.map +1 -0
  297. package/resources/assessments/cycles.d.ts +209 -0
  298. package/resources/assessments/cycles.d.ts.map +1 -0
  299. package/resources/assessments/cycles.js +76 -0
  300. package/resources/assessments/cycles.js.map +1 -0
  301. package/resources/assessments/cycles.mjs +72 -0
  302. package/resources/assessments/cycles.mjs.map +1 -0
  303. package/resources/assessments/index.d.mts +3 -0
  304. package/resources/assessments/index.d.mts.map +1 -0
  305. package/resources/assessments/index.d.ts +3 -0
  306. package/resources/assessments/index.d.ts.map +1 -0
  307. package/resources/assessments/index.js +9 -0
  308. package/resources/assessments/index.js.map +1 -0
  309. package/resources/assessments/index.mjs +4 -0
  310. package/resources/assessments/index.mjs.map +1 -0
  311. package/resources/assessments.d.mts +2 -0
  312. package/resources/assessments.d.mts.map +1 -0
  313. package/resources/assessments.d.ts +2 -0
  314. package/resources/assessments.d.ts.map +1 -0
  315. package/resources/assessments.js +6 -0
  316. package/resources/assessments.js.map +1 -0
  317. package/resources/assessments.mjs +3 -0
  318. package/resources/assessments.mjs.map +1 -0
  319. package/resources/audit-assessments/audit-assessments.d.mts +63 -0
  320. package/resources/audit-assessments/audit-assessments.d.mts.map +1 -0
  321. package/resources/audit-assessments/audit-assessments.d.ts +63 -0
  322. package/resources/audit-assessments/audit-assessments.d.ts.map +1 -0
  323. package/resources/audit-assessments/audit-assessments.js +31 -0
  324. package/resources/audit-assessments/audit-assessments.js.map +1 -0
  325. package/resources/audit-assessments/audit-assessments.mjs +26 -0
  326. package/resources/audit-assessments/audit-assessments.mjs.map +1 -0
  327. package/resources/audit-assessments/control-implementations.d.mts +38 -0
  328. package/resources/audit-assessments/control-implementations.d.mts.map +1 -0
  329. package/resources/audit-assessments/control-implementations.d.ts +38 -0
  330. package/resources/audit-assessments/control-implementations.d.ts.map +1 -0
  331. package/resources/audit-assessments/control-implementations.js +18 -0
  332. package/resources/audit-assessments/control-implementations.js.map +1 -0
  333. package/resources/audit-assessments/control-implementations.mjs +14 -0
  334. package/resources/audit-assessments/control-implementations.mjs.map +1 -0
  335. package/resources/audit-assessments/index.d.mts +3 -0
  336. package/resources/audit-assessments/index.d.mts.map +1 -0
  337. package/resources/audit-assessments/index.d.ts +3 -0
  338. package/resources/audit-assessments/index.d.ts.map +1 -0
  339. package/resources/audit-assessments/index.js +9 -0
  340. package/resources/audit-assessments/index.js.map +1 -0
  341. package/resources/audit-assessments/index.mjs +4 -0
  342. package/resources/audit-assessments/index.mjs.map +1 -0
  343. package/resources/audit-assessments.d.mts +2 -0
  344. package/resources/audit-assessments.d.mts.map +1 -0
  345. package/resources/audit-assessments.d.ts +2 -0
  346. package/resources/audit-assessments.d.ts.map +1 -0
  347. package/resources/audit-assessments.js +6 -0
  348. package/resources/audit-assessments.js.map +1 -0
  349. package/resources/audit-assessments.mjs +3 -0
  350. package/resources/audit-assessments.mjs.map +1 -0
  351. package/resources/elements.d.mts +67 -0
  352. package/resources/elements.d.mts.map +1 -0
  353. package/resources/elements.d.ts +67 -0
  354. package/resources/elements.d.ts.map +1 -0
  355. package/resources/elements.js +23 -0
  356. package/resources/elements.js.map +1 -0
  357. package/resources/elements.mjs +19 -0
  358. package/resources/elements.mjs.map +1 -0
  359. package/resources/evidence/artifacts.d.mts +531 -0
  360. package/resources/evidence/artifacts.d.mts.map +1 -0
  361. package/resources/evidence/artifacts.d.ts +531 -0
  362. package/resources/evidence/artifacts.d.ts.map +1 -0
  363. package/resources/evidence/artifacts.js +145 -0
  364. package/resources/evidence/artifacts.js.map +1 -0
  365. package/resources/evidence/artifacts.mjs +141 -0
  366. package/resources/evidence/artifacts.mjs.map +1 -0
  367. package/resources/evidence/evidence.d.mts +397 -0
  368. package/resources/evidence/evidence.d.mts.map +1 -0
  369. package/resources/evidence/evidence.d.ts +397 -0
  370. package/resources/evidence/evidence.d.ts.map +1 -0
  371. package/resources/evidence/evidence.js +118 -0
  372. package/resources/evidence/evidence.js.map +1 -0
  373. package/resources/evidence/evidence.mjs +113 -0
  374. package/resources/evidence/evidence.mjs.map +1 -0
  375. package/resources/evidence/index.d.mts +3 -0
  376. package/resources/evidence/index.d.mts.map +1 -0
  377. package/resources/evidence/index.d.ts +3 -0
  378. package/resources/evidence/index.d.ts.map +1 -0
  379. package/resources/evidence/index.js +9 -0
  380. package/resources/evidence/index.js.map +1 -0
  381. package/resources/evidence/index.mjs +4 -0
  382. package/resources/evidence/index.mjs.map +1 -0
  383. package/resources/evidence.d.mts +2 -0
  384. package/resources/evidence.d.mts.map +1 -0
  385. package/resources/evidence.d.ts +2 -0
  386. package/resources/evidence.d.ts.map +1 -0
  387. package/resources/evidence.js +6 -0
  388. package/resources/evidence.js.map +1 -0
  389. package/resources/evidence.mjs +3 -0
  390. package/resources/evidence.mjs.map +1 -0
  391. package/resources/index.d.mts +9 -0
  392. package/resources/index.d.mts.map +1 -0
  393. package/resources/index.d.ts +9 -0
  394. package/resources/index.d.ts.map +1 -0
  395. package/resources/index.js +21 -0
  396. package/resources/index.js.map +1 -0
  397. package/resources/index.mjs +10 -0
  398. package/resources/index.mjs.map +1 -0
  399. package/resources/issues/deviations.d.mts +267 -0
  400. package/resources/issues/deviations.d.mts.map +1 -0
  401. package/resources/issues/deviations.d.ts +267 -0
  402. package/resources/issues/deviations.d.ts.map +1 -0
  403. package/resources/issues/deviations.js +105 -0
  404. package/resources/issues/deviations.js.map +1 -0
  405. package/resources/issues/deviations.mjs +101 -0
  406. package/resources/issues/deviations.mjs.map +1 -0
  407. package/resources/issues/index.d.mts +5 -0
  408. package/resources/issues/index.d.mts.map +1 -0
  409. package/resources/issues/index.d.ts +5 -0
  410. package/resources/issues/index.d.ts.map +1 -0
  411. package/resources/issues/index.js +13 -0
  412. package/resources/issues/index.js.map +1 -0
  413. package/resources/issues/index.mjs +6 -0
  414. package/resources/issues/index.mjs.map +1 -0
  415. package/resources/issues/issues.d.mts +878 -0
  416. package/resources/issues/issues.d.mts.map +1 -0
  417. package/resources/issues/issues.d.ts +878 -0
  418. package/resources/issues/issues.d.ts.map +1 -0
  419. package/resources/issues/issues.js +156 -0
  420. package/resources/issues/issues.js.map +1 -0
  421. package/resources/issues/issues.mjs +151 -0
  422. package/resources/issues/issues.mjs.map +1 -0
  423. package/resources/issues/milestones.d.mts +260 -0
  424. package/resources/issues/milestones.d.mts.map +1 -0
  425. package/resources/issues/milestones.d.ts +260 -0
  426. package/resources/issues/milestones.d.ts.map +1 -0
  427. package/resources/issues/milestones.js +101 -0
  428. package/resources/issues/milestones.js.map +1 -0
  429. package/resources/issues/milestones.mjs +97 -0
  430. package/resources/issues/milestones.mjs.map +1 -0
  431. package/resources/issues/recommendations.d.mts +210 -0
  432. package/resources/issues/recommendations.d.mts.map +1 -0
  433. package/resources/issues/recommendations.d.ts +210 -0
  434. package/resources/issues/recommendations.d.ts.map +1 -0
  435. package/resources/issues/recommendations.js +106 -0
  436. package/resources/issues/recommendations.js.map +1 -0
  437. package/resources/issues/recommendations.mjs +102 -0
  438. package/resources/issues/recommendations.mjs.map +1 -0
  439. package/resources/issues.d.mts +2 -0
  440. package/resources/issues.d.mts.map +1 -0
  441. package/resources/issues.d.ts +2 -0
  442. package/resources/issues.d.ts.map +1 -0
  443. package/resources/issues.js +6 -0
  444. package/resources/issues.js.map +1 -0
  445. package/resources/issues.mjs +3 -0
  446. package/resources/issues.mjs.map +1 -0
  447. package/resources/projects/control-implementations.d.mts +36 -0
  448. package/resources/projects/control-implementations.d.mts.map +1 -0
  449. package/resources/projects/control-implementations.d.ts +36 -0
  450. package/resources/projects/control-implementations.d.ts.map +1 -0
  451. package/resources/projects/control-implementations.js +16 -0
  452. package/resources/projects/control-implementations.js.map +1 -0
  453. package/resources/projects/control-implementations.mjs +12 -0
  454. package/resources/projects/control-implementations.mjs.map +1 -0
  455. package/resources/projects/index.d.mts +3 -0
  456. package/resources/projects/index.d.mts.map +1 -0
  457. package/resources/projects/index.d.ts +3 -0
  458. package/resources/projects/index.d.ts.map +1 -0
  459. package/resources/projects/index.js +9 -0
  460. package/resources/projects/index.js.map +1 -0
  461. package/resources/projects/index.mjs +4 -0
  462. package/resources/projects/index.mjs.map +1 -0
  463. package/resources/projects/projects.d.mts +59 -0
  464. package/resources/projects/projects.d.mts.map +1 -0
  465. package/resources/projects/projects.d.ts +59 -0
  466. package/resources/projects/projects.d.ts.map +1 -0
  467. package/resources/projects/projects.js +36 -0
  468. package/resources/projects/projects.js.map +1 -0
  469. package/resources/projects/projects.mjs +31 -0
  470. package/resources/projects/projects.mjs.map +1 -0
  471. package/resources/projects.d.mts +2 -0
  472. package/resources/projects.d.mts.map +1 -0
  473. package/resources/projects.d.ts +2 -0
  474. package/resources/projects.d.ts.map +1 -0
  475. package/resources/projects.js +6 -0
  476. package/resources/projects.js.map +1 -0
  477. package/resources/projects.mjs +3 -0
  478. package/resources/projects.mjs.map +1 -0
  479. package/resources/solution-capabilities.d.mts +61 -0
  480. package/resources/solution-capabilities.d.mts.map +1 -0
  481. package/resources/solution-capabilities.d.ts +61 -0
  482. package/resources/solution-capabilities.d.ts.map +1 -0
  483. package/resources/solution-capabilities.js +23 -0
  484. package/resources/solution-capabilities.js.map +1 -0
  485. package/resources/solution-capabilities.mjs +19 -0
  486. package/resources/solution-capabilities.mjs.map +1 -0
  487. package/resources/validators.d.mts +518 -0
  488. package/resources/validators.d.mts.map +1 -0
  489. package/resources/validators.d.ts +518 -0
  490. package/resources/validators.d.ts.map +1 -0
  491. package/resources/validators.js +66 -0
  492. package/resources/validators.js.map +1 -0
  493. package/resources/validators.mjs +62 -0
  494. package/resources/validators.mjs.map +1 -0
  495. package/resources.d.mts +2 -0
  496. package/resources.d.mts.map +1 -0
  497. package/resources.d.ts +2 -0
  498. package/resources.d.ts.map +1 -0
  499. package/resources.js +5 -0
  500. package/resources.js.map +1 -0
  501. package/resources.mjs +2 -0
  502. package/resources.mjs.map +1 -0
  503. package/src/api-promise.ts +2 -0
  504. package/src/client.ts +868 -0
  505. package/src/core/README.md +3 -0
  506. package/src/core/api-promise.ts +92 -0
  507. package/src/core/error.ts +130 -0
  508. package/src/core/resource.ts +11 -0
  509. package/src/core/uploads.ts +2 -0
  510. package/src/error.ts +2 -0
  511. package/src/index.ts +22 -0
  512. package/src/internal/README.md +3 -0
  513. package/src/internal/builtin-types.ts +93 -0
  514. package/src/internal/detect-platform.ts +196 -0
  515. package/src/internal/errors.ts +33 -0
  516. package/src/internal/headers.ts +97 -0
  517. package/src/internal/parse.ts +56 -0
  518. package/src/internal/qs/LICENSE.md +13 -0
  519. package/src/internal/qs/README.md +3 -0
  520. package/src/internal/qs/formats.ts +10 -0
  521. package/src/internal/qs/index.ts +13 -0
  522. package/src/internal/qs/stringify.ts +385 -0
  523. package/src/internal/qs/types.ts +71 -0
  524. package/src/internal/qs/utils.ts +265 -0
  525. package/src/internal/request-options.ts +91 -0
  526. package/src/internal/shim-types.ts +26 -0
  527. package/src/internal/shims.ts +107 -0
  528. package/src/internal/to-file.ts +154 -0
  529. package/src/internal/types.ts +93 -0
  530. package/src/internal/uploads.ts +187 -0
  531. package/src/internal/utils/base64.ts +40 -0
  532. package/src/internal/utils/bytes.ts +32 -0
  533. package/src/internal/utils/env.ts +18 -0
  534. package/src/internal/utils/log.ts +128 -0
  535. package/src/internal/utils/path.ts +88 -0
  536. package/src/internal/utils/query.ts +7 -0
  537. package/src/internal/utils/sleep.ts +3 -0
  538. package/src/internal/utils/uuid.ts +17 -0
  539. package/src/internal/utils/values.ts +105 -0
  540. package/src/internal/utils.ts +9 -0
  541. package/src/lib/.keep +4 -0
  542. package/src/resource.ts +2 -0
  543. package/src/resources/assessments/assessments.ts +350 -0
  544. package/src/resources/assessments/cycles.ts +267 -0
  545. package/src/resources/assessments/index.ts +20 -0
  546. package/src/resources/assessments.ts +3 -0
  547. package/src/resources/audit-assessments/audit-assessments.ts +92 -0
  548. package/src/resources/audit-assessments/control-implementations.ts +49 -0
  549. package/src/resources/audit-assessments/index.ts +8 -0
  550. package/src/resources/audit-assessments.ts +3 -0
  551. package/src/resources/elements.ts +152 -0
  552. package/src/resources/evidence/artifacts.ts +682 -0
  553. package/src/resources/evidence/evidence.ts +609 -0
  554. package/src/resources/evidence/index.ts +31 -0
  555. package/src/resources/evidence.ts +3 -0
  556. package/src/resources/index.ts +55 -0
  557. package/src/resources/issues/deviations.ts +360 -0
  558. package/src/resources/issues/index.ts +51 -0
  559. package/src/resources/issues/issues.ts +1345 -0
  560. package/src/resources/issues/milestones.ts +350 -0
  561. package/src/resources/issues/recommendations.ts +417 -0
  562. package/src/resources/issues.ts +3 -0
  563. package/src/resources/projects/control-implementations.ts +47 -0
  564. package/src/resources/projects/index.ts +4 -0
  565. package/src/resources/projects/projects.ts +128 -0
  566. package/src/resources/projects.ts +3 -0
  567. package/src/resources/solution-capabilities.ts +85 -0
  568. package/src/resources/validators.ts +691 -0
  569. package/src/resources.ts +1 -0
  570. package/src/tsconfig.json +11 -0
  571. package/src/uploads.ts +2 -0
  572. package/src/version.ts +1 -0
  573. package/uploads.d.mts +2 -0
  574. package/uploads.d.mts.map +1 -0
  575. package/uploads.d.ts +2 -0
  576. package/uploads.d.ts.map +1 -0
  577. package/uploads.js +6 -0
  578. package/uploads.js.map +1 -0
  579. package/uploads.mjs +2 -0
  580. package/uploads.mjs.map +1 -0
  581. package/version.d.mts +2 -0
  582. package/version.d.mts.map +1 -0
  583. package/version.d.ts +2 -0
  584. package/version.d.ts.map +1 -0
  585. package/version.js +5 -0
  586. package/version.js.map +1 -0
  587. package/version.mjs +2 -0
  588. package/version.mjs.map +1 -0
@@ -0,0 +1,1345 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ import { APIResource } from '../../core/resource';
4
+ import * as DeviationsAPI from './deviations';
5
+ import {
6
+ Deviation as DeviationsAPIDeviation,
7
+ DeviationCreateParams,
8
+ DeviationDeleteParams,
9
+ DeviationListParams,
10
+ DeviationListResponse,
11
+ DeviationMetadata as DeviationsAPIDeviationMetadata,
12
+ DeviationObservationTypes,
13
+ DeviationRetrieveParams,
14
+ DeviationUpdateParams,
15
+ DeviationUpdateResponse,
16
+ Deviations,
17
+ } from './deviations';
18
+ import * as MilestonesAPI from './milestones';
19
+ import {
20
+ Milestone as MilestonesAPIMilestone,
21
+ MilestoneCreateParams,
22
+ MilestoneCreateResponse,
23
+ MilestoneDeleteParams,
24
+ MilestoneListParams,
25
+ MilestoneListResponse,
26
+ MilestoneRetrieveParams,
27
+ MilestoneRetrieveResponse,
28
+ MilestoneUpdateParams,
29
+ MilestoneUpdateResponse,
30
+ Milestones,
31
+ } from './milestones';
32
+ import * as RecommendationsAPI from './recommendations';
33
+ import {
34
+ Recommendation as RecommendationsAPIRecommendation,
35
+ RecommendationCreateParams,
36
+ RecommendationDeleteParams,
37
+ RecommendationListParams,
38
+ RecommendationListResponse,
39
+ RecommendationRetrieveParams,
40
+ RecommendationUpdateParams,
41
+ RecommendationUpdateResponse,
42
+ Recommendations,
43
+ } from './recommendations';
44
+ import { APIPromise } from '../../core/api-promise';
45
+ import { buildHeaders } from '../../internal/headers';
46
+ import { RequestOptions } from '../../internal/request-options';
47
+ import { path } from '../../internal/utils/path';
48
+
49
+ export class Issues extends APIResource {
50
+ recommendations: RecommendationsAPI.Recommendations = new RecommendationsAPI.Recommendations(this._client);
51
+ deviations: DeviationsAPI.Deviations = new DeviationsAPI.Deviations(this._client);
52
+ milestones: MilestonesAPI.Milestones = new MilestonesAPI.Milestones(this._client);
53
+
54
+ /**
55
+ * Creates a new issue within the project specified by the request body's
56
+ * `projectId`. The `id` value of the issue returned can be used as the `issueId`
57
+ * parameter in other routes or request bodies.
58
+ *
59
+ * @example
60
+ * ```ts
61
+ * const issue = await client.issues.create({
62
+ * originalLevel: 'HIGH',
63
+ * projectId: '123e4567-e89b-12d3-a456-426614174000',
64
+ * statusDate: '2022-01-01T00:00:00.000Z',
65
+ * title: 'Issue Title Example',
66
+ * type: 'CONTROL',
67
+ * });
68
+ * ```
69
+ */
70
+ create(body: IssueCreateParams, options?: RequestOptions): APIPromise<Issue> {
71
+ return this._client.post('/issues', { body, ...options });
72
+ }
73
+
74
+ /**
75
+ * Returns the issue specified by the `issueId` query parameter and accessible to
76
+ * the api key. The `id` value of the issue returned can be used as the `issueId`
77
+ * parameter in other routes or request bodies.
78
+ *
79
+ * @example
80
+ * ```ts
81
+ * const issue = await client.issues.retrieve(
82
+ * '123e4567-e89b-12d3-a456-426614174000',
83
+ * );
84
+ * ```
85
+ */
86
+ retrieve(issueID: string, options?: RequestOptions): APIPromise<Issue> {
87
+ return this._client.get(path`/issues/${issueID}`, options);
88
+ }
89
+
90
+ /**
91
+ * Updates the issue specified by the `issueId`. Upon successful operation, all
92
+ * fields that are not arrays will be overwritten. Fields that accept array values
93
+ * will add the provided values to the existing values.
94
+ *
95
+ * @example
96
+ * ```ts
97
+ * const issue = await client.issues.update(
98
+ * '123e4567-e89b-12d3-a456-426614174000',
99
+ * );
100
+ * ```
101
+ */
102
+ update(
103
+ issueID: string,
104
+ body: IssueUpdateParams,
105
+ options?: RequestOptions,
106
+ ): APIPromise<IssueUpdateResponse> {
107
+ return this._client.patch(path`/issues/${issueID}`, { body, ...options });
108
+ }
109
+
110
+ /**
111
+ * Gets all issues within the project specified by the query parameter `projectId`,
112
+ * and optionally filtered by various parameters.
113
+ *
114
+ * **Basic Filtering:**
115
+ *
116
+ * - **Multiple IDs**: Pass several `id` values to retrieve multiple issues at once
117
+ * - **POAM IDs**: Pass several `poamId` values to retrieve multiple issues
118
+ * (requires `projectId`)
119
+ *
120
+ * **Content Filtering:**
121
+ *
122
+ * - **`deviationType`**: Retrieve issues containing deviations of the specified
123
+ * type
124
+ * - **`title`**: Retrieve issues whose title contains the provided string
125
+ * (case-insensitive)
126
+ * - **`kev`**: Retrieve issues containing CVE IDs present in the Known Exploited
127
+ * Vulnerabilities (KEV) catalog
128
+ * - **`cveId`**: Retrieve issues containing the specified CVE identifier (OR logic
129
+ * for multiple CVE IDs)
130
+ * - **`asset`**: Retrieve issues with at least one of the provided asset names
131
+ * (case-sensitive, exact match)
132
+ * - **`internetReachableVulnerability`**: Filter issues by whether they represent
133
+ * an internet-reachable vulnerability (boolean)
134
+ * - **`likelyExploitableVulnerability`**: Filter issues by whether they represent
135
+ * a likely-exploitable vulnerability (boolean)
136
+ *
137
+ * **Date Range Filtering:**
138
+ *
139
+ * Date ranges are inclusive. You may provide one side of the date range to get an
140
+ * unbounded range. Date format for all filters: YYYY-MM-DD (e.g., "2024-01-01")
141
+ *
142
+ * - **Effective Date**: Use `effectiveDateStart` and `effectiveDateEnd` (filters
143
+ * the `createdAt` field returned by the API)
144
+ * - **Due Date**: Use `dueDateStart` and `dueDateEnd`
145
+ * - **Status Date**: Use `statusDateStart` and `statusDateEnd`
146
+ * - **Evaluation Date**: Use `evaluationDateStart` and `evaluationDateEnd`
147
+ *
148
+ * @example
149
+ * ```ts
150
+ * const issues = await client.issues.list();
151
+ * ```
152
+ */
153
+ list(
154
+ query: IssueListParams | null | undefined = {},
155
+ options?: RequestOptions,
156
+ ): APIPromise<IssueListResponse> {
157
+ return this._client.get('/issues', { query, ...options });
158
+ }
159
+
160
+ /**
161
+ * Deletes the issue specified by the `issueId` query parameter. Warning: This
162
+ * action is irreversible.
163
+ *
164
+ * @example
165
+ * ```ts
166
+ * await client.issues.delete(
167
+ * '123e4567-e89b-12d3-a456-426614174000',
168
+ * );
169
+ * ```
170
+ */
171
+ delete(issueID: string, options?: RequestOptions): APIPromise<void> {
172
+ return this._client.delete(path`/issues/${issueID}`, {
173
+ ...options,
174
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
175
+ });
176
+ }
177
+
178
+ /**
179
+ * Downloads Plan of Action & Milestones (POAM) data in OSCAL XML format. When a
180
+ * `projectId` is provided, returns the POAM for that specific project. When
181
+ * omitted, returns a combined POAM for all projects in the workspace.
182
+ *
183
+ * @example
184
+ * ```ts
185
+ * await client.issues.exportOscal();
186
+ * ```
187
+ */
188
+ exportOscal(
189
+ query: IssueExportOscalParams | null | undefined = {},
190
+ options?: RequestOptions,
191
+ ): APIPromise<void> {
192
+ return this._client.get('/issues/oscal', {
193
+ query,
194
+ ...options,
195
+ headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
196
+ });
197
+ }
198
+ }
199
+
200
+ /**
201
+ * An object containing information about issues contained within a project
202
+ */
203
+ export interface Issue {
204
+ /**
205
+ * A uuid that uniquely identifies an individual issue within Paramify
206
+ */
207
+ id: string;
208
+
209
+ /**
210
+ * The date the issue was created
211
+ */
212
+ createdAt: string;
213
+
214
+ /**
215
+ * The current risk level of the issue
216
+ */
217
+ level: 'NOT_SET' | 'CHILL' | 'LOW' | 'MODERATE' | 'HIGH' | 'CRITICAL';
218
+
219
+ /**
220
+ * The original risk level of the issue
221
+ */
222
+ originalLevel: 'NOT_SET' | 'CHILL' | 'LOW' | 'MODERATE' | 'HIGH' | 'CRITICAL';
223
+
224
+ /**
225
+ * A user defined identifier for this issue
226
+ */
227
+ poamId: string;
228
+
229
+ /**
230
+ * The title of the issue
231
+ */
232
+ title: string;
233
+
234
+ /**
235
+ * The type of observation for the issue
236
+ */
237
+ type: 'CONTROL' | 'VULNERABILITY' | 'DOCUMENTATION' | 'CONFIGURATION' | 'NOT_SET';
238
+
239
+ /**
240
+ * The assets associated with the issue
241
+ */
242
+ assets?: Array<string> | null;
243
+
244
+ /**
245
+ * The CVE IDs associated with the issue
246
+ */
247
+ cveIds?: Array<string> | null;
248
+
249
+ /**
250
+ * Text describing the issue
251
+ */
252
+ description?: string | null;
253
+
254
+ /**
255
+ * The deviations associated with the issue
256
+ */
257
+ deviations?: Array<DeviationsAPI.Deviation> | null;
258
+
259
+ /**
260
+ * The date the issue is due
261
+ */
262
+ dueDate?: string | null;
263
+
264
+ /**
265
+ * The evaluation date for the issue.
266
+ */
267
+ evaluationDate?: string | null;
268
+
269
+ /**
270
+ * Whether the issue represents an internet-reachable vulnerability.
271
+ */
272
+ internetReachableVulnerability?: boolean | null;
273
+
274
+ /**
275
+ * Whether the issue represents a likely-exploitable vulnerability.
276
+ */
277
+ likelyExploitableVulnerability?: boolean | null;
278
+
279
+ /**
280
+ * Links associated with the issue
281
+ */
282
+ links?: Array<Issue.Link> | null;
283
+
284
+ /**
285
+ * The milestones associated with the issue
286
+ */
287
+ milestones?: Array<Issue.Milestone> | null;
288
+
289
+ /**
290
+ * The origins of the issue
291
+ */
292
+ origins?: Array<Origin> | null;
293
+
294
+ /**
295
+ * The plugin id associated with the issue
296
+ */
297
+ pluginId?: string | null;
298
+
299
+ /**
300
+ * The point of contact for the issue
301
+ */
302
+ pointOfContact?: Issue.PointOfContact | null;
303
+
304
+ /**
305
+ * The recommendations associated with the issue
306
+ */
307
+ recommendations?: Array<RecommendationsAPI.Recommendation> | null;
308
+
309
+ /**
310
+ * Additional remarks or notes about the issue
311
+ */
312
+ remarks?: string | null;
313
+
314
+ /**
315
+ * Description of the remediation for the issue
316
+ */
317
+ remediationDescription?: string | null;
318
+
319
+ /**
320
+ * The requirements associated with the issue
321
+ */
322
+ requirements?: Array<string> | null;
323
+
324
+ /**
325
+ * The current status of the issue
326
+ */
327
+ status?: 'OPEN' | 'CLOSED' | null;
328
+
329
+ /**
330
+ * The date the current status was set
331
+ */
332
+ statusDate?: string | null;
333
+ }
334
+
335
+ export namespace Issue {
336
+ export interface Link {
337
+ url: string;
338
+
339
+ title?: string;
340
+ }
341
+
342
+ export interface Milestone {
343
+ /**
344
+ * A uuid that uniquely identifies the milestone
345
+ */
346
+ id: string;
347
+
348
+ /**
349
+ * The description of the milestone
350
+ */
351
+ description: string;
352
+
353
+ /**
354
+ * The end date of the milestone
355
+ */
356
+ dueEnd: string | null;
357
+
358
+ /**
359
+ * The start date of the milestone
360
+ */
361
+ dueStart: string | null;
362
+
363
+ /**
364
+ * The title of the milestone
365
+ */
366
+ title: string;
367
+ }
368
+
369
+ /**
370
+ * The point of contact for the issue
371
+ */
372
+ export interface PointOfContact {
373
+ name: string;
374
+
375
+ email?: string | null;
376
+ }
377
+ }
378
+
379
+ /**
380
+ * Issue observation types
381
+ */
382
+ export type IssueObservationTypes =
383
+ | 'CONTROL'
384
+ | 'VULNERABILITY'
385
+ | 'DOCUMENTATION'
386
+ | 'CONFIGURATION'
387
+ | 'NOT_SET';
388
+
389
+ /**
390
+ * The name and subtype of the element within Paramify that created the issue
391
+ */
392
+ export interface Origin {
393
+ name: string;
394
+
395
+ subtype?:
396
+ | 'COM_AGREEMENT'
397
+ | 'COM_CUSTOMER_MANAGED'
398
+ | 'COM_FEDRAMP_SYSTEM'
399
+ | 'COM_HARDWARE'
400
+ | 'COM_IAAS'
401
+ | 'COM_INTERCONNECTION'
402
+ | 'COM_PAAS'
403
+ | 'COM_PLAN'
404
+ | 'COM_POLICY'
405
+ | 'COM_PROCEDURE'
406
+ | 'COM_PROCESS'
407
+ | 'COM_SAAS'
408
+ | 'COM_SERVICE'
409
+ | 'COM_SOFTWARE'
410
+ | 'COM_SUBNET'
411
+ | 'COM_CRYPTOGRAPHIC_MODULE'
412
+ | 'COM_STACK_PARAMETER'
413
+ | 'PAR_ORGANIZATION'
414
+ | 'PAR_PERSON'
415
+ | 'ROL_NO_LOGICAL_ACCESS'
416
+ | 'ROL_NOT_PRIVILEGED'
417
+ | 'ROL_PRIVILEGED'
418
+ | 'LOC_CAMPUS'
419
+ | 'LOC_DATA_CENTER'
420
+ | 'LOC_DATA_REGION_CLOUD'
421
+ | 'LOC_OTHER'
422
+ | 'LOC_REMOTE'
423
+ | 'DAT_ACCOUNT_DATA'
424
+ | 'DAT_CUSTOMER_DATA'
425
+ | 'DAT_METADATA'
426
+ | 'DAT_SUPPORT_ADMIN';
427
+ }
428
+
429
+ /**
430
+ * The issue as it exists after the operation
431
+ */
432
+ export interface IssueUpdateResponse {
433
+ /**
434
+ * A uuid that uniquely identifies an individual issue within Paramify
435
+ */
436
+ id: string;
437
+
438
+ /**
439
+ * The date the issue was created
440
+ */
441
+ createdAt: string;
442
+
443
+ /**
444
+ * The current risk level of the issue
445
+ */
446
+ level: 'NOT_SET' | 'CHILL' | 'LOW' | 'MODERATE' | 'HIGH' | 'CRITICAL';
447
+
448
+ /**
449
+ * The original risk level of the issue
450
+ */
451
+ originalLevel: 'NOT_SET' | 'CHILL' | 'LOW' | 'MODERATE' | 'HIGH' | 'CRITICAL';
452
+
453
+ /**
454
+ * A user defined identifier for this issue
455
+ */
456
+ poamId: string;
457
+
458
+ /**
459
+ * The title of the issue
460
+ */
461
+ title: string;
462
+
463
+ /**
464
+ * The type of observation for the issue
465
+ */
466
+ type: 'CONTROL' | 'VULNERABILITY' | 'DOCUMENTATION' | 'CONFIGURATION' | 'NOT_SET';
467
+
468
+ /**
469
+ * The assets associated with the issue
470
+ */
471
+ assets?: Array<string> | null;
472
+
473
+ /**
474
+ * The CVE IDs associated with the issue
475
+ */
476
+ cveIds?: Array<string> | null;
477
+
478
+ /**
479
+ * Text describing the issue
480
+ */
481
+ description?: string | null;
482
+
483
+ /**
484
+ * The deviations associated with the issue
485
+ */
486
+ deviations?: Array<DeviationsAPI.Deviation> | null;
487
+
488
+ /**
489
+ * The date the issue is due
490
+ */
491
+ dueDate?: string | null;
492
+
493
+ /**
494
+ * The evaluation date for the issue.
495
+ */
496
+ evaluationDate?: string | null;
497
+
498
+ /**
499
+ * Whether the issue represents an internet-reachable vulnerability.
500
+ */
501
+ internetReachableVulnerability?: boolean | null;
502
+
503
+ /**
504
+ * Whether the issue represents a likely-exploitable vulnerability.
505
+ */
506
+ likelyExploitableVulnerability?: boolean | null;
507
+
508
+ /**
509
+ * Links associated with the issue
510
+ */
511
+ links?: Array<IssueUpdateResponse.Link> | null;
512
+
513
+ /**
514
+ * The milestones associated with the issue
515
+ */
516
+ milestones?: Array<IssueUpdateResponse.Milestone> | null;
517
+
518
+ /**
519
+ * The origins of the issue
520
+ */
521
+ origins?: Array<Origin> | null;
522
+
523
+ /**
524
+ * The plugin id associated with the issue
525
+ */
526
+ pluginId?: string | null;
527
+
528
+ /**
529
+ * The point of contact for the issue
530
+ */
531
+ pointOfContact?: IssueUpdateResponse.PointOfContact | null;
532
+
533
+ /**
534
+ * The recommendations associated with the issue
535
+ */
536
+ recommendations?: Array<RecommendationsAPI.Recommendation> | null;
537
+
538
+ /**
539
+ * Additional remarks or notes about the issue
540
+ */
541
+ remarks?: string | null;
542
+
543
+ /**
544
+ * Description of the remediation for the issue
545
+ */
546
+ remediationDescription?: string | null;
547
+
548
+ /**
549
+ * The requirements associated with the issue
550
+ */
551
+ requirements?: Array<string> | null;
552
+
553
+ /**
554
+ * The current status of the issue
555
+ */
556
+ status?: 'OPEN' | 'CLOSED' | null;
557
+
558
+ /**
559
+ * The date the current status was set
560
+ */
561
+ statusDate?: string | null;
562
+ }
563
+
564
+ export namespace IssueUpdateResponse {
565
+ export interface Link {
566
+ url: string;
567
+
568
+ title?: string;
569
+ }
570
+
571
+ export interface Milestone {
572
+ /**
573
+ * A uuid that uniquely identifies the milestone
574
+ */
575
+ id: string;
576
+
577
+ /**
578
+ * The description of the milestone
579
+ */
580
+ description: string;
581
+
582
+ /**
583
+ * The end date of the milestone
584
+ */
585
+ dueEnd: string | null;
586
+
587
+ /**
588
+ * The start date of the milestone
589
+ */
590
+ dueStart: string | null;
591
+
592
+ /**
593
+ * The title of the milestone
594
+ */
595
+ title: string;
596
+ }
597
+
598
+ /**
599
+ * The point of contact for the issue
600
+ */
601
+ export interface PointOfContact {
602
+ name: string;
603
+
604
+ email?: string | null;
605
+ }
606
+ }
607
+
608
+ export interface IssueListResponse {
609
+ issues: Array<Issue>;
610
+ }
611
+
612
+ export interface IssueCreateParams {
613
+ /**
614
+ * The original risk level of the issue
615
+ */
616
+ originalLevel: 'NOT_SET' | 'CHILL' | 'LOW' | 'MODERATE' | 'HIGH' | 'CRITICAL';
617
+
618
+ /**
619
+ * A uuid that uniquely identifies the project this issue is associated with
620
+ */
621
+ projectId: string;
622
+
623
+ /**
624
+ * The date the current status was set
625
+ */
626
+ statusDate: string;
627
+
628
+ /**
629
+ * The title of the issue
630
+ */
631
+ title: string;
632
+
633
+ /**
634
+ * The type of observation for the issue
635
+ */
636
+ type: 'CONTROL' | 'VULNERABILITY' | 'DOCUMENTATION' | 'CONFIGURATION' | 'NOT_SET';
637
+
638
+ /**
639
+ * The assets associated with the issue
640
+ */
641
+ assets?: Array<string> | null;
642
+
643
+ /**
644
+ * The date the issue was created. If not provided, the current date will be used.
645
+ */
646
+ createdAt?: string | null;
647
+
648
+ /**
649
+ * The CVE IDs associated with the issue
650
+ */
651
+ cveIds?: Array<string> | null;
652
+
653
+ /**
654
+ * Text describing the issue
655
+ */
656
+ description?: string | null;
657
+
658
+ /**
659
+ * The deviations associated with the issue
660
+ */
661
+ deviations?: Array<IssueCreateParams.Deviation> | null;
662
+
663
+ /**
664
+ * The date the issue is due
665
+ */
666
+ dueDate?: string | null;
667
+
668
+ /**
669
+ * The evaluation date for the issue. If not provided, it will default to the
670
+ * issue's effective date.
671
+ */
672
+ evaluationDate?: string | null;
673
+
674
+ /**
675
+ * Whether the issue represents an internet-reachable vulnerability.
676
+ */
677
+ internetReachableVulnerability?: boolean | null;
678
+
679
+ /**
680
+ * Whether the issue represents a likely-exploitable vulnerability.
681
+ */
682
+ likelyExploitableVulnerability?: boolean | null;
683
+
684
+ /**
685
+ * Links associated with the issue
686
+ */
687
+ links?: Array<IssueCreateParams.Link> | null;
688
+
689
+ /**
690
+ * The milestones associated with the issue
691
+ */
692
+ milestones?: Array<MilestonesAPI.Milestone> | null;
693
+
694
+ /**
695
+ * The origins of the issue
696
+ */
697
+ origins?: Array<IssueCreateParams.Origin> | null;
698
+
699
+ /**
700
+ * The plugin id associated with the issue
701
+ */
702
+ pluginId?: string | null;
703
+
704
+ /**
705
+ * A user defined identifier for this issue
706
+ */
707
+ poamId?: string | null;
708
+
709
+ /**
710
+ * The point of contact for the issue
711
+ */
712
+ pointOfContact?: IssueCreateParams.PointOfContact | null;
713
+
714
+ /**
715
+ * The recommendations associated with the issue
716
+ */
717
+ recommendations?: Array<IssueCreateParams.Recommendation> | null;
718
+
719
+ /**
720
+ * Additional remarks or notes about the issue
721
+ */
722
+ remarks?: string | null;
723
+
724
+ /**
725
+ * Description of the remediation for the issue
726
+ */
727
+ remediationDescription?: string | null;
728
+
729
+ /**
730
+ * The requirements associated with the issue
731
+ */
732
+ requirements?: Array<string> | null;
733
+
734
+ /**
735
+ * The current status of the issue
736
+ */
737
+ status?: 'OPEN' | 'CLOSED' | null;
738
+ }
739
+
740
+ export namespace IssueCreateParams {
741
+ export interface Deviation {
742
+ /**
743
+ * The description of the deviation
744
+ */
745
+ description: string;
746
+
747
+ /**
748
+ * Deviation schema
749
+ */
750
+ deviationMetadata: Deviation.DeviationMetadata;
751
+
752
+ method: 'TEST' | 'EXAMINE' | 'INTERVIEW' | 'UNKNOWN';
753
+
754
+ /**
755
+ * Deviation observation types
756
+ */
757
+ type: DeviationsAPI.DeviationObservationTypes;
758
+
759
+ /**
760
+ * The date the deviation was created
761
+ */
762
+ createdAt?: string | null;
763
+ }
764
+
765
+ export namespace Deviation {
766
+ /**
767
+ * Deviation schema
768
+ */
769
+ export interface DeviationMetadata {
770
+ status: 'PENDING' | 'ACCEPTED' | 'REJECTED';
771
+
772
+ /**
773
+ * The date the deviation status was accepted or rejected
774
+ */
775
+ acceptanceStatusDate?: string | null;
776
+
777
+ adjustedLevel?: 'NOT_SET' | 'CHILL' | 'LOW' | 'MODERATE' | 'HIGH' | 'CRITICAL';
778
+ }
779
+ }
780
+
781
+ export interface Link {
782
+ url: string;
783
+
784
+ title?: string;
785
+ }
786
+
787
+ /**
788
+ * The name and subtype of the element within Paramify that created the issue
789
+ */
790
+ export interface Origin {
791
+ name: string;
792
+
793
+ subtype:
794
+ | 'COM_AGREEMENT'
795
+ | 'COM_CUSTOMER_MANAGED'
796
+ | 'COM_FEDRAMP_SYSTEM'
797
+ | 'COM_HARDWARE'
798
+ | 'COM_IAAS'
799
+ | 'COM_INTERCONNECTION'
800
+ | 'COM_PAAS'
801
+ | 'COM_PLAN'
802
+ | 'COM_POLICY'
803
+ | 'COM_PROCEDURE'
804
+ | 'COM_PROCESS'
805
+ | 'COM_SAAS'
806
+ | 'COM_SERVICE'
807
+ | 'COM_SOFTWARE'
808
+ | 'COM_SUBNET'
809
+ | 'COM_CRYPTOGRAPHIC_MODULE'
810
+ | 'COM_STACK_PARAMETER'
811
+ | 'PAR_ORGANIZATION'
812
+ | 'PAR_PERSON'
813
+ | 'ROL_NO_LOGICAL_ACCESS'
814
+ | 'ROL_NOT_PRIVILEGED'
815
+ | 'ROL_PRIVILEGED'
816
+ | 'LOC_CAMPUS'
817
+ | 'LOC_DATA_CENTER'
818
+ | 'LOC_DATA_REGION_CLOUD'
819
+ | 'LOC_OTHER'
820
+ | 'LOC_REMOTE'
821
+ | 'DAT_ACCOUNT_DATA'
822
+ | 'DAT_CUSTOMER_DATA'
823
+ | 'DAT_METADATA'
824
+ | 'DAT_SUPPORT_ADMIN';
825
+ }
826
+
827
+ /**
828
+ * The point of contact for the issue
829
+ */
830
+ export interface PointOfContact {
831
+ email: string;
832
+
833
+ name: string;
834
+ }
835
+
836
+ export interface Recommendation {
837
+ /**
838
+ * The description of the recommendation
839
+ */
840
+ description: string;
841
+
842
+ /**
843
+ * The origins of the recommendation
844
+ */
845
+ origins?: Array<Recommendation.Origin> | null;
846
+ }
847
+
848
+ export namespace Recommendation {
849
+ /**
850
+ * The name and subtype of the element within Paramify that created the issue
851
+ */
852
+ export interface Origin {
853
+ name: string;
854
+
855
+ subtype:
856
+ | 'COM_AGREEMENT'
857
+ | 'COM_CUSTOMER_MANAGED'
858
+ | 'COM_FEDRAMP_SYSTEM'
859
+ | 'COM_HARDWARE'
860
+ | 'COM_IAAS'
861
+ | 'COM_INTERCONNECTION'
862
+ | 'COM_PAAS'
863
+ | 'COM_PLAN'
864
+ | 'COM_POLICY'
865
+ | 'COM_PROCEDURE'
866
+ | 'COM_PROCESS'
867
+ | 'COM_SAAS'
868
+ | 'COM_SERVICE'
869
+ | 'COM_SOFTWARE'
870
+ | 'COM_SUBNET'
871
+ | 'COM_CRYPTOGRAPHIC_MODULE'
872
+ | 'COM_STACK_PARAMETER'
873
+ | 'PAR_ORGANIZATION'
874
+ | 'PAR_PERSON'
875
+ | 'ROL_NO_LOGICAL_ACCESS'
876
+ | 'ROL_NOT_PRIVILEGED'
877
+ | 'ROL_PRIVILEGED'
878
+ | 'LOC_CAMPUS'
879
+ | 'LOC_DATA_CENTER'
880
+ | 'LOC_DATA_REGION_CLOUD'
881
+ | 'LOC_OTHER'
882
+ | 'LOC_REMOTE'
883
+ | 'DAT_ACCOUNT_DATA'
884
+ | 'DAT_CUSTOMER_DATA'
885
+ | 'DAT_METADATA'
886
+ | 'DAT_SUPPORT_ADMIN';
887
+ }
888
+ }
889
+ }
890
+
891
+ export interface IssueUpdateParams {
892
+ /**
893
+ * The assets associated with the issue
894
+ */
895
+ assets?: Array<string>;
896
+
897
+ /**
898
+ * The date the issue was created
899
+ */
900
+ createdAt?: string;
901
+
902
+ /**
903
+ * The CVE IDs associated with the issue
904
+ */
905
+ cveIds?: Array<string> | null;
906
+
907
+ /**
908
+ * Text describing the issue
909
+ */
910
+ description?: string;
911
+
912
+ /**
913
+ * The deviations associated with the issue
914
+ */
915
+ deviations?: Array<IssueUpdateParams.Deviation>;
916
+
917
+ /**
918
+ * The date the issue is due
919
+ */
920
+ dueDate?: string | null;
921
+
922
+ /**
923
+ * The evaluation date for the issue.
924
+ */
925
+ evaluationDate?: string;
926
+
927
+ /**
928
+ * Whether the issue represents an internet-reachable vulnerability.
929
+ */
930
+ internetReachableVulnerability?: boolean;
931
+
932
+ /**
933
+ * Whether the issue represents a likely-exploitable vulnerability.
934
+ */
935
+ likelyExploitableVulnerability?: boolean;
936
+
937
+ /**
938
+ * Links associated with the issue
939
+ */
940
+ links?: Array<IssueUpdateParams.Link>;
941
+
942
+ /**
943
+ * The milestones associated with the issue
944
+ */
945
+ milestones?: Array<IssueUpdateParams.Milestone>;
946
+
947
+ /**
948
+ * The original risk level of the issue
949
+ */
950
+ originalLevel?: 'NOT_SET' | 'CHILL' | 'LOW' | 'MODERATE' | 'HIGH' | 'CRITICAL';
951
+
952
+ /**
953
+ * The origins of the issue
954
+ */
955
+ origins?: Array<IssueUpdateParams.Origin>;
956
+
957
+ /**
958
+ * The plugin id associated with the issue
959
+ */
960
+ pluginId?: string;
961
+
962
+ /**
963
+ * A user defined identifier for this issue
964
+ */
965
+ poamId?: string;
966
+
967
+ /**
968
+ * The point of contact for the issue
969
+ */
970
+ pointOfContact?: IssueUpdateParams.PointOfContact;
971
+
972
+ /**
973
+ * The recommendations associated with the issue
974
+ */
975
+ recommendations?: Array<IssueUpdateParams.Recommendation>;
976
+
977
+ /**
978
+ * Additional remarks or notes about the issue
979
+ */
980
+ remarks?: string;
981
+
982
+ /**
983
+ * Description of the remediation for the issue
984
+ */
985
+ remediationDescription?: string;
986
+
987
+ /**
988
+ * The requirements associated with the issue
989
+ */
990
+ requirements?: Array<string>;
991
+
992
+ /**
993
+ * The current status of the issue
994
+ */
995
+ status?: 'OPEN' | 'CLOSED';
996
+
997
+ /**
998
+ * The date the current status was set
999
+ */
1000
+ statusDate?: string;
1001
+
1002
+ /**
1003
+ * The title of the issue
1004
+ */
1005
+ title?: string;
1006
+
1007
+ /**
1008
+ * Issue observation types
1009
+ */
1010
+ type?: IssueObservationTypes;
1011
+ }
1012
+
1013
+ export namespace IssueUpdateParams {
1014
+ export interface Deviation {
1015
+ id?: string;
1016
+
1017
+ /**
1018
+ * The date the deviation was created
1019
+ */
1020
+ createdAt?: string;
1021
+
1022
+ description?: string;
1023
+
1024
+ /**
1025
+ * Deviation metadata object
1026
+ */
1027
+ deviationMetadata?: DeviationsAPI.DeviationMetadata;
1028
+
1029
+ method?: 'TEST' | 'EXAMINE' | 'INTERVIEW' | 'UNKNOWN';
1030
+
1031
+ /**
1032
+ * Deviation observation types
1033
+ */
1034
+ type?: DeviationsAPI.DeviationObservationTypes;
1035
+ }
1036
+
1037
+ export interface Link {
1038
+ url: string;
1039
+
1040
+ title?: string;
1041
+ }
1042
+
1043
+ export interface Milestone {
1044
+ /**
1045
+ * A uuid that uniquely identifies the milestone
1046
+ */
1047
+ id?: string;
1048
+
1049
+ /**
1050
+ * The description of the milestone
1051
+ */
1052
+ description?: string;
1053
+
1054
+ /**
1055
+ * The date the milestone is due to be completed
1056
+ */
1057
+ dueEnd?: string;
1058
+
1059
+ /**
1060
+ * The date progress on the milestone should start
1061
+ */
1062
+ dueStart?: string;
1063
+
1064
+ /**
1065
+ * The title of the milestone
1066
+ */
1067
+ title?: string;
1068
+ }
1069
+
1070
+ /**
1071
+ * The name and subtype of the element within Paramify that created the issue
1072
+ */
1073
+ export interface Origin {
1074
+ name: string;
1075
+
1076
+ subtype:
1077
+ | 'COM_AGREEMENT'
1078
+ | 'COM_CUSTOMER_MANAGED'
1079
+ | 'COM_FEDRAMP_SYSTEM'
1080
+ | 'COM_HARDWARE'
1081
+ | 'COM_IAAS'
1082
+ | 'COM_INTERCONNECTION'
1083
+ | 'COM_PAAS'
1084
+ | 'COM_PLAN'
1085
+ | 'COM_POLICY'
1086
+ | 'COM_PROCEDURE'
1087
+ | 'COM_PROCESS'
1088
+ | 'COM_SAAS'
1089
+ | 'COM_SERVICE'
1090
+ | 'COM_SOFTWARE'
1091
+ | 'COM_SUBNET'
1092
+ | 'COM_CRYPTOGRAPHIC_MODULE'
1093
+ | 'COM_STACK_PARAMETER'
1094
+ | 'PAR_ORGANIZATION'
1095
+ | 'PAR_PERSON'
1096
+ | 'ROL_NO_LOGICAL_ACCESS'
1097
+ | 'ROL_NOT_PRIVILEGED'
1098
+ | 'ROL_PRIVILEGED'
1099
+ | 'LOC_CAMPUS'
1100
+ | 'LOC_DATA_CENTER'
1101
+ | 'LOC_DATA_REGION_CLOUD'
1102
+ | 'LOC_OTHER'
1103
+ | 'LOC_REMOTE'
1104
+ | 'DAT_ACCOUNT_DATA'
1105
+ | 'DAT_CUSTOMER_DATA'
1106
+ | 'DAT_METADATA'
1107
+ | 'DAT_SUPPORT_ADMIN';
1108
+ }
1109
+
1110
+ /**
1111
+ * The point of contact for the issue
1112
+ */
1113
+ export interface PointOfContact {
1114
+ email: string;
1115
+
1116
+ name: string;
1117
+ }
1118
+
1119
+ export interface Recommendation {
1120
+ /**
1121
+ * A uuid that uniquely identifies the recommendation
1122
+ */
1123
+ id?: string;
1124
+
1125
+ /**
1126
+ * The description of the recommendation
1127
+ */
1128
+ description?: string;
1129
+
1130
+ /**
1131
+ * The origins of the recommendation
1132
+ */
1133
+ origins?: Array<Recommendation.Origin>;
1134
+ }
1135
+
1136
+ export namespace Recommendation {
1137
+ /**
1138
+ * The name and subtype of the element within Paramify that created the issue
1139
+ */
1140
+ export interface Origin {
1141
+ name: string;
1142
+
1143
+ subtype:
1144
+ | 'COM_AGREEMENT'
1145
+ | 'COM_CUSTOMER_MANAGED'
1146
+ | 'COM_FEDRAMP_SYSTEM'
1147
+ | 'COM_HARDWARE'
1148
+ | 'COM_IAAS'
1149
+ | 'COM_INTERCONNECTION'
1150
+ | 'COM_PAAS'
1151
+ | 'COM_PLAN'
1152
+ | 'COM_POLICY'
1153
+ | 'COM_PROCEDURE'
1154
+ | 'COM_PROCESS'
1155
+ | 'COM_SAAS'
1156
+ | 'COM_SERVICE'
1157
+ | 'COM_SOFTWARE'
1158
+ | 'COM_SUBNET'
1159
+ | 'COM_CRYPTOGRAPHIC_MODULE'
1160
+ | 'COM_STACK_PARAMETER'
1161
+ | 'PAR_ORGANIZATION'
1162
+ | 'PAR_PERSON'
1163
+ | 'ROL_NO_LOGICAL_ACCESS'
1164
+ | 'ROL_NOT_PRIVILEGED'
1165
+ | 'ROL_PRIVILEGED'
1166
+ | 'LOC_CAMPUS'
1167
+ | 'LOC_DATA_CENTER'
1168
+ | 'LOC_DATA_REGION_CLOUD'
1169
+ | 'LOC_OTHER'
1170
+ | 'LOC_REMOTE'
1171
+ | 'DAT_ACCOUNT_DATA'
1172
+ | 'DAT_CUSTOMER_DATA'
1173
+ | 'DAT_METADATA'
1174
+ | 'DAT_SUPPORT_ADMIN';
1175
+ }
1176
+ }
1177
+ }
1178
+
1179
+ export interface IssueListParams {
1180
+ /**
1181
+ * An id that represents an issue within the Paramify application. You may pass in
1182
+ * several `id` values at once.
1183
+ */
1184
+ id?: Array<string>;
1185
+
1186
+ /**
1187
+ * A string that represents an asset of an issue.
1188
+ */
1189
+ asset?: Array<string>;
1190
+
1191
+ /**
1192
+ * A valid CVE ID. Can be passed multiple times to filter by multiple CVE IDs.
1193
+ */
1194
+ cveId?: Array<string>;
1195
+
1196
+ /**
1197
+ * The type of deviations.
1198
+ */
1199
+ deviationType?: 'FALSE_POSITIVE' | 'OPERATIONAL_REQUIREMENT' | 'RISK_ADJUSTMENT' | 'VENDOR_DEPENDENCY';
1200
+
1201
+ /**
1202
+ * The end date of the due date range. The due date should be less than or equal to
1203
+ * this date.
1204
+ */
1205
+ dueDateEnd?: string;
1206
+
1207
+ /**
1208
+ * The start date of the due date range. The due date should be greater than or
1209
+ * equal to this date.
1210
+ */
1211
+ dueDateStart?: string;
1212
+
1213
+ /**
1214
+ * A date that will be used to filter issues that have an effective date less than
1215
+ * or equal to the date passed in. Date format: YYYY-MM-DD.
1216
+ */
1217
+ effectiveDateEnd?: string;
1218
+
1219
+ /**
1220
+ * A date that will be used to filter issues that have an effective date greater
1221
+ * than or equal to the date passed in. Date format: YYYY-MM-DD.
1222
+ */
1223
+ effectiveDateStart?: string;
1224
+
1225
+ /**
1226
+ * The end date of the evaluation date range. The evaluation date should be less
1227
+ * than or equal to this date.
1228
+ */
1229
+ evaluationDateEnd?: string;
1230
+
1231
+ /**
1232
+ * The start date of the evaluation date range. The evaluation date should be
1233
+ * greater than or equal to this date.
1234
+ */
1235
+ evaluationDateStart?: string;
1236
+
1237
+ /**
1238
+ * Filter issues by whether they represent an internet-reachable vulnerability
1239
+ */
1240
+ internetReachableVulnerability?: boolean;
1241
+
1242
+ /**
1243
+ * Add to filter issues containing CVE IDs from the Known Exploited Vulnerabilities
1244
+ * (KEV) catalog or not
1245
+ */
1246
+ kev?: boolean;
1247
+
1248
+ /**
1249
+ * Filter issues by whether they represent a likely-exploitable vulnerability
1250
+ */
1251
+ likelyExploitableVulnerability?: boolean;
1252
+
1253
+ /**
1254
+ * User defined identifier for this issue. You may pass in several `poamId` values
1255
+ * at once. If used, the projectId is required.
1256
+ */
1257
+ poamId?: Array<string>;
1258
+
1259
+ /**
1260
+ * An id that represents a project within the Paramify application.
1261
+ */
1262
+ projectId?: string;
1263
+
1264
+ /**
1265
+ * The end date of the status date range. The status date should be less than or
1266
+ * equal to this date.
1267
+ */
1268
+ statusDateEnd?: string;
1269
+
1270
+ /**
1271
+ * The start date of the status date range. The status date should be greater than
1272
+ * or equal to this date.
1273
+ */
1274
+ statusDateStart?: string;
1275
+
1276
+ /**
1277
+ * A string that represents the title or part of the title of an issue.
1278
+ */
1279
+ title?: string;
1280
+ }
1281
+
1282
+ export interface IssueExportOscalParams {
1283
+ /**
1284
+ * An id that represents a project within the Paramify application.
1285
+ */
1286
+ projectId?: string;
1287
+ }
1288
+
1289
+ Issues.Recommendations = Recommendations;
1290
+ Issues.Deviations = Deviations;
1291
+ Issues.Milestones = Milestones;
1292
+
1293
+ export declare namespace Issues {
1294
+ export {
1295
+ type Issue as Issue,
1296
+ type IssueObservationTypes as IssueObservationTypes,
1297
+ type Origin as Origin,
1298
+ type IssueUpdateResponse as IssueUpdateResponse,
1299
+ type IssueListResponse as IssueListResponse,
1300
+ type IssueCreateParams as IssueCreateParams,
1301
+ type IssueUpdateParams as IssueUpdateParams,
1302
+ type IssueListParams as IssueListParams,
1303
+ type IssueExportOscalParams as IssueExportOscalParams,
1304
+ };
1305
+
1306
+ export {
1307
+ Recommendations as Recommendations,
1308
+ type RecommendationsAPIRecommendation as Recommendation,
1309
+ type RecommendationUpdateResponse as RecommendationUpdateResponse,
1310
+ type RecommendationListResponse as RecommendationListResponse,
1311
+ type RecommendationCreateParams as RecommendationCreateParams,
1312
+ type RecommendationRetrieveParams as RecommendationRetrieveParams,
1313
+ type RecommendationUpdateParams as RecommendationUpdateParams,
1314
+ type RecommendationListParams as RecommendationListParams,
1315
+ type RecommendationDeleteParams as RecommendationDeleteParams,
1316
+ };
1317
+
1318
+ export {
1319
+ Deviations as Deviations,
1320
+ type DeviationsAPIDeviation as Deviation,
1321
+ type DeviationsAPIDeviationMetadata as DeviationMetadata,
1322
+ type DeviationObservationTypes as DeviationObservationTypes,
1323
+ type DeviationUpdateResponse as DeviationUpdateResponse,
1324
+ type DeviationListResponse as DeviationListResponse,
1325
+ type DeviationCreateParams as DeviationCreateParams,
1326
+ type DeviationRetrieveParams as DeviationRetrieveParams,
1327
+ type DeviationUpdateParams as DeviationUpdateParams,
1328
+ type DeviationListParams as DeviationListParams,
1329
+ type DeviationDeleteParams as DeviationDeleteParams,
1330
+ };
1331
+
1332
+ export {
1333
+ Milestones as Milestones,
1334
+ type MilestonesAPIMilestone as Milestone,
1335
+ type MilestoneCreateResponse as MilestoneCreateResponse,
1336
+ type MilestoneRetrieveResponse as MilestoneRetrieveResponse,
1337
+ type MilestoneUpdateResponse as MilestoneUpdateResponse,
1338
+ type MilestoneListResponse as MilestoneListResponse,
1339
+ type MilestoneCreateParams as MilestoneCreateParams,
1340
+ type MilestoneRetrieveParams as MilestoneRetrieveParams,
1341
+ type MilestoneUpdateParams as MilestoneUpdateParams,
1342
+ type MilestoneListParams as MilestoneListParams,
1343
+ type MilestoneDeleteParams as MilestoneDeleteParams,
1344
+ };
1345
+ }