@plusplusoneplusplus/coc 1.0.4 → 1.0.6

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 (1138) hide show
  1. package/dist/cli.js +1 -1
  2. package/dist/cli.js.map +1 -1
  3. package/dist/server/api-handler.d.ts +2 -2
  4. package/dist/server/api-handler.d.ts.map +1 -1
  5. package/dist/server/api-handler.js +1 -1
  6. package/dist/server/api-handler.js.map +1 -1
  7. package/dist/server/diff-comments-ai.d.ts +8 -0
  8. package/dist/server/diff-comments-ai.d.ts.map +1 -1
  9. package/dist/server/diff-comments-ai.js +62 -0
  10. package/dist/server/diff-comments-ai.js.map +1 -1
  11. package/dist/server/diff-comments-handler.d.ts.map +1 -1
  12. package/dist/server/diff-comments-handler.js +115 -0
  13. package/dist/server/diff-comments-handler.js.map +1 -1
  14. package/dist/server/executors/base-executor.d.ts.map +1 -1
  15. package/dist/server/executors/base-executor.js +1 -29
  16. package/dist/server/executors/base-executor.js.map +1 -1
  17. package/dist/server/executors/executor-registry.d.ts +55 -0
  18. package/dist/server/executors/executor-registry.d.ts.map +1 -0
  19. package/dist/server/executors/executor-registry.js +98 -0
  20. package/dist/server/executors/executor-registry.js.map +1 -0
  21. package/dist/server/executors/executor-types.d.ts +6 -0
  22. package/dist/server/executors/executor-types.d.ts.map +1 -0
  23. package/{node_modules/@plusplusoneplusplus/forge/dist/ado/types.js → dist/server/executors/executor-types.js} +1 -1
  24. package/dist/server/executors/executor-types.js.map +1 -0
  25. package/dist/server/executors/follow-up-executor.d.ts +1 -1
  26. package/dist/server/executors/follow-up-executor.d.ts.map +1 -1
  27. package/dist/server/executors/follow-up-executor.js +64 -121
  28. package/dist/server/executors/follow-up-executor.js.map +1 -1
  29. package/dist/server/executors/process-lifecycle-runner.d.ts +1 -1
  30. package/dist/server/executors/process-lifecycle-runner.d.ts.map +1 -1
  31. package/dist/server/executors/process-lifecycle-runner.js +76 -52
  32. package/dist/server/executors/process-lifecycle-runner.js.map +1 -1
  33. package/dist/server/executors/prompt-builder.d.ts +3 -3
  34. package/dist/server/executors/prompt-builder.d.ts.map +1 -1
  35. package/dist/server/executors/prompt-builder.js +4 -9
  36. package/dist/server/executors/prompt-builder.js.map +1 -1
  37. package/dist/server/executors/resolve-comments-executor.d.ts.map +1 -1
  38. package/dist/server/executors/resolve-comments-executor.js +33 -3
  39. package/dist/server/executors/resolve-comments-executor.js.map +1 -1
  40. package/dist/server/executors/task-generation-executor.d.ts.map +1 -1
  41. package/dist/server/executors/task-generation-executor.js +1 -7
  42. package/dist/server/executors/task-generation-executor.js.map +1 -1
  43. package/dist/server/executors/wrapped-task-executor.d.ts +26 -0
  44. package/dist/server/executors/wrapped-task-executor.d.ts.map +1 -0
  45. package/dist/server/executors/wrapped-task-executor.js +88 -0
  46. package/dist/server/executors/wrapped-task-executor.js.map +1 -0
  47. package/dist/server/in-memory-process-store.d.ts.map +1 -1
  48. package/dist/server/in-memory-process-store.js +62 -0
  49. package/dist/server/in-memory-process-store.js.map +1 -1
  50. package/dist/server/index.d.ts +4 -1
  51. package/dist/server/index.d.ts.map +1 -1
  52. package/dist/server/index.js +5 -2
  53. package/dist/server/index.js.map +1 -1
  54. package/dist/server/memory/conversation-recorder.d.ts.map +1 -1
  55. package/dist/server/memory/conversation-recorder.js +35 -1
  56. package/dist/server/memory/conversation-recorder.js.map +1 -1
  57. package/dist/server/memory/memory-aggregate-executor.d.ts +18 -0
  58. package/dist/server/memory/memory-aggregate-executor.d.ts.map +1 -0
  59. package/dist/server/memory/memory-aggregate-executor.js +214 -0
  60. package/dist/server/memory/memory-aggregate-executor.js.map +1 -0
  61. package/dist/server/memory/memory-routes.d.ts.map +1 -1
  62. package/dist/server/memory/memory-routes.js +15 -4
  63. package/dist/server/memory/memory-routes.js.map +1 -1
  64. package/dist/server/memory/repo-memory-handler.d.ts +5 -2
  65. package/dist/server/memory/repo-memory-handler.d.ts.map +1 -1
  66. package/dist/server/memory/repo-memory-handler.js +103 -112
  67. package/dist/server/memory/repo-memory-handler.js.map +1 -1
  68. package/dist/server/memory/repo-memory-migration.d.ts +58 -0
  69. package/dist/server/memory/repo-memory-migration.d.ts.map +1 -0
  70. package/dist/server/memory/repo-memory-migration.js +289 -0
  71. package/dist/server/memory/repo-memory-migration.js.map +1 -0
  72. package/dist/server/multi-repo-executor-bridge.d.ts +2 -2
  73. package/dist/server/multi-repo-executor-bridge.d.ts.map +1 -1
  74. package/dist/server/multi-repo-executor-bridge.js +4 -4
  75. package/dist/server/multi-repo-executor-bridge.js.map +1 -1
  76. package/dist/server/prompt-handler.d.ts.map +1 -1
  77. package/dist/server/prompt-handler.js +4 -12
  78. package/dist/server/prompt-handler.js.map +1 -1
  79. package/dist/server/queue-executor-bridge.d.ts +9 -16
  80. package/dist/server/queue-executor-bridge.d.ts.map +1 -1
  81. package/dist/server/queue-executor-bridge.js +25 -62
  82. package/dist/server/queue-executor-bridge.js.map +1 -1
  83. package/dist/server/replicate-apply-handler.d.ts.map +1 -1
  84. package/dist/server/replicate-apply-handler.js +5 -12
  85. package/dist/server/replicate-apply-handler.js.map +1 -1
  86. package/dist/server/routes/api-git-branch-routes.d.ts.map +1 -1
  87. package/dist/server/routes/api-git-branch-routes.js +165 -0
  88. package/dist/server/routes/api-git-branch-routes.js.map +1 -1
  89. package/dist/server/routes/api-git-working-tree-routes.d.ts.map +1 -1
  90. package/dist/server/routes/api-git-working-tree-routes.js +4 -2
  91. package/dist/server/routes/api-git-working-tree-routes.js.map +1 -1
  92. package/dist/server/routes/api-process-routes.d.ts.map +1 -1
  93. package/dist/server/routes/api-process-routes.js +34 -49
  94. package/dist/server/routes/api-process-routes.js.map +1 -1
  95. package/dist/server/routes/index.d.ts.map +1 -1
  96. package/dist/server/routes/index.js +1 -0
  97. package/dist/server/routes/index.js.map +1 -1
  98. package/dist/server/shared/queue-utils.d.ts +1 -1
  99. package/dist/server/shared/queue-utils.d.ts.map +1 -1
  100. package/dist/server/shared/queue-utils.js +2 -1
  101. package/dist/server/shared/queue-utils.js.map +1 -1
  102. package/dist/server/skill-handler.d.ts +3 -0
  103. package/dist/server/skill-handler.d.ts.map +1 -1
  104. package/dist/server/skill-handler.js +8 -5
  105. package/dist/server/skill-handler.js.map +1 -1
  106. package/dist/server/spa/client/dist/bundle.css +81 -3
  107. package/dist/server/spa/client/dist/bundle.js +13623 -12451
  108. package/dist/server/sse-handler.d.ts +2 -0
  109. package/dist/server/sse-handler.d.ts.map +1 -1
  110. package/dist/server/sse-handler.js +4 -0
  111. package/dist/server/sse-handler.js.map +1 -1
  112. package/dist/server/task-comments-handler.d.ts.map +1 -1
  113. package/dist/server/task-comments-handler.js +16 -8
  114. package/dist/server/task-comments-handler.js.map +1 -1
  115. package/dist/server/task-types.d.ts +24 -1
  116. package/dist/server/task-types.d.ts.map +1 -1
  117. package/dist/server/task-types.js +9 -0
  118. package/dist/server/task-types.js.map +1 -1
  119. package/dist/server/templates-handler.d.ts.map +1 -1
  120. package/dist/server/templates-handler.js +19 -29
  121. package/dist/server/templates-handler.js.map +1 -1
  122. package/package.json +6 -10
  123. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-connection-factory.d.ts +0 -17
  124. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-connection-factory.d.ts.map +0 -1
  125. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-connection-factory.js +0 -146
  126. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-connection-factory.js.map +0 -1
  127. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-identity-resolver.d.ts +0 -30
  128. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-identity-resolver.d.ts.map +0 -1
  129. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-identity-resolver.js +0 -156
  130. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-identity-resolver.js.map +0 -1
  131. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-pull-requests-adapter.d.ts +0 -22
  132. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-pull-requests-adapter.d.ts.map +0 -1
  133. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-pull-requests-adapter.js +0 -222
  134. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-pull-requests-adapter.js.map +0 -1
  135. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-session-cache.d.ts +0 -26
  136. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-session-cache.d.ts.map +0 -1
  137. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-session-cache.js +0 -91
  138. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-session-cache.js.map +0 -1
  139. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-work-items-adapter.d.ts +0 -19
  140. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-work-items-adapter.d.ts.map +0 -1
  141. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-work-items-adapter.js +0 -122
  142. package/node_modules/@plusplusoneplusplus/forge/dist/ado/ado-work-items-adapter.js.map +0 -1
  143. package/node_modules/@plusplusoneplusplus/forge/dist/ado/create-ado-adapter.d.ts +0 -12
  144. package/node_modules/@plusplusoneplusplus/forge/dist/ado/create-ado-adapter.d.ts.map +0 -1
  145. package/node_modules/@plusplusoneplusplus/forge/dist/ado/create-ado-adapter.js +0 -51
  146. package/node_modules/@plusplusoneplusplus/forge/dist/ado/create-ado-adapter.js.map +0 -1
  147. package/node_modules/@plusplusoneplusplus/forge/dist/ado/diff-builder.d.ts +0 -14
  148. package/node_modules/@plusplusoneplusplus/forge/dist/ado/diff-builder.d.ts.map +0 -1
  149. package/node_modules/@plusplusoneplusplus/forge/dist/ado/diff-builder.js +0 -24
  150. package/node_modules/@plusplusoneplusplus/forge/dist/ado/diff-builder.js.map +0 -1
  151. package/node_modules/@plusplusoneplusplus/forge/dist/ado/index.d.ts +0 -9
  152. package/node_modules/@plusplusoneplusplus/forge/dist/ado/index.d.ts.map +0 -1
  153. package/node_modules/@plusplusoneplusplus/forge/dist/ado/index.js +0 -29
  154. package/node_modules/@plusplusoneplusplus/forge/dist/ado/index.js.map +0 -1
  155. package/node_modules/@plusplusoneplusplus/forge/dist/ado/pull-requests-service.d.ts +0 -45
  156. package/node_modules/@plusplusoneplusplus/forge/dist/ado/pull-requests-service.d.ts.map +0 -1
  157. package/node_modules/@plusplusoneplusplus/forge/dist/ado/pull-requests-service.js +0 -257
  158. package/node_modules/@plusplusoneplusplus/forge/dist/ado/pull-requests-service.js.map +0 -1
  159. package/node_modules/@plusplusoneplusplus/forge/dist/ado/types.d.ts +0 -21
  160. package/node_modules/@plusplusoneplusplus/forge/dist/ado/types.d.ts.map +0 -1
  161. package/node_modules/@plusplusoneplusplus/forge/dist/ado/types.js.map +0 -1
  162. package/node_modules/@plusplusoneplusplus/forge/dist/ado/workitems-service.d.ts +0 -39
  163. package/node_modules/@plusplusoneplusplus/forge/dist/ado/workitems-service.d.ts.map +0 -1
  164. package/node_modules/@plusplusoneplusplus/forge/dist/ado/workitems-service.js +0 -118
  165. package/node_modules/@plusplusoneplusplus/forge/dist/ado/workitems-service.js.map +0 -1
  166. package/node_modules/@plusplusoneplusplus/forge/dist/ai/cli-utils.d.ts +0 -111
  167. package/node_modules/@plusplusoneplusplus/forge/dist/ai/cli-utils.d.ts.map +0 -1
  168. package/node_modules/@plusplusoneplusplus/forge/dist/ai/cli-utils.js +0 -210
  169. package/node_modules/@plusplusoneplusplus/forge/dist/ai/cli-utils.js.map +0 -1
  170. package/node_modules/@plusplusoneplusplus/forge/dist/ai/command-types.d.ts +0 -81
  171. package/node_modules/@plusplusoneplusplus/forge/dist/ai/command-types.d.ts.map +0 -1
  172. package/node_modules/@plusplusoneplusplus/forge/dist/ai/command-types.js +0 -64
  173. package/node_modules/@plusplusoneplusplus/forge/dist/ai/command-types.js.map +0 -1
  174. package/node_modules/@plusplusoneplusplus/forge/dist/ai/index.d.ts +0 -17
  175. package/node_modules/@plusplusoneplusplus/forge/dist/ai/index.d.ts.map +0 -1
  176. package/node_modules/@plusplusoneplusplus/forge/dist/ai/index.js +0 -93
  177. package/node_modules/@plusplusoneplusplus/forge/dist/ai/index.js.map +0 -1
  178. package/node_modules/@plusplusoneplusplus/forge/dist/ai/process-types.d.ts +0 -451
  179. package/node_modules/@plusplusoneplusplus/forge/dist/ai/process-types.d.ts.map +0 -1
  180. package/node_modules/@plusplusoneplusplus/forge/dist/ai/process-types.js +0 -201
  181. package/node_modules/@plusplusoneplusplus/forge/dist/ai/process-types.js.map +0 -1
  182. package/node_modules/@plusplusoneplusplus/forge/dist/ai/program-utils.d.ts +0 -39
  183. package/node_modules/@plusplusoneplusplus/forge/dist/ai/program-utils.d.ts.map +0 -1
  184. package/node_modules/@plusplusoneplusplus/forge/dist/ai/program-utils.js +0 -140
  185. package/node_modules/@plusplusoneplusplus/forge/dist/ai/program-utils.js.map +0 -1
  186. package/node_modules/@plusplusoneplusplus/forge/dist/ai/prompt-builder.d.ts +0 -60
  187. package/node_modules/@plusplusoneplusplus/forge/dist/ai/prompt-builder.d.ts.map +0 -1
  188. package/node_modules/@plusplusoneplusplus/forge/dist/ai/prompt-builder.js +0 -92
  189. package/node_modules/@plusplusoneplusplus/forge/dist/ai/prompt-builder.js.map +0 -1
  190. package/node_modules/@plusplusoneplusplus/forge/dist/ai/timeline-utils.d.ts +0 -8
  191. package/node_modules/@plusplusoneplusplus/forge/dist/ai/timeline-utils.d.ts.map +0 -1
  192. package/node_modules/@plusplusoneplusplus/forge/dist/ai/timeline-utils.js +0 -37
  193. package/node_modules/@plusplusoneplusplus/forge/dist/ai/timeline-utils.js.map +0 -1
  194. package/node_modules/@plusplusoneplusplus/forge/dist/ai/timeouts.d.ts +0 -8
  195. package/node_modules/@plusplusoneplusplus/forge/dist/ai/timeouts.d.ts.map +0 -1
  196. package/node_modules/@plusplusoneplusplus/forge/dist/ai/timeouts.js +0 -13
  197. package/node_modules/@plusplusoneplusplus/forge/dist/ai/timeouts.js.map +0 -1
  198. package/node_modules/@plusplusoneplusplus/forge/dist/ai/token-usage-stats.d.ts +0 -17
  199. package/node_modules/@plusplusoneplusplus/forge/dist/ai/token-usage-stats.d.ts.map +0 -1
  200. package/node_modules/@plusplusoneplusplus/forge/dist/ai/token-usage-stats.js +0 -93
  201. package/node_modules/@plusplusoneplusplus/forge/dist/ai/token-usage-stats.js.map +0 -1
  202. package/node_modules/@plusplusoneplusplus/forge/dist/ai/types.d.ts +0 -159
  203. package/node_modules/@plusplusoneplusplus/forge/dist/ai/types.d.ts.map +0 -1
  204. package/node_modules/@plusplusoneplusplus/forge/dist/ai/types.js +0 -56
  205. package/node_modules/@plusplusoneplusplus/forge/dist/ai/types.js.map +0 -1
  206. package/node_modules/@plusplusoneplusplus/forge/dist/ai-logger.d.ts +0 -41
  207. package/node_modules/@plusplusoneplusplus/forge/dist/ai-logger.d.ts.map +0 -1
  208. package/node_modules/@plusplusoneplusplus/forge/dist/ai-logger.js +0 -71
  209. package/node_modules/@plusplusoneplusplus/forge/dist/ai-logger.js.map +0 -1
  210. package/node_modules/@plusplusoneplusplus/forge/dist/config/defaults.d.ts +0 -108
  211. package/node_modules/@plusplusoneplusplus/forge/dist/config/defaults.d.ts.map +0 -1
  212. package/node_modules/@plusplusoneplusplus/forge/dist/config/defaults.js +0 -132
  213. package/node_modules/@plusplusoneplusplus/forge/dist/config/defaults.js.map +0 -1
  214. package/node_modules/@plusplusoneplusplus/forge/dist/config/index.d.ts +0 -7
  215. package/node_modules/@plusplusoneplusplus/forge/dist/config/index.d.ts.map +0 -1
  216. package/node_modules/@plusplusoneplusplus/forge/dist/config/index.js +0 -42
  217. package/node_modules/@plusplusoneplusplus/forge/dist/config/index.js.map +0 -1
  218. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/copilot-sdk-service.d.ts +0 -54
  219. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/copilot-sdk-service.d.ts.map +0 -1
  220. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/copilot-sdk-service.js +0 -149
  221. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/copilot-sdk-service.js.map +0 -1
  222. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/image-converter.d.ts +0 -7
  223. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/image-converter.d.ts.map +0 -1
  224. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/image-converter.js +0 -73
  225. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/image-converter.js.map +0 -1
  226. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/index.d.ts +0 -14
  227. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/index.d.ts.map +0 -1
  228. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/index.js +0 -63
  229. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/index.js.map +0 -1
  230. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/mcp-config-loader.d.ts +0 -100
  231. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/mcp-config-loader.d.ts.map +0 -1
  232. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/mcp-config-loader.js +0 -221
  233. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/mcp-config-loader.js.map +0 -1
  234. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-info.d.ts +0 -29
  235. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-info.d.ts.map +0 -1
  236. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-info.js +0 -9
  237. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-info.js.map +0 -1
  238. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-metadata-store.d.ts +0 -33
  239. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-metadata-store.d.ts.map +0 -1
  240. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-metadata-store.js +0 -62
  241. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-metadata-store.js.map +0 -1
  242. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-registry.d.ts +0 -110
  243. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-registry.d.ts.map +0 -1
  244. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-registry.js +0 -180
  245. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/model-registry.js.map +0 -1
  246. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/request-runner.d.ts +0 -101
  247. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/request-runner.d.ts.map +0 -1
  248. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/request-runner.js +0 -288
  249. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/request-runner.js.map +0 -1
  250. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/sdk-client-factory.d.ts +0 -33
  251. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/sdk-client-factory.d.ts.map +0 -1
  252. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/sdk-client-factory.js +0 -83
  253. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/sdk-client-factory.js.map +0 -1
  254. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/sdk-loader.d.ts +0 -51
  255. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/sdk-loader.d.ts.map +0 -1
  256. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/sdk-loader.js +0 -116
  257. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/sdk-loader.js.map +0 -1
  258. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-manager.d.ts +0 -51
  259. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-manager.d.ts.map +0 -1
  260. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-manager.js +0 -84
  261. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-manager.js.map +0 -1
  262. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-telemetry.d.ts +0 -81
  263. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-telemetry.d.ts.map +0 -1
  264. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-telemetry.js +0 -189
  265. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-telemetry.js.map +0 -1
  266. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-timer-manager.d.ts +0 -48
  267. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-timer-manager.d.ts.map +0 -1
  268. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-timer-manager.js +0 -77
  269. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/session-timer-manager.js.map +0 -1
  270. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/stream-error-guard.d.ts +0 -40
  271. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/stream-error-guard.d.ts.map +0 -1
  272. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/stream-error-guard.js +0 -114
  273. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/stream-error-guard.js.map +0 -1
  274. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/streaming-session.d.ts +0 -144
  275. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/streaming-session.d.ts.map +0 -1
  276. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/streaming-session.js +0 -320
  277. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/streaming-session.js.map +0 -1
  278. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/streaming-state-machine.d.ts +0 -35
  279. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/streaming-state-machine.d.ts.map +0 -1
  280. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/streaming-state-machine.js +0 -61
  281. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/streaming-state-machine.js.map +0 -1
  282. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/trusted-folder.d.ts +0 -37
  283. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/trusted-folder.d.ts.map +0 -1
  284. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/trusted-folder.js +0 -169
  285. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/trusted-folder.js.map +0 -1
  286. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/types.d.ts +0 -424
  287. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/types.d.ts.map +0 -1
  288. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/types.js +0 -68
  289. package/node_modules/@plusplusoneplusplus/forge/dist/copilot-sdk-wrapper/types.js.map +0 -1
  290. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/index.d.ts +0 -6
  291. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/index.d.ts.map +0 -1
  292. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/index.js +0 -13
  293. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/index.js.map +0 -1
  294. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/instruction-files.d.ts +0 -30
  295. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/instruction-files.d.ts.map +0 -1
  296. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/instruction-files.js +0 -107
  297. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/instruction-files.js.map +0 -1
  298. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/prompt-files.d.ts +0 -16
  299. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/prompt-files.d.ts.map +0 -1
  300. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/prompt-files.js +0 -89
  301. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/prompt-files.js.map +0 -1
  302. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/skill-files.d.ts +0 -15
  303. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/skill-files.d.ts.map +0 -1
  304. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/skill-files.js +0 -106
  305. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/skill-files.js.map +0 -1
  306. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/types.d.ts +0 -49
  307. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/types.d.ts.map +0 -1
  308. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/types.js +0 -3
  309. package/node_modules/@plusplusoneplusplus/forge/dist/discovery/types.js.map +0 -1
  310. package/node_modules/@plusplusoneplusplus/forge/dist/editor/anchor-types.d.ts +0 -45
  311. package/node_modules/@plusplusoneplusplus/forge/dist/editor/anchor-types.d.ts.map +0 -1
  312. package/node_modules/@plusplusoneplusplus/forge/dist/editor/anchor-types.js +0 -9
  313. package/node_modules/@plusplusoneplusplus/forge/dist/editor/anchor-types.js.map +0 -1
  314. package/node_modules/@plusplusoneplusplus/forge/dist/editor/anchor.d.ts +0 -40
  315. package/node_modules/@plusplusoneplusplus/forge/dist/editor/anchor.d.ts.map +0 -1
  316. package/node_modules/@plusplusoneplusplus/forge/dist/editor/anchor.js +0 -195
  317. package/node_modules/@plusplusoneplusplus/forge/dist/editor/anchor.js.map +0 -1
  318. package/node_modules/@plusplusoneplusplus/forge/dist/editor/file-state-store.d.ts +0 -16
  319. package/node_modules/@plusplusoneplusplus/forge/dist/editor/file-state-store.d.ts.map +0 -1
  320. package/node_modules/@plusplusoneplusplus/forge/dist/editor/file-state-store.js +0 -87
  321. package/node_modules/@plusplusoneplusplus/forge/dist/editor/file-state-store.js.map +0 -1
  322. package/node_modules/@plusplusoneplusplus/forge/dist/editor/host.d.ts +0 -26
  323. package/node_modules/@plusplusoneplusplus/forge/dist/editor/host.d.ts.map +0 -1
  324. package/node_modules/@plusplusoneplusplus/forge/dist/editor/host.js +0 -9
  325. package/node_modules/@plusplusoneplusplus/forge/dist/editor/host.js.map +0 -1
  326. package/node_modules/@plusplusoneplusplus/forge/dist/editor/index.d.ts +0 -18
  327. package/node_modules/@plusplusoneplusplus/forge/dist/editor/index.d.ts.map +0 -1
  328. package/node_modules/@plusplusoneplusplus/forge/dist/editor/index.js +0 -42
  329. package/node_modules/@plusplusoneplusplus/forge/dist/editor/index.js.map +0 -1
  330. package/node_modules/@plusplusoneplusplus/forge/dist/editor/messages.d.ts +0 -259
  331. package/node_modules/@plusplusoneplusplus/forge/dist/editor/messages.d.ts.map +0 -1
  332. package/node_modules/@plusplusoneplusplus/forge/dist/editor/messages.js +0 -12
  333. package/node_modules/@plusplusoneplusplus/forge/dist/editor/messages.js.map +0 -1
  334. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/block-renderers.d.ts +0 -63
  335. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/block-renderers.d.ts.map +0 -1
  336. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/block-renderers.js +0 -186
  337. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/block-renderers.js.map +0 -1
  338. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/index.d.ts +0 -10
  339. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/index.d.ts.map +0 -1
  340. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/index.js +0 -50
  341. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/index.js.map +0 -1
  342. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/markdown-parser.d.ts +0 -203
  343. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/markdown-parser.d.ts.map +0 -1
  344. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/markdown-parser.js +0 -474
  345. package/node_modules/@plusplusoneplusplus/forge/dist/editor/parsing/markdown-parser.js.map +0 -1
  346. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/comment-state.d.ts +0 -132
  347. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/comment-state.d.ts.map +0 -1
  348. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/comment-state.js +0 -263
  349. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/comment-state.js.map +0 -1
  350. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/content-extraction.d.ts +0 -151
  351. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/content-extraction.d.ts.map +0 -1
  352. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/content-extraction.js +0 -463
  353. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/content-extraction.js.map +0 -1
  354. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/cursor-management.d.ts +0 -160
  355. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/cursor-management.d.ts.map +0 -1
  356. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/cursor-management.js +0 -362
  357. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/cursor-management.js.map +0 -1
  358. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/heading-parser.d.ts +0 -63
  359. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/heading-parser.d.ts.map +0 -1
  360. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/heading-parser.js +0 -123
  361. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/heading-parser.js.map +0 -1
  362. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/index.d.ts +0 -14
  363. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/index.d.ts.map +0 -1
  364. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/index.js +0 -88
  365. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/index.js.map +0 -1
  366. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/markdown-renderer.d.ts +0 -85
  367. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/markdown-renderer.d.ts.map +0 -1
  368. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/markdown-renderer.js +0 -404
  369. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/markdown-renderer.js.map +0 -1
  370. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/selection-utils.d.ts +0 -65
  371. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/selection-utils.d.ts.map +0 -1
  372. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/selection-utils.js +0 -222
  373. package/node_modules/@plusplusoneplusplus/forge/dist/editor/rendering/selection-utils.js.map +0 -1
  374. package/node_modules/@plusplusoneplusplus/forge/dist/editor/state-store.d.ts +0 -16
  375. package/node_modules/@plusplusoneplusplus/forge/dist/editor/state-store.d.ts.map +0 -1
  376. package/node_modules/@plusplusoneplusplus/forge/dist/editor/state-store.js +0 -9
  377. package/node_modules/@plusplusoneplusplus/forge/dist/editor/state-store.js.map +0 -1
  378. package/node_modules/@plusplusoneplusplus/forge/dist/editor/transport.d.ts +0 -22
  379. package/node_modules/@plusplusoneplusplus/forge/dist/editor/transport.d.ts.map +0 -1
  380. package/node_modules/@plusplusoneplusplus/forge/dist/editor/transport.js +0 -9
  381. package/node_modules/@plusplusoneplusplus/forge/dist/editor/transport.js.map +0 -1
  382. package/node_modules/@plusplusoneplusplus/forge/dist/editor/types.d.ts +0 -178
  383. package/node_modules/@plusplusoneplusplus/forge/dist/editor/types.d.ts.map +0 -1
  384. package/node_modules/@plusplusoneplusplus/forge/dist/editor/types.js +0 -34
  385. package/node_modules/@plusplusoneplusplus/forge/dist/editor/types.js.map +0 -1
  386. package/node_modules/@plusplusoneplusplus/forge/dist/errors/error-codes.d.ts +0 -116
  387. package/node_modules/@plusplusoneplusplus/forge/dist/errors/error-codes.d.ts.map +0 -1
  388. package/node_modules/@plusplusoneplusplus/forge/dist/errors/error-codes.js +0 -162
  389. package/node_modules/@plusplusoneplusplus/forge/dist/errors/error-codes.js.map +0 -1
  390. package/node_modules/@plusplusoneplusplus/forge/dist/errors/index.d.ts +0 -8
  391. package/node_modules/@plusplusoneplusplus/forge/dist/errors/index.d.ts.map +0 -1
  392. package/node_modules/@plusplusoneplusplus/forge/dist/errors/index.js +0 -21
  393. package/node_modules/@plusplusoneplusplus/forge/dist/errors/index.js.map +0 -1
  394. package/node_modules/@plusplusoneplusplus/forge/dist/errors/pipeline-core-error.d.ts +0 -94
  395. package/node_modules/@plusplusoneplusplus/forge/dist/errors/pipeline-core-error.d.ts.map +0 -1
  396. package/node_modules/@plusplusoneplusplus/forge/dist/errors/pipeline-core-error.js +0 -185
  397. package/node_modules/@plusplusoneplusplus/forge/dist/errors/pipeline-core-error.js.map +0 -1
  398. package/node_modules/@plusplusoneplusplus/forge/dist/file-process-store.d.ts +0 -130
  399. package/node_modules/@plusplusoneplusplus/forge/dist/file-process-store.d.ts.map +0 -1
  400. package/node_modules/@plusplusoneplusplus/forge/dist/file-process-store.js +0 -935
  401. package/node_modules/@plusplusoneplusplus/forge/dist/file-process-store.js.map +0 -1
  402. package/node_modules/@plusplusoneplusplus/forge/dist/git/branch-service.d.ts +0 -161
  403. package/node_modules/@plusplusoneplusplus/forge/dist/git/branch-service.d.ts.map +0 -1
  404. package/node_modules/@plusplusoneplusplus/forge/dist/git/branch-service.js +0 -663
  405. package/node_modules/@plusplusoneplusplus/forge/dist/git/branch-service.js.map +0 -1
  406. package/node_modules/@plusplusoneplusplus/forge/dist/git/constants.d.ts +0 -21
  407. package/node_modules/@plusplusoneplusplus/forge/dist/git/constants.d.ts.map +0 -1
  408. package/node_modules/@plusplusoneplusplus/forge/dist/git/constants.js +0 -40
  409. package/node_modules/@plusplusoneplusplus/forge/dist/git/constants.js.map +0 -1
  410. package/node_modules/@plusplusoneplusplus/forge/dist/git/exec.d.ts +0 -26
  411. package/node_modules/@plusplusoneplusplus/forge/dist/git/exec.d.ts.map +0 -1
  412. package/node_modules/@plusplusoneplusplus/forge/dist/git/exec.js +0 -37
  413. package/node_modules/@plusplusoneplusplus/forge/dist/git/exec.js.map +0 -1
  414. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-log-service.d.ts +0 -93
  415. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-log-service.d.ts.map +0 -1
  416. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-log-service.js +0 -586
  417. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-log-service.js.map +0 -1
  418. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-ops-store.d.ts +0 -62
  419. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-ops-store.d.ts.map +0 -1
  420. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-ops-store.js +0 -215
  421. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-ops-store.js.map +0 -1
  422. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-range-service.d.ts +0 -87
  423. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-range-service.d.ts.map +0 -1
  424. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-range-service.js +0 -388
  425. package/node_modules/@plusplusoneplusplus/forge/dist/git/git-range-service.js.map +0 -1
  426. package/node_modules/@plusplusoneplusplus/forge/dist/git/index.d.ts +0 -14
  427. package/node_modules/@plusplusoneplusplus/forge/dist/git/index.d.ts.map +0 -1
  428. package/node_modules/@plusplusoneplusplus/forge/dist/git/index.js +0 -30
  429. package/node_modules/@plusplusoneplusplus/forge/dist/git/index.js.map +0 -1
  430. package/node_modules/@plusplusoneplusplus/forge/dist/git/normalize-url.d.ts +0 -25
  431. package/node_modules/@plusplusoneplusplus/forge/dist/git/normalize-url.d.ts.map +0 -1
  432. package/node_modules/@plusplusoneplusplus/forge/dist/git/normalize-url.js +0 -57
  433. package/node_modules/@plusplusoneplusplus/forge/dist/git/normalize-url.js.map +0 -1
  434. package/node_modules/@plusplusoneplusplus/forge/dist/git/remote.d.ts +0 -52
  435. package/node_modules/@plusplusoneplusplus/forge/dist/git/remote.d.ts.map +0 -1
  436. package/node_modules/@plusplusoneplusplus/forge/dist/git/remote.js +0 -99
  437. package/node_modules/@plusplusoneplusplus/forge/dist/git/remote.js.map +0 -1
  438. package/node_modules/@plusplusoneplusplus/forge/dist/git/types.d.ts +0 -236
  439. package/node_modules/@plusplusoneplusplus/forge/dist/git/types.d.ts.map +0 -1
  440. package/node_modules/@plusplusoneplusplus/forge/dist/git/types.js +0 -10
  441. package/node_modules/@plusplusoneplusplus/forge/dist/git/types.js.map +0 -1
  442. package/node_modules/@plusplusoneplusplus/forge/dist/git/working-tree-service.d.ts +0 -73
  443. package/node_modules/@plusplusoneplusplus/forge/dist/git/working-tree-service.d.ts.map +0 -1
  444. package/node_modules/@plusplusoneplusplus/forge/dist/git/working-tree-service.js +0 -327
  445. package/node_modules/@plusplusoneplusplus/forge/dist/git/working-tree-service.js.map +0 -1
  446. package/node_modules/@plusplusoneplusplus/forge/dist/github/create-github-adapter.d.ts +0 -11
  447. package/node_modules/@plusplusoneplusplus/forge/dist/github/create-github-adapter.d.ts.map +0 -1
  448. package/node_modules/@plusplusoneplusplus/forge/dist/github/create-github-adapter.js +0 -14
  449. package/node_modules/@plusplusoneplusplus/forge/dist/github/create-github-adapter.js.map +0 -1
  450. package/node_modules/@plusplusoneplusplus/forge/dist/github/github-issues-adapter.d.ts +0 -24
  451. package/node_modules/@plusplusoneplusplus/forge/dist/github/github-issues-adapter.d.ts.map +0 -1
  452. package/node_modules/@plusplusoneplusplus/forge/dist/github/github-issues-adapter.js +0 -117
  453. package/node_modules/@plusplusoneplusplus/forge/dist/github/github-issues-adapter.js.map +0 -1
  454. package/node_modules/@plusplusoneplusplus/forge/dist/github/github-pull-requests-adapter.d.ts +0 -26
  455. package/node_modules/@plusplusoneplusplus/forge/dist/github/github-pull-requests-adapter.d.ts.map +0 -1
  456. package/node_modules/@plusplusoneplusplus/forge/dist/github/github-pull-requests-adapter.js +0 -180
  457. package/node_modules/@plusplusoneplusplus/forge/dist/github/github-pull-requests-adapter.js.map +0 -1
  458. package/node_modules/@plusplusoneplusplus/forge/dist/github/index.d.ts +0 -5
  459. package/node_modules/@plusplusoneplusplus/forge/dist/github/index.d.ts.map +0 -1
  460. package/node_modules/@plusplusoneplusplus/forge/dist/github/index.js +0 -10
  461. package/node_modules/@plusplusoneplusplus/forge/dist/github/index.js.map +0 -1
  462. package/node_modules/@plusplusoneplusplus/forge/dist/github/types.d.ts +0 -67
  463. package/node_modules/@plusplusoneplusplus/forge/dist/github/types.d.ts.map +0 -1
  464. package/node_modules/@plusplusoneplusplus/forge/dist/github/types.js +0 -4
  465. package/node_modules/@plusplusoneplusplus/forge/dist/github/types.js.map +0 -1
  466. package/node_modules/@plusplusoneplusplus/forge/dist/index.d.ts +0 -88
  467. package/node_modules/@plusplusoneplusplus/forge/dist/index.d.ts.map +0 -1
  468. package/node_modules/@plusplusoneplusplus/forge/dist/index.js +0 -763
  469. package/node_modules/@plusplusoneplusplus/forge/dist/index.js.map +0 -1
  470. package/node_modules/@plusplusoneplusplus/forge/dist/logger.d.ts +0 -106
  471. package/node_modules/@plusplusoneplusplus/forge/dist/logger.d.ts.map +0 -1
  472. package/node_modules/@plusplusoneplusplus/forge/dist/logger.js +0 -116
  473. package/node_modules/@plusplusoneplusplus/forge/dist/logger.js.map +0 -1
  474. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/concurrency-limiter.d.ts +0 -6
  475. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/concurrency-limiter.d.ts.map +0 -1
  476. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/concurrency-limiter.js +0 -11
  477. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/concurrency-limiter.js.map +0 -1
  478. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/executor.d.ts +0 -39
  479. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/executor.d.ts.map +0 -1
  480. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/executor.js +0 -253
  481. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/executor.js.map +0 -1
  482. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/index.d.ts +0 -25
  483. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/index.d.ts.map +0 -1
  484. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/index.js +0 -101
  485. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/index.js.map +0 -1
  486. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/code-review-job.d.ts +0 -141
  487. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/code-review-job.d.ts.map +0 -1
  488. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/code-review-job.js +0 -437
  489. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/code-review-job.js.map +0 -1
  490. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/index.d.ts +0 -12
  491. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/index.d.ts.map +0 -1
  492. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/index.js +0 -22
  493. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/index.js.map +0 -1
  494. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/prompt-map-job.d.ts +0 -133
  495. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/prompt-map-job.d.ts.map +0 -1
  496. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/prompt-map-job.js +0 -489
  497. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/prompt-map-job.js.map +0 -1
  498. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/template-job.d.ts +0 -113
  499. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/template-job.d.ts.map +0 -1
  500. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/template-job.js +0 -206
  501. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/jobs/template-job.js.map +0 -1
  502. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/process-tracker-adapter.d.ts +0 -20
  503. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/process-tracker-adapter.d.ts.map +0 -1
  504. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/process-tracker-adapter.js +0 -57
  505. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/process-tracker-adapter.js.map +0 -1
  506. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/progress-reporter.d.ts +0 -13
  507. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/progress-reporter.d.ts.map +0 -1
  508. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/progress-reporter.js +0 -19
  509. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/progress-reporter.js.map +0 -1
  510. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/prompt-template.d.ts +0 -109
  511. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/prompt-template.d.ts.map +0 -1
  512. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/prompt-template.js +0 -254
  513. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/prompt-template.js.map +0 -1
  514. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/ai-reducer.d.ts +0 -83
  515. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/ai-reducer.d.ts.map +0 -1
  516. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/ai-reducer.js +0 -157
  517. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/ai-reducer.js.map +0 -1
  518. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/deterministic.d.ts +0 -108
  519. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/deterministic.d.ts.map +0 -1
  520. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/deterministic.js +0 -186
  521. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/deterministic.js.map +0 -1
  522. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/hybrid-reducer.d.ts +0 -89
  523. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/hybrid-reducer.d.ts.map +0 -1
  524. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/hybrid-reducer.js +0 -144
  525. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/hybrid-reducer.js.map +0 -1
  526. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/index.d.ts +0 -13
  527. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/index.d.ts.map +0 -1
  528. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/index.js +0 -31
  529. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/index.js.map +0 -1
  530. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/reducer.d.ts +0 -54
  531. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/reducer.d.ts.map +0 -1
  532. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/reducer.js +0 -109
  533. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/reducers/reducer.js.map +0 -1
  534. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/chunk-splitter.d.ts +0 -111
  535. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/chunk-splitter.d.ts.map +0 -1
  536. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/chunk-splitter.js +0 -284
  537. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/chunk-splitter.js.map +0 -1
  538. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/file-splitter.d.ts +0 -103
  539. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/file-splitter.d.ts.map +0 -1
  540. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/file-splitter.js +0 -168
  541. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/file-splitter.js.map +0 -1
  542. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/index.d.ts +0 -12
  543. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/index.d.ts.map +0 -1
  544. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/index.js +0 -31
  545. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/index.js.map +0 -1
  546. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/rule-splitter.d.ts +0 -126
  547. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/rule-splitter.d.ts.map +0 -1
  548. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/rule-splitter.js +0 -179
  549. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/splitters/rule-splitter.js.map +0 -1
  550. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/temp-file-utils.d.ts +0 -73
  551. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/temp-file-utils.d.ts.map +0 -1
  552. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/temp-file-utils.js +0 -195
  553. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/temp-file-utils.js.map +0 -1
  554. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/types.d.ts +0 -265
  555. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/types.d.ts.map +0 -1
  556. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/types.js +0 -25
  557. package/node_modules/@plusplusoneplusplus/forge/dist/map-reduce/types.js.map +0 -1
  558. package/node_modules/@plusplusoneplusplus/forge/dist/memory/base-file-store.d.ts +0 -12
  559. package/node_modules/@plusplusoneplusplus/forge/dist/memory/base-file-store.d.ts.map +0 -1
  560. package/node_modules/@plusplusoneplusplus/forge/dist/memory/base-file-store.js +0 -89
  561. package/node_modules/@plusplusoneplusplus/forge/dist/memory/base-file-store.js.map +0 -1
  562. package/node_modules/@plusplusoneplusplus/forge/dist/memory/index.d.ts +0 -27
  563. package/node_modules/@plusplusoneplusplus/forge/dist/memory/index.d.ts.map +0 -1
  564. package/node_modules/@plusplusoneplusplus/forge/dist/memory/index.js +0 -32
  565. package/node_modules/@plusplusoneplusplus/forge/dist/memory/index.js.map +0 -1
  566. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-aggregator.d.ts +0 -34
  567. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-aggregator.d.ts.map +0 -1
  568. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-aggregator.js +0 -103
  569. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-aggregator.js.map +0 -1
  570. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-retriever.d.ts +0 -20
  571. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-retriever.d.ts.map +0 -1
  572. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-retriever.js +0 -59
  573. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-retriever.js.map +0 -1
  574. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-store.d.ts +0 -42
  575. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-store.d.ts.map +0 -1
  576. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-store.js +0 -381
  577. package/node_modules/@plusplusoneplusplus/forge/dist/memory/memory-store.js.map +0 -1
  578. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-aggregator.d.ts +0 -35
  579. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-aggregator.d.ts.map +0 -1
  580. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-aggregator.js +0 -128
  581. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-aggregator.js.map +0 -1
  582. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-presets.d.ts +0 -22
  583. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-presets.d.ts.map +0 -1
  584. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-presets.js +0 -32
  585. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-presets.js.map +0 -1
  586. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-retriever.d.ts +0 -66
  587. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-retriever.d.ts.map +0 -1
  588. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-retriever.js +0 -151
  589. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-retriever.js.map +0 -1
  590. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-store.d.ts +0 -57
  591. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-store.d.ts.map +0 -1
  592. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-store.js +0 -364
  593. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-store.js.map +0 -1
  594. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-types.d.ts +0 -180
  595. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-types.d.ts.map +0 -1
  596. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-types.js +0 -12
  597. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-cache-types.js.map +0 -1
  598. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-capture.d.ts +0 -44
  599. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-capture.d.ts.map +0 -1
  600. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-capture.js +0 -163
  601. package/node_modules/@plusplusoneplusplus/forge/dist/memory/tool-call-capture.js.map +0 -1
  602. package/node_modules/@plusplusoneplusplus/forge/dist/memory/types.d.ts +0 -181
  603. package/node_modules/@plusplusoneplusplus/forge/dist/memory/types.d.ts.map +0 -1
  604. package/node_modules/@plusplusoneplusplus/forge/dist/memory/types.js +0 -12
  605. package/node_modules/@plusplusoneplusplus/forge/dist/memory/types.js.map +0 -1
  606. package/node_modules/@plusplusoneplusplus/forge/dist/memory/with-memory.d.ts +0 -13
  607. package/node_modules/@plusplusoneplusplus/forge/dist/memory/with-memory.d.ts.map +0 -1
  608. package/node_modules/@plusplusoneplusplus/forge/dist/memory/with-memory.js +0 -50
  609. package/node_modules/@plusplusoneplusplus/forge/dist/memory/with-memory.js.map +0 -1
  610. package/node_modules/@plusplusoneplusplus/forge/dist/memory/with-tool-call-cache.d.ts +0 -42
  611. package/node_modules/@plusplusoneplusplus/forge/dist/memory/with-tool-call-cache.d.ts.map +0 -1
  612. package/node_modules/@plusplusoneplusplus/forge/dist/memory/with-tool-call-cache.js +0 -71
  613. package/node_modules/@plusplusoneplusplus/forge/dist/memory/with-tool-call-cache.js.map +0 -1
  614. package/node_modules/@plusplusoneplusplus/forge/dist/memory/write-memory-tool.d.ts +0 -32
  615. package/node_modules/@plusplusoneplusplus/forge/dist/memory/write-memory-tool.d.ts.map +0 -1
  616. package/node_modules/@plusplusoneplusplus/forge/dist/memory/write-memory-tool.js +0 -51
  617. package/node_modules/@plusplusoneplusplus/forge/dist/memory/write-memory-tool.js.map +0 -1
  618. package/node_modules/@plusplusoneplusplus/forge/dist/paths.d.ts +0 -3
  619. package/node_modules/@plusplusoneplusplus/forge/dist/paths.d.ts.map +0 -1
  620. package/node_modules/@plusplusoneplusplus/forge/dist/paths.js +0 -12
  621. package/node_modules/@plusplusoneplusplus/forge/dist/paths.js.map +0 -1
  622. package/node_modules/@plusplusoneplusplus/forge/dist/pino-logger.d.ts +0 -57
  623. package/node_modules/@plusplusoneplusplus/forge/dist/pino-logger.d.ts.map +0 -1
  624. package/node_modules/@plusplusoneplusplus/forge/dist/pino-logger.js +0 -86
  625. package/node_modules/@plusplusoneplusplus/forge/dist/pino-logger.js.map +0 -1
  626. package/node_modules/@plusplusoneplusplus/forge/dist/pipeline-types.d.ts +0 -67
  627. package/node_modules/@plusplusoneplusplus/forge/dist/pipeline-types.d.ts.map +0 -1
  628. package/node_modules/@plusplusoneplusplus/forge/dist/pipeline-types.js +0 -7
  629. package/node_modules/@plusplusoneplusplus/forge/dist/pipeline-types.js.map +0 -1
  630. package/node_modules/@plusplusoneplusplus/forge/dist/process-store.d.ts +0 -264
  631. package/node_modules/@plusplusoneplusplus/forge/dist/process-store.d.ts.map +0 -1
  632. package/node_modules/@plusplusoneplusplus/forge/dist/process-store.js +0 -11
  633. package/node_modules/@plusplusoneplusplus/forge/dist/process-store.js.map +0 -1
  634. package/node_modules/@plusplusoneplusplus/forge/dist/providers/index.d.ts +0 -3
  635. package/node_modules/@plusplusoneplusplus/forge/dist/providers/index.d.ts.map +0 -1
  636. package/node_modules/@plusplusoneplusplus/forge/dist/providers/index.js +0 -6
  637. package/node_modules/@plusplusoneplusplus/forge/dist/providers/index.js.map +0 -1
  638. package/node_modules/@plusplusoneplusplus/forge/dist/providers/interfaces.d.ts +0 -40
  639. package/node_modules/@plusplusoneplusplus/forge/dist/providers/interfaces.d.ts.map +0 -1
  640. package/node_modules/@plusplusoneplusplus/forge/dist/providers/interfaces.js +0 -3
  641. package/node_modules/@plusplusoneplusplus/forge/dist/providers/interfaces.js.map +0 -1
  642. package/node_modules/@plusplusoneplusplus/forge/dist/providers/types.d.ts +0 -116
  643. package/node_modules/@plusplusoneplusplus/forge/dist/providers/types.d.ts.map +0 -1
  644. package/node_modules/@plusplusoneplusplus/forge/dist/providers/types.js +0 -10
  645. package/node_modules/@plusplusoneplusplus/forge/dist/providers/types.js.map +0 -1
  646. package/node_modules/@plusplusoneplusplus/forge/dist/queue/follow-prompt.d.ts +0 -41
  647. package/node_modules/@plusplusoneplusplus/forge/dist/queue/follow-prompt.d.ts.map +0 -1
  648. package/node_modules/@plusplusoneplusplus/forge/dist/queue/follow-prompt.js +0 -51
  649. package/node_modules/@plusplusoneplusplus/forge/dist/queue/follow-prompt.js.map +0 -1
  650. package/node_modules/@plusplusoneplusplus/forge/dist/queue/index.d.ts +0 -57
  651. package/node_modules/@plusplusoneplusplus/forge/dist/queue/index.d.ts.map +0 -1
  652. package/node_modules/@plusplusoneplusplus/forge/dist/queue/index.js +0 -92
  653. package/node_modules/@plusplusoneplusplus/forge/dist/queue/index.js.map +0 -1
  654. package/node_modules/@plusplusoneplusplus/forge/dist/queue/queue-executor.d.ts +0 -148
  655. package/node_modules/@plusplusoneplusplus/forge/dist/queue/queue-executor.d.ts.map +0 -1
  656. package/node_modules/@plusplusoneplusplus/forge/dist/queue/queue-executor.js +0 -465
  657. package/node_modules/@plusplusoneplusplus/forge/dist/queue/queue-executor.js.map +0 -1
  658. package/node_modules/@plusplusoneplusplus/forge/dist/queue/repo-queue-registry.d.ts +0 -85
  659. package/node_modules/@plusplusoneplusplus/forge/dist/queue/repo-queue-registry.d.ts.map +0 -1
  660. package/node_modules/@plusplusoneplusplus/forge/dist/queue/repo-queue-registry.js +0 -238
  661. package/node_modules/@plusplusoneplusplus/forge/dist/queue/repo-queue-registry.js.map +0 -1
  662. package/node_modules/@plusplusoneplusplus/forge/dist/queue/task-queue-manager.d.ts +0 -402
  663. package/node_modules/@plusplusoneplusplus/forge/dist/queue/task-queue-manager.d.ts.map +0 -1
  664. package/node_modules/@plusplusoneplusplus/forge/dist/queue/task-queue-manager.js +0 -1059
  665. package/node_modules/@plusplusoneplusplus/forge/dist/queue/task-queue-manager.js.map +0 -1
  666. package/node_modules/@plusplusoneplusplus/forge/dist/queue/types.d.ts +0 -317
  667. package/node_modules/@plusplusoneplusplus/forge/dist/queue/types.d.ts.map +0 -1
  668. package/node_modules/@plusplusoneplusplus/forge/dist/queue/types.js +0 -75
  669. package/node_modules/@plusplusoneplusplus/forge/dist/queue/types.js.map +0 -1
  670. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/cancellation.d.ts +0 -41
  671. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/cancellation.d.ts.map +0 -1
  672. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/cancellation.js +0 -59
  673. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/cancellation.js.map +0 -1
  674. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/concurrency-limiter.d.ts +0 -84
  675. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/concurrency-limiter.d.ts.map +0 -1
  676. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/concurrency-limiter.js +0 -144
  677. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/concurrency-limiter.js.map +0 -1
  678. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/index.d.ts +0 -11
  679. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/index.d.ts.map +0 -1
  680. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/index.js +0 -38
  681. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/index.js.map +0 -1
  682. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/policy.d.ts +0 -95
  683. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/policy.d.ts.map +0 -1
  684. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/policy.js +0 -112
  685. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/policy.js.map +0 -1
  686. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/retry.d.ts +0 -92
  687. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/retry.d.ts.map +0 -1
  688. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/retry.js +0 -143
  689. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/retry.js.map +0 -1
  690. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/timeout.d.ts +0 -77
  691. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/timeout.d.ts.map +0 -1
  692. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/timeout.js +0 -137
  693. package/node_modules/@plusplusoneplusplus/forge/dist/runtime/timeout.js.map +0 -1
  694. package/node_modules/@plusplusoneplusplus/forge/dist/skills/bundled-skills-provider.d.ts +0 -21
  695. package/node_modules/@plusplusoneplusplus/forge/dist/skills/bundled-skills-provider.d.ts.map +0 -1
  696. package/node_modules/@plusplusoneplusplus/forge/dist/skills/bundled-skills-provider.js +0 -185
  697. package/node_modules/@plusplusoneplusplus/forge/dist/skills/bundled-skills-provider.js.map +0 -1
  698. package/node_modules/@plusplusoneplusplus/forge/dist/skills/github-api-utils.d.ts +0 -9
  699. package/node_modules/@plusplusoneplusplus/forge/dist/skills/github-api-utils.d.ts.map +0 -1
  700. package/node_modules/@plusplusoneplusplus/forge/dist/skills/github-api-utils.js +0 -19
  701. package/node_modules/@plusplusoneplusplus/forge/dist/skills/github-api-utils.js.map +0 -1
  702. package/node_modules/@plusplusoneplusplus/forge/dist/skills/index.d.ts +0 -6
  703. package/node_modules/@plusplusoneplusplus/forge/dist/skills/index.d.ts.map +0 -1
  704. package/node_modules/@plusplusoneplusplus/forge/dist/skills/index.js +0 -22
  705. package/node_modules/@plusplusoneplusplus/forge/dist/skills/index.js.map +0 -1
  706. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-installer.d.ts +0 -14
  707. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-installer.d.ts.map +0 -1
  708. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-installer.js +0 -231
  709. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-installer.js.map +0 -1
  710. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-resolver.d.ts +0 -162
  711. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-resolver.d.ts.map +0 -1
  712. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-resolver.js +0 -404
  713. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-resolver.js.map +0 -1
  714. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-scanner.d.ts +0 -20
  715. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-scanner.d.ts.map +0 -1
  716. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-scanner.js +0 -458
  717. package/node_modules/@plusplusoneplusplus/forge/dist/skills/skill-scanner.js.map +0 -1
  718. package/node_modules/@plusplusoneplusplus/forge/dist/skills/source-detector.d.ts +0 -57
  719. package/node_modules/@plusplusoneplusplus/forge/dist/skills/source-detector.d.ts.map +0 -1
  720. package/node_modules/@plusplusoneplusplus/forge/dist/skills/source-detector.js +0 -290
  721. package/node_modules/@plusplusoneplusplus/forge/dist/skills/source-detector.js.map +0 -1
  722. package/node_modules/@plusplusoneplusplus/forge/dist/skills/types.d.ts +0 -101
  723. package/node_modules/@plusplusoneplusplus/forge/dist/skills/types.d.ts.map +0 -1
  724. package/node_modules/@plusplusoneplusplus/forge/dist/skills/types.js +0 -13
  725. package/node_modules/@plusplusoneplusplus/forge/dist/skills/types.js.map +0 -1
  726. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/discovery-prompt-builder.d.ts +0 -59
  727. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/discovery-prompt-builder.d.ts.map +0 -1
  728. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/discovery-prompt-builder.js +0 -114
  729. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/discovery-prompt-builder.js.map +0 -1
  730. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/index.d.ts +0 -18
  731. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/index.d.ts.map +0 -1
  732. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/index.js +0 -94
  733. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/index.js.map +0 -1
  734. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/related-items-loader.d.ts +0 -57
  735. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/related-items-loader.d.ts.map +0 -1
  736. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/related-items-loader.js +0 -250
  737. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/related-items-loader.js.map +0 -1
  738. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-manager.d.ts +0 -79
  739. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-manager.d.ts.map +0 -1
  740. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-manager.js +0 -300
  741. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-manager.js.map +0 -1
  742. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-operations.d.ts +0 -200
  743. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-operations.d.ts.map +0 -1
  744. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-operations.js +0 -658
  745. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-operations.js.map +0 -1
  746. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-parser.d.ts +0 -40
  747. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-parser.d.ts.map +0 -1
  748. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-parser.js +0 -169
  749. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-parser.js.map +0 -1
  750. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-prompt-builder.d.ts +0 -128
  751. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-prompt-builder.d.ts.map +0 -1
  752. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-prompt-builder.js +0 -380
  753. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-prompt-builder.js.map +0 -1
  754. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-scanner.d.ts +0 -53
  755. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-scanner.d.ts.map +0 -1
  756. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-scanner.js +0 -341
  757. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/task-scanner.js.map +0 -1
  758. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/types.d.ts +0 -259
  759. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/types.d.ts.map +0 -1
  760. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/types.js +0 -7
  761. package/node_modules/@plusplusoneplusplus/forge/dist/tasks/types.js.map +0 -1
  762. package/node_modules/@plusplusoneplusplus/forge/dist/templates/index.d.ts +0 -5
  763. package/node_modules/@plusplusoneplusplus/forge/dist/templates/index.d.ts.map +0 -1
  764. package/node_modules/@plusplusoneplusplus/forge/dist/templates/index.js +0 -10
  765. package/node_modules/@plusplusoneplusplus/forge/dist/templates/index.js.map +0 -1
  766. package/node_modules/@plusplusoneplusplus/forge/dist/templates/prompt-builder.d.ts +0 -7
  767. package/node_modules/@plusplusoneplusplus/forge/dist/templates/prompt-builder.d.ts.map +0 -1
  768. package/node_modules/@plusplusoneplusplus/forge/dist/templates/prompt-builder.js +0 -66
  769. package/node_modules/@plusplusoneplusplus/forge/dist/templates/prompt-builder.js.map +0 -1
  770. package/node_modules/@plusplusoneplusplus/forge/dist/templates/replicate-service.d.ts +0 -5
  771. package/node_modules/@plusplusoneplusplus/forge/dist/templates/replicate-service.d.ts.map +0 -1
  772. package/node_modules/@plusplusoneplusplus/forge/dist/templates/replicate-service.js +0 -46
  773. package/node_modules/@plusplusoneplusplus/forge/dist/templates/replicate-service.js.map +0 -1
  774. package/node_modules/@plusplusoneplusplus/forge/dist/templates/result-parser.d.ts +0 -6
  775. package/node_modules/@plusplusoneplusplus/forge/dist/templates/result-parser.d.ts.map +0 -1
  776. package/node_modules/@plusplusoneplusplus/forge/dist/templates/result-parser.js +0 -76
  777. package/node_modules/@plusplusoneplusplus/forge/dist/templates/result-parser.js.map +0 -1
  778. package/node_modules/@plusplusoneplusplus/forge/dist/templates/types.d.ts +0 -31
  779. package/node_modules/@plusplusoneplusplus/forge/dist/templates/types.d.ts.map +0 -1
  780. package/node_modules/@plusplusoneplusplus/forge/dist/templates/types.js +0 -3
  781. package/node_modules/@plusplusoneplusplus/forge/dist/templates/types.js.map +0 -1
  782. package/node_modules/@plusplusoneplusplus/forge/dist/utils/ai-response-parser.d.ts +0 -24
  783. package/node_modules/@plusplusoneplusplus/forge/dist/utils/ai-response-parser.d.ts.map +0 -1
  784. package/node_modules/@plusplusoneplusplus/forge/dist/utils/ai-response-parser.js +0 -336
  785. package/node_modules/@plusplusoneplusplus/forge/dist/utils/ai-response-parser.js.map +0 -1
  786. package/node_modules/@plusplusoneplusplus/forge/dist/utils/csv-reader.d.ts +0 -80
  787. package/node_modules/@plusplusoneplusplus/forge/dist/utils/csv-reader.d.ts.map +0 -1
  788. package/node_modules/@plusplusoneplusplus/forge/dist/utils/csv-reader.js +0 -291
  789. package/node_modules/@plusplusoneplusplus/forge/dist/utils/csv-reader.js.map +0 -1
  790. package/node_modules/@plusplusoneplusplus/forge/dist/utils/exec-utils.d.ts +0 -15
  791. package/node_modules/@plusplusoneplusplus/forge/dist/utils/exec-utils.d.ts.map +0 -1
  792. package/node_modules/@plusplusoneplusplus/forge/dist/utils/exec-utils.js +0 -37
  793. package/node_modules/@plusplusoneplusplus/forge/dist/utils/exec-utils.js.map +0 -1
  794. package/node_modules/@plusplusoneplusplus/forge/dist/utils/external-terminal-launcher.d.ts +0 -67
  795. package/node_modules/@plusplusoneplusplus/forge/dist/utils/external-terminal-launcher.d.ts.map +0 -1
  796. package/node_modules/@plusplusoneplusplus/forge/dist/utils/external-terminal-launcher.js +0 -317
  797. package/node_modules/@plusplusoneplusplus/forge/dist/utils/external-terminal-launcher.js.map +0 -1
  798. package/node_modules/@plusplusoneplusplus/forge/dist/utils/file-utils.d.ts +0 -228
  799. package/node_modules/@plusplusoneplusplus/forge/dist/utils/file-utils.d.ts.map +0 -1
  800. package/node_modules/@plusplusoneplusplus/forge/dist/utils/file-utils.js +0 -419
  801. package/node_modules/@plusplusoneplusplus/forge/dist/utils/file-utils.js.map +0 -1
  802. package/node_modules/@plusplusoneplusplus/forge/dist/utils/filter-executor.d.ts +0 -60
  803. package/node_modules/@plusplusoneplusplus/forge/dist/utils/filter-executor.d.ts.map +0 -1
  804. package/node_modules/@plusplusoneplusplus/forge/dist/utils/filter-executor.js +0 -293
  805. package/node_modules/@plusplusoneplusplus/forge/dist/utils/filter-executor.js.map +0 -1
  806. package/node_modules/@plusplusoneplusplus/forge/dist/utils/glob-utils.d.ts +0 -21
  807. package/node_modules/@plusplusoneplusplus/forge/dist/utils/glob-utils.d.ts.map +0 -1
  808. package/node_modules/@plusplusoneplusplus/forge/dist/utils/glob-utils.js +0 -130
  809. package/node_modules/@plusplusoneplusplus/forge/dist/utils/glob-utils.js.map +0 -1
  810. package/node_modules/@plusplusoneplusplus/forge/dist/utils/http-utils.d.ts +0 -47
  811. package/node_modules/@plusplusoneplusplus/forge/dist/utils/http-utils.d.ts.map +0 -1
  812. package/node_modules/@plusplusoneplusplus/forge/dist/utils/http-utils.js +0 -151
  813. package/node_modules/@plusplusoneplusplus/forge/dist/utils/http-utils.js.map +0 -1
  814. package/node_modules/@plusplusoneplusplus/forge/dist/utils/index.d.ts +0 -20
  815. package/node_modules/@plusplusoneplusplus/forge/dist/utils/index.d.ts.map +0 -1
  816. package/node_modules/@plusplusoneplusplus/forge/dist/utils/index.js +0 -89
  817. package/node_modules/@plusplusoneplusplus/forge/dist/utils/index.js.map +0 -1
  818. package/node_modules/@plusplusoneplusplus/forge/dist/utils/input-generator.d.ts +0 -110
  819. package/node_modules/@plusplusoneplusplus/forge/dist/utils/input-generator.d.ts.map +0 -1
  820. package/node_modules/@plusplusoneplusplus/forge/dist/utils/input-generator.js +0 -241
  821. package/node_modules/@plusplusoneplusplus/forge/dist/utils/input-generator.js.map +0 -1
  822. package/node_modules/@plusplusoneplusplus/forge/dist/utils/path-security.d.ts +0 -13
  823. package/node_modules/@plusplusoneplusplus/forge/dist/utils/path-security.d.ts.map +0 -1
  824. package/node_modules/@plusplusoneplusplus/forge/dist/utils/path-security.js +0 -54
  825. package/node_modules/@plusplusoneplusplus/forge/dist/utils/path-security.js.map +0 -1
  826. package/node_modules/@plusplusoneplusplus/forge/dist/utils/path-utils.d.ts +0 -16
  827. package/node_modules/@plusplusoneplusplus/forge/dist/utils/path-utils.d.ts.map +0 -1
  828. package/node_modules/@plusplusoneplusplus/forge/dist/utils/path-utils.js +0 -27
  829. package/node_modules/@plusplusoneplusplus/forge/dist/utils/path-utils.js.map +0 -1
  830. package/node_modules/@plusplusoneplusplus/forge/dist/utils/pipeline-template.d.ts +0 -104
  831. package/node_modules/@plusplusoneplusplus/forge/dist/utils/pipeline-template.d.ts.map +0 -1
  832. package/node_modules/@plusplusoneplusplus/forge/dist/utils/pipeline-template.js +0 -179
  833. package/node_modules/@plusplusoneplusplus/forge/dist/utils/pipeline-template.js.map +0 -1
  834. package/node_modules/@plusplusoneplusplus/forge/dist/utils/process-monitor.d.ts +0 -120
  835. package/node_modules/@plusplusoneplusplus/forge/dist/utils/process-monitor.d.ts.map +0 -1
  836. package/node_modules/@plusplusoneplusplus/forge/dist/utils/process-monitor.js +0 -237
  837. package/node_modules/@plusplusoneplusplus/forge/dist/utils/process-monitor.js.map +0 -1
  838. package/node_modules/@plusplusoneplusplus/forge/dist/utils/prompt-resolver.d.ts +0 -139
  839. package/node_modules/@plusplusoneplusplus/forge/dist/utils/prompt-resolver.d.ts.map +0 -1
  840. package/node_modules/@plusplusoneplusplus/forge/dist/utils/prompt-resolver.js +0 -314
  841. package/node_modules/@plusplusoneplusplus/forge/dist/utils/prompt-resolver.js.map +0 -1
  842. package/node_modules/@plusplusoneplusplus/forge/dist/utils/retry-utils.d.ts +0 -19
  843. package/node_modules/@plusplusoneplusplus/forge/dist/utils/retry-utils.d.ts.map +0 -1
  844. package/node_modules/@plusplusoneplusplus/forge/dist/utils/retry-utils.js +0 -36
  845. package/node_modules/@plusplusoneplusplus/forge/dist/utils/retry-utils.js.map +0 -1
  846. package/node_modules/@plusplusoneplusplus/forge/dist/utils/template-engine.d.ts +0 -128
  847. package/node_modules/@plusplusoneplusplus/forge/dist/utils/template-engine.d.ts.map +0 -1
  848. package/node_modules/@plusplusoneplusplus/forge/dist/utils/template-engine.js +0 -180
  849. package/node_modules/@plusplusoneplusplus/forge/dist/utils/template-engine.js.map +0 -1
  850. package/node_modules/@plusplusoneplusplus/forge/dist/utils/terminal-types.d.ts +0 -83
  851. package/node_modules/@plusplusoneplusplus/forge/dist/utils/terminal-types.d.ts.map +0 -1
  852. package/node_modules/@plusplusoneplusplus/forge/dist/utils/terminal-types.js +0 -9
  853. package/node_modules/@plusplusoneplusplus/forge/dist/utils/terminal-types.js.map +0 -1
  854. package/node_modules/@plusplusoneplusplus/forge/dist/utils/text-matching.d.ts +0 -104
  855. package/node_modules/@plusplusoneplusplus/forge/dist/utils/text-matching.d.ts.map +0 -1
  856. package/node_modules/@plusplusoneplusplus/forge/dist/utils/text-matching.js +0 -253
  857. package/node_modules/@plusplusoneplusplus/forge/dist/utils/text-matching.js.map +0 -1
  858. package/node_modules/@plusplusoneplusplus/forge/dist/utils/window-focus-service.d.ts +0 -60
  859. package/node_modules/@plusplusoneplusplus/forge/dist/utils/window-focus-service.d.ts.map +0 -1
  860. package/node_modules/@plusplusoneplusplus/forge/dist/utils/window-focus-service.js +0 -168
  861. package/node_modules/@plusplusoneplusplus/forge/dist/utils/window-focus-service.js.map +0 -1
  862. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/compiler.d.ts +0 -68
  863. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/compiler.d.ts.map +0 -1
  864. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/compiler.js +0 -360
  865. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/compiler.js.map +0 -1
  866. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/concurrency-limiter.d.ts +0 -6
  867. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/concurrency-limiter.d.ts.map +0 -1
  868. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/concurrency-limiter.js +0 -11
  869. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/concurrency-limiter.js.map +0 -1
  870. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/context.d.ts +0 -20
  871. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/context.d.ts.map +0 -1
  872. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/context.js +0 -9
  873. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/context.js.map +0 -1
  874. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/executor.d.ts +0 -15
  875. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/executor.d.ts.map +0 -1
  876. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/executor.js +0 -219
  877. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/executor.js.map +0 -1
  878. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/graph.d.ts +0 -25
  879. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/graph.d.ts.map +0 -1
  880. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/graph.js +0 -120
  881. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/graph.js.map +0 -1
  882. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/index.d.ts +0 -22
  883. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/index.d.ts.map +0 -1
  884. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/index.js +0 -64
  885. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/index.js.map +0 -1
  886. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/ai.d.ts +0 -15
  887. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/ai.d.ts.map +0 -1
  888. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/ai.js +0 -60
  889. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/ai.js.map +0 -1
  890. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/filter.d.ts +0 -23
  891. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/filter.d.ts.map +0 -1
  892. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/filter.js +0 -176
  893. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/filter.js.map +0 -1
  894. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/index.d.ts +0 -7
  895. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/index.d.ts.map +0 -1
  896. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/index.js +0 -13
  897. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/index.js.map +0 -1
  898. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/load.d.ts +0 -15
  899. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/load.d.ts.map +0 -1
  900. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/load.js +0 -181
  901. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/load.js.map +0 -1
  902. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/map.d.ts +0 -18
  903. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/map.d.ts.map +0 -1
  904. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/map.js +0 -148
  905. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/map.js.map +0 -1
  906. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/merge.d.ts +0 -22
  907. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/merge.d.ts.map +0 -1
  908. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/merge.js +0 -32
  909. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/merge.js.map +0 -1
  910. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/reduce.d.ts +0 -21
  911. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/reduce.d.ts.map +0 -1
  912. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/reduce.js +0 -100
  913. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/reduce.js.map +0 -1
  914. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/script.d.ts +0 -28
  915. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/script.d.ts.map +0 -1
  916. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/script.js +0 -217
  917. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/script.js.map +0 -1
  918. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/transform.d.ts +0 -19
  919. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/transform.d.ts.map +0 -1
  920. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/transform.js +0 -55
  921. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/transform.js.map +0 -1
  922. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/utils.d.ts +0 -45
  923. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/utils.d.ts.map +0 -1
  924. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/utils.js +0 -184
  925. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/nodes/utils.js.map +0 -1
  926. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/pipeline-compat.d.ts +0 -374
  927. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/pipeline-compat.d.ts.map +0 -1
  928. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/pipeline-compat.js +0 -31
  929. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/pipeline-compat.js.map +0 -1
  930. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/result-adapter.d.ts +0 -54
  931. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/result-adapter.d.ts.map +0 -1
  932. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/result-adapter.js +0 -106
  933. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/result-adapter.js.map +0 -1
  934. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/scheduler.d.ts +0 -38
  935. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/scheduler.d.ts.map +0 -1
  936. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/scheduler.js +0 -83
  937. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/scheduler.js.map +0 -1
  938. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/types.d.ts +0 -536
  939. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/types.d.ts.map +0 -1
  940. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/types.js +0 -78
  941. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/types.js.map +0 -1
  942. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/validator.d.ts +0 -31
  943. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/validator.d.ts.map +0 -1
  944. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/validator.js +0 -127
  945. package/node_modules/@plusplusoneplusplus/forge/dist/workflow/validator.js.map +0 -1
  946. package/node_modules/@plusplusoneplusplus/forge/package.json +0 -104
  947. package/node_modules/azure-devops-node-api/AlertApi.d.ts +0 -96
  948. package/node_modules/azure-devops-node-api/AlertApi.js +0 -324
  949. package/node_modules/azure-devops-node-api/BuildApi.d.ts +0 -920
  950. package/node_modules/azure-devops-node-api/BuildApi.js +0 -3128
  951. package/node_modules/azure-devops-node-api/CIXApi.d.ts +0 -49
  952. package/node_modules/azure-devops-node-api/CIXApi.js +0 -158
  953. package/node_modules/azure-devops-node-api/ClientApiBases.d.ts +0 -15
  954. package/node_modules/azure-devops-node-api/ClientApiBases.js +0 -35
  955. package/node_modules/azure-devops-node-api/CoreApi.d.ts +0 -259
  956. package/node_modules/azure-devops-node-api/CoreApi.js +0 -959
  957. package/node_modules/azure-devops-node-api/DashboardApi.d.ts +0 -121
  958. package/node_modules/azure-devops-node-api/DashboardApi.js +0 -484
  959. package/node_modules/azure-devops-node-api/ExtensionManagementApi.d.ts +0 -212
  960. package/node_modules/azure-devops-node-api/ExtensionManagementApi.js +0 -774
  961. package/node_modules/azure-devops-node-api/FeatureManagementApi.d.ts +0 -89
  962. package/node_modules/azure-devops-node-api/FeatureManagementApi.js +0 -298
  963. package/node_modules/azure-devops-node-api/FileContainerApi.d.ts +0 -21
  964. package/node_modules/azure-devops-node-api/FileContainerApi.js +0 -237
  965. package/node_modules/azure-devops-node-api/FileContainerApiBase.d.ts +0 -53
  966. package/node_modules/azure-devops-node-api/FileContainerApiBase.js +0 -174
  967. package/node_modules/azure-devops-node-api/GalleryApi.d.ts +0 -694
  968. package/node_modules/azure-devops-node-api/GalleryApi.js +0 -2557
  969. package/node_modules/azure-devops-node-api/GalleryCompatHttpClientBase.d.ts +0 -32
  970. package/node_modules/azure-devops-node-api/GalleryCompatHttpClientBase.js +0 -120
  971. package/node_modules/azure-devops-node-api/GitApi.d.ts +0 -1503
  972. package/node_modules/azure-devops-node-api/GitApi.js +0 -4917
  973. package/node_modules/azure-devops-node-api/LICENSE +0 -21
  974. package/node_modules/azure-devops-node-api/LocationsApi.d.ts +0 -68
  975. package/node_modules/azure-devops-node-api/LocationsApi.js +0 -282
  976. package/node_modules/azure-devops-node-api/ManagementApi.d.ts +0 -131
  977. package/node_modules/azure-devops-node-api/ManagementApi.js +0 -491
  978. package/node_modules/azure-devops-node-api/NotificationApi.d.ts +0 -175
  979. package/node_modules/azure-devops-node-api/NotificationApi.js +0 -648
  980. package/node_modules/azure-devops-node-api/PipelinesApi.d.ts +0 -104
  981. package/node_modules/azure-devops-node-api/PipelinesApi.js +0 -355
  982. package/node_modules/azure-devops-node-api/PolicyApi.d.ts +0 -113
  983. package/node_modules/azure-devops-node-api/PolicyApi.js +0 -387
  984. package/node_modules/azure-devops-node-api/ProfileApi.d.ts +0 -122
  985. package/node_modules/azure-devops-node-api/ProfileApi.js +0 -496
  986. package/node_modules/azure-devops-node-api/ProjectAnalysisApi.d.ts +0 -40
  987. package/node_modules/azure-devops-node-api/ProjectAnalysisApi.js +0 -176
  988. package/node_modules/azure-devops-node-api/README.md +0 -170
  989. package/node_modules/azure-devops-node-api/ReleaseApi.d.ts +0 -812
  990. package/node_modules/azure-devops-node-api/ReleaseApi.js +0 -2800
  991. package/node_modules/azure-devops-node-api/SecurityRolesApi.d.ts +0 -48
  992. package/node_modules/azure-devops-node-api/SecurityRolesApi.js +0 -190
  993. package/node_modules/azure-devops-node-api/Serialization.d.ts +0 -67
  994. package/node_modules/azure-devops-node-api/Serialization.js +0 -272
  995. package/node_modules/azure-devops-node-api/TaskAgentApi.d.ts +0 -50
  996. package/node_modules/azure-devops-node-api/TaskAgentApi.js +0 -203
  997. package/node_modules/azure-devops-node-api/TaskAgentApiBase.d.ts +0 -1234
  998. package/node_modules/azure-devops-node-api/TaskAgentApiBase.js +0 -4656
  999. package/node_modules/azure-devops-node-api/TaskApi.d.ts +0 -250
  1000. package/node_modules/azure-devops-node-api/TaskApi.js +0 -871
  1001. package/node_modules/azure-devops-node-api/TestApi.d.ts +0 -706
  1002. package/node_modules/azure-devops-node-api/TestApi.js +0 -2523
  1003. package/node_modules/azure-devops-node-api/TestPlanApi.d.ts +0 -404
  1004. package/node_modules/azure-devops-node-api/TestPlanApi.js +0 -1361
  1005. package/node_modules/azure-devops-node-api/TestResultsApi.d.ts +0 -1013
  1006. package/node_modules/azure-devops-node-api/TestResultsApi.js +0 -3768
  1007. package/node_modules/azure-devops-node-api/TfvcApi.d.ts +0 -254
  1008. package/node_modules/azure-devops-node-api/TfvcApi.js +0 -858
  1009. package/node_modules/azure-devops-node-api/ThirdPartyNotice.txt +0 -686
  1010. package/node_modules/azure-devops-node-api/VsoClient.d.ts +0 -53
  1011. package/node_modules/azure-devops-node-api/VsoClient.js +0 -257
  1012. package/node_modules/azure-devops-node-api/WebApi.d.ts +0 -104
  1013. package/node_modules/azure-devops-node-api/WebApi.js +0 -492
  1014. package/node_modules/azure-devops-node-api/WikiApi.d.ts +0 -243
  1015. package/node_modules/azure-devops-node-api/WikiApi.js +0 -768
  1016. package/node_modules/azure-devops-node-api/WorkApi.d.ts +0 -486
  1017. package/node_modules/azure-devops-node-api/WorkApi.js +0 -1973
  1018. package/node_modules/azure-devops-node-api/WorkItemTrackingApi.d.ts +0 -829
  1019. package/node_modules/azure-devops-node-api/WorkItemTrackingApi.js +0 -2850
  1020. package/node_modules/azure-devops-node-api/WorkItemTrackingProcessApi.d.ts +0 -521
  1021. package/node_modules/azure-devops-node-api/WorkItemTrackingProcessApi.js +0 -1736
  1022. package/node_modules/azure-devops-node-api/WorkItemTrackingProcessDefinitionsApi.d.ts +0 -424
  1023. package/node_modules/azure-devops-node-api/WorkItemTrackingProcessDefinitionsApi.js +0 -1405
  1024. package/node_modules/azure-devops-node-api/handlers/basiccreds.d.ts +0 -5
  1025. package/node_modules/azure-devops-node-api/handlers/basiccreds.js +0 -12
  1026. package/node_modules/azure-devops-node-api/handlers/bearertoken.d.ts +0 -5
  1027. package/node_modules/azure-devops-node-api/handlers/bearertoken.js +0 -12
  1028. package/node_modules/azure-devops-node-api/handlers/ntlm.d.ts +0 -5
  1029. package/node_modules/azure-devops-node-api/handlers/ntlm.js +0 -12
  1030. package/node_modules/azure-devops-node-api/handlers/personalaccesstoken.d.ts +0 -5
  1031. package/node_modules/azure-devops-node-api/handlers/personalaccesstoken.js +0 -12
  1032. package/node_modules/azure-devops-node-api/interfaces/AlertInterfaces.d.ts +0 -1001
  1033. package/node_modules/azure-devops-node-api/interfaces/AlertInterfaces.js +0 -553
  1034. package/node_modules/azure-devops-node-api/interfaces/BuildInterfaces.d.ts +0 -3610
  1035. package/node_modules/azure-devops-node-api/interfaces/BuildInterfaces.js +0 -1514
  1036. package/node_modules/azure-devops-node-api/interfaces/CIXInterfaces.d.ts +0 -113
  1037. package/node_modules/azure-devops-node-api/interfaces/CIXInterfaces.js +0 -32
  1038. package/node_modules/azure-devops-node-api/interfaces/CommentsInterfaces.d.ts +0 -364
  1039. package/node_modules/azure-devops-node-api/interfaces/CommentsInterfaces.js +0 -211
  1040. package/node_modules/azure-devops-node-api/interfaces/CoreInterfaces.d.ts +0 -600
  1041. package/node_modules/azure-devops-node-api/interfaces/CoreInterfaces.js +0 -202
  1042. package/node_modules/azure-devops-node-api/interfaces/DashboardInterfaces.d.ts +0 -439
  1043. package/node_modules/azure-devops-node-api/interfaces/DashboardInterfaces.js +0 -224
  1044. package/node_modules/azure-devops-node-api/interfaces/DistributedTaskCommonInterfaces.d.ts +0 -103
  1045. package/node_modules/azure-devops-node-api/interfaces/DistributedTaskCommonInterfaces.js +0 -11
  1046. package/node_modules/azure-devops-node-api/interfaces/ExtensionManagementInterfaces.d.ts +0 -1287
  1047. package/node_modules/azure-devops-node-api/interfaces/ExtensionManagementInterfaces.js +0 -587
  1048. package/node_modules/azure-devops-node-api/interfaces/FeatureManagementInterfaces.d.ts +0 -172
  1049. package/node_modules/azure-devops-node-api/interfaces/FeatureManagementInterfaces.js +0 -52
  1050. package/node_modules/azure-devops-node-api/interfaces/FileContainerInterfaces.d.ts +0 -222
  1051. package/node_modules/azure-devops-node-api/interfaces/FileContainerInterfaces.js +0 -121
  1052. package/node_modules/azure-devops-node-api/interfaces/GalleryInterfaces.d.ts +0 -2237
  1053. package/node_modules/azure-devops-node-api/interfaces/GalleryInterfaces.js +0 -1466
  1054. package/node_modules/azure-devops-node-api/interfaces/GitInterfaces.d.ts +0 -4291
  1055. package/node_modules/azure-devops-node-api/interfaces/GitInterfaces.js +0 -2482
  1056. package/node_modules/azure-devops-node-api/interfaces/GraphInterfaces.d.ts +0 -534
  1057. package/node_modules/azure-devops-node-api/interfaces/GraphInterfaces.js +0 -72
  1058. package/node_modules/azure-devops-node-api/interfaces/IdentitiesInterfaces.d.ts +0 -274
  1059. package/node_modules/azure-devops-node-api/interfaces/IdentitiesInterfaces.js +0 -116
  1060. package/node_modules/azure-devops-node-api/interfaces/LocationsInterfaces.d.ts +0 -178
  1061. package/node_modules/azure-devops-node-api/interfaces/LocationsInterfaces.js +0 -89
  1062. package/node_modules/azure-devops-node-api/interfaces/ManagementInterfaces.d.ts +0 -194
  1063. package/node_modules/azure-devops-node-api/interfaces/ManagementInterfaces.js +0 -76
  1064. package/node_modules/azure-devops-node-api/interfaces/NotificationInterfaces.d.ts +0 -1611
  1065. package/node_modules/azure-devops-node-api/interfaces/NotificationInterfaces.js +0 -879
  1066. package/node_modules/azure-devops-node-api/interfaces/PipelinesInterfaces.d.ts +0 -378
  1067. package/node_modules/azure-devops-node-api/interfaces/PipelinesInterfaces.js +0 -229
  1068. package/node_modules/azure-devops-node-api/interfaces/PolicyInterfaces.d.ts +0 -174
  1069. package/node_modules/azure-devops-node-api/interfaces/PolicyInterfaces.js +0 -75
  1070. package/node_modules/azure-devops-node-api/interfaces/ProfileInterfaces.d.ts +0 -136
  1071. package/node_modules/azure-devops-node-api/interfaces/ProfileInterfaces.js +0 -118
  1072. package/node_modules/azure-devops-node-api/interfaces/ProjectAnalysisInterfaces.d.ts +0 -78
  1073. package/node_modules/azure-devops-node-api/interfaces/ProjectAnalysisInterfaces.js +0 -75
  1074. package/node_modules/azure-devops-node-api/interfaces/ReleaseInterfaces.d.ts +0 -4465
  1075. package/node_modules/azure-devops-node-api/interfaces/ReleaseInterfaces.js +0 -2171
  1076. package/node_modules/azure-devops-node-api/interfaces/SecurityRolesInterfaces.d.ts +0 -82
  1077. package/node_modules/azure-devops-node-api/interfaces/SecurityRolesInterfaces.js +0 -37
  1078. package/node_modules/azure-devops-node-api/interfaces/TaskAgentInterfaces.d.ts +0 -4143
  1079. package/node_modules/azure-devops-node-api/interfaces/TaskAgentInterfaces.js +0 -1852
  1080. package/node_modules/azure-devops-node-api/interfaces/TestInterfaces.d.ts +0 -5870
  1081. package/node_modules/azure-devops-node-api/interfaces/TestInterfaces.js +0 -2540
  1082. package/node_modules/azure-devops-node-api/interfaces/TestPlanInterfaces.d.ts +0 -1472
  1083. package/node_modules/azure-devops-node-api/interfaces/TestPlanInterfaces.js +0 -713
  1084. package/node_modules/azure-devops-node-api/interfaces/TfvcInterfaces.d.ts +0 -798
  1085. package/node_modules/azure-devops-node-api/interfaces/TfvcInterfaces.js +0 -311
  1086. package/node_modules/azure-devops-node-api/interfaces/WikiInterfaces.d.ts +0 -344
  1087. package/node_modules/azure-devops-node-api/interfaces/WikiInterfaces.js +0 -92
  1088. package/node_modules/azure-devops-node-api/interfaces/WorkInterfaces.d.ts +0 -1422
  1089. package/node_modules/azure-devops-node-api/interfaces/WorkInterfaces.js +0 -560
  1090. package/node_modules/azure-devops-node-api/interfaces/WorkItemTrackingInterfaces.d.ts +0 -2311
  1091. package/node_modules/azure-devops-node-api/interfaces/WorkItemTrackingInterfaces.js +0 -877
  1092. package/node_modules/azure-devops-node-api/interfaces/WorkItemTrackingProcessDefinitionsInterfaces.d.ts +0 -624
  1093. package/node_modules/azure-devops-node-api/interfaces/WorkItemTrackingProcessDefinitionsInterfaces.js +0 -183
  1094. package/node_modules/azure-devops-node-api/interfaces/WorkItemTrackingProcessInterfaces.d.ts +0 -1366
  1095. package/node_modules/azure-devops-node-api/interfaces/WorkItemTrackingProcessInterfaces.js +0 -547
  1096. package/node_modules/azure-devops-node-api/interfaces/common/FormInputInterfaces.d.ts +0 -283
  1097. package/node_modules/azure-devops-node-api/interfaces/common/FormInputInterfaces.js +0 -175
  1098. package/node_modules/azure-devops-node-api/interfaces/common/OperationsInterfaces.d.ts +0 -91
  1099. package/node_modules/azure-devops-node-api/interfaces/common/OperationsInterfaces.js +0 -66
  1100. package/node_modules/azure-devops-node-api/interfaces/common/System.d.ts +0 -43
  1101. package/node_modules/azure-devops-node-api/interfaces/common/System.js +0 -47
  1102. package/node_modules/azure-devops-node-api/interfaces/common/SystemDataInterfaces.d.ts +0 -166
  1103. package/node_modules/azure-devops-node-api/interfaces/common/SystemDataInterfaces.js +0 -173
  1104. package/node_modules/azure-devops-node-api/interfaces/common/VSSInterfaces.d.ts +0 -477
  1105. package/node_modules/azure-devops-node-api/interfaces/common/VSSInterfaces.js +0 -150
  1106. package/node_modules/azure-devops-node-api/interfaces/common/VsoBaseInterfaces.d.ts +0 -105
  1107. package/node_modules/azure-devops-node-api/interfaces/common/VsoBaseInterfaces.js +0 -5
  1108. package/node_modules/azure-devops-node-api/opensource/node-http-ntlm/ntlm.js +0 -390
  1109. package/node_modules/azure-devops-node-api/opensource/node-http-ntlm/readme.txt +0 -6
  1110. package/node_modules/azure-devops-node-api/package.json +0 -44
  1111. package/node_modules/typed-rest-client/Handlers.d.ts +0 -4
  1112. package/node_modules/typed-rest-client/Handlers.js +0 -11
  1113. package/node_modules/typed-rest-client/HttpClient.d.ts +0 -105
  1114. package/node_modules/typed-rest-client/HttpClient.js +0 -515
  1115. package/node_modules/typed-rest-client/Index.d.ts +0 -1
  1116. package/node_modules/typed-rest-client/Index.js +0 -2
  1117. package/node_modules/typed-rest-client/Interfaces.d.ts +0 -78
  1118. package/node_modules/typed-rest-client/Interfaces.js +0 -5
  1119. package/node_modules/typed-rest-client/LICENSE +0 -39
  1120. package/node_modules/typed-rest-client/README.md +0 -107
  1121. package/node_modules/typed-rest-client/RestClient.d.ts +0 -77
  1122. package/node_modules/typed-rest-client/RestClient.js +0 -222
  1123. package/node_modules/typed-rest-client/ThirdPartyNotice.txt +0 -1318
  1124. package/node_modules/typed-rest-client/Util.d.ts +0 -36
  1125. package/node_modules/typed-rest-client/Util.js +0 -147
  1126. package/node_modules/typed-rest-client/handlers/basiccreds.d.ts +0 -11
  1127. package/node_modules/typed-rest-client/handlers/basiccreds.js +0 -32
  1128. package/node_modules/typed-rest-client/handlers/bearertoken.d.ts +0 -10
  1129. package/node_modules/typed-rest-client/handlers/bearertoken.js +0 -31
  1130. package/node_modules/typed-rest-client/handlers/ntlm.d.ts +0 -12
  1131. package/node_modules/typed-rest-client/handlers/ntlm.js +0 -139
  1132. package/node_modules/typed-rest-client/handlers/personalaccesstoken.d.ts +0 -10
  1133. package/node_modules/typed-rest-client/handlers/personalaccesstoken.js +0 -31
  1134. package/node_modules/typed-rest-client/opensource/Node-SMB/README.md +0 -5
  1135. package/node_modules/typed-rest-client/opensource/Node-SMB/lib/common.js +0 -61
  1136. package/node_modules/typed-rest-client/opensource/Node-SMB/lib/ntlm.js +0 -226
  1137. package/node_modules/typed-rest-client/opensource/Node-SMB/lib/smbhash.js +0 -67
  1138. package/node_modules/typed-rest-client/package.json +0 -52
