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 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
@@ -1625,7 +1625,7 @@ var createTestBroadcastEndpoint = (config, collectionSlug) => {
1625
1625
  };
1626
1626
 
1627
1627
  // src/endpoints/broadcasts/preview.ts
1628
- var createBroadcastPreviewEndpoint = (config, collectionSlug) => {
1628
+ var createBroadcastPreviewEndpoint = (config, _collectionSlug) => {
1629
1629
  return {
1630
1630
  path: "/preview",
1631
1631
  method: "post",