@juzi/wechaty-puppet-whatsapp
Version:
Wechaty Puppet for WhatsApp
85 lines • 3.77 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.tagTagContactList = exports.tagTagList = exports.tagTagDelete = exports.tagTagAdd = exports.tagGroupTagList = exports.tagGroupList = exports.tagGroupDelete = exports.tagGroupAdd = exports.tagContactTagList = exports.tagContactTagRemove = exports.tagContactTagAdd = void 0;
const PUPPET = __importStar(require("@juzi/wechaty-puppet"));
const config_js_1 = require("../config.js");
const PRE = 'MIXIN_TAG';
async function tagContactTagAdd(tags, contactIds) {
config_js_1.log.verbose(PRE, 'tagContactTagAdd(%s, %s)', JSON.stringify(tags), contactIds);
return PUPPET.throwUnsupportedError();
}
exports.tagContactTagAdd = tagContactTagAdd;
async function tagContactTagRemove(tags, contactIds) {
config_js_1.log.verbose(PRE, 'tagContactTagRemove(%s, %s)', JSON.stringify(tags), contactIds);
return PUPPET.throwUnsupportedError();
}
exports.tagContactTagRemove = tagContactTagRemove;
async function tagContactTagList(contactId) {
config_js_1.log.verbose(PRE, 'tagContactTagList(%s)', contactId);
return PUPPET.throwUnsupportedError();
}
exports.tagContactTagList = tagContactTagList;
async function tagGroupAdd(groupName) {
config_js_1.log.verbose(PRE, 'tagGroupAdd(%s)', groupName);
return PUPPET.throwUnsupportedError();
}
exports.tagGroupAdd = tagGroupAdd;
async function tagGroupDelete(groupId) {
config_js_1.log.verbose(PRE, 'tagGroupDelete(%s)', groupId);
return PUPPET.throwUnsupportedError();
}
exports.tagGroupDelete = tagGroupDelete;
async function tagGroupList() {
config_js_1.log.verbose(PRE, 'tagGroupList()');
return PUPPET.throwUnsupportedError();
}
exports.tagGroupList = tagGroupList;
async function tagGroupTagList(groupId) {
config_js_1.log.verbose(PRE, 'tagGroupTagList(%s)', groupId);
return PUPPET.throwUnsupportedError();
}
exports.tagGroupTagList = tagGroupTagList;
async function tagTagAdd(tagNameList, groupId) {
config_js_1.log.verbose(PRE, 'tagTagAdd(%s, %s)', JSON.stringify(tagNameList), groupId);
return PUPPET.throwUnsupportedError();
}
exports.tagTagAdd = tagTagAdd;
async function tagTagDelete(tagIdList) {
config_js_1.log.verbose(PRE, 'tagTagDelete(%s)', JSON.stringify(tagIdList));
return PUPPET.throwUnsupportedError();
}
exports.tagTagDelete = tagTagDelete;
async function tagTagList() {
config_js_1.log.verbose(PRE, 'tagTagList()');
return PUPPET.throwUnsupportedError();
}
exports.tagTagList = tagTagList;
async function tagTagContactList(tag) {
config_js_1.log.verbose(PRE, 'tagTagContactList(%s)', JSON.stringify(tag));
return PUPPET.throwUnsupportedError();
}
exports.tagTagContactList = tagTagContactList;
//# sourceMappingURL=tag.js.map