windmill-cli 1.518.1 → 1.518.3

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 (849) hide show
  1. package/esm/deps/jsr.io/@std/fs/1.0.16/_create_walk_entry.js +34 -0
  2. package/esm/deps/jsr.io/@std/fs/1.0.16/_is_same_path.js +17 -0
  3. package/esm/deps/jsr.io/@std/fs/1.0.16/_is_subdir.js +25 -0
  4. package/esm/deps/jsr.io/@std/fs/1.0.16/_to_path_string.js +13 -0
  5. package/esm/deps/jsr.io/@std/fs/1.0.16/copy.js +314 -0
  6. package/esm/deps/jsr.io/@std/fs/1.0.16/empty_dir.js +87 -0
  7. package/esm/deps/jsr.io/@std/fs/1.0.16/ensure_file.js +90 -0
  8. package/esm/deps/jsr.io/@std/fs/1.0.16/ensure_link.js +61 -0
  9. package/esm/deps/jsr.io/@std/fs/1.0.16/ensure_symlink.js +157 -0
  10. package/esm/deps/jsr.io/@std/fs/1.0.16/expand_glob.js +416 -0
  11. package/esm/deps/jsr.io/@std/fs/1.0.16/walk.js +846 -0
  12. package/esm/deps/jsr.io/@std/io/0.225.2/read_all.js +1 -1
  13. package/esm/deps/jsr.io/@std/log/0.224.14/console_handler.js +1 -1
  14. package/esm/deps/jsr.io/@std/log/0.224.14/rotating_file_handler.js +1 -1
  15. package/esm/deps/jsr.io/@std/path/1.0.8/_common/assert_path.js +7 -0
  16. package/esm/deps/jsr.io/@std/path/1.0.8/_common/basename.js +40 -0
  17. package/esm/deps/jsr.io/@std/path/1.0.8/_common/common.js +23 -0
  18. package/esm/deps/jsr.io/@std/path/1.0.8/_common/constants.js +46 -0
  19. package/esm/deps/jsr.io/@std/path/1.0.8/_common/dirname.js +8 -0
  20. package/esm/deps/jsr.io/@std/path/1.0.8/_common/format.js +19 -0
  21. package/esm/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.js +9 -0
  22. package/esm/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.js +234 -0
  23. package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize.js +8 -0
  24. package/esm/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.js +77 -0
  25. package/esm/deps/jsr.io/@std/path/1.0.8/_common/relative.js +9 -0
  26. package/esm/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.js +19 -0
  27. package/esm/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.js +15 -0
  28. package/esm/deps/jsr.io/@std/path/1.0.8/_os.js +9 -0
  29. package/esm/deps/jsr.io/@std/path/1.0.8/basename.js +36 -0
  30. package/esm/deps/jsr.io/@std/path/1.0.8/common.js +33 -0
  31. package/esm/deps/jsr.io/@std/path/1.0.8/constants.js +17 -0
  32. package/esm/deps/jsr.io/@std/path/1.0.8/dirname.js +29 -0
  33. package/esm/deps/jsr.io/@std/path/1.0.8/extname.js +29 -0
  34. package/esm/deps/jsr.io/@std/path/1.0.8/format.js +27 -0
  35. package/esm/deps/jsr.io/@std/path/1.0.8/from_file_url.js +28 -0
  36. package/esm/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.js +83 -0
  37. package/esm/deps/jsr.io/@std/path/1.0.8/is_absolute.js +28 -0
  38. package/esm/deps/jsr.io/@std/path/1.0.8/is_glob.js +42 -0
  39. package/esm/deps/jsr.io/@std/path/1.0.8/join.js +29 -0
  40. package/esm/deps/jsr.io/@std/path/1.0.8/join_globs.js +34 -0
  41. package/esm/deps/jsr.io/@std/path/1.0.8/mod.js +57 -0
  42. package/esm/deps/jsr.io/@std/path/1.0.8/normalize.js +33 -0
  43. package/esm/deps/jsr.io/@std/path/1.0.8/normalize_glob.js +35 -0
  44. package/esm/deps/jsr.io/@std/path/1.0.8/parse.js +39 -0
  45. package/esm/deps/jsr.io/@std/path/1.0.8/posix/_util.js +8 -0
  46. package/esm/deps/jsr.io/@std/path/1.0.8/posix/basename.js +49 -0
  47. package/esm/deps/jsr.io/@std/path/1.0.8/posix/constants.js +14 -0
  48. package/esm/deps/jsr.io/@std/path/1.0.8/posix/dirname.js +62 -0
  49. package/esm/deps/jsr.io/@std/path/1.0.8/posix/extname.js +89 -0
  50. package/esm/deps/jsr.io/@std/path/1.0.8/posix/format.js +28 -0
  51. package/esm/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.js +21 -0
  52. package/esm/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.js +82 -0
  53. package/esm/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.js +23 -0
  54. package/esm/deps/jsr.io/@std/path/1.0.8/posix/join.js +42 -0
  55. package/esm/deps/jsr.io/@std/path/1.0.8/posix/join_globs.js +40 -0
  56. package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize.js +57 -0
  57. package/esm/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.js +32 -0
  58. package/esm/deps/jsr.io/@std/path/1.0.8/posix/parse.js +115 -0
  59. package/esm/deps/jsr.io/@std/path/1.0.8/posix/relative.js +106 -0
  60. package/esm/deps/jsr.io/@std/path/1.0.8/posix/resolve.js +59 -0
  61. package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.js +27 -0
  62. package/esm/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.js +20 -0
  63. package/esm/deps/jsr.io/@std/path/1.0.8/relative.js +30 -0
  64. package/esm/deps/jsr.io/@std/path/1.0.8/resolve.js +30 -0
  65. package/esm/deps/jsr.io/@std/path/1.0.8/to_file_url.js +28 -0
  66. package/esm/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.js +29 -0
  67. package/esm/deps/jsr.io/@std/path/1.0.8/types.js +3 -0
  68. package/esm/deps/jsr.io/@std/path/1.0.8/windows/_util.js +15 -0
  69. package/esm/deps/jsr.io/@std/path/1.0.8/windows/basename.js +44 -0
  70. package/esm/deps/jsr.io/@std/path/1.0.8/windows/constants.js +14 -0
  71. package/esm/deps/jsr.io/@std/path/1.0.8/windows/dirname.js +112 -0
  72. package/esm/deps/jsr.io/@std/path/1.0.8/windows/extname.js +81 -0
  73. package/esm/deps/jsr.io/@std/path/1.0.8/windows/format.js +28 -0
  74. package/esm/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.js +30 -0
  75. package/esm/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.js +82 -0
  76. package/esm/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.js +38 -0
  77. package/esm/deps/jsr.io/@std/path/1.0.8/windows/join.js +74 -0
  78. package/esm/deps/jsr.io/@std/path/1.0.8/windows/join_globs.js +41 -0
  79. package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize.js +134 -0
  80. package/esm/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.js +32 -0
  81. package/esm/deps/jsr.io/@std/path/1.0.8/windows/parse.js +176 -0
  82. package/esm/deps/jsr.io/@std/path/1.0.8/windows/relative.js +131 -0
  83. package/esm/deps/jsr.io/@std/path/1.0.8/windows/resolve.js +154 -0
  84. package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.js +34 -0
  85. package/esm/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.js +49 -0
  86. package/esm/deps/jsr.io/@std/yaml/1.0.5/_chars.js +48 -0
  87. package/esm/deps/jsr.io/@std/yaml/1.0.5/_dumper_state.js +707 -0
  88. package/esm/deps/jsr.io/@std/yaml/1.0.5/_loader_state.js +1409 -0
  89. package/esm/deps/jsr.io/@std/yaml/1.0.5/_schema.js +112 -0
  90. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/bool.js +32 -0
  91. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/float.js +96 -0
  92. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/int.js +159 -0
  93. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/map.js +14 -0
  94. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/merge.js +10 -0
  95. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/nil.js +22 -0
  96. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/omap.js +29 -0
  97. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/pairs.js +19 -0
  98. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/regexp.js +30 -0
  99. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/seq.js +10 -0
  100. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/set.js +14 -0
  101. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/str.js +9 -0
  102. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/timestamp.js +81 -0
  103. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type/undefined.js +20 -0
  104. package/esm/deps/jsr.io/@std/yaml/1.0.5/_type.js +6 -0
  105. package/esm/deps/jsr.io/@std/yaml/1.0.5/_utils.js +13 -0
  106. package/esm/deps/jsr.io/@std/yaml/1.0.5/mod.js +52 -0
  107. package/esm/deps/jsr.io/@std/yaml/1.0.5/parse.js +93 -0
  108. package/esm/deps/jsr.io/@std/yaml/1.0.5/stringify.js +33 -0
  109. package/esm/deps.js +5 -5
  110. package/esm/gen/core/OpenAPI.js +1 -1
  111. package/esm/gen/services.gen.js +66 -0
  112. package/esm/src/commands/app/apps.js +124 -0
  113. package/esm/src/commands/dev/dev.js +145 -0
  114. package/esm/src/commands/flow/flow.js +236 -0
  115. package/esm/src/commands/folder/folder.js +101 -0
  116. package/esm/src/commands/gitsync-settings/converter.js +134 -0
  117. package/esm/src/commands/gitsync-settings/gitsync-settings.js +2 -0
  118. package/esm/src/commands/gitsync-settings/index.js +28 -0
  119. package/esm/src/commands/gitsync-settings/legacySettings.js +119 -0
  120. package/esm/src/commands/gitsync-settings/pull.js +372 -0
  121. package/esm/src/commands/gitsync-settings/push.js +263 -0
  122. package/esm/src/commands/gitsync-settings/types.js +37 -0
  123. package/esm/src/commands/gitsync-settings/utils.js +129 -0
  124. package/esm/src/commands/hub/hub.js +65 -0
  125. package/esm/src/commands/init/init.js +214 -0
  126. package/esm/src/commands/instance/instance.js +569 -0
  127. package/esm/src/commands/queues/queues.js +117 -0
  128. package/esm/src/commands/resource/resource.js +93 -0
  129. package/esm/src/commands/resource-type/resource-type.js +85 -0
  130. package/esm/src/commands/schedule/schedule.js +101 -0
  131. package/esm/src/commands/script/script.js +753 -0
  132. package/esm/src/commands/sync/pull.js +37 -0
  133. package/esm/src/commands/sync/sync.js +1563 -0
  134. package/esm/src/commands/trigger/trigger.js +182 -0
  135. package/esm/src/commands/user/user.js +428 -0
  136. package/esm/src/commands/variable/variable.js +121 -0
  137. package/esm/src/commands/worker-groups/worker_groups.js +96 -0
  138. package/esm/src/commands/workers/workers.js +79 -0
  139. package/esm/src/commands/workspace/workspace.js +348 -0
  140. package/esm/src/core/auth.js +40 -0
  141. package/esm/src/core/branch-profiles.js +46 -0
  142. package/esm/src/core/conf.js +162 -0
  143. package/esm/src/core/context.js +263 -0
  144. package/esm/src/core/login.js +100 -0
  145. package/esm/src/core/settings.js +432 -0
  146. package/esm/src/core/store.js +19 -0
  147. package/esm/src/main.js +174 -0
  148. package/esm/src/types.js +223 -0
  149. package/esm/src/utils/codebase.js +24 -0
  150. package/esm/src/utils/git.js +29 -0
  151. package/esm/src/utils/metadata.js +623 -0
  152. package/esm/src/utils/upgrade.js +48 -0
  153. package/esm/src/utils/utils.js +176 -0
  154. package/esm/windmill-utils-internal/src/config/config.js +190 -0
  155. package/esm/windmill-utils-internal/src/inline-scripts/extractor.js +13 -9
  156. package/esm/windmill-utils-internal/src/path-utils/path-assigner.js +25 -9
  157. package/package.json +6 -6
  158. package/types/deps/jsr.io/@std/bytes/1.0.5/_types.d.ts.map +1 -0
  159. package/types/deps/jsr.io/@std/bytes/1.0.5/concat.d.ts +21 -0
  160. package/types/deps/jsr.io/@std/bytes/1.0.5/concat.d.ts.map +1 -0
  161. package/types/deps/jsr.io/@std/fmt/1.0.6/colors.d.ts.map +1 -0
  162. package/types/deps/jsr.io/@std/fs/1.0.16/_create_walk_entry.d.ts.map +1 -0
  163. package/types/deps/jsr.io/@std/fs/1.0.16/_get_file_info_type.d.ts.map +1 -0
  164. package/types/deps/jsr.io/@std/fs/1.0.16/_is_same_path.d.ts.map +1 -0
  165. package/types/deps/jsr.io/@std/fs/1.0.16/_is_subdir.d.ts.map +1 -0
  166. package/types/deps/jsr.io/@std/fs/1.0.16/_to_path_string.d.ts.map +1 -0
  167. package/types/deps/jsr.io/@std/fs/1.0.16/copy.d.ts.map +1 -0
  168. package/types/deps/jsr.io/@std/fs/1.0.16/empty_dir.d.ts.map +1 -0
  169. package/types/deps/jsr.io/@std/fs/1.0.16/ensure_dir.d.ts.map +1 -0
  170. package/types/deps/jsr.io/@std/fs/1.0.16/ensure_file.d.ts.map +1 -0
  171. package/types/deps/jsr.io/@std/fs/1.0.16/ensure_link.d.ts.map +1 -0
  172. package/types/deps/jsr.io/@std/fs/1.0.16/ensure_symlink.d.ts.map +1 -0
  173. package/types/deps/jsr.io/@std/fs/1.0.16/eol.d.ts.map +1 -0
  174. package/types/deps/jsr.io/@std/fs/1.0.16/exists.d.ts.map +1 -0
  175. package/types/deps/jsr.io/@std/fs/1.0.16/expand_glob.d.ts +267 -0
  176. package/types/deps/jsr.io/@std/fs/1.0.16/expand_glob.d.ts.map +1 -0
  177. package/types/deps/jsr.io/@std/fs/1.0.16/mod.d.ts.map +1 -0
  178. package/types/deps/jsr.io/@std/fs/1.0.16/move.d.ts.map +1 -0
  179. package/types/deps/jsr.io/@std/fs/1.0.16/walk.d.ts.map +1 -0
  180. package/types/deps/jsr.io/@std/path/1.0.8/_common/assert_path.d.ts.map +1 -0
  181. package/types/deps/jsr.io/@std/path/1.0.8/_common/basename.d.ts.map +1 -0
  182. package/types/deps/jsr.io/@std/path/1.0.8/_common/common.d.ts.map +1 -0
  183. package/types/deps/jsr.io/@std/path/1.0.8/_common/constants.d.ts.map +1 -0
  184. package/types/deps/jsr.io/@std/path/1.0.8/_common/dirname.d.ts.map +1 -0
  185. package/types/deps/jsr.io/@std/path/1.0.8/_common/format.d.ts.map +1 -0
  186. package/types/deps/jsr.io/@std/path/1.0.8/_common/from_file_url.d.ts.map +1 -0
  187. package/types/deps/jsr.io/@std/path/1.0.8/_common/glob_to_reg_exp.d.ts.map +1 -0
  188. package/types/deps/jsr.io/@std/path/1.0.8/_common/normalize.d.ts.map +1 -0
  189. package/types/deps/jsr.io/@std/path/1.0.8/_common/normalize_string.d.ts.map +1 -0
  190. package/types/deps/jsr.io/@std/path/1.0.8/_common/relative.d.ts.map +1 -0
  191. package/types/deps/jsr.io/@std/path/1.0.8/_common/strip_trailing_separators.d.ts.map +1 -0
  192. package/types/deps/jsr.io/@std/path/1.0.8/_common/to_file_url.d.ts.map +1 -0
  193. package/types/deps/jsr.io/@std/path/1.0.8/_os.d.ts +2 -0
  194. package/types/deps/jsr.io/@std/path/1.0.8/_os.d.ts.map +1 -0
  195. package/types/deps/jsr.io/@std/path/1.0.8/basename.d.ts +28 -0
  196. package/types/deps/jsr.io/@std/path/1.0.8/basename.d.ts.map +1 -0
  197. package/types/deps/jsr.io/@std/path/1.0.8/common.d.ts.map +1 -0
  198. package/types/deps/jsr.io/@std/path/1.0.8/constants.d.ts.map +1 -0
  199. package/types/deps/jsr.io/@std/path/1.0.8/dirname.d.ts +23 -0
  200. package/types/deps/jsr.io/@std/path/1.0.8/dirname.d.ts.map +1 -0
  201. package/types/deps/jsr.io/@std/path/1.0.8/extname.d.ts +23 -0
  202. package/types/deps/jsr.io/@std/path/1.0.8/extname.d.ts.map +1 -0
  203. package/types/deps/jsr.io/@std/path/1.0.8/format.d.ts.map +1 -0
  204. package/types/deps/jsr.io/@std/path/1.0.8/from_file_url.d.ts.map +1 -0
  205. package/types/deps/jsr.io/@std/path/1.0.8/glob_to_regexp.d.ts.map +1 -0
  206. package/types/deps/jsr.io/@std/path/1.0.8/is_absolute.d.ts.map +1 -0
  207. package/types/deps/jsr.io/@std/path/1.0.8/is_glob.d.ts.map +1 -0
  208. package/types/deps/jsr.io/@std/path/1.0.8/join.d.ts +23 -0
  209. package/types/deps/jsr.io/@std/path/1.0.8/join.d.ts.map +1 -0
  210. package/types/deps/jsr.io/@std/path/1.0.8/join_globs.d.ts.map +1 -0
  211. package/types/deps/jsr.io/@std/path/1.0.8/mod.d.ts +54 -0
  212. package/types/deps/jsr.io/@std/path/1.0.8/mod.d.ts.map +1 -0
  213. package/types/deps/jsr.io/@std/path/1.0.8/normalize.d.ts +27 -0
  214. package/types/deps/jsr.io/@std/path/1.0.8/normalize.d.ts.map +1 -0
  215. package/types/deps/jsr.io/@std/path/1.0.8/normalize_glob.d.ts.map +1 -0
  216. package/types/deps/jsr.io/@std/path/1.0.8/parse.d.ts.map +1 -0
  217. package/types/deps/jsr.io/@std/path/1.0.8/posix/_util.d.ts.map +1 -0
  218. package/types/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts +40 -0
  219. package/types/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts.map +1 -0
  220. package/types/deps/jsr.io/@std/path/1.0.8/posix/constants.d.ts.map +1 -0
  221. package/types/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts +32 -0
  222. package/types/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts.map +1 -0
  223. package/types/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts +37 -0
  224. package/types/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts.map +1 -0
  225. package/types/deps/jsr.io/@std/path/1.0.8/posix/format.d.ts.map +1 -0
  226. package/types/deps/jsr.io/@std/path/1.0.8/posix/from_file_url.d.ts.map +1 -0
  227. package/types/deps/jsr.io/@std/path/1.0.8/posix/glob_to_regexp.d.ts.map +1 -0
  228. package/types/deps/jsr.io/@std/path/1.0.8/posix/is_absolute.d.ts.map +1 -0
  229. package/types/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts +33 -0
  230. package/types/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts.map +1 -0
  231. package/types/deps/jsr.io/@std/path/1.0.8/posix/join_globs.d.ts.map +1 -0
  232. package/types/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts +40 -0
  233. package/types/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts.map +1 -0
  234. package/types/deps/jsr.io/@std/path/1.0.8/posix/normalize_glob.d.ts.map +1 -0
  235. package/types/deps/jsr.io/@std/path/1.0.8/posix/parse.d.ts.map +1 -0
  236. package/types/deps/jsr.io/@std/path/1.0.8/posix/relative.d.ts.map +1 -0
  237. package/types/deps/jsr.io/@std/path/1.0.8/posix/resolve.d.ts.map +1 -0
  238. package/types/deps/jsr.io/@std/path/1.0.8/posix/to_file_url.d.ts.map +1 -0
  239. package/types/deps/jsr.io/@std/path/1.0.8/posix/to_namespaced_path.d.ts.map +1 -0
  240. package/types/deps/jsr.io/@std/path/1.0.8/relative.d.ts.map +1 -0
  241. package/types/deps/jsr.io/@std/path/1.0.8/resolve.d.ts.map +1 -0
  242. package/types/deps/jsr.io/@std/path/1.0.8/to_file_url.d.ts.map +1 -0
  243. package/types/deps/jsr.io/@std/path/1.0.8/to_namespaced_path.d.ts.map +1 -0
  244. package/types/deps/jsr.io/@std/path/1.0.8/types.d.ts.map +1 -0
  245. package/types/deps/jsr.io/@std/path/1.0.8/windows/_util.d.ts.map +1 -0
  246. package/types/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts +23 -0
  247. package/types/deps/jsr.io/@std/path/1.0.8/windows/basename.d.ts.map +1 -0
  248. package/types/deps/jsr.io/@std/path/1.0.8/windows/constants.d.ts.map +1 -0
  249. package/types/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts +20 -0
  250. package/types/deps/jsr.io/@std/path/1.0.8/windows/dirname.d.ts.map +1 -0
  251. package/types/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts +20 -0
  252. package/types/deps/jsr.io/@std/path/1.0.8/windows/extname.d.ts.map +1 -0
  253. package/types/deps/jsr.io/@std/path/1.0.8/windows/format.d.ts.map +1 -0
  254. package/types/deps/jsr.io/@std/path/1.0.8/windows/from_file_url.d.ts.map +1 -0
  255. package/types/deps/jsr.io/@std/path/1.0.8/windows/glob_to_regexp.d.ts.map +1 -0
  256. package/types/deps/jsr.io/@std/path/1.0.8/windows/is_absolute.d.ts.map +1 -0
  257. package/types/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts +20 -0
  258. package/types/deps/jsr.io/@std/path/1.0.8/windows/join.d.ts.map +1 -0
  259. package/types/deps/jsr.io/@std/path/1.0.8/windows/join_globs.d.ts.map +1 -0
  260. package/types/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts +22 -0
  261. package/types/deps/jsr.io/@std/path/1.0.8/windows/normalize.d.ts.map +1 -0
  262. package/types/deps/jsr.io/@std/path/1.0.8/windows/normalize_glob.d.ts.map +1 -0
  263. package/types/deps/jsr.io/@std/path/1.0.8/windows/parse.d.ts.map +1 -0
  264. package/types/deps/jsr.io/@std/path/1.0.8/windows/relative.d.ts.map +1 -0
  265. package/types/deps/jsr.io/@std/path/1.0.8/windows/resolve.d.ts.map +1 -0
  266. package/types/deps/jsr.io/@std/path/1.0.8/windows/to_file_url.d.ts.map +1 -0
  267. package/types/deps/jsr.io/@std/path/1.0.8/windows/to_namespaced_path.d.ts.map +1 -0
  268. package/types/deps/jsr.io/@std/yaml/1.0.5/_chars.d.ts.map +1 -0
  269. package/types/deps/jsr.io/@std/yaml/1.0.5/_dumper_state.d.ts +99 -0
  270. package/types/deps/jsr.io/@std/yaml/1.0.5/_dumper_state.d.ts.map +1 -0
  271. package/types/deps/jsr.io/@std/yaml/1.0.5/_loader_state.d.ts +60 -0
  272. package/types/deps/jsr.io/@std/yaml/1.0.5/_loader_state.d.ts.map +1 -0
  273. package/types/deps/jsr.io/@std/yaml/1.0.5/_schema.d.ts.map +1 -0
  274. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/binary.d.ts.map +1 -0
  275. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/bool.d.ts.map +1 -0
  276. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/float.d.ts.map +1 -0
  277. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/int.d.ts.map +1 -0
  278. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/map.d.ts.map +1 -0
  279. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/merge.d.ts.map +1 -0
  280. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/nil.d.ts.map +1 -0
  281. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/omap.d.ts.map +1 -0
  282. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/pairs.d.ts.map +1 -0
  283. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/regexp.d.ts.map +1 -0
  284. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/seq.d.ts.map +1 -0
  285. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/set.d.ts.map +1 -0
  286. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/str.d.ts.map +1 -0
  287. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/timestamp.d.ts.map +1 -0
  288. package/types/deps/jsr.io/@std/yaml/1.0.5/_type/undefined.d.ts.map +1 -0
  289. package/types/deps/jsr.io/@std/yaml/1.0.5/_type.d.ts.map +1 -0
  290. package/types/deps/jsr.io/@std/yaml/1.0.5/_utils.d.ts.map +1 -0
  291. package/types/deps/jsr.io/@std/yaml/1.0.5/mod.d.ts.map +1 -0
  292. package/types/deps/jsr.io/@std/yaml/1.0.5/parse.d.ts.map +1 -0
  293. package/types/deps/jsr.io/@std/yaml/1.0.5/stringify.d.ts.map +1 -0
  294. package/types/deps.d.ts +5 -5
  295. package/types/gen/services.gen.d.ts +34 -1
  296. package/types/gen/services.gen.d.ts.map +1 -1
  297. package/types/gen/types.gen.d.ts +43 -3
  298. package/types/gen/types.gen.d.ts.map +1 -1
  299. package/types/src/commands/app/apps.d.ts +17 -0
  300. package/types/src/commands/app/apps.d.ts.map +1 -0
  301. package/types/src/commands/dev/dev.d.ts +12 -0
  302. package/types/src/commands/dev/dev.d.ts.map +1 -0
  303. package/types/src/commands/flow/flow.d.ts +28 -0
  304. package/types/src/commands/flow/flow.d.ts.map +1 -0
  305. package/types/src/commands/folder/folder.d.ts +19 -0
  306. package/types/src/commands/folder/folder.d.ts.map +1 -0
  307. package/types/src/commands/gitsync-settings/converter.d.ts +10 -0
  308. package/types/src/commands/gitsync-settings/converter.d.ts.map +1 -0
  309. package/types/src/commands/gitsync-settings/gitsync-settings.d.ts +3 -0
  310. package/types/src/commands/gitsync-settings/gitsync-settings.d.ts.map +1 -0
  311. package/types/src/commands/gitsync-settings/index.d.ts +25 -0
  312. package/types/src/commands/gitsync-settings/index.d.ts.map +1 -0
  313. package/types/src/commands/gitsync-settings/legacySettings.d.ts +4 -0
  314. package/types/src/commands/gitsync-settings/legacySettings.d.ts.map +1 -0
  315. package/types/src/commands/gitsync-settings/pull.d.ts +14 -0
  316. package/types/src/commands/gitsync-settings/pull.d.ts.map +1 -0
  317. package/types/src/commands/gitsync-settings/push.d.ts +10 -0
  318. package/types/src/commands/gitsync-settings/push.d.ts.map +1 -0
  319. package/types/src/commands/gitsync-settings/types.d.ts +35 -0
  320. package/types/src/commands/gitsync-settings/types.d.ts.map +1 -0
  321. package/types/src/commands/gitsync-settings/utils.d.ts +36 -0
  322. package/types/src/commands/gitsync-settings/utils.d.ts.map +1 -0
  323. package/types/src/commands/hub/hub.d.ts +12 -0
  324. package/types/src/commands/hub/hub.d.ts.map +1 -0
  325. package/types/src/commands/init/init.d.ts +34 -0
  326. package/types/src/commands/init/init.d.ts.map +1 -0
  327. package/types/src/commands/instance/instance.d.ts +46 -0
  328. package/types/src/commands/instance/instance.d.ts.map +1 -0
  329. package/types/src/commands/queues/queues.d.ts +14 -0
  330. package/types/src/commands/queues/queues.d.ts.map +1 -0
  331. package/types/src/commands/resource/resource.d.ts +18 -0
  332. package/types/src/commands/resource/resource.d.ts.map +1 -0
  333. package/types/src/commands/resource-type/resource-type.d.ts +16 -0
  334. package/types/src/commands/resource-type/resource-type.d.ts.map +1 -0
  335. package/types/src/commands/schedule/schedule.d.ts +21 -0
  336. package/types/src/commands/schedule/schedule.d.ts.map +1 -0
  337. package/types/src/commands/script/script.d.ts +51 -0
  338. package/types/src/commands/script/script.d.ts.map +1 -0
  339. package/types/src/commands/sync/pull.d.ts +12 -0
  340. package/types/src/commands/sync/pull.d.ts.map +1 -0
  341. package/types/src/commands/sync/sync.d.ts +128 -0
  342. package/types/src/commands/sync/sync.d.ts.map +1 -0
  343. package/types/src/commands/trigger/trigger.d.ts +24 -0
  344. package/types/src/commands/trigger/trigger.d.ts.map +1 -0
  345. package/types/src/commands/user/user.d.ts +34 -0
  346. package/types/src/commands/user/user.d.ts.map +1 -0
  347. package/types/src/commands/variable/variable.d.ts +23 -0
  348. package/types/src/commands/variable/variable.d.ts.map +1 -0
  349. package/types/src/commands/worker-groups/worker_groups.d.ts +23 -0
  350. package/types/src/commands/worker-groups/worker_groups.d.ts.map +1 -0
  351. package/types/src/commands/workers/workers.d.ts +14 -0
  352. package/types/src/commands/workers/workers.d.ts.map +1 -0
  353. package/types/src/commands/workspace/workspace.d.ts +30 -0
  354. package/types/src/commands/workspace/workspace.d.ts.map +1 -0
  355. package/types/src/core/auth.d.ts +8 -0
  356. package/types/src/core/auth.d.ts.map +1 -0
  357. package/types/src/core/branch-profiles.d.ts +12 -0
  358. package/types/src/core/branch-profiles.d.ts.map +1 -0
  359. package/types/src/core/conf.d.ts +64 -0
  360. package/types/src/core/conf.d.ts.map +1 -0
  361. package/types/src/core/context.d.ts +13 -0
  362. package/types/src/core/context.d.ts.map +1 -0
  363. package/types/src/core/login.d.ts +5 -0
  364. package/types/src/core/login.d.ts.map +1 -0
  365. package/types/src/core/settings.d.ts +30 -0
  366. package/types/src/core/settings.d.ts.map +1 -0
  367. package/types/src/core/store.d.ts +2 -0
  368. package/types/src/core/store.d.ts.map +1 -0
  369. package/types/src/guidance/flow_guidance.d.ts.map +1 -0
  370. package/types/src/guidance/script_guidance.d.ts.map +1 -0
  371. package/types/src/main.d.ts +74 -0
  372. package/types/src/main.d.ts.map +1 -0
  373. package/types/src/types.d.ts.map +1 -0
  374. package/types/src/utils/codebase.d.ts +6 -0
  375. package/types/src/utils/codebase.d.ts.map +1 -0
  376. package/types/src/utils/git.d.ts +3 -0
  377. package/types/src/utils/git.d.ts.map +1 -0
  378. package/types/src/utils/local_encryption.d.ts.map +1 -0
  379. package/types/src/utils/metadata.d.ts +52 -0
  380. package/types/src/utils/metadata.d.ts.map +1 -0
  381. package/types/src/utils/script_common.d.ts.map +1 -0
  382. package/types/src/utils/upgrade.d.ts +21 -0
  383. package/types/src/utils/upgrade.d.ts.map +1 -0
  384. package/types/src/utils/utils.d.ts +20 -0
  385. package/types/src/utils/utils.d.ts.map +1 -0
  386. package/types/windmill-utils-internal/src/config/config.d.ts +12 -0
  387. package/types/windmill-utils-internal/src/config/config.d.ts.map +1 -0
  388. package/types/windmill-utils-internal/src/gen/types.gen.d.ts +43 -3
  389. package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
  390. package/types/windmill-utils-internal/src/inline-scripts/extractor.d.ts +1 -4
  391. package/types/windmill-utils-internal/src/inline-scripts/extractor.d.ts.map +1 -1
  392. package/types/windmill-utils-internal/src/path-utils/path-assigner.d.ts +6 -6
  393. package/types/windmill-utils-internal/src/path-utils/path-assigner.d.ts.map +1 -1
  394. package/esm/apps.js +0 -124
  395. package/esm/auth.js +0 -40
  396. package/esm/codebase.js +0 -24
  397. package/esm/conf.js +0 -78
  398. package/esm/context.js +0 -121
  399. package/esm/deps/jsr.io/@std/fs/1.0.19/_create_walk_entry.js +0 -34
  400. package/esm/deps/jsr.io/@std/fs/1.0.19/_is_same_path.js +0 -17
  401. package/esm/deps/jsr.io/@std/fs/1.0.19/_is_subdir.js +0 -25
  402. package/esm/deps/jsr.io/@std/fs/1.0.19/_to_path_string.js +0 -13
  403. package/esm/deps/jsr.io/@std/fs/1.0.19/copy.js +0 -313
  404. package/esm/deps/jsr.io/@std/fs/1.0.19/empty_dir.js +0 -87
  405. package/esm/deps/jsr.io/@std/fs/1.0.19/ensure_file.js +0 -90
  406. package/esm/deps/jsr.io/@std/fs/1.0.19/ensure_link.js +0 -61
  407. package/esm/deps/jsr.io/@std/fs/1.0.19/ensure_symlink.js +0 -156
  408. package/esm/deps/jsr.io/@std/fs/1.0.19/expand_glob.js +0 -415
  409. package/esm/deps/jsr.io/@std/fs/1.0.19/walk.js +0 -846
  410. package/esm/deps/jsr.io/@std/internal/1.0.10/_os.js +0 -12
  411. package/esm/deps/jsr.io/@std/internal/1.0.10/os.js +0 -5
  412. package/esm/deps/jsr.io/@std/path/1.1.1/_common/assert_path.js +0 -7
  413. package/esm/deps/jsr.io/@std/path/1.1.1/_common/basename.js +0 -40
  414. package/esm/deps/jsr.io/@std/path/1.1.1/_common/common.js +0 -23
  415. package/esm/deps/jsr.io/@std/path/1.1.1/_common/constants.js +0 -46
  416. package/esm/deps/jsr.io/@std/path/1.1.1/_common/dirname.js +0 -8
  417. package/esm/deps/jsr.io/@std/path/1.1.1/_common/format.js +0 -19
  418. package/esm/deps/jsr.io/@std/path/1.1.1/_common/from_file_url.js +0 -9
  419. package/esm/deps/jsr.io/@std/path/1.1.1/_common/glob_to_reg_exp.js +0 -234
  420. package/esm/deps/jsr.io/@std/path/1.1.1/_common/normalize.js +0 -8
  421. package/esm/deps/jsr.io/@std/path/1.1.1/_common/normalize_string.js +0 -77
  422. package/esm/deps/jsr.io/@std/path/1.1.1/_common/relative.js +0 -9
  423. package/esm/deps/jsr.io/@std/path/1.1.1/_common/strip_trailing_separators.js +0 -19
  424. package/esm/deps/jsr.io/@std/path/1.1.1/_common/to_file_url.js +0 -15
  425. package/esm/deps/jsr.io/@std/path/1.1.1/basename.js +0 -35
  426. package/esm/deps/jsr.io/@std/path/1.1.1/common.js +0 -33
  427. package/esm/deps/jsr.io/@std/path/1.1.1/constants.js +0 -17
  428. package/esm/deps/jsr.io/@std/path/1.1.1/dirname.js +0 -28
  429. package/esm/deps/jsr.io/@std/path/1.1.1/extname.js +0 -28
  430. package/esm/deps/jsr.io/@std/path/1.1.1/format.js +0 -27
  431. package/esm/deps/jsr.io/@std/path/1.1.1/from_file_url.js +0 -28
  432. package/esm/deps/jsr.io/@std/path/1.1.1/glob_to_regexp.js +0 -83
  433. package/esm/deps/jsr.io/@std/path/1.1.1/is_absolute.js +0 -28
  434. package/esm/deps/jsr.io/@std/path/1.1.1/is_glob.js +0 -42
  435. package/esm/deps/jsr.io/@std/path/1.1.1/join.js +0 -29
  436. package/esm/deps/jsr.io/@std/path/1.1.1/join_globs.js +0 -34
  437. package/esm/deps/jsr.io/@std/path/1.1.1/mod.js +0 -216
  438. package/esm/deps/jsr.io/@std/path/1.1.1/normalize.js +0 -32
  439. package/esm/deps/jsr.io/@std/path/1.1.1/normalize_glob.js +0 -35
  440. package/esm/deps/jsr.io/@std/path/1.1.1/parse.js +0 -39
  441. package/esm/deps/jsr.io/@std/path/1.1.1/posix/_util.js +0 -8
  442. package/esm/deps/jsr.io/@std/path/1.1.1/posix/basename.js +0 -52
  443. package/esm/deps/jsr.io/@std/path/1.1.1/posix/constants.js +0 -14
  444. package/esm/deps/jsr.io/@std/path/1.1.1/posix/dirname.js +0 -64
  445. package/esm/deps/jsr.io/@std/path/1.1.1/posix/extname.js +0 -93
  446. package/esm/deps/jsr.io/@std/path/1.1.1/posix/format.js +0 -28
  447. package/esm/deps/jsr.io/@std/path/1.1.1/posix/from_file_url.js +0 -21
  448. package/esm/deps/jsr.io/@std/path/1.1.1/posix/glob_to_regexp.js +0 -82
  449. package/esm/deps/jsr.io/@std/path/1.1.1/posix/is_absolute.js +0 -23
  450. package/esm/deps/jsr.io/@std/path/1.1.1/posix/join.js +0 -45
  451. package/esm/deps/jsr.io/@std/path/1.1.1/posix/join_globs.js +0 -40
  452. package/esm/deps/jsr.io/@std/path/1.1.1/posix/normalize.js +0 -58
  453. package/esm/deps/jsr.io/@std/path/1.1.1/posix/normalize_glob.js +0 -32
  454. package/esm/deps/jsr.io/@std/path/1.1.1/posix/parse.js +0 -115
  455. package/esm/deps/jsr.io/@std/path/1.1.1/posix/relative.js +0 -106
  456. package/esm/deps/jsr.io/@std/path/1.1.1/posix/resolve.js +0 -59
  457. package/esm/deps/jsr.io/@std/path/1.1.1/posix/to_file_url.js +0 -27
  458. package/esm/deps/jsr.io/@std/path/1.1.1/posix/to_namespaced_path.js +0 -20
  459. package/esm/deps/jsr.io/@std/path/1.1.1/relative.js +0 -30
  460. package/esm/deps/jsr.io/@std/path/1.1.1/resolve.js +0 -30
  461. package/esm/deps/jsr.io/@std/path/1.1.1/to_file_url.js +0 -28
  462. package/esm/deps/jsr.io/@std/path/1.1.1/to_namespaced_path.js +0 -29
  463. package/esm/deps/jsr.io/@std/path/1.1.1/types.js +0 -3
  464. package/esm/deps/jsr.io/@std/path/1.1.1/windows/_util.js +0 -15
  465. package/esm/deps/jsr.io/@std/path/1.1.1/windows/basename.js +0 -47
  466. package/esm/deps/jsr.io/@std/path/1.1.1/windows/constants.js +0 -14
  467. package/esm/deps/jsr.io/@std/path/1.1.1/windows/dirname.js +0 -113
  468. package/esm/deps/jsr.io/@std/path/1.1.1/windows/extname.js +0 -82
  469. package/esm/deps/jsr.io/@std/path/1.1.1/windows/format.js +0 -28
  470. package/esm/deps/jsr.io/@std/path/1.1.1/windows/from_file_url.js +0 -30
  471. package/esm/deps/jsr.io/@std/path/1.1.1/windows/glob_to_regexp.js +0 -82
  472. package/esm/deps/jsr.io/@std/path/1.1.1/windows/is_absolute.js +0 -38
  473. package/esm/deps/jsr.io/@std/path/1.1.1/windows/join.js +0 -77
  474. package/esm/deps/jsr.io/@std/path/1.1.1/windows/join_globs.js +0 -41
  475. package/esm/deps/jsr.io/@std/path/1.1.1/windows/normalize.js +0 -135
  476. package/esm/deps/jsr.io/@std/path/1.1.1/windows/normalize_glob.js +0 -32
  477. package/esm/deps/jsr.io/@std/path/1.1.1/windows/parse.js +0 -176
  478. package/esm/deps/jsr.io/@std/path/1.1.1/windows/relative.js +0 -131
  479. package/esm/deps/jsr.io/@std/path/1.1.1/windows/resolve.js +0 -154
  480. package/esm/deps/jsr.io/@std/path/1.1.1/windows/to_file_url.js +0 -34
  481. package/esm/deps/jsr.io/@std/path/1.1.1/windows/to_namespaced_path.js +0 -49
  482. package/esm/deps/jsr.io/@std/yaml/1.0.9/_chars.js +0 -48
  483. package/esm/deps/jsr.io/@std/yaml/1.0.9/_dumper_state.js +0 -716
  484. package/esm/deps/jsr.io/@std/yaml/1.0.9/_loader_state.js +0 -1427
  485. package/esm/deps/jsr.io/@std/yaml/1.0.9/_schema.js +0 -107
  486. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/bool.js +0 -32
  487. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/float.js +0 -96
  488. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/int.js +0 -159
  489. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/map.js +0 -14
  490. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/merge.js +0 -10
  491. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/nil.js +0 -22
  492. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/omap.js +0 -29
  493. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/pairs.js +0 -19
  494. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/regexp.js +0 -30
  495. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/seq.js +0 -10
  496. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/set.js +0 -14
  497. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/str.js +0 -9
  498. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/timestamp.js +0 -81
  499. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type/undefined.js +0 -20
  500. package/esm/deps/jsr.io/@std/yaml/1.0.9/_type.js +0 -6
  501. package/esm/deps/jsr.io/@std/yaml/1.0.9/_utils.js +0 -13
  502. package/esm/deps/jsr.io/@std/yaml/1.0.9/mod.js +0 -52
  503. package/esm/deps/jsr.io/@std/yaml/1.0.9/parse.js +0 -93
  504. package/esm/deps/jsr.io/@std/yaml/1.0.9/stringify.js +0 -33
  505. package/esm/dev.js +0 -145
  506. package/esm/flow.js +0 -236
  507. package/esm/folder.js +0 -101
  508. package/esm/gitsync-settings.js +0 -984
  509. package/esm/hub.js +0 -65
  510. package/esm/instance.js +0 -569
  511. package/esm/login.js +0 -100
  512. package/esm/main.js +0 -337
  513. package/esm/metadata.js +0 -623
  514. package/esm/pull.js +0 -37
  515. package/esm/queues.js +0 -117
  516. package/esm/resource-type.js +0 -85
  517. package/esm/resource.js +0 -93
  518. package/esm/schedule.js +0 -101
  519. package/esm/script.js +0 -753
  520. package/esm/settings.js +0 -432
  521. package/esm/store.js +0 -76
  522. package/esm/sync.js +0 -1662
  523. package/esm/trigger.js +0 -182
  524. package/esm/types.js +0 -223
  525. package/esm/upgrade.js +0 -48
  526. package/esm/user.js +0 -428
  527. package/esm/utils.js +0 -168
  528. package/esm/variable.js +0 -121
  529. package/esm/worker_groups.js +0 -96
  530. package/esm/workers.js +0 -79
  531. package/esm/workspace.js +0 -314
  532. package/types/apps.d.ts +0 -17
  533. package/types/apps.d.ts.map +0 -1
  534. package/types/auth.d.ts +0 -8
  535. package/types/auth.d.ts.map +0 -1
  536. package/types/codebase.d.ts +0 -6
  537. package/types/codebase.d.ts.map +0 -1
  538. package/types/conf.d.ts +0 -55
  539. package/types/conf.d.ts.map +0 -1
  540. package/types/context.d.ts +0 -13
  541. package/types/context.d.ts.map +0 -1
  542. package/types/deps/jsr.io/@std/bytes/1.0.6/_types.d.ts.map +0 -1
  543. package/types/deps/jsr.io/@std/bytes/1.0.6/concat.d.ts +0 -21
  544. package/types/deps/jsr.io/@std/bytes/1.0.6/concat.d.ts.map +0 -1
  545. package/types/deps/jsr.io/@std/fmt/1.0.8/colors.d.ts.map +0 -1
  546. package/types/deps/jsr.io/@std/fs/1.0.19/_create_walk_entry.d.ts.map +0 -1
  547. package/types/deps/jsr.io/@std/fs/1.0.19/_get_file_info_type.d.ts.map +0 -1
  548. package/types/deps/jsr.io/@std/fs/1.0.19/_is_same_path.d.ts.map +0 -1
  549. package/types/deps/jsr.io/@std/fs/1.0.19/_is_subdir.d.ts.map +0 -1
  550. package/types/deps/jsr.io/@std/fs/1.0.19/_to_path_string.d.ts.map +0 -1
  551. package/types/deps/jsr.io/@std/fs/1.0.19/copy.d.ts.map +0 -1
  552. package/types/deps/jsr.io/@std/fs/1.0.19/empty_dir.d.ts.map +0 -1
  553. package/types/deps/jsr.io/@std/fs/1.0.19/ensure_dir.d.ts.map +0 -1
  554. package/types/deps/jsr.io/@std/fs/1.0.19/ensure_file.d.ts.map +0 -1
  555. package/types/deps/jsr.io/@std/fs/1.0.19/ensure_link.d.ts.map +0 -1
  556. package/types/deps/jsr.io/@std/fs/1.0.19/ensure_symlink.d.ts.map +0 -1
  557. package/types/deps/jsr.io/@std/fs/1.0.19/eol.d.ts.map +0 -1
  558. package/types/deps/jsr.io/@std/fs/1.0.19/exists.d.ts.map +0 -1
  559. package/types/deps/jsr.io/@std/fs/1.0.19/expand_glob.d.ts +0 -267
  560. package/types/deps/jsr.io/@std/fs/1.0.19/expand_glob.d.ts.map +0 -1
  561. package/types/deps/jsr.io/@std/fs/1.0.19/mod.d.ts.map +0 -1
  562. package/types/deps/jsr.io/@std/fs/1.0.19/move.d.ts.map +0 -1
  563. package/types/deps/jsr.io/@std/fs/1.0.19/walk.d.ts.map +0 -1
  564. package/types/deps/jsr.io/@std/internal/1.0.10/_os.d.ts +0 -2
  565. package/types/deps/jsr.io/@std/internal/1.0.10/_os.d.ts.map +0 -1
  566. package/types/deps/jsr.io/@std/internal/1.0.10/os.d.ts +0 -3
  567. package/types/deps/jsr.io/@std/internal/1.0.10/os.d.ts.map +0 -1
  568. package/types/deps/jsr.io/@std/path/1.1.1/_common/assert_path.d.ts.map +0 -1
  569. package/types/deps/jsr.io/@std/path/1.1.1/_common/basename.d.ts.map +0 -1
  570. package/types/deps/jsr.io/@std/path/1.1.1/_common/common.d.ts.map +0 -1
  571. package/types/deps/jsr.io/@std/path/1.1.1/_common/constants.d.ts.map +0 -1
  572. package/types/deps/jsr.io/@std/path/1.1.1/_common/dirname.d.ts.map +0 -1
  573. package/types/deps/jsr.io/@std/path/1.1.1/_common/format.d.ts.map +0 -1
  574. package/types/deps/jsr.io/@std/path/1.1.1/_common/from_file_url.d.ts.map +0 -1
  575. package/types/deps/jsr.io/@std/path/1.1.1/_common/glob_to_reg_exp.d.ts.map +0 -1
  576. package/types/deps/jsr.io/@std/path/1.1.1/_common/normalize.d.ts.map +0 -1
  577. package/types/deps/jsr.io/@std/path/1.1.1/_common/normalize_string.d.ts.map +0 -1
  578. package/types/deps/jsr.io/@std/path/1.1.1/_common/relative.d.ts.map +0 -1
  579. package/types/deps/jsr.io/@std/path/1.1.1/_common/strip_trailing_separators.d.ts.map +0 -1
  580. package/types/deps/jsr.io/@std/path/1.1.1/_common/to_file_url.d.ts.map +0 -1
  581. package/types/deps/jsr.io/@std/path/1.1.1/basename.d.ts +0 -27
  582. package/types/deps/jsr.io/@std/path/1.1.1/basename.d.ts.map +0 -1
  583. package/types/deps/jsr.io/@std/path/1.1.1/common.d.ts.map +0 -1
  584. package/types/deps/jsr.io/@std/path/1.1.1/constants.d.ts.map +0 -1
  585. package/types/deps/jsr.io/@std/path/1.1.1/dirname.d.ts +0 -22
  586. package/types/deps/jsr.io/@std/path/1.1.1/dirname.d.ts.map +0 -1
  587. package/types/deps/jsr.io/@std/path/1.1.1/extname.d.ts +0 -22
  588. package/types/deps/jsr.io/@std/path/1.1.1/extname.d.ts.map +0 -1
  589. package/types/deps/jsr.io/@std/path/1.1.1/format.d.ts.map +0 -1
  590. package/types/deps/jsr.io/@std/path/1.1.1/from_file_url.d.ts.map +0 -1
  591. package/types/deps/jsr.io/@std/path/1.1.1/glob_to_regexp.d.ts.map +0 -1
  592. package/types/deps/jsr.io/@std/path/1.1.1/is_absolute.d.ts.map +0 -1
  593. package/types/deps/jsr.io/@std/path/1.1.1/is_glob.d.ts.map +0 -1
  594. package/types/deps/jsr.io/@std/path/1.1.1/join.d.ts +0 -23
  595. package/types/deps/jsr.io/@std/path/1.1.1/join.d.ts.map +0 -1
  596. package/types/deps/jsr.io/@std/path/1.1.1/join_globs.d.ts.map +0 -1
  597. package/types/deps/jsr.io/@std/path/1.1.1/mod.d.ts +0 -213
  598. package/types/deps/jsr.io/@std/path/1.1.1/mod.d.ts.map +0 -1
  599. package/types/deps/jsr.io/@std/path/1.1.1/normalize.d.ts +0 -26
  600. package/types/deps/jsr.io/@std/path/1.1.1/normalize.d.ts.map +0 -1
  601. package/types/deps/jsr.io/@std/path/1.1.1/normalize_glob.d.ts.map +0 -1
  602. package/types/deps/jsr.io/@std/path/1.1.1/parse.d.ts.map +0 -1
  603. package/types/deps/jsr.io/@std/path/1.1.1/posix/_util.d.ts.map +0 -1
  604. package/types/deps/jsr.io/@std/path/1.1.1/posix/basename.d.ts +0 -39
  605. package/types/deps/jsr.io/@std/path/1.1.1/posix/basename.d.ts.map +0 -1
  606. package/types/deps/jsr.io/@std/path/1.1.1/posix/constants.d.ts.map +0 -1
  607. package/types/deps/jsr.io/@std/path/1.1.1/posix/dirname.d.ts +0 -30
  608. package/types/deps/jsr.io/@std/path/1.1.1/posix/dirname.d.ts.map +0 -1
  609. package/types/deps/jsr.io/@std/path/1.1.1/posix/extname.d.ts +0 -37
  610. package/types/deps/jsr.io/@std/path/1.1.1/posix/extname.d.ts.map +0 -1
  611. package/types/deps/jsr.io/@std/path/1.1.1/posix/format.d.ts.map +0 -1
  612. package/types/deps/jsr.io/@std/path/1.1.1/posix/from_file_url.d.ts.map +0 -1
  613. package/types/deps/jsr.io/@std/path/1.1.1/posix/glob_to_regexp.d.ts.map +0 -1
  614. package/types/deps/jsr.io/@std/path/1.1.1/posix/is_absolute.d.ts.map +0 -1
  615. package/types/deps/jsr.io/@std/path/1.1.1/posix/join.d.ts +0 -31
  616. package/types/deps/jsr.io/@std/path/1.1.1/posix/join.d.ts.map +0 -1
  617. package/types/deps/jsr.io/@std/path/1.1.1/posix/join_globs.d.ts.map +0 -1
  618. package/types/deps/jsr.io/@std/path/1.1.1/posix/normalize.d.ts +0 -37
  619. package/types/deps/jsr.io/@std/path/1.1.1/posix/normalize.d.ts.map +0 -1
  620. package/types/deps/jsr.io/@std/path/1.1.1/posix/normalize_glob.d.ts.map +0 -1
  621. package/types/deps/jsr.io/@std/path/1.1.1/posix/parse.d.ts.map +0 -1
  622. package/types/deps/jsr.io/@std/path/1.1.1/posix/relative.d.ts.map +0 -1
  623. package/types/deps/jsr.io/@std/path/1.1.1/posix/resolve.d.ts.map +0 -1
  624. package/types/deps/jsr.io/@std/path/1.1.1/posix/to_file_url.d.ts.map +0 -1
  625. package/types/deps/jsr.io/@std/path/1.1.1/posix/to_namespaced_path.d.ts.map +0 -1
  626. package/types/deps/jsr.io/@std/path/1.1.1/relative.d.ts.map +0 -1
  627. package/types/deps/jsr.io/@std/path/1.1.1/resolve.d.ts.map +0 -1
  628. package/types/deps/jsr.io/@std/path/1.1.1/to_file_url.d.ts.map +0 -1
  629. package/types/deps/jsr.io/@std/path/1.1.1/to_namespaced_path.d.ts.map +0 -1
  630. package/types/deps/jsr.io/@std/path/1.1.1/types.d.ts.map +0 -1
  631. package/types/deps/jsr.io/@std/path/1.1.1/windows/_util.d.ts.map +0 -1
  632. package/types/deps/jsr.io/@std/path/1.1.1/windows/basename.d.ts +0 -22
  633. package/types/deps/jsr.io/@std/path/1.1.1/windows/basename.d.ts.map +0 -1
  634. package/types/deps/jsr.io/@std/path/1.1.1/windows/constants.d.ts.map +0 -1
  635. package/types/deps/jsr.io/@std/path/1.1.1/windows/dirname.d.ts +0 -17
  636. package/types/deps/jsr.io/@std/path/1.1.1/windows/dirname.d.ts.map +0 -1
  637. package/types/deps/jsr.io/@std/path/1.1.1/windows/extname.d.ts +0 -17
  638. package/types/deps/jsr.io/@std/path/1.1.1/windows/extname.d.ts.map +0 -1
  639. package/types/deps/jsr.io/@std/path/1.1.1/windows/format.d.ts.map +0 -1
  640. package/types/deps/jsr.io/@std/path/1.1.1/windows/from_file_url.d.ts.map +0 -1
  641. package/types/deps/jsr.io/@std/path/1.1.1/windows/glob_to_regexp.d.ts.map +0 -1
  642. package/types/deps/jsr.io/@std/path/1.1.1/windows/is_absolute.d.ts.map +0 -1
  643. package/types/deps/jsr.io/@std/path/1.1.1/windows/join.d.ts +0 -18
  644. package/types/deps/jsr.io/@std/path/1.1.1/windows/join.d.ts.map +0 -1
  645. package/types/deps/jsr.io/@std/path/1.1.1/windows/join_globs.d.ts.map +0 -1
  646. package/types/deps/jsr.io/@std/path/1.1.1/windows/normalize.d.ts +0 -19
  647. package/types/deps/jsr.io/@std/path/1.1.1/windows/normalize.d.ts.map +0 -1
  648. package/types/deps/jsr.io/@std/path/1.1.1/windows/normalize_glob.d.ts.map +0 -1
  649. package/types/deps/jsr.io/@std/path/1.1.1/windows/parse.d.ts.map +0 -1
  650. package/types/deps/jsr.io/@std/path/1.1.1/windows/relative.d.ts.map +0 -1
  651. package/types/deps/jsr.io/@std/path/1.1.1/windows/resolve.d.ts.map +0 -1
  652. package/types/deps/jsr.io/@std/path/1.1.1/windows/to_file_url.d.ts.map +0 -1
  653. package/types/deps/jsr.io/@std/path/1.1.1/windows/to_namespaced_path.d.ts.map +0 -1
  654. package/types/deps/jsr.io/@std/yaml/1.0.9/_chars.d.ts.map +0 -1
  655. package/types/deps/jsr.io/@std/yaml/1.0.9/_dumper_state.d.ts +0 -106
  656. package/types/deps/jsr.io/@std/yaml/1.0.9/_dumper_state.d.ts.map +0 -1
  657. package/types/deps/jsr.io/@std/yaml/1.0.9/_loader_state.d.ts +0 -66
  658. package/types/deps/jsr.io/@std/yaml/1.0.9/_loader_state.d.ts.map +0 -1
  659. package/types/deps/jsr.io/@std/yaml/1.0.9/_schema.d.ts.map +0 -1
  660. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/binary.d.ts.map +0 -1
  661. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/bool.d.ts.map +0 -1
  662. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/float.d.ts.map +0 -1
  663. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/int.d.ts.map +0 -1
  664. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/map.d.ts.map +0 -1
  665. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/merge.d.ts.map +0 -1
  666. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/nil.d.ts.map +0 -1
  667. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/omap.d.ts.map +0 -1
  668. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/pairs.d.ts.map +0 -1
  669. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/regexp.d.ts.map +0 -1
  670. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/seq.d.ts.map +0 -1
  671. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/set.d.ts.map +0 -1
  672. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/str.d.ts.map +0 -1
  673. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/timestamp.d.ts.map +0 -1
  674. package/types/deps/jsr.io/@std/yaml/1.0.9/_type/undefined.d.ts.map +0 -1
  675. package/types/deps/jsr.io/@std/yaml/1.0.9/_type.d.ts.map +0 -1
  676. package/types/deps/jsr.io/@std/yaml/1.0.9/_utils.d.ts.map +0 -1
  677. package/types/deps/jsr.io/@std/yaml/1.0.9/mod.d.ts.map +0 -1
  678. package/types/deps/jsr.io/@std/yaml/1.0.9/parse.d.ts.map +0 -1
  679. package/types/deps/jsr.io/@std/yaml/1.0.9/stringify.d.ts.map +0 -1
  680. package/types/dev.d.ts +0 -12
  681. package/types/dev.d.ts.map +0 -1
  682. package/types/flow.d.ts +0 -28
  683. package/types/flow.d.ts.map +0 -1
  684. package/types/flow_guidance.d.ts.map +0 -1
  685. package/types/folder.d.ts +0 -19
  686. package/types/folder.d.ts.map +0 -1
  687. package/types/gitsync-settings.d.ts +0 -40
  688. package/types/gitsync-settings.d.ts.map +0 -1
  689. package/types/hub.d.ts +0 -12
  690. package/types/hub.d.ts.map +0 -1
  691. package/types/instance.d.ts +0 -46
  692. package/types/instance.d.ts.map +0 -1
  693. package/types/local_encryption.d.ts.map +0 -1
  694. package/types/login.d.ts +0 -5
  695. package/types/login.d.ts.map +0 -1
  696. package/types/main.d.ts +0 -70
  697. package/types/main.d.ts.map +0 -1
  698. package/types/metadata.d.ts +0 -52
  699. package/types/metadata.d.ts.map +0 -1
  700. package/types/pull.d.ts +0 -12
  701. package/types/pull.d.ts.map +0 -1
  702. package/types/queues.d.ts +0 -14
  703. package/types/queues.d.ts.map +0 -1
  704. package/types/resource-type.d.ts +0 -16
  705. package/types/resource-type.d.ts.map +0 -1
  706. package/types/resource.d.ts +0 -18
  707. package/types/resource.d.ts.map +0 -1
  708. package/types/schedule.d.ts +0 -21
  709. package/types/schedule.d.ts.map +0 -1
  710. package/types/script.d.ts +0 -51
  711. package/types/script.d.ts.map +0 -1
  712. package/types/script_common.d.ts.map +0 -1
  713. package/types/script_guidance.d.ts.map +0 -1
  714. package/types/settings.d.ts +0 -30
  715. package/types/settings.d.ts.map +0 -1
  716. package/types/store.d.ts +0 -3
  717. package/types/store.d.ts.map +0 -1
  718. package/types/sync.d.ts +0 -130
  719. package/types/sync.d.ts.map +0 -1
  720. package/types/trigger.d.ts +0 -24
  721. package/types/trigger.d.ts.map +0 -1
  722. package/types/types.d.ts.map +0 -1
  723. package/types/upgrade.d.ts +0 -21
  724. package/types/upgrade.d.ts.map +0 -1
  725. package/types/user.d.ts +0 -34
  726. package/types/user.d.ts.map +0 -1
  727. package/types/utils.d.ts +0 -19
  728. package/types/utils.d.ts.map +0 -1
  729. package/types/variable.d.ts +0 -23
  730. package/types/variable.d.ts.map +0 -1
  731. package/types/worker_groups.d.ts +0 -24
  732. package/types/worker_groups.d.ts.map +0 -1
  733. package/types/workers.d.ts +0 -14
  734. package/types/workers.d.ts.map +0 -1
  735. package/types/workspace.d.ts +0 -28
  736. package/types/workspace.d.ts.map +0 -1
  737. /package/esm/deps/jsr.io/@std/bytes/{1.0.6 → 1.0.5}/_types.js +0 -0
  738. /package/esm/deps/jsr.io/@std/bytes/{1.0.6 → 1.0.5}/concat.js +0 -0
  739. /package/esm/deps/jsr.io/@std/fmt/{1.0.8 → 1.0.6}/colors.js +0 -0
  740. /package/esm/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/_get_file_info_type.js +0 -0
  741. /package/esm/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/ensure_dir.js +0 -0
  742. /package/esm/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/eol.js +0 -0
  743. /package/esm/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/exists.js +0 -0
  744. /package/esm/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/mod.js +0 -0
  745. /package/esm/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/move.js +0 -0
  746. /package/esm/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/binary.js +0 -0
  747. /package/esm/{flow_guidance.js → src/guidance/flow_guidance.js} +0 -0
  748. /package/esm/{script_guidance.js → src/guidance/script_guidance.js} +0 -0
  749. /package/esm/{local_encryption.js → src/utils/local_encryption.js} +0 -0
  750. /package/esm/{script_common.js → src/utils/script_common.js} +0 -0
  751. /package/types/deps/jsr.io/@std/bytes/{1.0.6 → 1.0.5}/_types.d.ts +0 -0
  752. /package/types/deps/jsr.io/@std/fmt/{1.0.8 → 1.0.6}/colors.d.ts +0 -0
  753. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/_create_walk_entry.d.ts +0 -0
  754. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/_get_file_info_type.d.ts +0 -0
  755. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/_is_same_path.d.ts +0 -0
  756. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/_is_subdir.d.ts +0 -0
  757. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/_to_path_string.d.ts +0 -0
  758. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/copy.d.ts +0 -0
  759. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/empty_dir.d.ts +0 -0
  760. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/ensure_dir.d.ts +0 -0
  761. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/ensure_file.d.ts +0 -0
  762. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/ensure_link.d.ts +0 -0
  763. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/ensure_symlink.d.ts +0 -0
  764. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/eol.d.ts +0 -0
  765. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/exists.d.ts +0 -0
  766. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/mod.d.ts +0 -0
  767. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/move.d.ts +0 -0
  768. /package/types/deps/jsr.io/@std/fs/{1.0.19 → 1.0.16}/walk.d.ts +0 -0
  769. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/assert_path.d.ts +0 -0
  770. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/basename.d.ts +0 -0
  771. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/common.d.ts +0 -0
  772. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/constants.d.ts +0 -0
  773. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/dirname.d.ts +0 -0
  774. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/format.d.ts +0 -0
  775. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/from_file_url.d.ts +0 -0
  776. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/glob_to_reg_exp.d.ts +0 -0
  777. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/normalize.d.ts +0 -0
  778. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/normalize_string.d.ts +0 -0
  779. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/relative.d.ts +0 -0
  780. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/strip_trailing_separators.d.ts +0 -0
  781. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/_common/to_file_url.d.ts +0 -0
  782. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/common.d.ts +0 -0
  783. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/constants.d.ts +0 -0
  784. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/format.d.ts +0 -0
  785. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/from_file_url.d.ts +0 -0
  786. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/glob_to_regexp.d.ts +0 -0
  787. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/is_absolute.d.ts +0 -0
  788. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/is_glob.d.ts +0 -0
  789. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/join_globs.d.ts +0 -0
  790. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/normalize_glob.d.ts +0 -0
  791. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/parse.d.ts +0 -0
  792. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/_util.d.ts +0 -0
  793. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/constants.d.ts +0 -0
  794. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/format.d.ts +0 -0
  795. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/from_file_url.d.ts +0 -0
  796. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/glob_to_regexp.d.ts +0 -0
  797. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/is_absolute.d.ts +0 -0
  798. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/join_globs.d.ts +0 -0
  799. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/normalize_glob.d.ts +0 -0
  800. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/parse.d.ts +0 -0
  801. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/relative.d.ts +0 -0
  802. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/resolve.d.ts +0 -0
  803. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/to_file_url.d.ts +0 -0
  804. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/posix/to_namespaced_path.d.ts +0 -0
  805. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/relative.d.ts +0 -0
  806. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/resolve.d.ts +0 -0
  807. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/to_file_url.d.ts +0 -0
  808. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/to_namespaced_path.d.ts +0 -0
  809. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/types.d.ts +0 -0
  810. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/_util.d.ts +0 -0
  811. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/constants.d.ts +0 -0
  812. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/format.d.ts +0 -0
  813. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/from_file_url.d.ts +0 -0
  814. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/glob_to_regexp.d.ts +0 -0
  815. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/is_absolute.d.ts +0 -0
  816. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/join_globs.d.ts +0 -0
  817. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/normalize_glob.d.ts +0 -0
  818. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/parse.d.ts +0 -0
  819. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/relative.d.ts +0 -0
  820. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/resolve.d.ts +0 -0
  821. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/to_file_url.d.ts +0 -0
  822. /package/types/deps/jsr.io/@std/path/{1.1.1 → 1.0.8}/windows/to_namespaced_path.d.ts +0 -0
  823. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_chars.d.ts +0 -0
  824. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_schema.d.ts +0 -0
  825. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/binary.d.ts +0 -0
  826. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/bool.d.ts +0 -0
  827. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/float.d.ts +0 -0
  828. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/int.d.ts +0 -0
  829. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/map.d.ts +0 -0
  830. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/merge.d.ts +0 -0
  831. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/nil.d.ts +0 -0
  832. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/omap.d.ts +0 -0
  833. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/pairs.d.ts +0 -0
  834. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/regexp.d.ts +0 -0
  835. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/seq.d.ts +0 -0
  836. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/set.d.ts +0 -0
  837. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/str.d.ts +0 -0
  838. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/timestamp.d.ts +0 -0
  839. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type/undefined.d.ts +0 -0
  840. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_type.d.ts +0 -0
  841. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/_utils.d.ts +0 -0
  842. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/mod.d.ts +0 -0
  843. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/parse.d.ts +0 -0
  844. /package/types/deps/jsr.io/@std/yaml/{1.0.9 → 1.0.5}/stringify.d.ts +0 -0
  845. /package/types/{flow_guidance.d.ts → src/guidance/flow_guidance.d.ts} +0 -0
  846. /package/types/{script_guidance.d.ts → src/guidance/script_guidance.d.ts} +0 -0
  847. /package/types/{types.d.ts → src/types.d.ts} +0 -0
  848. /package/types/{local_encryption.d.ts → src/utils/local_encryption.d.ts} +0 -0
  849. /package/types/{script_common.d.ts → src/utils/script_common.d.ts} +0 -0
