@stacksjs/types 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.
package/dist/cli.d.ts CHANGED
@@ -50,7 +50,7 @@ export interface CliOptions {
50
50
  *
51
51
  * @default true
52
52
  */
53
- shouldShowSpinner?: boolean | SpinnerOptions;
53
+ showSpinner?: boolean | SpinnerOptions;
54
54
  /**
55
55
  * **Spinner Text**
56
56
  *
@@ -1,7 +1,7 @@
1
1
  import type { IChatOptions, IEmailOptions, ISendMessageSuccessResponse, ISmsOptions } from '@novu/stateless';
2
2
  export interface NotificationOptions {
3
- type?: string;
4
- driver?: string;
3
+ type?: 'email' | 'sms' | 'chat' | 'push';
4
+ driver?: 'sendgrid' | 'emailjs' | 'mailjet' | 'mandrill' | 'netcore' | 'nodemailer' | 'postmark' | 'ses' | 'mailgun' | 'twilio' | 'nexmo' | 'gupshup' | 'plivo' | 'sms77' | 'sns';
5
5
  email: {
6
6
  purgeCSS: boolean;
7
7
  sendgrid: {
package/package.json CHANGED
@@ -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,13 +34,13 @@
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
  "devDependencies": {
40
40
  "@mdit-vue/plugin-component": "^0.11.2",
41
41
  "@mdit-vue/plugin-frontmatter": "^0.11.1",
42
42
  "@mdit-vue/types": "^0.11.0",
43
- "@prisma/client": "^4.8.1",
43
+ "@prisma/client": "^4.9.0",
44
44
  "@rollup/pluginutils": "^5.0.2",
45
45
  "@types/bcryptjs": "^2.4.2",
46
46
  "@types/crypto-js": "^4.1.1",
@@ -61,7 +61,7 @@
61
61
  "vite-plugin-inspect": "^0.7.14",
62
62
  "vite-plugin-vue-layouts": "^0.7.0",
63
63
  "vite-ssg": "^0.22.1",
64
- "vitepress": "1.0.0-alpha.36"
64
+ "vitepress": "1.0.0-alpha.38"
65
65
  },
66
66
  "scripts": {
67
67
  "build": "mkdist -d",