@devosurf/tesser 0.1.0-alpha.1 → 0.1.0-alpha.2
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.js +3 -2
- package/dist/index.js.map +2 -2
- package/package.json +3 -3
- package/src/commands/project-docs.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -1531,6 +1531,7 @@ import {
|
|
|
1531
1531
|
googleDrive,
|
|
1532
1532
|
googleSheets,
|
|
1533
1533
|
http,
|
|
1534
|
+
outlookMail,
|
|
1534
1535
|
pi,
|
|
1535
1536
|
resend,
|
|
1536
1537
|
slack,
|
|
@@ -1573,11 +1574,11 @@ export default defineAutomation({
|
|
|
1573
1574
|
- \`ctx.connections.http.get({ url, headers?, query? })\` and \`ctx.connections.http.request({ method, url, headers?, query?, body?, bodyText? })\`. Generic writes are not retry-safe; still wrap them in a Step.
|
|
1574
1575
|
- \`ctx.connections.github.issues.list({ repo?, state?, labels?, limit? })\`, \`issues.create({ repo, title, body?, labels? })\`, \`issues.comment({ repo, number, body })\`, \`repos.get({ repo })\`.
|
|
1575
1576
|
- \`ctx.connections.slack.chat.postMessage({ channel, text, threadTs? })\` and related Slack chat/conversation/user Actions.
|
|
1576
|
-
- \`ctx.connections.resend.emails.send(...)\`, Gmail/Google Calendar/Docs/Drive/Sheets Actions, Anthropic model Actions, Claude Code/Pi Harness-related Connectors: inspect package types or examples before using.
|
|
1577
|
+
- \`ctx.connections.resend.emails.send(...)\`, Gmail/Outlook Mail and Google Calendar/Docs/Drive/Sheets Actions, Anthropic model Actions, Claude Code/Pi Harness-related Connectors: inspect package types or examples before using.
|
|
1577
1578
|
|
|
1578
1579
|
## Connector triggers
|
|
1579
1580
|
|
|
1580
|
-
Some Connectors expose typed triggers, e.g. GitHub issue triggers
|
|
1581
|
+
Some Connectors expose typed triggers, e.g. GitHub issue triggers, Slack event triggers, Gmail/Outlook mailbox poll triggers. Use the Connector's \`triggers\` constructors; do not hand-roll webhook delivery unless no Connector exists.
|
|
1581
1582
|
|
|
1582
1583
|
\`\`\`ts
|
|
1583
1584
|
trigger: github.triggers.issueOpened({ repo: "owner/repo" })
|