@vm3jack/mcp-server-azure-devops 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (923) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +265 -0
  3. package/dist/clients/azure-devops.d.ts +105 -0
  4. package/dist/clients/azure-devops.js +501 -0
  5. package/dist/clients/azure-devops.js.map +1 -0
  6. package/dist/clients/azure-devops.spec.unit.d.ts +1 -0
  7. package/dist/clients/azure-devops.spec.unit.js +42 -0
  8. package/dist/clients/azure-devops.spec.unit.js.map +1 -0
  9. package/dist/features/organizations/__test__/test-helpers.d.ts +13 -0
  10. package/dist/features/organizations/__test__/test-helpers.js +38 -0
  11. package/dist/features/organizations/__test__/test-helpers.js.map +1 -0
  12. package/dist/features/organizations/index.d.ts +13 -0
  13. package/dist/features/organizations/index.js +63 -0
  14. package/dist/features/organizations/index.js.map +1 -0
  15. package/dist/features/organizations/index.spec.unit.d.ts +1 -0
  16. package/dist/features/organizations/index.spec.unit.js +106 -0
  17. package/dist/features/organizations/index.spec.unit.js.map +1 -0
  18. package/dist/features/organizations/list-organizations/feature.d.ts +13 -0
  19. package/dist/features/organizations/list-organizations/feature.js +101 -0
  20. package/dist/features/organizations/list-organizations/feature.js.map +1 -0
  21. package/dist/features/organizations/list-organizations/feature.spec.int.d.ts +1 -0
  22. package/dist/features/organizations/list-organizations/feature.spec.int.js +34 -0
  23. package/dist/features/organizations/list-organizations/feature.spec.int.js.map +1 -0
  24. package/dist/features/organizations/list-organizations/feature.spec.unit.d.ts +1 -0
  25. package/dist/features/organizations/list-organizations/feature.spec.unit.js +115 -0
  26. package/dist/features/organizations/list-organizations/feature.spec.unit.js.map +1 -0
  27. package/dist/features/organizations/list-organizations/index.d.ts +2 -0
  28. package/dist/features/organizations/list-organizations/index.js +19 -0
  29. package/dist/features/organizations/list-organizations/index.js.map +1 -0
  30. package/dist/features/organizations/list-organizations/schema.d.ts +2 -0
  31. package/dist/features/organizations/list-organizations/schema.js +6 -0
  32. package/dist/features/organizations/list-organizations/schema.js.map +1 -0
  33. package/dist/features/organizations/schemas.d.ts +6 -0
  34. package/dist/features/organizations/schemas.js +10 -0
  35. package/dist/features/organizations/schemas.js.map +1 -0
  36. package/dist/features/organizations/tool-definitions.d.ts +5 -0
  37. package/dist/features/organizations/tool-definitions.js +16 -0
  38. package/dist/features/organizations/tool-definitions.js.map +1 -0
  39. package/dist/features/organizations/types.d.ts +21 -0
  40. package/dist/features/organizations/types.js +8 -0
  41. package/dist/features/organizations/types.js.map +1 -0
  42. package/dist/features/pipelines/artifacts.d.ts +11 -0
  43. package/dist/features/pipelines/artifacts.js +288 -0
  44. package/dist/features/pipelines/artifacts.js.map +1 -0
  45. package/dist/features/pipelines/artifacts.spec.unit.d.ts +1 -0
  46. package/dist/features/pipelines/artifacts.spec.unit.js +103 -0
  47. package/dist/features/pipelines/artifacts.spec.unit.js.map +1 -0
  48. package/dist/features/pipelines/download-pipeline-artifact/feature.d.ts +3 -0
  49. package/dist/features/pipelines/download-pipeline-artifact/feature.js +222 -0
  50. package/dist/features/pipelines/download-pipeline-artifact/feature.js.map +1 -0
  51. package/dist/features/pipelines/download-pipeline-artifact/feature.spec.unit.d.ts +1 -0
  52. package/dist/features/pipelines/download-pipeline-artifact/feature.spec.unit.js +65 -0
  53. package/dist/features/pipelines/download-pipeline-artifact/feature.spec.unit.js.map +1 -0
  54. package/dist/features/pipelines/download-pipeline-artifact/index.d.ts +2 -0
  55. package/dist/features/pipelines/download-pipeline-artifact/index.js +19 -0
  56. package/dist/features/pipelines/download-pipeline-artifact/index.js.map +1 -0
  57. package/dist/features/pipelines/download-pipeline-artifact/schema.d.ts +17 -0
  58. package/dist/features/pipelines/download-pipeline-artifact/schema.js +23 -0
  59. package/dist/features/pipelines/download-pipeline-artifact/schema.js.map +1 -0
  60. package/dist/features/pipelines/get-pipeline/feature.d.ts +10 -0
  61. package/dist/features/pipelines/get-pipeline/feature.js +46 -0
  62. package/dist/features/pipelines/get-pipeline/feature.js.map +1 -0
  63. package/dist/features/pipelines/get-pipeline/feature.spec.int.d.ts +1 -0
  64. package/dist/features/pipelines/get-pipeline/feature.spec.int.js +54 -0
  65. package/dist/features/pipelines/get-pipeline/feature.spec.int.js.map +1 -0
  66. package/dist/features/pipelines/get-pipeline/feature.spec.unit.d.ts +1 -0
  67. package/dist/features/pipelines/get-pipeline/feature.spec.unit.js +89 -0
  68. package/dist/features/pipelines/get-pipeline/feature.spec.unit.js.map +1 -0
  69. package/dist/features/pipelines/get-pipeline/index.d.ts +2 -0
  70. package/dist/features/pipelines/get-pipeline/index.js +19 -0
  71. package/dist/features/pipelines/get-pipeline/index.js.map +1 -0
  72. package/dist/features/pipelines/get-pipeline/schema.d.ts +17 -0
  73. package/dist/features/pipelines/get-pipeline/schema.js +29 -0
  74. package/dist/features/pipelines/get-pipeline/schema.js.map +1 -0
  75. package/dist/features/pipelines/get-pipeline-log/feature.d.ts +3 -0
  76. package/dist/features/pipelines/get-pipeline-log/feature.js +57 -0
  77. package/dist/features/pipelines/get-pipeline-log/feature.js.map +1 -0
  78. package/dist/features/pipelines/get-pipeline-log/feature.spec.unit.d.ts +1 -0
  79. package/dist/features/pipelines/get-pipeline-log/feature.spec.unit.js +81 -0
  80. package/dist/features/pipelines/get-pipeline-log/feature.spec.unit.js.map +1 -0
  81. package/dist/features/pipelines/get-pipeline-log/index.d.ts +2 -0
  82. package/dist/features/pipelines/get-pipeline-log/index.js +19 -0
  83. package/dist/features/pipelines/get-pipeline-log/index.js.map +1 -0
  84. package/dist/features/pipelines/get-pipeline-log/schema.d.ts +26 -0
  85. package/dist/features/pipelines/get-pipeline-log/schema.js +40 -0
  86. package/dist/features/pipelines/get-pipeline-log/schema.js.map +1 -0
  87. package/dist/features/pipelines/get-pipeline-run/feature.d.ts +3 -0
  88. package/dist/features/pipelines/get-pipeline-run/feature.js +76 -0
  89. package/dist/features/pipelines/get-pipeline-run/feature.js.map +1 -0
  90. package/dist/features/pipelines/get-pipeline-run/feature.spec.unit.d.ts +1 -0
  91. package/dist/features/pipelines/get-pipeline-run/feature.spec.unit.js +156 -0
  92. package/dist/features/pipelines/get-pipeline-run/feature.spec.unit.js.map +1 -0
  93. package/dist/features/pipelines/get-pipeline-run/index.d.ts +2 -0
  94. package/dist/features/pipelines/get-pipeline-run/index.js +19 -0
  95. package/dist/features/pipelines/get-pipeline-run/index.js.map +1 -0
  96. package/dist/features/pipelines/get-pipeline-run/schema.d.ts +14 -0
  97. package/dist/features/pipelines/get-pipeline-run/schema.js +19 -0
  98. package/dist/features/pipelines/get-pipeline-run/schema.js.map +1 -0
  99. package/dist/features/pipelines/helpers.d.ts +3 -0
  100. package/dist/features/pipelines/helpers.js +29 -0
  101. package/dist/features/pipelines/helpers.js.map +1 -0
  102. package/dist/features/pipelines/index.d.ts +19 -0
  103. package/dist/features/pipelines/index.js +156 -0
  104. package/dist/features/pipelines/index.js.map +1 -0
  105. package/dist/features/pipelines/index.spec.unit.d.ts +1 -0
  106. package/dist/features/pipelines/index.spec.unit.js +223 -0
  107. package/dist/features/pipelines/index.spec.unit.js.map +1 -0
  108. package/dist/features/pipelines/list-pipeline-runs/feature.d.ts +3 -0
  109. package/dist/features/pipelines/list-pipeline-runs/feature.js +98 -0
  110. package/dist/features/pipelines/list-pipeline-runs/feature.js.map +1 -0
  111. package/dist/features/pipelines/list-pipeline-runs/feature.spec.unit.d.ts +1 -0
  112. package/dist/features/pipelines/list-pipeline-runs/feature.spec.unit.js +148 -0
  113. package/dist/features/pipelines/list-pipeline-runs/feature.spec.unit.js.map +1 -0
  114. package/dist/features/pipelines/list-pipeline-runs/index.d.ts +2 -0
  115. package/dist/features/pipelines/list-pipeline-runs/index.js +19 -0
  116. package/dist/features/pipelines/list-pipeline-runs/index.js.map +1 -0
  117. package/dist/features/pipelines/list-pipeline-runs/schema.d.ts +35 -0
  118. package/dist/features/pipelines/list-pipeline-runs/schema.js +50 -0
  119. package/dist/features/pipelines/list-pipeline-runs/schema.js.map +1 -0
  120. package/dist/features/pipelines/list-pipelines/feature.d.ts +10 -0
  121. package/dist/features/pipelines/list-pipelines/feature.js +42 -0
  122. package/dist/features/pipelines/list-pipelines/feature.js.map +1 -0
  123. package/dist/features/pipelines/list-pipelines/feature.spec.int.d.ts +1 -0
  124. package/dist/features/pipelines/list-pipelines/feature.spec.int.js +36 -0
  125. package/dist/features/pipelines/list-pipelines/feature.spec.int.js.map +1 -0
  126. package/dist/features/pipelines/list-pipelines/feature.spec.unit.d.ts +1 -0
  127. package/dist/features/pipelines/list-pipelines/feature.spec.unit.js +91 -0
  128. package/dist/features/pipelines/list-pipelines/feature.spec.unit.js.map +1 -0
  129. package/dist/features/pipelines/list-pipelines/index.d.ts +2 -0
  130. package/dist/features/pipelines/list-pipelines/index.js +19 -0
  131. package/dist/features/pipelines/list-pipelines/index.js.map +1 -0
  132. package/dist/features/pipelines/list-pipelines/schema.d.ts +17 -0
  133. package/dist/features/pipelines/list-pipelines/schema.js +23 -0
  134. package/dist/features/pipelines/list-pipelines/schema.js.map +1 -0
  135. package/dist/features/pipelines/pipeline-timeline/feature.d.ts +3 -0
  136. package/dist/features/pipelines/pipeline-timeline/feature.js +95 -0
  137. package/dist/features/pipelines/pipeline-timeline/feature.js.map +1 -0
  138. package/dist/features/pipelines/pipeline-timeline/feature.spec.unit.d.ts +1 -0
  139. package/dist/features/pipelines/pipeline-timeline/feature.spec.unit.js +100 -0
  140. package/dist/features/pipelines/pipeline-timeline/feature.spec.unit.js.map +1 -0
  141. package/dist/features/pipelines/pipeline-timeline/index.d.ts +2 -0
  142. package/dist/features/pipelines/pipeline-timeline/index.js +19 -0
  143. package/dist/features/pipelines/pipeline-timeline/index.js.map +1 -0
  144. package/dist/features/pipelines/pipeline-timeline/schema.d.ts +23 -0
  145. package/dist/features/pipelines/pipeline-timeline/schema.js +51 -0
  146. package/dist/features/pipelines/pipeline-timeline/schema.js.map +1 -0
  147. package/dist/features/pipelines/tool-definitions.d.ts +5 -0
  148. package/dist/features/pipelines/tool-definitions.js +66 -0
  149. package/dist/features/pipelines/tool-definitions.js.map +1 -0
  150. package/dist/features/pipelines/trigger-pipeline/feature.d.ts +10 -0
  151. package/dist/features/pipelines/trigger-pipeline/feature.js +65 -0
  152. package/dist/features/pipelines/trigger-pipeline/feature.js.map +1 -0
  153. package/dist/features/pipelines/trigger-pipeline/feature.spec.int.d.ts +1 -0
  154. package/dist/features/pipelines/trigger-pipeline/feature.spec.int.js +85 -0
  155. package/dist/features/pipelines/trigger-pipeline/feature.spec.int.js.map +1 -0
  156. package/dist/features/pipelines/trigger-pipeline/feature.spec.unit.d.ts +1 -0
  157. package/dist/features/pipelines/trigger-pipeline/feature.spec.unit.js +112 -0
  158. package/dist/features/pipelines/trigger-pipeline/feature.spec.unit.js.map +1 -0
  159. package/dist/features/pipelines/trigger-pipeline/index.d.ts +2 -0
  160. package/dist/features/pipelines/trigger-pipeline/index.js +8 -0
  161. package/dist/features/pipelines/trigger-pipeline/index.js.map +1 -0
  162. package/dist/features/pipelines/trigger-pipeline/schema.d.ts +41 -0
  163. package/dist/features/pipelines/trigger-pipeline/schema.js +45 -0
  164. package/dist/features/pipelines/trigger-pipeline/schema.js.map +1 -0
  165. package/dist/features/pipelines/types.d.ts +122 -0
  166. package/dist/features/pipelines/types.js +3 -0
  167. package/dist/features/pipelines/types.js.map +1 -0
  168. package/dist/features/projects/__test__/test-helpers.d.ts +13 -0
  169. package/dist/features/projects/__test__/test-helpers.js +35 -0
  170. package/dist/features/projects/__test__/test-helpers.js.map +1 -0
  171. package/dist/features/projects/get-project/feature.d.ts +11 -0
  172. package/dist/features/projects/get-project/feature.js +29 -0
  173. package/dist/features/projects/get-project/feature.js.map +1 -0
  174. package/dist/features/projects/get-project/feature.spec.int.d.ts +1 -0
  175. package/dist/features/projects/get-project/feature.spec.int.js +39 -0
  176. package/dist/features/projects/get-project/feature.spec.int.js.map +1 -0
  177. package/dist/features/projects/get-project/feature.spec.unit.d.ts +1 -0
  178. package/dist/features/projects/get-project/feature.spec.unit.js +41 -0
  179. package/dist/features/projects/get-project/feature.spec.unit.js.map +1 -0
  180. package/dist/features/projects/get-project/index.d.ts +2 -0
  181. package/dist/features/projects/get-project/index.js +19 -0
  182. package/dist/features/projects/get-project/index.js.map +1 -0
  183. package/dist/features/projects/get-project/schema.d.ts +2 -0
  184. package/dist/features/projects/get-project/schema.js +6 -0
  185. package/dist/features/projects/get-project/schema.js.map +1 -0
  186. package/dist/features/projects/get-project-details/feature.d.ts +78 -0
  187. package/dist/features/projects/get-project-details/feature.js +185 -0
  188. package/dist/features/projects/get-project-details/feature.js.map +1 -0
  189. package/dist/features/projects/get-project-details/feature.spec.int.d.ts +1 -0
  190. package/dist/features/projects/get-project-details/feature.spec.int.js +120 -0
  191. package/dist/features/projects/get-project-details/feature.spec.int.js.map +1 -0
  192. package/dist/features/projects/get-project-details/feature.spec.unit.d.ts +1 -0
  193. package/dist/features/projects/get-project-details/feature.spec.unit.js +379 -0
  194. package/dist/features/projects/get-project-details/feature.spec.unit.js.map +1 -0
  195. package/dist/features/projects/get-project-details/index.d.ts +2 -0
  196. package/dist/features/projects/get-project-details/index.js +8 -0
  197. package/dist/features/projects/get-project-details/index.js.map +1 -0
  198. package/dist/features/projects/get-project-details/schema.d.ts +2 -0
  199. package/dist/features/projects/get-project-details/schema.js +6 -0
  200. package/dist/features/projects/get-project-details/schema.js.map +1 -0
  201. package/dist/features/projects/index.d.ts +15 -0
  202. package/dist/features/projects/index.js +80 -0
  203. package/dist/features/projects/index.js.map +1 -0
  204. package/dist/features/projects/index.spec.unit.d.ts +1 -0
  205. package/dist/features/projects/index.spec.unit.js +131 -0
  206. package/dist/features/projects/index.spec.unit.js.map +1 -0
  207. package/dist/features/projects/list-projects/feature.d.ts +10 -0
  208. package/dist/features/projects/list-projects/feature.js +25 -0
  209. package/dist/features/projects/list-projects/feature.js.map +1 -0
  210. package/dist/features/projects/list-projects/feature.spec.int.d.ts +1 -0
  211. package/dist/features/projects/list-projects/feature.spec.int.js +54 -0
  212. package/dist/features/projects/list-projects/feature.spec.int.js.map +1 -0
  213. package/dist/features/projects/list-projects/index.d.ts +2 -0
  214. package/dist/features/projects/list-projects/index.js +19 -0
  215. package/dist/features/projects/list-projects/index.js.map +1 -0
  216. package/dist/features/projects/list-projects/schema.d.ts +2 -0
  217. package/dist/features/projects/list-projects/schema.js +6 -0
  218. package/dist/features/projects/list-projects/schema.js.map +1 -0
  219. package/dist/features/projects/schemas.d.ts +64 -0
  220. package/dist/features/projects/schemas.js +76 -0
  221. package/dist/features/projects/schemas.js.map +1 -0
  222. package/dist/features/projects/tool-definitions.d.ts +5 -0
  223. package/dist/features/projects/tool-definitions.js +26 -0
  224. package/dist/features/projects/tool-definitions.js.map +1 -0
  225. package/dist/features/projects/types.d.ts +11 -0
  226. package/dist/features/projects/types.js +3 -0
  227. package/dist/features/projects/types.js.map +1 -0
  228. package/dist/features/pull-requests/add-pull-request-comment/feature.d.ts +13 -0
  229. package/dist/features/pull-requests/add-pull-request-comment/feature.js +130 -0
  230. package/dist/features/pull-requests/add-pull-request-comment/feature.js.map +1 -0
  231. package/dist/features/pull-requests/add-pull-request-comment/feature.spec.int.d.ts +1 -0
  232. package/dist/features/pull-requests/add-pull-request-comment/feature.spec.int.js +186 -0
  233. package/dist/features/pull-requests/add-pull-request-comment/feature.spec.int.js.map +1 -0
  234. package/dist/features/pull-requests/add-pull-request-comment/feature.spec.unit.d.ts +1 -0
  235. package/dist/features/pull-requests/add-pull-request-comment/feature.spec.unit.js +259 -0
  236. package/dist/features/pull-requests/add-pull-request-comment/feature.spec.unit.js.map +1 -0
  237. package/dist/features/pull-requests/add-pull-request-comment/index.d.ts +1 -0
  238. package/dist/features/pull-requests/add-pull-request-comment/index.js +18 -0
  239. package/dist/features/pull-requests/add-pull-request-comment/index.js.map +1 -0
  240. package/dist/features/pull-requests/create-pull-request/feature.d.ts +12 -0
  241. package/dist/features/pull-requests/create-pull-request/feature.js +99 -0
  242. package/dist/features/pull-requests/create-pull-request/feature.js.map +1 -0
  243. package/dist/features/pull-requests/create-pull-request/feature.spec.int.d.ts +1 -0
  244. package/dist/features/pull-requests/create-pull-request/feature.spec.int.js +111 -0
  245. package/dist/features/pull-requests/create-pull-request/feature.spec.int.js.map +1 -0
  246. package/dist/features/pull-requests/create-pull-request/feature.spec.unit.d.ts +1 -0
  247. package/dist/features/pull-requests/create-pull-request/feature.spec.unit.js +112 -0
  248. package/dist/features/pull-requests/create-pull-request/feature.spec.unit.js.map +1 -0
  249. package/dist/features/pull-requests/create-pull-request/index.d.ts +2 -0
  250. package/dist/features/pull-requests/create-pull-request/index.js +19 -0
  251. package/dist/features/pull-requests/create-pull-request/index.js.map +1 -0
  252. package/dist/features/pull-requests/create-pull-request/schema.d.ts +2 -0
  253. package/dist/features/pull-requests/create-pull-request/schema.js +6 -0
  254. package/dist/features/pull-requests/create-pull-request/schema.js.map +1 -0
  255. package/dist/features/pull-requests/get-pull-request/feature.d.ts +6 -0
  256. package/dist/features/pull-requests/get-pull-request/feature.js +22 -0
  257. package/dist/features/pull-requests/get-pull-request/feature.js.map +1 -0
  258. package/dist/features/pull-requests/get-pull-request/feature.spec.int.d.ts +1 -0
  259. package/dist/features/pull-requests/get-pull-request/feature.spec.int.js +109 -0
  260. package/dist/features/pull-requests/get-pull-request/feature.spec.int.js.map +1 -0
  261. package/dist/features/pull-requests/get-pull-request/feature.spec.unit.d.ts +1 -0
  262. package/dist/features/pull-requests/get-pull-request/feature.spec.unit.js +37 -0
  263. package/dist/features/pull-requests/get-pull-request/feature.spec.unit.js.map +1 -0
  264. package/dist/features/pull-requests/get-pull-request/index.d.ts +2 -0
  265. package/dist/features/pull-requests/get-pull-request/index.js +19 -0
  266. package/dist/features/pull-requests/get-pull-request/index.js.map +1 -0
  267. package/dist/features/pull-requests/get-pull-request/schema.d.ts +1 -0
  268. package/dist/features/pull-requests/get-pull-request/schema.js +6 -0
  269. package/dist/features/pull-requests/get-pull-request/schema.js.map +1 -0
  270. package/dist/features/pull-requests/get-pull-request-changes/feature.d.ts +22 -0
  271. package/dist/features/pull-requests/get-pull-request-changes/feature.js +60 -0
  272. package/dist/features/pull-requests/get-pull-request-changes/feature.js.map +1 -0
  273. package/dist/features/pull-requests/get-pull-request-changes/feature.spec.unit.d.ts +1 -0
  274. package/dist/features/pull-requests/get-pull-request-changes/feature.spec.unit.js +77 -0
  275. package/dist/features/pull-requests/get-pull-request-changes/feature.spec.unit.js.map +1 -0
  276. package/dist/features/pull-requests/get-pull-request-changes/index.d.ts +1 -0
  277. package/dist/features/pull-requests/get-pull-request-changes/index.js +18 -0
  278. package/dist/features/pull-requests/get-pull-request-changes/index.js.map +1 -0
  279. package/dist/features/pull-requests/get-pull-request-checks/feature.d.ts +51 -0
  280. package/dist/features/pull-requests/get-pull-request-checks/feature.js +259 -0
  281. package/dist/features/pull-requests/get-pull-request-checks/feature.js.map +1 -0
  282. package/dist/features/pull-requests/get-pull-request-checks/feature.spec.unit.d.ts +1 -0
  283. package/dist/features/pull-requests/get-pull-request-checks/feature.spec.unit.js +138 -0
  284. package/dist/features/pull-requests/get-pull-request-checks/feature.spec.unit.js.map +1 -0
  285. package/dist/features/pull-requests/get-pull-request-checks/index.d.ts +1 -0
  286. package/dist/features/pull-requests/get-pull-request-checks/index.js +18 -0
  287. package/dist/features/pull-requests/get-pull-request-checks/index.js.map +1 -0
  288. package/dist/features/pull-requests/get-pull-request-comments/feature.d.ts +13 -0
  289. package/dist/features/pull-requests/get-pull-request-comments/feature.js +88 -0
  290. package/dist/features/pull-requests/get-pull-request-comments/feature.js.map +1 -0
  291. package/dist/features/pull-requests/get-pull-request-comments/feature.spec.int.d.ts +1 -0
  292. package/dist/features/pull-requests/get-pull-request-comments/feature.spec.int.js +216 -0
  293. package/dist/features/pull-requests/get-pull-request-comments/feature.spec.int.js.map +1 -0
  294. package/dist/features/pull-requests/get-pull-request-comments/feature.spec.unit.d.ts +1 -0
  295. package/dist/features/pull-requests/get-pull-request-comments/feature.spec.unit.js +340 -0
  296. package/dist/features/pull-requests/get-pull-request-comments/feature.spec.unit.js.map +1 -0
  297. package/dist/features/pull-requests/get-pull-request-comments/index.d.ts +1 -0
  298. package/dist/features/pull-requests/get-pull-request-comments/index.js +18 -0
  299. package/dist/features/pull-requests/get-pull-request-comments/index.js.map +1 -0
  300. package/dist/features/pull-requests/index.d.ts +20 -0
  301. package/dist/features/pull-requests/index.js +157 -0
  302. package/dist/features/pull-requests/index.js.map +1 -0
  303. package/dist/features/pull-requests/index.spec.unit.d.ts +1 -0
  304. package/dist/features/pull-requests/index.spec.unit.js +261 -0
  305. package/dist/features/pull-requests/index.spec.unit.js.map +1 -0
  306. package/dist/features/pull-requests/list-pull-requests/feature.d.ts +17 -0
  307. package/dist/features/pull-requests/list-pull-requests/feature.js +81 -0
  308. package/dist/features/pull-requests/list-pull-requests/feature.js.map +1 -0
  309. package/dist/features/pull-requests/list-pull-requests/feature.spec.int.d.ts +1 -0
  310. package/dist/features/pull-requests/list-pull-requests/feature.spec.int.js +124 -0
  311. package/dist/features/pull-requests/list-pull-requests/feature.spec.int.js.map +1 -0
  312. package/dist/features/pull-requests/list-pull-requests/feature.spec.unit.d.ts +1 -0
  313. package/dist/features/pull-requests/list-pull-requests/feature.spec.unit.js +180 -0
  314. package/dist/features/pull-requests/list-pull-requests/feature.spec.unit.js.map +1 -0
  315. package/dist/features/pull-requests/list-pull-requests/index.d.ts +2 -0
  316. package/dist/features/pull-requests/list-pull-requests/index.js +19 -0
  317. package/dist/features/pull-requests/list-pull-requests/index.js.map +1 -0
  318. package/dist/features/pull-requests/list-pull-requests/schema.d.ts +1 -0
  319. package/dist/features/pull-requests/list-pull-requests/schema.js +6 -0
  320. package/dist/features/pull-requests/list-pull-requests/schema.js.map +1 -0
  321. package/dist/features/pull-requests/schemas.d.ts +318 -0
  322. package/dist/features/pull-requests/schemas.js +283 -0
  323. package/dist/features/pull-requests/schemas.js.map +1 -0
  324. package/dist/features/pull-requests/tool-definitions.d.ts +5 -0
  325. package/dist/features/pull-requests/tool-definitions.js +55 -0
  326. package/dist/features/pull-requests/tool-definitions.js.map +1 -0
  327. package/dist/features/pull-requests/types.d.ts +100 -0
  328. package/dist/features/pull-requests/types.js +3 -0
  329. package/dist/features/pull-requests/types.js.map +1 -0
  330. package/dist/features/pull-requests/update-pull-request/feature.d.ts +9 -0
  331. package/dist/features/pull-requests/update-pull-request/feature.js +250 -0
  332. package/dist/features/pull-requests/update-pull-request/feature.js.map +1 -0
  333. package/dist/features/pull-requests/update-pull-request/feature.spec.int.d.ts +1 -0
  334. package/dist/features/pull-requests/update-pull-request/feature.spec.int.js +162 -0
  335. package/dist/features/pull-requests/update-pull-request/feature.spec.int.js.map +1 -0
  336. package/dist/features/pull-requests/update-pull-request/feature.spec.unit.d.ts +1 -0
  337. package/dist/features/pull-requests/update-pull-request/feature.spec.unit.js +280 -0
  338. package/dist/features/pull-requests/update-pull-request/feature.spec.unit.js.map +1 -0
  339. package/dist/features/pull-requests/update-pull-request/index.d.ts +1 -0
  340. package/dist/features/pull-requests/update-pull-request/index.js +18 -0
  341. package/dist/features/pull-requests/update-pull-request/index.js.map +1 -0
  342. package/dist/features/releases/create-release/feature.d.ts +3 -0
  343. package/dist/features/releases/create-release/feature.js +51 -0
  344. package/dist/features/releases/create-release/feature.js.map +1 -0
  345. package/dist/features/releases/create-release/index.d.ts +2 -0
  346. package/dist/features/releases/create-release/index.js +19 -0
  347. package/dist/features/releases/create-release/index.js.map +1 -0
  348. package/dist/features/releases/create-release/schema.d.ts +20 -0
  349. package/dist/features/releases/create-release/schema.js +24 -0
  350. package/dist/features/releases/create-release/schema.js.map +1 -0
  351. package/dist/features/releases/deploy-release-stage/feature.d.ts +9 -0
  352. package/dist/features/releases/deploy-release-stage/feature.js +38 -0
  353. package/dist/features/releases/deploy-release-stage/feature.js.map +1 -0
  354. package/dist/features/releases/deploy-release-stage/index.d.ts +2 -0
  355. package/dist/features/releases/deploy-release-stage/index.js +19 -0
  356. package/dist/features/releases/deploy-release-stage/index.js.map +1 -0
  357. package/dist/features/releases/deploy-release-stage/schema.d.ts +17 -0
  358. package/dist/features/releases/deploy-release-stage/schema.js +20 -0
  359. package/dist/features/releases/deploy-release-stage/schema.js.map +1 -0
  360. package/dist/features/releases/get-release/feature.d.ts +3 -0
  361. package/dist/features/releases/get-release/feature.js +34 -0
  362. package/dist/features/releases/get-release/feature.js.map +1 -0
  363. package/dist/features/releases/get-release/index.d.ts +2 -0
  364. package/dist/features/releases/get-release/index.js +19 -0
  365. package/dist/features/releases/get-release/index.js.map +1 -0
  366. package/dist/features/releases/get-release/schema.d.ts +11 -0
  367. package/dist/features/releases/get-release/schema.js +13 -0
  368. package/dist/features/releases/get-release/schema.js.map +1 -0
  369. package/dist/features/releases/get-release-definition/feature.d.ts +3 -0
  370. package/dist/features/releases/get-release-definition/feature.js +34 -0
  371. package/dist/features/releases/get-release-definition/feature.js.map +1 -0
  372. package/dist/features/releases/get-release-definition/index.d.ts +2 -0
  373. package/dist/features/releases/get-release-definition/index.js +19 -0
  374. package/dist/features/releases/get-release-definition/index.js.map +1 -0
  375. package/dist/features/releases/get-release-definition/schema.d.ts +11 -0
  376. package/dist/features/releases/get-release-definition/schema.js +13 -0
  377. package/dist/features/releases/get-release-definition/schema.js.map +1 -0
  378. package/dist/features/releases/index.d.ts +11 -0
  379. package/dist/features/releases/index.js +121 -0
  380. package/dist/features/releases/index.js.map +1 -0
  381. package/dist/features/releases/list-release-definitions/feature.d.ts +3 -0
  382. package/dist/features/releases/list-release-definitions/feature.js +31 -0
  383. package/dist/features/releases/list-release-definitions/feature.js.map +1 -0
  384. package/dist/features/releases/list-release-definitions/index.d.ts +2 -0
  385. package/dist/features/releases/list-release-definitions/index.js +19 -0
  386. package/dist/features/releases/list-release-definitions/index.js.map +1 -0
  387. package/dist/features/releases/list-release-definitions/schema.d.ts +17 -0
  388. package/dist/features/releases/list-release-definitions/schema.js +24 -0
  389. package/dist/features/releases/list-release-definitions/schema.js.map +1 -0
  390. package/dist/features/releases/list-releases/feature.d.ts +3 -0
  391. package/dist/features/releases/list-releases/feature.js +31 -0
  392. package/dist/features/releases/list-releases/feature.js.map +1 -0
  393. package/dist/features/releases/list-releases/index.d.ts +2 -0
  394. package/dist/features/releases/list-releases/index.js +19 -0
  395. package/dist/features/releases/list-releases/index.js.map +1 -0
  396. package/dist/features/releases/list-releases/schema.d.ts +26 -0
  397. package/dist/features/releases/list-releases/schema.js +30 -0
  398. package/dist/features/releases/list-releases/schema.js.map +1 -0
  399. package/dist/features/releases/tool-definitions.d.ts +2 -0
  400. package/dist/features/releases/tool-definitions.js +49 -0
  401. package/dist/features/releases/tool-definitions.js.map +1 -0
  402. package/dist/features/releases/types.d.ts +32 -0
  403. package/dist/features/releases/types.js +3 -0
  404. package/dist/features/releases/types.js.map +1 -0
  405. package/dist/features/repositories/__test__/test-helpers.d.ts +13 -0
  406. package/dist/features/repositories/__test__/test-helpers.js +35 -0
  407. package/dist/features/repositories/__test__/test-helpers.js.map +1 -0
  408. package/dist/features/repositories/create-branch/feature.d.ts +6 -0
  409. package/dist/features/repositories/create-branch/feature.js +33 -0
  410. package/dist/features/repositories/create-branch/feature.js.map +1 -0
  411. package/dist/features/repositories/create-branch/feature.spec.unit.d.ts +1 -0
  412. package/dist/features/repositories/create-branch/feature.spec.unit.js +36 -0
  413. package/dist/features/repositories/create-branch/feature.spec.unit.js.map +1 -0
  414. package/dist/features/repositories/create-branch/index.d.ts +1 -0
  415. package/dist/features/repositories/create-branch/index.js +18 -0
  416. package/dist/features/repositories/create-branch/index.js.map +1 -0
  417. package/dist/features/repositories/create-commit/feature.d.ts +6 -0
  418. package/dist/features/repositories/create-commit/feature.js +122 -0
  419. package/dist/features/repositories/create-commit/feature.js.map +1 -0
  420. package/dist/features/repositories/create-commit/feature.spec.unit.d.ts +1 -0
  421. package/dist/features/repositories/create-commit/feature.spec.unit.js +157 -0
  422. package/dist/features/repositories/create-commit/feature.spec.unit.js.map +1 -0
  423. package/dist/features/repositories/create-commit/index.d.ts +1 -0
  424. package/dist/features/repositories/create-commit/index.js +18 -0
  425. package/dist/features/repositories/create-commit/index.js.map +1 -0
  426. package/dist/features/repositories/get-all-repositories-tree/feature.d.ts +22 -0
  427. package/dist/features/repositories/get-all-repositories-tree/feature.js +303 -0
  428. package/dist/features/repositories/get-all-repositories-tree/feature.js.map +1 -0
  429. package/dist/features/repositories/get-all-repositories-tree/feature.spec.int.d.ts +1 -0
  430. package/dist/features/repositories/get-all-repositories-tree/feature.spec.int.js +89 -0
  431. package/dist/features/repositories/get-all-repositories-tree/feature.spec.int.js.map +1 -0
  432. package/dist/features/repositories/get-all-repositories-tree/feature.spec.unit.d.ts +1 -0
  433. package/dist/features/repositories/get-all-repositories-tree/feature.spec.unit.js +391 -0
  434. package/dist/features/repositories/get-all-repositories-tree/feature.spec.unit.js.map +1 -0
  435. package/dist/features/repositories/get-all-repositories-tree/index.d.ts +2 -0
  436. package/dist/features/repositories/get-all-repositories-tree/index.js +19 -0
  437. package/dist/features/repositories/get-all-repositories-tree/index.js.map +1 -0
  438. package/dist/features/repositories/get-all-repositories-tree/schema.d.ts +2 -0
  439. package/dist/features/repositories/get-all-repositories-tree/schema.js +6 -0
  440. package/dist/features/repositories/get-all-repositories-tree/schema.js.map +1 -0
  441. package/dist/features/repositories/get-file-content/feature.d.ts +23 -0
  442. package/dist/features/repositories/get-file-content/feature.js +96 -0
  443. package/dist/features/repositories/get-file-content/feature.js.map +1 -0
  444. package/dist/features/repositories/get-file-content/feature.spec.int.d.ts +1 -0
  445. package/dist/features/repositories/get-file-content/feature.spec.int.js +86 -0
  446. package/dist/features/repositories/get-file-content/feature.spec.int.js.map +1 -0
  447. package/dist/features/repositories/get-file-content/feature.spec.unit.d.ts +1 -0
  448. package/dist/features/repositories/get-file-content/feature.spec.unit.js +128 -0
  449. package/dist/features/repositories/get-file-content/feature.spec.unit.js.map +1 -0
  450. package/dist/features/repositories/get-file-content/index.d.ts +2 -0
  451. package/dist/features/repositories/get-file-content/index.js +19 -0
  452. package/dist/features/repositories/get-file-content/index.js.map +1 -0
  453. package/dist/features/repositories/get-file-content/schema.d.ts +2 -0
  454. package/dist/features/repositories/get-file-content/schema.js +6 -0
  455. package/dist/features/repositories/get-file-content/schema.js.map +1 -0
  456. package/dist/features/repositories/get-repository/feature.d.ts +12 -0
  457. package/dist/features/repositories/get-repository/feature.js +30 -0
  458. package/dist/features/repositories/get-repository/feature.js.map +1 -0
  459. package/dist/features/repositories/get-repository/feature.spec.int.d.ts +1 -0
  460. package/dist/features/repositories/get-repository/feature.spec.int.js +44 -0
  461. package/dist/features/repositories/get-repository/feature.spec.int.js.map +1 -0
  462. package/dist/features/repositories/get-repository/feature.spec.unit.d.ts +1 -0
  463. package/dist/features/repositories/get-repository/feature.spec.unit.js +41 -0
  464. package/dist/features/repositories/get-repository/feature.spec.unit.js.map +1 -0
  465. package/dist/features/repositories/get-repository/index.d.ts +2 -0
  466. package/dist/features/repositories/get-repository/index.js +19 -0
  467. package/dist/features/repositories/get-repository/index.js.map +1 -0
  468. package/dist/features/repositories/get-repository/schema.d.ts +2 -0
  469. package/dist/features/repositories/get-repository/schema.js +6 -0
  470. package/dist/features/repositories/get-repository/schema.js.map +1 -0
  471. package/dist/features/repositories/get-repository-details/feature.d.ts +11 -0
  472. package/dist/features/repositories/get-repository-details/feature.js +67 -0
  473. package/dist/features/repositories/get-repository-details/feature.js.map +1 -0
  474. package/dist/features/repositories/get-repository-details/feature.spec.int.d.ts +1 -0
  475. package/dist/features/repositories/get-repository-details/feature.spec.int.js +119 -0
  476. package/dist/features/repositories/get-repository-details/feature.spec.int.js.map +1 -0
  477. package/dist/features/repositories/get-repository-details/feature.spec.unit.d.ts +1 -0
  478. package/dist/features/repositories/get-repository-details/feature.spec.unit.js +255 -0
  479. package/dist/features/repositories/get-repository-details/feature.spec.unit.js.map +1 -0
  480. package/dist/features/repositories/get-repository-details/index.d.ts +2 -0
  481. package/dist/features/repositories/get-repository-details/index.js +19 -0
  482. package/dist/features/repositories/get-repository-details/index.js.map +1 -0
  483. package/dist/features/repositories/get-repository-details/schema.d.ts +2 -0
  484. package/dist/features/repositories/get-repository-details/schema.js +6 -0
  485. package/dist/features/repositories/get-repository-details/schema.js.map +1 -0
  486. package/dist/features/repositories/get-repository-tree/feature.d.ts +6 -0
  487. package/dist/features/repositories/get-repository-tree/feature.js +65 -0
  488. package/dist/features/repositories/get-repository-tree/feature.js.map +1 -0
  489. package/dist/features/repositories/get-repository-tree/feature.spec.unit.d.ts +1 -0
  490. package/dist/features/repositories/get-repository-tree/feature.spec.unit.js +69 -0
  491. package/dist/features/repositories/get-repository-tree/feature.spec.unit.js.map +1 -0
  492. package/dist/features/repositories/get-repository-tree/index.d.ts +1 -0
  493. package/dist/features/repositories/get-repository-tree/index.js +18 -0
  494. package/dist/features/repositories/get-repository-tree/index.js.map +1 -0
  495. package/dist/features/repositories/index.d.ts +21 -0
  496. package/dist/features/repositories/index.js +179 -0
  497. package/dist/features/repositories/index.js.map +1 -0
  498. package/dist/features/repositories/index.spec.unit.d.ts +1 -0
  499. package/dist/features/repositories/index.spec.unit.js +291 -0
  500. package/dist/features/repositories/index.spec.unit.js.map +1 -0
  501. package/dist/features/repositories/list-commits/feature.d.ts +6 -0
  502. package/dist/features/repositories/list-commits/feature.js +75 -0
  503. package/dist/features/repositories/list-commits/feature.js.map +1 -0
  504. package/dist/features/repositories/list-commits/feature.spec.unit.d.ts +1 -0
  505. package/dist/features/repositories/list-commits/feature.spec.unit.js +58 -0
  506. package/dist/features/repositories/list-commits/feature.spec.unit.js.map +1 -0
  507. package/dist/features/repositories/list-commits/index.d.ts +1 -0
  508. package/dist/features/repositories/list-commits/index.js +18 -0
  509. package/dist/features/repositories/list-commits/index.js.map +1 -0
  510. package/dist/features/repositories/list-repositories/feature.d.ts +10 -0
  511. package/dist/features/repositories/list-repositories/feature.js +25 -0
  512. package/dist/features/repositories/list-repositories/feature.js.map +1 -0
  513. package/dist/features/repositories/list-repositories/feature.spec.int.d.ts +1 -0
  514. package/dist/features/repositories/list-repositories/feature.spec.int.js +56 -0
  515. package/dist/features/repositories/list-repositories/feature.spec.int.js.map +1 -0
  516. package/dist/features/repositories/list-repositories/feature.spec.unit.d.ts +1 -0
  517. package/dist/features/repositories/list-repositories/feature.spec.unit.js +59 -0
  518. package/dist/features/repositories/list-repositories/feature.spec.unit.js.map +1 -0
  519. package/dist/features/repositories/list-repositories/index.d.ts +2 -0
  520. package/dist/features/repositories/list-repositories/index.js +19 -0
  521. package/dist/features/repositories/list-repositories/index.js.map +1 -0
  522. package/dist/features/repositories/list-repositories/schema.d.ts +2 -0
  523. package/dist/features/repositories/list-repositories/schema.js +6 -0
  524. package/dist/features/repositories/list-repositories/schema.js.map +1 -0
  525. package/dist/features/repositories/schemas.d.ts +237 -0
  526. package/dist/features/repositories/schemas.js +306 -0
  527. package/dist/features/repositories/schemas.js.map +1 -0
  528. package/dist/features/repositories/tool-definitions.d.ts +5 -0
  529. package/dist/features/repositories/tool-definitions.js +94 -0
  530. package/dist/features/repositories/tool-definitions.js.map +1 -0
  531. package/dist/features/repositories/types.d.ts +167 -0
  532. package/dist/features/repositories/types.js +3 -0
  533. package/dist/features/repositories/types.js.map +1 -0
  534. package/dist/features/search/index.d.ts +15 -0
  535. package/dist/features/search/index.js +65 -0
  536. package/dist/features/search/index.js.map +1 -0
  537. package/dist/features/search/index.spec.unit.d.ts +1 -0
  538. package/dist/features/search/index.spec.unit.js +143 -0
  539. package/dist/features/search/index.spec.unit.js.map +1 -0
  540. package/dist/features/search/schemas.d.ts +171 -0
  541. package/dist/features/search/schemas.js +159 -0
  542. package/dist/features/search/schemas.js.map +1 -0
  543. package/dist/features/search/schemas.spec.unit.d.ts +1 -0
  544. package/dist/features/search/schemas.spec.unit.js +39 -0
  545. package/dist/features/search/schemas.spec.unit.js.map +1 -0
  546. package/dist/features/search/search-code/feature.d.ts +10 -0
  547. package/dist/features/search/search-code/feature.js +177 -0
  548. package/dist/features/search/search-code/feature.js.map +1 -0
  549. package/dist/features/search/search-code/feature.spec.int.d.ts +1 -0
  550. package/dist/features/search/search-code/feature.spec.int.js +192 -0
  551. package/dist/features/search/search-code/feature.spec.int.js.map +1 -0
  552. package/dist/features/search/search-code/feature.spec.unit.d.ts +1 -0
  553. package/dist/features/search/search-code/feature.spec.unit.js +968 -0
  554. package/dist/features/search/search-code/feature.spec.unit.js.map +1 -0
  555. package/dist/features/search/search-code/index.d.ts +2 -0
  556. package/dist/features/search/search-code/index.js +19 -0
  557. package/dist/features/search/search-code/index.js.map +1 -0
  558. package/dist/features/search/search-wiki/feature.d.ts +10 -0
  559. package/dist/features/search/search-wiki/feature.js +132 -0
  560. package/dist/features/search/search-wiki/feature.js.map +1 -0
  561. package/dist/features/search/search-wiki/feature.spec.int.d.ts +1 -0
  562. package/dist/features/search/search-wiki/feature.spec.int.js +67 -0
  563. package/dist/features/search/search-wiki/feature.spec.int.js.map +1 -0
  564. package/dist/features/search/search-wiki/feature.spec.unit.d.ts +1 -0
  565. package/dist/features/search/search-wiki/feature.spec.unit.js +176 -0
  566. package/dist/features/search/search-wiki/feature.spec.unit.js.map +1 -0
  567. package/dist/features/search/search-wiki/index.d.ts +1 -0
  568. package/dist/features/search/search-wiki/index.js +18 -0
  569. package/dist/features/search/search-wiki/index.js.map +1 -0
  570. package/dist/features/search/search-work-items/feature.d.ts +10 -0
  571. package/dist/features/search/search-work-items/feature.js +118 -0
  572. package/dist/features/search/search-work-items/feature.js.map +1 -0
  573. package/dist/features/search/search-work-items/feature.spec.int.d.ts +1 -0
  574. package/dist/features/search/search-work-items/feature.spec.int.js +150 -0
  575. package/dist/features/search/search-work-items/feature.spec.int.js.map +1 -0
  576. package/dist/features/search/search-work-items/feature.spec.unit.d.ts +1 -0
  577. package/dist/features/search/search-work-items/feature.spec.unit.js +342 -0
  578. package/dist/features/search/search-work-items/feature.spec.unit.js.map +1 -0
  579. package/dist/features/search/search-work-items/index.d.ts +1 -0
  580. package/dist/features/search/search-work-items/index.js +18 -0
  581. package/dist/features/search/search-work-items/index.js.map +1 -0
  582. package/dist/features/search/tool-definitions.d.ts +5 -0
  583. package/dist/features/search/tool-definitions.js +26 -0
  584. package/dist/features/search/tool-definitions.js.map +1 -0
  585. package/dist/features/search/types.d.ts +537 -0
  586. package/dist/features/search/types.js +3 -0
  587. package/dist/features/search/types.js.map +1 -0
  588. package/dist/features/users/get-me/feature.d.ts +12 -0
  589. package/dist/features/users/get-me/feature.js +96 -0
  590. package/dist/features/users/get-me/feature.js.map +1 -0
  591. package/dist/features/users/get-me/feature.spec.int.d.ts +1 -0
  592. package/dist/features/users/get-me/feature.spec.int.js +33 -0
  593. package/dist/features/users/get-me/feature.spec.int.js.map +1 -0
  594. package/dist/features/users/get-me/feature.spec.unit.d.ts +1 -0
  595. package/dist/features/users/get-me/feature.spec.unit.js +164 -0
  596. package/dist/features/users/get-me/feature.spec.unit.js.map +1 -0
  597. package/dist/features/users/get-me/index.d.ts +2 -0
  598. package/dist/features/users/get-me/index.js +19 -0
  599. package/dist/features/users/get-me/index.js.map +1 -0
  600. package/dist/features/users/get-me/schema.d.ts +2 -0
  601. package/dist/features/users/get-me/schema.js +6 -0
  602. package/dist/features/users/get-me/schema.js.map +1 -0
  603. package/dist/features/users/index.d.ts +17 -0
  604. package/dist/features/users/index.js +52 -0
  605. package/dist/features/users/index.js.map +1 -0
  606. package/dist/features/users/index.spec.unit.d.ts +1 -0
  607. package/dist/features/users/index.spec.unit.js +71 -0
  608. package/dist/features/users/index.spec.unit.js.map +1 -0
  609. package/dist/features/users/schemas.d.ts +5 -0
  610. package/dist/features/users/schemas.js +9 -0
  611. package/dist/features/users/schemas.js.map +1 -0
  612. package/dist/features/users/tool-definitions.d.ts +5 -0
  613. package/dist/features/users/tool-definitions.js +16 -0
  614. package/dist/features/users/tool-definitions.js.map +1 -0
  615. package/dist/features/users/types.d.ts +17 -0
  616. package/dist/features/users/types.js +3 -0
  617. package/dist/features/users/types.js.map +1 -0
  618. package/dist/features/wikis/create-wiki/feature.d.ts +49 -0
  619. package/dist/features/wikis/create-wiki/feature.js +56 -0
  620. package/dist/features/wikis/create-wiki/feature.js.map +1 -0
  621. package/dist/features/wikis/create-wiki/feature.spec.int.d.ts +1 -0
  622. package/dist/features/wikis/create-wiki/feature.spec.int.js +44 -0
  623. package/dist/features/wikis/create-wiki/feature.spec.int.js.map +1 -0
  624. package/dist/features/wikis/create-wiki/feature.spec.unit.d.ts +1 -0
  625. package/dist/features/wikis/create-wiki/feature.spec.unit.js +168 -0
  626. package/dist/features/wikis/create-wiki/feature.spec.unit.js.map +1 -0
  627. package/dist/features/wikis/create-wiki/index.d.ts +2 -0
  628. package/dist/features/wikis/create-wiki/index.js +9 -0
  629. package/dist/features/wikis/create-wiki/index.js.map +1 -0
  630. package/dist/features/wikis/create-wiki/schema.d.ts +53 -0
  631. package/dist/features/wikis/create-wiki/schema.js +60 -0
  632. package/dist/features/wikis/create-wiki/schema.js.map +1 -0
  633. package/dist/features/wikis/create-wiki-page/feature.d.ts +18 -0
  634. package/dist/features/wikis/create-wiki-page/feature.js +95 -0
  635. package/dist/features/wikis/create-wiki-page/feature.js.map +1 -0
  636. package/dist/features/wikis/create-wiki-page/feature.spec.int.d.ts +1 -0
  637. package/dist/features/wikis/create-wiki-page/feature.spec.int.js +274 -0
  638. package/dist/features/wikis/create-wiki-page/feature.spec.int.js.map +1 -0
  639. package/dist/features/wikis/create-wiki-page/feature.spec.unit.d.ts +1 -0
  640. package/dist/features/wikis/create-wiki-page/feature.spec.unit.js +141 -0
  641. package/dist/features/wikis/create-wiki-page/feature.spec.unit.js.map +1 -0
  642. package/dist/features/wikis/create-wiki-page/index.d.ts +2 -0
  643. package/dist/features/wikis/create-wiki-page/index.js +8 -0
  644. package/dist/features/wikis/create-wiki-page/index.js.map +1 -0
  645. package/dist/features/wikis/create-wiki-page/schema.d.ts +26 -0
  646. package/dist/features/wikis/create-wiki-page/schema.js +36 -0
  647. package/dist/features/wikis/create-wiki-page/schema.js.map +1 -0
  648. package/dist/features/wikis/get-wiki-page/feature.d.ts +33 -0
  649. package/dist/features/wikis/get-wiki-page/feature.js +68 -0
  650. package/dist/features/wikis/get-wiki-page/feature.js.map +1 -0
  651. package/dist/features/wikis/get-wiki-page/feature.spec.int.d.ts +1 -0
  652. package/dist/features/wikis/get-wiki-page/feature.spec.int.js +58 -0
  653. package/dist/features/wikis/get-wiki-page/feature.spec.int.js.map +1 -0
  654. package/dist/features/wikis/get-wiki-page/feature.spec.unit.d.ts +1 -0
  655. package/dist/features/wikis/get-wiki-page/feature.spec.unit.js +121 -0
  656. package/dist/features/wikis/get-wiki-page/feature.spec.unit.js.map +1 -0
  657. package/dist/features/wikis/get-wiki-page/index.d.ts +2 -0
  658. package/dist/features/wikis/get-wiki-page/index.js +8 -0
  659. package/dist/features/wikis/get-wiki-page/index.js.map +1 -0
  660. package/dist/features/wikis/get-wiki-page/schema.d.ts +20 -0
  661. package/dist/features/wikis/get-wiki-page/schema.js +23 -0
  662. package/dist/features/wikis/get-wiki-page/schema.js.map +1 -0
  663. package/dist/features/wikis/get-wikis/feature.d.ts +25 -0
  664. package/dist/features/wikis/get-wikis/feature.js +37 -0
  665. package/dist/features/wikis/get-wikis/feature.js.map +1 -0
  666. package/dist/features/wikis/get-wikis/feature.spec.int.d.ts +1 -0
  667. package/dist/features/wikis/get-wikis/feature.spec.int.js +34 -0
  668. package/dist/features/wikis/get-wikis/feature.spec.int.js.map +1 -0
  669. package/dist/features/wikis/get-wikis/feature.spec.unit.d.ts +1 -0
  670. package/dist/features/wikis/get-wikis/feature.spec.unit.js +83 -0
  671. package/dist/features/wikis/get-wikis/feature.spec.unit.js.map +1 -0
  672. package/dist/features/wikis/get-wikis/index.d.ts +2 -0
  673. package/dist/features/wikis/get-wikis/index.js +8 -0
  674. package/dist/features/wikis/get-wikis/index.js.map +1 -0
  675. package/dist/features/wikis/get-wikis/schema.d.ts +14 -0
  676. package/dist/features/wikis/get-wikis/schema.js +21 -0
  677. package/dist/features/wikis/get-wikis/schema.js.map +1 -0
  678. package/dist/features/wikis/index.d.ts +16 -0
  679. package/dist/features/wikis/index.js +141 -0
  680. package/dist/features/wikis/index.js.map +1 -0
  681. package/dist/features/wikis/index.spec.unit.d.ts +1 -0
  682. package/dist/features/wikis/index.spec.unit.js +214 -0
  683. package/dist/features/wikis/index.spec.unit.js.map +1 -0
  684. package/dist/features/wikis/list-wiki-pages/feature.d.ts +20 -0
  685. package/dist/features/wikis/list-wiki-pages/feature.js +79 -0
  686. package/dist/features/wikis/list-wiki-pages/feature.js.map +1 -0
  687. package/dist/features/wikis/list-wiki-pages/feature.spec.int.d.ts +1 -0
  688. package/dist/features/wikis/list-wiki-pages/feature.spec.int.js +230 -0
  689. package/dist/features/wikis/list-wiki-pages/feature.spec.int.js.map +1 -0
  690. package/dist/features/wikis/list-wiki-pages/feature.spec.unit.d.ts +1 -0
  691. package/dist/features/wikis/list-wiki-pages/feature.spec.unit.js +427 -0
  692. package/dist/features/wikis/list-wiki-pages/feature.spec.unit.js.map +1 -0
  693. package/dist/features/wikis/list-wiki-pages/index.d.ts +2 -0
  694. package/dist/features/wikis/list-wiki-pages/index.js +8 -0
  695. package/dist/features/wikis/list-wiki-pages/index.js.map +1 -0
  696. package/dist/features/wikis/list-wiki-pages/schema.d.ts +18 -0
  697. package/dist/features/wikis/list-wiki-pages/schema.js +22 -0
  698. package/dist/features/wikis/list-wiki-pages/schema.js.map +1 -0
  699. package/dist/features/wikis/tool-definitions.d.ts +5 -0
  700. package/dist/features/wikis/tool-definitions.js +46 -0
  701. package/dist/features/wikis/tool-definitions.js.map +1 -0
  702. package/dist/features/wikis/update-wiki-page/feature.d.ts +12 -0
  703. package/dist/features/wikis/update-wiki-page/feature.js +63 -0
  704. package/dist/features/wikis/update-wiki-page/feature.js.map +1 -0
  705. package/dist/features/wikis/update-wiki-page/feature.spec.int.d.ts +1 -0
  706. package/dist/features/wikis/update-wiki-page/feature.spec.int.js +39 -0
  707. package/dist/features/wikis/update-wiki-page/feature.spec.int.js.map +1 -0
  708. package/dist/features/wikis/update-wiki-page/index.d.ts +2 -0
  709. package/dist/features/wikis/update-wiki-page/index.js +8 -0
  710. package/dist/features/wikis/update-wiki-page/index.js.map +1 -0
  711. package/dist/features/wikis/update-wiki-page/schema.d.ts +26 -0
  712. package/dist/features/wikis/update-wiki-page/schema.js +32 -0
  713. package/dist/features/wikis/update-wiki-page/schema.js.map +1 -0
  714. package/dist/features/work-items/__test__/fixtures.d.ts +9 -0
  715. package/dist/features/work-items/__test__/fixtures.js +28 -0
  716. package/dist/features/work-items/__test__/fixtures.js.map +1 -0
  717. package/dist/features/work-items/__test__/test-helpers.d.ts +13 -0
  718. package/dist/features/work-items/__test__/test-helpers.js +35 -0
  719. package/dist/features/work-items/__test__/test-helpers.js.map +1 -0
  720. package/dist/features/work-items/__test__/test-utils.d.ts +17 -0
  721. package/dist/features/work-items/__test__/test-utils.js +39 -0
  722. package/dist/features/work-items/__test__/test-utils.js.map +1 -0
  723. package/dist/features/work-items/create-work-item/feature.d.ts +12 -0
  724. package/dist/features/work-items/create-work-item/feature.js +99 -0
  725. package/dist/features/work-items/create-work-item/feature.js.map +1 -0
  726. package/dist/features/work-items/create-work-item/feature.spec.int.d.ts +1 -0
  727. package/dist/features/work-items/create-work-item/feature.spec.int.js +105 -0
  728. package/dist/features/work-items/create-work-item/feature.spec.int.js.map +1 -0
  729. package/dist/features/work-items/create-work-item/feature.spec.unit.d.ts +1 -0
  730. package/dist/features/work-items/create-work-item/feature.spec.unit.js +46 -0
  731. package/dist/features/work-items/create-work-item/feature.spec.unit.js.map +1 -0
  732. package/dist/features/work-items/create-work-item/index.d.ts +2 -0
  733. package/dist/features/work-items/create-work-item/index.js +19 -0
  734. package/dist/features/work-items/create-work-item/index.js.map +1 -0
  735. package/dist/features/work-items/create-work-item/schema.d.ts +2 -0
  736. package/dist/features/work-items/create-work-item/schema.js +6 -0
  737. package/dist/features/work-items/create-work-item/schema.js.map +1 -0
  738. package/dist/features/work-items/get-work-item/feature.d.ts +12 -0
  739. package/dist/features/work-items/get-work-item/feature.js +69 -0
  740. package/dist/features/work-items/get-work-item/feature.js.map +1 -0
  741. package/dist/features/work-items/get-work-item/feature.spec.int.d.ts +1 -0
  742. package/dist/features/work-items/get-work-item/feature.spec.int.js +138 -0
  743. package/dist/features/work-items/get-work-item/feature.spec.int.js.map +1 -0
  744. package/dist/features/work-items/get-work-item/feature.spec.unit.d.ts +1 -0
  745. package/dist/features/work-items/get-work-item/feature.spec.unit.js +31 -0
  746. package/dist/features/work-items/get-work-item/feature.spec.unit.js.map +1 -0
  747. package/dist/features/work-items/get-work-item/index.d.ts +2 -0
  748. package/dist/features/work-items/get-work-item/index.js +19 -0
  749. package/dist/features/work-items/get-work-item/index.js.map +1 -0
  750. package/dist/features/work-items/get-work-item/schema.d.ts +2 -0
  751. package/dist/features/work-items/get-work-item/schema.js +6 -0
  752. package/dist/features/work-items/get-work-item/schema.js.map +1 -0
  753. package/dist/features/work-items/index.d.ts +17 -0
  754. package/dist/features/work-items/index.js +122 -0
  755. package/dist/features/work-items/index.js.map +1 -0
  756. package/dist/features/work-items/index.spec.unit.d.ts +1 -0
  757. package/dist/features/work-items/index.spec.unit.js +232 -0
  758. package/dist/features/work-items/index.spec.unit.js.map +1 -0
  759. package/dist/features/work-items/list-work-items/feature.d.ts +10 -0
  760. package/dist/features/work-items/list-work-items/feature.js +89 -0
  761. package/dist/features/work-items/list-work-items/feature.js.map +1 -0
  762. package/dist/features/work-items/list-work-items/feature.spec.int.d.ts +1 -0
  763. package/dist/features/work-items/list-work-items/feature.spec.int.js +103 -0
  764. package/dist/features/work-items/list-work-items/feature.spec.int.js.map +1 -0
  765. package/dist/features/work-items/list-work-items/feature.spec.unit.d.ts +1 -0
  766. package/dist/features/work-items/list-work-items/feature.spec.unit.js +95 -0
  767. package/dist/features/work-items/list-work-items/feature.spec.unit.js.map +1 -0
  768. package/dist/features/work-items/list-work-items/index.d.ts +2 -0
  769. package/dist/features/work-items/list-work-items/index.js +19 -0
  770. package/dist/features/work-items/list-work-items/index.js.map +1 -0
  771. package/dist/features/work-items/list-work-items/schema.d.ts +2 -0
  772. package/dist/features/work-items/list-work-items/schema.js +6 -0
  773. package/dist/features/work-items/list-work-items/schema.js.map +1 -0
  774. package/dist/features/work-items/manage-work-item-link/feature.d.ts +24 -0
  775. package/dist/features/work-items/manage-work-item-link/feature.js +76 -0
  776. package/dist/features/work-items/manage-work-item-link/feature.js.map +1 -0
  777. package/dist/features/work-items/manage-work-item-link/feature.spec.int.d.ts +1 -0
  778. package/dist/features/work-items/manage-work-item-link/feature.spec.int.js +75 -0
  779. package/dist/features/work-items/manage-work-item-link/feature.spec.int.js.map +1 -0
  780. package/dist/features/work-items/manage-work-item-link/feature.spec.unit.d.ts +1 -0
  781. package/dist/features/work-items/manage-work-item-link/feature.spec.unit.js +137 -0
  782. package/dist/features/work-items/manage-work-item-link/feature.spec.unit.js.map +1 -0
  783. package/dist/features/work-items/manage-work-item-link/index.d.ts +2 -0
  784. package/dist/features/work-items/manage-work-item-link/index.js +8 -0
  785. package/dist/features/work-items/manage-work-item-link/index.js.map +1 -0
  786. package/dist/features/work-items/manage-work-item-link/schema.d.ts +2 -0
  787. package/dist/features/work-items/manage-work-item-link/schema.js +6 -0
  788. package/dist/features/work-items/manage-work-item-link/schema.js.map +1 -0
  789. package/dist/features/work-items/schemas.d.ts +147 -0
  790. package/dist/features/work-items/schemas.js +134 -0
  791. package/dist/features/work-items/schemas.js.map +1 -0
  792. package/dist/features/work-items/tool-definitions.d.ts +5 -0
  793. package/dist/features/work-items/tool-definitions.js +36 -0
  794. package/dist/features/work-items/tool-definitions.js.map +1 -0
  795. package/dist/features/work-items/types.d.ts +39 -0
  796. package/dist/features/work-items/types.js +3 -0
  797. package/dist/features/work-items/types.js.map +1 -0
  798. package/dist/features/work-items/update-work-item/feature.d.ts +12 -0
  799. package/dist/features/work-items/update-work-item/feature.js +103 -0
  800. package/dist/features/work-items/update-work-item/feature.js.map +1 -0
  801. package/dist/features/work-items/update-work-item/feature.spec.int.d.ts +1 -0
  802. package/dist/features/work-items/update-work-item/feature.spec.int.js +84 -0
  803. package/dist/features/work-items/update-work-item/feature.spec.int.js.map +1 -0
  804. package/dist/features/work-items/update-work-item/feature.spec.unit.d.ts +1 -0
  805. package/dist/features/work-items/update-work-item/feature.spec.unit.js +38 -0
  806. package/dist/features/work-items/update-work-item/feature.spec.unit.js.map +1 -0
  807. package/dist/features/work-items/update-work-item/index.d.ts +2 -0
  808. package/dist/features/work-items/update-work-item/index.js +19 -0
  809. package/dist/features/work-items/update-work-item/index.js.map +1 -0
  810. package/dist/features/work-items/update-work-item/schema.d.ts +2 -0
  811. package/dist/features/work-items/update-work-item/schema.js +6 -0
  812. package/dist/features/work-items/update-work-item/schema.js.map +1 -0
  813. package/dist/index.d.ts +14 -0
  814. package/dist/index.js +99 -0
  815. package/dist/index.js.map +1 -0
  816. package/dist/index.spec.unit.d.ts +1 -0
  817. package/dist/index.spec.unit.js +83 -0
  818. package/dist/index.spec.unit.js.map +1 -0
  819. package/dist/server.d.ts +21 -0
  820. package/dist/server.js +382 -0
  821. package/dist/server.js.map +1 -0
  822. package/dist/server.spec.e2e.d.ts +1 -0
  823. package/dist/server.spec.e2e.js +229 -0
  824. package/dist/server.spec.e2e.js.map +1 -0
  825. package/dist/setup-env.spec.unit.d.ts +1 -0
  826. package/dist/setup-env.spec.unit.js +146 -0
  827. package/dist/setup-env.spec.unit.js.map +1 -0
  828. package/dist/shared/api/client.d.ts +91 -0
  829. package/dist/shared/api/client.js +242 -0
  830. package/dist/shared/api/client.js.map +1 -0
  831. package/dist/shared/api/index.d.ts +1 -0
  832. package/dist/shared/api/index.js +18 -0
  833. package/dist/shared/api/index.js.map +1 -0
  834. package/dist/shared/auth/auth-factory.d.ts +43 -0
  835. package/dist/shared/auth/auth-factory.js +140 -0
  836. package/dist/shared/auth/auth-factory.js.map +1 -0
  837. package/dist/shared/auth/auth-factory.spec.unit.d.ts +1 -0
  838. package/dist/shared/auth/auth-factory.spec.unit.js +38 -0
  839. package/dist/shared/auth/auth-factory.spec.unit.js.map +1 -0
  840. package/dist/shared/auth/client-factory.d.ts +109 -0
  841. package/dist/shared/auth/client-factory.js +272 -0
  842. package/dist/shared/auth/client-factory.js.map +1 -0
  843. package/dist/shared/auth/index.d.ts +11 -0
  844. package/dist/shared/auth/index.js +18 -0
  845. package/dist/shared/auth/index.js.map +1 -0
  846. package/dist/shared/azure-devops-url.d.ts +17 -0
  847. package/dist/shared/azure-devops-url.js +120 -0
  848. package/dist/shared/azure-devops-url.js.map +1 -0
  849. package/dist/shared/azure-devops-url.spec.unit.d.ts +1 -0
  850. package/dist/shared/azure-devops-url.spec.unit.js +103 -0
  851. package/dist/shared/azure-devops-url.spec.unit.js.map +1 -0
  852. package/dist/shared/config/index.d.ts +1 -0
  853. package/dist/shared/config/index.js +18 -0
  854. package/dist/shared/config/index.js.map +1 -0
  855. package/dist/shared/config/version.d.ts +4 -0
  856. package/dist/shared/config/version.js +8 -0
  857. package/dist/shared/config/version.js.map +1 -0
  858. package/dist/shared/enums/index.d.ts +40 -0
  859. package/dist/shared/enums/index.js +87 -0
  860. package/dist/shared/enums/index.js.map +1 -0
  861. package/dist/shared/enums/index.spec.unit.d.ts +1 -0
  862. package/dist/shared/enums/index.spec.unit.js +75 -0
  863. package/dist/shared/enums/index.spec.unit.js.map +1 -0
  864. package/dist/shared/errors/azure-devops-errors.d.ts +107 -0
  865. package/dist/shared/errors/azure-devops-errors.js +161 -0
  866. package/dist/shared/errors/azure-devops-errors.js.map +1 -0
  867. package/dist/shared/errors/handle-request-error.d.ts +31 -0
  868. package/dist/shared/errors/handle-request-error.js +98 -0
  869. package/dist/shared/errors/handle-request-error.js.map +1 -0
  870. package/dist/shared/errors/index.d.ts +1 -0
  871. package/dist/shared/errors/index.js +18 -0
  872. package/dist/shared/errors/index.js.map +1 -0
  873. package/dist/shared/test/test-helpers.d.ts +20 -0
  874. package/dist/shared/test/test-helpers.js +57 -0
  875. package/dist/shared/test/test-helpers.js.map +1 -0
  876. package/dist/shared/types/config.d.ts +27 -0
  877. package/dist/shared/types/config.js +3 -0
  878. package/dist/shared/types/config.js.map +1 -0
  879. package/dist/shared/types/index.d.ts +1 -0
  880. package/dist/shared/types/index.js +18 -0
  881. package/dist/shared/types/index.js.map +1 -0
  882. package/dist/shared/types/request-handler.d.ts +21 -0
  883. package/dist/shared/types/request-handler.js +3 -0
  884. package/dist/shared/types/request-handler.js.map +1 -0
  885. package/dist/shared/types/tool-definition.d.ts +10 -0
  886. package/dist/shared/types/tool-definition.js +3 -0
  887. package/dist/shared/types/tool-definition.js.map +1 -0
  888. package/dist/shared/utils/serialize.d.ts +5 -0
  889. package/dist/shared/utils/serialize.js +15 -0
  890. package/dist/shared/utils/serialize.js.map +1 -0
  891. package/dist/utils/environment.d.ts +15 -0
  892. package/dist/utils/environment.js +52 -0
  893. package/dist/utils/environment.js.map +1 -0
  894. package/dist/utils/environment.spec.unit.d.ts +1 -0
  895. package/dist/utils/environment.spec.unit.js +64 -0
  896. package/dist/utils/environment.spec.unit.js.map +1 -0
  897. package/docs/SOLUTION_SUMMARY.md +145 -0
  898. package/docs/authentication.md +267 -0
  899. package/docs/azure-identity-authentication.md +187 -0
  900. package/docs/ci-setup.md +61 -0
  901. package/docs/examples/README.md +33 -0
  902. package/docs/examples/azure-cli-authentication.env +25 -0
  903. package/docs/examples/azure-identity-authentication.env +33 -0
  904. package/docs/examples/pat-authentication.env +24 -0
  905. package/docs/important-knowledge/azure-devops-rest-api-research.md +88 -0
  906. package/docs/important-knowledge/llm-tldr-cli.md +37 -0
  907. package/docs/npm-trusted-publishers-migration.md +142 -0
  908. package/docs/release-troubleshooting.md +153 -0
  909. package/docs/testing/README.md +140 -0
  910. package/docs/testing/setup.md +72 -0
  911. package/docs/tools/README.md +73 -0
  912. package/docs/tools/core-navigation.md +114 -0
  913. package/docs/tools/organizations.md +73 -0
  914. package/docs/tools/pipelines.md +532 -0
  915. package/docs/tools/projects.md +114 -0
  916. package/docs/tools/pull-requests.md +1108 -0
  917. package/docs/tools/repositories.md +610 -0
  918. package/docs/tools/resources.md +133 -0
  919. package/docs/tools/search.md +165 -0
  920. package/docs/tools/user-tools.md +39 -0
  921. package/docs/tools/wiki.md +192 -0
  922. package/docs/tools/work-items.md +182 -0
  923. package/package.json +125 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feature.js","sourceRoot":"","sources":["../../../../src/features/pipelines/download-pipeline-artifact/feature.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const stream_1 = require("stream");
