stacks 0.49.2 → 0.49.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/buddy/package.json +3 -3
  2. package/buddy/src/commands/fresh.ts +1 -1
  3. package/buddy/src/commands/lint.ts +2 -2
  4. package/buddy/src/commands/release.ts +8 -0
  5. package/components/vue/package.json +1 -1
  6. package/components/web/package.json +1 -1
  7. package/core/actions/package.json +3 -3
  8. package/core/actions/src/helpers/utils.ts +1 -1
  9. package/core/actions/src/lint-fix.ts +1 -1
  10. package/core/ai/package.json +3 -3
  11. package/core/alias/package.json +3 -3
  12. package/core/arrays/package.json +3 -3
  13. package/core/auth/package.json +3 -3
  14. package/core/build/package.json +3 -3
  15. package/core/cache/package.json +4 -4
  16. package/core/chat/package.json +3 -3
  17. package/core/cli/package.json +3 -3
  18. package/core/cli/src/actions/run.ts +4 -1
  19. package/core/cloud/package.json +3 -3
  20. package/core/collections/package.json +3 -3
  21. package/core/config/package.json +3 -3
  22. package/core/dashboard/package.json +3 -3
  23. package/core/database/package.json +4 -4
  24. package/core/datetime/package.json +3 -3
  25. package/core/desktop/node_modules/.bin/tauri +2 -2
  26. package/core/desktop/package.json +4 -4
  27. package/core/docs/node_modules/.bin/vitepress +2 -2
  28. package/core/docs/package.json +4 -4
  29. package/core/domains/package.json +3 -3
  30. package/core/drivers/package.json +3 -3
  31. package/core/email/package.json +3 -3
  32. package/core/error-handling/package.json +3 -3
  33. package/core/events/package.json +3 -3
  34. package/core/git/node_modules/.bin/commitizen +2 -2
  35. package/core/git/node_modules/.bin/cz +2 -2
  36. package/core/git/node_modules/.bin/git-cz +2 -2
  37. package/core/git/package.json +3 -3
  38. package/core/health/package.json +3 -3
  39. package/core/lint/package.json +3 -3
  40. package/core/logging/package.json +3 -3
  41. package/core/modules/package.json +3 -3
  42. package/core/notifications/README.md +3 -0
  43. package/core/notifications/package.json +6 -5
  44. package/core/objects/package.json +3 -3
  45. package/core/path/package.json +3 -3
  46. package/core/payments/package.json +3 -3
  47. package/core/push/package.json +3 -4
  48. package/core/queue/README.md +59 -0
  49. package/core/{push/node_modules/.bin/maizzle → queue/node_modules/.bin/mkdist} +2 -2
  50. package/core/queue/node_modules/.bin/tsc +17 -0
  51. package/core/queue/node_modules/.bin/tsserver +17 -0
  52. package/core/queue/package.json +54 -0
  53. package/core/queue/src/index.ts +1 -0
  54. package/core/queue/tests/example.test.ts +7 -0
  55. package/core/realtime/package.json +3 -3
  56. package/core/router/package.json +3 -3
  57. package/core/search-engine/package.json +4 -4
  58. package/core/search-engine/src/index.ts +0 -1
  59. package/core/security/package.json +3 -3
  60. package/core/server/package.json +3 -3
  61. package/core/sms/package.json +3 -3
  62. package/core/storage/package.json +3 -3
  63. package/core/strings/package.json +3 -3
  64. package/core/tables/package.json +2 -2
  65. package/core/testing/node_modules/.bin/vitest +2 -2
  66. package/core/testing/package.json +6 -6
  67. package/core/types/node_modules/.bin/vitepress +2 -2
  68. package/core/types/package.json +5 -5
  69. package/core/types/src/cli.ts +1 -1
  70. package/core/types/src/notifications.ts +2 -2
  71. package/core/ui/package.json +3 -3
  72. package/core/utils/node_modules/.bin/rimraf +2 -2
  73. package/core/utils/package.json +7 -7
  74. package/core/x-ray/package.json +3 -3
  75. package/functions/package.json +1 -1
  76. package/package.json +4 -4
@@ -11,7 +11,7 @@ else
11
11
  export NODE_PATH="$NODE_PATH:/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
12
12
  fi
13
13
  if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitest@0.27.1_@vitest+ui@0.27.1/node_modules/vitest/vitest.mjs" "$@"
14
+ exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitest@0.27.2_@vitest+ui@0.27.2/node_modules/vitest/vitest.mjs" "$@"
15
15
  else
16
- exec node "$basedir/../../../../../node_modules/.pnpm/vitest@0.27.1_@vitest+ui@0.27.1/node_modules/vitest/vitest.mjs" "$@"
16
+ exec node "$basedir/../../../../../node_modules/.pnpm/vitest@0.27.2_@vitest+ui@0.27.2/node_modules/vitest/vitest.mjs" "$@"
17
17
  fi
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/testing",
3
3
  "type": "module",
