@powerlines/core 0.15.0 → 0.15.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 (391) hide show
  1. package/dist/constants/api.cjs +6 -5
  2. package/dist/constants/api.d.cts +3 -3
  3. package/dist/constants/api.d.cts.map +1 -1
  4. package/dist/constants/api.d.mts +3 -3
  5. package/dist/constants/api.d.mts.map +1 -1
  6. package/dist/constants/api.mjs +4 -4
  7. package/dist/constants/api.mjs.map +1 -1
  8. package/dist/constants/commands.cjs +3 -2
  9. package/dist/constants/commands.d.cts +1 -1
  10. package/dist/constants/commands.d.mts +1 -1
  11. package/dist/constants/commands.mjs +2 -2
  12. package/dist/constants/commands.mjs.map +1 -1
  13. package/dist/constants/devtools.cjs +23 -0
  14. package/dist/constants/devtools.d.cts +13 -0
  15. package/dist/constants/devtools.d.cts.map +1 -0
  16. package/dist/constants/devtools.d.mts +13 -0
  17. package/dist/constants/devtools.d.mts.map +1 -0
  18. package/dist/constants/devtools.mjs +14 -0
  19. package/dist/constants/devtools.mjs.map +1 -0
  20. package/dist/constants/environments.cjs +1 -0
  21. package/dist/constants/extensions.cjs +21 -0
  22. package/dist/constants/extensions.d.cts +5 -0
  23. package/dist/constants/extensions.d.cts.map +1 -0
  24. package/dist/constants/extensions.d.mts +5 -0
  25. package/dist/constants/extensions.d.mts.map +1 -0
  26. package/dist/constants/extensions.mjs +20 -0
  27. package/dist/constants/extensions.mjs.map +1 -0
  28. package/dist/constants/fs.cjs +1 -0
  29. package/dist/constants/hooks.cjs +1 -0
  30. package/dist/constants/index.cjs +48 -30
  31. package/dist/constants/index.d.cts +5 -3
  32. package/dist/constants/index.d.mts +5 -3
  33. package/dist/constants/index.mjs +5 -3
  34. package/dist/constants/log-level.cjs +90 -0
  35. package/dist/constants/log-level.d.cts +63 -0
  36. package/dist/constants/log-level.d.cts.map +1 -0
  37. package/dist/constants/log-level.d.mts +63 -0
  38. package/dist/constants/log-level.d.mts.map +1 -0
  39. package/dist/constants/log-level.mjs +82 -0
  40. package/dist/constants/log-level.mjs.map +1 -0
  41. package/dist/constants/meta.cjs +1 -0
  42. package/dist/constants/plugin.cjs +3 -2
  43. package/dist/constants/plugin.d.cts +2 -2
  44. package/dist/constants/plugin.d.mts +2 -2
  45. package/dist/context/base-context.cjs +127 -0
  46. package/dist/context/base-context.d.cts +81 -0
  47. package/dist/context/base-context.d.cts.map +1 -0
  48. package/dist/context/base-context.d.mts +81 -0
  49. package/dist/context/base-context.d.mts.map +1 -0
  50. package/dist/context/base-context.mjs +125 -0
  51. package/dist/context/base-context.mjs.map +1 -0
  52. package/dist/context/context.cjs +934 -0
  53. package/dist/context/context.d.cts +369 -0
  54. package/dist/context/context.d.cts.map +1 -0
  55. package/dist/context/context.d.mts +369 -0
  56. package/dist/context/context.d.mts.map +1 -0
  57. package/dist/context/context.mjs +932 -0
  58. package/dist/context/context.mjs.map +1 -0
  59. package/dist/context/environment-context.cjs +219 -0
  60. package/dist/context/environment-context.d.cts +100 -0
  61. package/dist/context/environment-context.d.cts.map +1 -0
  62. package/dist/context/environment-context.d.mts +100 -0
  63. package/dist/context/environment-context.d.mts.map +1 -0
  64. package/dist/context/environment-context.mjs +218 -0
  65. package/dist/context/environment-context.mjs.map +1 -0
  66. package/dist/context/execution-context.cjs +230 -0
  67. package/dist/context/execution-context.d.cts +101 -0
  68. package/dist/context/execution-context.d.cts.map +1 -0
  69. package/dist/context/execution-context.d.mts +101 -0
  70. package/dist/context/execution-context.d.mts.map +1 -0
  71. package/dist/context/execution-context.mjs +228 -0
  72. package/dist/context/execution-context.mjs.map +1 -0
  73. package/dist/context/index.cjs +12 -0
  74. package/dist/context/index.d.cts +6 -0
  75. package/dist/context/index.d.mts +6 -0
  76. package/dist/context/index.mjs +7 -0
  77. package/dist/context/plugin-context.cjs +83 -0
  78. package/dist/context/plugin-context.d.cts +18 -0
  79. package/dist/context/plugin-context.d.cts.map +1 -0
  80. package/dist/context/plugin-context.d.mts +18 -0
  81. package/dist/context/plugin-context.d.mts.map +1 -0
  82. package/dist/context/plugin-context.mjs +82 -0
  83. package/dist/context/plugin-context.mjs.map +1 -0
  84. package/dist/index.cjs +62 -9
  85. package/dist/index.d.cts +20 -9
  86. package/dist/index.d.mts +20 -9
  87. package/dist/index.mjs +17 -5
  88. package/dist/lib/config.cjs +160 -15
  89. package/dist/lib/config.d.cts +92 -6
  90. package/dist/lib/config.d.cts.map +1 -1
  91. package/dist/lib/config.d.mts +92 -6
  92. package/dist/lib/config.d.mts.map +1 -1
  93. package/dist/lib/config.mjs +154 -16
  94. package/dist/lib/config.mjs.map +1 -1
  95. package/dist/lib/context-helpers.cjs +43 -0
  96. package/dist/lib/context-helpers.d.cts +19 -0
  97. package/dist/lib/context-helpers.d.cts.map +1 -0
  98. package/dist/lib/context-helpers.d.mts +19 -0
  99. package/dist/lib/context-helpers.d.mts.map +1 -0
  100. package/dist/lib/context-helpers.mjs +41 -0
  101. package/dist/lib/context-helpers.mjs.map +1 -0
  102. package/dist/lib/entry.cjs +5 -5
  103. package/dist/lib/entry.d.cts.map +1 -1
  104. package/dist/lib/entry.d.mts.map +1 -1
  105. package/dist/lib/entry.mjs +5 -5
  106. package/dist/lib/entry.mjs.map +1 -1
  107. package/dist/lib/environment.cjs +72 -0
  108. package/dist/lib/environment.d.cts +12 -0
  109. package/dist/lib/environment.d.cts.map +1 -0
  110. package/dist/lib/environment.d.mts +12 -0
  111. package/dist/lib/environment.d.mts.map +1 -0
  112. package/dist/lib/environment.mjs +67 -0
  113. package/dist/lib/environment.mjs.map +1 -0
  114. package/dist/lib/events.cjs +43 -0
  115. package/dist/lib/events.d.cts +10 -0
  116. package/dist/lib/events.d.cts.map +1 -0
  117. package/dist/lib/events.d.mts +10 -0
  118. package/dist/lib/events.d.mts.map +1 -0
  119. package/dist/lib/events.mjs +42 -0
  120. package/dist/lib/events.mjs.map +1 -0
  121. package/dist/lib/generate-types.cjs +371 -0
  122. package/dist/lib/generate-types.d.cts +67 -0
  123. package/dist/lib/generate-types.d.cts.map +1 -0
  124. package/dist/lib/generate-types.d.mts +67 -0
  125. package/dist/lib/generate-types.d.mts.map +1 -0
  126. package/dist/lib/generate-types.mjs +368 -0
  127. package/dist/lib/generate-types.mjs.map +1 -0
  128. package/dist/lib/hooks.cjs +152 -0
  129. package/dist/lib/hooks.d.cts +28 -0
  130. package/dist/lib/hooks.d.cts.map +1 -0
  131. package/dist/lib/hooks.d.mts +28 -0
  132. package/dist/lib/hooks.d.mts.map +1 -0
  133. package/dist/lib/hooks.mjs +147 -0
  134. package/dist/lib/hooks.mjs.map +1 -0
  135. package/dist/lib/index.cjs +64 -9
  136. package/dist/lib/index.d.cts +15 -3
  137. package/dist/lib/index.d.mts +15 -3
  138. package/dist/lib/index.mjs +19 -5
  139. package/dist/lib/install-dependencies.cjs +25 -0
  140. package/dist/lib/install-dependencies.d.cts +12 -0
  141. package/dist/lib/install-dependencies.d.cts.map +1 -0
  142. package/dist/lib/install-dependencies.d.mts +12 -0
  143. package/dist/lib/install-dependencies.d.mts.map +1 -0
  144. package/dist/lib/install-dependencies.mjs +24 -0
  145. package/dist/lib/install-dependencies.mjs.map +1 -0
  146. package/dist/lib/meta.cjs +57 -0
  147. package/dist/lib/meta.d.cts +34 -0
  148. package/dist/lib/meta.d.cts.map +1 -0
  149. package/dist/lib/meta.d.mts +34 -0
  150. package/dist/lib/meta.d.mts.map +1 -0
  151. package/dist/lib/meta.mjs +54 -0
  152. package/dist/lib/meta.mjs.map +1 -0
  153. package/dist/lib/plugins.cjs +150 -0
  154. package/dist/lib/plugins.d.cts +40 -0
  155. package/dist/lib/plugins.d.cts.map +1 -0
  156. package/dist/lib/plugins.d.mts +40 -0
  157. package/dist/lib/plugins.d.mts.map +1 -0
  158. package/dist/lib/plugins.mjs +146 -0
  159. package/dist/lib/plugins.mjs.map +1 -0
  160. package/dist/lib/resolver.cjs +35 -0
  161. package/dist/lib/resolver.d.cts +21 -0
  162. package/dist/lib/resolver.d.cts.map +1 -0
  163. package/dist/lib/resolver.d.mts +21 -0
  164. package/dist/lib/resolver.d.mts.map +1 -0
  165. package/dist/lib/resolver.mjs +33 -0
  166. package/dist/lib/resolver.mjs.map +1 -0
  167. package/dist/lib/schemas.cjs +9 -0
  168. package/dist/lib/schemas.d.cts +2 -0
  169. package/dist/lib/schemas.d.mts +2 -0
  170. package/dist/lib/schemas.mjs +3 -0
  171. package/dist/lib/streaming-channel.cjs +260 -0
  172. package/dist/lib/streaming-channel.d.cts +133 -0
  173. package/dist/lib/streaming-channel.d.cts.map +1 -0
  174. package/dist/lib/streaming-channel.d.mts +133 -0
  175. package/dist/lib/streaming-channel.d.mts.map +1 -0
  176. package/dist/lib/streaming-channel.mjs +258 -0
  177. package/dist/lib/streaming-channel.mjs.map +1 -0
  178. package/dist/lib/typescript/index.cjs +16 -0
  179. package/dist/lib/typescript/index.d.cts +3 -0
  180. package/dist/lib/typescript/index.d.mts +3 -0
  181. package/dist/lib/typescript/index.mjs +4 -0
  182. package/dist/lib/typescript/ts-morph.cjs +105 -0
  183. package/dist/lib/typescript/ts-morph.d.cts +38 -0
  184. package/dist/lib/typescript/ts-morph.d.cts.map +1 -0
  185. package/dist/lib/typescript/ts-morph.d.mts +38 -0
  186. package/dist/lib/typescript/ts-morph.d.mts.map +1 -0
  187. package/dist/lib/typescript/ts-morph.mjs +102 -0
  188. package/dist/lib/typescript/ts-morph.mjs.map +1 -0
  189. package/dist/lib/typescript/tsconfig.cjs +253 -0
  190. package/dist/lib/typescript/tsconfig.d.cts +77 -0
  191. package/dist/lib/typescript/tsconfig.d.cts.map +1 -0
  192. package/dist/lib/typescript/tsconfig.d.mts +77 -0
  193. package/dist/lib/typescript/tsconfig.d.mts.map +1 -0
  194. package/dist/lib/typescript/tsconfig.mjs +240 -0
  195. package/dist/lib/typescript/tsconfig.mjs.map +1 -0
  196. package/dist/lib/unplugin/helpers.cjs +2 -2
  197. package/dist/lib/unplugin/module-resolution.cjs +18 -18
  198. package/dist/lib/unplugin/module-resolution.mjs +18 -18
  199. package/dist/lib/unplugin/module-resolution.mjs.map +1 -1
  200. package/dist/lib/unplugin/plugin.cjs +55 -62
  201. package/dist/lib/unplugin/plugin.d.cts +10 -11
  202. package/dist/lib/unplugin/plugin.d.cts.map +1 -1
  203. package/dist/lib/unplugin/plugin.d.mts +10 -11
  204. package/dist/lib/unplugin/plugin.d.mts.map +1 -1
  205. package/dist/lib/unplugin/plugin.mjs +55 -62
  206. package/dist/lib/unplugin/plugin.mjs.map +1 -1
  207. package/dist/lib/utilities/file-header.cjs +2 -2
  208. package/dist/lib/utilities/file-header.mjs +2 -2
  209. package/dist/lib/utilities/file-header.mjs.map +1 -1
  210. package/dist/lib/utilities/format.cjs +1 -1
  211. package/dist/lib/utilities/format.mjs +1 -1
  212. package/dist/lib/utilities/index.cjs +2 -2
  213. package/dist/lib/utilities/index.mjs +2 -2
  214. package/dist/lib/utilities/write-file.cjs +1 -2
  215. package/dist/lib/utilities/write-file.d.cts +1 -1
  216. package/dist/lib/utilities/write-file.d.cts.map +1 -1
  217. package/dist/lib/utilities/write-file.d.mts +1 -1
  218. package/dist/lib/utilities/write-file.d.mts.map +1 -1
  219. package/dist/lib/utilities/write-file.mjs +1 -2
  220. package/dist/lib/utilities/write-file.mjs.map +1 -1
  221. package/dist/lib/vfs.cjs +1104 -0
  222. package/dist/lib/vfs.d.cts +321 -0
  223. package/dist/lib/vfs.d.cts.map +1 -0
  224. package/dist/lib/vfs.d.mts +321 -0
  225. package/dist/lib/vfs.d.mts.map +1 -0
  226. package/dist/lib/vfs.mjs +1102 -0
  227. package/dist/lib/vfs.mjs.map +1 -0
  228. package/dist/plugin-base.cjs +1 -1
  229. package/dist/plugin-base.mjs +1 -1
  230. package/dist/plugin-base.mjs.map +1 -1
  231. package/dist/plugin-utils/build-helpers.cjs +2 -2
  232. package/dist/plugin-utils/build-helpers.mjs +2 -2
  233. package/dist/plugin-utils/build-helpers.mjs.map +1 -1
  234. package/dist/plugin-utils/context-helpers.cjs +22 -12
  235. package/dist/plugin-utils/context-helpers.d.cts +9 -1
  236. package/dist/plugin-utils/context-helpers.d.cts.map +1 -1
  237. package/dist/plugin-utils/context-helpers.d.mts +9 -1
  238. package/dist/plugin-utils/context-helpers.d.mts.map +1 -1
  239. package/dist/plugin-utils/context-helpers.mjs +22 -13
  240. package/dist/plugin-utils/context-helpers.mjs.map +1 -1
  241. package/dist/plugin-utils/filter.cjs +13 -5
  242. package/dist/plugin-utils/filter.d.cts +2 -1
  243. package/dist/plugin-utils/filter.d.cts.map +1 -1
  244. package/dist/plugin-utils/filter.d.mts +2 -1
  245. package/dist/plugin-utils/filter.d.mts.map +1 -1
  246. package/dist/plugin-utils/filter.mjs +13 -6
  247. package/dist/plugin-utils/filter.mjs.map +1 -1
  248. package/dist/plugin-utils/format.cjs +44 -0
  249. package/dist/plugin-utils/format.d.cts +11 -0
  250. package/dist/plugin-utils/format.d.cts.map +1 -0
  251. package/dist/plugin-utils/format.d.mts +11 -0
  252. package/dist/plugin-utils/format.d.mts.map +1 -0
  253. package/dist/plugin-utils/format.mjs +43 -0
  254. package/dist/plugin-utils/format.mjs.map +1 -0
  255. package/dist/plugin-utils/helpers.cjs +6 -6
  256. package/dist/plugin-utils/helpers.d.cts +15 -15
  257. package/dist/plugin-utils/helpers.d.cts.map +1 -1
  258. package/dist/plugin-utils/helpers.d.mts +15 -15
  259. package/dist/plugin-utils/helpers.d.mts.map +1 -1
  260. package/dist/plugin-utils/helpers.mjs +1 -1
  261. package/dist/plugin-utils/helpers.mjs.map +1 -1
  262. package/dist/plugin-utils/index.cjs +34 -4
  263. package/dist/plugin-utils/index.d.cts +7 -4
  264. package/dist/plugin-utils/index.d.mts +7 -4
  265. package/dist/plugin-utils/index.mjs +9 -6
  266. package/dist/plugin-utils/install.cjs +47 -0
  267. package/dist/plugin-utils/install.d.cts +23 -0
  268. package/dist/plugin-utils/install.d.cts.map +1 -0
  269. package/dist/plugin-utils/install.d.mts +23 -0
  270. package/dist/plugin-utils/install.d.mts.map +1 -0
  271. package/dist/plugin-utils/install.mjs +45 -0
  272. package/dist/plugin-utils/install.mjs.map +1 -0
  273. package/dist/plugin-utils/logging.cjs +588 -1
  274. package/dist/plugin-utils/logging.d.cts +93 -1
  275. package/dist/plugin-utils/logging.d.cts.map +1 -1
  276. package/dist/plugin-utils/logging.d.mts +93 -1
  277. package/dist/plugin-utils/logging.d.mts.map +1 -1
  278. package/dist/plugin-utils/logging.mjs +572 -1
  279. package/dist/plugin-utils/logging.mjs.map +1 -1
  280. package/dist/plugin-utils/merge.cjs +1 -1
  281. package/dist/plugin-utils/merge.mjs +1 -1
  282. package/dist/plugin-utils/modules.cjs +1 -1
  283. package/dist/plugin-utils/modules.mjs +1 -1
  284. package/dist/plugin-utils/modules.mjs.map +1 -1
  285. package/dist/plugin-utils/paths.cjs +6 -2
  286. package/dist/plugin-utils/paths.mjs +6 -2
  287. package/dist/plugin-utils/paths.mjs.map +1 -1
  288. package/dist/plugin-utils/virtual.cjs +80 -0
  289. package/dist/plugin-utils/virtual.d.cts +69 -0
  290. package/dist/plugin-utils/virtual.d.cts.map +1 -0
  291. package/dist/plugin-utils/virtual.d.mts +69 -0
  292. package/dist/plugin-utils/virtual.d.mts.map +1 -0
  293. package/dist/plugin-utils/virtual.mjs +73 -0
  294. package/dist/plugin-utils/virtual.mjs.map +1 -0
  295. package/dist/schemas/fs.cjs +232 -0
  296. package/dist/schemas/fs.d.cts +127 -0
  297. package/dist/schemas/fs.d.cts.map +1 -0
  298. package/dist/schemas/fs.d.mts +127 -0
  299. package/dist/schemas/fs.d.mts.map +1 -0
  300. package/dist/schemas/fs.mjs +226 -0
  301. package/dist/schemas/fs.mjs.map +1 -0
  302. package/dist/storage/base.cjs +216 -0
  303. package/dist/storage/base.d.cts +201 -0
  304. package/dist/storage/base.d.cts.map +1 -0
  305. package/dist/storage/base.d.mts +201 -0
  306. package/dist/storage/base.d.mts.map +1 -0
  307. package/dist/storage/base.mjs +215 -0
  308. package/dist/storage/base.mjs.map +1 -0
  309. package/dist/storage/file-system.cjs +180 -0
  310. package/dist/storage/file-system.d.cts +129 -0
  311. package/dist/storage/file-system.d.cts.map +1 -0
  312. package/dist/storage/file-system.d.mts +129 -0
  313. package/dist/storage/file-system.d.mts.map +1 -0
  314. package/dist/storage/file-system.mjs +179 -0
  315. package/dist/storage/file-system.mjs.map +1 -0
  316. package/dist/storage/helpers.cjs +37 -0
  317. package/dist/storage/helpers.d.cts +25 -0
  318. package/dist/storage/helpers.d.cts.map +1 -0
  319. package/dist/storage/helpers.d.mts +25 -0
  320. package/dist/storage/helpers.d.mts.map +1 -0
  321. package/dist/storage/helpers.mjs +34 -0
  322. package/dist/storage/helpers.mjs.map +1 -0
  323. package/dist/storage/index.cjs +12 -0
  324. package/dist/storage/index.d.cts +5 -0
  325. package/dist/storage/index.d.mts +5 -0
  326. package/dist/storage/index.mjs +6 -0
  327. package/dist/storage/virtual.cjs +98 -0
  328. package/dist/storage/virtual.d.cts +80 -0
  329. package/dist/storage/virtual.d.cts.map +1 -0
  330. package/dist/storage/virtual.d.mts +80 -0
  331. package/dist/storage/virtual.d.mts.map +1 -0
  332. package/dist/storage/virtual.mjs +97 -0
  333. package/dist/storage/virtual.mjs.map +1 -0
  334. package/dist/types/api.d.cts +18 -152
  335. package/dist/types/api.d.cts.map +1 -1
  336. package/dist/types/api.d.mts +18 -152
  337. package/dist/types/api.d.mts.map +1 -1
  338. package/dist/types/config.d.cts +194 -135
  339. package/dist/types/config.d.cts.map +1 -1
  340. package/dist/types/config.d.mts +195 -136
  341. package/dist/types/config.d.mts.map +1 -1
  342. package/dist/types/context.d.cts +152 -128
  343. package/dist/types/context.d.cts.map +1 -1
  344. package/dist/types/context.d.mts +155 -131
  345. package/dist/types/context.d.mts.map +1 -1
  346. package/dist/types/fs.d.mts +1 -1
  347. package/dist/types/index.d.cts +5 -6
  348. package/dist/types/index.d.mts +5 -6
  349. package/dist/types/logging.d.cts +161 -0
  350. package/dist/types/logging.d.cts.map +1 -0
  351. package/dist/types/logging.d.mts +161 -0
  352. package/dist/types/logging.d.mts.map +1 -0
  353. package/dist/types/plugin.d.cts +6 -9
  354. package/dist/types/plugin.d.cts.map +1 -1
  355. package/dist/types/plugin.d.mts +6 -9
  356. package/dist/types/plugin.d.mts.map +1 -1
  357. package/dist/types/tsconfig.d.mts +1 -1
  358. package/dist/types/unplugin.d.cts +5 -26
  359. package/dist/types/unplugin.d.cts.map +1 -1
  360. package/dist/types/unplugin.d.mts +5 -26
  361. package/dist/types/unplugin.d.mts.map +1 -1
  362. package/package.json +259 -457
  363. package/schemas/fs.capnp +42 -0
  364. package/dist/constants/virtual-modules.cjs +0 -8
  365. package/dist/constants/virtual-modules.d.cts +0 -6
  366. package/dist/constants/virtual-modules.d.cts.map +0 -1
  367. package/dist/constants/virtual-modules.d.mts +0 -6
  368. package/dist/constants/virtual-modules.d.mts.map +0 -1
  369. package/dist/constants/virtual-modules.mjs +0 -7
  370. package/dist/constants/virtual-modules.mjs.map +0 -1
  371. package/dist/lib/logger.cjs +0 -99
  372. package/dist/lib/logger.d.cts +0 -53
  373. package/dist/lib/logger.d.cts.map +0 -1
  374. package/dist/lib/logger.d.mts +0 -53
  375. package/dist/lib/logger.d.mts.map +0 -1
  376. package/dist/lib/logger.mjs +0 -93
  377. package/dist/lib/logger.mjs.map +0 -1
  378. package/dist/types/_internal.cjs +0 -0
  379. package/dist/types/_internal.d.cts +0 -106
  380. package/dist/types/_internal.d.cts.map +0 -1
  381. package/dist/types/_internal.d.mts +0 -106
  382. package/dist/types/_internal.d.mts.map +0 -1
  383. package/dist/types/_internal.mjs +0 -1
  384. package/dist/types/commands.d.cts +0 -16
  385. package/dist/types/commands.d.cts.map +0 -1
  386. package/dist/types/commands.d.mts +0 -16
  387. package/dist/types/commands.d.mts.map +0 -1
  388. package/dist/types/utils.d.cts +0 -9
  389. package/dist/types/utils.d.cts.map +0 -1
  390. package/dist/types/utils.d.mts +0 -9
  391. package/dist/types/utils.d.mts.map +0 -1
