open-wa / wa-automate-nodejs

💬 🤖 The most reliable tool for chatbots with advanced features. Be sure to 🌟 this repository for updates!
https://docs.openwa.dev/
Other
3.12k stars 591 forks source link

Add device identifier to message objects #3242

Closed smashah closed 1 week ago

smashah commented 1 week ago

Sometimes it's useful to know where an outgoing message is actually from.

Context:

Corner shop has a whatsapp account for customer service. and 2 clerks one for early shift and one for night shift.

Clerk 1 has access to the account via a web session and he has the root host account device

Clerk 2 has access only via a web session.

The shop owner is running an automation for cli-type commands from customers.

Shop owner wants the message to be edited with a signature based on who the message is from. Owner has told C1 and C2 to sign off their respective messages with their name but they wont listen.

Owner decides to implement auto-updating messages with signatures using an automation.

But how is owner going to do that if the message object has no identifier of who sent a message?

smashah commented 1 week ago

@github-actions run

âš¡ Release! âš¡ ```js (async () => { function exec(cmd) { try { execSync(cmd, {stdio: 'inherit'}) } catch (error) { console.log(`Status Code: ${error.status} with '${error.message}'`); } } //set the version type process.env.VERS = "patch" // Config const gitUserEmail = "github-actions[bot]@users.noreply.github.com"; const gitUserName = "github-actions[bot]"; exec(`echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc`); exec(`git config --global user.email "${gitUserEmail}"`); exec(`git config --global user.name "${gitUserName}"`); exec(`npm i -D`); exec(`npm run release-ci $VERS`); // types only package exec('npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN') exec(`npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN && npm run types:publish `); exec(`git commit -a -m 'updated types-only package'`); exec(`git push --force`); //comment on the issue var result = execSync(`npx auto-changelog -o ./tempchangelog.txt --commit-limit false --template ./compact-keepachangelog.hbs --stdout`).toString(); await postComment(result); //create changelog image exec(`npm run release-image`); exec(`git commit -a -m 'updated release-image'`); exec(`git push --force`); })(); ```
smashah commented 1 week ago

Changelog

🚀 Release 4.72.3 (2024-09-17)