@juzi/wechaty
Version:
Wechaty is a RPA SDK for Chatbot Makers.
33 lines • 1.17 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImSpecificImpl = void 0;
const wechaty_puppet_1 = require("@juzi/wechaty-puppet");
const validation_js_1 = require("../user-mixins/validation.js");
const wechatify_js_1 = require("../user-mixins/wechatify.js");
class ImSpecificMixin extends (0, wechatify_js_1.wechatifyMixinBase)() {
// xiaohongshu
static async listIntentComment(query) {
return this.wechaty.puppet.listIntentComments(query);
}
static async getIntentComment(id) {
return this.wechaty.puppet.intentCommentPayload(id);
}
// 微信小店
static async getWxxdShop() {
return this.wechaty.puppet.wxxdShopPayload();
}
static async getWxxdOrderDeliveryCompanyList() {
return this.wechaty.puppet.getWxxdOrderDeliveryCompanyList();
}
/*
* @hideconstructor
*/
constructor() {
super();
wechaty_puppet_1.log.verbose('ImSpecific', 'constructor()');
}
}
class ImSpecificImpl extends (0, validation_js_1.validationMixin)(ImSpecificMixin)() {
}
exports.ImSpecificImpl = ImSpecificImpl;
//# sourceMappingURL=im-specific.js.map