@@ -0,0 +1,216 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
+ const require_runtime = require('../_virtual/_rolldown/runtime.cjs');
3
+ let _stryke_path_append = require("@stryke/path/append");
4
+ let _stryke_path_join = require("@stryke/path/join");
5
+ let node_path = require("node:path");
6
+ let _stryke_path_correct_path = require("@stryke/path/correct-path");
7
+
8
+ //#region src/storage/base.ts
9
+ /**
10
+ * Abstract base class for storage adapters, providing a template for storage operations.
11
+ */
12
+ var BaseStorageAdapter = class {
13
+ /**
14
+ * Indicates whether the storage adapter has been disposed.
15
+ */
16
+ #isDisposed = false;
17
+ /**
18
+ * Configuration options for the storage adapter.
19
+ */
20
+ options;
21
+ /**
22
+ * The storage preset for the adapter.
23
+ *
24
+ * @remarks
25
+ * This can be used as an alternate way to identify the type of storage being used.
26
+ */
27
+ preset = null;
28
+ /**
29
+ * Constructor for the BaseStorageAdapter.
30
+ *
31
+ * @param context - The Powerlines context.
32
+ * @param options - Configuration options for the storage adapter.
33
+ */
34
+ constructor(context, options = { base: "/" }) {
35
+ this.context = context;
36
+ this.options = options;
37
+ this.options.base = (0, node_path.resolve)(options.base);
38
+ this.options.isReadOnly = !!options.isReadOnly;
39
+ }
40
+ /**
41
+ * Asynchronously checks if a key exists in the storage.
42
+ *
43
+ * @param key - The key to check for existence.
44
+ * @returns A promise that resolves to `true` if the key exists, otherwise `false`.
45
+ */
46
+ async exists(key) {
47
+ return this.existsSync(key);
48
+ }
49
+ /**
50
+ * Asynchronously retrieves the value associated with a given key.
51
+ *
52
+ * @param key - The key whose value is to be retrieved.
53
+ * @returns A promise that resolves to the value associated with the key, or `null` if the key does not exist.
54
+ */
55
+ async get(key) {
56
+ return this.getSync(key);
57
+ }
58
+ /**
59
+ * Asynchronously sets the value for a given key.
60
+ *
61
+ * @param key - The key to set the value for.
62
+ * @param value - The value to set.
63
+ */
64
+ async set(key, value) {
65
+ if (!this.isReadOnly && (!this.existsSync(key) || this.overwrite)) this.setSync(key, value);
66
+ }
67
+ /**
68
+ * Synchronously creates a directory at the specified path.
69
+ *
70
+ * @param _ - The path of the directory to create.
71
+ */
72
+ mkdirSync(_) {}
73
+ /**
74
+ * Creates a directory at the specified path.
75
+ *
76
+ * @param dirPath - The path of the directory to create.
77
+ */
78
+ async mkdir(dirPath) {
79
+ return Promise.resolve(this.mkdirSync(dirPath));
80
+ }
81
+ /**
82
+ * Asynchronously removes a key from the storage.
83
+ *
84
+ * @param key - The key to remove.
85
+ */
86
+ async remove(key) {
87
+ if (!this.isReadOnly && this.overwrite) this.removeSync(key);
88
+ }
89
+ /**
90
+ * Synchronously removes all entries from the storage that match the provided base path.
91
+ *
92
+ * @param base - The base path to clear keys from.
93
+ */
94
+ clearSync(base) {
95
+ if (!this.isReadOnly && this.overwrite) {
96
+ const keys = this.listSync(base || this.options.base);
97
+ if (!keys.length) return;
98
+ keys.map((key) => this.removeSync(base && !key.startsWith(base) ? (0, _stryke_path_join.joinPaths)(base, key) : key));
99
+ }
100
+ }
101
+ /**
102
+ * Asynchronously removes all entries from the storage that match the provided base path.
103
+ *
104
+ * @param base - The base path to clear keys from.
105
+ * @returns A promise that resolves when the operation is complete.
106
+ */
107
+ async clear(base) {
108
+ if (!this.isReadOnly && this.overwrite) {
109
+ const keys = await this.list(base || this.options.base);
110
+ if (!keys.length) return;
111
+ await Promise.all(keys.map(async (key) => this.remove(base && !key.startsWith(base) ? (0, _stryke_path_join.joinPaths)(base, key) : key)));
112
+ }
113
+ }
114
+ /**
115
+ * Asynchronously lists all keys under a given base path.
116
+ *
117
+ * @param base - The base path to list keys from.
118
+ * @returns A promise that resolves to an array of keys under the specified base path.
119
+ */
120
+ async list(base) {
121
+ return this.listSync(base);
122
+ }
123
+ /**
124
+ * Synchronously checks if the given key is a directory.
125
+ *
126
+ * @param _ - The key to check.
127
+ * @returns `true` if the key is a directory, otherwise `false`.
128
+ */
129
+ isDirectorySync(_) {
130
+ return false;
131
+ }
132
+ /**
133
+ * Checks if the given key is a directory.
134
+ *
135
+ * @param key - The key to check.
136
+ * @returns A promise that resolves to `true` if the key is a directory, otherwise `false`.
137
+ */
138
+ async isDirectory(key) {
139
+ return Promise.resolve(this.isDirectorySync(key));
140
+ }
141
+ /**
142
+ * Synchronously checks if the given key is a file.
143
+ *
144
+ * @param key - The key to check.
145
+ * @returns `true` if the key is a file, otherwise `false`.
146
+ */
147
+ isFileSync(key) {
148
+ return this.existsSync(key) && !this.isDirectorySync(key);
149
+ }
150
+ /**
151
+ * Checks if the given key is a file.
152
+ *
153
+ * @param key - The key to check.
154
+ * @returns A promise that resolves to `true` if the key is a file, otherwise `false`.
155
+ */
156
+ async isFile(key) {
157
+ return Promise.resolve(this.isFileSync(key));
158
+ }
159
+ /**
160
+ * Disposes of the storage adapter, releasing any held resources.
161
+ *
162
+ * @returns A promise that resolves when the disposal is complete.
163
+ */
164
+ dispose() {
165
+ return Promise.resolve();
166
+ }
167
+ /**
168
+ * Async dispose method to clean up resources.
169
+ *
170
+ * @returns A promise that resolves when disposal is complete.
171
+ */
172
+ async [Symbol.asyncDispose]() {
173
+ return this._dispose();
174
+ }
175
+ /**
176
+ * Determines if the storage adapter is read-only based on the provided options.
177
+ *
178
+ * @returns `true` if the storage adapter is read-only, otherwise `false`.
179
+ */
180
+ get isReadOnly() {
181
+ return !!this.options.isReadOnly;
182
+ }
183
+ /**
184
+ * Determines if the storage adapter should overwrite existing keys based on the provided options and context configuration.
185
+ *
186
+ * @returns `true` if the storage adapter should overwrite existing keys, otherwise `false`.
187
+ */
188
+ get overwrite() {
189
+ return !this.isReadOnly && this.context.config.output.overwrite !== false;
190
+ }
191
+ /**
192
+ * Resolves a given key to its full path within the storage adapter.
193
+ *
194
+ * @param key - The key to resolve.
195
+ * @returns The resolved full path for the key.
196
+ */
197
+ resolve(key) {
198
+ if (!key) return this.options.base;
199
+ if (/\.\.:|\.\.$/.test(key)) throw new Error(`[${this.name}]: Invalid key: ${JSON.stringify(key)} provided to storage adapter.`);
200
+ return (0, _stryke_path_append.appendPath)((0, _stryke_path_correct_path.correctPath)(key).replace(/:/g, "/"), this.options.base);
201
+ }
202
+ /**
203
+ * Disposes of the storage adapter, releasing any held resources.
204
+ *
205
+ * @returns A promise that resolves when the disposal is complete.
206
+ */
207
+ async _dispose() {
208
+ if (!this.#isDisposed) {
209
+ await Promise.resolve(this.dispose());
210
+ this.#isDisposed = true;
211
+ }
212
+ }
213
+ };
214
+
215
+ //#endregion
216
+ exports.BaseStorageAdapter = BaseStorageAdapter;
@@ -0,0 +1,201 @@
1
+ import { StorageAdapter, StoragePreset } from "../types/fs.cjs";
2
+ import { Context } from "../types/context.cjs";
3
+ import { MaybePromise } from "@stryke/types/base";
4
+
5
+ //#region src/storage/base.d.ts
6
+ interface StorageAdapterOptions {
7
+ base: string;
8
+ isReadOnly?: boolean;
9
+ ignore?: string | string[];
10
+ }
11
+ /**
12
+ * Abstract base class for storage adapters, providing a template for storage operations.
13
+ */
14
+ declare abstract class BaseStorageAdapter<TOptions extends StorageAdapterOptions = StorageAdapterOptions> implements StorageAdapter {
15
+ #private;
16
+ protected context: Context;
17
+ /**
18
+ * A name identifying the storage adapter type.
19
+ */
20
+ abstract name: string;
21
+ /**
22
+ * Configuration options for the storage adapter.
23
+ */
24
+ options: TOptions;
25
+ /**
26
+ * The storage preset for the adapter.
27
+ *
28
+ * @remarks
29
+ * This can be used as an alternate way to identify the type of storage being used.
30
+ */
31
+ readonly preset?: StoragePreset | null;
32
+ /**
33
+ * Constructor for the BaseStorageAdapter.
34
+ *
35
+ * @param context - The Powerlines context.
36
+ * @param options - Configuration options for the storage adapter.
37
+ */
38
+ constructor(context: Context, options?: TOptions);
39
+ /**
40
+ * Synchronously checks if a key exists in the storage.
41
+ *
42
+ * @param key - The key to check for existence.
43
+ * @returns Returns `true` if the key exists, otherwise `false`.
44
+ */
45
+ abstract existsSync(key: string): boolean;
46
+ /**
47
+ * Asynchronously checks if a key exists in the storage.
48
+ *
49
+ * @param key - The key to check for existence.
50
+ * @returns A promise that resolves to `true` if the key exists, otherwise `false`.
51
+ */
52
+ exists(key: string): Promise<boolean>;
53
+ /**
54
+ * Synchronously retrieves the value associated with a given key.
55
+ *
56
+ * @param key - The key whose value is to be retrieved.
57
+ * @returns The value associated with the key, or `null` if the key does not exist.
58
+ */
59
+ abstract getSync(key: string): string | null;
60
+ /**
61
+ * Asynchronously retrieves the value associated with a given key.
62
+ *
63
+ * @param key - The key whose value is to be retrieved.
64
+ * @returns A promise that resolves to the value associated with the key, or `null` if the key does not exist.
65
+ */
66
+ get(key: string): Promise<string | null>;
67
+ /**
68
+ * Synchronously sets the value for a given key.
69
+ *
70
+ * @param key - The key to set the value for.
71
+ * @param value - The value to set.
72
+ */
73
+ abstract setSync(key: string, value: string): void;
74
+ /**
75
+ * Asynchronously sets the value for a given key.
76
+ *
77
+ * @param key - The key to set the value for.
78
+ * @param value - The value to set.
79
+ */
80
+ set(key: string, value: string): Promise<void>;
81
+ /**
82
+ * Synchronously creates a directory at the specified path.
83
+ *
84
+ * @param _ - The path of the directory to create.
85
+ */
86
+ mkdirSync(_: string): void;
87
+ /**
88
+ * Creates a directory at the specified path.
89
+ *
90
+ * @param dirPath - The path of the directory to create.
91
+ */
92
+ mkdir(dirPath: string): Promise<void>;
93
+ /**
94
+ * Synchronously removes a key from the storage.
95
+ *
96
+ * @param key - The key to remove.
97
+ */
98
+ abstract removeSync(key: string): void;
99
+ /**
100
+ * Asynchronously removes a key from the storage.
101
+ *
102
+ * @param key - The key to remove.
103
+ */
104
+ remove(key: string): Promise<void>;
105
+ /**
106
+ * Synchronously removes all entries from the storage that match the provided base path.
107
+ *
108
+ * @param base - The base path to clear keys from.
109
+ */
110
+ clearSync(base?: string): void;
111
+ /**
112
+ * Asynchronously removes all entries from the storage that match the provided base path.
113
+ *
114
+ * @param base - The base path to clear keys from.
115
+ * @returns A promise that resolves when the operation is complete.
116
+ */
117
+ clear(base?: string): Promise<void>;
118
+ /**
119
+ * Lists all keys under a given base path synchronously.
120
+ *
121
+ * @param base - The base path to list keys from.
122
+ * @returns An array of keys under the specified base path.
123
+ */
124
+ abstract listSync(base?: string): string[];
125
+ /**
126
+ * Asynchronously lists all keys under a given base path.
127
+ *
128
+ * @param base - The base path to list keys from.
129
+ * @returns A promise that resolves to an array of keys under the specified base path.
130
+ */
131
+ list(base?: string): Promise<string[]>;
132
+ /**
133
+ * Synchronously checks if the given key is a directory.
134
+ *
135
+ * @param _ - The key to check.
136
+ * @returns `true` if the key is a directory, otherwise `false`.
137
+ */
138
+ isDirectorySync(_: string): boolean;
139
+ /**
140
+ * Checks if the given key is a directory.
141
+ *
142
+ * @param key - The key to check.
143
+ * @returns A promise that resolves to `true` if the key is a directory, otherwise `false`.
144
+ */
145
+ isDirectory(key: string): Promise<boolean>;
146
+ /**
147
+ * Synchronously checks if the given key is a file.
148
+ *
149
+ * @param key - The key to check.
150
+ * @returns `true` if the key is a file, otherwise `false`.
151
+ */
152
+ isFileSync(key: string): boolean;
153
+ /**
154
+ * Checks if the given key is a file.
155
+ *
156
+ * @param key - The key to check.
157
+ * @returns A promise that resolves to `true` if the key is a file, otherwise `false`.
158
+ */
159
+ isFile(key: string): Promise<boolean>;
160
+ /**
161
+ * Disposes of the storage adapter, releasing any held resources.
162
+ *
163
+ * @returns A promise that resolves when the disposal is complete.
164
+ */
165
+ dispose(): MaybePromise<void>;
166
+ /**
167
+ * Async dispose method to clean up resources.
168
+ *
169
+ * @returns A promise that resolves when disposal is complete.
170
+ */
171
+ [Symbol.asyncDispose](): Promise<void>;
172
+ /**
173
+ * Determines if the storage adapter is read-only based on the provided options.
174
+ *
175
+ * @returns `true` if the storage adapter is read-only, otherwise `false`.
176
+ */
177
+ protected get isReadOnly(): boolean;
178
+ /**
179
+ * Determines if the storage adapter should overwrite existing keys based on the provided options and context configuration.
180
+ *
181
+ * @returns `true` if the storage adapter should overwrite existing keys, otherwise `false`.
182
+ */
183
+ protected get overwrite(): boolean;
184
+ /**
185
+ * Resolves a given key to its full path within the storage adapter.
186
+ *
187
+ * @param key - The key to resolve.
188
+ * @returns The resolved full path for the key.
189
+ */
190
+ protected resolve(key?: string): string;
191
+ /**
192
+ * Disposes of the storage adapter, releasing any held resources.
193
+ *
194
+ * @returns A promise that resolves when the disposal is complete.
195
+ */
196
+ protected _dispose(): Promise<void>;
197
+ }
198
+ declare type __ΩStorageAdapterOptions = any[];
199
+ //#endregion
200
+ export { BaseStorageAdapter, StorageAdapterOptions, __ΩStorageAdapterOptions };
201
+ //# sourceMappingURL=base.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base.d.cts","names":[],"sources":["../../src/storage/base.ts"],"mappings":";;;;;UA0BiB,qBAAA;EACf,IAAA;EACA,UAAA;EACA,MAAA;AAAA;;;;uBAMoB,kBAAA,kBACH,qBAAA,GAAwB,qBAAA,aAC9B,cAAA;EAAA;YA+BC,OAAA,EAAS,OAAA;EAjCD;;;EAAA,SAWJ,IAAA;EAVyB;;;EAelC,OAAA,EAAS,QAAA;EAiBK;;;;;;EAAA,SATL,MAAA,GAAS,aAAA;EAqIU;;;;;;cA5HvB,OAAA,EAAS,OAAA,EACnB,OAAA,GAAS,QAAA;EAmQiB;;;;;;EAAA,SAtPZ,UAAA,CAAW,GAAA;EA7ChB;;;;;;EAqDE,MAAA,CAAO,GAAA,WAAc,OAAA;EA/BlB;;;;;;EAAA,SAyCA,OAAA,CAAQ,GAAA;EAlBR;;;;;;EA0BH,GAAA,CAAI,GAAA,WAAc,OAAA;EAAlB;;;;;;EAAA,SAUG,OAAA,CAAQ,GAAA,UAAa,KAAA;EAQpB;;;;;;EAAJ,GAAA,CAAI,GAAA,UAAa,KAAA,WAAgB,OAAA;EAkBT;;;;;EAP9B,SAAA,CAAU,CAAA;EAkCV;;;;;EA3BM,KAAA,CAAM,OAAA,WAAkB,OAAA;EAuEZ;;;;;EAAA,SA9DT,UAAA,CAAW,GAAA;EA0Fd;;;;;EAnFA,MAAA,CAAO,GAAA,WAAc,OAAA;EAuGd;;;;;EA5Fb,SAAA,CAAU,IAAA;EA8GiB;;;;;;EAzFrB,KAAA,CAAM,IAAA,YAAgB,OAAA;EAwIA;;;;;;EAAA,SAjHnB,QAAA,CAAS,IAAA;;;;;;;EAQZ,IAAA,CAAK,IAAA,YAAgB,OAAA;;;;;;;EAU3B,eAAA,CAAgB,CAAA;;;;;;;EAUV,WAAA,CAAY,GAAA,WAAW,OAAA;;;;;;;EAU7B,UAAA,CAAW,GAAA;;;;;;;EAUL,MAAA,CAAO,GAAA,WAAW,OAAA;;;;;;EASxB,OAAA,CAAA,GAAW,YAAA;;;;;;GASJ,MAAA,CAAO,YAAA,KAAa,OAAA;;;;;;gBASpB,UAAA,CAAA;;;;;;gBASA,SAAA,CAAA;;;;;;;YAUJ,OAAA,CAAQ,GAAA;;;;;;YAmBF,QAAA,CAAA,GAAY,OAAA;AAAA;AAAA"}
@@ -0,0 +1,201 @@
1
+ import { StorageAdapter, StoragePreset } from "../types/fs.mjs";
2
+ import { Context } from "../types/context.mjs";
3
+ import { MaybePromise } from "@stryke/types/base";
4
+
5
+ //#region src/storage/base.d.ts
6
+ interface StorageAdapterOptions {
7
+ base: string;
8
+ isReadOnly?: boolean;
9
+ ignore?: string | string[];
10
+ }
11
+ /**
12
+ * Abstract base class for storage adapters, providing a template for storage operations.
13
+ */
14
+ declare abstract class BaseStorageAdapter<TOptions extends StorageAdapterOptions = StorageAdapterOptions> implements StorageAdapter {
15
+ #private;
16
+ protected context: Context;
17
+ /**
18
+ * A name identifying the storage adapter type.
19
+ */
20
+ abstract name: string;
21
+ /**
22
+ * Configuration options for the storage adapter.
23
+ */
24
+ options: TOptions;
25
+ /**
26
+ * The storage preset for the adapter.
27
+ *
28
+ * @remarks
29
+ * This can be used as an alternate way to identify the type of storage being used.
30
+ */
31
+ readonly preset?: StoragePreset | null;
32
+ /**
33
+ * Constructor for the BaseStorageAdapter.
34
+ *
35
+ * @param context - The Powerlines context.
36
+ * @param options - Configuration options for the storage adapter.
37
+ */
38
+ constructor(context: Context, options?: TOptions);
39
+ /**
40
+ * Synchronously checks if a key exists in the storage.
41
+ *
42
+ * @param key - The key to check for existence.
43
+ * @returns Returns `true` if the key exists, otherwise `false`.
44
+ */
45
+ abstract existsSync(key: string): boolean;
46
+ /**
47
+ * Asynchronously checks if a key exists in the storage.
48
+ *
49
+ * @param key - The key to check for existence.
50
+ * @returns A promise that resolves to `true` if the key exists, otherwise `false`.
51
+ */
52
+ exists(key: string): Promise<boolean>;
53
+ /**
54
+ * Synchronously retrieves the value associated with a given key.
55
+ *
56
+ * @param key - The key whose value is to be retrieved.
57
+ * @returns The value associated with the key, or `null` if the key does not exist.
58
+ */
59
+ abstract getSync(key: string): string | null;
60
+ /**
61
+ * Asynchronously retrieves the value associated with a given key.
62
+ *
63
+ * @param key - The key whose value is to be retrieved.
64
+ * @returns A promise that resolves to the value associated with the key, or `null` if the key does not exist.
65
+ */
66
+ get(key: string): Promise<string | null>;
67
+ /**
68
+ * Synchronously sets the value for a given key.
69
+ *
70
+ * @param key - The key to set the value for.
71
+ * @param value - The value to set.
72
+ */
73
+ abstract setSync(key: string, value: string): void;
74
+ /**
75
+ * Asynchronously sets the value for a given key.
76
+ *
77
+ * @param key - The key to set the value for.
78
+ * @param value - The value to set.
79
+ */
80
+ set(key: string, value: string): Promise<void>;
81
+ /**
82
+ * Synchronously creates a directory at the specified path.
83
+ *
84
+ * @param _ - The path of the directory to create.
85
+ */
86
+ mkdirSync(_: string): void;
87
+ /**
88
+ * Creates a directory at the specified path.
89
+ *
90
+ * @param dirPath - The path of the directory to create.
91
+ */
92
+ mkdir(dirPath: string): Promise<void>;
93
+ /**
94
+ * Synchronously removes a key from the storage.
95
+ *
96
+ * @param key - The key to remove.
97
+ */
98
+ abstract removeSync(key: string): void;
99
+ /**
100
+ * Asynchronously removes a key from the storage.
101
+ *
102
+ * @param key - The key to remove.
103
+ */
104
+ remove(key: string): Promise<void>;
105
+ /**
106
+ * Synchronously removes all entries from the storage that match the provided base path.
107
+ *
108
+ * @param base - The base path to clear keys from.
109
+ */
110
+ clearSync(base?: string): void;
111
+ /**
112
+ * Asynchronously removes all entries from the storage that match the provided base path.
113
+ *
114
+ * @param base - The base path to clear keys from.
115
+ * @returns A promise that resolves when the operation is complete.
116
+ */
117
+ clear(base?: string): Promise<void>;
118
+ /**
119
+ * Lists all keys under a given base path synchronously.
120
+ *
121
+ * @param base - The base path to list keys from.
122
+ * @returns An array of keys under the specified base path.
123
+ */
124
+ abstract listSync(base?: string): string[];
125
+ /**
126
+ * Asynchronously lists all keys under a given base path.
127
+ *
128
+ * @param base - The base path to list keys from.
129
+ * @returns A promise that resolves to an array of keys under the specified base path.
130
+ */
131
+ list(base?: string): Promise<string[]>;
132
+ /**
133
+ * Synchronously checks if the given key is a directory.
134
+ *
135
+ * @param _ - The key to check.
136
+ * @returns `true` if the key is a directory, otherwise `false`.
137
+ */
138
+ isDirectorySync(_: string): boolean;
139
+ /**
140
+ * Checks if the given key is a directory.
141
+ *
142
+ * @param key - The key to check.
143
+ * @returns A promise that resolves to `true` if the key is a directory, otherwise `false`.
144
+ */
145
+ isDirectory(key: string): Promise<boolean>;
146
+ /**
147
+ * Synchronously checks if the given key is a file.
148
+ *
149
+ * @param key - The key to check.
150
+ * @returns `true` if the key is a file, otherwise `false`.
151
+ */
152
+ isFileSync(key: string): boolean;
153
+ /**
154
+ * Checks if the given key is a file.
155
+ *
156
+ * @param key - The key to check.
157
+ * @returns A promise that resolves to `true` if the key is a file, otherwise `false`.
158
+ */
159
+ isFile(key: string): Promise<boolean>;
160
+ /**
161
+ * Disposes of the storage adapter, releasing any held resources.
162
+ *
163
+ * @returns A promise that resolves when the disposal is complete.
164
+ */
165
+ dispose(): MaybePromise<void>;
166
+ /**
167
+ * Async dispose method to clean up resources.
168
+ *
169
+ * @returns A promise that resolves when disposal is complete.
170
+ */
171
+ [Symbol.asyncDispose](): Promise<void>;
172
+ /**
173
+ * Determines if the storage adapter is read-only based on the provided options.
174
+ *
175
+ * @returns `true` if the storage adapter is read-only, otherwise `false`.
176
+ */
177
+ protected get isReadOnly(): boolean;
178
+ /**
179
+ * Determines if the storage adapter should overwrite existing keys based on the provided options and context configuration.
180
+ *
181
+ * @returns `true` if the storage adapter should overwrite existing keys, otherwise `false`.
182
+ */
183
+ protected get overwrite(): boolean;
184
+ /**
185
+ * Resolves a given key to its full path within the storage adapter.
186
+ *
187
+ * @param key - The key to resolve.
188
+ * @returns The resolved full path for the key.
189
+ */
190
+ protected resolve(key?: string): string;
191
+ /**
192
+ * Disposes of the storage adapter, releasing any held resources.
193
+ *
194
+ * @returns A promise that resolves when the disposal is complete.
195
+ */
196
+ protected _dispose(): Promise<void>;
197
+ }
198
+ declare type __ΩStorageAdapterOptions = any[];
199
+ //#endregion
200
+ export { BaseStorageAdapter, StorageAdapterOptions, __ΩStorageAdapterOptions };
201
+ //# sourceMappingURL=base.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base.d.mts","names":[],"sources":["../../src/storage/base.ts"],"mappings":";;;;;UA0BiB,qBAAA;EACf,IAAA;EACA,UAAA;EACA,MAAA;AAAA;;;;uBAMoB,kBAAA,kBACH,qBAAA,GAAwB,qBAAA,aAC9B,cAAA;EAAA;YA+BC,OAAA,EAAS,OAAA;EAjCD;;;EAAA,SAWJ,IAAA;EAVyB;;;EAelC,OAAA,EAAS,QAAA;EAiBK;;;;;;EAAA,SATL,MAAA,GAAS,aAAA;EAqIU;;;;;;cA5HvB,OAAA,EAAS,OAAA,EACnB,OAAA,GAAS,QAAA;EAmQiB;;;;;;EAAA,SAtPZ,UAAA,CAAW,GAAA;EA7ChB;;;;;;EAqDE,MAAA,CAAO,GAAA,WAAc,OAAA;EA/BlB;;;;;;EAAA,SAyCA,OAAA,CAAQ,GAAA;EAlBR;;;;;;EA0BH,GAAA,CAAI,GAAA,WAAc,OAAA;EAAlB;;;;;;EAAA,SAUG,OAAA,CAAQ,GAAA,UAAa,KAAA;EAQpB;;;;;;EAAJ,GAAA,CAAI,GAAA,UAAa,KAAA,WAAgB,OAAA;EAkBT;;;;;EAP9B,SAAA,CAAU,CAAA;EAkCV;;;;;EA3BM,KAAA,CAAM,OAAA,WAAkB,OAAA;EAuEZ;;;;;EAAA,SA9DT,UAAA,CAAW,GAAA;EA0Fd;;;;;EAnFA,MAAA,CAAO,GAAA,WAAc,OAAA;EAuGd;;;;;EA5Fb,SAAA,CAAU,IAAA;EA8GiB;;;;;;EAzFrB,KAAA,CAAM,IAAA,YAAgB,OAAA;EAwIA;;;;;;EAAA,SAjHnB,QAAA,CAAS,IAAA;;;;;;;EAQZ,IAAA,CAAK,IAAA,YAAgB,OAAA;;;;;;;EAU3B,eAAA,CAAgB,CAAA;;;;;;;EAUV,WAAA,CAAY,GAAA,WAAW,OAAA;;;;;;;EAU7B,UAAA,CAAW,GAAA;;;;;;;EAUL,MAAA,CAAO,GAAA,WAAW,OAAA;;;;;;EASxB,OAAA,CAAA,GAAW,YAAA;;;;;;GASJ,MAAA,CAAO,YAAA,KAAa,OAAA;;;;;;gBASpB,UAAA,CAAA;;;;;;gBASA,SAAA,CAAA;;;;;;;YAUJ,OAAA,CAAQ,GAAA;;;;;;YAmBF,QAAA,CAAA,GAAY,OAAA;AAAA;AAAA"}