@codeam/shared 2.61.43 → 2.61.44

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/index.mjs CHANGED
@@ -788,6 +788,45 @@ var INTEGRATION_REGISTRY = {
788
788
  }
789
789
  }
790
790
  },
791
+ resend: {
792
+ id: "resend",
793
+ name: "Resend",
794
+ icon: "resend",
795
+ category: "comms",
796
+ // LIVE — api_key (like Azure DevOps): the user pastes a Resend API key
797
+ // (`re_…`); Resend has NO OAuth, so there's no OAuth app / GSM secret /
798
+ // config-gated 503 — a backend VALIDATOR proves the key against the Resend
799
+ // API and vaults it. ⚠️ SEND-ONLY email → `sendOnly: true` keeps it OUT of
800
+ // From-Conversation (comms conversation sources need readable threads; Resend
801
+ // has none) while still being a linkable comms tool the agent uses via MCP.
802
+ enabled: true,
803
+ sendOnly: true,
804
+ auth: {
805
+ kind: "api_key",
806
+ fields: [
807
+ {
808
+ key: "accessToken",
809
+ label: "API Key",
810
+ placeholder: "re_xxxxxxxxxxxxxxxx",
811
+ secret: true,
812
+ help: 'Create in Resend \u2192 API Keys (https://resend.com/api-keys). "Sending access" is enough.'
813
+ }
814
+ ]
815
+ },
816
+ delivery: {
817
+ mcp: {
818
+ // The OFFICIAL resend-mcp (Node) in BYO-token mode: the API key is fed
819
+ // via RESEND_API_KEY (env only, never argv). Version PINNED; bump only
820
+ // after re-verifying headless. Tools: send email + contacts/broadcasts/
821
+ // domains.
822
+ command: "npx",
823
+ args: ["-y", "resend-mcp@2.6.1"],
824
+ envMapping: {
825
+ RESEND_API_KEY: "accessToken"
826
+ }
827
+ }
828
+ }
829
+ },
791
830
  notion: {
792
831
  id: "notion",
793
832
  name: "Notion",
@@ -1196,7 +1235,6 @@ var UPCOMING_INTEGRATION_IDS = [
1196
1235
  "clickup",
1197
1236
  "figma",
1198
1237
  "trello",
1199
- "resend",
1200
1238
  "vercel",
1201
1239
  "supabase",
1202
1240
  "asana",