#!/usr/bin/env node /** * go-gmail — Gateway CLI for Gmail operations. * * Always outputs JSON. Designed for agent consumption. * * Usage: * go-gmail [args...] * go-gmail marc@blegal.eu search "from:client is:unread" * go-gmail marc@blegal.eu get * go-gmail marc@blegal.eu thread * go-gmail marc@blegal.eu labels * go-gmail marc@blegal.eu send --to=x@y.com --subject="Hi" --body-text-file=body.txt --confirm * * Body content: * --body-text-file= Read plain text body from file (UTF-8) * --body-html-file= Read HTML body from file (UTF-8) * --body-md-file= Read Markdown body from file (auto-converted to HTML) * * Safety: * Destructive operations (send, reply, forward, sendDraft) require --confirm flag. * Without --confirm, the command shows what WOULD happen and exits. */ export {}; //# sourceMappingURL=gmail.d.ts.map