@baileys-md/baileys
Version:
Baileys WhatsApp API
30 lines (28 loc) • 593 B
JavaScript
//========================================//
import { assertNodeErrorFree } from "../../WABinary/index.js";
import { USyncUser } from "../USyncUser.js";
export class USyncContactProtocol {
constructor() {
this.name = "contact";
}
getQueryElement() {
return {
tag: "contact",
attrs: {}
};
}
getUserElement(user) {
return {
tag: "contact",
attrs: {},
content: user.phone
};
}
parser(node) {
if (node.tag === "contact") {
assertNodeErrorFree(node);
return node?.attrs?.type === "in";
}
return false;
}
}