79 lines
3.1 KiB
JavaScript
79 lines
3.1 KiB
JavaScript
import { actionDefDict as log } from "./Log/Action";
|
|
import { actionDefDict as modi } from "./Modi/Action";
|
|
import { actionDefDict as oper } from "./Oper/Action";
|
|
import { actionDefDict as captcha } from "./Captcha/Action";
|
|
import { actionDefDict as email } from "./Email/Action";
|
|
import { actionDefDict as loginName } from "./LoginName/Action";
|
|
import { actionDefDict as message } from "./Message/Action";
|
|
import { actionDefDict as mobile } from "./Mobile/Action";
|
|
import { actionDefDict as notification } from "./Notification/Action";
|
|
import { actionDefDict as oauthApplication } from "./OauthApplication/Action";
|
|
import { actionDefDict as oauthProvider } from "./OauthProvider/Action";
|
|
import { actionDefDict as oauthUser } from "./OauthUser/Action";
|
|
import { actionDefDict as oauthUserAuthorization } from "./OauthUserAuthorization/Action";
|
|
import { actionDefDict as parasite } from "./Parasite/Action";
|
|
import { actionDefDict as toDo } from "./ToDo/Action";
|
|
import { actionDefDict as token } from "./Token/Action";
|
|
import { actionDefDict as userEntityGrant } from "./UserEntityGrant/Action";
|
|
import { actionDefDict as userWechatPublicTag } from "./UserWechatPublicTag/Action";
|
|
import { actionDefDict as wechatLogin } from "./WechatLogin/Action";
|
|
import { actionDefDict as wechatMenu } from "./WechatMenu/Action";
|
|
import { actionDefDict as wechatPublicTag } from "./WechatPublicTag/Action";
|
|
import { actionDefDict as abstractPayAccount } from "./AbstractPayAccount/Action";
|
|
import { actionDefDict as account } from "./Account/Action";
|
|
import { actionDefDict as apAccount } from "./ApAccount/Action";
|
|
import { actionDefDict as deposit } from "./Deposit/Action";
|
|
import { actionDefDict as offlineAccount } from "./OfflineAccount/Action";
|
|
import { actionDefDict as order } from "./Order/Action";
|
|
import { actionDefDict as pay } from "./Pay/Action";
|
|
import { actionDefDict as refund } from "./Refund/Action";
|
|
import { actionDefDict as settlement } from "./Settlement/Action";
|
|
import { actionDefDict as settlePlan } from "./SettlePlan/Action";
|
|
import { actionDefDict as ship } from "./Ship/Action";
|
|
import { actionDefDict as user } from "./User/Action";
|
|
import { actionDefDict as withdraw } from "./Withdraw/Action";
|
|
import { actionDefDict as withdrawAccount } from "./WithdrawAccount/Action";
|
|
import { actionDefDict as withdrawChannel } from "./WithdrawChannel/Action";
|
|
import { actionDefDict as withdrawTransfer } from "./WithdrawTransfer/Action";
|
|
import { actionDefDict as wpAccount } from "./WpAccount/Action";
|
|
export const actionDefDict = {
|
|
log,
|
|
modi,
|
|
oper,
|
|
captcha,
|
|
email,
|
|
loginName,
|
|
message,
|
|
mobile,
|
|
notification,
|
|
oauthApplication,
|
|
oauthProvider,
|
|
oauthUser,
|
|
oauthUserAuthorization,
|
|
parasite,
|
|
toDo,
|
|
token,
|
|
userEntityGrant,
|
|
userWechatPublicTag,
|
|
wechatLogin,
|
|
wechatMenu,
|
|
wechatPublicTag,
|
|
abstractPayAccount,
|
|
account,
|
|
apAccount,
|
|
deposit,
|
|
offlineAccount,
|
|
order,
|
|
pay,
|
|
refund,
|
|
settlement,
|
|
settlePlan,
|
|
ship,
|
|
user,
|
|
withdraw,
|
|
withdrawAccount,
|
|
withdrawChannel,
|
|
withdrawTransfer,
|
|
wpAccount
|
|
};
|