4
- "version": "0.49.2",
5
- "packageManager": "pnpm@7.25.0",
4
+ "version": "0.49.3",
5
+ "packageManager": "pnpm@7.25.1",
6
6
  "description": "The Stacks way of testing.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -40,7 +40,7 @@
40
40
  ],
41
41
  "engines": {
42
42
  "node": ">=v18.13.0",
43
- "pnpm": ">=7.25.0"
43
+ "pnpm": ">=7.25.1"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "mkdist -d",
@@ -50,9 +50,9 @@
50
50
  },
51
51
  "peerDependencies": {
52
52
  "@playwright/test": "^1.29.2",
53
- "@vitest/coverage-istanbul": "^0.27.1",
54
- "@vitest/ui": "^0.27.1",
55
- "vitest": "^0.27.1"
53
+ "@vitest/coverage-istanbul": "^0.27.2",
54
+ "@vitest/ui": "^0.27.2",
55
+ "vitest": "^0.27.2"
56
56
  },
57
57
  "devDependencies": {
58
58
  "mkdist": "^1.1.0",
@@ -11,7 +11,7 @@ else
11
11
  export NODE_PATH="$NODE_PATH:/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
12
12
  fi
13
13
  if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.36_j73j5xdbzpkigstapj6vkce2xy/node_modules/vitepress/bin/vitepress.js" "$@"
14
+ exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.38_j73j5xdbzpkigstapj6vkce2xy/node_modules/vitepress/bin/vitepress.js" "$@"
15
15
  else
16
- exec node "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.36_j73j5xdbzpkigstapj6vkce2xy/node_modules/vitepress/bin/vitepress.js" "$@"
16
+ exec node "$basedir/../../../../../node_modules/.pnpm/vitepress@1.0.0-alpha.38_j73j5xdbzpkigstapj6vkce2xy/node_modules/vitepress/bin/vitepress.js" "$@"
17
17
  fi
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/types",
3
3
  "type": "module",
4
- "version": "0.49.2",
5
- "packageManager": "pnpm@7.25.0",
4
+ "version": "0.49.3",
5
+ "packageManager": "pnpm@7.25.1",
6
6
  "description": "The Stacks framework types.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -34,7 +34,7 @@
34
34
  ],
35
35
  "engines": {
36
36
  "node": ">=v18.13.0",
37
- "pnpm": ">=7.25.0"
37
+ "pnpm": ">=7.25.1"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "mkdist -d",
@@ -46,7 +46,7 @@
46
46
  "@mdit-vue/plugin-component": "^0.11.2",
47
47
  "@mdit-vue/plugin-frontmatter": "^0.11.1",
48
48
  "@mdit-vue/types": "^0.11.0",
49
- "@prisma/client": "^4.8.1",
49
+ "@prisma/client": "^4.9.0",
50
50
  "@rollup/pluginutils": "^5.0.2",
51
51
  "@types/bcryptjs": "^2.4.2",
52
52
  "@types/crypto-js": "^4.1.1",
@@ -67,6 +67,6 @@
67
67
  "vite-plugin-inspect": "^0.7.14",
68
68
  "vite-plugin-vue-layouts": "^0.7.0",
69
69
  "vite-ssg": "^0.22.1",
70
- "vitepress": "1.0.0-alpha.36"
70
+ "vitepress": "1.0.0-alpha.38"
71
71
  }
72
72
  }