@@ -1,30 +0,0 @@
1
- // Copyright 2018-2025 the Deno authors. MIT license.
2
- // This module is browser compatible.
3
- import { assertArg } from "../_common/from_file_url.js";
4
- /**
5
- * Converts a file URL to a path string.
6
- *
7
- * @example Usage
8
- * ```ts
9
- * import { fromFileUrl } from "@std/path/windows/from-file-url";
10
- * import { assertEquals } from "@std/assert";
11
- *
12
- * assertEquals(fromFileUrl("file:///home/foo"), "\\home\\foo");
13
- * assertEquals(fromFileUrl("file:///C:/Users/foo"), "C:\\Users\\foo");
14
- * assertEquals(fromFileUrl("file://localhost/home/foo"), "\\home\\foo");
15
- * ```
16
- *
17
- * @param url The file URL to convert.
18
- * @returns The path string.
19
- */
20
- export function fromFileUrl(url) {
21
- url = assertArg(url);
22
- let path = decodeURIComponent(url.pathname.replace(/\//g, "\\").replace(/%(?![0-9A-Fa-f]{2})/g, "%25")).replace(/^\\*([A-Za-z]:)(\\|$)/, "$1\\");
23
- if (url.hostname !== "") {
24
- // Note: The `URL` implementation guarantees that the drive letter and
25
- // hostname are mutually exclusive. Otherwise it would not have been valid
26
- // to append the hostname and path like this.
27
- path = `\\\\${url.hostname}${path}`;
28
- }
29
- return path;
30
- }
@@ -1,82 +0,0 @@
1
- // Copyright 2018-2025 the Deno authors. MIT license.
2
- // This module is browser compatible.
3
- import { _globToRegExp, } from "../_common/glob_to_reg_exp.js";
4
- const constants = {
5
- sep: "(?:\\\\|/)+",
6
- sepMaybe: "(?:\\\\|/)*",
7
- seps: ["\\", "/"],
8
- globstar: "(?:[^\\\\/]*(?:\\\\|/|$)+)*",
9
- wildcard: "[^\\\\/]*",
10
- escapePrefix: "`",
11
- };
12
- /** Convert a glob string to a regular expression.
13
- *
14
- * Tries to match bash glob expansion as closely as possible.
15
- *
16
- * Basic glob syntax:
17
- * - `*` - Matches everything without leaving the path segment.
18
- * - `?` - Matches any single character.
19
- * - `{foo,bar}` - Matches `foo` or `bar`.
20
- * - `[abcd]` - Matches `a`, `b`, `c` or `d`.
21
- * - `[a-d]` - Matches `a`, `b`, `c` or `d`.
22
- * - `[!abcd]` - Matches any single character besides `a`, `b`, `c` or `d`.
23
- * - `[[:<class>:]]` - Matches any character belonging to `<class>`.
24
- * - `[[:alnum:]]` - Matches any digit or letter.
25
- * - `[[:digit:]abc]` - Matches any digit, `a`, `b` or `c`.
26
- * - See https://facelessuser.github.io/wcmatch/glob/#posix-character-classes
27
- * for a complete list of supported character classes.
28
- * - `\` - Escapes the next character for an `os` other than `"windows"`.
29
- * - \` - Escapes the next character for `os` set to `"windows"`.
30
- * - `/` - Path separator.
31
- * - `\` - Additional path separator only for `os` set to `"windows"`.
32
- *
33
- * Extended syntax:
34
- * - Requires `{ extended: true }`.
35
- * - `?(foo|bar)` - Matches 0 or 1 instance of `{foo,bar}`.
36
- * - `@(foo|bar)` - Matches 1 instance of `{foo,bar}`. They behave the same.
37
- * - `*(foo|bar)` - Matches _n_ instances of `{foo,bar}`.
38
- * - `+(foo|bar)` - Matches _n > 0_ instances of `{foo,bar}`.
39
- * - `!(foo|bar)` - Matches anything other than `{foo,bar}`.
40
- * - See https://www.linuxjournal.com/content/bash-extended-globbing.
41
- *
42
- * Globstar syntax:
43
- * - Requires `{ globstar: true }`.
44
- * - `**` - Matches any number of any path segments.
45
- * - Must comprise its entire path segment in the provided glob.
46
- * - See https://www.linuxjournal.com/content/globstar-new-bash-globbing-option.
47
- *
48
- * Note the following properties:
49
- * - The generated `RegExp` is anchored at both start and end.
50
- * - Repeating and trailing separators are tolerated. Trailing separators in the
51
- * provided glob have no meaning and are discarded.
52
- * - Absolute globs will only match absolute paths, etc.
53
- * - Empty globs will match nothing.
54
- * - Any special glob syntax must be contained to one path segment. For example,
55
- * `?(foo|bar/baz)` is invalid. The separator will take precedence and the
56
- * first segment ends with an unclosed group.
57
- * - If a path segment ends with unclosed groups or a dangling escape prefix, a
58
- * parse error has occurred. Every character for that segment is taken
59
- * literally in this event.
60
- *
61
- * Limitations:
62
- * - A negative group like `!(foo|bar)` will wrongly be converted to a negative
63
- * look-ahead followed by a wildcard. This means that `!(foo).js` will wrongly
64
- * fail to match `foobar.js`, even though `foobar` is not `foo`. Effectively,
65
- * `!(foo|bar)` is treated like `!(@(foo|bar)*)`. This will work correctly if
66
- * the group occurs not nested at the end of the segment.
67
- *
68
- * @example Usage
69
- * ```ts
70
- * import { globToRegExp } from "@std/path/windows/glob-to-regexp";
71
- * import { assertEquals } from "@std/assert";
72
- *
73
- * assertEquals(globToRegExp("*.js"), /^[^\\/]*\.js(?:\\|\/)*$/);
74
- * ```
75
- *
76
- * @param glob Glob string to convert.
77
- * @param options Conversion options.
78
- * @returns The regular expression equivalent to the glob.
79
- */
80
- export function globToRegExp(glob, options = {}) {
81
- return _globToRegExp(constants, glob, options);
82
- }
@@ -1,38 +0,0 @@
1
- // Copyright 2018-2025 the Deno authors. MIT license.
2
- // This module is browser compatible.
3
- import { CHAR_COLON } from "../_common/constants.js";
4
- import { assertPath } from "../_common/assert_path.js";
5
- import { isPathSeparator, isWindowsDeviceRoot } from "./_util.js";
6
- /**
7
- * Verifies whether provided path is absolute.
8
- *
9
- * @example Usage
10
- * ```ts
11
- * import { isAbsolute } from "@std/path/windows/is-absolute";
12
- * import { assert, assertFalse } from "@std/assert";
13
- *
14
- * assert(isAbsolute("C:\\foo\\bar"));
15
- * assertFalse(isAbsolute("..\\baz"));
16
- * ```
17
- *
18
- * @param path The path to verify.
19
- * @returns `true` if the path is absolute, `false` otherwise.
20
- */
21
- export function isAbsolute(path) {
22
- assertPath(path);
23
- const len = path.length;
24
- if (len === 0)
25
- return false;
26
- const code = path.charCodeAt(0);
27
- if (isPathSeparator(code)) {
28
- return true;
29
- }
30
- else if (isWindowsDeviceRoot(code)) {
31
- // Possible device root
32
- if (len > 2 && path.charCodeAt(1) === CHAR_COLON) {
33
- if (isPathSeparator(path.charCodeAt(2)))
34
- return true;
35
- }
36
- }
37
- return false;
38
- }
@@ -1,77 +0,0 @@
1
- // Copyright 2018-2025 the Deno authors. MIT license.
2
- // This module is browser compatible.
3
- import { assertPath } from "../_common/assert_path.js";
4
- import { isPathSeparator } from "./_util.js";
5
- import { normalize } from "./normalize.js";
6
- import { fromFileUrl } from "./from_file_url.js";
7
- /**
8
- * Join all given a sequence of `paths`,then normalizes the resulting path.
9
- *
10
- * @example Usage
11
- * ```ts
12
- * import { join } from "@std/path/windows/join";
13
- * import { assertEquals } from "@std/assert";
14
- *
15
- * assertEquals(join("C:\\foo", "bar", "baz\\.."), "C:\\foo\\bar");
16
- * assertEquals(join(new URL("file:///C:/foo"), "bar", "baz\\.."), "C:\\foo\\bar");
17
- * ```
18
- *
19
- * @param path The path to join. This can be string or file URL.
20
- * @param paths The paths to join.
21
- * @returns The joined path.
22
- */
23
- export function join(path, ...paths) {
24
- if (path instanceof URL) {
25
- path = fromFileUrl(path);
26
- }
27
- paths = path ? [path, ...paths] : paths;
28
- paths.forEach((path) => assertPath(path));
29
- paths = paths.filter((path) => path.length > 0);
30
- if (paths.length === 0)
31
- return ".";
32
- // Make sure that the joined path doesn't start with two slashes, because
33
- // normalize() will mistake it for an UNC path then.
34
- //
35
- // This step is skipped when it is very clear that the user actually
36
- // intended to point at an UNC path. This is assumed when the first
37
- // non-empty string arguments starts with exactly two slashes followed by
38
- // at least one more non-slash character.
39
- //
40
- // Note that for normalize() to treat a path as an UNC path it needs to
41
- // have at least 2 components, so we don't filter for that here.
42
- // This means that the user can use join to construct UNC paths from
43
- // a server name and a share name; for example:
44
- // path.join('//server', 'share') -> '\\\\server\\share\\'
45
- let needsReplace = true;
46
- let slashCount = 0;
47
- const firstPart = paths[0];
48
- if (isPathSeparator(firstPart.charCodeAt(0))) {
49
- ++slashCount;
50
- const firstLen = firstPart.length;
51
- if (firstLen > 1) {
52
- if (isPathSeparator(firstPart.charCodeAt(1))) {
53
- ++slashCount;
54
- if (firstLen > 2) {
55
- if (isPathSeparator(firstPart.charCodeAt(2)))
56
- ++slashCount;
57
- else {
58
- // We matched a UNC path in the first part
59
- needsReplace = false;
60
- }
61
- }
62
- }
63
- }
64
- }
65
- let joined = paths.join("\\");
66
- if (needsReplace) {
67
- // Find any more consecutive slashes we need to replace
68
- for (; slashCount < joined.length; ++slashCount) {
69
- if (!isPathSeparator(joined.charCodeAt(slashCount)))
70
- break;
71
- }
72
- // Replace the slashes if needed
73
- if (slashCount >= 2)
74
- joined = `\\${joined.slice(slashCount)}`;
75
- }
76
- return normalize(joined);
77
- }
@@ -1,41 +0,0 @@
1
- // Copyright 2018-2025 the Deno authors. MIT license.
2
- // This module is browser compatible.
3
- import { join } from "./join.js";
4
- import { SEPARATOR } from "./constants.js";
5
- import { normalizeGlob } from "./normalize_glob.js";
6
- /**
7
- * Like join(), but doesn't collapse "**\/.." when `globstar` is true.
8
- *
9
- * @example Usage
10
- *
11
- * ```ts
12
- * import { joinGlobs } from "@std/path/windows/join-globs";
13
- * import { assertEquals } from "@std/assert";
14
- *
15
- * const joined = joinGlobs(["foo", "**", "bar"], { globstar: true });
16
- * assertEquals(joined, "foo\\**\\bar");
17
- * ```
18
- *
19
- * @param globs The globs to join.
20
- * @param options The options for glob pattern.
21
- * @returns The joined glob pattern.
22
- */
23
- export function joinGlobs(globs, options = {}) {
24
- const { globstar = false } = options;
25
- if (!globstar || globs.length === 0) {
26
- return join(...globs);
27
- }
28
- let joined;
29
- for (const glob of globs) {
30
- const path = glob;
31
- if (path.length > 0) {
32
- if (!joined)
33
- joined = path;
34
- else
35
- joined += `${SEPARATOR}${path}`;
36
- }
37
- }
38
- if (!joined)
39
- return ".";
40
- return normalizeGlob(joined, { globstar });
41
- }
@@ -1,135 +0,0 @@
1
- // Copyright 2018-2025 the Deno authors. MIT license.
2
- // This module is browser compatible.
3
- import { assertArg } from "../_common/normalize.js";
4
- import { CHAR_COLON } from "../_common/constants.js";
5
- import { normalizeString } from "../_common/normalize_string.js";
6
- import { isPathSeparator, isWindowsDeviceRoot } from "./_util.js";
7
- import { fromFileUrl } from "./from_file_url.js";
8
- /**
9
- * Normalize the `path`, resolving `'..'` and `'.'` segments.
10
- * Note that resolving these segments does not necessarily mean that all will be eliminated.
11
- * A `'..'` at the top-level will be preserved, and an empty path is canonically `'.'`.
12
- *
13
- * @example Usage
14
- * ```ts
15
- * import { normalize } from "@std/path/windows/normalize";
16
- * import { assertEquals } from "@std/assert";
17
- *
18
- * assertEquals(normalize("C:\\foo\\..\\bar"), "C:\\bar");
19
- * assertEquals(normalize(new URL("file:///C:/foo/../bar")), "C:\\bar");
20
- * ```
21
- *
22
- * @param path The path to normalize
23
- * @returns The normalized path
24
- */
25
- export function normalize(path) {
26
- if (path instanceof URL) {
27
- path = fromFileUrl(path);
28
- }
29
- assertArg(path);
30
- const len = path.length;
31
- let rootEnd = 0;
32
- let device;
33
- let isAbsolute = false;
34
- const code = path.charCodeAt(0);
35
- // Try to match a root
36
- if (len > 1) {
37
- if (isPathSeparator(code)) {
38
- // Possible UNC root
39
- // If we started with a separator, we know we at least have an absolute
40
- // path of some kind (UNC or otherwise)
41
- isAbsolute = true;
42
- if (isPathSeparator(path.charCodeAt(1))) {
43
- // Matched double path separator at beginning
44
- let j = 2;
45
- let last = j;
46
- // Match 1 or more non-path separators
47
- for (; j < len; ++j) {
48
- if (isPathSeparator(path.charCodeAt(j)))
49
- break;
50
- }
51
- if (j < len && j !== last) {
52
- const firstPart = path.slice(last, j);
53
- // Matched!
54
- last = j;
55
- // Match 1 or more path separators
56
- for (; j < len; ++j) {
57
- if (!isPathSeparator(path.charCodeAt(j)))
58
- break;
59
- }
60
- if (j < len && j !== last) {
61
- // Matched!
62
- last = j;
63
- // Match 1 or more non-path separators
64
- for (; j < len; ++j) {
65
- if (isPathSeparator(path.charCodeAt(j)))
66
- break;
67
- }
68
- if (j === len) {
69
- // We matched a UNC root only
70
- // Return the normalized version of the UNC root since there
71
- // is nothing left to process
72
- return `\\\\${firstPart}\\${path.slice(last)}\\`;
73
- }
74
- else if (j !== last) {
75
- // We matched a UNC root with leftovers
76
- device = `\\\\${firstPart}\\${path.slice(last, j)}`;
77
- rootEnd = j;
78
- }
79
- }
80
- }
81
- }
82
- else {
83
- rootEnd = 1;
84
- }
85
- }
86
- else if (isWindowsDeviceRoot(code)) {
87
- // Possible device root
88
- if (path.charCodeAt(1) === CHAR_COLON) {
89
- device = path.slice(0, 2);
90
- rootEnd = 2;
91
- if (len > 2) {
92
- if (isPathSeparator(path.charCodeAt(2))) {
93
- // Treat separator following drive name as an absolute path
94
- // indicator
95
- isAbsolute = true;
96
- rootEnd = 3;
97
- }
98
- }
99
- }
100
- }
101
- }
102
- else if (isPathSeparator(code)) {
103
- // `path` contains just a path separator, exit early to avoid unnecessary
104
- // work
105
- return "\\";
106
- }
107
- let tail;
108
- if (rootEnd < len) {
109
- tail = normalizeString(path.slice(rootEnd), !isAbsolute, "\\", isPathSeparator);
110
- }
111
- else {
112
- tail = "";
113
- }
114
- if (tail.length === 0 && !isAbsolute)
115
- tail = ".";
116
- if (tail.length > 0 && isPathSeparator(path.charCodeAt(len - 1))) {
117
- tail += "\\";
118
- }
119
- if (device === undefined) {
120
- if (isAbsolute) {
121
- if (tail.length > 0)
122
- return `\\${tail}`;
123
- else
124
- return "\\";
125
- }
126
- return tail;
127
- }
128
- else if (isAbsolute) {
129
- if (tail.length > 0)
130
- return `${device}\\${tail}`;
131
- else
132
- return `${device}\\`;
133
- }
134
- return device + tail;
135
- }
@@ -1,32 +0,0 @@
1
- // Copyright 2018-2025 the Deno authors. MIT license.
2
- // This module is browser compatible.
3
- import { normalize } from "./normalize.js";
4
- import { SEPARATOR_PATTERN } from "./constants.js";
5
- /**
6
- * Like normalize(), but doesn't collapse "**\/.." when `globstar` is true.
7
- *
8
- * @example Usage
9
- * ```ts
10
- * import { normalizeGlob } from "@std/path/windows/normalize-glob";
11
- * import { assertEquals } from "@std/assert";
12
- *
13
- * const normalized = normalizeGlob("**\\foo\\..\\bar", { globstar: true });
14
- * assertEquals(normalized, "**\\bar");
15
- * ```
16
- *
17
- * @param glob The glob pattern to normalize.
18
- * @param options The options for glob pattern.
19
- * @returns The normalized glob pattern.
20
- */
21
- export function normalizeGlob(glob, options = {}) {
22
- const { globstar = false } = options;
23
- if (glob.match(/\0/g)) {
24
- throw new Error(`Glob contains invalid characters: "${glob}"`);
25
- }
26
- if (!globstar) {
27
- return normalize(glob);
28
- }
29
- const s = SEPARATOR_PATTERN.source;
30
- const badParentPattern = new RegExp(`(?<=(${s}|^)\\*\\*${s})\\.\\.(?=${s}|$)`, "g");
31
- return normalize(glob.replace(badParentPattern, "\0")).replace(/\0/g, "..");
32
- }
@@ -1,176 +0,0 @@
1
- // Copyright 2018-2025 the Deno authors. MIT license.
2
- // This module is browser compatible.
3
- import { CHAR_COLON, CHAR_DOT } from "../_common/constants.js";
4
- import { assertPath } from "../_common/assert_path.js";
5
- import { isPathSeparator, isWindowsDeviceRoot } from "./_util.js";
6
- /**
7
- * Return a `ParsedPath` object of the `path`.
8
- *
9
- * @example Usage
10
- * ```ts
11
- * import { parse } from "@std/path/windows/parse";
12
- * import { assertEquals } from "@std/assert";
13
- *
14
- * const parsed = parse("C:\\foo\\bar\\baz.ext");
15
- * assertEquals(parsed, {
16
- * root: "C:\\",
17
- * dir: "C:\\foo\\bar",
18
- * base: "baz.ext",
19
- * ext: ".ext",
20
- * name: "baz",
21
- * });
22
- * ```
23
- *
24
- * @param path The path to parse.
25
- * @returns The `ParsedPath` object.
26
- */
27
- export function parse(path) {
28
- assertPath(path);
29
- const ret = { root: "", dir: "", base: "", ext: "", name: "" };
30
- const len = path.length;
31
- if (len === 0)
32
- return ret;
33
- let rootEnd = 0;
34
- let code = path.charCodeAt(0);
35
- // Try to match a root
36
- if (len > 1) {
37
- if (isPathSeparator(code)) {
38
- // Possible UNC root
39
- rootEnd = 1;
40
- if (isPathSeparator(path.charCodeAt(1))) {
41
- // Matched double path separator at beginning
42
- let j = 2;
43
- let last = j;
44
- // Match 1 or more non-path separators
45
- for (; j < len; ++j) {
46
- if (isPathSeparator(path.charCodeAt(j)))
47
- break;
48
- }
49
- if (j < len && j !== last) {
50
- // Matched!
51
- last = j;
52
- // Match 1 or more path separators
53
- for (; j < len; ++j) {
54
- if (!isPathSeparator(path.charCodeAt(j)))
55
- break;
56
- }
57
- if (j < len && j !== last) {
58
- // Matched!
59
- last = j;
60
- // Match 1 or more non-path separators
61
- for (; j < len; ++j) {
62
- if (isPathSeparator(path.charCodeAt(j)))
63
- break;
64
- }
65
- if (j === len) {
66
- // We matched a UNC root only
67
- rootEnd = j;
68
- }
69
- else if (j !== last) {
70
- // We matched a UNC root with leftovers
71
- rootEnd = j + 1;
72
- }
73
- }
74
- }
75
- }
76
- }
77
- else if (isWindowsDeviceRoot(code)) {
78
- // Possible device root
79
- if (path.charCodeAt(1) === CHAR_COLON) {
80
- rootEnd = 2;
81
- if (len > 2) {
82
- if (isPathSeparator(path.charCodeAt(2))) {
83
- if (len === 3) {
84
- // `path` contains just a drive root, exit early to avoid
85
- // unnecessary work
86
- ret.root = ret.dir = path;
87
- ret.base = "\\";
88
- return ret;
89
- }
90
- rootEnd = 3;
91
- }
92
- }
93
- else {
94
- // `path` contains just a relative drive root, exit early to avoid
95
- // unnecessary work
96
- ret.root = ret.dir = path;
97
- return ret;
98
- }
99
- }
100
- }
101
- }
102
- else if (isPathSeparator(code)) {
103
- // `path` contains just a path separator, exit early to avoid
104
- // unnecessary work
105
- ret.root = ret.dir = path;
106
- ret.base = "\\";
107
- return ret;
108
- }
109
- if (rootEnd > 0)
110
- ret.root = path.slice(0, rootEnd);
111
- let startDot = -1;
112
- let startPart = rootEnd;
113
- let end = -1;
114
- let matchedSlash = true;
115
- let i = path.length - 1;
116
- // Track the state of characters (if any) we see before our first dot and
117
- // after any path separator we find
118
- let preDotState = 0;
119
- // Get non-dir info
120
- for (; i >= rootEnd; --i) {
121
- code = path.charCodeAt(i);
122
- if (isPathSeparator(code)) {
123
- // If we reached a path separator that was not part of a set of path
124
- // separators at the end of the string, stop now
125
- if (!matchedSlash) {
126
- startPart = i + 1;
127
- break;
128
- }
129
- continue;
130
- }
131
- if (end === -1) {
132
- // We saw the first non-path separator, mark this as the end of our
133
- // extension
134
- matchedSlash = false;
135
- end = i + 1;
136
- }
137
- if (code === CHAR_DOT) {
138
- // If this is our first dot, mark it as the start of our extension
139
- if (startDot === -1)
140
- startDot = i;
141
- else if (preDotState !== 1)
142
- preDotState = 1;
143
- }
144
- else if (startDot !== -1) {
145
- // We saw a non-dot and non-path separator before our dot, so we should
146
- // have a good chance at having a non-empty extension
147
- preDotState = -1;
148
- }
149
- }
150
- if (startDot === -1 ||
151
- end === -1 ||
152
- // We saw a non-dot character immediately before the dot
153
- preDotState === 0 ||
154
- // The (right-most) trimmed path component is exactly '..'
155
- (preDotState === 1 && startDot === end - 1 && startDot === startPart + 1)) {
156
- if (end !== -1) {
157
- ret.base = ret.name = path.slice(startPart, end);
158
- }
159
- }
160
- else {
161
- ret.name = path.slice(startPart, startDot);
162
- ret.base = path.slice(startPart, end);
163
- ret.ext = path.slice(startDot, end);
164
- }
165
- // Fallback to '\' in case there is no basename
166
- ret.base = ret.base || "\\";
167
- // If the directory is the root, use the entire root as the `dir` including
168
- // the trailing slash if any (`C:\abc` -> `C:\`). Otherwise, strip out the
169
- // trailing slash (`C:\abc\def` -> `C:\abc`).
170
- if (startPart > 0 && startPart !== rootEnd) {
171
- ret.dir = path.slice(0, startPart - 1);
172
- }
173
- else
174
- ret.dir = ret.root;
175
- return ret;
176
- }