declare enum Endpoint { ADMIN_AccountCreate = "/admin/account/create", ADMIN_AccountSuspend = "/admin/account/suspend", ADMIN_AccountUnsuspend = "/admin/account/unsuspend", ADMIN_BindWalletToAccount = "/admin/account/bind-wallet", APPLICATION_Create = "/application/create", APPLICATION_Delete = "/application/delete", APPLICATION_NewApiKey = "/application/new-api-key", APPLICATION_Details = "/application/details", APPLICATION_IsOwner = "/application/is-owner", APPLICATION_All = "/application/all", APPLICATION_AllForOwner = "/application/own", APPLICATION_SCOPE_Add = "/application/scope/add", APPLICATION_SCOPE_Delete = "/application/scope/delete", APPLICATION_USER_Add = "/application/user/add", APPLICATION_USER_Update = "/application/user/update", APPLICATION_USER_Delete = "/application/user/delete", APPLICATION_USER_Find = "/application/user/find", APPLICATION_USER_All = "/application/user/all", APPLICATION_USER_IsAllowed = "/application/user/is-allowed", LOGIN = "/auth/login", LOGOUT = "/auth/logout", REGISTER = "/auth/register", REGISTER_EMAIL_RequestCode = "/auth/register/request-email-code", REGISTER_EMAIL_VerifyCode = "/auth/register/verify-email-code", PASSWORD_RESET = "/auth/password/reset", PASSWORD_RESET_RequestCode = "/auth/password/request-email-code", PASSWORD_RESET_VerifyCode = "/auth/password/verify-email-code", TOKEN_REFRESH = "/auth/token/refresh", ETH_Challenge = "/auth/eth/challenge", ETH_Login = "/auth/eth/login", ETH_Register = "/auth/eth/register", ETH_BindRegister = "/auth/eth/bind-register", WHITELIST_Status = "/whitelist/status", WHITELIST_IsAuthorized = "/whitelist/is-authorized", WHITELIST_Find = "/whitelist/find", WHITELIST_Activate = "/whitelist/activate", WHITELIST_Close = "/whitelist/close", WHITELIST_OpenAll = "/whitelist/open-all", WHITELIST_USER_All = "/whitelist/user/all", WHITELIST_USER_Add = "/whitelist/user/add", WHITELIST_USER_AddByWallet = "/whitelist/user/add-by-wallet", WHITELIST_USER_Delete = "/whitelist/user/delete", WHITELIST_USER_DeleteAll = "/whitelist/user/delete-all", WHITELIST_SESSION_All = "/whitelist/session/all", EARLYACCESS_IsAuthorized = "/access/earlyaccess/is-authorized", PLANNING_Get = "/access/planning/get", PLANNING_ASSISTANT_Create = "/access/planning/assistant/create-sessions", PLANNING_ASSISTANT_Delete = "/access/planning/assistant/delete-sessions", PLANNING_SESSION_Get = "/access/planning/session/get", PLANNING_SESSION_Find = "/access/planning/session/find", PLANNING_SESSION_FindNext = "/access/planning/session/find-next", PLANNING_SESSION_All = "/access/planning/session/all", PLANNING_SESSION_Create = "/access/planning/session/create", PLANNING_SESSION_Update = "/access/planning/session/update", PLANNING_SESSION_Delete = "/access/planning/session/delete", ME = "/auth/me", ME_EMAIL_Update = "/me/email/update", ME_EMAIL_UpdateByEmail = "/me/email/update-by-email", ME_EMAIL_RequestCode = "/me/email/request-email-code", ME_EMAIL_VerifyCode = "/me/email/verify-email-code", ME_PASSWORD_Update = "/me/password/update", ME_PASSWORD_UpdateByEmail = "/me/password/update-by-email", ME_PASSWORD_RequestCode = "/me/password/request-email-code", ME_PASSWORD_VerifyCode = "/me/password/verify-email-code", NEWSLETTER_GetSubscribers = "/newsletter/get-subscribers", NEWSLETTER_Subscribe = "/newsletter/subscribe", NEWSLETTER_Unsubscribe = "/newsletter/unsubscribe", USER_Find = "/user/find", USER_All = "/user/all", USER_ROLE_All = "/user/role/all", USER_ROLE_Update = "/user/role/update", USER_ROLE_Delete = "/user/role/delete", USER_ROLE_BatchUpdate = "/user/role/update/batch", USER_ROLE_BatchDelete = "/user/role/delete/batch", USER_ROLE_BatchUpdateByEmail = "/user/role/update/batch-by-email", USER_ROLE_BatchDeleteByEmail = "/user/role/delete/batch-by-email", WALLET_ETH_CHALLENGE_BindAccount = "/wallet/eth/challenge/bind-account", WALLET_ETH_CHALLENGE_UnbindAccount = "/wallet/eth/challenge/unbind-account", WALLET_ETH_CHALLENGE_RevealAccount = "/wallet/eth/challenge/reveal-account", WALLET_ETH_CHALLENGE_UpdateAccountEmail = "/wallet/eth/challenge/update-account-email", WALLET_ETH_CHALLENGE_UpdateAccountPassword = "/wallet/eth/challenge/update-account-password", WALLET_ETH_RevealAccount = "/wallet/eth/reveal-account", WALLET_ETH_BindAccount = "/wallet/eth/bind-to-account", WALLET_ETH_UnbindAccount = "/wallet/eth/unbind-from-account", WALLET_ETH_UpdateAccountEmail = "/wallet/eth/update-account-email", WALLET_ETH_UpdateAccountPassword = "/wallet/eth/update-account-password", WALLET_ETH_IsBound = "/wallet/eth/is-bound", WALLET_ETH_EMAIL_RequestCode = "/wallet/eth/request-email-code", WALLET_ETH_EMAIL_VerifyCode = "/wallet/eth/verify-email-code", WALLET_FindOwner = "/wallet/owner/find", WALLET_FindWallet = "/wallet/find", OAUTH_DISCORD_AuthorizeURL = "/oauth2/discord/authorize-url", OAUTH_DISCORD_Login = "/oauth2/discord/login", OAUTH_DISCORD_Register = "/oauth2/discord/register", OAUTH_DISCORD_RegisterBind = "/oauth2/discord/register-bind", OAUTH_DISCORD_EMAIL_RequestCode = "/oauth2/discord/request-email-code", OAUTH_DISCORD_EMAIL_VerifyCode = "/oauth2/discord/verify-email-code", DISCORD_Me = "/discord/me", DISCORD_Unbind = "/discord/unbind", DISCORD_Bind = "/discord/bind" } export default Endpoint;