@@ -58,7 +58,7 @@ export interface CliOptions {
58
58
  *
59
59
  * @default true
60
60
  */
61
- shouldShowSpinner?: boolean | SpinnerOptions
61
+ showSpinner?: boolean | SpinnerOptions
62
62
 
63
63
  /**
64
64
  * **Spinner Text**
@@ -1,8 +1,8 @@
1
1
  import type { IChatOptions, IEmailOptions, ISendMessageSuccessResponse, ISmsOptions } from '@novu/stateless'
2
2
 
3
3
  export interface NotificationOptions {
4
- type?: string
5
- driver?: string
4
+ type?: 'email' | 'sms' | 'chat' | 'push'
5
+ driver?: 'sendgrid' | 'emailjs' | 'mailjet' | 'mandrill' | 'netcore' | 'nodemailer' | 'postmark' | 'ses' | 'mailgun' | 'twilio' | 'nexmo' | 'gupshup' | 'plivo' | 'sms77' | 'sns'
6
6
 
7
7
  email: {
8
8
  purgeCSS: boolean
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/ui",
3
3
  "type": "module",
4
- "version": "0.49.2",
5
- "packageManager": "pnpm@7.25.0",
4
+ "version": "0.49.3",
5
+ "packageManager": "pnpm@7.25.1",
6
6
  "description": "The Stacks atomic UI engine, powered by UnoCSS.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -38,7 +38,7 @@
38
38
  ],
39
39
  "engines": {
40
40
  "node": ">=v18.13.0",
41
- "pnpm": ">=7.25.0"
41
+ "pnpm": ">=7.25.1"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "mkdist -d",
@@ -11,7 +11,7 @@ else
11
11
  export NODE_PATH="$NODE_PATH:/home/runner/work/stacks/stacks/node_modules/.pnpm/node_modules"
12
12
  fi
13
13
  if [ -x "$basedir/node" ]; then
14
- exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/rimraf@4.0.7/node_modules/rimraf/dist/cjs/src/bin.js" "$@"
14
+ exec "$basedir/node" "$basedir/../../../../../node_modules/.pnpm/rimraf@4.1.1/node_modules/rimraf/dist/cjs/src/bin.js" "$@"
15
15
  else
16
- exec node "$basedir/../../../../../node_modules/.pnpm/rimraf@4.0.7/node_modules/rimraf/dist/cjs/src/bin.js" "$@"
16
+ exec node "$basedir/../../../../../node_modules/.pnpm/rimraf@4.1.1/node_modules/rimraf/dist/cjs/src/bin.js" "$@"
17
17
  fi
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/utils",
3
3
  "type": "module",
4
- "version": "0.49.2",
5
- "packageManager": "pnpm@7.25.0",
4
+ "version": "0.49.3",
5
+ "packageManager": "pnpm@7.25.1",
6
6
  "description": "The Stacks helper functions.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -38,7 +38,7 @@
38
38
  ],
39
39
  "engines": {
40
40
  "node": ">=v18.13.0",
41
- "pnpm": ">=7.25.0"
41
+ "pnpm": ">=7.25.1"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "mkdist -d",
@@ -54,10 +54,10 @@
54
54
  "@stacksjs/path": "workspace:*",
55
55
  "@stacksjs/storage": "workspace:*",
56
56
  "@stacksjs/types": "workspace:*",
57
- "@vueuse/core": "^9.10.0",
57
+ "@vueuse/core": "^9.11.0",
58
58
  "@vueuse/head": "^1.0.22",
59
- "@vueuse/math": "^9.10.0",
60
- "@vueuse/shared": "^9.10.0",
59
+ "@vueuse/math": "^9.11.0",
60
+ "@vueuse/shared": "^9.11.0",
61
61
  "defu": "^6.1.1",
62
62
  "detect-indent": "^7.0.1",
63
63
  "detect-newline": "^4.0.0",
@@ -66,7 +66,7 @@
66
66
  "fast-glob": "^3.2.12",
67
67
  "kolorist": "1.6.0",
68
68
  "p-limit": "^4.0.0",
69
- "rimraf": "^4.0.7",
69
+ "rimraf": "^4.1.1",
70
70
  "throttle-debounce": "^5.0.0"
71
71
  },
72
72
  "devDependencies": {
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/x-ray",
3
3
  "type": "module",
4
- "version": "0.49.2",
5
- "packageManager": "pnpm@7.25.0",
4
+ "version": "0.49.3",
5
+ "packageManager": "pnpm@7.25.1",
6
6
  "description": "All you need to debug, log & analyze.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -39,7 +39,7 @@
39
39
  ],
40
40
  "engines": {
41
41
  "node": ">=v18.13.0",
42
- "pnpm": ">=7.25.0"
42
+ "pnpm": ">=7.25.1"
43
43
  },
44
44
  "scripts": {
45
45
  "build": "echo 'wip'",
@@ -2,7 +2,7 @@
2
2
  "name": "hello-world-fx",
3
3
  "type": "module",
4
4
  "version": "",
5
- "packageManager": "pnpm@7.25.0",
5
+ "packageManager": "pnpm@7.25.1",
6
6
  "description": "Your function library description.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "stacks",
3
3
  "type": "module",
4
- "version": "0.49.2",
5
- "packageManager": "pnpm@7.25.0",
4
+ "version": "0.49.3",
5
+ "packageManager": "pnpm@7.25.1",
6
6
  "description": "The Stacks framework.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -61,11 +61,11 @@
61
61
  ],
62
62
  "engines": {
63
63
  "node": ">=v18.13.0",
64
- "pnpm": ">=7.25.0"
64
+ "pnpm": ">=7.25.1"
65
65
  },
66
66
  "web-types": "./web-types.json",
67
67
  "dependencies": {
68
- "@stacksjs/buddy": "0.49.2"
68
+ "@stacksjs/buddy": "0.49.3"
69
69
  },
70
70
  "scripts": {
71
71
  "buddy": "esno ./buddy/src/cli.ts",