UNPKG

@juzi/wechaty

Version:

Wechaty is a RPA SDK for Chatbot Makers.

30 lines 979 B
import { log } from '@juzi/wechaty-puppet'; import { validationMixin } from '../user-mixins/validation.js'; import { wechatifyMixinBase, } from '../user-mixins/wechatify.js'; class ImSpecificMixin extends 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(); log.verbose('ImSpecific', 'constructor()'); } } class ImSpecificImpl extends validationMixin(ImSpecificMixin)() { } export { ImSpecificImpl, }; //# sourceMappingURL=im-specific.js.map