@@ -1,1503 +0,0 @@
1
- /// <reference types="node" />
2
- import basem = require('./ClientApiBases');
3
- import VsoBaseInterfaces = require('./interfaces/common/VsoBaseInterfaces');
4
- import GitInterfaces = require("./interfaces/GitInterfaces");
5
- import TfsCoreInterfaces = require("./interfaces/CoreInterfaces");
6
- import VSSInterfaces = require("./interfaces/common/VSSInterfaces");
7
- export interface IGitApi extends basem.ClientApiBase {
8
- deleteEnablementStatus(allProjects: boolean, includeBillableCommitters?: boolean, projectIds?: string[]): Promise<void>;
9
- getEnablementStatus(projectIds?: string[], billingDate?: Date, skip?: number, take?: number): Promise<GitInterfaces.AdvSecEnablementStatus[]>;
10
- getEnableOnCreateHost(enableOnCreateHost: boolean): Promise<boolean>;
11
- getEnableOnCreateProject(enableOnCreateProjectId: string): Promise<boolean>;
12
- setEnableOnCreateHost(enableOnCreateHost: boolean): Promise<void>;
13
- setEnableOnCreateProject(enableOnCreateProjectId: string, enableOnStatus: boolean): Promise<void>;
14
- updateEnablementStatus(enablementUpdates: GitInterfaces.AdvSecEnablementUpdate[]): Promise<void>;
15
- getEstimatedBillablePushersOrg(): Promise<GitInterfaces.BillablePusher[]>;
16
- getEstimatedBillablePushersProject(project: string): Promise<GitInterfaces.BillablePusher[]>;
17
- getEstimatedBillableCommittersRepo(project: string, repositoryId: string): Promise<GitInterfaces.BillableCommitter[]>;
18
- getPermission(projectName?: string, repositoryId?: string, permission?: string): Promise<boolean>;
19
- createAnnotatedTag(tagObject: GitInterfaces.GitAnnotatedTag, project: string, repositoryId: string): Promise<GitInterfaces.GitAnnotatedTag>;
20
- getAnnotatedTag(project: string, repositoryId: string, objectId: string): Promise<GitInterfaces.GitAnnotatedTag>;
21
- getBillableCommitters(project: string, billingDate?: Date, skip?: number, take?: number): Promise<GitInterfaces.BillableCommitter[]>;
22
- getBillableCommittersDetail(project: string, includeDetails: string, billingDate?: Date): Promise<GitInterfaces.BillableCommitterDetail[]>;
23
- getBlob(repositoryId: string, sha1: string, project?: string, download?: boolean, fileName?: string, resolveLfs?: boolean): Promise<GitInterfaces.GitBlobRef>;
24
- getBlobContent(repositoryId: string, sha1: string, project?: string, download?: boolean, fileName?: string, resolveLfs?: boolean): Promise<NodeJS.ReadableStream>;
25
- getBlobsZip(blobIds: string[], repositoryId: string, project?: string, filename?: string): Promise<NodeJS.ReadableStream>;
26
- getBlobZip(repositoryId: string, sha1: string, project?: string, download?: boolean, fileName?: string, resolveLfs?: boolean): Promise<NodeJS.ReadableStream>;
27
- getBranch(repositoryId: string, name: string, project?: string, baseVersionDescriptor?: GitInterfaces.GitVersionDescriptor): Promise<GitInterfaces.GitBranchStats>;
28
- getBranches(repositoryId: string, project?: string, baseVersionDescriptor?: GitInterfaces.GitVersionDescriptor): Promise<GitInterfaces.GitBranchStats[]>;
29
- getBranchStatsBatch(searchCriteria: GitInterfaces.GitQueryBranchStatsCriteria, repositoryId: string, project?: string): Promise<GitInterfaces.GitBranchStats[]>;
30
- getChanges(commitId: string, repositoryId: string, project?: string, top?: number, skip?: number): Promise<GitInterfaces.GitCommitChanges>;
31
- getCherryPickConflict(repositoryId: string, cherryPickId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
32
- getCherryPickConflicts(repositoryId: string, cherryPickId: number, project?: string, continuationToken?: string, top?: number, excludeResolved?: boolean, onlyResolved?: boolean, includeObsolete?: boolean): Promise<VSSInterfaces.PagedList<GitInterfaces.GitConflict>>;
33
- updateCherryPickConflict(conflict: GitInterfaces.GitConflict, repositoryId: string, cherryPickId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
34
- updateCherryPickConflicts(conflictUpdates: GitInterfaces.GitConflict[], repositoryId: string, cherryPickId: number, project?: string): Promise<GitInterfaces.GitConflictUpdateResult[]>;
35
- getCherryPickRelationships(repositoryNameOrId: string, commitId: string, project?: string, includeLinks?: boolean): Promise<GitInterfaces.GitCommitRef[]>;
36
- createCherryPick(cherryPickToCreate: GitInterfaces.GitAsyncRefOperationParameters, project: string, repositoryId: string): Promise<GitInterfaces.GitCherryPick>;
37
- getCherryPick(project: string, cherryPickId: number, repositoryId: string): Promise<GitInterfaces.GitCherryPick>;
38
- getCherryPickForRefName(project: string, repositoryId: string, refName: string): Promise<GitInterfaces.GitCherryPick>;
39
- getCommitDiffs(repositoryId: string, project?: string, diffCommonCommit?: boolean, top?: number, skip?: number, baseVersionDescriptor?: GitInterfaces.GitBaseVersionDescriptor, targetVersionDescriptor?: GitInterfaces.GitTargetVersionDescriptor): Promise<GitInterfaces.GitCommitDiffs>;
40
- getCommit(commitId: string, repositoryId: string, project?: string, changeCount?: number): Promise<GitInterfaces.GitCommit>;
41
- getCommits(repositoryId: string, searchCriteria: GitInterfaces.GitQueryCommitsCriteria, project?: string, skip?: number, top?: number): Promise<GitInterfaces.GitCommitRef[]>;
42
- getPushCommits(repositoryId: string, pushId: number, project?: string, top?: number, skip?: number, includeLinks?: boolean): Promise<GitInterfaces.GitCommitRef[]>;
43
- getCommitsBatch(searchCriteria: GitInterfaces.GitQueryCommitsCriteria, repositoryId: string, project?: string, skip?: number, top?: number, includeStatuses?: boolean): Promise<GitInterfaces.GitCommitRef[]>;
44
- getDeletedRepositories(project: string): Promise<GitInterfaces.GitDeletedRepository[]>;
45
- getFileDiffs(fileDiffsCriteria: GitInterfaces.FileDiffsCriteria, project: string, repositoryId: string): Promise<GitInterfaces.FileDiff[]>;
46
- getForks(repositoryNameOrId: string, collectionId: string, project?: string, includeLinks?: boolean): Promise<GitInterfaces.GitRepositoryRef[]>;
47
- createForkSyncRequest(syncParams: GitInterfaces.GitForkSyncRequestParameters, repositoryNameOrId: string, project?: string, includeLinks?: boolean): Promise<GitInterfaces.GitForkSyncRequest>;
48
- getForkSyncRequest(repositoryNameOrId: string, forkSyncOperationId: number, project?: string, includeLinks?: boolean): Promise<GitInterfaces.GitForkSyncRequest>;
49
- getForkSyncRequests(repositoryNameOrId: string, project?: string, includeAbandoned?: boolean, includeLinks?: boolean): Promise<GitInterfaces.GitForkSyncRequest[]>;
50
- createImportRequest(importRequest: GitInterfaces.GitImportRequest, project: string, repositoryId: string): Promise<GitInterfaces.GitImportRequest>;
51
- getImportRequest(project: string, repositoryId: string, importRequestId: number): Promise<GitInterfaces.GitImportRequest>;
52
- queryImportRequests(project: string, repositoryId: string, includeAbandoned?: boolean): Promise<GitInterfaces.GitImportRequest[]>;
53
- updateImportRequest(importRequestToUpdate: GitInterfaces.GitImportRequest, project: string, repositoryId: string, importRequestId: number): Promise<GitInterfaces.GitImportRequest>;
54
- getItem(repositoryId: string, path: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, includeContent?: boolean, resolveLfs?: boolean, sanitize?: boolean): Promise<GitInterfaces.GitItem>;
55
- getItemContent(repositoryId: string, path: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, includeContent?: boolean, resolveLfs?: boolean, sanitize?: boolean): Promise<NodeJS.ReadableStream>;
56
- getItems(repositoryId: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, includeLinks?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, zipForUnix?: boolean): Promise<GitInterfaces.GitItem[]>;
57
- getItemText(repositoryId: string, path: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, includeContent?: boolean, resolveLfs?: boolean, sanitize?: boolean): Promise<NodeJS.ReadableStream>;
58
- getItemZip(repositoryId: string, path: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, includeContent?: boolean, resolveLfs?: boolean, sanitize?: boolean): Promise<NodeJS.ReadableStream>;
59
- getItemsBatch(requestData: GitInterfaces.GitItemRequestData, repositoryId: string, project?: string): Promise<GitInterfaces.GitItem[][]>;
60
- getMergeBases(repositoryNameOrId: string, commitId: string, otherCommitId: string, project?: string, otherCollectionId?: string, otherRepositoryId?: string): Promise<GitInterfaces.GitCommitRef[]>;
61
- createMergeRequest(mergeParameters: GitInterfaces.GitMergeParameters, project: string, repositoryNameOrId: string, includeLinks?: boolean): Promise<GitInterfaces.GitMerge>;
62
- getMergeRequest(project: string, repositoryNameOrId: string, mergeOperationId: number, includeLinks?: boolean): Promise<GitInterfaces.GitMerge>;
63
- createAttachment(customHeaders: any, contentStream: NodeJS.ReadableStream, fileName: string, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.Attachment>;
64
- deleteAttachment(fileName: string, repositoryId: string, pullRequestId: number, project?: string): Promise<void>;
65
- getAttachmentContent(fileName: string, repositoryId: string, pullRequestId: number, project?: string): Promise<NodeJS.ReadableStream>;
66
- getAttachments(repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.Attachment[]>;
67
- getAttachmentZip(fileName: string, repositoryId: string, pullRequestId: number, project?: string): Promise<NodeJS.ReadableStream>;
68
- createLike(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<void>;
69
- deleteLike(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<void>;
70
- getLikes(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<VSSInterfaces.IdentityRef[]>;
71
- getPullRequestIterationCommits(repositoryId: string, pullRequestId: number, iterationId: number, project?: string, top?: number, skip?: number): Promise<GitInterfaces.GitCommitRef[]>;
72
- getPullRequestCommits(repositoryId: string, pullRequestId: number, project?: string): Promise<VSSInterfaces.PagedList<GitInterfaces.GitCommitRef>>;
73
- getPullRequestConflict(repositoryId: string, pullRequestId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
74
- getPullRequestConflicts(repositoryId: string, pullRequestId: number, project?: string, skip?: number, top?: number, includeObsolete?: boolean, excludeResolved?: boolean, onlyResolved?: boolean): Promise<GitInterfaces.GitConflict[]>;
75
- updatePullRequestConflict(conflict: GitInterfaces.GitConflict, repositoryId: string, pullRequestId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
76
- updatePullRequestConflicts(conflictUpdates: GitInterfaces.GitConflict[], repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitConflictUpdateResult[]>;
77
- getPullRequestIterationChanges(repositoryId: string, pullRequestId: number, iterationId: number, project?: string, top?: number, skip?: number, compareTo?: number): Promise<GitInterfaces.GitPullRequestIterationChanges>;
78
- getPullRequestIteration(repositoryId: string, pullRequestId: number, iterationId: number, project?: string): Promise<GitInterfaces.GitPullRequestIteration>;
79
- getPullRequestIterations(repositoryId: string, pullRequestId: number, project?: string, includeCommits?: boolean): Promise<GitInterfaces.GitPullRequestIteration[]>;
80
- createPullRequestIterationStatus(status: GitInterfaces.GitPullRequestStatus, repositoryId: string, pullRequestId: number, iterationId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus>;
81
- deletePullRequestIterationStatus(repositoryId: string, pullRequestId: number, iterationId: number, statusId: number, project?: string): Promise<void>;
82
- getPullRequestIterationStatus(repositoryId: string, pullRequestId: number, iterationId: number, statusId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus>;
83
- getPullRequestIterationStatuses(repositoryId: string, pullRequestId: number, iterationId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus[]>;
84
- updatePullRequestIterationStatuses(customHeaders: any, patchDocument: VSSInterfaces.JsonPatchDocument, repositoryId: string, pullRequestId: number, iterationId: number, project?: string): Promise<void>;
85
- createPullRequestLabel(label: TfsCoreInterfaces.WebApiCreateTagRequestData, repositoryId: string, pullRequestId: number, project?: string, projectId?: string): Promise<TfsCoreInterfaces.WebApiTagDefinition>;
86
- deletePullRequestLabels(repositoryId: string, pullRequestId: number, labelIdOrName: string, project?: string, projectId?: string): Promise<void>;
87
- getPullRequestLabel(repositoryId: string, pullRequestId: number, labelIdOrName: string, project?: string, projectId?: string): Promise<TfsCoreInterfaces.WebApiTagDefinition>;
88
- getPullRequestLabels(repositoryId: string, pullRequestId: number, project?: string, projectId?: string): Promise<TfsCoreInterfaces.WebApiTagDefinition[]>;
89
- getPullRequestProperties(repositoryId: string, pullRequestId: number, project?: string): Promise<any>;
90
- updatePullRequestProperties(customHeaders: any, patchDocument: VSSInterfaces.JsonPatchDocument, repositoryId: string, pullRequestId: number, project?: string): Promise<any>;
91
- getPullRequestQuery(queries: GitInterfaces.GitPullRequestQuery, repositoryId: string, project?: string): Promise<GitInterfaces.GitPullRequestQuery>;
92
- createPullRequestReviewer(reviewer: GitInterfaces.IdentityRefWithVote, repositoryId: string, pullRequestId: number, reviewerId: string, project?: string): Promise<GitInterfaces.IdentityRefWithVote>;
93
- createPullRequestReviewers(reviewers: VSSInterfaces.IdentityRef[], repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.IdentityRefWithVote[]>;
94
- createUnmaterializedPullRequestReviewer(reviewer: GitInterfaces.IdentityRefWithVote, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.IdentityRefWithVote>;
95
- deletePullRequestReviewer(repositoryId: string, pullRequestId: number, reviewerId: string, project?: string): Promise<void>;
96
- getPullRequestReviewer(repositoryId: string, pullRequestId: number, reviewerId: string, project?: string): Promise<GitInterfaces.IdentityRefWithVote>;
97
- getPullRequestReviewers(repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.IdentityRefWithVote[]>;
98
- updatePullRequestReviewer(reviewer: GitInterfaces.IdentityRefWithVote, repositoryId: string, pullRequestId: number, reviewerId: string, project?: string): Promise<GitInterfaces.IdentityRefWithVote>;
99
- updatePullRequestReviewers(patchVotes: GitInterfaces.IdentityRefWithVote[], repositoryId: string, pullRequestId: number, project?: string): Promise<void>;
100
- getPullRequestById(pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequest>;
101
- getPullRequestsByProject(project: string, searchCriteria: GitInterfaces.GitPullRequestSearchCriteria, maxCommentLength?: number, skip?: number, top?: number): Promise<GitInterfaces.GitPullRequest[]>;
102
- createPullRequest(gitPullRequestToCreate: GitInterfaces.GitPullRequest, repositoryId: string, project?: string, supportsIterations?: boolean): Promise<GitInterfaces.GitPullRequest>;
103
- getPullRequest(repositoryId: string, pullRequestId: number, project?: string, maxCommentLength?: number, skip?: number, top?: number, includeCommits?: boolean, includeWorkItemRefs?: boolean): Promise<GitInterfaces.GitPullRequest>;
104
- getPullRequests(repositoryId: string, searchCriteria: GitInterfaces.GitPullRequestSearchCriteria, project?: string, maxCommentLength?: number, skip?: number, top?: number): Promise<GitInterfaces.GitPullRequest[]>;
105
- updatePullRequest(gitPullRequestToUpdate: GitInterfaces.GitPullRequest, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequest>;
106
- sharePullRequest(userMessage: GitInterfaces.ShareNotificationContext, repositoryId: string, pullRequestId: number, project?: string): Promise<void>;
107
- createPullRequestStatus(status: GitInterfaces.GitPullRequestStatus, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus>;
108
- deletePullRequestStatus(repositoryId: string, pullRequestId: number, statusId: number, project?: string): Promise<void>;
109
- getPullRequestStatus(repositoryId: string, pullRequestId: number, statusId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus>;
110
- getPullRequestStatuses(repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus[]>;
111
- updatePullRequestStatuses(customHeaders: any, patchDocument: VSSInterfaces.JsonPatchDocument, repositoryId: string, pullRequestId: number, project?: string): Promise<void>;
112
- createComment(comment: GitInterfaces.Comment, repositoryId: string, pullRequestId: number, threadId: number, project?: string): Promise<GitInterfaces.Comment>;
113
- deleteComment(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<void>;
114
- getComment(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<GitInterfaces.Comment>;
115
- getComments(repositoryId: string, pullRequestId: number, threadId: number, project?: string): Promise<GitInterfaces.Comment[]>;
116
- updateComment(comment: GitInterfaces.Comment, repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<GitInterfaces.Comment>;
117
- createThread(commentThread: GitInterfaces.GitPullRequestCommentThread, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequestCommentThread>;
118
- getPullRequestThread(repositoryId: string, pullRequestId: number, threadId: number, project?: string, iteration?: number, baseIteration?: number): Promise<GitInterfaces.GitPullRequestCommentThread>;
119
- getThreads(repositoryId: string, pullRequestId: number, project?: string, iteration?: number, baseIteration?: number): Promise<GitInterfaces.GitPullRequestCommentThread[]>;
120
- updateThread(commentThread: GitInterfaces.GitPullRequestCommentThread, repositoryId: string, pullRequestId: number, threadId: number, project?: string): Promise<GitInterfaces.GitPullRequestCommentThread>;
121
- getPullRequestWorkItemRefs(repositoryId: string, pullRequestId: number, project?: string): Promise<VSSInterfaces.ResourceRef[]>;
122
- createPush(push: GitInterfaces.GitPush, repositoryId: string, project?: string): Promise<GitInterfaces.GitPush>;
123
- getPush(repositoryId: string, pushId: number, project?: string, includeCommits?: number, includeRefUpdates?: boolean): Promise<GitInterfaces.GitPush>;
124
- getPushes(repositoryId: string, project?: string, skip?: number, top?: number, searchCriteria?: GitInterfaces.GitPushSearchCriteria): Promise<GitInterfaces.GitPush[]>;
125
- deleteRepositoryFromRecycleBin(project: string, repositoryId: string): Promise<void>;
126
- getRecycleBinRepositories(project: string): Promise<GitInterfaces.GitDeletedRepository[]>;
127
- restoreRepositoryFromRecycleBin(repositoryDetails: GitInterfaces.GitRecycleBinRepositoryDetails, project: string, repositoryId: string): Promise<GitInterfaces.GitRepository>;
128
- getRefs(repositoryId: string, project?: string, filter?: string, includeLinks?: boolean, includeStatuses?: boolean, includeMyBranches?: boolean, latestStatusesOnly?: boolean, peelTags?: boolean, filterContains?: string): Promise<VSSInterfaces.PagedList<GitInterfaces.GitRef>>;
129
- updateRef(newRefInfo: GitInterfaces.GitRefUpdate, repositoryId: string, filter: string, project?: string, projectId?: string): Promise<GitInterfaces.GitRef>;
130
- updateRefs(refUpdates: GitInterfaces.GitRefUpdate[], repositoryId: string, project?: string, projectId?: string): Promise<GitInterfaces.GitRefUpdateResult[]>;
131
- createFavorite(favorite: GitInterfaces.GitRefFavorite, project: string): Promise<GitInterfaces.GitRefFavorite>;
132
- deleteRefFavorite(project: string, favoriteId: number): Promise<void>;
133
- getRefFavorite(project: string, favoriteId: number): Promise<GitInterfaces.GitRefFavorite>;
134
- getRefFavorites(project: string, repositoryId?: string, identityId?: string): Promise<GitInterfaces.GitRefFavorite[]>;
135
- getRefFavoritesForProject(project: string, identityId?: string): Promise<GitInterfaces.GitRefFavorite[]>;
136
- createRepository(gitRepositoryToCreate: GitInterfaces.GitRepositoryCreateOptions, project?: string, sourceRef?: string): Promise<GitInterfaces.GitRepository>;
137
- deleteRepository(repositoryId: string, project?: string): Promise<void>;
138
- getRepositories(project?: string, includeLinks?: boolean, includeAllUrls?: boolean, includeHidden?: boolean): Promise<GitInterfaces.GitRepository[]>;
139
- getRepository(repositoryId: string, project?: string): Promise<GitInterfaces.GitRepository>;
140
- getRepositoryWithParent(repositoryId: string, includeParent: boolean, project?: string): Promise<GitInterfaces.GitRepository>;
141
- updateRepository(newRepositoryInfo: GitInterfaces.GitRepository, repositoryId: string, project?: string): Promise<GitInterfaces.GitRepository>;
142
- getRevertConflict(repositoryId: string, revertId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
143
- getRevertConflicts(repositoryId: string, revertId: number, project?: string, continuationToken?: string, top?: number, excludeResolved?: boolean, onlyResolved?: boolean, includeObsolete?: boolean): Promise<VSSInterfaces.PagedList<GitInterfaces.GitConflict>>;
144
- updateRevertConflict(conflict: GitInterfaces.GitConflict, repositoryId: string, revertId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
145
- updateRevertConflicts(conflictUpdates: GitInterfaces.GitConflict[], repositoryId: string, revertId: number, project?: string): Promise<GitInterfaces.GitConflictUpdateResult[]>;
146
- createRevert(revertToCreate: GitInterfaces.GitAsyncRefOperationParameters, project: string, repositoryId: string): Promise<GitInterfaces.GitRevert>;
147
- getRevert(project: string, revertId: number, repositoryId: string): Promise<GitInterfaces.GitRevert>;
148
- getRevertForRefName(project: string, repositoryId: string, refName: string): Promise<GitInterfaces.GitRevert>;
149
- createCommitStatus(gitCommitStatusToCreate: GitInterfaces.GitStatus, commitId: string, repositoryId: string, project?: string): Promise<GitInterfaces.GitStatus>;
150
- getStatuses(commitId: string, repositoryId: string, project?: string, top?: number, skip?: number, latestOnly?: boolean): Promise<GitInterfaces.GitStatus[]>;
151
- getSuggestions(repositoryId: string, project?: string, preferCompareBranch?: boolean): Promise<GitInterfaces.GitSuggestion[]>;
152
- getTree(repositoryId: string, sha1: string, project?: string, projectId?: string, recursive?: boolean, fileName?: string): Promise<GitInterfaces.GitTreeRef>;
153
- getTreeZip(repositoryId: string, sha1: string, project?: string, projectId?: string, recursive?: boolean, fileName?: string): Promise<NodeJS.ReadableStream>;
154
- }
155
- export declare class GitApi extends basem.ClientApiBase implements IGitApi {
156
- constructor(baseUrl: string, handlers: VsoBaseInterfaces.IRequestHandler[], options?: VsoBaseInterfaces.IRequestOptions);
157
- static readonly RESOURCE_AREA_ID = "4e080c62-fa21-4fbc-8fef-2a10a2b38049";
158
- /**
159
- * DELETE Deletes Enablement status and BillableCommitters data from DB. Deleting the enablement data will effectively disable it for the repositories affected.
160
- *
161
- * @param {boolean} allProjects
162
- * @param {boolean} includeBillableCommitters
163
- * @param {string[]} projectIds
164
- */
165
- deleteEnablementStatus(allProjects: boolean, includeBillableCommitters?: boolean, projectIds?: string[]): Promise<void>;
166
- /**
167
- * GET Enablement status for project's repositories.
168
- *
169
- * @param {string[]} projectIds - Null defaults to all projects in the host, list of project's repos status to return
170
- * @param {Date} billingDate - UTC expected, Null defaults to UtcNow(), can be provided for a point in time status
171
- * @param {number} skip - Skip X rows of resultset to simulate paging.
172
- * @param {number} take - Return Y rows of resultset to simulate paging.
173
- */
174
- getEnablementStatus(projectIds?: string[], billingDate?: Date, skip?: number, take?: number): Promise<GitInterfaces.AdvSecEnablementStatus[]>;
175
- /**
176
- * @param {boolean} enableOnCreateHost
177
- */
178
- getEnableOnCreateHost(enableOnCreateHost: boolean): Promise<boolean>;
179
- /**
180
- * @param {string} enableOnCreateProjectId
181
- */
182
- getEnableOnCreateProject(enableOnCreateProjectId: string): Promise<boolean>;
183
- /**
184
- * @param {boolean} enableOnCreateHost
185
- */
186
- setEnableOnCreateHost(enableOnCreateHost: boolean): Promise<void>;
187
- /**
188
- * @param {string} enableOnCreateProjectId
189
- * @param {boolean} enableOnStatus
190
- */
191
- setEnableOnCreateProject(enableOnCreateProjectId: string, enableOnStatus: boolean): Promise<void>;
192
- /**
193
- * POST Enablement status for repositories.
194
- *
195
- * @param {GitInterfaces.AdvSecEnablementUpdate[]} enablementUpdates
196
- */
197
- updateEnablementStatus(enablementUpdates: GitInterfaces.AdvSecEnablementUpdate[]): Promise<void>;
198
- /**
199
- * Get estimated billable pushers for an Organization for last 90 days.
200
- *
201
- */
202
- getEstimatedBillablePushersOrg(): Promise<GitInterfaces.BillablePusher[]>;
203
- /**
204
- * Get estimated billable pushers for a project for last 90 days.
205
- *
206
- * @param {string} project - Project ID or project name
207
- */
208
- getEstimatedBillablePushersProject(project: string): Promise<GitInterfaces.BillablePusher[]>;
209
- /**
210
- * Get estimated billable committers for a repository for the last 90 days.
211
- *
212
- * @param {string} project - Project ID or project name
213
- * @param {string} repositoryId
214
- */
215
- getEstimatedBillableCommittersRepo(project: string, repositoryId: string): Promise<GitInterfaces.BillableCommitter[]>;
216
- /**
217
- * GET Advanced Security Permission status.
218
- *
219
- * @param {string} projectName
220
- * @param {string} repositoryId - Repository user is trying to access
221
- * @param {string} permission - Permission being requestd, must be "viewAlert" "dismissAlert" "manage" "viewEnablement" or "repoRead"
222
- */
223
- getPermission(projectName?: string, repositoryId?: string, permission?: string): Promise<boolean>;
224
- /**
225
- * Create an annotated tag.
226
- *
227
- * @param {GitInterfaces.GitAnnotatedTag} tagObject - Object containing details of tag to be created.
228
- * @param {string} project - Project ID or project name
229
- * @param {string} repositoryId - ID or name of the repository.
230
- */
231
- createAnnotatedTag(tagObject: GitInterfaces.GitAnnotatedTag, project: string, repositoryId: string): Promise<GitInterfaces.GitAnnotatedTag>;
232
- /**
233
- * Get an annotated tag.
234
- *
235
- * @param {string} project - Project ID or project name
236
- * @param {string} repositoryId - ID or name of the repository.
237
- * @param {string} objectId - ObjectId (Sha1Id) of tag to get.
238
- */
239
- getAnnotatedTag(project: string, repositoryId: string, objectId: string): Promise<GitInterfaces.GitAnnotatedTag>;
240
- /**
241
- * Retrieve actual billable committers for Advanced Security service for a given date.
242
- *
243
- * @param {string} project - Project ID or project name
244
- * @param {Date} billingDate - UTC expected. If not specified defaults to the previous billing day.
245
- * @param {number} skip - Skip X rows of resultset to simulate paging.
246
- * @param {number} take - Return Y rows of resultset to simulate paging.
247
- */
248
- getBillableCommitters(project: string, billingDate?: Date, skip?: number, take?: number): Promise<GitInterfaces.BillableCommitter[]>;
249
- /**
250
- * Retrieve detailed actual billable committers for Advanced Security service for a given date. Detailed results intentionally does not filter out soft deleted projects and repositories to help diagnose billing issues.
251
- *
252
- * @param {string} project - Project ID or project name
253
- * @param {string} includeDetails - Return all the details on the billable committers.
254
- * @param {Date} billingDate - UTC expected. If not specified defaults to the previous billing day.
255
- */
256
- getBillableCommittersDetail(project: string, includeDetails: string, billingDate?: Date): Promise<GitInterfaces.BillableCommitterDetail[]>;
257
- /**
258
- * Get a single blob.
259
- *
260
- * @param {string} repositoryId - The name or ID of the repository.
261
- * @param {string} sha1 - SHA1 hash of the file. You can get the SHA1 of a file using the "Git/Items/Get Item" endpoint.
262
- * @param {string} project - Project ID or project name
263
- * @param {boolean} download - If true, prompt for a download rather than rendering in a browser. Note: this value defaults to true if $format is zip
264
- * @param {string} fileName - Provide a fileName to use for a download.
265
- * @param {boolean} resolveLfs - If true, try to resolve a blob to its LFS contents, if it's an LFS pointer file. Only compatible with octet-stream Accept headers or $format types
266
- */
267
- getBlob(repositoryId: string, sha1: string, project?: string, download?: boolean, fileName?: string, resolveLfs?: boolean): Promise<GitInterfaces.GitBlobRef>;
268
- /**
269
- * Get a single blob.
270
- *
271
- * @param {string} repositoryId - The name or ID of the repository.
272
- * @param {string} sha1 - SHA1 hash of the file. You can get the SHA1 of a file using the "Git/Items/Get Item" endpoint.
273
- * @param {string} project - Project ID or project name
274
- * @param {boolean} download - If true, prompt for a download rather than rendering in a browser. Note: this value defaults to true if $format is zip
275
- * @param {string} fileName - Provide a fileName to use for a download.
276
- * @param {boolean} resolveLfs - If true, try to resolve a blob to its LFS contents, if it's an LFS pointer file. Only compatible with octet-stream Accept headers or $format types
277
- */
278
- getBlobContent(repositoryId: string, sha1: string, project?: string, download?: boolean, fileName?: string, resolveLfs?: boolean): Promise<NodeJS.ReadableStream>;
279
- /**
280
- * Gets one or more blobs in a zip file download.
281
- *
282
- * @param {string[]} blobIds - Blob IDs (SHA1 hashes) to be returned in the zip file.
283
- * @param {string} repositoryId - The name or ID of the repository.
284
- * @param {string} project - Project ID or project name
285
- * @param {string} filename
286
- */
287
- getBlobsZip(blobIds: string[], repositoryId: string, project?: string, filename?: string): Promise<NodeJS.ReadableStream>;
288
- /**
289
- * Get a single blob.
290
- *
291
- * @param {string} repositoryId - The name or ID of the repository.
292
- * @param {string} sha1 - SHA1 hash of the file. You can get the SHA1 of a file using the "Git/Items/Get Item" endpoint.
293
- * @param {string} project - Project ID or project name
294
- * @param {boolean} download - If true, prompt for a download rather than rendering in a browser. Note: this value defaults to true if $format is zip
295
- * @param {string} fileName - Provide a fileName to use for a download.
296
- * @param {boolean} resolveLfs - If true, try to resolve a blob to its LFS contents, if it's an LFS pointer file. Only compatible with octet-stream Accept headers or $format types
297
- */
298
- getBlobZip(repositoryId: string, sha1: string, project?: string, download?: boolean, fileName?: string, resolveLfs?: boolean): Promise<NodeJS.ReadableStream>;
299
- /**
300
- * Retrieve statistics about a single branch.
301
- *
302
- * @param {string} repositoryId - The name or ID of the repository.
303
- * @param {string} name - Name of the branch.
304
- * @param {string} project - Project ID or project name
305
- * @param {GitInterfaces.GitVersionDescriptor} baseVersionDescriptor - Identifies the commit or branch to use as the base.
306
- */
307
- getBranch(repositoryId: string, name: string, project?: string, baseVersionDescriptor?: GitInterfaces.GitVersionDescriptor): Promise<GitInterfaces.GitBranchStats>;
308
- /**
309
- * Retrieve statistics about all branches within a repository.
310
- *
311
- * @param {string} repositoryId - The name or ID of the repository.
312
- * @param {string} project - Project ID or project name
313
- * @param {GitInterfaces.GitVersionDescriptor} baseVersionDescriptor - Identifies the commit or branch to use as the base.
314
- */
315
- getBranches(repositoryId: string, project?: string, baseVersionDescriptor?: GitInterfaces.GitVersionDescriptor): Promise<GitInterfaces.GitBranchStats[]>;
316
- /**
317
- * Retrieve statistics for multiple commits
318
- *
319
- * @param {GitInterfaces.GitQueryBranchStatsCriteria} searchCriteria - Base Commit and List of Target Commits to compare.
320
- * @param {string} repositoryId - The name or ID of the repository.
321
- * @param {string} project - Project ID or project name
322
- */
323
- getBranchStatsBatch(searchCriteria: GitInterfaces.GitQueryBranchStatsCriteria, repositoryId: string, project?: string): Promise<GitInterfaces.GitBranchStats[]>;
324
- /**
325
- * Retrieve changes for a particular commit.
326
- *
327
- * @param {string} commitId - The id of the commit.
328
- * @param {string} repositoryId - The id or friendly name of the repository. To use the friendly name, projectId must also be specified.
329
- * @param {string} project - Project ID or project name
330
- * @param {number} top - The maximum number of changes to return.
331
- * @param {number} skip - The number of changes to skip.
332
- */
333
- getChanges(commitId: string, repositoryId: string, project?: string, top?: number, skip?: number): Promise<GitInterfaces.GitCommitChanges>;
334
- /**
335
- * Retrieve one conflict for a cherry pick by ID
336
- *
337
- * @param {string} repositoryId
338
- * @param {number} cherryPickId
339
- * @param {number} conflictId
340
- * @param {string} project - Project ID or project name
341
- */
342
- getCherryPickConflict(repositoryId: string, cherryPickId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
343
- /**
344
- * Retrieve all conflicts for a cherry pick
345
- *
346
- * @param {string} repositoryId
347
- * @param {number} cherryPickId
348
- * @param {string} project - Project ID or project name
349
- * @param {string} continuationToken
350
- * @param {number} top
351
- * @param {boolean} excludeResolved
352
- * @param {boolean} onlyResolved
353
- * @param {boolean} includeObsolete
354
- */
355
- getCherryPickConflicts(repositoryId: string, cherryPickId: number, project?: string, continuationToken?: string, top?: number, excludeResolved?: boolean, onlyResolved?: boolean, includeObsolete?: boolean): Promise<VSSInterfaces.PagedList<GitInterfaces.GitConflict>>;
356
- /**
357
- * Update merge conflict resolution
358
- *
359
- * @param {GitInterfaces.GitConflict} conflict
360
- * @param {string} repositoryId
361
- * @param {number} cherryPickId
362
- * @param {number} conflictId
363
- * @param {string} project - Project ID or project name
364
- */
365
- updateCherryPickConflict(conflict: GitInterfaces.GitConflict, repositoryId: string, cherryPickId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
366
- /**
367
- * Update multiple merge conflict resolutions
368
- *
369
- * @param {GitInterfaces.GitConflict[]} conflictUpdates
370
- * @param {string} repositoryId
371
- * @param {number} cherryPickId
372
- * @param {string} project - Project ID or project name
373
- */
374
- updateCherryPickConflicts(conflictUpdates: GitInterfaces.GitConflict[], repositoryId: string, cherryPickId: number, project?: string): Promise<GitInterfaces.GitConflictUpdateResult[]>;
375
- /**
376
- * Given a commitId, returns a list of commits that are in the same cherry-pick family.
377
- *
378
- * @param {string} repositoryNameOrId
379
- * @param {string} commitId
380
- * @param {string} project - Project ID or project name
381
- * @param {boolean} includeLinks
382
- */
383
- getCherryPickRelationships(repositoryNameOrId: string, commitId: string, project?: string, includeLinks?: boolean): Promise<GitInterfaces.GitCommitRef[]>;
384
- /**
385
- * Cherry pick a specific commit or commits that are associated to a pull request into a new branch.
386
- *
387
- * @param {GitInterfaces.GitAsyncRefOperationParameters} cherryPickToCreate
388
- * @param {string} project - Project ID or project name
389
- * @param {string} repositoryId - ID of the repository.
390
- */
391
- createCherryPick(cherryPickToCreate: GitInterfaces.GitAsyncRefOperationParameters, project: string, repositoryId: string): Promise<GitInterfaces.GitCherryPick>;
392
- /**
393
- * Retrieve information about a cherry pick operation by cherry pick Id.
394
- *
395
- * @param {string} project - Project ID or project name
396
- * @param {number} cherryPickId - ID of the cherry pick.
397
- * @param {string} repositoryId - ID of the repository.
398
- */
399
- getCherryPick(project: string, cherryPickId: number, repositoryId: string): Promise<GitInterfaces.GitCherryPick>;
400
- /**
401
- * Retrieve information about a cherry pick operation for a specific branch. This operation is expensive due to the underlying object structure, so this API only looks at the 1000 most recent cherry pick operations.
402
- *
403
- * @param {string} project - Project ID or project name
404
- * @param {string} repositoryId - ID of the repository.
405
- * @param {string} refName - The GitAsyncRefOperationParameters generatedRefName used for the cherry pick operation.
406
- */
407
- getCherryPickForRefName(project: string, repositoryId: string, refName: string): Promise<GitInterfaces.GitCherryPick>;
408
- /**
409
- * Find the closest common commit (the merge base) between base and target commits, and get the diff between either the base and target commits or common and target commits.
410
- *
411
- * @param {string} repositoryId - The name or ID of the repository.
412
- * @param {string} project - Project ID or project name
413
- * @param {boolean} diffCommonCommit - If true, diff between common and target commits. If false, diff between base and target commits.
414
- * @param {number} top - Maximum number of changes to return. Defaults to 100.
415
- * @param {number} skip - Number of changes to skip
416
- * @param {GitInterfaces.GitBaseVersionDescriptor} baseVersionDescriptor - Descriptor for base commit.
417
- * @param {GitInterfaces.GitTargetVersionDescriptor} targetVersionDescriptor - Descriptor for target commit.
418
- */
419
- getCommitDiffs(repositoryId: string, project?: string, diffCommonCommit?: boolean, top?: number, skip?: number, baseVersionDescriptor?: GitInterfaces.GitBaseVersionDescriptor, targetVersionDescriptor?: GitInterfaces.GitTargetVersionDescriptor): Promise<GitInterfaces.GitCommitDiffs>;
420
- /**
421
- * Retrieve a particular commit.
422
- *
423
- * @param {string} commitId - The id of the commit.
424
- * @param {string} repositoryId - The id or friendly name of the repository. To use the friendly name, projectId must also be specified.
425
- * @param {string} project - Project ID or project name
426
- * @param {number} changeCount - The number of changes to include in the result.
427
- */
428
- getCommit(commitId: string, repositoryId: string, project?: string, changeCount?: number): Promise<GitInterfaces.GitCommit>;
429
- /**
430
- * Retrieve git commits for a project
431
- *
432
- * @param {string} repositoryId - The id or friendly name of the repository. To use the friendly name, projectId must also be specified.
433
- * @param {GitInterfaces.GitQueryCommitsCriteria} searchCriteria
434
- * @param {string} project - Project ID or project name
435
- * @param {number} skip
436
- * @param {number} top
437
- */
438
- getCommits(repositoryId: string, searchCriteria: GitInterfaces.GitQueryCommitsCriteria, project?: string, skip?: number, top?: number): Promise<GitInterfaces.GitCommitRef[]>;
439
- /**
440
- * Retrieve a list of commits associated with a particular push.
441
- *
442
- * @param {string} repositoryId - The id or friendly name of the repository. To use the friendly name, projectId must also be specified.
443
- * @param {number} pushId - The id of the push.
444
- * @param {string} project - Project ID or project name
445
- * @param {number} top - The maximum number of commits to return ("get the top x commits").
446
- * @param {number} skip - The number of commits to skip.
447
- * @param {boolean} includeLinks - Set to false to avoid including REST Url links for resources. Defaults to true.
448
- */
449
- getPushCommits(repositoryId: string, pushId: number, project?: string, top?: number, skip?: number, includeLinks?: boolean): Promise<GitInterfaces.GitCommitRef[]>;
450
- /**
451
- * Retrieve git commits for a project matching the search criteria
452
- *
453
- * @param {GitInterfaces.GitQueryCommitsCriteria} searchCriteria - Search options
454
- * @param {string} repositoryId - The name or ID of the repository.
455
- * @param {string} project - Project ID or project name
456
- * @param {number} skip - Number of commits to skip. The value cannot exceed 3,000,000.
457
- * @param {number} top - Maximum number of commits to return. The value cannot exceed 50,000.
458
- * @param {boolean} includeStatuses - True to include additional commit status information.
459
- */
460
- getCommitsBatch(searchCriteria: GitInterfaces.GitQueryCommitsCriteria, repositoryId: string, project?: string, skip?: number, top?: number, includeStatuses?: boolean): Promise<GitInterfaces.GitCommitRef[]>;
461
- /**
462
- * Retrieve deleted git repositories.
463
- *
464
- * @param {string} project - Project ID or project name
465
- */
466
- getDeletedRepositories(project: string): Promise<GitInterfaces.GitDeletedRepository[]>;
467
- /**
468
- * Get the file diffs for each of the specified files
469
- *
470
- * @param {GitInterfaces.FileDiffsCriteria} fileDiffsCriteria - List of file parameters objects
471
- * @param {string} project - Project ID or project name
472
- * @param {string} repositoryId - The name or ID of the repository
473
- */
474
- getFileDiffs(fileDiffsCriteria: GitInterfaces.FileDiffsCriteria, project: string, repositoryId: string): Promise<GitInterfaces.FileDiff[]>;
475
- /**
476
- * Retrieve all forks of a repository in the collection.
477
- *
478
- * @param {string} repositoryNameOrId - The name or ID of the repository.
479
- * @param {string} collectionId - Team project collection ID.
480
- * @param {string} project - Project ID or project name
481
- * @param {boolean} includeLinks - True to include links.
482
- */
483
- getForks(repositoryNameOrId: string, collectionId: string, project?: string, includeLinks?: boolean): Promise<GitInterfaces.GitRepositoryRef[]>;
484
- /**
485
- * Request that another repository's refs be fetched into this one. It syncs two existing forks. To create a fork, please see the <a href="https://docs.microsoft.com/en-us/rest/api/vsts/git/repositories/create?view=azure-devops-rest-5.1"> repositories endpoint</a>
486
- *
487
- * @param {GitInterfaces.GitForkSyncRequestParameters} syncParams - Source repository and ref mapping.
488
- * @param {string} repositoryNameOrId - The name or ID of the repository.
489
- * @param {string} project - Project ID or project name
490
- * @param {boolean} includeLinks - True to include links
491
- */
492
- createForkSyncRequest(syncParams: GitInterfaces.GitForkSyncRequestParameters, repositoryNameOrId: string, project?: string, includeLinks?: boolean): Promise<GitInterfaces.GitForkSyncRequest>;
493
- /**
494
- * Get a specific fork sync operation's details.
495
- *
496
- * @param {string} repositoryNameOrId - The name or ID of the repository.
497
- * @param {number} forkSyncOperationId - OperationId of the sync request.
498
- * @param {string} project - Project ID or project name
499
- * @param {boolean} includeLinks - True to include links.
500
- */
501
- getForkSyncRequest(repositoryNameOrId: string, forkSyncOperationId: number, project?: string, includeLinks?: boolean): Promise<GitInterfaces.GitForkSyncRequest>;
502
- /**
503
- * Retrieve all requested fork sync operations on this repository.
504
- *
505
- * @param {string} repositoryNameOrId - The name or ID of the repository.
506
- * @param {string} project - Project ID or project name
507
- * @param {boolean} includeAbandoned - True to include abandoned requests.
508
- * @param {boolean} includeLinks - True to include links.
509
- */
510
- getForkSyncRequests(repositoryNameOrId: string, project?: string, includeAbandoned?: boolean, includeLinks?: boolean): Promise<GitInterfaces.GitForkSyncRequest[]>;
511
- /**
512
- * Create an import request.
513
- *
514
- * @param {GitInterfaces.GitImportRequest} importRequest - The import request to create.
515
- * @param {string} project - Project ID or project name
516
- * @param {string} repositoryId - The name or ID of the repository.
517
- */
518
- createImportRequest(importRequest: GitInterfaces.GitImportRequest, project: string, repositoryId: string): Promise<GitInterfaces.GitImportRequest>;
519
- /**
520
- * Retrieve a particular import request.
521
- *
522
- * @param {string} project - Project ID or project name
523
- * @param {string} repositoryId - The name or ID of the repository.
524
- * @param {number} importRequestId - The unique identifier for the import request.
525
- */
526
- getImportRequest(project: string, repositoryId: string, importRequestId: number): Promise<GitInterfaces.GitImportRequest>;
527
- /**
528
- * Retrieve import requests for a repository.
529
- *
530
- * @param {string} project - Project ID or project name
531
- * @param {string} repositoryId - The name or ID of the repository.
532
- * @param {boolean} includeAbandoned - True to include abandoned import requests in the results.
533
- */
534
- queryImportRequests(project: string, repositoryId: string, includeAbandoned?: boolean): Promise<GitInterfaces.GitImportRequest[]>;
535
- /**
536
- * Retry or abandon a failed import request.
537
- *
538
- * @param {GitInterfaces.GitImportRequest} importRequestToUpdate - The updated version of the import request. Currently, the only change allowed is setting the Status to Queued or Abandoned.
539
- * @param {string} project - Project ID or project name
540
- * @param {string} repositoryId - The name or ID of the repository.
541
- * @param {number} importRequestId - The unique identifier for the import request to update.
542
- */
543
- updateImportRequest(importRequestToUpdate: GitInterfaces.GitImportRequest, project: string, repositoryId: string, importRequestId: number): Promise<GitInterfaces.GitImportRequest>;
544
- /**
545
- * Get Item Metadata and/or Content for a single item. The download parameter is to indicate whether the content should be available as a download or just sent as a stream in the response. Doesn't apply to zipped content, which is always returned as a download.
546
- *
547
- * @param {string} repositoryId - The name or ID of the repository.
548
- * @param {string} path - The item path.
549
- * @param {string} project - Project ID or project name
550
- * @param {string} scopePath - The path scope. The default is null.
551
- * @param {GitInterfaces.VersionControlRecursionType} recursionLevel - The recursion level of this request. The default is 'none', no recursion.
552
- * @param {boolean} includeContentMetadata - Set to true to include content metadata. Default is false.
553
- * @param {boolean} latestProcessedChange - Set to true to include the latest changes. Default is false.
554
- * @param {boolean} download - Set to true to download the response as a file. Default is false.
555
- * @param {GitInterfaces.GitVersionDescriptor} versionDescriptor - Version descriptor. Default is the default branch for the repository.
556
- * @param {boolean} includeContent - Set to true to include item content when requesting json. Default is false.
557
- * @param {boolean} resolveLfs - Set to true to resolve Git LFS pointer files to return actual content from Git LFS. Default is false.
558
- * @param {boolean} sanitize - Set to true to sanitize an svg file and return it as image. Useful only if requested for svg file. Default is false.
559
- */
560
- getItem(repositoryId: string, path: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, includeContent?: boolean, resolveLfs?: boolean, sanitize?: boolean): Promise<GitInterfaces.GitItem>;
561
- /**
562
- * Get Item Metadata and/or Content for a single item. The download parameter is to indicate whether the content should be available as a download or just sent as a stream in the response. Doesn't apply to zipped content, which is always returned as a download.
563
- *
564
- * @param {string} repositoryId - The name or ID of the repository.
565
- * @param {string} path - The item path.
566
- * @param {string} project - Project ID or project name
567
- * @param {string} scopePath - The path scope. The default is null.
568
- * @param {GitInterfaces.VersionControlRecursionType} recursionLevel - The recursion level of this request. The default is 'none', no recursion.
569
- * @param {boolean} includeContentMetadata - Set to true to include content metadata. Default is false.
570
- * @param {boolean} latestProcessedChange - Set to true to include the latest changes. Default is false.
571
- * @param {boolean} download - Set to true to download the response as a file. Default is false.
572
- * @param {GitInterfaces.GitVersionDescriptor} versionDescriptor - Version descriptor. Default is the default branch for the repository.
573
- * @param {boolean} includeContent - Set to true to include item content when requesting json. Default is false.
574
- * @param {boolean} resolveLfs - Set to true to resolve Git LFS pointer files to return actual content from Git LFS. Default is false.
575
- * @param {boolean} sanitize - Set to true to sanitize an svg file and return it as image. Useful only if requested for svg file. Default is false.
576
- */
577
- getItemContent(repositoryId: string, path: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, includeContent?: boolean, resolveLfs?: boolean, sanitize?: boolean): Promise<NodeJS.ReadableStream>;
578
- /**
579
- * Get Item Metadata and/or Content for a collection of items. The download parameter is to indicate whether the content should be available as a download or just sent as a stream in the response. Doesn't apply to zipped content which is always returned as a download.
580
- *
581
- * @param {string} repositoryId - The name or ID of the repository.
582
- * @param {string} project - Project ID or project name
583
- * @param {string} scopePath - The path scope. The default is null.
584
- * @param {GitInterfaces.VersionControlRecursionType} recursionLevel - The recursion level of this request. The default is 'none', no recursion.
585
- * @param {boolean} includeContentMetadata - Set to true to include content metadata. Default is false.
586
- * @param {boolean} latestProcessedChange - Set to true to include the latest changes. Default is false.
587
- * @param {boolean} download - Set to true to download the response as a file. Default is false.
588
- * @param {boolean} includeLinks - Set to true to include links to items. Default is false.
589
- * @param {GitInterfaces.GitVersionDescriptor} versionDescriptor - Version descriptor. Default is the default branch for the repository.
590
- * @param {boolean} zipForUnix - Set to true to keep the file permissions for unix (and POSIX) systems like executables and symlinks
591
- */
592
- getItems(repositoryId: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, includeLinks?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, zipForUnix?: boolean): Promise<GitInterfaces.GitItem[]>;
593
- /**
594
- * Get Item Metadata and/or Content for a single item. The download parameter is to indicate whether the content should be available as a download or just sent as a stream in the response. Doesn't apply to zipped content, which is always returned as a download.
595
- *
596
- * @param {string} repositoryId - The name or ID of the repository.
597
- * @param {string} path - The item path.
598
- * @param {string} project - Project ID or project name
599
- * @param {string} scopePath - The path scope. The default is null.
600
- * @param {GitInterfaces.VersionControlRecursionType} recursionLevel - The recursion level of this request. The default is 'none', no recursion.
601
- * @param {boolean} includeContentMetadata - Set to true to include content metadata. Default is false.
602
- * @param {boolean} latestProcessedChange - Set to true to include the latest changes. Default is false.
603
- * @param {boolean} download - Set to true to download the response as a file. Default is false.
604
- * @param {GitInterfaces.GitVersionDescriptor} versionDescriptor - Version descriptor. Default is the default branch for the repository.
605
- * @param {boolean} includeContent - Set to true to include item content when requesting json. Default is false.
606
- * @param {boolean} resolveLfs - Set to true to resolve Git LFS pointer files to return actual content from Git LFS. Default is false.
607
- * @param {boolean} sanitize - Set to true to sanitize an svg file and return it as image. Useful only if requested for svg file. Default is false.
608
- */
609
- getItemText(repositoryId: string, path: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, includeContent?: boolean, resolveLfs?: boolean, sanitize?: boolean): Promise<NodeJS.ReadableStream>;
610
- /**
611
- * Get Item Metadata and/or Content for a single item. The download parameter is to indicate whether the content should be available as a download or just sent as a stream in the response. Doesn't apply to zipped content, which is always returned as a download.
612
- *
613
- * @param {string} repositoryId - The name or ID of the repository.
614
- * @param {string} path - The item path.
615
- * @param {string} project - Project ID or project name
616
- * @param {string} scopePath - The path scope. The default is null.
617
- * @param {GitInterfaces.VersionControlRecursionType} recursionLevel - The recursion level of this request. The default is 'none', no recursion.
618
- * @param {boolean} includeContentMetadata - Set to true to include content metadata. Default is false.
619
- * @param {boolean} latestProcessedChange - Set to true to include the latest changes. Default is false.
620
- * @param {boolean} download - Set to true to download the response as a file. Default is false.
621
- * @param {GitInterfaces.GitVersionDescriptor} versionDescriptor - Version descriptor. Default is the default branch for the repository.
622
- * @param {boolean} includeContent - Set to true to include item content when requesting json. Default is false.
623
- * @param {boolean} resolveLfs - Set to true to resolve Git LFS pointer files to return actual content from Git LFS. Default is false.
624
- * @param {boolean} sanitize - Set to true to sanitize an svg file and return it as image. Useful only if requested for svg file. Default is false.
625
- */
626
- getItemZip(repositoryId: string, path: string, project?: string, scopePath?: string, recursionLevel?: GitInterfaces.VersionControlRecursionType, includeContentMetadata?: boolean, latestProcessedChange?: boolean, download?: boolean, versionDescriptor?: GitInterfaces.GitVersionDescriptor, includeContent?: boolean, resolveLfs?: boolean, sanitize?: boolean): Promise<NodeJS.ReadableStream>;
627
- /**
628
- * Post for retrieving a creating a batch out of a set of items in a repo / project given a list of paths or a long path
629
- *
630
- * @param {GitInterfaces.GitItemRequestData} requestData - Request data attributes: ItemDescriptors, IncludeContentMetadata, LatestProcessedChange, IncludeLinks. ItemDescriptors: Collection of items to fetch, including path, version, and recursion level. IncludeContentMetadata: Whether to include metadata for all items LatestProcessedChange: Whether to include shallow ref to commit that last changed each item. IncludeLinks: Whether to include the _links field on the shallow references.
631
- * @param {string} repositoryId - The name or ID of the repository
632
- * @param {string} project - Project ID or project name
633
- */
634
- getItemsBatch(requestData: GitInterfaces.GitItemRequestData, repositoryId: string, project?: string): Promise<GitInterfaces.GitItem[][]>;
635
- /**
636
- * Find the merge bases of two commits, optionally across forks. If otherRepositoryId is not specified, the merge bases will only be calculated within the context of the local repositoryNameOrId.
637
- *
638
- * @param {string} repositoryNameOrId - ID or name of the local repository.
639
- * @param {string} commitId - First commit, usually the tip of the target branch of the potential merge.
640
- * @param {string} otherCommitId - Other commit, usually the tip of the source branch of the potential merge.
641
- * @param {string} project - Project ID or project name
642
- * @param {string} otherCollectionId - The collection ID where otherCommitId lives.
643
- * @param {string} otherRepositoryId - The repository ID where otherCommitId lives.
644
- */
645
- getMergeBases(repositoryNameOrId: string, commitId: string, otherCommitId: string, project?: string, otherCollectionId?: string, otherRepositoryId?: string): Promise<GitInterfaces.GitCommitRef[]>;
646
- /**
647
- * Request a git merge operation. Currently we support merging only 2 commits.
648
- *
649
- * @param {GitInterfaces.GitMergeParameters} mergeParameters - Parents commitIds and merge commit messsage.
650
- * @param {string} project - Project ID or project name
651
- * @param {string} repositoryNameOrId - The name or ID of the repository.
652
- * @param {boolean} includeLinks - True to include links
653
- */
654
- createMergeRequest(mergeParameters: GitInterfaces.GitMergeParameters, project: string, repositoryNameOrId: string, includeLinks?: boolean): Promise<GitInterfaces.GitMerge>;
655
- /**
656
- * Get a specific merge operation's details.
657
- *
658
- * @param {string} project - Project ID or project name
659
- * @param {string} repositoryNameOrId - The name or ID of the repository.
660
- * @param {number} mergeOperationId - OperationId of the merge request.
661
- * @param {boolean} includeLinks - True to include links
662
- */
663
- getMergeRequest(project: string, repositoryNameOrId: string, mergeOperationId: number, includeLinks?: boolean): Promise<GitInterfaces.GitMerge>;
664
- /**
665
- * Attach a new file to a pull request.
666
- *
667
- * @param {NodeJS.ReadableStream} contentStream - Content to upload
668
- * @param {string} fileName - The name of the file.
669
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
670
- * @param {number} pullRequestId - ID of the pull request.
671
- * @param {string} project - Project ID or project name
672
- */
673
- createAttachment(customHeaders: any, contentStream: NodeJS.ReadableStream, fileName: string, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.Attachment>;
674
- /**
675
- * Delete a pull request attachment.
676
- *
677
- * @param {string} fileName - The name of the attachment to delete.
678
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
679
- * @param {number} pullRequestId - ID of the pull request.
680
- * @param {string} project - Project ID or project name
681
- */
682
- deleteAttachment(fileName: string, repositoryId: string, pullRequestId: number, project?: string): Promise<void>;
683
- /**
684
- * Get the file content of a pull request attachment.
685
- *
686
- * @param {string} fileName - The name of the attachment.
687
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
688
- * @param {number} pullRequestId - ID of the pull request.
689
- * @param {string} project - Project ID or project name
690
- */
691
- getAttachmentContent(fileName: string, repositoryId: string, pullRequestId: number, project?: string): Promise<NodeJS.ReadableStream>;
692
- /**
693
- * Get a list of files attached to a given pull request.
694
- *
695
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
696
- * @param {number} pullRequestId - ID of the pull request.
697
- * @param {string} project - Project ID or project name
698
- */
699
- getAttachments(repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.Attachment[]>;
700
- /**
701
- * Get the file content of a pull request attachment.
702
- *
703
- * @param {string} fileName - The name of the attachment.
704
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
705
- * @param {number} pullRequestId - ID of the pull request.
706
- * @param {string} project - Project ID or project name
707
- */
708
- getAttachmentZip(fileName: string, repositoryId: string, pullRequestId: number, project?: string): Promise<NodeJS.ReadableStream>;
709
- /**
710
- * Add a like on a comment.
711
- *
712
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
713
- * @param {number} pullRequestId - ID of the pull request.
714
- * @param {number} threadId - The ID of the thread that contains the comment.
715
- * @param {number} commentId - The ID of the comment.
716
- * @param {string} project - Project ID or project name
717
- */
718
- createLike(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<void>;
719
- /**
720
- * Delete a like on a comment.
721
- *
722
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
723
- * @param {number} pullRequestId - ID of the pull request.
724
- * @param {number} threadId - The ID of the thread that contains the comment.
725
- * @param {number} commentId - The ID of the comment.
726
- * @param {string} project - Project ID or project name
727
- */
728
- deleteLike(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<void>;
729
- /**
730
- * Get likes for a comment.
731
- *
732
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
733
- * @param {number} pullRequestId - ID of the pull request.
734
- * @param {number} threadId - The ID of the thread that contains the comment.
735
- * @param {number} commentId - The ID of the comment.
736
- * @param {string} project - Project ID or project name
737
- */
738
- getLikes(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<VSSInterfaces.IdentityRef[]>;
739
- /**
740
- * Get the commits for the specified iteration of a pull request.
741
- *
742
- * @param {string} repositoryId - ID or name of the repository.
743
- * @param {number} pullRequestId - ID of the pull request.
744
- * @param {number} iterationId - ID of the iteration from which to get the commits.
745
- * @param {string} project - Project ID or project name
746
- * @param {number} top - Maximum number of commits to return. The maximum number of commits that can be returned per batch is 500.
747
- * @param {number} skip - Number of commits to skip.
748
- */
749
- getPullRequestIterationCommits(repositoryId: string, pullRequestId: number, iterationId: number, project?: string, top?: number, skip?: number): Promise<GitInterfaces.GitCommitRef[]>;
750
- /**
751
- * Get the commits for the specified pull request.
752
- *
753
- * @param {string} repositoryId - ID or name of the repository.
754
- * @param {number} pullRequestId - ID of the pull request.
755
- * @param {string} project - Project ID or project name
756
- */
757
- getPullRequestCommits(repositoryId: string, pullRequestId: number, project?: string): Promise<VSSInterfaces.PagedList<GitInterfaces.GitCommitRef>>;
758
- /**
759
- * Retrieve one conflict for a pull request by ID
760
- *
761
- * @param {string} repositoryId
762
- * @param {number} pullRequestId
763
- * @param {number} conflictId
764
- * @param {string} project - Project ID or project name
765
- */
766
- getPullRequestConflict(repositoryId: string, pullRequestId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
767
- /**
768
- * Retrieve all conflicts for a pull request
769
- *
770
- * @param {string} repositoryId - The repository of the Pull Request.
771
- * @param {number} pullRequestId - The pull request ID.
772
- * @param {string} project - Project ID or project name
773
- * @param {number} skip - Conflicts to skip.
774
- * @param {number} top - Conflicts to return after skip.
775
- * @param {boolean} includeObsolete - Includes obsolete conflicts.
776
- * @param {boolean} excludeResolved - Excludes conflicts already resolved.
777
- * @param {boolean} onlyResolved - Returns only the conflicts that are resolved.
778
- */
779
- getPullRequestConflicts(repositoryId: string, pullRequestId: number, project?: string, skip?: number, top?: number, includeObsolete?: boolean, excludeResolved?: boolean, onlyResolved?: boolean): Promise<GitInterfaces.GitConflict[]>;
780
- /**
781
- * Update merge conflict resolution
782
- *
783
- * @param {GitInterfaces.GitConflict} conflict
784
- * @param {string} repositoryId
785
- * @param {number} pullRequestId
786
- * @param {number} conflictId
787
- * @param {string} project - Project ID or project name
788
- */
789
- updatePullRequestConflict(conflict: GitInterfaces.GitConflict, repositoryId: string, pullRequestId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
790
- /**
791
- * Update multiple merge conflict resolutions
792
- *
793
- * @param {GitInterfaces.GitConflict[]} conflictUpdates
794
- * @param {string} repositoryId
795
- * @param {number} pullRequestId
796
- * @param {string} project - Project ID or project name
797
- */
798
- updatePullRequestConflicts(conflictUpdates: GitInterfaces.GitConflict[], repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitConflictUpdateResult[]>;
799
- /**
800
- * Retrieve the changes made in a pull request between two iterations.
801
- *
802
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
803
- * @param {number} pullRequestId - ID of the pull request.
804
- * @param {number} iterationId - ID of the pull request iteration. <br /> Iteration one is the head of the source branch at the time the pull request is created and subsequent iterations are created when there are pushes to the source branch. Allowed values are between 1 and the maximum iteration on this pull request.
805
- * @param {string} project - Project ID or project name
806
- * @param {number} top - Optional. The number of changes to retrieve. The default value is 100 and the maximum value is 2000.
807
- * @param {number} skip - Optional. The number of changes to ignore. For example, to retrieve changes 101-150, set top 50 and skip to 100.
808
- * @param {number} compareTo - ID of the pull request iteration to compare against. The default value is zero which indicates the comparison is made against the common commit between the source and target branches
809
- */
810
- getPullRequestIterationChanges(repositoryId: string, pullRequestId: number, iterationId: number, project?: string, top?: number, skip?: number, compareTo?: number): Promise<GitInterfaces.GitPullRequestIterationChanges>;
811
- /**
812
- * Get the specified iteration for a pull request.
813
- *
814
- * @param {string} repositoryId - ID or name of the repository.
815
- * @param {number} pullRequestId - ID of the pull request.
816
- * @param {number} iterationId - ID of the pull request iteration to return.
817
- * @param {string} project - Project ID or project name
818
- */
819
- getPullRequestIteration(repositoryId: string, pullRequestId: number, iterationId: number, project?: string): Promise<GitInterfaces.GitPullRequestIteration>;
820
- /**
821
- * Get the list of iterations for the specified pull request.
822
- *
823
- * @param {string} repositoryId - ID or name of the repository.
824
- * @param {number} pullRequestId - ID of the pull request.
825
- * @param {string} project - Project ID or project name
826
- * @param {boolean} includeCommits - If true, include the commits associated with each iteration in the response.
827
- */
828
- getPullRequestIterations(repositoryId: string, pullRequestId: number, project?: string, includeCommits?: boolean): Promise<GitInterfaces.GitPullRequestIteration[]>;
829
- /**
830
- * Create a pull request status on the iteration. This operation will have the same result as Create status on pull request with specified iteration ID in the request body.
831
- *
832
- * @param {GitInterfaces.GitPullRequestStatus} status - Pull request status to create.
833
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
834
- * @param {number} pullRequestId - ID of the pull request.
835
- * @param {number} iterationId - ID of the pull request iteration.
836
- * @param {string} project - Project ID or project name
837
- */
838
- createPullRequestIterationStatus(status: GitInterfaces.GitPullRequestStatus, repositoryId: string, pullRequestId: number, iterationId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus>;
839
- /**
840
- * Delete pull request iteration status.
841
- *
842
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
843
- * @param {number} pullRequestId - ID of the pull request.
844
- * @param {number} iterationId - ID of the pull request iteration.
845
- * @param {number} statusId - ID of the pull request status.
846
- * @param {string} project - Project ID or project name
847
- */
848
- deletePullRequestIterationStatus(repositoryId: string, pullRequestId: number, iterationId: number, statusId: number, project?: string): Promise<void>;
849
- /**
850
- * Get the specific pull request iteration status by ID. The status ID is unique within the pull request across all iterations.
851
- *
852
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
853
- * @param {number} pullRequestId - ID of the pull request.
854
- * @param {number} iterationId - ID of the pull request iteration.
855
- * @param {number} statusId - ID of the pull request status.
856
- * @param {string} project - Project ID or project name
857
- */
858
- getPullRequestIterationStatus(repositoryId: string, pullRequestId: number, iterationId: number, statusId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus>;
859
- /**
860
- * Get all the statuses associated with a pull request iteration.
861
- *
862
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
863
- * @param {number} pullRequestId - ID of the pull request.
864
- * @param {number} iterationId - ID of the pull request iteration.
865
- * @param {string} project - Project ID or project name
866
- */
867
- getPullRequestIterationStatuses(repositoryId: string, pullRequestId: number, iterationId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus[]>;
868
- /**
869
- * Update pull request iteration statuses collection. The only supported operation type is `remove`.
870
- *
871
- * @param {VSSInterfaces.JsonPatchDocument} patchDocument - Operations to apply to the pull request statuses in JSON Patch format.
872
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
873
- * @param {number} pullRequestId - ID of the pull request.
874
- * @param {number} iterationId - ID of the pull request iteration.
875
- * @param {string} project - Project ID or project name
876
- */
877
- updatePullRequestIterationStatuses(customHeaders: any, patchDocument: VSSInterfaces.JsonPatchDocument, repositoryId: string, pullRequestId: number, iterationId: number, project?: string): Promise<void>;
878
- /**
879
- * Create a tag (if that does not exists yet) and add that as a label (tag) for a specified pull request. The only required field is the name of the new label (tag).
880
- *
881
- * @param {TfsCoreInterfaces.WebApiCreateTagRequestData} label - Label to assign to the pull request.
882
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
883
- * @param {number} pullRequestId - ID of the pull request.
884
- * @param {string} project - Project ID or project name
885
- * @param {string} projectId - Project ID or project name.
886
- */
887
- createPullRequestLabel(label: TfsCoreInterfaces.WebApiCreateTagRequestData, repositoryId: string, pullRequestId: number, project?: string, projectId?: string): Promise<TfsCoreInterfaces.WebApiTagDefinition>;
888
- /**
889
- * Removes a label (tag) from the set of those assigned to the pull request. The tag itself will not be deleted.
890
- *
891
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
892
- * @param {number} pullRequestId - ID of the pull request.
893
- * @param {string} labelIdOrName - The name or ID of the label requested.
894
- * @param {string} project - Project ID or project name
895
- * @param {string} projectId - Project ID or project name.
896
- */
897
- deletePullRequestLabels(repositoryId: string, pullRequestId: number, labelIdOrName: string, project?: string, projectId?: string): Promise<void>;
898
- /**
899
- * Retrieves a single label (tag) that has been assigned to a pull request.
900
- *
901
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
902
- * @param {number} pullRequestId - ID of the pull request.
903
- * @param {string} labelIdOrName - The name or ID of the label requested.
904
- * @param {string} project - Project ID or project name
905
- * @param {string} projectId - Project ID or project name.
906
- */
907
- getPullRequestLabel(repositoryId: string, pullRequestId: number, labelIdOrName: string, project?: string, projectId?: string): Promise<TfsCoreInterfaces.WebApiTagDefinition>;
908
- /**
909
- * Get all the labels (tags) assigned to a pull request.
910
- *
911
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
912
- * @param {number} pullRequestId - ID of the pull request.
913
- * @param {string} project - Project ID or project name
914
- * @param {string} projectId - Project ID or project name.
915
- */
916
- getPullRequestLabels(repositoryId: string, pullRequestId: number, project?: string, projectId?: string): Promise<TfsCoreInterfaces.WebApiTagDefinition[]>;
917
- /**
918
- * Get external properties of the pull request.
919
- *
920
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
921
- * @param {number} pullRequestId - ID of the pull request.
922
- * @param {string} project - Project ID or project name
923
- */
924
- getPullRequestProperties(repositoryId: string, pullRequestId: number, project?: string): Promise<any>;
925
- /**
926
- * Create or update pull request external properties. The patch operation can be `add`, `replace` or `remove`. For `add` operation, the path can be empty. If the path is empty, the value must be a list of key value pairs. For `replace` operation, the path cannot be empty. If the path does not exist, the property will be added to the collection. For `remove` operation, the path cannot be empty. If the path does not exist, no action will be performed.
927
- *
928
- * @param {VSSInterfaces.JsonPatchDocument} patchDocument - Properties to add, replace or remove in JSON Patch format.
929
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
930
- * @param {number} pullRequestId - ID of the pull request.
931
- * @param {string} project - Project ID or project name
932
- */
933
- updatePullRequestProperties(customHeaders: any, patchDocument: VSSInterfaces.JsonPatchDocument, repositoryId: string, pullRequestId: number, project?: string): Promise<any>;
934
- /**
935
- * This API is used to find what pull requests are related to a given commit. It can be used to either find the pull request that created a particular merge commit or it can be used to find all pull requests that have ever merged a particular commit. The input is a list of queries which each contain a list of commits. For each commit that you search against, you will get back a dictionary of commit -> pull requests.
936
- *
937
- * @param {GitInterfaces.GitPullRequestQuery} queries - The list of queries to perform.
938
- * @param {string} repositoryId - ID of the repository.
939
- * @param {string} project - Project ID or project name
940
- */
941
- getPullRequestQuery(queries: GitInterfaces.GitPullRequestQuery, repositoryId: string, project?: string): Promise<GitInterfaces.GitPullRequestQuery>;
942
- /**
943
- * Add a reviewer to a pull request or cast a vote.
944
- *
945
- * @param {GitInterfaces.IdentityRefWithVote} reviewer - Reviewer's vote.<br />If the reviewer's ID is included here, it must match the reviewerID parameter.<br />Reviewers can set their own vote with this method. When adding other reviewers, vote must be set to zero.
946
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
947
- * @param {number} pullRequestId - ID of the pull request.
948
- * @param {string} reviewerId - ID of the reviewer.
949
- * @param {string} project - Project ID or project name
950
- */
951
- createPullRequestReviewer(reviewer: GitInterfaces.IdentityRefWithVote, repositoryId: string, pullRequestId: number, reviewerId: string, project?: string): Promise<GitInterfaces.IdentityRefWithVote>;
952
- /**
953
- * Add reviewers to a pull request.
954
- *
955
- * @param {VSSInterfaces.IdentityRef[]} reviewers - Reviewers to add to the pull request.
956
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
957
- * @param {number} pullRequestId - ID of the pull request.
958
- * @param {string} project - Project ID or project name
959
- */
960
- createPullRequestReviewers(reviewers: VSSInterfaces.IdentityRef[], repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.IdentityRefWithVote[]>;
961
- /**
962
- * Add an unmaterialized identity to the reviewers of a pull request.
963
- *
964
- * @param {GitInterfaces.IdentityRefWithVote} reviewer - Reviewer to add to the pull request.
965
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
966
- * @param {number} pullRequestId - ID of the pull request.
967
- * @param {string} project - Project ID or project name
968
- */
969
- createUnmaterializedPullRequestReviewer(reviewer: GitInterfaces.IdentityRefWithVote, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.IdentityRefWithVote>;
970
- /**
971
- * Remove a reviewer from a pull request.
972
- *
973
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
974
- * @param {number} pullRequestId - ID of the pull request.
975
- * @param {string} reviewerId - ID of the reviewer to remove.
976
- * @param {string} project - Project ID or project name
977
- */
978
- deletePullRequestReviewer(repositoryId: string, pullRequestId: number, reviewerId: string, project?: string): Promise<void>;
979
- /**
980
- * Retrieve information about a particular reviewer on a pull request
981
- *
982
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
983
- * @param {number} pullRequestId - ID of the pull request.
984
- * @param {string} reviewerId - ID of the reviewer.
985
- * @param {string} project - Project ID or project name
986
- */
987
- getPullRequestReviewer(repositoryId: string, pullRequestId: number, reviewerId: string, project?: string): Promise<GitInterfaces.IdentityRefWithVote>;
988
- /**
989
- * Retrieve the reviewers for a pull request
990
- *
991
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
992
- * @param {number} pullRequestId - ID of the pull request.
993
- * @param {string} project - Project ID or project name
994
- */
995
- getPullRequestReviewers(repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.IdentityRefWithVote[]>;
996
- /**
997
- * Edit a reviewer entry. These fields are patchable: isFlagged, hasDeclined
998
- *
999
- * @param {GitInterfaces.IdentityRefWithVote} reviewer - Reviewer data.<br />If the reviewer's ID is included here, it must match the reviewerID parameter.
1000
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1001
- * @param {number} pullRequestId - ID of the pull request.
1002
- * @param {string} reviewerId - ID of the reviewer.
1003
- * @param {string} project - Project ID or project name
1004
- */
1005
- updatePullRequestReviewer(reviewer: GitInterfaces.IdentityRefWithVote, repositoryId: string, pullRequestId: number, reviewerId: string, project?: string): Promise<GitInterfaces.IdentityRefWithVote>;
1006
- /**
1007
- * Reset the votes of multiple reviewers on a pull request. NOTE: This endpoint only supports updating votes, but does not support updating required reviewers (use policy) or display names.
1008
- *
1009
- * @param {GitInterfaces.IdentityRefWithVote[]} patchVotes - IDs of the reviewers whose votes will be reset to zero
1010
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1011
- * @param {number} pullRequestId - ID of the pull request
1012
- * @param {string} project - Project ID or project name
1013
- */
1014
- updatePullRequestReviewers(patchVotes: GitInterfaces.IdentityRefWithVote[], repositoryId: string, pullRequestId: number, project?: string): Promise<void>;
1015
- /**
1016
- * Retrieve a pull request.
1017
- *
1018
- * @param {number} pullRequestId - The ID of the pull request to retrieve.
1019
- * @param {string} project - Project ID or project name
1020
- */
1021
- getPullRequestById(pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequest>;
1022
- /**
1023
- * Retrieve all pull requests matching a specified criteria.
1024
- *
1025
- * @param {string} project - Project ID or project name
1026
- * @param {GitInterfaces.GitPullRequestSearchCriteria} searchCriteria - Pull requests will be returned that match this search criteria.
1027
- * @param {number} maxCommentLength - Not used.
1028
- * @param {number} skip - The number of pull requests to ignore. For example, to retrieve results 101-150, set top to 50 and skip to 100.
1029
- * @param {number} top - The number of pull requests to retrieve.
1030
- */
1031
- getPullRequestsByProject(project: string, searchCriteria: GitInterfaces.GitPullRequestSearchCriteria, maxCommentLength?: number, skip?: number, top?: number): Promise<GitInterfaces.GitPullRequest[]>;
1032
- /**
1033
- * Create a pull request.
1034
- *
1035
- * @param {GitInterfaces.GitPullRequest} gitPullRequestToCreate - The pull request to create.
1036
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1037
- * @param {string} project - Project ID or project name
1038
- * @param {boolean} supportsIterations - If true, subsequent pushes to the pull request will be individually reviewable. Set this to false for large pull requests for performance reasons if this functionality is not needed.
1039
- */
1040
- createPullRequest(gitPullRequestToCreate: GitInterfaces.GitPullRequest, repositoryId: string, project?: string, supportsIterations?: boolean): Promise<GitInterfaces.GitPullRequest>;
1041
- /**
1042
- * Retrieve a pull request.
1043
- *
1044
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1045
- * @param {number} pullRequestId - The ID of the pull request to retrieve.
1046
- * @param {string} project - Project ID or project name
1047
- * @param {number} maxCommentLength - Not used.
1048
- * @param {number} skip - Not used.
1049
- * @param {number} top - Not used.
1050
- * @param {boolean} includeCommits - If true, the pull request will be returned with the associated commits.
1051
- * @param {boolean} includeWorkItemRefs - If true, the pull request will be returned with the associated work item references.
1052
- */
1053
- getPullRequest(repositoryId: string, pullRequestId: number, project?: string, maxCommentLength?: number, skip?: number, top?: number, includeCommits?: boolean, includeWorkItemRefs?: boolean): Promise<GitInterfaces.GitPullRequest>;
1054
- /**
1055
- * Retrieve all pull requests matching a specified criteria.
1056
- *
1057
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1058
- * @param {GitInterfaces.GitPullRequestSearchCriteria} searchCriteria - Pull requests will be returned that match this search criteria.
1059
- * @param {string} project - Project ID or project name
1060
- * @param {number} maxCommentLength - Not used.
1061
- * @param {number} skip - The number of pull requests to ignore. For example, to retrieve results 101-150, set top to 50 and skip to 100.
1062
- * @param {number} top - The number of pull requests to retrieve.
1063
- */
1064
- getPullRequests(repositoryId: string, searchCriteria: GitInterfaces.GitPullRequestSearchCriteria, project?: string, maxCommentLength?: number, skip?: number, top?: number): Promise<GitInterfaces.GitPullRequest[]>;
1065
- /**
1066
- * Update a pull request
1067
- *
1068
- * @param {GitInterfaces.GitPullRequest} gitPullRequestToUpdate - The pull request content that should be updated.
1069
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1070
- * @param {number} pullRequestId - ID of the pull request to update.
1071
- * @param {string} project - Project ID or project name
1072
- */
1073
- updatePullRequest(gitPullRequestToUpdate: GitInterfaces.GitPullRequest, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequest>;
1074
- /**
1075
- * Sends an e-mail notification about a specific pull request to a set of recipients
1076
- *
1077
- * @param {GitInterfaces.ShareNotificationContext} userMessage
1078
- * @param {string} repositoryId - ID of the git repository.
1079
- * @param {number} pullRequestId - ID of the pull request.
1080
- * @param {string} project - Project ID or project name
1081
- */
1082
- sharePullRequest(userMessage: GitInterfaces.ShareNotificationContext, repositoryId: string, pullRequestId: number, project?: string): Promise<void>;
1083
- /**
1084
- * Create a pull request status.
1085
- *
1086
- * @param {GitInterfaces.GitPullRequestStatus} status - Pull request status to create.
1087
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
1088
- * @param {number} pullRequestId - ID of the pull request.
1089
- * @param {string} project - Project ID or project name
1090
- */
1091
- createPullRequestStatus(status: GitInterfaces.GitPullRequestStatus, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus>;
1092
- /**
1093
- * Delete pull request status.
1094
- *
1095
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
1096
- * @param {number} pullRequestId - ID of the pull request.
1097
- * @param {number} statusId - ID of the pull request status.
1098
- * @param {string} project - Project ID or project name
1099
- */
1100
- deletePullRequestStatus(repositoryId: string, pullRequestId: number, statusId: number, project?: string): Promise<void>;
1101
- /**
1102
- * Get the specific pull request status by ID. The status ID is unique within the pull request across all iterations.
1103
- *
1104
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
1105
- * @param {number} pullRequestId - ID of the pull request.
1106
- * @param {number} statusId - ID of the pull request status.
1107
- * @param {string} project - Project ID or project name
1108
- */
1109
- getPullRequestStatus(repositoryId: string, pullRequestId: number, statusId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus>;
1110
- /**
1111
- * Get all the statuses associated with a pull request.
1112
- *
1113
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
1114
- * @param {number} pullRequestId - ID of the pull request.
1115
- * @param {string} project - Project ID or project name
1116
- */
1117
- getPullRequestStatuses(repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequestStatus[]>;
1118
- /**
1119
- * Update pull request statuses collection. The only supported operation type is `remove`.
1120
- *
1121
- * @param {VSSInterfaces.JsonPatchDocument} patchDocument - Operations to apply to the pull request statuses in JSON Patch format.
1122
- * @param {string} repositoryId - The repository ID of the pull request’s target branch.
1123
- * @param {number} pullRequestId - ID of the pull request.
1124
- * @param {string} project - Project ID or project name
1125
- */
1126
- updatePullRequestStatuses(customHeaders: any, patchDocument: VSSInterfaces.JsonPatchDocument, repositoryId: string, pullRequestId: number, project?: string): Promise<void>;
1127
- /**
1128
- * Create a comment on a specific thread in a pull request (up to 500 comments can be created per thread).
1129
- *
1130
- * @param {GitInterfaces.Comment} comment - The comment to create. Comments can be up to 150,000 characters.
1131
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1132
- * @param {number} pullRequestId - ID of the pull request.
1133
- * @param {number} threadId - ID of the thread that the desired comment is in.
1134
- * @param {string} project - Project ID or project name
1135
- */
1136
- createComment(comment: GitInterfaces.Comment, repositoryId: string, pullRequestId: number, threadId: number, project?: string): Promise<GitInterfaces.Comment>;
1137
- /**
1138
- * Delete a comment associated with a specific thread in a pull request.
1139
- *
1140
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1141
- * @param {number} pullRequestId - ID of the pull request.
1142
- * @param {number} threadId - ID of the thread that the desired comment is in.
1143
- * @param {number} commentId - ID of the comment.
1144
- * @param {string} project - Project ID or project name
1145
- */
1146
- deleteComment(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<void>;
1147
- /**
1148
- * Retrieve a comment associated with a specific thread in a pull request.
1149
- *
1150
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1151
- * @param {number} pullRequestId - ID of the pull request.
1152
- * @param {number} threadId - ID of the thread that the desired comment is in.
1153
- * @param {number} commentId - ID of the comment.
1154
- * @param {string} project - Project ID or project name
1155
- */
1156
- getComment(repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<GitInterfaces.Comment>;
1157
- /**
1158
- * Retrieve all comments associated with a specific thread in a pull request.
1159
- *
1160
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1161
- * @param {number} pullRequestId - ID of the pull request.
1162
- * @param {number} threadId - ID of the thread.
1163
- * @param {string} project - Project ID or project name
1164
- */
1165
- getComments(repositoryId: string, pullRequestId: number, threadId: number, project?: string): Promise<GitInterfaces.Comment[]>;
1166
- /**
1167
- * Update a comment associated with a specific thread in a pull request.
1168
- *
1169
- * @param {GitInterfaces.Comment} comment - The comment content that should be updated. Comments can be up to 150,000 characters.
1170
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1171
- * @param {number} pullRequestId - ID of the pull request.
1172
- * @param {number} threadId - ID of the thread that the desired comment is in.
1173
- * @param {number} commentId - ID of the comment to update.
1174
- * @param {string} project - Project ID or project name
1175
- */
1176
- updateComment(comment: GitInterfaces.Comment, repositoryId: string, pullRequestId: number, threadId: number, commentId: number, project?: string): Promise<GitInterfaces.Comment>;
1177
- /**
1178
- * Create a thread in a pull request.
1179
- *
1180
- * @param {GitInterfaces.GitPullRequestCommentThread} commentThread - The thread to create. Thread must contain at least one comment.
1181
- * @param {string} repositoryId - Repository ID of the pull request's target branch.
1182
- * @param {number} pullRequestId - ID of the pull request.
1183
- * @param {string} project - Project ID or project name
1184
- */
1185
- createThread(commentThread: GitInterfaces.GitPullRequestCommentThread, repositoryId: string, pullRequestId: number, project?: string): Promise<GitInterfaces.GitPullRequestCommentThread>;
1186
- /**
1187
- * Retrieve a thread in a pull request.
1188
- *
1189
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1190
- * @param {number} pullRequestId - ID of the pull request.
1191
- * @param {number} threadId - ID of the thread.
1192
- * @param {string} project - Project ID or project name
1193
- * @param {number} iteration - If specified, thread position will be tracked using this iteration as the right side of the diff.
1194
- * @param {number} baseIteration - If specified, thread position will be tracked using this iteration as the left side of the diff.
1195
- */
1196
- getPullRequestThread(repositoryId: string, pullRequestId: number, threadId: number, project?: string, iteration?: number, baseIteration?: number): Promise<GitInterfaces.GitPullRequestCommentThread>;
1197
- /**
1198
- * Retrieve all threads in a pull request.
1199
- *
1200
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1201
- * @param {number} pullRequestId - ID of the pull request.
1202
- * @param {string} project - Project ID or project name
1203
- * @param {number} iteration - If specified, thread positions will be tracked using this iteration as the right side of the diff.
1204
- * @param {number} baseIteration - If specified, thread positions will be tracked using this iteration as the left side of the diff.
1205
- */
1206
- getThreads(repositoryId: string, pullRequestId: number, project?: string, iteration?: number, baseIteration?: number): Promise<GitInterfaces.GitPullRequestCommentThread[]>;
1207
- /**
1208
- * Update a thread in a pull request.
1209
- *
1210
- * @param {GitInterfaces.GitPullRequestCommentThread} commentThread - The thread content that should be updated.
1211
- * @param {string} repositoryId - The repository ID of the pull request's target branch.
1212
- * @param {number} pullRequestId - ID of the pull request.
1213
- * @param {number} threadId - ID of the thread to update.
1214
- * @param {string} project - Project ID or project name
1215
- */
1216
- updateThread(commentThread: GitInterfaces.GitPullRequestCommentThread, repositoryId: string, pullRequestId: number, threadId: number, project?: string): Promise<GitInterfaces.GitPullRequestCommentThread>;
1217
- /**
1218
- * Retrieve a list of work items associated with a pull request.
1219
- *
1220
- * @param {string} repositoryId - ID or name of the repository.
1221
- * @param {number} pullRequestId - ID of the pull request.
1222
- * @param {string} project - Project ID or project name
1223
- */
1224
- getPullRequestWorkItemRefs(repositoryId: string, pullRequestId: number, project?: string): Promise<VSSInterfaces.ResourceRef[]>;
1225
- /**
1226
- * Push changes to the repository.
1227
- *
1228
- * @param {GitInterfaces.GitPush} push
1229
- * @param {string} repositoryId - The name or ID of the repository.
1230
- * @param {string} project - Project ID or project name
1231
- */
1232
- createPush(push: GitInterfaces.GitPush, repositoryId: string, project?: string): Promise<GitInterfaces.GitPush>;
1233
- /**
1234
- * Retrieves a particular push.
1235
- *
1236
- * @param {string} repositoryId - The name or ID of the repository.
1237
- * @param {number} pushId - ID of the push.
1238
- * @param {string} project - Project ID or project name
1239
- * @param {number} includeCommits - The number of commits to include in the result.
1240
- * @param {boolean} includeRefUpdates - If true, include the list of refs that were updated by the push.
1241
- */
1242
- getPush(repositoryId: string, pushId: number, project?: string, includeCommits?: number, includeRefUpdates?: boolean): Promise<GitInterfaces.GitPush>;
1243
- /**
1244
- * Retrieves pushes associated with the specified repository.
1245
- *
1246
- * @param {string} repositoryId - The name or ID of the repository.
1247
- * @param {string} project - Project ID or project name
1248
- * @param {number} skip - Number of pushes to skip.
1249
- * @param {number} top - Number of pushes to return.
1250
- * @param {GitInterfaces.GitPushSearchCriteria} searchCriteria - Search criteria attributes: fromDate, toDate, pusherId, refName, includeRefUpdates or includeLinks. fromDate: Start date to search from. toDate: End date to search to. pusherId: Identity of the person who submitted the push. refName: Branch name to consider. includeRefUpdates: If true, include the list of refs that were updated by the push. includeLinks: Whether to include the _links field on the shallow references.
1251
- */
1252
- getPushes(repositoryId: string, project?: string, skip?: number, top?: number, searchCriteria?: GitInterfaces.GitPushSearchCriteria): Promise<GitInterfaces.GitPush[]>;
1253
- /**
1254
- * Destroy (hard delete) a soft-deleted Git repository.
1255
- *
1256
- * @param {string} project - Project ID or project name
1257
- * @param {string} repositoryId - The ID of the repository.
1258
- */
1259
- deleteRepositoryFromRecycleBin(project: string, repositoryId: string): Promise<void>;
1260
- /**
1261
- * Retrieve soft-deleted git repositories from the recycle bin.
1262
- *
1263
- * @param {string} project - Project ID or project name
1264
- */
1265
- getRecycleBinRepositories(project: string): Promise<GitInterfaces.GitDeletedRepository[]>;
1266
- /**
1267
- * Recover a soft-deleted Git repository. Recently deleted repositories go into a soft-delete state for a period of time before they are hard deleted and become unrecoverable.
1268
- *
1269
- * @param {GitInterfaces.GitRecycleBinRepositoryDetails} repositoryDetails
1270
- * @param {string} project - Project ID or project name
1271
- * @param {string} repositoryId - The ID of the repository.
1272
- */
1273
- restoreRepositoryFromRecycleBin(repositoryDetails: GitInterfaces.GitRecycleBinRepositoryDetails, project: string, repositoryId: string): Promise<GitInterfaces.GitRepository>;
1274
- /**
1275
- * Queries the provided repository for its refs and returns them.
1276
- *
1277
- * @param {string} repositoryId - The name or ID of the repository.
1278
- * @param {string} project - Project ID or project name
1279
- * @param {string} filter - [optional] A filter to apply to the refs (starts with).
1280
- * @param {boolean} includeLinks - [optional] Specifies if referenceLinks should be included in the result. default is false.
1281
- * @param {boolean} includeStatuses - [optional] Includes up to the first 1000 commit statuses for each ref. The default value is false.
1282
- * @param {boolean} includeMyBranches - [optional] Includes only branches that the user owns, the branches the user favorites, and the default branch. The default value is false. Cannot be combined with the filter parameter.
1283
- * @param {boolean} latestStatusesOnly - [optional] True to include only the tip commit status for each ref. This option requires `includeStatuses` to be true. The default value is false.
1284
- * @param {boolean} peelTags - [optional] Annotated tags will populate the PeeledObjectId property. default is false.
1285
- * @param {string} filterContains - [optional] A filter to apply to the refs (contains).
1286
- */
1287
- getRefs(repositoryId: string, project?: string, filter?: string, includeLinks?: boolean, includeStatuses?: boolean, includeMyBranches?: boolean, latestStatusesOnly?: boolean, peelTags?: boolean, filterContains?: string): Promise<VSSInterfaces.PagedList<GitInterfaces.GitRef>>;
1288
- /**
1289
- * Lock or Unlock a branch.
1290
- *
1291
- * @param {GitInterfaces.GitRefUpdate} newRefInfo - The ref update action (lock/unlock) to perform
1292
- * @param {string} repositoryId - The name or ID of the repository.
1293
- * @param {string} filter - The name of the branch to lock/unlock
1294
- * @param {string} project - Project ID or project name
1295
- * @param {string} projectId - ID or name of the team project. Optional if specifying an ID for repository.
1296
- */
1297
- updateRef(newRefInfo: GitInterfaces.GitRefUpdate, repositoryId: string, filter: string, project?: string, projectId?: string): Promise<GitInterfaces.GitRef>;
1298
- /**
1299
- * Creating, updating, or deleting refs(branches).
1300
- *
1301
- * @param {GitInterfaces.GitRefUpdate[]} refUpdates - List of ref updates to attempt to perform
1302
- * @param {string} repositoryId - The name or ID of the repository.
1303
- * @param {string} project - Project ID or project name
1304
- * @param {string} projectId - ID or name of the team project. Optional if specifying an ID for repository.
1305
- */
1306
- updateRefs(refUpdates: GitInterfaces.GitRefUpdate[], repositoryId: string, project?: string, projectId?: string): Promise<GitInterfaces.GitRefUpdateResult[]>;
1307
- /**
1308
- * Creates a ref favorite
1309
- *
1310
- * @param {GitInterfaces.GitRefFavorite} favorite - The ref favorite to create.
1311
- * @param {string} project - Project ID or project name
1312
- */
1313
- createFavorite(favorite: GitInterfaces.GitRefFavorite, project: string): Promise<GitInterfaces.GitRefFavorite>;
1314
- /**
1315
- * Deletes the refs favorite specified
1316
- *
1317
- * @param {string} project - Project ID or project name
1318
- * @param {number} favoriteId - The Id of the ref favorite to delete.
1319
- */
1320
- deleteRefFavorite(project: string, favoriteId: number): Promise<void>;
1321
- /**
1322
- * Gets the refs favorite for a favorite Id.
1323
- *
1324
- * @param {string} project - Project ID or project name
1325
- * @param {number} favoriteId - The Id of the requested ref favorite.
1326
- */
1327
- getRefFavorite(project: string, favoriteId: number): Promise<GitInterfaces.GitRefFavorite>;
1328
- /**
1329
- * Gets the refs favorites for a repo and an identity.
1330
- *
1331
- * @param {string} project - Project ID or project name
1332
- * @param {string} repositoryId - The id of the repository.
1333
- * @param {string} identityId - The id of the identity whose favorites are to be retrieved. If null, the requesting identity is used.
1334
- */
1335
- getRefFavorites(project: string, repositoryId?: string, identityId?: string): Promise<GitInterfaces.GitRefFavorite[]>;
1336
- /**
1337
- * @param {string} project - Project ID or project name
1338
- * @param {string} identityId
1339
- */
1340
- getRefFavoritesForProject(project: string, identityId?: string): Promise<GitInterfaces.GitRefFavorite[]>;
1341
- /**
1342
- * Create a git repository in a team project.
1343
- *
1344
- * @param {GitInterfaces.GitRepositoryCreateOptions} gitRepositoryToCreate - Specify the repo name, team project and/or parent repository. Team project information can be omitted from gitRepositoryToCreate if the request is project-scoped (i.e., includes project Id).
1345
- * @param {string} project - Project ID or project name
1346
- * @param {string} sourceRef - [optional] Specify the source refs to use while creating a fork repo
1347
- */
1348
- createRepository(gitRepositoryToCreate: GitInterfaces.GitRepositoryCreateOptions, project?: string, sourceRef?: string): Promise<GitInterfaces.GitRepository>;
1349
- /**
1350
- * Delete a git repository
1351
- *
1352
- * @param {string} repositoryId - The ID of the repository.
1353
- * @param {string} project - Project ID or project name
1354
- */
1355
- deleteRepository(repositoryId: string, project?: string): Promise<void>;
1356
- /**
1357
- * Retrieve git repositories.
1358
- *
1359
- * @param {string} project - Project ID or project name
1360
- * @param {boolean} includeLinks - [optional] True to include reference links. The default value is false.
1361
- * @param {boolean} includeAllUrls - [optional] True to include all remote URLs. The default value is false.
1362
- * @param {boolean} includeHidden - [optional] True to include hidden repositories. The default value is false.
1363
- */
1364
- getRepositories(project?: string, includeLinks?: boolean, includeAllUrls?: boolean, includeHidden?: boolean): Promise<GitInterfaces.GitRepository[]>;
1365
- /**
1366
- * Retrieve a git repository.
1367
- *
1368
- * @param {string} repositoryId - The name or ID of the repository.
1369
- * @param {string} project - Project ID or project name
1370
- */
1371
- getRepository(repositoryId: string, project?: string): Promise<GitInterfaces.GitRepository>;
1372
- /**
1373
- * Retrieve a git repository.
1374
- *
1375
- * @param {string} repositoryId - The name or ID of the repository.
1376
- * @param {boolean} includeParent - True to include parent repository. Only available in authenticated calls.
1377
- * @param {string} project - Project ID or project name
1378
- */
1379
- getRepositoryWithParent(repositoryId: string, includeParent: boolean, project?: string): Promise<GitInterfaces.GitRepository>;
1380
- /**
1381
- * Updates the Git repository with either a new repo name or a new default branch.
1382
- *
1383
- * @param {GitInterfaces.GitRepository} newRepositoryInfo - Specify a new repo name or a new default branch of the repository
1384
- * @param {string} repositoryId - The ID of the repository.
1385
- * @param {string} project - Project ID or project name
1386
- */
1387
- updateRepository(newRepositoryInfo: GitInterfaces.GitRepository, repositoryId: string, project?: string): Promise<GitInterfaces.GitRepository>;
1388
- /**
1389
- * Retrieve one conflict for a revert by ID
1390
- *
1391
- * @param {string} repositoryId
1392
- * @param {number} revertId
1393
- * @param {number} conflictId
1394
- * @param {string} project - Project ID or project name
1395
- */
1396
- getRevertConflict(repositoryId: string, revertId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
1397
- /**
1398
- * Retrieve all conflicts for a revert
1399
- *
1400
- * @param {string} repositoryId
1401
- * @param {number} revertId
1402
- * @param {string} project - Project ID or project name
1403
- * @param {string} continuationToken
1404
- * @param {number} top
1405
- * @param {boolean} excludeResolved
1406
- * @param {boolean} onlyResolved
1407
- * @param {boolean} includeObsolete
1408
- */
1409
- getRevertConflicts(repositoryId: string, revertId: number, project?: string, continuationToken?: string, top?: number, excludeResolved?: boolean, onlyResolved?: boolean, includeObsolete?: boolean): Promise<VSSInterfaces.PagedList<GitInterfaces.GitConflict>>;
1410
- /**
1411
- * Update merge conflict resolution
1412
- *
1413
- * @param {GitInterfaces.GitConflict} conflict
1414
- * @param {string} repositoryId
1415
- * @param {number} revertId
1416
- * @param {number} conflictId
1417
- * @param {string} project - Project ID or project name
1418
- */
1419
- updateRevertConflict(conflict: GitInterfaces.GitConflict, repositoryId: string, revertId: number, conflictId: number, project?: string): Promise<GitInterfaces.GitConflict>;
1420
- /**
1421
- * Update multiple merge conflict resolutions
1422
- *
1423
- * @param {GitInterfaces.GitConflict[]} conflictUpdates
1424
- * @param {string} repositoryId
1425
- * @param {number} revertId
1426
- * @param {string} project - Project ID or project name
1427
- */
1428
- updateRevertConflicts(conflictUpdates: GitInterfaces.GitConflict[], repositoryId: string, revertId: number, project?: string): Promise<GitInterfaces.GitConflictUpdateResult[]>;
1429
- /**
1430
- * Starts the operation to create a new branch which reverts changes introduced by either a specific commit or commits that are associated to a pull request.
1431
- *
1432
- * @param {GitInterfaces.GitAsyncRefOperationParameters} revertToCreate
1433
- * @param {string} project - Project ID or project name
1434
- * @param {string} repositoryId - ID of the repository.
1435
- */
1436
- createRevert(revertToCreate: GitInterfaces.GitAsyncRefOperationParameters, project: string, repositoryId: string): Promise<GitInterfaces.GitRevert>;
1437
- /**
1438
- * Retrieve information about a revert operation by revert Id.
1439
- *
1440
- * @param {string} project - Project ID or project name
1441
- * @param {number} revertId - ID of the revert operation.
1442
- * @param {string} repositoryId - ID of the repository.
1443
- */
1444
- getRevert(project: string, revertId: number, repositoryId: string): Promise<GitInterfaces.GitRevert>;
1445
- /**
1446
- * Retrieve information about a revert operation for a specific branch.
1447
- *
1448
- * @param {string} project - Project ID or project name
1449
- * @param {string} repositoryId - ID of the repository.
1450
- * @param {string} refName - The GitAsyncRefOperationParameters generatedRefName used for the revert operation.
1451
- */
1452
- getRevertForRefName(project: string, repositoryId: string, refName: string): Promise<GitInterfaces.GitRevert>;
1453
- /**
1454
- * Create Git commit status.
1455
- *
1456
- * @param {GitInterfaces.GitStatus} gitCommitStatusToCreate - Git commit status object to create.
1457
- * @param {string} commitId - ID of the Git commit.
1458
- * @param {string} repositoryId - ID of the repository.
1459
- * @param {string} project - Project ID or project name
1460
- */
1461
- createCommitStatus(gitCommitStatusToCreate: GitInterfaces.GitStatus, commitId: string, repositoryId: string, project?: string): Promise<GitInterfaces.GitStatus>;
1462
- /**
1463
- * Get statuses associated with the Git commit.
1464
- *
1465
- * @param {string} commitId - ID of the Git commit.
1466
- * @param {string} repositoryId - ID of the repository.
1467
- * @param {string} project - Project ID or project name
1468
- * @param {number} top - Optional. The number of statuses to retrieve. Default is 1000.
1469
- * @param {number} skip - Optional. The number of statuses to ignore. Default is 0. For example, to retrieve results 101-150, set top to 50 and skip to 100.
1470
- * @param {boolean} latestOnly - The flag indicates whether to get only latest statuses grouped by `Context.Name` and `Context.Genre`.
1471
- */
1472
- getStatuses(commitId: string, repositoryId: string, project?: string, top?: number, skip?: number, latestOnly?: boolean): Promise<GitInterfaces.GitStatus[]>;
1473
- /**
1474
- * Retrieve a pull request suggestion for a particular repository or team project.
1475
- *
1476
- * @param {string} repositoryId - ID of the git repository.
1477
- * @param {string} project - Project ID or project name
1478
- * @param {boolean} preferCompareBranch - If true, prefer the compare branch over the default branch as target branch for pull requests.
1479
- */
1480
- getSuggestions(repositoryId: string, project?: string, preferCompareBranch?: boolean): Promise<GitInterfaces.GitSuggestion[]>;
1481
- /**
1482
- * The Tree endpoint returns the collection of objects underneath the specified tree. Trees are folders in a Git repository.
1483
- *
1484
- * @param {string} repositoryId - Repository Id.
1485
- * @param {string} sha1 - SHA1 hash of the tree object.
1486
- * @param {string} project - Project ID or project name
1487
- * @param {string} projectId - Project Id.
1488
- * @param {boolean} recursive - Search recursively. Include trees underneath this tree. Default is false.
1489
- * @param {string} fileName - Name to use if a .zip file is returned. Default is the object ID.
1490
- */
1491
- getTree(repositoryId: string, sha1: string, project?: string, projectId?: string, recursive?: boolean, fileName?: string): Promise<GitInterfaces.GitTreeRef>;
1492
- /**
1493
- * The Tree endpoint returns the collection of objects underneath the specified tree. Trees are folders in a Git repository.
1494
- *
1495
- * @param {string} repositoryId - Repository Id.
1496
- * @param {string} sha1 - SHA1 hash of the tree object.
1497
- * @param {string} project - Project ID or project name
1498
- * @param {string} projectId - Project Id.
1499
- * @param {boolean} recursive - Search recursively. Include trees underneath this tree. Default is false.
1500
- * @param {string} fileName - Name to use if a .zip file is returned. Default is the object ID.
1501
- */
1502
- getTreeZip(repositoryId: string, sha1: string, project?: string, projectId?: string, recursive?: boolean, fileName?: string): Promise<NodeJS.ReadableStream>;
1503
- }