payload-plugin-newsletter 0.17.3 → 0.17.4
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 +8 -0
- package/dist/collections.cjs +1 -1
- package/dist/collections.cjs.map +1 -1
- package/dist/collections.js +1 -1
- package/dist/collections.js.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [0.17.4] - 2025-07-30
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
- **Resolved Lint Errors** - Fixed CI/CD build failures caused by lint errors
|
|
5
|
+
- Removed unused imports from `endpoints/broadcasts/index.ts`
|
|
6
|
+
- Prefixed unused `collectionSlug` parameter with underscore in `preview.ts`
|
|
7
|
+
- Ensures clean build and successful npm publish
|
|
8
|
+
|
|
1
9
|
## [0.17.3] - 2025-07-30
|
|
2
10
|
|
|
3
11
|
### Fixed
|
package/dist/collections.cjs
CHANGED
|
@@ -1625,7 +1625,7 @@ var createTestBroadcastEndpoint = (config, collectionSlug) => {
|
|
|
1625
1625
|
};
|
|
1626
1626
|
|
|
1627
1627
|
// src/endpoints/broadcasts/preview.ts
|
|
1628
|
-
var createBroadcastPreviewEndpoint = (config,
|
|
1628
|
+
var createBroadcastPreviewEndpoint = (config, _collectionSlug) => {
|
|
1629
1629
|
return {
|
|
1630
1630
|
path: "/preview",
|
|
1631
1631
|
method: "post",
|