stacks 0.50.0 → 0.52.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (687) hide show
  1. package/README.md +20 -17
  2. package/api/nitro.config.ts +17 -0
  3. package/api/package.json +42 -0
  4. package/api/routes/index.ts +1 -0
  5. package/api/serverless.yml +11 -0
  6. package/auto-imports.d.ts +476 -57
  7. package/components/vue/main.ts +1 -0
  8. package/components/vue/package.json +1 -1
  9. package/components/web/package.json +1 -1
  10. package/core/actions/README.md +1 -1
  11. package/core/actions/build.config.ts +13 -0
  12. package/core/actions/node_modules/.bin/markdown-it +2 -2
  13. package/core/actions/node_modules/.bin/unbuild +17 -0
  14. package/core/actions/package.json +215 -13
  15. package/core/actions/src/{build-component-libs.ts → build/component-libs.ts} +1 -1
  16. package/core/actions/src/build/core.ts +6 -0
  17. package/core/actions/src/{build-stacks.ts → build/stacks.ts} +1 -1
  18. package/core/actions/src/bump.ts +1 -1
  19. package/core/actions/src/changelog.ts +1 -1
  20. package/core/actions/src/clean.ts +9 -19
  21. package/core/actions/src/deploy/domains.ts +8 -0
  22. package/core/actions/src/deploy.ts +8 -0
  23. package/core/actions/src/{dev-components.ts → dev/components.ts} +1 -1
  24. package/core/actions/src/{test-ui.ts → dev/docs.ts} +2 -2
  25. package/core/actions/src/{dev.ts → dev/index.ts} +0 -25
  26. package/core/actions/src/fresh.ts +2 -2
  27. package/core/actions/src/{generate-component-meta.ts → generate/component-meta.ts} +1 -1
  28. package/core/actions/src/{generate-ide-helpers.ts → generate/ide-helpers.ts} +2 -1
  29. package/core/actions/src/{generate.ts → generate/index.ts} +21 -6
  30. package/core/actions/src/{generate-lib-entries.ts → generate/lib-entries.ts} +1 -1
  31. package/core/actions/src/{generate-package-jsons.ts → generate/package-jsons.ts} +1 -1
  32. package/core/actions/src/generate/settings.ts +4 -0
  33. package/core/actions/src/{generate-vscode-custom-data.ts → generate/vscode-custom-data.ts} +1 -1
  34. package/core/actions/src/{generate-vue-compat.ts → generate/vue-compat.ts} +1 -1
  35. package/core/actions/src/helpers/lib-entries.ts +7 -6
  36. package/core/actions/src/helpers/package-json.ts +9 -9
  37. package/core/actions/src/helpers/utils.ts +21 -25
  38. package/core/actions/src/helpers/vscode-custom-data.ts +1 -1
  39. package/core/actions/src/key-generate.ts +2 -2
  40. package/core/actions/src/{lint.ts → lint/index.ts} +1 -1
  41. package/core/actions/src/make.ts +63 -19
  42. package/core/actions/src/migrate.ts +3 -0
  43. package/core/actions/src/preinstall.ts +2 -2
  44. package/core/actions/src/prepublish.ts +1 -1
  45. package/core/actions/src/release.ts +4 -3
  46. package/core/actions/src/seed.ts +3 -0
  47. package/core/actions/src/{test-coverage.ts → test/coverage.ts} +1 -1
  48. package/core/actions/src/test/feature.ts +5 -0
  49. package/core/actions/src/{test-unit.ts → test/ui.ts} +1 -1
  50. package/core/actions/src/{test-feature.ts → test/unit.ts} +1 -1
  51. package/core/actions/src/test.ts +1 -1
  52. package/core/actions/src/tinker.ts +9 -0
  53. package/core/actions/src/typecheck.ts +1 -1
  54. package/core/actions/src/upgrade/framework.ts +29 -0
  55. package/core/actions/src/upgrade/index.ts +27 -0
  56. package/core/actions/src/upgrade/node.ts +4 -0
  57. package/core/actions/src/upgrade/package-manager.ts +4 -0
  58. package/core/actions/src/upgrade.ts +75 -0
  59. package/core/ai/README.md +1 -1
  60. package/core/ai/build.config.ts +13 -0
  61. package/core/ai/package.json +15 -12
  62. package/core/alias/README.md +1 -1
  63. package/core/alias/build.config.ts +13 -0
  64. package/core/alias/package.json +11 -11
  65. package/core/alias/src/index.ts +29 -12
  66. package/core/{drivers → analytics}/README.md +18 -9
  67. package/core/analytics/build.config.ts +13 -0
  68. package/core/analytics/package.json +64 -0
  69. package/core/arrays/README.md +1 -1
  70. package/core/arrays/build.config.ts +13 -0
  71. package/core/arrays/package.json +13 -12
  72. package/core/arrays/src/index.ts +4 -0
  73. package/core/auth/README.md +1 -1
  74. package/core/auth/build.config.ts +13 -0
  75. package/core/auth/package.json +11 -12
  76. package/{buddy → core/buddy}/README.md +19 -16
  77. package/core/buddy/build.config.ts +16 -0
  78. package/core/buddy/package.json +127 -0
  79. package/core/buddy/src/cli.ts +96 -0
  80. package/{buddy → core/buddy}/src/commands/add.ts +10 -11
  81. package/{buddy → core/buddy}/src/commands/build.ts +32 -29
  82. package/{buddy → core/buddy}/src/commands/changelog.ts +7 -6
  83. package/core/buddy/src/commands/clean.ts +30 -0
  84. package/{buddy → core/buddy}/src/commands/commit.ts +2 -2
  85. package/{buddy → core/buddy}/src/commands/create.ts +6 -6
  86. package/core/buddy/src/commands/deploy.ts +30 -0
  87. package/{buddy → core/buddy}/src/commands/dev.ts +51 -29
  88. package/{buddy → core/buddy}/src/commands/example.ts +14 -14
  89. package/{buddy → core/buddy}/src/commands/fresh.ts +5 -5
  90. package/{buddy → core/buddy}/src/commands/generate.ts +28 -22
  91. package/{buddy → core/buddy}/src/commands/index.ts +9 -1
  92. package/core/buddy/src/commands/inspire.ts +25 -0
  93. package/{buddy → core/buddy}/src/commands/key.ts +8 -7
  94. package/{buddy → core/buddy}/src/commands/lint.ts +13 -11
  95. package/{buddy → core/buddy}/src/commands/make.ts +65 -46
  96. package/core/buddy/src/commands/migrate.ts +32 -0
  97. package/core/buddy/src/commands/onboarding.ts +29 -0
  98. package/{buddy → core/buddy}/src/commands/preinstall.ts +2 -2
  99. package/{buddy → core/buddy}/src/commands/prepublish.ts +2 -2
  100. package/{buddy → core/buddy}/src/commands/release.ts +5 -5
  101. package/core/buddy/src/commands/seed.ts +31 -0
  102. package/core/buddy/src/commands/setting.ts +29 -0
  103. package/{buddy → core/buddy}/src/commands/setup.ts +3 -3
  104. package/{buddy → core/buddy}/src/commands/test.ts +44 -39
  105. package/core/buddy/src/commands/tinker.ts +29 -0
  106. package/{buddy → core/buddy}/src/commands/types.ts +3 -3
  107. package/core/buddy/src/commands/upgrade.ts +141 -0
  108. package/core/buddy/src/commands/version.ts +31 -0
  109. package/{buddy → core/buddy}/src/index.ts +2 -1
  110. package/core/build/README.md +1 -1
  111. package/core/build/build.config.ts +13 -0
  112. package/core/build/node_modules/.bin/unbuild +4 -4
  113. package/core/build/node_modules/.bin/vite +4 -4
  114. package/core/build/node_modules/.bin/vite-ssg +4 -4
  115. package/core/build/node_modules/.bin/vue-docgen-web-types +4 -4
  116. package/core/build/package.json +26 -24
  117. package/core/build/src/desktop.ts +141 -11
  118. package/core/build/src/pages.ts +1 -0
  119. package/core/build/src/stacks.ts +55 -30
  120. package/core/build/src/vue-components.ts +4 -10
  121. package/core/build/web-types.config.cjs +1 -0
  122. package/core/cache/README.md +1 -1
  123. package/core/cache/build.config.ts +13 -0
  124. package/core/cache/package.json +31 -16
  125. package/core/cache/src/drivers/dynamodb.ts +119 -117
  126. package/core/cache/src/drivers/memcached.ts +15 -14
  127. package/core/cache/src/drivers/redis.ts +7 -4
  128. package/core/cache/tests/Redis.test.ts +1 -0
  129. package/core/chat/README.md +2 -1
  130. package/core/chat/build.config.ts +13 -0
  131. package/core/chat/package.json +16 -16
  132. package/core/chat/src/drivers/slack.ts +20 -18
  133. package/core/chat/src/drivers/teams.ts +24 -0
  134. package/core/chat/src/index.ts +1 -0
  135. package/core/cli/README.md +2 -2
  136. package/core/cli/build.config.ts +14 -0
  137. package/core/cli/package.json +16 -14
  138. package/core/cli/src/actions/index.ts +0 -1
  139. package/core/cli/src/actions/install.ts +3 -3
  140. package/core/cli/src/command.ts +2 -7
  141. package/core/cli/src/console.ts +2 -3
  142. package/core/cli/src/index.ts +2 -0
  143. package/core/cli/src/parse.ts +99 -0
  144. package/core/cli/src/{actions/run.ts → run.ts} +38 -21
  145. package/core/cloud/README.md +1 -1
  146. package/core/cloud/build.config.ts +13 -0
  147. package/core/cloud/package.json +11 -12
  148. package/core/collections/README.md +1 -1
  149. package/core/collections/build.config.ts +13 -0
  150. package/core/collections/package.json +12 -13
  151. package/core/config/README.md +28 -10
  152. package/core/config/build.config.ts +40 -4
  153. package/core/config/package.json +20 -19
  154. package/core/config/src/defaults.ts +22 -0
  155. package/core/config/src/index.ts +3 -16
  156. package/core/config/src/stacks.ts +42 -0
  157. package/core/database/README.md +1 -1
  158. package/core/database/build.config.ts +17 -0
  159. package/core/database/package.json +19 -14
  160. package/core/database/src/factory/index.ts +16 -62
  161. package/core/database/src/migrations/index.ts +145 -3
  162. package/core/database/src/seeder/index.ts +75 -6
  163. package/core/datetime/README.md +1 -1
  164. package/core/datetime/build.config.ts +14 -0
  165. package/core/datetime/package.json +11 -12
  166. package/core/datetime/src/index.ts +1 -1
  167. package/core/desktop/README.md +1 -1
  168. package/core/desktop/build.config.ts +13 -0
  169. package/core/desktop/node_modules/.bin/tauri +4 -4
  170. package/core/desktop/package.json +16 -17
  171. package/core/development/README.md +27 -0
  172. package/core/development/build.config.ts +13 -0
  173. package/core/development/node_modules/.bin/tsc +17 -0
  174. package/core/development/node_modules/.bin/tsserver +17 -0
  175. package/core/development/node_modules/.bin/tsx +17 -0
  176. package/core/development/node_modules/.bin/unbuild +17 -0
  177. package/core/{x-ray → development}/package.json +32 -33
  178. package/core/development/src/index.ts +2 -0
  179. package/core/docs/README.md +1 -1
  180. package/core/docs/build.config.ts +15 -0
  181. package/core/docs/node_modules/.bin/vitepress +4 -4
  182. package/core/docs/package.json +14 -13
  183. package/core/docs/src/index.ts +3 -2
  184. package/core/domains/README.md +1 -1
  185. package/core/domains/build.config.ts +13 -0
  186. package/core/domains/package.json +11 -11
  187. package/core/email/README.md +1 -1
  188. package/core/email/build.config.ts +14 -0
  189. package/core/email/node_modules/.bin/maizzle +4 -4
  190. package/core/email/package.json +29 -24
  191. package/core/email/src/actions/send.ts +1 -1
  192. package/core/email/src/drivers/emailjs.ts +10 -8
  193. package/core/email/src/drivers/mailgun.ts +8 -6
  194. package/core/email/src/drivers/mailjet.ts +7 -5
  195. package/core/email/src/drivers/mandrill.ts +6 -4
  196. package/core/email/src/drivers/netcore.ts +6 -4
  197. package/core/email/src/drivers/nodemailer.ts +10 -8
  198. package/core/email/src/drivers/postmark.ts +6 -4
  199. package/core/email/src/drivers/sendgrid.ts +7 -5
  200. package/core/email/src/drivers/ses.ts +18 -15
  201. package/core/error-handling/README.md +1 -1
  202. package/core/error-handling/build.config.ts +14 -0
  203. package/core/error-handling/package.json +14 -12
  204. package/core/error-handling/src/index.ts +1 -3
  205. package/core/events/README.md +1 -1
  206. package/core/events/package.json +12 -12
  207. package/core/events/src/index.ts +3 -2
  208. package/core/faker/README.md +62 -0
  209. package/core/faker/build.config.ts +13 -0
  210. package/core/faker/package.json +55 -0
  211. package/core/faker/src/index.ts +1 -0
  212. package/core/git/README.md +1 -1
  213. package/core/git/build.config.ts +13 -0
  214. package/core/git/node_modules/.bin/bumpp +4 -4
  215. package/core/git/node_modules/.bin/changelogen +4 -4
  216. package/core/git/node_modules/.bin/commitizen +2 -2
  217. package/core/git/node_modules/.bin/cz +2 -2
  218. package/core/git/node_modules/.bin/giget +4 -4
  219. package/core/git/node_modules/.bin/git-cz +2 -2
  220. package/core/git/node_modules/.bin/simple-git-hooks +2 -2
  221. package/core/git/package.json +15 -16
  222. package/core/health/README.md +1 -1
  223. package/core/health/build.config.ts +13 -0
  224. package/core/health/package.json +11 -12
  225. package/core/lint/README.md +1 -1
  226. package/core/lint/build.config.ts +13 -0
  227. package/core/lint/node_modules/.bin/eslint +4 -4
  228. package/core/lint/node_modules/.bin/lint-staged +4 -4
  229. package/core/lint/node_modules/.bin/publint +17 -0
  230. package/core/lint/package.json +16 -16
  231. package/core/logging/README.md +1 -1
  232. package/core/logging/build.config.ts +15 -0
  233. package/core/logging/node_modules/.bin/tsc +4 -4
  234. package/core/logging/node_modules/.bin/tsserver +4 -4
  235. package/core/logging/node_modules/.bin/tsx +17 -0
  236. package/core/logging/node_modules/.bin/unbuild +17 -0
  237. package/core/logging/package.json +19 -11
  238. package/core/logging/src/index.ts +4 -8
  239. package/core/modules/README.md +1 -1
  240. package/core/modules/build.config.ts +13 -0
  241. package/core/modules/package.json +19 -11
  242. package/core/notifications/README.md +1 -1
  243. package/core/notifications/build.config.ts +0 -1
  244. package/core/notifications/node_modules/.bin/maizzle +4 -4
  245. package/core/notifications/package.json +33 -33
  246. package/core/notifications/src/index.ts +13 -7
  247. package/core/notifications/src/tailwind.config.ts +3 -3
  248. package/core/notifications/src/utils/config.ts +2 -2
  249. package/core/notifications/tests/email/Mailgun.test.ts +1 -1
  250. package/core/objects/README.md +1 -1
  251. package/core/objects/build.config.ts +13 -0
  252. package/core/objects/package.json +14 -13
  253. package/core/{cloud/dist/actions → orm}/README.md +14 -19
  254. package/core/orm/build.config.ts +15 -0
  255. package/core/{drivers → orm}/package.json +18 -19
  256. package/core/orm/src/index.ts +43 -0
  257. package/core/pages/build.config.ts +13 -0
  258. package/core/pages/package.json +57 -0
  259. package/core/pages/src/index.ts +39 -0
  260. package/core/pages/tests/example.test.ts +7 -0
  261. package/core/path/README.md +1 -1
  262. package/core/{tables → path}/build.config.ts +2 -5
  263. package/core/path/package.json +13 -11
  264. package/core/path/src/index.ts +101 -14
  265. package/core/payments/README.md +1 -1
  266. package/core/payments/build.config.ts +13 -0
  267. package/core/payments/package.json +18 -12
  268. package/core/payments/src/drivers/stripe.ts +136 -0
  269. package/core/payments/src/index.ts +1 -1
  270. package/core/push/README.md +1 -1
  271. package/core/push/build.config.ts +13 -0
  272. package/core/push/package.json +13 -16
  273. package/core/push/src/drivers/expo.ts +18 -16
  274. package/core/push/src/drivers/fcm.ts +18 -16
  275. package/core/{x-ray → query-builder}/README.md +14 -21
  276. package/core/query-builder/build.config.ts +13 -0
  277. package/core/query-builder/package.json +56 -0
  278. package/core/query-builder/src/index.ts +1 -0
  279. package/core/query-builder/src/kysely.ts +37 -0
  280. package/core/query-builder/tests/example.test.ts +7 -0
  281. package/core/queue/README.md +1 -1
  282. package/core/queue/build.config.ts +13 -0
  283. package/core/queue/package.json +11 -12
  284. package/core/realtime/README.md +1 -1
  285. package/core/realtime/build.config.ts +13 -0
  286. package/core/realtime/package.json +11 -12
  287. package/core/router/README.md +1 -1
  288. package/core/router/build.config.ts +13 -0
  289. package/core/router/package.json +12 -13
  290. package/core/router/src/index.ts +4 -3
  291. package/core/scheduler/README.md +137 -0
  292. package/core/scheduler/build.config.ts +13 -0
  293. package/core/{dashboard → scheduler}/package.json +20 -21
  294. package/core/scheduler/src/index.ts +120 -0
  295. package/core/scheduler/tests/example.test.ts +7 -0
  296. package/core/search-engine/README.md +1 -1
  297. package/core/search-engine/build.config.ts +13 -0
  298. package/core/search-engine/package.json +16 -15
  299. package/core/search-engine/src/drivers/meilisearch.ts +3 -1
  300. package/core/search-engine/src/index.ts +4 -2
  301. package/core/security/README.md +1 -1
  302. package/core/security/build.config.ts +13 -0
  303. package/core/security/package.json +12 -13
  304. package/core/security/src/crypt.ts +2 -2
  305. package/core/server/README.md +1 -1
  306. package/core/server/build.config.ts +13 -0
  307. package/core/server/node_modules/.bin/nitro +4 -4
  308. package/core/server/node_modules/.bin/nitropack +4 -4
  309. package/core/server/node_modules/.bin/vite +4 -4
  310. package/core/server/package.json +13 -13
  311. package/core/server/src/index.ts +1 -1
  312. package/core/server/src/nitro.config.ts +1 -0
  313. package/core/signals/README.md +105 -0
  314. package/core/signals/build.config.ts +13 -0
  315. package/core/signals/package.json +55 -0
  316. package/core/signals/src/index.ts +1 -0
  317. package/core/signals/tests/example.test.ts +7 -0
  318. package/core/{cloud/src/actions → slug}/README.md +11 -5
  319. package/core/slug/build.config.ts +13 -0
  320. package/core/slug/package.json +55 -0
  321. package/core/slug/src/index.ts +56 -0
  322. package/core/slug/tests/example.test.ts +7 -0
  323. package/core/sms/README.md +2 -1
  324. package/core/sms/build.config.ts +13 -0
  325. package/core/sms/package.json +22 -22
  326. package/core/sms/src/drivers/gupshup.ts +3 -3
  327. package/core/sms/src/drivers/nexmo.ts +4 -4
  328. package/core/sms/src/drivers/plivo.ts +4 -4
  329. package/core/sms/src/drivers/sms77.ts +3 -3
  330. package/core/sms/src/drivers/sns.ts +4 -4
  331. package/core/sms/src/drivers/telnyx.ts +4 -4
  332. package/core/sms/src/drivers/termii.ts +3 -3
  333. package/core/sms/src/drivers/twilio.ts +4 -4
  334. package/core/storage/README.md +1 -1
  335. package/core/storage/build.config.ts +13 -0
  336. package/core/storage/package.json +14 -14
  337. package/core/storage/src/index.ts +16 -0
  338. package/core/strings/README.md +7 -6
  339. package/core/strings/package.json +13 -13
  340. package/core/strings/src/case.ts +1 -0
  341. package/core/strings/src/pluralize.ts +5 -1
  342. package/core/strings/src/utils.ts +48 -6
  343. package/core/testing/README.md +1 -1
  344. package/core/testing/build.config.ts +13 -0
  345. package/core/testing/node_modules/.bin/playwright +4 -4
  346. package/core/testing/node_modules/.bin/tsc +4 -4
  347. package/core/testing/node_modules/.bin/tsserver +4 -4
  348. package/core/testing/node_modules/.bin/unbuild +17 -0
  349. package/core/testing/node_modules/.bin/vitest +4 -4
  350. package/core/testing/package.json +16 -15
  351. package/core/tinker/README.md +61 -0
  352. package/core/tinker/node_modules/.bin/tsx +17 -0
  353. package/core/tinker/package.json +45 -0
  354. package/core/tinker/tinker.js +2 -0
  355. package/core/types/README.md +1 -1
  356. package/core/types/build.config.ts +13 -0
  357. package/core/types/node_modules/.bin/markdown-it +2 -2
  358. package/core/types/node_modules/.bin/vite +17 -0
  359. package/core/types/node_modules/.bin/vite-ssg +4 -4
  360. package/core/types/node_modules/.bin/vitepress +4 -4
  361. package/core/types/package.json +33 -24
  362. package/core/types/src/app.ts +4 -16
  363. package/core/types/src/auto-imports.ts +1 -3
  364. package/core/types/src/build.ts +1 -1
  365. package/core/types/src/cache.ts +78 -0
  366. package/core/types/src/cdn.ts +15 -0
  367. package/core/types/src/cli.ts +94 -60
  368. package/core/types/src/components.ts +1 -3
  369. package/core/types/src/cron-jobs.ts +17 -0
  370. package/core/types/src/database.ts +39 -2
  371. package/core/types/src/deploy.ts +8 -11
  372. package/core/types/src/dns.ts +49 -0
  373. package/core/types/src/docs.ts +2 -0
  374. package/core/types/src/events.ts +1 -1
  375. package/core/types/src/git.ts +1 -1
  376. package/core/types/src/index.ts +10 -2
  377. package/core/types/src/library.ts +7 -2
  378. package/core/types/src/model.ts +46 -0
  379. package/core/types/src/notifications.ts +151 -117
  380. package/core/types/src/pages.ts +10 -8
  381. package/core/types/src/payments.ts +63 -0
  382. package/core/types/src/reactivity.ts +1 -3
  383. package/core/types/src/router.ts +30 -0
  384. package/core/types/src/search-engine.ts +56 -8
  385. package/core/types/src/ssg.ts +1 -1
  386. package/core/types/src/stacks.ts +203 -0
  387. package/core/types/src/ui.ts +1 -1
  388. package/core/ui/README.md +1 -1
  389. package/core/ui/build.config.ts +13 -0
  390. package/core/ui/node_modules/.bin/vue-tsc +4 -4
  391. package/core/ui/package.json +23 -20
  392. package/core/ui/src/index.ts +5 -2
  393. package/core/ui/src/unocss.config.ts +47 -0
  394. package/core/ui/src/unocss.ts +2 -2
  395. package/core/utils/build.config.ts +13 -0
  396. package/core/utils/node_modules/.bin/rimraf +4 -4
  397. package/core/utils/node_modules/.bin/semver +17 -0
  398. package/core/utils/package.json +46 -22
  399. package/core/utils/src/base.ts +11 -6
  400. package/core/utils/src/config.ts +97 -0
  401. package/core/utils/src/debounce.ts +1 -0
  402. package/core/utils/src/guards.ts +3 -3
  403. package/core/utils/src/helpers.ts +30 -22
  404. package/core/utils/src/index.ts +7 -4
  405. package/core/utils/src/is.ts +80 -11
  406. package/core/utils/src/promise.ts +1 -1
  407. package/core/utils/src/throttle.ts +45 -0
  408. package/core/validation/README.md +1 -1
  409. package/core/validation/build.config.ts +13 -0
  410. package/core/validation/package.json +13 -14
  411. package/core/validation/src/index.ts +26 -2
  412. package/docs/.vitepress/config.ts +9 -0
  413. package/docs/README.md +13 -0
  414. package/docs/node_modules/.bin/rimraf +17 -0
  415. package/docs/node_modules/.bin/vitepress +17 -0
  416. package/docs/package.json +46 -0
  417. package/package.json +75 -35
  418. package/pages/desktop/.gitignore +24 -0
  419. package/pages/desktop/README.md +73 -0
  420. package/{core/x-ray → pages/desktop}/index.html +1 -1
  421. package/pages/desktop/package.json +26 -0
  422. package/pages/desktop/public/favicon.svg +1 -0
  423. package/pages/desktop/src/.gitignore +3 -0
  424. package/pages/desktop/src/Cargo.lock +3599 -0
  425. package/pages/desktop/src/Cargo.toml +28 -0
  426. package/pages/desktop/src/build.rs +3 -0
  427. package/pages/desktop/src/icons/128x128.png +0 -0
  428. package/pages/desktop/src/icons/128x128@2x.png +0 -0
  429. package/pages/desktop/src/icons/32x32.png +0 -0
  430. package/pages/desktop/src/icons/Square107x107Logo.png +0 -0
  431. package/pages/desktop/src/icons/Square142x142Logo.png +0 -0
  432. package/pages/desktop/src/icons/Square150x150Logo.png +0 -0
  433. package/pages/desktop/src/icons/Square284x284Logo.png +0 -0
  434. package/pages/desktop/src/icons/Square30x30Logo.png +0 -0
  435. package/pages/desktop/src/icons/Square310x310Logo.png +0 -0
  436. package/pages/desktop/src/icons/Square44x44Logo.png +0 -0
  437. package/pages/desktop/src/icons/Square71x71Logo.png +0 -0
  438. package/pages/desktop/src/icons/Square89x89Logo.png +0 -0
  439. package/pages/desktop/src/icons/StoreLogo.png +0 -0
  440. package/pages/desktop/src/icons/icon.icns +0 -0
  441. package/pages/desktop/src/icons/icon.ico +0 -0
  442. package/pages/desktop/src/icons/icon.png +0 -0
  443. package/pages/desktop/src/src/main.rs +10 -0
  444. package/pages/desktop/src/tauri.conf.json +73 -0
  445. package/shims.d.ts +0 -12
  446. package/simple-git-hooks.cjs +1 -0
  447. package/tsconfig.json +35 -12
  448. package/vitest.config.ts +2 -2
  449. package/buddy/bin/stacks.mjs +0 -4
  450. package/buddy/build.config.ts +0 -17
  451. package/buddy/node_modules/.bin/only-allow +0 -17
  452. package/buddy/node_modules/.bin/tsc +0 -17
  453. package/buddy/node_modules/.bin/tsserver +0 -17
  454. package/buddy/node_modules/.bin/unbuild +0 -17
  455. package/buddy/package.json +0 -194
  456. package/buddy/src/cli.ts +0 -66
  457. package/buddy/src/commands/clean.ts +0 -18
  458. package/buddy/src/commands/update.ts +0 -108
  459. package/core/actions/node_modules/.bin/esno +0 -17
  460. package/core/actions/node_modules/.bin/mkdist +0 -17
  461. package/core/actions/node_modules/.bin/tsc +0 -17
  462. package/core/actions/node_modules/.bin/tsserver +0 -17
  463. package/core/actions/src/build-core.ts +0 -7
  464. package/core/actions/src/fix-lint-issues.ts +0 -4
  465. package/core/actions/src/update.ts +0 -149
  466. package/core/ai/node_modules/.bin/mkdist +0 -17
  467. package/core/ai/node_modules/.bin/tsc +0 -17
  468. package/core/ai/node_modules/.bin/tsserver +0 -17
  469. package/core/alias/node_modules/.bin/mkdist +0 -17
  470. package/core/alias/node_modules/.bin/tsc +0 -17
  471. package/core/alias/node_modules/.bin/tsserver +0 -17
  472. package/core/arrays/node_modules/.bin/mkdist +0 -17
  473. package/core/arrays/node_modules/.bin/tsc +0 -17
  474. package/core/arrays/node_modules/.bin/tsserver +0 -17
  475. package/core/auth/node_modules/.bin/mkdist +0 -17
  476. package/core/auth/node_modules/.bin/tsc +0 -17
  477. package/core/auth/node_modules/.bin/tsserver +0 -17
  478. package/core/build/node_modules/.bin/mkdist +0 -17
  479. package/core/build/node_modules/.bin/tsc +0 -17
  480. package/core/build/node_modules/.bin/tsserver +0 -17
  481. package/core/cache/node_modules/.bin/mkdist +0 -17
  482. package/core/cache/node_modules/.bin/tsc +0 -17
  483. package/core/cache/node_modules/.bin/tsserver +0 -17
  484. package/core/chat/node_modules/.bin/mkdist +0 -17
  485. package/core/chat/node_modules/.bin/tsc +0 -17
  486. package/core/chat/node_modules/.bin/tsserver +0 -17
  487. package/core/cli/node_modules/.bin/esno +0 -17
  488. package/core/cli/node_modules/.bin/mkdist +0 -17
  489. package/core/cloud/node_modules/.bin/mkdist +0 -17
  490. package/core/cloud/node_modules/.bin/tsc +0 -17
  491. package/core/cloud/node_modules/.bin/tsserver +0 -17
  492. package/core/collections/node_modules/.bin/mkdist +0 -17
  493. package/core/collections/node_modules/.bin/tsc +0 -17
  494. package/core/collections/node_modules/.bin/tsserver +0 -17
  495. package/core/config/node_modules/.bin/mkdist +0 -17
  496. package/core/config/node_modules/.bin/tsc +0 -17
  497. package/core/config/node_modules/.bin/tsserver +0 -17
  498. package/core/config/node_modules/.bin/unbuild +0 -17
  499. package/core/config/src/helpers.ts +0 -30
  500. package/core/dashboard/README.md +0 -74
  501. package/core/dashboard/node_modules/.bin/mkdist +0 -17
  502. package/core/database/node_modules/.bin/mkdist +0 -17
  503. package/core/database/node_modules/.bin/tsc +0 -17
  504. package/core/database/node_modules/.bin/tsserver +0 -17
  505. package/core/datetime/node_modules/.bin/mkdist +0 -17
  506. package/core/datetime/node_modules/.bin/tsc +0 -17
  507. package/core/datetime/node_modules/.bin/tsserver +0 -17
  508. package/core/desktop/node_modules/.bin/mkdist +0 -17
  509. package/core/desktop/node_modules/.bin/tsc +0 -17
  510. package/core/desktop/node_modules/.bin/tsserver +0 -17
  511. package/core/docs/node_modules/.bin/mkdist +0 -17
  512. package/core/docs/node_modules/.bin/tsc +0 -17
  513. package/core/docs/node_modules/.bin/tsserver +0 -17
  514. package/core/domains/node_modules/.bin/mkdist +0 -17
  515. package/core/domains/node_modules/.bin/tsc +0 -17
  516. package/core/domains/node_modules/.bin/tsserver +0 -17
  517. package/core/drivers/node_modules/.bin/mkdist +0 -17
  518. package/core/drivers/node_modules/.bin/tsc +0 -17
  519. package/core/drivers/node_modules/.bin/tsserver +0 -17
  520. package/core/drivers/src/index.ts +0 -10
  521. package/core/email/dist/utils/template.html +0 -8
  522. package/core/email/node_modules/.bin/mkdist +0 -17
  523. package/core/email/node_modules/.bin/tsc +0 -17
  524. package/core/email/node_modules/.bin/tsserver +0 -17
  525. package/core/error-handling/node_modules/.bin/mkdist +0 -17
  526. package/core/error-handling/node_modules/.bin/tsc +0 -17
  527. package/core/error-handling/node_modules/.bin/tsserver +0 -17
  528. package/core/events/node_modules/.bin/mkdist +0 -17
  529. package/core/events/node_modules/.bin/tsc +0 -17
  530. package/core/events/node_modules/.bin/tsserver +0 -17
  531. package/core/git/node_modules/.bin/mkdist +0 -17
  532. package/core/git/node_modules/.bin/tsc +0 -17
  533. package/core/git/node_modules/.bin/tsserver +0 -17
  534. package/core/health/node_modules/.bin/mkdist +0 -17
  535. package/core/health/node_modules/.bin/tsc +0 -17
  536. package/core/health/node_modules/.bin/tsserver +0 -17
  537. package/core/lint/node_modules/.bin/mkdist +0 -17
  538. package/core/lint/node_modules/.bin/tsc +0 -17
  539. package/core/lint/node_modules/.bin/tsserver +0 -17
  540. package/core/logging/debug-test.ts +0 -8
  541. package/core/logging/node_modules/.bin/mkdist +0 -17
  542. package/core/modules/node_modules/.bin/mkdist +0 -17
  543. package/core/modules/node_modules/.bin/tsc +0 -17
  544. package/core/modules/node_modules/.bin/tsserver +0 -17
  545. package/core/notifications/node_modules/.bin/mkdist +0 -17
  546. package/core/notifications/node_modules/.bin/tsc +0 -17
  547. package/core/notifications/node_modules/.bin/tsserver +0 -17
  548. package/core/notifications/node_modules/.bin/unbuild +0 -17
  549. package/core/objects/node_modules/.bin/mkdist +0 -17
  550. package/core/objects/node_modules/.bin/tsc +0 -17
  551. package/core/objects/node_modules/.bin/tsserver +0 -17
  552. package/core/path/node_modules/.bin/mkdist +0 -17
  553. package/core/path/node_modules/.bin/tsc +0 -17
  554. package/core/path/node_modules/.bin/tsserver +0 -17
  555. package/core/payments/node_modules/.bin/mkdist +0 -17
  556. package/core/payments/node_modules/.bin/tsc +0 -17
  557. package/core/payments/node_modules/.bin/tsserver +0 -17
  558. package/core/push/node_modules/.bin/mkdist +0 -17
  559. package/core/push/node_modules/.bin/tsc +0 -17
  560. package/core/push/node_modules/.bin/tsserver +0 -17
  561. package/core/queue/node_modules/.bin/mkdist +0 -17
  562. package/core/queue/node_modules/.bin/tsc +0 -17
  563. package/core/queue/node_modules/.bin/tsserver +0 -17
  564. package/core/realtime/node_modules/.bin/mkdist +0 -17
  565. package/core/realtime/node_modules/.bin/tsc +0 -17
  566. package/core/realtime/node_modules/.bin/tsserver +0 -17
  567. package/core/router/node_modules/.bin/mkdist +0 -17
  568. package/core/router/node_modules/.bin/tsc +0 -17
  569. package/core/router/node_modules/.bin/tsserver +0 -17
  570. package/core/search-engine/node_modules/.bin/mkdist +0 -17
  571. package/core/search-engine/node_modules/.bin/tsc +0 -17
  572. package/core/search-engine/node_modules/.bin/tsserver +0 -17
  573. package/core/security/node_modules/.bin/mkdist +0 -17
  574. package/core/security/node_modules/.bin/tsc +0 -17
  575. package/core/security/node_modules/.bin/tsserver +0 -17
  576. package/core/server/node_modules/.bin/mkdist +0 -17
  577. package/core/server/node_modules/.bin/tsc +0 -17
  578. package/core/server/node_modules/.bin/tsserver +0 -17
  579. package/core/sms/node_modules/.bin/mkdist +0 -17
  580. package/core/sms/node_modules/.bin/tsc +0 -17
  581. package/core/sms/node_modules/.bin/tsserver +0 -17
  582. package/core/storage/node_modules/.bin/mkdist +0 -17
  583. package/core/storage/node_modules/.bin/tsc +0 -17
  584. package/core/storage/node_modules/.bin/tsserver +0 -17
  585. package/core/strings/node_modules/.bin/mkdist +0 -17
  586. package/core/strings/node_modules/.bin/tsc +0 -17
  587. package/core/strings/node_modules/.bin/tsserver +0 -17
  588. package/core/strings/node_modules/.bin/unbuild +0 -17
  589. package/core/tables/README.md +0 -109
  590. package/core/tables/examples/vue/App.vue +0 -12
  591. package/core/tables/examples/vue/favicon.png +0 -0
  592. package/core/tables/examples/vue/index.html +0 -20
  593. package/core/tables/examples/web/favicon.png +0 -0
  594. package/core/tables/examples/web/index.html +0 -13
  595. package/core/tables/index.html +0 -13
  596. package/core/tables/node_modules/.bin/mkdist +0 -17
  597. package/core/tables/node_modules/.bin/tsc +0 -17
  598. package/core/tables/node_modules/.bin/tsserver +0 -17
  599. package/core/tables/node_modules/.bin/unbuild +0 -17
  600. package/core/tables/node_modules/.bin/vite +0 -17
  601. package/core/tables/old.vite.config.ts +0 -97
  602. package/core/tables/package.json +0 -64
  603. package/core/tables/src/App.vue +0 -23
  604. package/core/tables/src/components/Demo.vue +0 -89
  605. package/core/tables/src/components/README.md +0 -111
  606. package/core/tables/src/components/Table.vue +0 -342
  607. package/core/tables/src/components/TableBody.vue +0 -33
  608. package/core/tables/src/components/TableCellActionItems.vue +0 -9
  609. package/core/tables/src/components/TableFilters.vue +0 -703
  610. package/core/tables/src/components/TableHead.vue +0 -87
  611. package/core/tables/src/components/TablePagination.vue +0 -146
  612. package/core/tables/src/components/TableRow.vue +0 -78
  613. package/core/tables/src/components/TableSearch.vue +0 -38
  614. package/core/tables/src/components/Tooltip.vue +0 -10
  615. package/core/tables/src/docs/index.md +0 -0
  616. package/core/tables/src/functions/README.md +0 -8
  617. package/core/tables/src/functions/dark.ts +0 -3
  618. package/core/tables/src/functions/index.ts +0 -2
  619. package/core/tables/src/functions/table.ts +0 -207
  620. package/core/tables/src/main.js +0 -4
  621. package/core/tables/vite.config.ts +0 -26
  622. package/core/testing/node_modules/.bin/mkdist +0 -17
  623. package/core/types/node_modules/.bin/mkdist +0 -17
  624. package/core/types/node_modules/.bin/tsc +0 -17
  625. package/core/types/node_modules/.bin/tsserver +0 -17
  626. package/core/ui/node_modules/.bin/mkdist +0 -17
  627. package/core/ui/node_modules/.bin/tsc +0 -17
  628. package/core/ui/node_modules/.bin/tsserver +0 -17
  629. package/core/utils/node_modules/.bin/esno +0 -17
  630. package/core/utils/node_modules/.bin/mkdist +0 -17
  631. package/core/utils/node_modules/.bin/tsc +0 -17
  632. package/core/utils/node_modules/.bin/tsserver +0 -17
  633. package/core/utils/src/vendor.ts +0 -1
  634. package/core/validation/node_modules/.bin/mkdist +0 -17
  635. package/core/validation/node_modules/.bin/tsc +0 -17
  636. package/core/validation/node_modules/.bin/tsserver +0 -17
  637. package/core/x-ray/node_modules/.bin/mkdist +0 -17
  638. package/core/x-ray/node_modules/.bin/tsc +0 -17
  639. package/core/x-ray/node_modules/.bin/tsserver +0 -17
  640. package/core/x-ray/routes/index.ts +0 -19
  641. package/core/x-ray/src/client.ts +0 -14
  642. package/core/x-ray/src/desktop/api/nitro.config.ts +0 -18
  643. package/core/x-ray/src/desktop/api/routes/api/logs.ts +0 -7
  644. package/core/x-ray/src/desktop/api/routes/api/store-logs.ts +0 -22
  645. package/core/x-ray/src/desktop/api/src/types.ts +0 -7
  646. package/core/x-ray/src/desktop/api/storage/index.ts +0 -7
  647. package/core/x-ray/src/desktop/app.vue +0 -376
  648. package/core/x-ray/src/desktop/functions/http.ts +0 -26
  649. package/core/x-ray/src/desktop/functions/types.ts +0 -7
  650. package/core/x-ray/src/desktop/main.ts +0 -14
  651. package/core/x-ray/src/desktop/modules/counter/mod.vue +0 -44
  652. package/core/x-ray/src/desktop/modules/fetcher/mod.vue +0 -63
  653. package/core/x-ray/src/desktop/plugins/unified/unified-app.ts +0 -5
  654. package/core/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
  655. package/core/x-ray/src/desktop/services/http.ts +0 -45
  656. package/core/x-ray/src/desktop/styles/app.scss +0 -0
  657. package/core/x-ray/src/http.ts +0 -26
  658. package/core/x-ray/src/index.ts +0 -42
  659. package/core/x-ray/src/ray.config.js +0 -28
  660. package/core/x-ray/src/types.ts +0 -8
  661. package/examples/vue/App.vue +0 -12
  662. package/examples/vue/favicon.png +0 -0
  663. package/examples/vue/index.html +0 -20
  664. package/examples/web/favicon.png +0 -0
  665. package/examples/web/index.html +0 -13
  666. package/functions/package.json +0 -41
  667. /package/core/actions/src/{lint-fix.ts → lint/fix.ts} +0 -0
  668. /package/core/{dashboard/src/index.ts → actions/src/upgrade/dependencies.ts} +0 -0
  669. /package/core/{tables/src/cli/index.ts → analytics/src/drivers/fathom.ts} +0 -0
  670. /package/core/{tables/src/config/tables.ts → analytics/src/index.ts} +0 -0
  671. /package/core/{dashboard → analytics}/tests/example.test.ts +0 -0
  672. /package/{buddy → core/buddy}/art/social.png +0 -0
  673. /package/{netlify.toml → core/cloud/netlify.toml} +0 -0
  674. /package/core/{drivers → development}/tests/example.test.ts +0 -0
  675. /package/core/{tables → faker}/tests/example.test.ts +0 -0
  676. /package/core/{x-ray → orm}/tests/example.test.ts +0 -0
  677. /package/pages/{App.vue → web/App.vue} +0 -0
  678. /package/pages/{index.html → web/index.html} +0 -0
  679. /package/pages/{main.ts → web/main.ts} +0 -0
  680. /package/pages/{public → web/public}/_headers +0 -0
  681. /package/pages/{public → web/public}/favicon-dark.svg +0 -0
  682. /package/pages/{public → web/public}/favicon.svg +0 -0
  683. /package/pages/{public → web/public}/pwa-192x192.png +0 -0
  684. /package/pages/{public → web/public}/pwa-512x512.png +0 -0
  685. /package/pages/{public → web/public}/safari-pinned-tab.svg +0 -0
  686. /package/pages/{styles → web/styles}/main.css +0 -0
  687. /package/pages/{styles → web/styles}/markdown.css +0 -0
