@proteinjs/reflection-build 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (295) hide show
  1. package/dist/test/examples/source-repository/a/generated/index.js +1 -1
  2. package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
  3. package/dist/test/examples/source-repository/b/generated/index.js +1 -1
  4. package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
  5. package/package.json +4 -5
  6. package/test/examples/source-repository/a/dist/generated/index.js +1 -1
  7. package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
  8. package/test/examples/source-repository/a/generated/index.ts +33 -38
  9. package/test/examples/source-repository/a/node_modules/.package-lock.json +59 -6
  10. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.eslintrc.js +20 -0
  11. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.prettierignore +4 -0
  12. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.prettierrc +8 -0
  13. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/CHANGELOG.md +58 -0
  14. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.d.ts +5 -0
  15. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.js +18 -0
  16. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.js.map +1 -0
  17. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.d.ts +19 -0
  18. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js +555 -0
  19. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js.map +1 -0
  20. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.d.ts +3 -0
  21. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.js +5 -0
  22. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.js.map +1 -0
  23. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.d.ts +45 -0
  24. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js +176 -0
  25. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js.map +1 -0
  26. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.d.ts +11 -0
  27. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js +9 -0
  28. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js.map +1 -0
  29. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.d.ts +13 -0
  30. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js +19 -0
  31. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js.map +1 -0
  32. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.d.ts +221 -0
  33. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.js +234 -0
  34. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.js.map +1 -0
  35. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/index.ts +5 -0
  36. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/jest.config.js +9 -0
  37. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/package.json +42 -0
  38. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/FlattenedSourceGraph.ts +702 -0
  39. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/Loadable.ts +2 -0
  40. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/SourceRepository.ts +250 -0
  41. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/SourceRepositoryFilter.ts +15 -0
  42. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/sourceGraphTypes.ts +14 -0
  43. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/types.ts +236 -0
  44. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/tsconfig.json +19 -0
  45. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/types/@dagrejs/graphlib.d.ts +1 -0
  46. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/CHANGELOG.md +13 -0
  47. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.d.ts +23 -0
  48. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.js +67 -0
  49. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.js.map +1 -1
  50. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.d.ts +297 -10
  51. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.js +349 -112
  52. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.js.map +1 -1
  53. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/cmd.d.ts +10 -1
  54. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/cmd.js +91 -48
  55. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/cmd.js.map +1 -1
  56. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/package.json +2 -2
  57. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/Fs.ts +75 -0
  58. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/GitUtil.ts +248 -110
  59. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/cmd.ts +84 -59
  60. package/test/examples/source-repository/a/node_modules/bindings/LICENSE.md +22 -0
  61. package/test/examples/source-repository/a/node_modules/bindings/README.md +98 -0
  62. package/test/examples/source-repository/a/node_modules/bindings/bindings.js +221 -0
  63. package/test/examples/source-repository/a/node_modules/bindings/package.json +28 -0
  64. package/test/examples/source-repository/a/node_modules/file-uri-to-path/.travis.yml +30 -0
  65. package/test/examples/source-repository/a/node_modules/file-uri-to-path/History.md +21 -0
  66. package/test/examples/source-repository/a/node_modules/file-uri-to-path/LICENSE +20 -0
  67. package/test/examples/source-repository/a/node_modules/file-uri-to-path/README.md +74 -0
  68. package/test/examples/source-repository/a/node_modules/file-uri-to-path/index.d.ts +2 -0
  69. package/test/examples/source-repository/a/node_modules/file-uri-to-path/index.js +66 -0
  70. package/test/examples/source-repository/a/node_modules/file-uri-to-path/package.json +32 -0
  71. package/test/examples/source-repository/a/node_modules/file-uri-to-path/test/test.js +24 -0
  72. package/test/examples/source-repository/a/node_modules/file-uri-to-path/test/tests.json +13 -0
  73. package/test/examples/source-repository/a/node_modules/fsevents/LICENSE +22 -0
  74. package/test/examples/source-repository/a/node_modules/fsevents/README.md +89 -0
  75. package/test/examples/source-repository/a/node_modules/fsevents/fsevents.d.ts +46 -0
  76. package/test/examples/source-repository/a/node_modules/fsevents/fsevents.js +83 -0
  77. package/test/examples/source-repository/a/node_modules/fsevents/fsevents.node +0 -0
  78. package/test/examples/source-repository/a/node_modules/fsevents/package.json +62 -0
  79. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/.travis.yml +103 -0
  80. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/ISSUE_TEMPLATE.md +8 -0
  81. package/{LICENSE → test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/LICENSE} +6 -5
  82. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/Readme.md +78 -0
  83. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/binding.gyp +21 -0
  84. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/.target.mk +53 -0
  85. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +352 -0
  86. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
  87. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/obj.target/fse/fsevents.o.d.raw +75 -0
  88. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.node +0 -0
  89. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/binding.Makefile +6 -0
  90. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/fse.target.mk +188 -0
  91. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +772 -0
  92. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/fsevents.cc +88 -0
  93. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/fsevents.js +106 -0
  94. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/install.js +13 -0
  95. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/package.json +34 -0
  96. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/async.cc +43 -0
  97. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/constants.cc +110 -0
  98. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/methods.cc +44 -0
  99. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/storage.cc +27 -0
  100. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/thread.cc +71 -0
  101. package/test/examples/source-repository/a/node_modules/nan/CHANGELOG.md +557 -0
  102. package/test/examples/source-repository/a/node_modules/nan/CMakeLists.txt +138 -0
  103. package/test/examples/source-repository/a/node_modules/nan/LICENSE.md +9 -0
  104. package/test/examples/source-repository/a/node_modules/nan/README.md +456 -0
  105. package/test/examples/source-repository/a/node_modules/nan/doc/asyncworker.md +146 -0
  106. package/test/examples/source-repository/a/node_modules/nan/doc/buffers.md +54 -0
  107. package/test/examples/source-repository/a/node_modules/nan/doc/callback.md +76 -0
  108. package/test/examples/source-repository/a/node_modules/nan/doc/converters.md +41 -0
  109. package/test/examples/source-repository/a/node_modules/nan/doc/errors.md +226 -0
  110. package/test/examples/source-repository/a/node_modules/nan/doc/json.md +62 -0
  111. package/test/examples/source-repository/a/node_modules/nan/doc/maybe_types.md +583 -0
  112. package/test/examples/source-repository/a/node_modules/nan/doc/methods.md +672 -0
  113. package/test/examples/source-repository/a/node_modules/nan/doc/new.md +147 -0
  114. package/test/examples/source-repository/a/node_modules/nan/doc/node_misc.md +123 -0
  115. package/test/examples/source-repository/a/node_modules/nan/doc/object_wrappers.md +263 -0
  116. package/test/examples/source-repository/a/node_modules/nan/doc/persistent.md +296 -0
  117. package/test/examples/source-repository/a/node_modules/nan/doc/scopes.md +73 -0
  118. package/test/examples/source-repository/a/node_modules/nan/doc/script.md +58 -0
  119. package/test/examples/source-repository/a/node_modules/nan/doc/string_bytes.md +62 -0
  120. package/test/examples/source-repository/a/node_modules/nan/doc/v8_internals.md +199 -0
  121. package/test/examples/source-repository/a/node_modules/nan/doc/v8_misc.md +85 -0
  122. package/test/examples/source-repository/a/node_modules/nan/include_dirs.js +1 -0
  123. package/test/examples/source-repository/a/node_modules/nan/nan.h +2958 -0
  124. package/test/examples/source-repository/a/node_modules/nan/nan_callbacks.h +92 -0
  125. package/test/examples/source-repository/a/node_modules/nan/nan_callbacks_12_inl.h +520 -0
  126. package/test/examples/source-repository/a/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
  127. package/test/examples/source-repository/a/node_modules/nan/nan_converters.h +72 -0
  128. package/test/examples/source-repository/a/node_modules/nan/nan_converters_43_inl.h +68 -0
  129. package/test/examples/source-repository/a/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
  130. package/test/examples/source-repository/a/node_modules/nan/nan_define_own_property_helper.h +29 -0
  131. package/test/examples/source-repository/a/node_modules/nan/nan_implementation_12_inl.h +430 -0
  132. package/test/examples/source-repository/a/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
  133. package/test/examples/source-repository/a/node_modules/nan/nan_json.h +166 -0
  134. package/test/examples/source-repository/a/node_modules/nan/nan_maybe_43_inl.h +356 -0
  135. package/test/examples/source-repository/a/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
  136. package/test/examples/source-repository/a/node_modules/nan/nan_new.h +340 -0
  137. package/test/examples/source-repository/a/node_modules/nan/nan_object_wrap.h +156 -0
  138. package/test/examples/source-repository/a/node_modules/nan/nan_persistent_12_inl.h +132 -0
  139. package/test/examples/source-repository/a/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
  140. package/test/examples/source-repository/a/node_modules/nan/nan_private.h +73 -0
  141. package/test/examples/source-repository/a/node_modules/nan/nan_scriptorigin.h +76 -0
  142. package/test/examples/source-repository/a/node_modules/nan/nan_string_bytes.h +305 -0
  143. package/test/examples/source-repository/a/node_modules/nan/nan_typedarray_contents.h +96 -0
  144. package/test/examples/source-repository/a/node_modules/nan/nan_weak.h +437 -0
  145. package/test/examples/source-repository/a/node_modules/nan/package.json +38 -0
  146. package/test/examples/source-repository/a/node_modules/nan/tools/1to2.js +412 -0
  147. package/test/examples/source-repository/a/node_modules/nan/tools/README.md +14 -0
  148. package/test/examples/source-repository/a/node_modules/nan/tools/package.json +19 -0
  149. package/test/examples/source-repository/a/package-lock.json +8 -8
  150. package/test/examples/source-repository/a/package.json +3 -3
  151. package/test/examples/source-repository/b/dist/generated/index.js +1 -1
  152. package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
  153. package/test/examples/source-repository/b/generated/index.ts +11 -10
  154. package/test/examples/source-repository/b/node_modules/.package-lock.json +57 -4
  155. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.eslintrc.js +20 -0
  156. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.prettierignore +4 -0
  157. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.prettierrc +8 -0
  158. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/CHANGELOG.md +58 -0
  159. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.d.ts +5 -0
  160. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.js +18 -0
  161. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.js.map +1 -0
  162. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.d.ts +19 -0
  163. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js +555 -0
  164. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js.map +1 -0
  165. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.d.ts +3 -0
  166. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.js +5 -0
  167. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.js.map +1 -0
  168. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.d.ts +45 -0
  169. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js +176 -0
  170. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js.map +1 -0
  171. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.d.ts +11 -0
  172. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js +9 -0
  173. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js.map +1 -0
  174. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.d.ts +13 -0
  175. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js +19 -0
  176. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js.map +1 -0
  177. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.d.ts +221 -0
  178. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.js +234 -0
  179. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.js.map +1 -0
  180. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/index.ts +5 -0
  181. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/jest.config.js +9 -0
  182. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/package.json +42 -0
  183. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/FlattenedSourceGraph.ts +702 -0
  184. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/Loadable.ts +2 -0
  185. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/SourceRepository.ts +250 -0
  186. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/SourceRepositoryFilter.ts +15 -0
  187. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/sourceGraphTypes.ts +14 -0
  188. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/types.ts +236 -0
  189. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/tsconfig.json +19 -0
  190. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/types/@dagrejs/graphlib.d.ts +1 -0
  191. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/CHANGELOG.md +13 -0
  192. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.d.ts +23 -0
  193. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.js +67 -0
  194. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.js.map +1 -1
  195. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/GitUtil.d.ts +297 -10
  196. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/GitUtil.js +349 -112
  197. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/GitUtil.js.map +1 -1
  198. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/cmd.d.ts +10 -1
  199. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/cmd.js +91 -48
  200. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/cmd.js.map +1 -1
  201. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/package.json +2 -2
  202. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/Fs.ts +75 -0
  203. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/GitUtil.ts +248 -110
  204. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/cmd.ts +84 -59
  205. package/test/examples/source-repository/b/node_modules/bindings/LICENSE.md +22 -0
  206. package/test/examples/source-repository/b/node_modules/bindings/README.md +98 -0
  207. package/test/examples/source-repository/b/node_modules/bindings/bindings.js +221 -0
  208. package/test/examples/source-repository/b/node_modules/bindings/package.json +28 -0
  209. package/test/examples/source-repository/b/node_modules/file-uri-to-path/.travis.yml +30 -0
  210. package/test/examples/source-repository/b/node_modules/file-uri-to-path/History.md +21 -0
  211. package/test/examples/source-repository/b/node_modules/file-uri-to-path/LICENSE +20 -0
  212. package/test/examples/source-repository/b/node_modules/file-uri-to-path/README.md +74 -0
  213. package/test/examples/source-repository/b/node_modules/file-uri-to-path/index.d.ts +2 -0
  214. package/test/examples/source-repository/b/node_modules/file-uri-to-path/index.js +66 -0
  215. package/test/examples/source-repository/b/node_modules/file-uri-to-path/package.json +32 -0
  216. package/test/examples/source-repository/b/node_modules/file-uri-to-path/test/test.js +24 -0
  217. package/test/examples/source-repository/b/node_modules/file-uri-to-path/test/tests.json +13 -0
  218. package/test/examples/source-repository/b/node_modules/fsevents/LICENSE +22 -0
  219. package/test/examples/source-repository/b/node_modules/fsevents/README.md +89 -0
  220. package/test/examples/source-repository/b/node_modules/fsevents/fsevents.d.ts +46 -0
  221. package/test/examples/source-repository/b/node_modules/fsevents/fsevents.js +83 -0
  222. package/test/examples/source-repository/b/node_modules/fsevents/fsevents.node +0 -0
  223. package/test/examples/source-repository/b/node_modules/fsevents/package.json +62 -0
  224. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/.travis.yml +103 -0
  225. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/ISSUE_TEMPLATE.md +8 -0
  226. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/LICENSE +22 -0
  227. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/Readme.md +78 -0
  228. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/binding.gyp +21 -0
  229. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/.target.mk +53 -0
  230. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +352 -0
  231. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
  232. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/obj.target/fse/fsevents.o.d.raw +75 -0
  233. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.node +0 -0
  234. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/binding.Makefile +6 -0
  235. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/fse.target.mk +188 -0
  236. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +772 -0
  237. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/fsevents.cc +88 -0
  238. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/fsevents.js +106 -0
  239. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/install.js +13 -0
  240. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/package.json +34 -0
  241. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/async.cc +43 -0
  242. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/constants.cc +110 -0
  243. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/methods.cc +44 -0
  244. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/storage.cc +27 -0
  245. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/thread.cc +71 -0
  246. package/test/examples/source-repository/b/node_modules/nan/CHANGELOG.md +557 -0
  247. package/test/examples/source-repository/b/node_modules/nan/CMakeLists.txt +138 -0
  248. package/test/examples/source-repository/b/node_modules/nan/LICENSE.md +9 -0
  249. package/test/examples/source-repository/b/node_modules/nan/README.md +456 -0
  250. package/test/examples/source-repository/b/node_modules/nan/doc/asyncworker.md +146 -0
  251. package/test/examples/source-repository/b/node_modules/nan/doc/buffers.md +54 -0
  252. package/test/examples/source-repository/b/node_modules/nan/doc/callback.md +76 -0
  253. package/test/examples/source-repository/b/node_modules/nan/doc/converters.md +41 -0
  254. package/test/examples/source-repository/b/node_modules/nan/doc/errors.md +226 -0
  255. package/test/examples/source-repository/b/node_modules/nan/doc/json.md +62 -0
  256. package/test/examples/source-repository/b/node_modules/nan/doc/maybe_types.md +583 -0
  257. package/test/examples/source-repository/b/node_modules/nan/doc/methods.md +672 -0
  258. package/test/examples/source-repository/b/node_modules/nan/doc/new.md +147 -0
  259. package/test/examples/source-repository/b/node_modules/nan/doc/node_misc.md +123 -0
  260. package/test/examples/source-repository/b/node_modules/nan/doc/object_wrappers.md +263 -0
  261. package/test/examples/source-repository/b/node_modules/nan/doc/persistent.md +296 -0
  262. package/test/examples/source-repository/b/node_modules/nan/doc/scopes.md +73 -0
  263. package/test/examples/source-repository/b/node_modules/nan/doc/script.md +58 -0
  264. package/test/examples/source-repository/b/node_modules/nan/doc/string_bytes.md +62 -0
  265. package/test/examples/source-repository/b/node_modules/nan/doc/v8_internals.md +199 -0
  266. package/test/examples/source-repository/b/node_modules/nan/doc/v8_misc.md +85 -0
  267. package/test/examples/source-repository/b/node_modules/nan/include_dirs.js +1 -0
  268. package/test/examples/source-repository/b/node_modules/nan/nan.h +2958 -0
  269. package/test/examples/source-repository/b/node_modules/nan/nan_callbacks.h +92 -0
  270. package/test/examples/source-repository/b/node_modules/nan/nan_callbacks_12_inl.h +520 -0
  271. package/test/examples/source-repository/b/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
  272. package/test/examples/source-repository/b/node_modules/nan/nan_converters.h +72 -0
  273. package/test/examples/source-repository/b/node_modules/nan/nan_converters_43_inl.h +68 -0
  274. package/test/examples/source-repository/b/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
  275. package/test/examples/source-repository/b/node_modules/nan/nan_define_own_property_helper.h +29 -0
  276. package/test/examples/source-repository/b/node_modules/nan/nan_implementation_12_inl.h +430 -0
  277. package/test/examples/source-repository/b/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
  278. package/test/examples/source-repository/b/node_modules/nan/nan_json.h +166 -0
  279. package/test/examples/source-repository/b/node_modules/nan/nan_maybe_43_inl.h +356 -0
  280. package/test/examples/source-repository/b/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
  281. package/test/examples/source-repository/b/node_modules/nan/nan_new.h +340 -0
  282. package/test/examples/source-repository/b/node_modules/nan/nan_object_wrap.h +156 -0
  283. package/test/examples/source-repository/b/node_modules/nan/nan_persistent_12_inl.h +132 -0
  284. package/test/examples/source-repository/b/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
  285. package/test/examples/source-repository/b/node_modules/nan/nan_private.h +73 -0
  286. package/test/examples/source-repository/b/node_modules/nan/nan_scriptorigin.h +76 -0
  287. package/test/examples/source-repository/b/node_modules/nan/nan_string_bytes.h +305 -0
  288. package/test/examples/source-repository/b/node_modules/nan/nan_typedarray_contents.h +96 -0
  289. package/test/examples/source-repository/b/node_modules/nan/nan_weak.h +437 -0
  290. package/test/examples/source-repository/b/node_modules/nan/package.json +38 -0
  291. package/test/examples/source-repository/b/node_modules/nan/tools/1to2.js +412 -0
  292. package/test/examples/source-repository/b/node_modules/nan/tools/README.md +14 -0
  293. package/test/examples/source-repository/b/node_modules/nan/tools/package.json +19 -0
  294. package/test/examples/source-repository/b/package-lock.json +6 -6
  295. package/test/examples/source-repository/b/package.json +3 -3
