91 lines
4.6 KiB
TypeScript
91 lines
4.6 KiB
TypeScript
import { bindByEmail, bindByMobile, loginByAccount, loginByEmail, loginByMobile, loginWechat, loginWechatMp, loginWechatNative, syncUserInfoWechatMp, sendCaptchaByMobile, sendCaptchaByEmail, switchTo, refreshWechatPublicUserInfo, getWechatMpUserPhoneNumber, logout, loginByWechat, wakeupParasite, refreshToken, verifyPassword, loginWebByMpToken } from './token';
|
|
import { getInfoByUrl } from './extraFile';
|
|
import { getApplication, signatureJsSDK, uploadWechatMedia, batchGetArticle, getArticle, batchGetMaterialList, getMaterial, deleteMaterial } from './application';
|
|
import { updateConfig, updateApplicationConfig, updateStyle } from './config';
|
|
import { syncMessageTemplate, getMessageType } from './template';
|
|
import { syncSmsTemplate } from './sms';
|
|
import { mergeUser, getChangePasswordChannels, updateUserPassword } from './user';
|
|
import { createWechatLogin } from './wechatLogin';
|
|
import { unbindingWechat } from './wechatUser';
|
|
import { getMpUnlimitWxaCode } from './wechatQrCode';
|
|
import { createSession } from './session';
|
|
import { getCurrentMenu, getMenu, createMenu, createConditionalMenu, deleteConditionalMenu, deleteMenu } from './wechatMenu';
|
|
import { createTag, getTags, editTag, deleteTag, syncTag, oneKeySync } from './wechatPublicTag';
|
|
import { getTagUsers, batchtagging, batchuntagging, getUserTags, getUsers, tagging, syncToLocale, syncToWechat } from './userWechatPublicTag';
|
|
import { wechatMpJump } from './wechatMpJump';
|
|
import { getApplicationPassports, removeApplicationPassportsByPIds } from './applicationPassport';
|
|
import { authorize, createOAuthState, getOAuthClientInfo, loginByOauth } from './oauth';
|
|
declare const aspectDict: {
|
|
bindByEmail: typeof bindByEmail;
|
|
bindByMobile: typeof bindByMobile;
|
|
loginByAccount: typeof loginByAccount;
|
|
loginByEmail: typeof loginByEmail;
|
|
mergeUser: typeof mergeUser;
|
|
switchTo: typeof switchTo;
|
|
refreshWechatPublicUserInfo: typeof refreshWechatPublicUserInfo;
|
|
loginByMobile: typeof loginByMobile;
|
|
loginWechat: typeof loginWechat;
|
|
loginWechatMp: typeof loginWechatMp;
|
|
loginWechatNative: typeof loginWechatNative;
|
|
wakeupParasite: typeof wakeupParasite;
|
|
refreshToken: typeof refreshToken;
|
|
syncUserInfoWechatMp: typeof syncUserInfoWechatMp;
|
|
sendCaptchaByMobile: typeof sendCaptchaByMobile;
|
|
sendCaptchaByEmail: typeof sendCaptchaByEmail;
|
|
getApplication: typeof getApplication;
|
|
updateConfig: typeof updateConfig;
|
|
updateStyle: typeof updateStyle;
|
|
updateApplicationConfig: typeof updateApplicationConfig;
|
|
getWechatMpUserPhoneNumber: typeof getWechatMpUserPhoneNumber;
|
|
logout: typeof logout;
|
|
signatureJsSDK: typeof signatureJsSDK;
|
|
createWechatLogin: typeof createWechatLogin;
|
|
unbindingWechat: typeof unbindingWechat;
|
|
loginByWechat: typeof loginByWechat;
|
|
getInfoByUrl: typeof getInfoByUrl;
|
|
getChangePasswordChannels: typeof getChangePasswordChannels;
|
|
updateUserPassword: typeof updateUserPassword;
|
|
getMpUnlimitWxaCode: typeof getMpUnlimitWxaCode;
|
|
createSession: typeof createSession;
|
|
uploadWechatMedia: typeof uploadWechatMedia;
|
|
getCurrentMenu: typeof getCurrentMenu;
|
|
getMenu: typeof getMenu;
|
|
createMenu: typeof createMenu;
|
|
createConditionalMenu: typeof createConditionalMenu;
|
|
deleteConditionalMenu: typeof deleteConditionalMenu;
|
|
deleteMenu: typeof deleteMenu;
|
|
batchGetArticle: typeof batchGetArticle;
|
|
getArticle: typeof getArticle;
|
|
batchGetMaterialList: typeof batchGetMaterialList;
|
|
getMaterial: typeof getMaterial;
|
|
deleteMaterial: typeof deleteMaterial;
|
|
createTag: typeof createTag;
|
|
getTags: typeof getTags;
|
|
editTag: typeof editTag;
|
|
deleteTag: typeof deleteTag;
|
|
syncMessageTemplate: typeof syncMessageTemplate;
|
|
getMessageType: typeof getMessageType;
|
|
syncTag: typeof syncTag;
|
|
oneKeySync: typeof oneKeySync;
|
|
getTagUsers: typeof getTagUsers;
|
|
batchtagging: typeof batchtagging;
|
|
batchuntagging: typeof batchuntagging;
|
|
getUserTags: typeof getUserTags;
|
|
getUsers: typeof getUsers;
|
|
tagging: typeof tagging;
|
|
syncToLocale: typeof syncToLocale;
|
|
syncToWechat: typeof syncToWechat;
|
|
wechatMpJump: typeof wechatMpJump;
|
|
syncSmsTemplate: typeof syncSmsTemplate;
|
|
getApplicationPassports: typeof getApplicationPassports;
|
|
removeApplicationPassportsByPIds: typeof removeApplicationPassportsByPIds;
|
|
verifyPassword: typeof verifyPassword;
|
|
loginWebByMpToken: typeof loginWebByMpToken;
|
|
loginByOauth: typeof loginByOauth;
|
|
getOAuthClientInfo: typeof getOAuthClientInfo;
|
|
createOAuthState: typeof createOAuthState;
|
|
authorize: typeof authorize;
|
|
};
|
|
export default aspectDict;
|
|
export { AspectDict } from './AspectDict';
|