payload-plugin-newsletter 0.20.1 → 0.20.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/CHANGELOG.md +55 -0
- package/dist/admin.js +104 -0
- package/dist/broadcast-VMCYSZRY.js +6 -0
- package/dist/chunk-XVMYJQRQ.js +490 -0
- package/dist/client.d.ts +131 -15
- package/dist/client.js +1 -1
- package/dist/server.d.ts +735 -0
- package/dist/{index.js → server.js} +30 -654
- package/package.json +19 -28
- package/dist/client.cjs +0 -891
- package/dist/client.cjs.map +0 -1
- package/dist/client.d.cts +0 -53
- package/dist/client.js.map +0 -1
- package/dist/components.cjs +0 -2460
- package/dist/components.cjs.map +0 -1
- package/dist/components.d.cts +0 -66
- package/dist/components.d.ts +0 -66
- package/dist/components.js +0 -2418
- package/dist/components.js.map +0 -1
- package/dist/index.cjs +0 -5545
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.cts +0 -90
- package/dist/index.d.ts +0 -90
- package/dist/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "payload-plugin-newsletter",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.3",
|
|
4
4
|
"description": "Complete newsletter management plugin for Payload CMS with subscriber management, magic link authentication, and email service integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -8,24 +8,24 @@
|
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
-
"import":
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
"default": "./dist/index.cjs"
|
|
18
|
-
}
|
|
11
|
+
"import": "./dist/server.js",
|
|
12
|
+
"types": "./dist/server.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./server": {
|
|
15
|
+
"import": "./dist/server.js",
|
|
16
|
+
"types": "./dist/server.d.ts"
|
|
19
17
|
},
|
|
20
18
|
"./client": {
|
|
21
|
-
"import":
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
19
|
+
"import": "./dist/client.js",
|
|
20
|
+
"types": "./dist/client.d.ts"
|
|
21
|
+
},
|
|
22
|
+
"./admin": {
|
|
23
|
+
"import": "./dist/admin.js",
|
|
24
|
+
"types": "./dist/admin.d.ts"
|
|
25
|
+
},
|
|
26
|
+
"./components": {
|
|
27
|
+
"import": "./dist/admin.js",
|
|
28
|
+
"types": "./dist/admin.d.ts"
|
|
29
29
|
},
|
|
30
30
|
"./types": {
|
|
31
31
|
"import": {
|
|
@@ -37,16 +37,6 @@
|
|
|
37
37
|
"default": "./dist/types.cjs"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
|
-
"./components": {
|
|
41
|
-
"import": {
|
|
42
|
-
"types": "./dist/components.d.ts",
|
|
43
|
-
"default": "./dist/components.js"
|
|
44
|
-
},
|
|
45
|
-
"require": {
|
|
46
|
-
"types": "./dist/components.d.cts",
|
|
47
|
-
"default": "./dist/components.cjs"
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
40
|
"./utils": {
|
|
51
41
|
"import": {
|
|
52
42
|
"types": "./dist/utils.d.ts",
|
|
@@ -95,7 +85,8 @@
|
|
|
95
85
|
"test:coverage": "bunx vitest run --coverage",
|
|
96
86
|
"test:ui": "bunx vitest --ui",
|
|
97
87
|
"generate:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
98
|
-
"
|
|
88
|
+
"validate:bundles": "node scripts/validate-bundles.cjs",
|
|
89
|
+
"prepublishOnly": "bun run clean && bun run build && bun run validate:bundles",
|
|
99
90
|
"release:patch": "./scripts/release.sh patch",
|
|
100
91
|
"release:minor": "./scripts/release.sh minor",
|
|
101
92
|
"release:major": "./scripts/release.sh major"
|