@novu/nextjs 3.11.0 → 3.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ import { type SubscriptionProps } from '@novu/react';
2
+ export declare function Subscription(props: SubscriptionProps): import("react/jsx-runtime").JSX.Element;
3
+ //# sourceMappingURL=Subscription.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Subscription.d.ts","sourceRoot":"","sources":["../../../src/app-router/Subscription.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAiC,KAAK,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAEpF,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,2CAEpD"}
@@ -0,0 +1,4 @@
1
+ import { type SubscriptionProps } from '@novu/react';
2
+ export declare function Subscription(props: SubscriptionProps): import("react/jsx-runtime").JSX.Element;
3
+ export { SubscriptionButton, SubscriptionPreferences } from '@novu/react';
4
+ //# sourceMappingURL=Subscription.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Subscription.d.ts","sourceRoot":"","sources":["../../../src/pages-router/Subscription.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAiC,KAAK,iBAAiB,EAAE,MAAM,aAAa,CAAC;AAEpF,wBAAgB,YAAY,CAAC,KAAK,EAAE,iBAAiB,2CAEpD;AAED,OAAO,EAAE,kBAAkB,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@novu/nextjs",
3
- "version": "3.11.0",
3
+ "version": "3.11.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/novuhq/novu",
@@ -61,6 +61,13 @@
61
61
  "publishConfig": {
62
62
  "access": "public"
63
63
  },
64
+ "scripts": {
65
+ "build:watch": "tsup --watch",
66
+ "build": "tsup && pnpm run build:declarations && pnpm run check-exports",
67
+ "build:declarations": "tsc -p tsconfig.declarations.json",
68
+ "check-exports": "attw --pack . --ignore-rules unexpected-module-syntax",
69
+ "publish:rc": "pnpm publish --tag rc"
70
+ },
64
71
  "browserslist": {
65
72
  "production": [
66
73
  ">0.2%",
@@ -93,18 +100,11 @@
93
100
  }
94
101
  },
95
102
  "dependencies": {
96
- "@novu/react": "3.11.0"
103
+ "@novu/react": "3.11.1"
97
104
  },
98
105
  "nx": {
99
106
  "tags": [
100
107
  "type:package"
101
108
  ]
102
- },
103
- "scripts": {
104
- "build:watch": "tsup --watch",
105
- "build": "tsup && pnpm run build:declarations && pnpm run check-exports",
106
- "build:declarations": "tsc -p tsconfig.declarations.json",
107
- "check-exports": "attw --pack . --ignore-rules unexpected-module-syntax",
108
- "publish:rc": "pnpm publish --tag rc"
109
109
  }
110
- }
110
+ }