package/auto-imports.d.ts CHANGED
@@ -8,21 +8,34 @@ declare global {
8
8
  const $ref: typeof import('vue/macros')['$ref']
9
9
  const $shallowRef: typeof import('vue/macros')['$shallowRef']
10
10
  const $toRef: typeof import('vue/macros')['$toRef']
11
- const Collection: typeof import('./core/collections/src/index')['Collection']
11
+ const Collection: typeof import('./core/objects/src/index')['Collection']
12
12
  const EffectScope: typeof import('vue')['EffectScope']
13
+ const Err: typeof import('./core/error-handling/src/index')['Err']
14
+ const Ok: typeof import('./core/error-handling/src/index')['Ok']
15
+ const Result: typeof import('./core/error-handling/src/index')['Result']
16
+ const ResultAsync: typeof import('./core/error-handling/src/index')['ResultAsync']
13
17
  const _dirname: typeof import('./core/storage/src/index')['_dirname']
14
18
  const actionsPath: typeof import('./core/path/src/index')['actionsPath']
19
+ const addIrregularRule: typeof import('./core/strings/src/pluralize')['addIrregularRule']
20
+ const addPluralRule: typeof import('./core/strings/src/pluralize')['addPluralRule']
21
+ const addSingularRule: typeof import('./core/strings/src/pluralize')['addSingularRule']
22
+ const addUncountableRule: typeof import('./core/strings/src/pluralize')['addUncountableRule']
15
23
  const afterAll: typeof import('vitest')['afterAll']
16
24
  const afterEach: typeof import('vitest')['afterEach']
25
+ const aiPath: typeof import('./core/path/src/index')['aiPath']
17
26
  const aliasPath: typeof import('./core/path/src/index')['aliasPath']
18
- const app: typeof import('../config/app')['app']
27
+ const all: typeof import('./core/events/src/index')['all']
28
+ const app: typeof import('../config/app')['default']
19
29
  const arraysPath: typeof import('./core/path/src/index')['arraysPath']
20
- const assert: typeof import('vitest')['assert']
30
+ const assert: typeof import('./core/utils/src/index')['assert']
21
31
  const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
32
+ const at: typeof import('./core/arrays/src/index')['at']
33
+ const authPath: typeof import('./core/path/src/index')['authPath']
22
34
  const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
23
35
  const base64Encode: typeof import('./core/security/src/hash')['base64Encode']
24
36
  const base64Verify: typeof import('./core/security/src/hash')['base64Verify']
25
37
  const basename: typeof import('./core/path/src/index')['basename']
38
+ const batchInvoke: typeof import('./core/utils/src/function')['batchInvoke']
26
39
  const bcryptEncode: typeof import('./core/security/src/hash')['bcryptEncode']
27
40
  const bcryptVerify: typeof import('./core/security/src/hash')['bcryptVerify']
28
41
  const beforeAll: typeof import('vitest')['beforeAll']
@@ -30,12 +43,21 @@ declare global {
30
43
  const buildEnginePath: typeof import('./core/path/src/index')['buildEnginePath']
31
44
  const buildEntriesPath: typeof import('./core/path/src/index')['buildEntriesPath']
32
45
  const buildPath: typeof import('./core/path/src/index')['buildPath']
33
- const camelCase: typeof import('./core/strings/src/index')['camelCase']
34
- const capitalCase: typeof import('./core/strings/src/index')['capitalCase']
46
+ const cache: typeof import('../config/cache')['cache']
47
+ const cachePath: typeof import('./core/path/src/index')['cachePath']
48
+ const calculatePagination: typeof import('./core/search-engine/src/index')['calculatePagination']
49
+ const camelCase: typeof import('./core/strings/src/case')['camelCase']
50
+ const capitalCase: typeof import('./core/strings/src/case')['capitalCase']
51
+ const capitalize: typeof import('./core/strings/src/utils')['capitalize']
35
52
  const chai: typeof import('vitest')['chai']
53
+ const chat: typeof import('./core/notifications/src/index')['chat']
54
+ const chatPath: typeof import('./core/path/src/index')['chatPath']
36
55
  const clamp: typeof import('@vueuse/shared')['clamp']
56
+ const clampArrayRange: typeof import('./core/arrays/src/index')['clampArrayRange']
57
+ const clearUndefined: typeof import('./core/objects/src/index')['clearUndefined']
37
58
  const cliPath: typeof import('./core/path/src/index')['cliPath']
38
- const collect: typeof import('./core/collections/src/index')['collect']
59
+ const client: typeof import('./core/search-engine/src/index')['client']
60
+ const collect: typeof import('./core/objects/src/index')['collect']
39
61
  const collectionsPath: typeof import('./core/path/src/index')['collectionsPath']
40
62
  const componentsPath: typeof import('./core/path/src/index')['componentsPath']
41
63
  const computed: typeof import('vue')['computed']
@@ -43,108 +65,235 @@ declare global {
43
65
  const computedEager: typeof import('@vueuse/core')['computedEager']
44
66
  const computedInject: typeof import('@vueuse/core')['computedInject']
45
67
  const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
68
+ const config: typeof import('./core/utils/src/helpers')['config']
46
69
  const configPath: typeof import('./core/path/src/index')['configPath']
47
- const constantCase: typeof import('./core/strings/src/index')['constantCase']
70
+ const constantCase: typeof import('./core/strings/src/case')['constantCase']
48
71
  const contains: typeof import('./core/arrays/src/index')['contains']
72
+ const containsAll: typeof import('./core/arrays/src/index')['containsAll']
73
+ const containsAny: typeof import('./core/arrays/src/index')['containsAny']
74
+ const containsNone: typeof import('./core/arrays/src/index')['containsNone']
75
+ const containsOnly: typeof import('./core/arrays/src/index')['containsOnly']
49
76
  const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
50
77
  const controlledRef: typeof import('@vueuse/core')['controlledRef']
51
78
  const copyFolder: typeof import('./core/storage/src/index')['copyFolder']
52
79
  const corePath: typeof import('./core/path/src/index')['corePath']
53
80
  const count: typeof import('../functions/counter')['count']
54
81
  const createApp: typeof import('vue')['createApp']
82
+ const createControlledPromise: typeof import('./core/utils/src/promise')['createControlledPromise']
55
83
  const createEventHook: typeof import('@vueuse/core')['createEventHook']
84
+ const createFolder: typeof import('./core/storage/src/index')['createFolder']
56
85
  const createGenericProjection: typeof import('@vueuse/math')['createGenericProjection']
57
86
  const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
58
87
  const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
59
88
  const createProjection: typeof import('@vueuse/math')['createProjection']
89
+ const createPromiseLock: typeof import('./core/utils/src/promise')['createPromiseLock']
60
90
  const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
61
91
  const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
92
+ const createSingletonPromise: typeof import('./core/utils/src/promise')['createSingletonPromise']
62
93
  const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
94
+ const currentPage: typeof import('./core/search-engine/src/index')['currentPage']
63
95
  const customElementsDataPath: typeof import('./core/path/src/index')['customElementsDataPath']
64
96
  const customRef: typeof import('vue')['customRef']
97
+ const dashboardPath: typeof import('./core/path/src/index')['dashboardPath']
98
+ const database: typeof import('../config/database')['database']
99
+ const databasePath: typeof import('./core/path/src/index')['databasePath']
100
+ const dd: typeof import('./core/logging/src/index')['dd']
101
+ const debounce: typeof import('./core/utils/src/debounce')['debounce']
65
102
  const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
66
103
  const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
104
+ const debug: typeof import('./core/logging/src/index')['debug']
67
105
  const decrypt: typeof import('./core/security/src/crypt')['decrypt']
106
+ const deepMerge: typeof import('./core/objects/src/index')['deepMerge']
68
107
  const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
69
108
  const defineComponent: typeof import('vue')['defineComponent']
70
109
  const deleteEmptyFolders: typeof import('./core/storage/src/index')['deleteEmptyFolders']
71
110
  const deleteFiles: typeof import('./core/storage/src/index')['deleteFiles']
72
111
  const deleteFolder: typeof import('./core/storage/src/index')['deleteFolder']
73
112
  const delimiter: typeof import('./core/path/src/index')['delimiter']
74
- const deploy: typeof import('../config/deploy')['deploy']
75
113
  const describe: typeof import('vitest')['describe']
114
+ const desktopPath: typeof import('./core/path/src/index')['desktopPath']
115
+ const detectIndent: typeof import('./core/utils/src/helpers')['detectIndent']
116
+ const detectNewline: typeof import('./core/utils/src/helpers')['detectNewline']
117
+ const determineResetPreset: typeof import('./core/utils/src/helpers')['determineResetPreset']
118
+ const determineState: typeof import('./core/search-engine/src/helpers')['determineState']
76
119
  const dirname: typeof import('./core/path/src/index')['dirname']
120
+ const dispatch: typeof import('./core/events/src/index')['dispatch']
77
121
  const docs: typeof import('../config/docs')['default']
78
122
  const docsPath: typeof import('./core/path/src/index')['docsPath']
79
123
  const doesFolderExist: typeof import('./core/storage/src/index')['doesFolderExist']
80
- const dotCase: typeof import('./core/strings/src/index')['dotCase']
124
+ const domainsPath: typeof import('./core/path/src/index')['domainsPath']
125
+ const dotCase: typeof import('./core/strings/src/case')['dotCase']
126
+ const dump: typeof import('./core/logging/src/index')['dump']
81
127
  const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
82
128
  const effectScope: typeof import('vue')['effectScope']
129
+ const email: typeof import('./core/notifications/src/index')['email']
130
+ const emailPath: typeof import('./core/path/src/index')['emailPath']
83
131
  const encrypt: typeof import('./core/security/src/crypt')['encrypt']
132
+ const ensurePrefix: typeof import('./core/strings/src/utils')['ensurePrefix']
133
+ const ensureSuffix: typeof import('./core/strings/src/utils')['ensureSuffix']
134
+ const env: typeof import('./core/utils/src/helpers')['env']
135
+ const err: typeof import('./core/error-handling/src/index')['err']
136
+ const errAsync: typeof import('./core/error-handling/src/index')['errAsync']
137
+ const errorHandlingPath: typeof import('./core/path/src/index')['errorHandlingPath']
138
+ const events: typeof import('./core/events/src/index')['events']
139
+ const eventsPath: typeof import('./core/path/src/index')['eventsPath']
84
140
  const examplesPath: typeof import('./core/path/src/index')['examplesPath']
85
141
  const expect: typeof import('vitest')['expect']
86
142
  const extendRef: typeof import('@vueuse/core')['extendRef']
87
143
  const extname: typeof import('./core/path/src/index')['extname']
88
144
  const filesystem: typeof import('./core/storage/src/index')['filesystem']
145
+ const filterName: typeof import('./core/search-engine/src/index')['filterName']
146
+ const filters: typeof import('./core/search-engine/src/index')['filters']
147
+ const flattenArrayable: typeof import('./core/arrays/src/index')['flattenArrayable']
89
148
  const format: typeof import('./core/path/src/index')['format']
90
149
  const frameworkPath: typeof import('./core/path/src/index')['frameworkPath']
91
- const fsPath: typeof import('./core/path/src/index')['fsPath']
150
+ const frameworkVersion: typeof import('./core/utils/src/helpers')['frameworkVersion']
151
+ const fromPromise: typeof import('./core/error-handling/src/index')['fromPromise']
152
+ const fromSafePromise: typeof import('./core/error-handling/src/index')['fromSafePromise']
153
+ const fromThrowable: typeof import('./core/error-handling/src/index')['fromThrowable']
92
154
  const functionsPath: typeof import('./core/path/src/index')['functionsPath']
93
155
  const generateAppKey: typeof import('./core/security/src/key')['generateAppKey']
94
156
  const getCurrentInstance: typeof import('vue')['getCurrentInstance']
95
157
  const getCurrentScope: typeof import('vue')['getCurrentScope']
158
+ const getTypeName: typeof import('./core/utils/src/index')['getTypeName']
96
159
  const git: typeof import('../config/git')['git']
97
160
  const gitPath: typeof import('./core/path/src/index')['gitPath']
161
+ const goToNextPage: typeof import('./core/search-engine/src/index')['goToNextPage']
162
+ const goToPage: typeof import('./core/search-engine/src/index')['goToPage']
163
+ const goToPrevPage: typeof import('./core/search-engine/src/index')['goToPrevPage']
98
164
  const h: typeof import('vue')['h']
99
165
  const hasComponents: typeof import('./core/storage/src/index')['hasComponents']
100
166
  const hasFiles: typeof import('./core/storage/src/index')['hasFiles']
101
167
  const hasFunctions: typeof import('./core/storage/src/index')['hasFunctions']
102
168
  const hasOwn: typeof import('@vueuse/shared')['hasOwn']
169
+ const hasOwnProperty: typeof import('./core/objects/src/index')['hasOwnProperty']
170
+ const hasScript: typeof import('./core/utils/src/helpers')['hasScript']
103
171
  const hashing: typeof import('../config/hashing')['hashing']
104
- const headerCase: typeof import('./core/strings/src/index')['headerCase']
172
+ const headerCase: typeof import('./core/strings/src/case')['headerCase']
173
+ const healthPath: typeof import('./core/path/src/index')['healthPath']
174
+ const hits: typeof import('./core/search-engine/src/index')['hits']
105
175
  const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
106
176
  const increment: typeof import('../functions/counter')['increment']
177
+ const index: typeof import('./core/search-engine/src/index')['index']
107
178
  const inject: typeof import('vue')['inject']
108
179
  const isAbsolute: typeof import('./core/path/src/index')['isAbsolute']
109
- const isBoolean: typeof import('@vueuse/shared')['isBoolean']
180
+ const isAlpha: typeof import('./core/strings/src/validation')['isAlpha']
181
+ const isAlphanumeric: typeof import('./core/strings/src/validation')['isAlphanumeric']
182
+ const isAppKeySet: typeof import('./core/utils/src/helpers')['isAppKeySet']
183
+ const isAscii: typeof import('./core/strings/src/validation')['isAscii']
184
+ const isBase32: typeof import('./core/strings/src/validation')['isBase32']
185
+ const isBase64: typeof import('./core/strings/src/validation')['isBase64']
186
+ const isBoolean: typeof import('./core/utils/src/is')['isBoolean']
187
+ const isBrowser: typeof import('./core/utils/src/is')['isBrowser']
188
+ const isByteLength: typeof import('./core/strings/src/validation')['isByteLength']
110
189
  const isClient: typeof import('@vueuse/shared')['isClient']
190
+ const isCreditCard: typeof import('./core/strings/src/validation')['isCreditCard']
191
+ const isCurrency: typeof import('./core/strings/src/validation')['isCurrency']
111
192
  const isDark: typeof import('../functions/dark')['isDark']
112
- const isDef: typeof import('@vueuse/shared')['isDef']
193
+ const isDataURI: typeof import('./core/strings/src/validation')['isDataURI']
194
+ const isDate: typeof import('./core/strings/src/validation')['isDate']
195
+ const isDeepEqual: typeof import('./core/utils/src/equal')['isDeepEqual']
196
+ const isDef: typeof import('./core/utils/src/is')['isDef']
113
197
  const isDefined: typeof import('@vueuse/core')['isDefined']
198
+ const isEmail: typeof import('./core/strings/src/validation')['isEmail']
199
+ const isFQDN: typeof import('./core/strings/src/validation')['isFQDN']
114
200
  const isFile: typeof import('./core/storage/src/index')['isFile']
115
201
  const isFolder: typeof import('./core/storage/src/index')['isFolder']
116
- const isFunction: typeof import('@vueuse/shared')['isFunction']
202
+ const isFullWidth: typeof import('./core/strings/src/validation')['isFullWidth']
203
+ const isFunction: typeof import('./core/utils/src/is')['isFunction']
204
+ const isHSL: typeof import('./core/strings/src/validation')['isHSL']
205
+ const isHalfWidth: typeof import('./core/strings/src/validation')['isHalfWidth']
206
+ const isHash: typeof import('./core/strings/src/validation')['isHash']
207
+ const isHexColor: typeof import('./core/strings/src/validation')['isHexColor']
208
+ const isHexadecimal: typeof import('./core/strings/src/validation')['isHexadecimal']
209
+ const isIBAN: typeof import('./core/strings/src/validation')['isIBAN']
117
210
  const isIOS: typeof import('@vueuse/shared')['isIOS']
118
- const isNumber: typeof import('@vueuse/shared')['isNumber']
119
- const isObject: typeof import('@vueuse/shared')['isObject']
211
+ const isIP: typeof import('./core/strings/src/validation')['isIP']
212
+ const isIPRange: typeof import('./core/strings/src/validation')['isIPRange']
213
+ const isISBN: typeof import('./core/strings/src/validation')['isISBN']
214
+ const isISIN: typeof import('./core/strings/src/validation')['isISIN']
215
+ const isISO31661Alpha2: typeof import('./core/strings/src/validation')['isISO31661Alpha2']
216
+ const isISO31661Alpha3: typeof import('./core/strings/src/validation')['isISO31661Alpha3']
217
+ const isISO8601: typeof import('./core/strings/src/validation')['isISO8601']
218
+ const isISRC: typeof import('./core/strings/src/validation')['isISRC']
219
+ const isISSN: typeof import('./core/strings/src/validation')['isISSN']
220
+ const isIdentityCard: typeof import('./core/strings/src/validation')['isIdentityCard']
221
+ const isJSON: typeof import('./core/strings/src/validation')['isJSON']
222
+ const isJWT: typeof import('./core/strings/src/validation')['isJWT']
223
+ const isKeyOf: typeof import('./core/objects/src/index')['isKeyOf']
224
+ const isLatLong: typeof import('./core/strings/src/validation')['isLatLong']
225
+ const isLatitude: typeof import('./core/strings/src/validation')['isLatitude']
226
+ const isLongitude: typeof import('./core/strings/src/validation')['isLongitude']
227
+ const isMACAddress: typeof import('./core/strings/src/validation')['isMACAddress']
228
+ const isManifest: typeof import('./core/utils/src/helpers')['isManifest']
229
+ const isMap: typeof import('./core/utils/src/is')['isMap']
230
+ const isMimeType: typeof import('./core/strings/src/validation')['isMimeType']
231
+ const isMobilePhone: typeof import('./core/strings/src/validation')['isMobilePhone']
232
+ const isMongoId: typeof import('./core/strings/src/validation')['isMongoId']
233
+ const isNumber: typeof import('./core/utils/src/is')['isNumber']
234
+ const isNumeric: typeof import('./core/strings/src/validation')['isNumeric']
235
+ const isObject: typeof import('./core/utils/src/is')['isObject']
236
+ const isOptionalString: typeof import('./core/utils/src/helpers')['isOptionalString']
237
+ const isPlural: typeof import('./core/strings/src/pluralize')['isPlural']
238
+ const isPostalCode: typeof import('./core/strings/src/validation')['isPostalCode']
239
+ const isProjectCreated: typeof import('./core/utils/src/helpers')['isProjectCreated']
240
+ const isPromise: typeof import('./core/utils/src/is')['isPromise']
120
241
  const isProxy: typeof import('vue')['isProxy']
121
242
  const isReactive: typeof import('vue')['isReactive']
122
243
  const isReadonly: typeof import('vue')['isReadonly']
123
244
  const isRef: typeof import('vue')['isRef']
124
- const isString: typeof import('@vueuse/shared')['isString']
125
- const isWindow: typeof import('@vueuse/shared')['isWindow']
245
+ const isServer: typeof import('./core/utils/src/is')['isServer']
246
+ const isSet: typeof import('./core/utils/src/is')['isSet']
247
+ const isSingular: typeof import('./core/strings/src/pluralize')['isSingular']
248
+ const isString: typeof import('./core/utils/src/is')['isString']
249
+ const isStrongPassword: typeof import('./core/strings/src/validation')['isStrongPassword']
250
+ const isTruthy: typeof import('./core/utils/src/guards')['isTruthy']
251
+ const isURL: typeof import('./core/strings/src/validation')['isURL']
252
+ const isUUID: typeof import('./core/strings/src/validation')['isUUID']
253
+ const isWindow: typeof import('./core/utils/src/is')['isWindow']
126
254
  const it: typeof import('vitest')['it']
127
255
  const join: typeof import('./core/path/src/index')['join']
128
- const kebabCase: typeof import('./core/strings/src/index')['kebabCase']
256
+ const kebabCase: typeof import('./core/strings/src/case')['kebabCase']
129
257
  const langPath: typeof import('./core/path/src/index')['langPath']
258
+ const last: typeof import('./core/arrays/src/index')['last']
259
+ const lastPageNumber: typeof import('./core/search-engine/src/index')['lastPageNumber']
130
260
  const library: typeof import('../config/library')['library']
131
261
  const libraryEntryPath: typeof import('./core/path/src/index')['libraryEntryPath']
132
262
  const lintPath: typeof import('./core/path/src/index')['lintPath']
263
+ const listen: typeof import('./core/events/src/index')['listen']
264
+ const log: typeof import('./core/logging/src/index')['log']
265
+ const loggingPath: typeof import('./core/path/src/index')['loggingPath']
133
266
  const logicAnd: typeof import('@vueuse/math')['logicAnd']
134
267
  const logicNot: typeof import('@vueuse/math')['logicNot']
135
268
  const logicOr: typeof import('@vueuse/math')['logicOr']
269
+ const loop: typeof import('./core/utils/src/index')['loop']
136
270
  const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
137
271
  const makeHash: typeof import('./core/security/src/hash')['makeHash']
138
272
  const markRaw: typeof import('vue')['markRaw']
139
273
  const md5Encode: typeof import('./core/security/src/hash')['md5Encode']
274
+ const mergeArrayable: typeof import('./core/arrays/src/index')['mergeArrayable']
275
+ const mitt: typeof import('./core/events/src/index')['mitt']
140
276
  const modulesPath: typeof import('./core/path/src/index')['modulesPath']
277
+ const move: typeof import('./core/arrays/src/index')['move']
141
278
  const nextTick: typeof import('vue')['nextTick']
142
- const noCase: typeof import('./core/strings/src/index')['noCase']
143
- const noop: typeof import('@vueuse/shared')['noop']
279
+ const noCase: typeof import('./core/strings/src/case')['noCase']
280
+ const noNull: typeof import('./core/utils/src/guards')['noNull']
281
+ const noop: typeof import('./core/utils/src/index')['noop']
144
282
  const normalize: typeof import('./core/path/src/index')['normalize']
145
283
  const normalizeString: typeof import('./core/path/src/index')['normalizeString']
284
+ const notNullish: typeof import('./core/utils/src/guards')['notNullish']
285
+ const notUndefined: typeof import('./core/utils/src/guards')['notUndefined']
286
+ const notification: typeof import('./core/notifications/src/index')['notification']
287
+ const notificationsPath: typeof import('./core/path/src/index')['notificationsPath']
146
288
  const now: typeof import('@vueuse/shared')['now']
289
+ const objectEntries: typeof import('./core/objects/src/index')['objectEntries']
290
+ const objectKeys: typeof import('./core/objects/src/index')['objectKeys']
291
+ const objectMap: typeof import('./core/objects/src/index')['objectMap']
292
+ const objectPick: typeof import('./core/objects/src/index')['objectPick']
147
293
  const objectsPath: typeof import('./core/path/src/index')['objectsPath']
294
+ const off: typeof import('./core/events/src/index')['off']
295
+ const ok: typeof import('./core/error-handling/src/index')['ok']
296
+ const okAsync: typeof import('./core/error-handling/src/index')['okAsync']
148
297
  const onActivated: typeof import('vue')['onActivated']
149
298
  const onBeforeMount: typeof import('vue')['onBeforeMount']
150
299
  const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
@@ -164,19 +313,30 @@ declare global {
164
313
  const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
165
314
  const onUnmounted: typeof import('vue')['onUnmounted']
166
315
  const onUpdated: typeof import('vue')['onUpdated']
316
+ const p: typeof import('./core/utils/src/p')['p']
167
317
  const packageJsonPath: typeof import('./core/path/src/index')['packageJsonPath']
168
318
  const pagesPath: typeof import('./core/path/src/index')['pagesPath']
169
- const paramCase: typeof import('./core/strings/src/index')['paramCase']
319
+ const paramCase: typeof import('./core/strings/src/case')['paramCase']
170
320
  const parse: typeof import('./core/path/src/index')['parse']
171
- const pascalCase: typeof import('./core/strings/src/index')['pascalCase']
321
+ const partition: typeof import('./core/arrays/src/index')['partition']
322
+ const pascalCase: typeof import('./core/strings/src/case')['pascalCase']
172
323
  const path: typeof import('./core/path/src/index')['path']
173
- const pathCase: typeof import('./core/strings/src/index')['pathCase']
324
+ const pathCase: typeof import('./core/strings/src/case')['pathCase']
174
325
  const pathPath: typeof import('./core/path/src/index')['pathPath']
175
326
  const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
327
+ const paymentsPath: typeof import('./core/path/src/index')['paymentsPath']
328
+ const perPage: typeof import('./core/search-engine/src/index')['perPage']
329
+ const plural: typeof import('./core/strings/src/pluralize')['plural']
176
330
  const preferredDark: typeof import('../functions/dark')['preferredDark']
177
331
  const projectPath: typeof import('./core/path/src/index')['projectPath']
178
332
  const provide: typeof import('vue')['provide']
333
+ const pushPath: typeof import('./core/path/src/index')['pushPath']
334
+ const query: typeof import('./core/search-engine/src/index')['query']
335
+ const queuePath: typeof import('./core/path/src/index')['queuePath']
179
336
  const rand: typeof import('@vueuse/shared')['rand']
337
+ const randomStr: typeof import('./core/strings/src/utils')['randomStr']
338
+ const range: typeof import('./core/arrays/src/index')['range']
339
+ const ray: typeof import('./core/logging/src/index')['ray']
180
340
  const reactify: typeof import('@vueuse/core')['reactify']
181
341
  const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
182
342
  const reactive: typeof import('vue')['reactive']
@@ -186,6 +346,7 @@ declare global {
186
346
  const readJsonFile: typeof import('./core/storage/src/index')['readJsonFile']
187
347
  const readTextFile: typeof import('./core/storage/src/index')['readTextFile']
188
348
  const readonly: typeof import('vue')['readonly']
349
+ const realtimePath: typeof import('./core/path/src/index')['realtimePath']
189
350
  const ref: typeof import('vue')['ref']
190
351
  const refAutoReset: typeof import('@vueuse/core')['refAutoReset']
191
352
  const refDebounced: typeof import('@vueuse/core')['refDebounced']
@@ -193,42 +354,72 @@ declare global {
193
354
  const refThrottled: typeof import('@vueuse/core')['refThrottled']
194
355
  const refWithControl: typeof import('@vueuse/core')['refWithControl']
195
356
  const relative: typeof import('./core/path/src/index')['relative']
357
+ const remove: typeof import('./core/arrays/src/index')['remove']
196
358
  const resolve: typeof import('./core/path/src/index')['resolve']
197
359
  const resolveComponent: typeof import('vue')['resolveComponent']
198
360
  const resolveDirective: typeof import('vue')['resolveDirective']
199
361
  const resolveRef: typeof import('@vueuse/core')['resolveRef']
200
362
  const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
363
+ const results: typeof import('./core/search-engine/src/index')['results']
364
+ const router: typeof import('./core/router/src/index')['router']
201
365
  const routerPath: typeof import('./core/path/src/index')['routerPath']
202
366
  const routesPath: typeof import('./core/path/src/index')['routesPath']
367
+ const runNpmScript: typeof import('./core/utils/src/helpers')['runNpmScript']
368
+ const runtimePath: typeof import('./core/path/src/index')['runtimePath']
369
+ const sample: typeof import('./core/arrays/src/index')['sample']
203
370
  const scriptsPath: typeof import('./core/path/src/index')['scriptsPath']
371
+ const searchEngine: typeof import('../config/search-engine')['searchEngine']
372
+ const searchEnginePath: typeof import('./core/path/src/index')['searchEnginePath']
373
+ const searchFilters: typeof import('./core/search-engine/src/index')['searchFilters']
374
+ const searchParams: typeof import('./core/search-engine/src/index')['searchParams']
204
375
  const securityPath: typeof import('./core/path/src/index')['securityPath']
205
- const sentenceCase: typeof import('./core/strings/src/index')['sentenceCase']
376
+ const sentenceCase: typeof import('./core/strings/src/case')['sentenceCase']
206
377
  const sep: typeof import('./core/path/src/index')['sep']
207
378
  const serverPath: typeof import('./core/path/src/index')['serverPath']
208
379
  const serverlessPath: typeof import('./core/path/src/index')['serverlessPath']
209
380
  const services: typeof import('../config/services')['services']
381
+ const setEnvValue: typeof import('./core/utils/src/helpers')['setEnvValue']
382
+ const setTotalHits: typeof import('./core/search-engine/src/index')['setTotalHits']
210
383
  const shallowReactive: typeof import('vue')['shallowReactive']
211
384
  const shallowReadonly: typeof import('vue')['shallowReadonly']
212
385
  const shallowRef: typeof import('vue')['shallowRef']
213
- const snakeCase: typeof import('./core/strings/src/index')['snakeCase']
214
- const src: typeof import('./core/storage/src/index')['default']
386
+ const shuffle: typeof import('./core/arrays/src/index')['shuffle']
387
+ const singular: typeof import('./core/strings/src/pluralize')['singular']
388
+ const slash: typeof import('./core/strings/src/utils')['slash']
389
+ const sleep: typeof import('./core/utils/src/promise')['sleep']
390
+ const sms: typeof import('./core/notifications/src/index')['sms']
391
+ const smsPath: typeof import('./core/path/src/index')['smsPath']
392
+ const snakeCase: typeof import('./core/strings/src/case')['snakeCase']
393
+ const sort: typeof import('./core/search-engine/src/index')['sort']
394
+ const sorts: typeof import('./core/search-engine/src/index')['sorts']
395
+ const src: typeof import('./core/ui/src/index')['default']
215
396
  const stacksPath: typeof import('./core/path/src/index')['stacksPath']
397
+ const storage: typeof import('../config/storage')['storage']
398
+ const storagePath: typeof import('./core/path/src/index')['storagePath']
216
399
  const stringsPath: typeof import('./core/path/src/index')['stringsPath']
217
400
  const suite: typeof import('vitest')['suite']
218
401
  const syncRef: typeof import('@vueuse/core')['syncRef']
219
402
  const syncRefs: typeof import('@vueuse/core')['syncRefs']
403
+ const tablesPath: typeof import('./core/path/src/index')['tablesPath']
404
+ const tap: typeof import('./core/utils/src/function')['tap']
405
+ const template: typeof import('./core/strings/src/utils')['template']
220
406
  const templateRef: typeof import('@vueuse/core')['templateRef']
221
407
  const test: typeof import('vitest')['test']
222
408
  const testingPath: typeof import('./core/path/src/index')['testingPath']
409
+ const testsPath: typeof import('./core/path/src/index')['testsPath']
410
+ const throttle: typeof import('./core/utils/src/debounce')['throttle']
223
411
  const throttledRef: typeof import('@vueuse/core')['throttledRef']
224
412
  const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
225
413
  const timestamp: typeof import('@vueuse/shared')['timestamp']
414
+ const toArray: typeof import('./core/arrays/src/index')['toArray']
226
415
  const toNamespacedPath: typeof import('./core/path/src/index')['toNamespacedPath']
227
416
  const toRaw: typeof import('vue')['toRaw']
228
417
  const toReactive: typeof import('@vueuse/core')['toReactive']
229
418
  const toRef: typeof import('vue')['toRef']
230
419
  const toRefs: typeof import('vue')['toRefs']
420
+ const toString: typeof import('./core/utils/src/index')['toString']
231
421
  const toggleDark: typeof import('../functions/dark')['toggleDark']
422
+ const totalPages: typeof import('./core/search-engine/src/index')['totalPages']
232
423
  const triggerRef: typeof import('vue')['triggerRef']
233
424
  const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
234
425
  const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
@@ -236,11 +427,15 @@ declare global {
236
427
  const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
237
428
  const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
238
429
  const typesPath: typeof import('./core/path/src/index')['typesPath']
239
- const ui: typeof import('../config/ui')['ui']
430
+ const ui: typeof import('../config/ui')['default']
240
431
  const uiPath: typeof import('./core/path/src/index')['uiPath']
432
+ const uniq: typeof import('./core/arrays/src/index')['uniq']
433
+ const uniqueBy: typeof import('./core/arrays/src/index')['uniqueBy']
434
+ const unocss: typeof import('./core/ui/src/unocss')['default']
241
435
  const unref: typeof import('vue')['unref']
242
436
  const unrefElement: typeof import('@vueuse/core')['unrefElement']
243
437
  const until: typeof import('@vueuse/core')['until']
438
+ const updateConfigFile: typeof import('./core/storage/src/index')['updateConfigFile']
244
439
  const useAbs: typeof import('@vueuse/math')['useAbs']
245
440
  const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
246
441
  const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
@@ -251,6 +446,7 @@ declare global {
251
446
  const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
252
447
  const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
253
448
  const useArraySome: typeof import('@vueuse/core')['useArraySome']
449
+ const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
254
450
  const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
255
451
  const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
256
452
  const useAttrs: typeof import('vue')['useAttrs']
@@ -263,6 +459,7 @@ declare global {
263
459
  const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
264
460
  const useCached: typeof import('@vueuse/core')['useCached']
265
461
  const useCeil: typeof import('@vueuse/math')['useCeil']
462
+ const useChat: typeof import('./core/notifications/src/index')['useChat']
266
463
  const useClamp: typeof import('@vueuse/math')['useClamp']
267
464
  const useClipboard: typeof import('@vueuse/core')['useClipboard']
268
465
  const useCloned: typeof import('@vueuse/core')['useCloned']
@@ -292,6 +489,8 @@ declare global {
292
489
  const useElementHover: typeof import('@vueuse/core')['useElementHover']
293
490
  const useElementSize: typeof import('@vueuse/core')['useElementSize']
294
491
  const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
492
+ const useEmail: typeof import('./core/notifications/src/index')['useEmail']
493
+ const useEvent: typeof import('./core/events/src/index')['useEvent']
295
494
  const useEventBus: typeof import('@vueuse/core')['useEventBus']
296
495
  const useEventListener: typeof import('@vueuse/core')['useEventListener']
297
496
  const useEventSource: typeof import('@vueuse/core')['useEventSource']
@@ -334,6 +533,7 @@ declare global {
334
533
  const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
335
534
  const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
336
535
  const useNetwork: typeof import('@vueuse/core')['useNetwork']
536
+ const useNotification: typeof import('./core/notifications/src/index')['useNotification']
337
537
  const useNow: typeof import('@vueuse/core')['useNow']
338
538
  const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
339
539
  const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
@@ -342,6 +542,7 @@ declare global {
342
542
  const useParallax: typeof import('@vueuse/core')['useParallax']
343
543
  const usePermission: typeof import('@vueuse/core')['usePermission']
344
544
  const usePointer: typeof import('@vueuse/core')['usePointer']
545
+ const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
345
546
  const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
346
547
  const usePrecision: typeof import('@vueuse/math')['usePrecision']
347
548
  const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
@@ -349,6 +550,7 @@ declare global {
349
550
  const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
350
551
  const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
351
552
  const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
553
+ const usePrevious: typeof import('@vueuse/core')['usePrevious']
352
554
  const useProjection: typeof import('@vueuse/math')['useProjection']
353
555
  const useRafFn: typeof import('@vueuse/core')['useRafFn']
354
556
  const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
@@ -356,11 +558,13 @@ declare global {
356
558
  const useRound: typeof import('@vueuse/math')['useRound']
357
559
  const useRoute: typeof import('vue-router')['useRoute']
358
560
  const useRouter: typeof import('vue-router')['useRouter']
561
+ const useSMS: typeof import('./core/notifications/src/index')['useSMS']
359
562
  const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
360
563
  const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
361
564
  const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
362
565
  const useScroll: typeof import('@vueuse/core')['useScroll']
363
566
  const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
567
+ const useSearchEngine: typeof import('./core/search-engine/src/index')['useSearchEngine']
364
568
  const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
365
569
  const useShare: typeof import('@vueuse/core')['useShare']
366
570
  const useSlots: typeof import('vue')['useSlots']
@@ -408,6 +612,9 @@ declare global {
408
612
  const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
409
613
  const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
410
614
  const utilsPath: typeof import('./core/path/src/index')['utilsPath']
615
+ const validate: typeof import('./core/validation/src/index')['validate']
616
+ const validateUsername: typeof import('./core/strings/src/validation')['validateUsername']
617
+ const validationPath: typeof import('./core/path/src/index')['validationPath']
411
618
  const verifyHash: typeof import('./core/security/src/hash')['verifyHash']
412
619
  const vi: typeof import('vitest')['vi']
413
620
  const vitest: typeof import('vitest')['vitest']
@@ -427,6 +634,8 @@ declare global {
427
634
  const whenever: typeof import('@vueuse/core')['whenever']
428
635
  const writeJsonFile: typeof import('./core/storage/src/index')['writeJsonFile']
429
636
  const writeTextFile: typeof import('./core/storage/src/index')['writeTextFile']
637
+ const xRayPath: typeof import('./core/path/src/index')['xRayPath']
638
+ const z: typeof import('./core/validation/src/index')['z']
430
639
  }
431
640
  // for vue template auto import
432
641
  import { UnwrapRef } from 'vue'
@@ -439,21 +648,35 @@ declare module 'vue' {
439
648
  readonly $ref: UnwrapRef<typeof import('vue/macros')['$ref']>
440
649
  readonly $shallowRef: UnwrapRef<typeof import('vue/macros')['$shallowRef']>
441
650
  readonly $toRef: UnwrapRef<typeof import('vue/macros')['$toRef']>
442
- readonly Collection: UnwrapRef<typeof import('./core/collections/src/index')['Collection']>
651
+ readonly // wip: UnwrapRef<typeof import('./core/realtime/src/index')['// wip']>
652
+ readonly Collection: UnwrapRef<typeof import('./core/objects/src/index')['Collection']>
443
653
  readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
654
+ readonly Err: UnwrapRef<typeof import('./core/error-handling/src/index')['Err']>
655
+ readonly Ok: UnwrapRef<typeof import('./core/error-handling/src/index')['Ok']>
656
+ readonly Result: UnwrapRef<typeof import('./core/error-handling/src/index')['Result']>
657
+ readonly ResultAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['ResultAsync']>
444
658
  readonly _dirname: UnwrapRef<typeof import('./core/storage/src/index')['_dirname']>
445
659
  readonly actionsPath: UnwrapRef<typeof import('./core/path/src/index')['actionsPath']>
660
+ readonly addIrregularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addIrregularRule']>
661
+ readonly addPluralRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addPluralRule']>
662
+ readonly addSingularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addSingularRule']>
663
+ readonly addUncountableRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addUncountableRule']>
446
664
  readonly afterAll: UnwrapRef<typeof import('vitest')['afterAll']>
447
665
  readonly afterEach: UnwrapRef<typeof import('vitest')['afterEach']>
666
+ readonly aiPath: UnwrapRef<typeof import('./core/path/src/index')['aiPath']>
448
667
  readonly aliasPath: UnwrapRef<typeof import('./core/path/src/index')['aliasPath']>
449
- readonly app: UnwrapRef<typeof import('../config/app')['app']>
668
+ readonly all: UnwrapRef<typeof import('./core/events/src/index')['all']>
669
+ readonly app: UnwrapRef<typeof import('../config/app')['default']>
450
670
  readonly arraysPath: UnwrapRef<typeof import('./core/path/src/index')['arraysPath']>
451
- readonly assert: UnwrapRef<typeof import('vitest')['assert']>
671
+ readonly assert: UnwrapRef<typeof import('./core/utils/src/index')['assert']>
452
672
  readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
673
+ readonly at: UnwrapRef<typeof import('./core/arrays/src/index')['at']>
674
+ readonly authPath: UnwrapRef<typeof import('./core/path/src/index')['authPath']>
453
675
  readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
454
676
  readonly base64Encode: UnwrapRef<typeof import('./core/security/src/hash')['base64Encode']>
455
677
  readonly base64Verify: UnwrapRef<typeof import('./core/security/src/hash')['base64Verify']>
456
678
  readonly basename: UnwrapRef<typeof import('./core/path/src/index')['basename']>
679
+ readonly batchInvoke: UnwrapRef<typeof import('./core/utils/src/function')['batchInvoke']>
457
680
  readonly bcryptEncode: UnwrapRef<typeof import('./core/security/src/hash')['bcryptEncode']>
458
681
  readonly bcryptVerify: UnwrapRef<typeof import('./core/security/src/hash')['bcryptVerify']>
459
682
  readonly beforeAll: UnwrapRef<typeof import('vitest')['beforeAll']>
@@ -461,12 +684,21 @@ declare module 'vue' {
461
684
  readonly buildEnginePath: UnwrapRef<typeof import('./core/path/src/index')['buildEnginePath']>
462
685
  readonly buildEntriesPath: UnwrapRef<typeof import('./core/path/src/index')['buildEntriesPath']>
463
686
  readonly buildPath: UnwrapRef<typeof import('./core/path/src/index')['buildPath']>
464
- readonly camelCase: UnwrapRef<typeof import('./core/strings/src/index')['camelCase']>
465
- readonly capitalCase: UnwrapRef<typeof import('./core/strings/src/index')['capitalCase']>
687
+ readonly cache: UnwrapRef<typeof import('../config/cache')['default']>
688
+ readonly cachePath: UnwrapRef<typeof import('./core/path/src/index')['cachePath']>
689
+ readonly calculatePagination: UnwrapRef<typeof import('./core/search-engine/src/index')['calculatePagination']>
690
+ readonly camelCase: UnwrapRef<typeof import('./core/strings/src/case')['camelCase']>
691
+ readonly capitalCase: UnwrapRef<typeof import('./core/strings/src/case')['capitalCase']>
692
+ readonly capitalize: UnwrapRef<typeof import('./core/strings/src/utils')['capitalize']>
466
693
  readonly chai: UnwrapRef<typeof import('vitest')['chai']>
694
+ readonly chat: UnwrapRef<typeof import('./core/notifications/src/index')['chat']>
695
+ readonly chatPath: UnwrapRef<typeof import('./core/path/src/index')['chatPath']>
467
696
  readonly clamp: UnwrapRef<typeof import('@vueuse/shared')['clamp']>
697
+ readonly clampArrayRange: UnwrapRef<typeof import('./core/arrays/src/index')['clampArrayRange']>
698
+ readonly clearUndefined: UnwrapRef<typeof import('./core/objects/src/index')['clearUndefined']>
468
699
  readonly cliPath: UnwrapRef<typeof import('./core/path/src/index')['cliPath']>
469
- readonly collect: UnwrapRef<typeof import('./core/collections/src/index')['collect']>
700
+ readonly client: UnwrapRef<typeof import('./core/search-engine/src/index')['client']>
701
+ readonly collect: UnwrapRef<typeof import('./core/objects/src/index')['collect']>
470
702
  readonly collectionsPath: UnwrapRef<typeof import('./core/path/src/index')['collectionsPath']>
471
703
  readonly componentsPath: UnwrapRef<typeof import('./core/path/src/index')['componentsPath']>
472
704
  readonly computed: UnwrapRef<typeof import('vue')['computed']>
@@ -474,108 +706,235 @@ declare module 'vue' {
474
706
  readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
475
707
  readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
476
708
  readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
709
+ readonly config: UnwrapRef<typeof import('./core/utils/src/helpers')['config']>
477
710
  readonly configPath: UnwrapRef<typeof import('./core/path/src/index')['configPath']>
478
- readonly constantCase: UnwrapRef<typeof import('./core/strings/src/index')['constantCase']>
711
+ readonly constantCase: UnwrapRef<typeof import('./core/strings/src/case')['constantCase']>
479
712
  readonly contains: UnwrapRef<typeof import('./core/arrays/src/index')['contains']>
713
+ readonly containsAll: UnwrapRef<typeof import('./core/arrays/src/index')['containsAll']>
714
+ readonly containsAny: UnwrapRef<typeof import('./core/arrays/src/index')['containsAny']>
715
+ readonly containsNone: UnwrapRef<typeof import('./core/arrays/src/index')['containsNone']>
716
+ readonly containsOnly: UnwrapRef<typeof import('./core/arrays/src/index')['containsOnly']>
480
717
  readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
481
718
  readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
482
719
  readonly copyFolder: UnwrapRef<typeof import('./core/storage/src/index')['copyFolder']>
483
720
  readonly corePath: UnwrapRef<typeof import('./core/path/src/index')['corePath']>
484
721
  readonly count: UnwrapRef<typeof import('../functions/counter')['count']>
485
722
  readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
723
+ readonly createControlledPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createControlledPromise']>
486
724
  readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
725
+ readonly createFolder: UnwrapRef<typeof import('./core/storage/src/index')['createFolder']>
487
726
  readonly createGenericProjection: UnwrapRef<typeof import('@vueuse/math')['createGenericProjection']>
488
727
  readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
489
728
  readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
490
729
  readonly createProjection: UnwrapRef<typeof import('@vueuse/math')['createProjection']>
730
+ readonly createPromiseLock: UnwrapRef<typeof import('./core/utils/src/promise')['createPromiseLock']>
491
731
  readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
492
732
  readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
733
+ readonly createSingletonPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createSingletonPromise']>
493
734
  readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
735
+ readonly currentPage: UnwrapRef<typeof import('./core/search-engine/src/index')['currentPage']>
494
736
  readonly customElementsDataPath: UnwrapRef<typeof import('./core/path/src/index')['customElementsDataPath']>
495
737
  readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
738
+ readonly dashboardPath: UnwrapRef<typeof import('./core/path/src/index')['dashboardPath']>
739
+ readonly database: UnwrapRef<typeof import('../config/database')['default']>
740
+ readonly databasePath: UnwrapRef<typeof import('./core/path/src/index')['databasePath']>
741
+ readonly dd: UnwrapRef<typeof import('./core/logging/src/index')['dd']>
742
+ readonly debounce: UnwrapRef<typeof import('./core/utils/src/debounce')['debounce']>
496
743
  readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
497
744
  readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
745
+ readonly debug: UnwrapRef<typeof import('./core/logging/src/index')['debug']>
498
746
  readonly decrypt: UnwrapRef<typeof import('./core/security/src/crypt')['decrypt']>
747
+ readonly deepMerge: UnwrapRef<typeof import('./core/objects/src/index')['deepMerge']>
499
748
  readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
500
749
  readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
501
750
  readonly deleteEmptyFolders: UnwrapRef<typeof import('./core/storage/src/index')['deleteEmptyFolders']>
502
751
  readonly deleteFiles: UnwrapRef<typeof import('./core/storage/src/index')['deleteFiles']>
503
752
  readonly deleteFolder: UnwrapRef<typeof import('./core/storage/src/index')['deleteFolder']>
504
753
  readonly delimiter: UnwrapRef<typeof import('./core/path/src/index')['delimiter']>
505
- readonly deploy: UnwrapRef<typeof import('../config/deploy')['deploy']>
506
754
  readonly describe: UnwrapRef<typeof import('vitest')['describe']>
755
+ readonly desktopPath: UnwrapRef<typeof import('./core/path/src/index')['desktopPath']>
756
+ readonly detectIndent: UnwrapRef<typeof import('./core/utils/src/helpers')['detectIndent']>
757
+ readonly detectNewline: UnwrapRef<typeof import('./core/utils/src/helpers')['detectNewline']>
758
+ readonly determineResetPreset: UnwrapRef<typeof import('./core/utils/src/helpers')['determineResetPreset']>
759
+ readonly determineState: UnwrapRef<typeof import('./core/search-engine/src/helpers')['determineState']>
507
760
  readonly dirname: UnwrapRef<typeof import('./core/path/src/index')['dirname']>
761
+ readonly dispatch: UnwrapRef<typeof import('./core/events/src/index')['dispatch']>
508
762
  readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
509
763
  readonly docsPath: UnwrapRef<typeof import('./core/path/src/index')['docsPath']>
510
764
  readonly doesFolderExist: UnwrapRef<typeof import('./core/storage/src/index')['doesFolderExist']>
511
- readonly dotCase: UnwrapRef<typeof import('./core/strings/src/index')['dotCase']>
765
+ readonly domainsPath: UnwrapRef<typeof import('./core/path/src/index')['domainsPath']>
766
+ readonly dotCase: UnwrapRef<typeof import('./core/strings/src/case')['dotCase']>
767
+ readonly dump: UnwrapRef<typeof import('./core/logging/src/index')['dump']>
512
768
  readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
513
769
  readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
770
+ readonly email: UnwrapRef<typeof import('./core/notifications/src/index')['email']>
771
+ readonly emailPath: UnwrapRef<typeof import('./core/path/src/index')['emailPath']>
514
772
  readonly encrypt: UnwrapRef<typeof import('./core/security/src/crypt')['encrypt']>
773
+ readonly ensurePrefix: UnwrapRef<typeof import('./core/strings/src/utils')['ensurePrefix']>
774
+ readonly ensureSuffix: UnwrapRef<typeof import('./core/strings/src/utils')['ensureSuffix']>
775
+ readonly env: UnwrapRef<typeof import('./core/utils/src/helpers')['env']>
776
+ readonly err: UnwrapRef<typeof import('./core/error-handling/src/index')['err']>
777
+ readonly errAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['errAsync']>
778
+ readonly errorHandlingPath: UnwrapRef<typeof import('./core/path/src/index')['errorHandlingPath']>
779
+ readonly events: UnwrapRef<typeof import('./core/events/src/index')['events']>
780
+ readonly eventsPath: UnwrapRef<typeof import('./core/path/src/index')['eventsPath']>
515
781
  readonly examplesPath: UnwrapRef<typeof import('./core/path/src/index')['examplesPath']>
516
782
  readonly expect: UnwrapRef<typeof import('vitest')['expect']>
517
783
  readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
518
784
  readonly extname: UnwrapRef<typeof import('./core/path/src/index')['extname']>
519
785
  readonly filesystem: UnwrapRef<typeof import('./core/storage/src/index')['filesystem']>
786
+ readonly filterName: UnwrapRef<typeof import('./core/search-engine/src/index')['filterName']>
787
+ readonly filters: UnwrapRef<typeof import('./core/search-engine/src/index')['filters']>
788
+ readonly flattenArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['flattenArrayable']>
520
789
  readonly format: UnwrapRef<typeof import('./core/path/src/index')['format']>
521
790
  readonly frameworkPath: UnwrapRef<typeof import('./core/path/src/index')['frameworkPath']>
522
- readonly fsPath: UnwrapRef<typeof import('./core/path/src/index')['fsPath']>
791
+ readonly frameworkVersion: UnwrapRef<typeof import('./core/utils/src/helpers')['frameworkVersion']>
792
+ readonly fromPromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromPromise']>
793
+ readonly fromSafePromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromSafePromise']>
794
+ readonly fromThrowable: UnwrapRef<typeof import('./core/error-handling/src/index')['fromThrowable']>
523
795
  readonly functionsPath: UnwrapRef<typeof import('./core/path/src/index')['functionsPath']>
524
796
  readonly generateAppKey: UnwrapRef<typeof import('./core/security/src/key')['generateAppKey']>
525
797
  readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
526
798
  readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
799
+ readonly getTypeName: UnwrapRef<typeof import('./core/utils/src/index')['getTypeName']>
527
800
  readonly git: UnwrapRef<typeof import('../config/git')['git']>
528
801
  readonly gitPath: UnwrapRef<typeof import('./core/path/src/index')['gitPath']>
802
+ readonly goToNextPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToNextPage']>
803
+ readonly goToPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPage']>
804
+ readonly goToPrevPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPrevPage']>
529
805
  readonly h: UnwrapRef<typeof import('vue')['h']>
530
806
  readonly hasComponents: UnwrapRef<typeof import('./core/storage/src/index')['hasComponents']>
531
807
  readonly hasFiles: UnwrapRef<typeof import('./core/storage/src/index')['hasFiles']>
532
808
  readonly hasFunctions: UnwrapRef<typeof import('./core/storage/src/index')['hasFunctions']>
533
809
  readonly hasOwn: UnwrapRef<typeof import('@vueuse/shared')['hasOwn']>
810
+ readonly hasOwnProperty: UnwrapRef<typeof import('./core/objects/src/index')['hasOwnProperty']>
811
+ readonly hasScript: UnwrapRef<typeof import('./core/utils/src/helpers')['hasScript']>
534
812
  readonly hashing: UnwrapRef<typeof import('../config/hashing')['hashing']>
535
- readonly headerCase: UnwrapRef<typeof import('./core/strings/src/index')['headerCase']>
813
+ readonly headerCase: UnwrapRef<typeof import('./core/strings/src/case')['headerCase']>
814
+ readonly healthPath: UnwrapRef<typeof import('./core/path/src/index')['healthPath']>
815
+ readonly hits: UnwrapRef<typeof import('./core/search-engine/src/index')['hits']>
536
816
  readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
537
817
  readonly increment: UnwrapRef<typeof import('../functions/counter')['increment']>
818
+ readonly index: UnwrapRef<typeof import('./core/search-engine/src/index')['index']>
538
819
  readonly inject: UnwrapRef<typeof import('vue')['inject']>
539
820
  readonly isAbsolute: UnwrapRef<typeof import('./core/path/src/index')['isAbsolute']>
540
- readonly isBoolean: UnwrapRef<typeof import('@vueuse/shared')['isBoolean']>
821
+ readonly isAlpha: UnwrapRef<typeof import('./core/strings/src/validation')['isAlpha']>
822
+ readonly isAlphanumeric: UnwrapRef<typeof import('./core/strings/src/validation')['isAlphanumeric']>
823
+ readonly isAppKeySet: UnwrapRef<typeof import('./core/utils/src/helpers')['isAppKeySet']>
824
+ readonly isAscii: UnwrapRef<typeof import('./core/strings/src/validation')['isAscii']>
825
+ readonly isBase32: UnwrapRef<typeof import('./core/strings/src/validation')['isBase32']>
826
+ readonly isBase64: UnwrapRef<typeof import('./core/strings/src/validation')['isBase64']>
827
+ readonly isBoolean: UnwrapRef<typeof import('./core/utils/src/is')['isBoolean']>
828
+ readonly isBrowser: UnwrapRef<typeof import('./core/utils/src/is')['isBrowser']>
829
+ readonly isByteLength: UnwrapRef<typeof import('./core/strings/src/validation')['isByteLength']>
541
830
  readonly isClient: UnwrapRef<typeof import('@vueuse/shared')['isClient']>
831
+ readonly isCreditCard: UnwrapRef<typeof import('./core/strings/src/validation')['isCreditCard']>
832
+ readonly isCurrency: UnwrapRef<typeof import('./core/strings/src/validation')['isCurrency']>
542
833
  readonly isDark: UnwrapRef<typeof import('../functions/dark')['isDark']>
543
- readonly isDef: UnwrapRef<typeof import('@vueuse/shared')['isDef']>
834
+ readonly isDataURI: UnwrapRef<typeof import('./core/strings/src/validation')['isDataURI']>
835
+ readonly isDate: UnwrapRef<typeof import('./core/strings/src/validation')['isDate']>
836
+ readonly isDeepEqual: UnwrapRef<typeof import('./core/utils/src/equal')['isDeepEqual']>
837
+ readonly isDef: UnwrapRef<typeof import('./core/utils/src/is')['isDef']>
544
838
  readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
839
+ readonly isEmail: UnwrapRef<typeof import('./core/strings/src/validation')['isEmail']>
840
+ readonly isFQDN: UnwrapRef<typeof import('./core/strings/src/validation')['isFQDN']>
545
841
  readonly isFile: UnwrapRef<typeof import('./core/storage/src/index')['isFile']>
546
842
  readonly isFolder: UnwrapRef<typeof import('./core/storage/src/index')['isFolder']>
547
- readonly isFunction: UnwrapRef<typeof import('@vueuse/shared')['isFunction']>
843
+ readonly isFullWidth: UnwrapRef<typeof import('./core/strings/src/validation')['isFullWidth']>
844
+ readonly isFunction: UnwrapRef<typeof import('./core/utils/src/is')['isFunction']>
845
+ readonly isHSL: UnwrapRef<typeof import('./core/strings/src/validation')['isHSL']>
846
+ readonly isHalfWidth: UnwrapRef<typeof import('./core/strings/src/validation')['isHalfWidth']>
847
+ readonly isHash: UnwrapRef<typeof import('./core/strings/src/validation')['isHash']>
848
+ readonly isHexColor: UnwrapRef<typeof import('./core/strings/src/validation')['isHexColor']>
849
+ readonly isHexadecimal: UnwrapRef<typeof import('./core/strings/src/validation')['isHexadecimal']>
850
+ readonly isIBAN: UnwrapRef<typeof import('./core/strings/src/validation')['isIBAN']>
548
851
  readonly isIOS: UnwrapRef<typeof import('@vueuse/shared')['isIOS']>
549
- readonly isNumber: UnwrapRef<typeof import('@vueuse/shared')['isNumber']>
550
- readonly isObject: UnwrapRef<typeof import('@vueuse/shared')['isObject']>
852
+ readonly isIP: UnwrapRef<typeof import('./core/strings/src/validation')['isIP']>
853
+ readonly isIPRange: UnwrapRef<typeof import('./core/strings/src/validation')['isIPRange']>
854
+ readonly isISBN: UnwrapRef<typeof import('./core/strings/src/validation')['isISBN']>
855
+ readonly isISIN: UnwrapRef<typeof import('./core/strings/src/validation')['isISIN']>
856
+ readonly isISO31661Alpha2: UnwrapRef<typeof import('./core/strings/src/validation')['isISO31661Alpha2']>
857
+ readonly isISO31661Alpha3: UnwrapRef<typeof import('./core/strings/src/validation')['isISO31661Alpha3']>
858
+ readonly isISO8601: UnwrapRef<typeof import('./core/strings/src/validation')['isISO8601']>
859
+ readonly isISRC: UnwrapRef<typeof import('./core/strings/src/validation')['isISRC']>
860
+ readonly isISSN: UnwrapRef<typeof import('./core/strings/src/validation')['isISSN']>
861
+ readonly isIdentityCard: UnwrapRef<typeof import('./core/strings/src/validation')['isIdentityCard']>
862
+ readonly isJSON: UnwrapRef<typeof import('./core/strings/src/validation')['isJSON']>
863
+ readonly isJWT: UnwrapRef<typeof import('./core/strings/src/validation')['isJWT']>
864
+ readonly isKeyOf: UnwrapRef<typeof import('./core/objects/src/index')['isKeyOf']>
865
+ readonly isLatLong: UnwrapRef<typeof import('./core/strings/src/validation')['isLatLong']>
866
+ readonly isLatitude: UnwrapRef<typeof import('./core/strings/src/validation')['isLatitude']>
867
+ readonly isLongitude: UnwrapRef<typeof import('./core/strings/src/validation')['isLongitude']>
868
+ readonly isMACAddress: UnwrapRef<typeof import('./core/strings/src/validation')['isMACAddress']>
869
+ readonly isManifest: UnwrapRef<typeof import('./core/utils/src/helpers')['isManifest']>
870
+ readonly isMap: UnwrapRef<typeof import('./core/utils/src/is')['isMap']>
871
+ readonly isMimeType: UnwrapRef<typeof import('./core/strings/src/validation')['isMimeType']>
872
+ readonly isMobilePhone: UnwrapRef<typeof import('./core/strings/src/validation')['isMobilePhone']>
873
+ readonly isMongoId: UnwrapRef<typeof import('./core/strings/src/validation')['isMongoId']>
874
+ readonly isNumber: UnwrapRef<typeof import('./core/utils/src/is')['isNumber']>
875
+ readonly isNumeric: UnwrapRef<typeof import('./core/strings/src/validation')['isNumeric']>
876
+ readonly isObject: UnwrapRef<typeof import('./core/utils/src/is')['isObject']>
877
+ readonly isOptionalString: UnwrapRef<typeof import('./core/utils/src/helpers')['isOptionalString']>
878
+ readonly isPlural: UnwrapRef<typeof import('./core/strings/src/pluralize')['isPlural']>
879
+ readonly isPostalCode: UnwrapRef<typeof import('./core/strings/src/validation')['isPostalCode']>
880
+ readonly isProjectCreated: UnwrapRef<typeof import('./core/utils/src/helpers')['isProjectCreated']>
881
+ readonly isPromise: UnwrapRef<typeof import('./core/utils/src/is')['isPromise']>
551
882
  readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
552
883
  readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
553
884
  readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
554
885
  readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
555
- readonly isString: UnwrapRef<typeof import('@vueuse/shared')['isString']>
556
- readonly isWindow: UnwrapRef<typeof import('@vueuse/shared')['isWindow']>
886
+ readonly isServer: UnwrapRef<typeof import('./core/utils/src/is')['isServer']>
887
+ readonly isSet: UnwrapRef<typeof import('./core/utils/src/is')['isSet']>
888
+ readonly isSingular: UnwrapRef<typeof import('./core/strings/src/pluralize')['isSingular']>
889
+ readonly isString: UnwrapRef<typeof import('./core/utils/src/is')['isString']>
890
+ readonly isStrongPassword: UnwrapRef<typeof import('./core/strings/src/validation')['isStrongPassword']>
891
+ readonly isTruthy: UnwrapRef<typeof import('./core/utils/src/guards')['isTruthy']>
892
+ readonly isURL: UnwrapRef<typeof import('./core/strings/src/validation')['isURL']>
893
+ readonly isUUID: UnwrapRef<typeof import('./core/strings/src/validation')['isUUID']>
894
+ readonly isWindow: UnwrapRef<typeof import('./core/utils/src/is')['isWindow']>
557
895
  readonly it: UnwrapRef<typeof import('vitest')['it']>
558
896
  readonly join: UnwrapRef<typeof import('./core/path/src/index')['join']>
559
- readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/index')['kebabCase']>
897
+ readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/case')['kebabCase']>
560
898
  readonly langPath: UnwrapRef<typeof import('./core/path/src/index')['langPath']>
899
+ readonly last: UnwrapRef<typeof import('./core/arrays/src/index')['last']>
900
+ readonly lastPageNumber: UnwrapRef<typeof import('./core/search-engine/src/index')['lastPageNumber']>
561
901
  readonly library: UnwrapRef<typeof import('../config/library')['library']>
562
902
  readonly libraryEntryPath: UnwrapRef<typeof import('./core/path/src/index')['libraryEntryPath']>
563
903
  readonly lintPath: UnwrapRef<typeof import('./core/path/src/index')['lintPath']>
904
+ readonly listen: UnwrapRef<typeof import('./core/events/src/index')['listen']>
905
+ readonly log: UnwrapRef<typeof import('./core/logging/src/index')['log']>
906
+ readonly loggingPath: UnwrapRef<typeof import('./core/path/src/index')['loggingPath']>
564
907
  readonly logicAnd: UnwrapRef<typeof import('@vueuse/math')['logicAnd']>
565
908
  readonly logicNot: UnwrapRef<typeof import('@vueuse/math')['logicNot']>
566
909
  readonly logicOr: UnwrapRef<typeof import('@vueuse/math')['logicOr']>
910
+ readonly loop: UnwrapRef<typeof import('./core/utils/src/index')['loop']>
567
911
  readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
568
912
  readonly makeHash: UnwrapRef<typeof import('./core/security/src/hash')['makeHash']>
569
913
  readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
570
914
  readonly md5Encode: UnwrapRef<typeof import('./core/security/src/hash')['md5Encode']>
915
+ readonly mergeArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['mergeArrayable']>
916
+ readonly mitt: UnwrapRef<typeof import('./core/events/src/index')['mitt']>
571
917
  readonly modulesPath: UnwrapRef<typeof import('./core/path/src/index')['modulesPath']>
918
+ readonly move: UnwrapRef<typeof import('./core/arrays/src/index')['move']>
572
919
  readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
573
- readonly noCase: UnwrapRef<typeof import('./core/strings/src/index')['noCase']>
574
- readonly noop: UnwrapRef<typeof import('@vueuse/shared')['noop']>
920
+ readonly noCase: UnwrapRef<typeof import('./core/strings/src/case')['noCase']>
921
+ readonly noNull: UnwrapRef<typeof import('./core/utils/src/guards')['noNull']>
922
+ readonly noop: UnwrapRef<typeof import('./core/utils/src/index')['noop']>
575
923
  readonly normalize: UnwrapRef<typeof import('./core/path/src/index')['normalize']>
576
924
  readonly normalizeString: UnwrapRef<typeof import('./core/path/src/index')['normalizeString']>
925
+ readonly notNullish: UnwrapRef<typeof import('./core/utils/src/guards')['notNullish']>
926
+ readonly notUndefined: UnwrapRef<typeof import('./core/utils/src/guards')['notUndefined']>
927
+ readonly notification: UnwrapRef<typeof import('./core/notifications/src/index')['notification']>
928
+ readonly notificationsPath: UnwrapRef<typeof import('./core/path/src/index')['notificationsPath']>
577
929
  readonly now: UnwrapRef<typeof import('@vueuse/shared')['now']>
930
+ readonly objectEntries: UnwrapRef<typeof import('./core/objects/src/index')['objectEntries']>
931
+ readonly objectKeys: UnwrapRef<typeof import('./core/objects/src/index')['objectKeys']>
932
+ readonly objectMap: UnwrapRef<typeof import('./core/objects/src/index')['objectMap']>
933
+ readonly objectPick: UnwrapRef<typeof import('./core/objects/src/index')['objectPick']>
578
934
  readonly objectsPath: UnwrapRef<typeof import('./core/path/src/index')['objectsPath']>
935
+ readonly off: UnwrapRef<typeof import('./core/events/src/index')['off']>
936
+ readonly ok: UnwrapRef<typeof import('./core/error-handling/src/index')['ok']>
937
+ readonly okAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['okAsync']>
579
938
  readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
580
939
  readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
581
940
  readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
@@ -595,19 +954,30 @@ declare module 'vue' {
595
954
  readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
596
955
  readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
597
956
  readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
957
+ readonly p: UnwrapRef<typeof import('./core/utils/src/p')['p']>
598
958
  readonly packageJsonPath: UnwrapRef<typeof import('./core/path/src/index')['packageJsonPath']>
599
959
  readonly pagesPath: UnwrapRef<typeof import('./core/path/src/index')['pagesPath']>
600
- readonly paramCase: UnwrapRef<typeof import('./core/strings/src/index')['paramCase']>
960
+ readonly paramCase: UnwrapRef<typeof import('./core/strings/src/case')['paramCase']>
601
961
  readonly parse: UnwrapRef<typeof import('./core/path/src/index')['parse']>
602
- readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/index')['pascalCase']>
962
+ readonly partition: UnwrapRef<typeof import('./core/arrays/src/index')['partition']>
963
+ readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/case')['pascalCase']>
603
964
  readonly path: UnwrapRef<typeof import('./core/path/src/index')['path']>
604
- readonly pathCase: UnwrapRef<typeof import('./core/strings/src/index')['pathCase']>
965
+ readonly pathCase: UnwrapRef<typeof import('./core/strings/src/case')['pathCase']>
605
966
  readonly pathPath: UnwrapRef<typeof import('./core/path/src/index')['pathPath']>
606
967
  readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
968
+ readonly paymentsPath: UnwrapRef<typeof import('./core/path/src/index')['paymentsPath']>
969
+ readonly perPage: UnwrapRef<typeof import('./core/search-engine/src/index')['perPage']>
970
+ readonly plural: UnwrapRef<typeof import('./core/strings/src/pluralize')['plural']>
607
971
  readonly preferredDark: UnwrapRef<typeof import('../functions/dark')['preferredDark']>
608
972
  readonly projectPath: UnwrapRef<typeof import('./core/path/src/index')['projectPath']>
609
973
  readonly provide: UnwrapRef<typeof import('vue')['provide']>
974
+ readonly pushPath: UnwrapRef<typeof import('./core/path/src/index')['pushPath']>
975
+ readonly query: UnwrapRef<typeof import('./core/search-engine/src/index')['query']>
976
+ readonly queuePath: UnwrapRef<typeof import('./core/path/src/index')['queuePath']>
610
977
  readonly rand: UnwrapRef<typeof import('@vueuse/shared')['rand']>
978
+ readonly randomStr: UnwrapRef<typeof import('./core/strings/src/utils')['randomStr']>
979
+ readonly range: UnwrapRef<typeof import('./core/arrays/src/index')['range']>
980
+ readonly ray: UnwrapRef<typeof import('./core/logging/src/index')['ray']>
611
981
  readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
612
982
  readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
613
983
  readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
@@ -617,6 +987,7 @@ declare module 'vue' {
617
987
  readonly readJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['readJsonFile']>
618
988
  readonly readTextFile: UnwrapRef<typeof import('./core/storage/src/index')['readTextFile']>
619
989
  readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
990
+ readonly realtimePath: UnwrapRef<typeof import('./core/path/src/index')['realtimePath']>
620
991
  readonly ref: UnwrapRef<typeof import('vue')['ref']>
621
992
  readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
622
993
  readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
@@ -624,42 +995,72 @@ declare module 'vue' {
624
995
  readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
625
996
  readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
626
997
  readonly relative: UnwrapRef<typeof import('./core/path/src/index')['relative']>
998
+ readonly remove: UnwrapRef<typeof import('./core/arrays/src/index')['remove']>
627
999
  readonly resolve: UnwrapRef<typeof import('./core/path/src/index')['resolve']>
628
1000
  readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
629
1001
  readonly resolveDirective: UnwrapRef<typeof import('vue')['resolveDirective']>
630
1002
  readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
631
1003
  readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
1004
+ readonly results: UnwrapRef<typeof import('./core/search-engine/src/index')['results']>
1005
+ readonly router: UnwrapRef<typeof import('./core/router/src/index')['router']>
632
1006
  readonly routerPath: UnwrapRef<typeof import('./core/path/src/index')['routerPath']>
633
1007
  readonly routesPath: UnwrapRef<typeof import('./core/path/src/index')['routesPath']>
1008
+ readonly runNpmScript: UnwrapRef<typeof import('./core/utils/src/helpers')['runNpmScript']>
1009
+ readonly runtimePath: UnwrapRef<typeof import('./core/path/src/index')['runtimePath']>
1010
+ readonly sample: UnwrapRef<typeof import('./core/arrays/src/index')['sample']>
634
1011
  readonly scriptsPath: UnwrapRef<typeof import('./core/path/src/index')['scriptsPath']>
1012
+ readonly searchEngine: UnwrapRef<typeof import('../config/search-engine')['default']>
1013
+ readonly searchEnginePath: UnwrapRef<typeof import('./core/path/src/index')['searchEnginePath']>
1014
+ readonly searchFilters: UnwrapRef<typeof import('./core/search-engine/src/index')['searchFilters']>
1015
+ readonly searchParams: UnwrapRef<typeof import('./core/search-engine/src/index')['searchParams']>
635
1016
  readonly securityPath: UnwrapRef<typeof import('./core/path/src/index')['securityPath']>
636
- readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/index')['sentenceCase']>
1017
+ readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/case')['sentenceCase']>
637
1018
  readonly sep: UnwrapRef<typeof import('./core/path/src/index')['sep']>
638
1019
  readonly serverPath: UnwrapRef<typeof import('./core/path/src/index')['serverPath']>
639
1020
  readonly serverlessPath: UnwrapRef<typeof import('./core/path/src/index')['serverlessPath']>
640
- readonly services: UnwrapRef<typeof import('../config/services')['services']>
1021
+ readonly services: UnwrapRef<typeof import('../config/services')['default']>
1022
+ readonly setEnvValue: UnwrapRef<typeof import('./core/utils/src/helpers')['setEnvValue']>
1023
+ readonly setTotalHits: UnwrapRef<typeof import('./core/search-engine/src/index')['setTotalHits']>
641
1024
  readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
642
1025
  readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
643
1026
  readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
644
- readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/index')['snakeCase']>
645
- readonly src: UnwrapRef<typeof import('./core/storage/src/index')['default']>
1027
+ readonly shuffle: UnwrapRef<typeof import('./core/arrays/src/index')['shuffle']>
1028
+ readonly singular: UnwrapRef<typeof import('./core/strings/src/pluralize')['singular']>
1029
+ readonly slash: UnwrapRef<typeof import('./core/strings/src/utils')['slash']>
1030
+ readonly sleep: UnwrapRef<typeof import('./core/utils/src/promise')['sleep']>
1031
+ readonly sms: UnwrapRef<typeof import('./core/notifications/src/index')['sms']>
1032
+ readonly smsPath: UnwrapRef<typeof import('./core/path/src/index')['smsPath']>
1033
+ readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/case')['snakeCase']>
1034
+ readonly sort: UnwrapRef<typeof import('./core/search-engine/src/index')['sort']>
1035
+ readonly sorts: UnwrapRef<typeof import('./core/search-engine/src/index')['sorts']>
1036
+ readonly src: UnwrapRef<typeof import('./core/ui/src/index')['default']>
646
1037
  readonly stacksPath: UnwrapRef<typeof import('./core/path/src/index')['stacksPath']>
1038
+ readonly storage: UnwrapRef<typeof import('../config/storage')['default']>
1039
+ readonly storagePath: UnwrapRef<typeof import('./core/path/src/index')['storagePath']>
647
1040
  readonly stringsPath: UnwrapRef<typeof import('./core/path/src/index')['stringsPath']>
648
1041
  readonly suite: UnwrapRef<typeof import('vitest')['suite']>
649
1042
  readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
650
1043
  readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
1044
+ readonly tablesPath: UnwrapRef<typeof import('./core/path/src/index')['tablesPath']>
1045
+ readonly tap: UnwrapRef<typeof import('./core/utils/src/function')['tap']>
1046
+ readonly template: UnwrapRef<typeof import('./core/strings/src/utils')['template']>
651
1047
  readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
652
1048
  readonly test: UnwrapRef<typeof import('vitest')['test']>
653
1049
  readonly testingPath: UnwrapRef<typeof import('./core/path/src/index')['testingPath']>
1050
+ readonly testsPath: UnwrapRef<typeof import('./core/path/src/index')['testsPath']>
1051
+ readonly throttle: UnwrapRef<typeof import('./core/utils/src/debounce')['throttle']>
654
1052
  readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
655
1053
  readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
656
1054
  readonly timestamp: UnwrapRef<typeof import('@vueuse/shared')['timestamp']>
1055
+ readonly toArray: UnwrapRef<typeof import('./core/arrays/src/index')['toArray']>
657
1056
  readonly toNamespacedPath: UnwrapRef<typeof import('./core/path/src/index')['toNamespacedPath']>
658
1057
  readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
659
1058
  readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
660
1059
  readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
661
1060
  readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
1061
+ readonly toString: UnwrapRef<typeof import('./core/utils/src/index')['toString']>
662
1062
  readonly toggleDark: UnwrapRef<typeof import('../functions/dark')['toggleDark']>
1063
+ readonly totalPages: UnwrapRef<typeof import('./core/search-engine/src/index')['totalPages']>
663
1064
  readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
664
1065
  readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
665
1066
  readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
@@ -667,11 +1068,15 @@ declare module 'vue' {
667
1068
  readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
668
1069
  readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
669
1070
  readonly typesPath: UnwrapRef<typeof import('./core/path/src/index')['typesPath']>
670
- readonly ui: UnwrapRef<typeof import('../config/ui')['ui']>
1071
+ readonly ui: UnwrapRef<typeof import('../config/ui')['default']>
671
1072
  readonly uiPath: UnwrapRef<typeof import('./core/path/src/index')['uiPath']>
1073
+ readonly uniq: UnwrapRef<typeof import('./core/arrays/src/index')['uniq']>
1074
+ readonly uniqueBy: UnwrapRef<typeof import('./core/arrays/src/index')['uniqueBy']>
1075
+ readonly unocss: UnwrapRef<typeof import('./core/ui/src/unocss')['default']>
672
1076
  readonly unref: UnwrapRef<typeof import('vue')['unref']>
673
1077
  readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
674
1078
  readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
1079
+ readonly updateConfigFile: UnwrapRef<typeof import('./core/storage/src/index')['updateConfigFile']>
675
1080
  readonly useAbs: UnwrapRef<typeof import('@vueuse/math')['useAbs']>
676
1081
  readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
677
1082
  readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
@@ -682,6 +1087,7 @@ declare module 'vue' {
682
1087
  readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
683
1088
  readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
684
1089
  readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
1090
+ readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
685
1091
  readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
686
1092
  readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
687
1093
  readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
@@ -694,6 +1100,7 @@ declare module 'vue' {
694
1100
  readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
695
1101
  readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
696
1102
  readonly useCeil: UnwrapRef<typeof import('@vueuse/math')['useCeil']>
1103
+ readonly useChat: UnwrapRef<typeof import('./core/notifications/src/index')['useChat']>
697
1104
  readonly useClamp: UnwrapRef<typeof import('@vueuse/math')['useClamp']>
698
1105
  readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
699
1106
  readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
@@ -723,6 +1130,8 @@ declare module 'vue' {
723
1130
  readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
724
1131
  readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
725
1132
  readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
1133
+ readonly useEmail: UnwrapRef<typeof import('./core/notifications/src/index')['useEmail']>
1134
+ readonly useEvent: UnwrapRef<typeof import('./core/events/src/index')['useEvent']>
726
1135
  readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
727
1136
  readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
728
1137
  readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
@@ -765,6 +1174,7 @@ declare module 'vue' {
765
1174
  readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
766
1175
  readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
767
1176
  readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
1177
+ readonly useNotification: UnwrapRef<typeof import('./core/notifications/src/index')['useNotification']>
768
1178
  readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
769
1179
  readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
770
1180
  readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
@@ -773,6 +1183,7 @@ declare module 'vue' {
773
1183
  readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
774
1184
  readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
775
1185
  readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
1186
+ readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
776
1187
  readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
777
1188
  readonly usePrecision: UnwrapRef<typeof import('@vueuse/math')['usePrecision']>
778
1189
  readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
@@ -780,6 +1191,7 @@ declare module 'vue' {
780
1191
  readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
781
1192
  readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
782
1193
  readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
1194
+ readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
783
1195
  readonly useProjection: UnwrapRef<typeof import('@vueuse/math')['useProjection']>
784
1196
  readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
785
1197
  readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
@@ -787,11 +1199,13 @@ declare module 'vue' {
787
1199
  readonly useRound: UnwrapRef<typeof import('@vueuse/math')['useRound']>
788
1200
  readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
789
1201
  readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
1202
+ readonly useSMS: UnwrapRef<typeof import('./core/notifications/src/index')['useSMS']>
790
1203
  readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
791
1204
  readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
792
1205
  readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
793
1206
  readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
794
1207
  readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
1208
+ readonly useSearchEngine: UnwrapRef<typeof import('./core/search-engine/src/index')['useSearchEngine']>
795
1209
  readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
796
1210
  readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
797
1211
  readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
@@ -839,6 +1253,9 @@ declare module 'vue' {
839
1253
  readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
840
1254
  readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
841
1255
  readonly utilsPath: UnwrapRef<typeof import('./core/path/src/index')['utilsPath']>
1256
+ readonly validate: UnwrapRef<typeof import('./core/validation/src/index')['validate']>
1257
+ readonly validateUsername: UnwrapRef<typeof import('./core/strings/src/validation')['validateUsername']>
1258
+ readonly validationPath: UnwrapRef<typeof import('./core/path/src/index')['validationPath']>
842
1259
  readonly verifyHash: UnwrapRef<typeof import('./core/security/src/hash')['verifyHash']>
843
1260
  readonly vi: UnwrapRef<typeof import('vitest')['vi']>
844
1261
  readonly vitest: UnwrapRef<typeof import('vitest')['vitest']>
@@ -858,5 +1275,7 @@ declare module 'vue' {
858
1275
  readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
859
1276
  readonly writeJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['writeJsonFile']>
860
1277
  readonly writeTextFile: UnwrapRef<typeof import('./core/storage/src/index')['writeTextFile']>
1278
+ readonly xRayPath: UnwrapRef<typeof import('./core/path/src/index')['xRayPath']>
1279
+ readonly z: UnwrapRef<typeof import('./core/validation/src/index')['z']>
861
1280
  }
862
1281
  }