npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-teamsix-zap-solution

v1.0.10

Published

n8n nodes para integração com TeamSix Zap Solution

Readme

n8n-nodes-teamsix-zap-solution

Biblioteca de nodes do n8n para integração com TeamSix Zap Solution.

📦 Instalação

Instalação Local (Desenvolvimento)

  1. Clone o repositório:
git clone https://github.com/Jeffersonp2/TeamSix-Zap-Solution.git
cd TeamSix-Zap-Solution/n8n-nodes-teamsix-zap-solution
  1. Instale as dependências:
npm install
  1. Compile o projeto:
npm run build
  1. No n8n, adicione o caminho da biblioteca:
    • Vá em Settings > Community Nodes
    • Adicione o caminho: C:\n8n\teamsix-zap-solution\n8n-nodes-teamsix-zap-solution

Instalação via NPM (quando publicado)

npm install n8n-nodes-teamsix-zap-solution

🔧 Configuração

Credenciais

  1. Crie uma credencial do tipo "TeamSix Zap Solution API"
  2. Configure a URL base da API (padrão: http://localhost:3000)

📚 Nodes Disponíveis

1. Send Text

Envia mensagem de texto via WhatsApp.

Parâmetros:

  • Remote JID (obrigatório): ID do chat/contato
  • Text (obrigatório): Texto da mensagem
  • Quoted Message ID (opcional): ID da mensagem para responder

Exemplo:

Remote JID: [email protected]
Text: Olá, como vai?
Quoted Message ID: (deixe vazio se não for responder)

2. Send Media

Envia mídia (imagem, vídeo, áudio, documento, sticker) via WhatsApp.

Parâmetros:

  • Remote JID (obrigatório): ID do chat/contato
  • Media Type (obrigatório): Tipo de mídia
    • Image
    • Video
    • GIF
    • Audio
    • Document
    • Sticker
  • Media (obrigatório): URL, base64 ou caminho do arquivo
  • Caption (opcional): Legenda da mídia
  • Quoted Message ID (opcional): ID da mensagem para responder
  • File Name (opcional, apenas Document): Nome do arquivo
  • MIME Type (opcional, apenas Document): Tipo MIME (ex: pdf, docx)

Exemplo:

Remote JID: [email protected]
Media Type: Image
Media: https://example.com/image.jpg
Caption: Veja esta imagem!
Quoted Message ID: (deixe vazio se não for responder)

3. Presence

Controla a presença (digitando, gravando, parar).

Parâmetros:

  • Operation (obrigatório): Tipo de operação
    • Digitando
    • Gravando
    • Parar
  • Remote JID (obrigatório): ID do chat/contato

Exemplo:

Operation: Digitando
Remote JID: [email protected]

4. Read Messages

Marca mensagens como lidas.

Parâmetros:

  • Message Keys (obrigatório): Array JSON de WAMessageKey

Exemplo:

[
  {
    "remoteJid": "[email protected]",
    "id": "3EB0123456789ABCDEF"
  }
]

🚀 Uso

  1. Adicione um node do TeamSix Zap Solution no seu workflow
  2. Configure as credenciais
  3. Preencha os parâmetros necessários
  4. Execute o workflow

📝 Notas

  • O campo Quoted Message ID é opcional em todos os nodes que o suportam
  • Se o campo estiver vazio, a mensagem será enviada normalmente (sem responder)
  • Para Send Media, o tipo de mídia deve ser selecionado no campo Media Type
  • A URL base padrão é http://localhost:3000, mas pode ser alterada nas credenciais

🔗 Links

📄 Licença

MIT

👨‍💻 Autor

Jefferson Oliveira