@@ -1 +1 @@
1
- {"version":3,"file":"Fs.js","sourceRoot":"","sources":["../../src/Fs.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"Fs.js","sourceRoot":"","sources":["../../src/Fs.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,8CAAwB;AACxB,sDAA+B;AAC/B,yDAA6B;AAC7B,kDAA4B;AAC5B,6BAA4B;AAwB5B;IAAA;IA+LA,CAAC;IA9Lc,SAAM,GAAnB,UAAoB,IAAY;;;;4BACvB,qBAAM,kBAAO,CAAC,MAAM,CAAC,IAAI,CAAC,EAAA;4BAAjC,sBAAO,SAA0B,EAAC;;;;KACnC;IAEY,eAAY,GAAzB,UAA0B,IAAY;;;;4BACpC,qBAAM,kBAAE,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,EAAA;;wBAAzC,SAAyC,CAAC;;;;;KAC3C;IAEY,eAAY,GAAzB,UAA0B,IAAY;;;;4BACpC,qBAAM,kBAAO,CAAC,MAAM,CAAC,IAAI,CAAC,EAAA;;wBAA1B,SAA0B,CAAC;;;;;KAC5B;IAEY,YAAS,GAAtB,UAAuB,SAAmB;;;;;;wBAClC,OAAO,GAAmB,EAAE,CAAC;8BACH,EAAT,uBAAS;;;6BAAT,CAAA,uBAAS,CAAA;wBAArB,QAAQ;wBACX,EAAE,GAAG,UAAG,QAAQ,CAAE,CAAC;wBACzB,KAAA,OAAO,CAAA;wBAAC,KAAA,EAAE,CAAA;wBAAI,qBAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAA;;wBAAnC,MAAW,GAAG,SAAqB,CAAC;;;wBAFf,IAAS,CAAA;;4BAIhC,sBAAO,OAAO,EAAC;;;;KAChB;IAEY,WAAQ,GAArB,UAAsB,QAAgB;;;;;4BAC9B,qBAAM,kBAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAA;;wBAApC,IAAI,CAAC,CAAC,SAA8B,CAAC,EAAE;4BACrC,MAAM,IAAI,KAAK,CAAC,uCAAgC,QAAQ,CAAE,CAAC,CAAC;yBAC7D;wBAEoB,qBAAM,kBAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAA;;wBAA/C,WAAW,GAAG,CAAC,SAAgC,CAAC,CAAC,QAAQ,EAAE;wBACjE,IAAI,CAAC,WAAW,EAAE;4BAChB,MAAM,IAAI,KAAK,CAAC,yBAAkB,QAAQ,CAAE,CAAC,CAAC;yBAC/C;wBAED,sBAAO,WAAW,EAAC;;;;KACpB;IAEY,aAAU,GAAvB,UAAwB,KAAa;;;;;;8BACX,EAAL,eAAK;;;6BAAL,CAAA,mBAAK,CAAA;wBAAb,IAAI;wBACb,qBAAM,kBAAO,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,EAAA;;wBAAnC,SAAmC,CAAC;wBACpC,qBAAM,kBAAO,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,EAAA;;wBAAhD,SAAgD,CAAC;;;wBAFhC,IAAK,CAAA;;;;;;KAIzB;IAED,8EAA8E;IACvE,oBAAiB,GAAxB,UAAyB,QAAgB,EAAE,YAAoB;QAC7D,IAAI,YAAY,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;YAC/B,MAAM,IAAI,KAAK,CAAC,iCAA0B,YAAY,oCAAiC,CAAC,CAAC;SAC1F;QAED,OAAO,cAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC;IAC3C,CAAC;IAEM,mBAAgB,GAAvB,UAAwB,gBAAwB,EAAE,cAAsB;QACtE,OAAO,cAAI,CAAC,IAAI,CACd,cAAI,CAAC,QAAQ,CAAC,cAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,GAAG,EAAE,cAAI,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,EAC/E,cAAI,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,IAAI,CAChC,CAAC;IACJ,CAAC;IAED,6CAA6C;IAC7C,iGAAiG;IACjG,iCAAiC;IACpB,eAAY,GAAzB,UAA0B,GAAW,EAAE,kBAAiC;QAAjC,mCAAA,EAAA,uBAAiC;;;;4BAC/D,qBAAM,IAAA,gBAAM,EAAC,GAAG,GAAG,MAAM,EAAE;4BAChC,MAAM,oBAAM,kBAAkB,OAAC;yBAChC,CAAC,EAAA;4BAFF,sBAAO,SAEL,EAAC;;;;KACJ;IAED,4DAA4D;IAC5D,wDAAwD;IACxD,iGAAiG;IACjG,iCAAiC;IACpB,2BAAwB,GAArC,UAAsC,SAAiB,EAAE,IAAY,EAAE,kBAAiC;QAAjC,mCAAA,EAAA,uBAAiC;;;;;wBACtG,IAAI,SAAS,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC,IAAI,cAAI,CAAC,GAAG,EAAE;4BAC/C,SAAS,IAAI,cAAI,CAAC,GAAG,CAAC;yBACvB;wBAEM,qBAAM,IAAA,gBAAM,EAAC,SAAS,GAAG,IAAI,EAAE;gCACpC,MAAM,oBAAM,kBAAkB,OAAC;6BAChC,CAAC,EAAA;4BAFF,sBAAO,SAEL,EAAC;;;;KACJ;IAED,kDAAkD;IACrC,sBAAmB,GAAhC,UAAiC,GAAW,EAAE,YAAuB,EAAE,OAAgB;;;;;;wBACjF,OAAO,GAAqB,EAAE,CAAC;wBACnC,IAAI,CAAC,OAAO,EAAE;4BACZ,OAAO,GAAG,GAAG,CAAC;yBACf;wBAEe,qBAAM,kBAAO,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,aAAa,EAAE,IAAI,EAAE,CAAC,EAAA;;wBAA7D,OAAO,GAAG,SAAmD;8BAEvC,EAAP,mBAAO;;;6BAAP,CAAA,qBAAO,CAAA;wBAAjB,MAAM;wBACT,QAAQ,GAAG,cAAI,CAAC,OAAO,CAAC,GAAG,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;6BAE5C,MAAM,CAAC,WAAW,EAAE,EAApB,wBAAoB;6BAClB,CAAA,YAAY,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA,EAAnD,wBAAmD;wBAC3C,KAAA,CAAA,KAAA,OAAO,CAAA,CAAC,MAAM,CAAA;wBAAC,qBAAM,EAAE,CAAC,mBAAmB,CAAC,QAAQ,EAAE,YAAY,EAAE,OAAO,CAAC,EAAA;;wBAAtF,OAAO,GAAG,cAAe,SAA6D,EAAC,CAAC;;;;wBAGpF,cAAc,GAAmB;4BACrC,IAAI,EAAE,MAAM,CAAC,IAAI;4BACjB,oBAAoB,EAAE,cAAI,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI;4BAClD,IAAI,EAAE,QAAQ;4BACd,mBAAmB,EAAE,cAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,QAAQ,CAAC;yBACtD,CAAC;wBACF,OAAO,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;;;wBAdZ,IAAO,CAAA;;4BAkB5B,sBAAO,OAAO,EAAC;;;;KAChB;IAEY,SAAM,GAAnB,UAAoB,OAAe,EAAE,OAAe;;;;;;wBAC5C,OAAO,GAAG,cAAI,CAAC,IAAI,CAAC,cAAI,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,CAAC;wBAC1D,qBAAM,kBAAO,CAAC,MAAM,CAAC,OAAO,EAAE,OAAO,CAAC,EAAA;;wBAAtC,SAAsC,CAAC;;;;;KACxC;IAEY,OAAI,GAAjB,UAAkB,UAAkB,EAAE,eAAuB;;;;4BAC3D,qBAAM,kBAAO,CAAC,IAAI,CAAC,UAAU,EAAE,eAAe,CAAC,EAAA;;wBAA/C,SAA+C,CAAC;;;;;KACjD;IAEY,OAAI,GAAjB,UAAkB,UAAkB,EAAE,eAAuB;;;;4BAC3D,qBAAM,kBAAO,CAAC,IAAI,CAAC,UAAU,EAAE,eAAe,CAAC,EAAA;;wBAA/C,SAA+C,CAAC;;;;;KACjD;IAED;;;;;;;OAOG;IACU,OAAI,GAAjB,UAAkB,MAKjB;;;;;;wBACO,KAA2C,MAAM,IAAI,EAAE,EAArD,OAAO,aAAA,EAAE,GAAG,SAAA,EAAE,UAAU,gBAAA,EAAE,UAAU,gBAAA,CAAkB;wBAC9D,IAAI,CAAC,OAAO,IAAI,OAAO,OAAO,KAAK,QAAQ,EAAE;4BAC3C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;yBAC7D;wBACK,GAAG,GAAG,GAAG,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;wBAE3B,IAAI,GAAa;4BACrB,IAAI;4BACJ,IAAI;4BACJ,IAAI;4BACJ,IAAI;4BACJ,eAAe;4BACf,IAAI;4BACJ,4BAA4B;4BAC5B,oBAAoB;4BACpB,oBAAoB;4BACpB,yBAAyB;4BACzB,uBAAuB;4BACvB,wBAAwB;yBACzB,CAAC;wBAEF,IAAI,OAAO,UAAU,KAAK,QAAQ,IAAI,UAAU,GAAG,CAAC,EAAE;4BACpD,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,CAAC;yBACrC;wBAED,+DAA+D;wBAC/D,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,EAAE,GAAG,CAAC,CAAC;wBAGxB,QAAQ,GAAG,UAAC,CAAS,IAAK,OAAA,WAAI,MAAM,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,MAAG,EAAvC,CAAuC,CAAC;wBAElE,IAAI,GAAG,OAAO,UAAU,KAAK,QAAQ,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC;;;;6BAGzD,CAAA,IAAI,GAAG,CAAC,CAAA,EAAR,wBAAQ;wBAEJ,OAAO,GAAG,eAAC,MAAM,GAAK,IAAI,QAAE,GAAG,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;wBACpD,QAAQ,GAAG,2BAAoB,OAAO,wBAAc,IAAI,CAAE,CAAC;wBACrD,qBAAM,IAAA,SAAG,EAAC,MAAM,EAAE,CAAC,KAAK,EAAE,QAAQ,CAAC,EAAE,EAAE,GAAG,KAAA,EAAE,CAAC,EAAA;;wBAAnD,GAAG,GAAG,SAA6C;wBACzD,sBAAO,GAAG,EAAC,CAAC,6CAA6C;4BAG7C,qBAAM,IAAA,SAAG,EAAC,MAAM,EAAE,IAAI,EAAE,EAAE,GAAG,KAAA,EAAE,CAAC,EAAA;;wBAAtC,GAAG,GAAG,SAAgC;wBAC5C,sBAAO,GAAG,EAAC;;;;wBAIP,IAAI,GAAG,OAAO,CAAA,GAAC,aAAD,GAAC,uBAAD,GAAC,CAAE,IAAI,CAAA,KAAK,QAAQ,CAAC,CAAC,CAAC,GAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;wBACjD,MAAM,GAAG,OAAO,CAAA,GAAC,aAAD,GAAC,uBAAD,GAAC,CAAE,MAAM,CAAA,KAAK,QAAQ,CAAC,CAAC,CAAC,GAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC;wBACvD,MAAM,GAAG,OAAO,CAAA,GAAC,aAAD,GAAC,uBAAD,GAAC,CAAE,MAAM,CAAA,KAAK,QAAQ,CAAC,CAAC,CAAC,GAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,GAAC,CAAC,CAAC;wBACpE,sBAAO,EAAE,IAAI,MAAA,EAAE,MAAM,QAAA,EAAE,MAAM,QAAA,EAAE,EAAC;;;;;KAEnC;IACH,SAAC;AAAD,CAAC,AA/LD,IA+LC;AA/LY,gBAAE"}
@@ -1,14 +1,39 @@
1
+ import type { LogOptions } from './cmd';
2
+ type LogPassThrough = {
3
+ log?: LogOptions;
4
+ };
1
5
  export declare class GitUtil {
2
- static cloneAppTemplatePackages(directory: string): Promise<void>;
3
- static init(directory: string): Promise<void>;
4
- static setRemote(directory: string, remote: string): Promise<void>;
5
- static addRemote(directory: string, remote: string): Promise<void>;
6
- static commit(directory: string, message: string): Promise<void>;
7
- static pull(directory: string): Promise<void>;
8
- static push(directory: string): Promise<void>;
9
- static status(directory: string): Promise<void>;
10
- static addAll(directory: string): Promise<void>;
11
- static sync(directory: string): Promise<void>;
6
+ static cloneAppTemplatePackages(directory: string, opts?: LogPassThrough): Promise<void>;
7
+ static init(directory: string, opts?: LogPassThrough): Promise<void>;
8
+ static setRemote(directory: string, remote: string, opts?: LogPassThrough): Promise<void>;
9
+ static addRemote(directory: string, remote: string, opts?: LogPassThrough): Promise<void>;
10
+ static commit(directory: string, message: string, opts?: LogPassThrough): Promise<void>;
11
+ static pull(directory: string, opts?: LogPassThrough): Promise<void>;
12
+ static push(directory: string, opts?: LogPassThrough): Promise<void>;
13
+ static status(directory: string, opts?: LogPassThrough): Promise<void>;
14
+ static addAll(directory: string, opts?: LogPassThrough): Promise<void>;
15
+ static sync(directory: string, opts?: LogPassThrough): Promise<void>;
16
+ /** Return the current branch name. */
17
+ static currentBranch(directory: string, opts?: LogPassThrough): Promise<string>;
18
+ /** Return the current HEAD SHA. */
19
+ static headSha(directory: string, opts?: LogPassThrough): Promise<string>;
20
+ /** Create and switch to a new branch. */
21
+ static createBranch(directory: string, name: string, opts?: LogPassThrough): Promise<void>;
22
+ /** Checkout an existing branch. */
23
+ static checkout(directory: string, name: string, opts?: LogPassThrough): Promise<void>;
24
+ /** Return a binary-safe patch between two refs (from..to). Defaults to no logging. */
25
+ static diffPatch(directory: string, fromRef: string, toRef: string, opts?: LogPassThrough): Promise<string>;
26
+ /**
27
+ * Apply a patch to the working tree (stdin piped). Defaults to no logging.
28
+ * When `staged` is true, applies to the index only; otherwise as unstaged changes.
29
+ * When `reverse` is true, applies the patch in reverse.
30
+ */
31
+ static applyPatch(directory: string, patch: string, opts?: {
32
+ staged?: boolean;
33
+ reverse?: boolean;
34
+ log?: LogOptions;
35
+ }): Promise<void>;
36
+ static hasStagedChanges(directory: string, opts?: LogPassThrough): Promise<boolean>;
12
37
  }
13
38
  export declare const cloneAppTemplatePackagesFunctionName = "cloneAppTemplatePackages";
14
39
  export declare const cloneAppTemplatePackagesFunction: {
@@ -225,6 +250,163 @@ export declare const syncFunction: {
225
250
  directory: string;
226
251
  }) => Promise<void>;
227
252
  };
253
+ export declare const currentBranchFunctionName = "gitCurrentBranch";
254
+ export declare const currentBranchFunction: {
255
+ definition: {
256
+ name: string;
257
+ description: string;
258
+ parameters: {
259
+ type: string;
260
+ properties: {
261
+ directory: {
262
+ type: string;
263
+ description: string;
264
+ };
265
+ };
266
+ required: string[];
267
+ };
268
+ };
269
+ call: (params: {
270
+ directory: string;
271
+ }) => Promise<string>;
272
+ };
273
+ export declare const headShaFunctionName = "gitHeadSha";
274
+ export declare const headShaFunction: {
275
+ definition: {
276
+ name: string;
277
+ description: string;
278
+ parameters: {
279
+ type: string;
280
+ properties: {
281
+ directory: {
282
+ type: string;
283
+ description: string;
284
+ };
285
+ };
286
+ required: string[];
287
+ };
288
+ };
289
+ call: (params: {
290
+ directory: string;
291
+ }) => Promise<string>;
292
+ };
293
+ export declare const createBranchFunctionName = "gitCreateBranch";
294
+ export declare const createBranchFunction: {
295
+ definition: {
296
+ name: string;
297
+ description: string;
298
+ parameters: {
299
+ type: string;
300
+ properties: {
301
+ directory: {
302
+ type: string;
303
+ description: string;
304
+ };
305
+ name: {
306
+ type: string;
307
+ description: string;
308
+ };
309
+ };
310
+ required: string[];
311
+ };
312
+ };
313
+ call: (params: {
314
+ directory: string;
315
+ name: string;
316
+ }) => Promise<void>;
317
+ };
318
+ export declare const checkoutFunctionName = "gitCheckout";
319
+ export declare const checkoutFunction: {
320
+ definition: {
321
+ name: string;
322
+ description: string;
323
+ parameters: {
324
+ type: string;
325
+ properties: {
326
+ directory: {
327
+ type: string;
328
+ description: string;
329
+ };
330
+ name: {
331
+ type: string;
332
+ description: string;
333
+ };
334
+ };
335
+ required: string[];
336
+ };
337
+ };
338
+ call: (params: {
339
+ directory: string;
340
+ name: string;
341
+ }) => Promise<void>;
342
+ };
343
+ export declare const diffPatchFunctionName = "gitDiffPatch";
344
+ export declare const diffPatchFunction: {
345
+ definition: {
346
+ name: string;
347
+ description: string;
348
+ parameters: {
349
+ type: string;
350
+ properties: {
351
+ directory: {
352
+ type: string;
353
+ description: string;
354
+ };
355
+ from: {
356
+ type: string;
357
+ description: string;
358
+ };
359
+ to: {
360
+ type: string;
361
+ description: string;
362
+ };
363
+ };
364
+ required: string[];
365
+ };
366
+ };
367
+ call: (params: {
368
+ directory: string;
369
+ from: string;
370
+ to: string;
371
+ }) => Promise<string>;
372
+ };
373
+ export declare const applyPatchFunctionName = "gitApplyPatch";
374
+ export declare const applyPatchFunction: {
375
+ definition: {
376
+ name: string;
377
+ description: string;
378
+ parameters: {
379
+ type: string;
380
+ properties: {
381
+ directory: {
382
+ type: string;
383
+ description: string;
384
+ };
385
+ patch: {
386
+ type: string;
387
+ description: string;
388
+ };
389
+ reverse: {
390
+ type: string;
391
+ description: string;
392
+ default: boolean;
393
+ };
394
+ staged: {
395
+ type: string;
396
+ description: string;
397
+ default: boolean;
398
+ };
399
+ };
400
+ required: string[];
401
+ };
402
+ };
403
+ call: (params: {
404
+ directory: string;
405
+ patch: string;
406
+ reverse?: boolean;
407
+ staged?: boolean;
408
+ }) => Promise<void>;
409
+ };
228
410
  export declare const gitFunctions: ({
229
411
  definition: {
230
412
  name: string;
@@ -289,4 +471,109 @@ export declare const gitFunctions: ({
289
471
  directory: string;
290
472
  message: string;
291
473
  }) => Promise<void>;
474
+ } | {
475
+ definition: {
476
+ name: string;
477
+ description: string;
478
+ parameters: {
479
+ type: string;
480
+ properties: {
481
+ directory: {
482
+ type: string;
483
+ description: string;
484
+ };
485
+ };
486
+ required: string[];
487
+ };
488
+ };
489
+ call: (params: {
490
+ directory: string;
491
+ }) => Promise<string>;
492
+ } | {
493
+ definition: {
494
+ name: string;
495
+ description: string;
496
+ parameters: {
497
+ type: string;
498
+ properties: {
499
+ directory: {
500
+ type: string;
501
+ description: string;
502
+ };
503
+ name: {
504
+ type: string;
505
+ description: string;
506
+ };
507
+ };
508
+ required: string[];
509
+ };
510
+ };
511
+ call: (params: {
512
+ directory: string;
513
+ name: string;
514
+ }) => Promise<void>;
515
+ } | {
516
+ definition: {
517
+ name: string;
518
+ description: string;
519
+ parameters: {
520
+ type: string;
521
+ properties: {
522
+ directory: {
523
+ type: string;
524
+ description: string;
525
+ };
526
+ from: {
527
+ type: string;
528
+ description: string;
529
+ };
530
+ to: {
531
+ type: string;
532
+ description: string;
533
+ };
534
+ };
535
+ required: string[];
536
+ };
537
+ };
538
+ call: (params: {
539
+ directory: string;
540
+ from: string;
541
+ to: string;
542
+ }) => Promise<string>;
543
+ } | {
544
+ definition: {
545
+ name: string;
546
+ description: string;
547
+ parameters: {
548
+ type: string;
549
+ properties: {
550
+ directory: {
551
+ type: string;
552
+ description: string;
553
+ };
554
+ patch: {
555
+ type: string;
556
+ description: string;
557
+ };
558
+ reverse: {
559
+ type: string;
560
+ description: string;
561
+ default: boolean;
562
+ };
563
+ staged: {
564
+ type: string;
565
+ description: string;
566
+ default: boolean;
567
+ };
568
+ };
569
+ required: string[];
570
+ };
571
+ };
572
+ call: (params: {
573
+ directory: string;
574
+ patch: string;
575
+ reverse?: boolean;
576
+ staged?: boolean;
577
+ }) => Promise<void>;
292
578
  })[];
579
+ export {};