diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-13 15:03:13 -0600 |
---|---|---|
committer | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-13 15:03:13 -0600 |
commit | 8d2722bdd81591feef14dd4ccdf99ac9c1309925 (patch) | |
tree | e3d4f49ad705b1ef085d0425568f0e4e6b5d610e /src/hypixel.ts | |
parent | e9bd7f931e071311ff9a3b83673042f8da352554 (diff) | |
download | skyblock-api-8d2722bdd81591feef14dd4ccdf99ac9c1309925.tar.gz skyblock-api-8d2722bdd81591feef14dd4ccdf99ac9c1309925.tar.bz2 skyblock-api-8d2722bdd81591feef14dd4ccdf99ac9c1309925.zip |
add optional check to verify all clients are owned by the creator
Diffstat (limited to 'src/hypixel.ts')
-rw-r--r-- | src/hypixel.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/hypixel.ts b/src/hypixel.ts index 105e627..0d3e9ea 100644 --- a/src/hypixel.ts +++ b/src/hypixel.ts @@ -1,7 +1,9 @@ -import { CleanMinion, cleanMinions, combineMinionArrays } from './cleaners/skyblock/minions' -import { CleanProfileStats, cleanProfileStats } from './cleaners/skyblock/stats' +/** + * Fetch the clean Hypixel API + */ + import { CleanPlayer, cleanPlayerResponse } from './cleaners/player' -import { chooseApiKey, HypixelPlayerStatsSkyBlockProfiles, HypixelResponse, sendApiRequest } from './hypixelApi' +import { chooseApiKey, HypixelResponse, sendApiRequest } from './hypixelApi' import * as cached from './hypixelCached' import { CleanMemberProfile } from './cleaners/skyblock/member' import { cleanSkyblockProfileResponse, CleanProfile, CleanBasicProfile } from './cleaners/skyblock/profile' |