payload-plugin-newsletter 0.25.13 → 0.26.0

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.
@@ -2290,6 +2290,33 @@ var createBroadcastsCollection = (pluginConfig) => {
2290
2290
  {
2291
2291
  name: "pausedAt",
2292
2292
  type: "date"
2293
+ },
2294
+ {
2295
+ name: "webhookEvents",
2296
+ type: "array",
2297
+ label: "Webhook Event Log",
2298
+ maxRows: 10,
2299
+ admin: {
2300
+ readOnly: true,
2301
+ description: "Recent webhook events for debugging"
2302
+ },
2303
+ fields: [
2304
+ {
2305
+ name: "eventType",
2306
+ type: "text",
2307
+ admin: { readOnly: true }
2308
+ },
2309
+ {
2310
+ name: "receivedAt",
2311
+ type: "date",
2312
+ admin: { readOnly: true }
2313
+ },
2314
+ {
2315
+ name: "eventPayload",
2316
+ type: "json",
2317
+ admin: { readOnly: true }
2318
+ }
2319
+ ]
2293
2320
  }
2294
2321
  ]
2295
2322
  }