4
+ const feature_1 = require("./feature");
5
+ const errors_1 = require("../../../shared/errors");
6
+ describe('downloadPipelineArtifact', () => {
7
+ const projectId = 'GHQ_B2B_Delta';
8
+ const runId = 13590799;
9
+ const getArtifacts = jest.fn();
10
+ const getItem = jest.fn();
11
+ const getBuildApi = jest.fn().mockResolvedValue({ getArtifacts });
12
+ const getFileContainerApi = jest.fn().mockResolvedValue({ getItem });
13
+ const getPipelinesApi = jest.fn();
14
+ const connection = {
15
+ getBuildApi,
16
+ getFileContainerApi,
17
+ getPipelinesApi,
18
+ };
19
+ const containerArtifact = {
20
+ name: 'embedding-metrics',
21
+ source: 'source',
22
+ resource: {
23
+ type: 'Container',
24
+ data: '#/39106000/embedding-metrics',
25
+ downloadUrl: 'https://example.com/container.zip',
26
+ },
27
+ };
28
+ beforeEach(() => {
29
+ jest.resetAllMocks();
30
+ getBuildApi.mockResolvedValue({ getArtifacts });
31
+ getFileContainerApi.mockResolvedValue({ getItem });
32
+ getArtifacts.mockResolvedValue([containerArtifact]);
33
+ });
34
+ it('downloads content from container artifacts using fallback paths', async () => {
35
+ const streamContent = stream_1.Readable.from(['{"status":"ok"}']);
36
+ getItem.mockImplementation(async (_containerId, _scope, itemPath) => {
37
+ if (itemPath === 'embedding-metrics/embedding_metrics.json') {
38
+ return { statusCode: 200, result: streamContent };
39
+ }
40
+ return { statusCode: 404, result: undefined };
41
+ });
42
+ const result = await (0, feature_1.downloadPipelineArtifact)(connection, {
43
+ projectId,
44
+ runId,
45
+ artifactPath: 'embedding-metrics/embedding_metrics.json',
46
+ });
47
+ expect(result).toEqual({
48
+ artifact: 'embedding-metrics',
49
+ path: 'embedding-metrics/embedding_metrics.json',
50
+ content: '{"status":"ok"}',
51
+ });
52
+ const attemptedPaths = getItem.mock.calls.map(([, , path]) => path);
53
+ expect(attemptedPaths).toContain('embedding_metrics.json');
54
+ expect(attemptedPaths).toContain('embedding-metrics/embedding_metrics.json');
55
+ });
56
+ it('throws when the requested file is missing', async () => {
57
+ getItem.mockResolvedValue({ statusCode: 404, result: undefined });
58
+ await expect((0, feature_1.downloadPipelineArtifact)(connection, {
59
+ projectId,
60
+ runId,
61
+ artifactPath: 'embedding-metrics/missing.json',
62
+ })).rejects.toBeInstanceOf(errors_1.AzureDevOpsResourceNotFoundError);
63
+ });
64
+ });
65
+ //# sourceMappingURL=feature.spec.unit.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feature.spec.unit.js","sourceRoot":"","sources":["../../../../src/features/pipelines/download-pipeline-artifact/feature.spec.unit.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export * from './feature';
2
+ export * from './schema';
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./feature"), exports);
18
+ __exportStar(require("./schema"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/features/pipelines/download-pipeline-artifact/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,2CAAyB"}
@@ -0,0 +1,17 @@
1
+ import { z } from 'zod';
2
+ export declare const DownloadPipelineArtifactSchema: z.ZodObject<{
3
+ projectId: z.ZodOptional<z.ZodString>;
4
+ runId: z.ZodNumber;
5
+ artifactPath: z.ZodString;
6
+ pipelineId: z.ZodOptional<z.ZodNumber>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ runId: number;
9
+ artifactPath: string;
10
+ projectId?: string | undefined;
11
+ pipelineId?: number | undefined;
12
+ }, {
13
+ runId: number;
14
+ artifactPath: string;
15
+ projectId?: string | undefined;
16
+ pipelineId?: number | undefined;
17
+ }>;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DownloadPipelineArtifactSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ const environment_1 = require("../../../utils/environment");
6
+ exports.DownloadPipelineArtifactSchema = zod_1.z.object({
7
+ projectId: zod_1.z
8
+ .string()
9
+ .optional()
10
+ .describe(`The ID or name of the project (Default: ${environment_1.defaultProject})`),
11
+ runId: zod_1.z.number().int().min(1).describe('Pipeline run identifier'),
12
+ artifactPath: zod_1.z
13
+ .string()
14
+ .min(1)
15
+ .describe('Path to the desired file inside the artifact (format: <artifactName>/<path/to/file>)'),
16
+ pipelineId: zod_1.z
17
+ .number()
18
+ .int()
19
+ .min(1)
20
+ .optional()
21
+ .describe('Optional guard; validates the run belongs to this pipeline'),
22
+ });
23
+ //# sourceMappingURL=schema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../src/features/pipelines/download-pipeline-artifact/schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4DAA4D;AAE/C,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,SAAS,EAAE,OAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,2CAA2C,4BAAc,GAAG,CAAC;IACzE,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,yBAAyB,CAAC;IAClE,YAAY,EAAE,OAAC;SACZ,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,CACP,sFAAsF,CACvF;IACH,UAAU,EAAE,OAAC;SACV,MAAM,EAAE;SACR,GAAG,EAAE;SACL,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,4DAA4D,CAAC;CAC1E,CAAC,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { WebApi } from 'azure-devops-node-api';
2
+ import { GetPipelineOptions, Pipeline } from '../types';
3
+ /**
4
+ * Get a specific pipeline by ID
5
+ *
6
+ * @param connection The Azure DevOps WebApi connection
7
+ * @param options Options for getting a pipeline
8
+ * @returns Pipeline details
9
+ */
10
+ export declare function getPipeline(connection: WebApi, options: GetPipelineOptions): Promise<Pipeline>;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getPipeline = getPipeline;
4
+ const errors_1 = require("../../../shared/errors");
5
+ /**
6
+ * Get a specific pipeline by ID
7
+ *
8
+ * @param connection The Azure DevOps WebApi connection
9
+ * @param options Options for getting a pipeline
10
+ * @returns Pipeline details
11
+ */
12
+ async function getPipeline(connection, options) {
13
+ try {
14
+ const pipelinesApi = await connection.getPipelinesApi();
15
+ const { projectId, pipelineId, pipelineVersion } = options;
16
+ // Call the pipelines API to get the pipeline
17
+ const pipeline = await pipelinesApi.getPipeline(projectId, pipelineId, pipelineVersion);
18
+ // If pipeline not found, API returns null instead of throwing error
19
+ if (pipeline === null) {
20
+ throw new errors_1.AzureDevOpsResourceNotFoundError(`Pipeline not found with ID: ${pipelineId}`);
21
+ }
22
+ return pipeline;
23
+ }
24
+ catch (error) {
25
+ // Handle specific error types
26
+ if (error instanceof errors_1.AzureDevOpsError) {
27
+ throw error;
28
+ }
29
+ // Check for specific error types and convert to appropriate Azure DevOps errors
30
+ if (error instanceof Error) {
31
+ if (error.message.includes('Authentication') ||
32
+ error.message.includes('Unauthorized') ||
33
+ error.message.includes('401')) {
34
+ throw new errors_1.AzureDevOpsAuthenticationError(`Failed to authenticate: ${error.message}`);
35
+ }
36
+ if (error.message.includes('not found') ||
37
+ error.message.includes('does not exist') ||
38
+ error.message.includes('404')) {
39
+ throw new errors_1.AzureDevOpsResourceNotFoundError(`Pipeline or project not found: ${error.message}`);
40
+ }
41
+ }
42
+ // Otherwise, wrap it in a generic error
43
+ throw new errors_1.AzureDevOpsError(`Failed to get pipeline: ${error instanceof Error ? error.message : String(error)}`);
44
+ }
45
+ }
46
+ //# sourceMappingURL=feature.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feature.js","sourceRoot":"","sources":["../../../../src/features/pipelines/get-pipeline/feature.ts"],"names":[],"mappings":";;AAeA,kCAyDC;AAvED,mDAIgC;AAGhC;;;;;;GAMG;AACI,KAAK,UAAU,WAAW,CAC/B,UAAkB,EAClB,OAA2B;IAE3B,IAAI,CAAC;QACH,MAAM,YAAY,GAAG,MAAM,UAAU,CAAC,eAAe,EAAE,CAAC;QACxD,MAAM,EAAE,SAAS,EAAE,UAAU,EAAE,eAAe,EAAE,GAAG,OAAO,CAAC;QAE3D,6CAA6C;QAC7C,MAAM,QAAQ,GAAG,MAAM,YAAY,CAAC,WAAW,CAC7C,SAAS,EACT,UAAU,EACV,eAAe,CAChB,CAAC;QAEF,oEAAoE;QACpE,IAAI,QAAQ,KAAK,IAAI,EAAE,CAAC;YACtB,MAAM,IAAI,yCAAgC,CACxC,+BAA+B,UAAU,EAAE,CAC5C,CAAC;QACJ,CAAC;QAED,OAAO,QAAQ,CAAC;IAClB,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,8BAA8B;QAC9B,IAAI,KAAK,YAAY,yBAAgB,EAAE,CAAC;YACtC,MAAM,KAAK,CAAC;QACd,CAAC;QAED,gFAAgF;QAChF,IAAI,KAAK,YAAY,KAAK,EAAE,CAAC;YAC3B,IACE,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAC;gBACxC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC;gBACtC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,EAC7B,CAAC;gBACD,MAAM,IAAI,uCAA8B,CACtC,2BAA2B,KAAK,CAAC,OAAO,EAAE,CAC3C,CAAC;YACJ,CAAC;YAED,IACE,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC;gBACnC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAC;gBACxC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,EAC7B,CAAC;gBACD,MAAM,IAAI,yCAAgC,CACxC,kCAAkC,KAAK,CAAC,OAAO,EAAE,CAClD,CAAC;YACJ,CAAC;QACH,CAAC;QAED,wCAAwC;QACxC,MAAM,IAAI,yBAAgB,CACxB,2BAA2B,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CACpF,CAAC;IACJ,CAAC;AACH,CAAC"}
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const feature_1 = require("./feature");
4
+ const feature_2 = require("../list-pipelines/feature");
5
+ const test_helpers_1 = require("../../../shared/test/test-helpers");
6
+ const shouldSkip = (0, test_helpers_1.shouldSkipIntegrationTest)();
7
+ const projectId = process.env.AZURE_DEVOPS_DEFAULT_PROJECT || '';
8
+ const hasProjectId = Boolean(projectId);
9
+ const describeOrSkip = !shouldSkip && hasProjectId ? describe : describe.skip;
10
+ describeOrSkip('getPipeline integration', () => {
11
+ let connection;
12
+ let existingPipelineId;
13
+ beforeAll(async () => {
14
+ // Get a real connection using environment variables
15
+ const testConnection = await (0, test_helpers_1.getTestConnection)();
16
+ if (!testConnection) {
17
+ throw new Error('Connection should be available when integration tests are enabled');
18
+ }
19
+ connection = testConnection;
20
+ // Try to get an existing pipeline ID for testing
21
+ const pipelines = await (0, feature_2.listPipelines)(connection, { projectId });
22
+ const pipelineId = pipelines[0]?.id;
23
+ if (!pipelineId) {
24
+ throw new Error('No pipelines found for getPipeline tests');
25
+ }
26
+ existingPipelineId = pipelineId;
27
+ });
28
+ test('should get a pipeline by ID', async () => {
29
+ // Act - make an API call to Azure DevOps
30
+ const pipeline = await (0, feature_1.getPipeline)(connection, {
31
+ projectId,
32
+ pipelineId: existingPipelineId,
33
+ });
34
+ // Assert
35
+ expect(pipeline).toBeDefined();
36
+ expect(pipeline.id).toBe(existingPipelineId);
37
+ expect(pipeline.name).toBeDefined();
38
+ expect(typeof pipeline.name).toBe('string');
39
+ expect(pipeline.folder).toBeDefined();
40
+ expect(pipeline.revision).toBeDefined();
41
+ expect(pipeline.url).toBeDefined();
42
+ expect(pipeline.url).toContain('_apis/pipelines');
43
+ });
44
+ test('should throw ResourceNotFoundError for non-existent pipeline', async () => {
45
+ // Use a very high ID that is unlikely to exist
46
+ const nonExistentPipelineId = 999999;
47
+ // Act & Assert - should throw a not found error
48
+ await expect((0, feature_1.getPipeline)(connection, {
49
+ projectId,
50
+ pipelineId: nonExistentPipelineId,
51
+ })).rejects.toThrow(/not found/);
52
+ });
53
+ });
54
+ //# sourceMappingURL=feature.spec.int.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feature.spec.int.js","sourceRoot":"","sources":["../../../../src/features/pipelines/get-pipeline/feature.spec.int.ts"],"names":[],"mappings":";;AACA,uCAAwC;AACxC,uDAA0D;AAC1D,oEAG2C;AAE3C,MAAM,UAAU,GAAG,IAAA,wCAAyB,GAAE,CAAC;AAC/C,MAAM,SAAS,GAAG,OAAO,CAAC,GAAG,CAAC,4BAA4B,IAAI,EAAE,CAAC;AACjE,MAAM,YAAY,GAAG,OAAO,CAAC,SAAS,CAAC,CAAC;AACxC,MAAM,cAAc,GAAG,CAAC,UAAU,IAAI,YAAY,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC;AAE9E,cAAc,CAAC,yBAAyB,EAAE,GAAG,EAAE;IAC7C,IAAI,UAAkB,CAAC;IACvB,IAAI,kBAA0B,CAAC;IAE/B,SAAS,CAAC,KAAK,IAAI,EAAE;QACnB,oDAAoD;QACpD,MAAM,cAAc,GAAG,MAAM,IAAA,gCAAiB,GAAE,CAAC;QACjD,IAAI,CAAC,cAAc,EAAE,CAAC;YACpB,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;QACJ,CAAC;QACD,UAAU,GAAG,cAAc,CAAC;QAE5B,iDAAiD;QACjD,MAAM,SAAS,GAAG,MAAM,IAAA,uBAAa,EAAC,UAAU,EAAE,EAAE,SAAS,EAAE,CAAC,CAAC;QACjE,MAAM,UAAU,GAAG,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC;QACpC,IAAI,CAAC,UAAU,EAAE,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;QAC9D,CAAC;QACD,kBAAkB,GAAG,UAAU,CAAC;IAClC,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,6BAA6B,EAAE,KAAK,IAAI,EAAE;QAC7C,yCAAyC;QACzC,MAAM,QAAQ,GAAG,MAAM,IAAA,qBAAW,EAAC,UAAU,EAAE;YAC7C,SAAS;YACT,UAAU,EAAE,kBAAkB;SAC/B,CAAC,CAAC;QAEH,SAAS;QACT,MAAM,CAAC,QAAQ,CAAC,CAAC,WAAW,EAAE,CAAC;QAC/B,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC;QAC7C,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,CAAC;QACpC,MAAM,CAAC,OAAO,QAAQ,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAC5C,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,WAAW,EAAE,CAAC;QACtC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,WAAW,EAAE,CAAC;QACxC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,WAAW,EAAE,CAAC;QACnC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,SAAS,CAAC,iBAAiB,CAAC,CAAC;IACpD,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,8DAA8D,EAAE,KAAK,IAAI,EAAE;QAC9E,+CAA+C;QAC/C,MAAM,qBAAqB,GAAG,MAAM,CAAC;QAErC,gDAAgD;QAChD,MAAM,MAAM,CACV,IAAA,qBAAW,EAAC,UAAU,EAAE;YACtB,SAAS;YACT,UAAU,EAAE,qBAAqB;SAClC,CAAC,CACH,CAAC,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;IACjC,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -0,0 +1,89 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const feature_1 = require("./feature");
4
+ const errors_1 = require("../../../shared/errors");
5
+ // Unit tests should only focus on isolated logic
6
+ describe('getPipeline unit', () => {
7
+ let mockConnection;
8
+ let mockPipelinesApi;
9
+ beforeEach(() => {
10
+ // Reset mocks
11
+ jest.resetAllMocks();
12
+ // Setup mock Pipelines API
13
+ mockPipelinesApi = {
14
+ getPipeline: jest.fn(),
15
+ };
16
+ // Mock WebApi with a getPipelinesApi method
17
+ mockConnection = {
18
+ serverUrl: 'https://dev.azure.com/testorg',
19
+ getPipelinesApi: jest.fn().mockResolvedValue(mockPipelinesApi),
20
+ };
21
+ });
22
+ test('should return a pipeline', async () => {
23
+ // Arrange
24
+ const mockPipeline = {
25
+ id: 1,
26
+ name: 'Pipeline 1',
27
+ folder: 'Folder 1',
28
+ revision: 1,
29
+ url: 'https://dev.azure.com/testorg/testproject/_apis/pipelines/1',
30
+ };
31
+ // Mock the Pipelines API to return data
32
+ mockPipelinesApi.getPipeline.mockResolvedValue(mockPipeline);
33
+ // Act
34
+ const result = await (0, feature_1.getPipeline)(mockConnection, {
35
+ projectId: 'testproject',
36
+ pipelineId: 1,
37
+ });
38
+ // Assert
39
+ expect(mockConnection.getPipelinesApi).toHaveBeenCalled();
40
+ expect(mockPipelinesApi.getPipeline).toHaveBeenCalledWith('testproject', 1, undefined);
41
+ expect(result).toEqual(mockPipeline);
42
+ });
43
+ test('should handle pipeline version parameter', async () => {
44
+ // Arrange
45
+ const mockPipeline = {
46
+ id: 1,
47
+ name: 'Pipeline 1',
48
+ folder: 'Folder 1',
49
+ revision: 2,
50
+ url: 'https://dev.azure.com/testorg/testproject/_apis/pipelines/1',
51
+ };
52
+ mockPipelinesApi.getPipeline.mockResolvedValue(mockPipeline);
53
+ // Act
54
+ await (0, feature_1.getPipeline)(mockConnection, {
55
+ projectId: 'testproject',
56
+ pipelineId: 1,
57
+ pipelineVersion: 2,
58
+ });
59
+ // Assert
60
+ expect(mockPipelinesApi.getPipeline).toHaveBeenCalledWith('testproject', 1, 2);
61
+ });
62
+ test('should handle authentication errors', async () => {
63
+ // Arrange
64
+ const authError = new Error('Authentication failed');
65
+ authError.message = 'Authentication failed: Unauthorized';
66
+ mockPipelinesApi.getPipeline.mockRejectedValue(authError);
67
+ // Act & Assert
68
+ await expect((0, feature_1.getPipeline)(mockConnection, { projectId: 'testproject', pipelineId: 1 })).rejects.toThrow(errors_1.AzureDevOpsAuthenticationError);
69
+ await expect((0, feature_1.getPipeline)(mockConnection, { projectId: 'testproject', pipelineId: 1 })).rejects.toThrow(/Failed to authenticate/);
70
+ });
71
+ test('should handle resource not found errors', async () => {
72
+ // Arrange
73
+ const notFoundError = new Error('Not found');
74
+ notFoundError.message = 'Pipeline does not exist';
75
+ mockPipelinesApi.getPipeline.mockRejectedValue(notFoundError);
76
+ // Act & Assert
77
+ await expect((0, feature_1.getPipeline)(mockConnection, { projectId: 'testproject', pipelineId: 1 })).rejects.toThrow(errors_1.AzureDevOpsResourceNotFoundError);
78
+ await expect((0, feature_1.getPipeline)(mockConnection, { projectId: 'testproject', pipelineId: 1 })).rejects.toThrow(/Pipeline or project not found/);
79
+ });
80
+ test('should wrap general errors in AzureDevOpsError', async () => {
81
+ // Arrange
82
+ const testError = new Error('Test API error');
83
+ mockPipelinesApi.getPipeline.mockRejectedValue(testError);
84
+ // Act & Assert
85
+ await expect((0, feature_1.getPipeline)(mockConnection, { projectId: 'testproject', pipelineId: 1 })).rejects.toThrow(errors_1.AzureDevOpsError);
86
+ await expect((0, feature_1.getPipeline)(mockConnection, { projectId: 'testproject', pipelineId: 1 })).rejects.toThrow(/Failed to get pipeline/);
87
+ });
88
+ });
89
+ //# sourceMappingURL=feature.spec.unit.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feature.spec.unit.js","sourceRoot":"","sources":["../../../../src/features/pipelines/get-pipeline/feature.spec.unit.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export * from './feature';
2
+ export * from './schema';
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./feature"), exports);
18
+ __exportStar(require("./schema"), exports);
19
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/features/pipelines/get-pipeline/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAA0B;AAC1B,2CAAyB"}
@@ -0,0 +1,17 @@
1
+ import { z } from 'zod';
2
+ /**
3
+ * Schema for the getPipeline function
4
+ */
5
+ export declare const GetPipelineSchema: z.ZodObject<{
6
+ projectId: z.ZodOptional<z.ZodString>;
7
+ pipelineId: z.ZodNumber;
8
+ pipelineVersion: z.ZodOptional<z.ZodNumber>;
9
+ }, "strip", z.ZodTypeAny, {
10
+ pipelineId: number;
11
+ projectId?: string | undefined;
12
+ pipelineVersion?: number | undefined;
13
+ }, {
14
+ pipelineId: number;
15
+ projectId?: string | undefined;
16
+ pipelineVersion?: number | undefined;
17
+ }>;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GetPipelineSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ const environment_1 = require("../../../utils/environment");
6
+ /**
7
+ * Schema for the getPipeline function
8
+ */
9
+ exports.GetPipelineSchema = zod_1.z.object({
10
+ // The project containing the pipeline
11
+ projectId: zod_1.z
12
+ .string()
13
+ .optional()
14
+ .describe(`The ID or name of the project (Default: ${environment_1.defaultProject})`),
15
+ // The ID of the pipeline to retrieve
16
+ pipelineId: zod_1.z
17
+ .number()
18
+ .int()
19
+ .positive()
20
+ .describe('The numeric ID of the pipeline to retrieve'),
21
+ // The version of the pipeline to retrieve
22
+ pipelineVersion: zod_1.z
23
+ .number()
24
+ .int()
25
+ .positive()
26
+ .optional()
27
+ .describe('The version of the pipeline to retrieve (latest if not specified)'),
28
+ });
29
+ //# sourceMappingURL=schema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../src/features/pipelines/get-pipeline/schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4DAA4D;AAE5D;;GAEG;AACU,QAAA,iBAAiB,GAAG,OAAC,CAAC,MAAM,CAAC;IACxC,sCAAsC;IACtC,SAAS,EAAE,OAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,2CAA2C,4BAAc,GAAG,CAAC;IACzE,qCAAqC;IACrC,UAAU,EAAE,OAAC;SACV,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,CAAC,4CAA4C,CAAC;IACzD,0CAA0C;IAC1C,eAAe,EAAE,OAAC;SACf,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,mEAAmE,CACpE;CACJ,CAAC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { WebApi } from 'azure-devops-node-api';
2
+ import { GetPipelineLogOptions, PipelineLogContent } from '../types';
3
+ export declare function getPipelineLog(connection: WebApi, options: GetPipelineLogOptions): Promise<PipelineLogContent>;
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getPipelineLog = getPipelineLog;
4
+ const errors_1 = require("../../../shared/errors");
5
+ const environment_1 = require("../../../utils/environment");
6
+ const API_VERSION = '7.1';
7
+ async function getPipelineLog(connection, options) {
8
+ try {
9
+ const buildApi = await connection.getBuildApi();
10
+ const projectId = options.projectId ?? environment_1.defaultProject;
11
+ const { runId, logId, format, startLine, endLine } = options;
12
+ if (format === 'json') {
13
+ const route = `${encodeURIComponent(projectId)}/_apis/build/builds/${runId}/logs/${logId}`;
14
+ const baseUrl = connection.serverUrl.replace(/\/+$/, '');
15
+ const url = new URL(`${route}`, `${baseUrl}/`);
16
+ url.searchParams.set('api-version', API_VERSION);
17
+ url.searchParams.set('format', 'json');
18
+ if (typeof startLine === 'number') {
19
+ url.searchParams.set('startLine', startLine.toString());
20
+ }
21
+ if (typeof endLine === 'number') {
22
+ url.searchParams.set('endLine', endLine.toString());
23
+ }
24
+ const requestOptions = buildApi.createRequestOptions('application/json', API_VERSION);
25
+ const response = await buildApi.rest.get(url.toString(), requestOptions);
26
+ if (response.statusCode === 404 || response.result === null) {
27
+ throw new errors_1.AzureDevOpsResourceNotFoundError(`Log ${logId} not found for run ${runId} in project ${projectId}`);
28
+ }
29
+ return response.result;
30
+ }
31
+ const lines = await buildApi.getBuildLogLines(projectId, runId, logId, startLine, endLine);
32
+ if (!lines) {
33
+ throw new errors_1.AzureDevOpsResourceNotFoundError(`Log ${logId} not found for run ${runId} in project ${projectId}`);
34
+ }
35
+ return lines.join('\n');
36
+ }
37
+ catch (error) {
38
+ if (error instanceof errors_1.AzureDevOpsError) {
39
+ throw error;
40
+ }
41
+ if (error instanceof Error) {
42
+ const message = error.message.toLowerCase();
43
+ if (message.includes('authentication') ||
44
+ message.includes('unauthorized') ||
45
+ message.includes('401')) {
46
+ throw new errors_1.AzureDevOpsAuthenticationError(`Failed to authenticate: ${error.message}`);
47
+ }
48
+ if (message.includes('not found') ||
49
+ message.includes('does not exist') ||
50
+ message.includes('404')) {
51
+ throw new errors_1.AzureDevOpsResourceNotFoundError(`Pipeline log or project not found: ${error.message}`);
52
+ }
53
+ }
54
+ throw new errors_1.AzureDevOpsError(`Failed to retrieve pipeline log: ${error instanceof Error ? error.message : String(error)}`);
55
+ }
56
+ }
57
+ //# sourceMappingURL=feature.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feature.js","sourceRoot":"","sources":["../../../../src/features/pipelines/get-pipeline-log/feature.ts"],"names":[],"mappings":"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"}