@reddoorla/maintenance 0.39.0 → 0.40.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.
- package/dist/cli/bin.js +2 -0
- package/dist/cli/bin.js.map +1 -1
- package/dist/cli/commands/audit.js +2 -0
- package/dist/cli/commands/audit.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -238,6 +238,10 @@ type WebsiteRow = {
|
|
|
238
238
|
/** Optional per-site webhook (e.g. Zapier Catch Hook). When set, the ingest
|
|
239
239
|
* POSTs newsletter-formType submissions here (best-effort). Blank → null. */
|
|
240
240
|
newsletterWebhook: string | null;
|
|
241
|
+
/** Per-site Mailchimp (newsletter). Both must be set for the direct add;
|
|
242
|
+
* blank → skipped. The API key is `key-dc` format; dc is derived from it. */
|
|
243
|
+
mailchimpApiKey: string | null;
|
|
244
|
+
mailchimpAudienceId: string | null;
|
|
241
245
|
/** GitHub-signals sweep (slice 2a), written nightly by `github-signals --fleet`. */
|
|
242
246
|
renovateFailingCis: number | null;
|
|
243
247
|
defaultBranchCi: string | null;
|
package/dist/index.js
CHANGED
|
@@ -2663,6 +2663,8 @@ function mapRow(rec) {
|
|
|
2663
2663
|
copyFooter: trimToNull(f["Copy \u2014 Footer"]),
|
|
2664
2664
|
launchedAt: f["Launched at"] ?? null,
|
|
2665
2665
|
newsletterWebhook: trimToNull(f["Newsletter Webhook"]),
|
|
2666
|
+
mailchimpApiKey: trimToNull(f["Mailchimp API Key"]),
|
|
2667
|
+
mailchimpAudienceId: trimToNull(f["Mailchimp Audience ID"]),
|
|
2666
2668
|
renovateFailingCis: f["Renovate Failing CIs"] ?? null,
|
|
2667
2669
|
defaultBranchCi: f["Default Branch CI"] ?? null,
|
|
2668
2670
|
lastCommitAt: f["Last Commit At"] ?? null,
|