diff options
Diffstat (limited to 'src/hypixelApi.ts')
-rw-r--r-- | src/hypixelApi.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hypixelApi.ts b/src/hypixelApi.ts index adc6378..5f2bfb1 100644 --- a/src/hypixelApi.ts +++ b/src/hypixelApi.ts @@ -98,7 +98,7 @@ export interface HypixelPlayerSocialMedia { /** Send an HTTP request to the Hypixel API */ -export let sendApiRequest = async<P extends keyof typedHypixelApi.Requests>(path: P, options: typedHypixelApi.Requests[P]['options']): Promise<typedHypixelApi.Requests[P]['response']> => { +export let sendApiRequest = async<P extends keyof typedHypixelApi.Requests>(path: P, options: typedHypixelApi.Requests[P]['options']): Promise<typedHypixelApi.Requests[P]['response']['data']> => { // Send a raw http request to api.hypixel.net, and return the parsed json let response: typedHypixelApi.Requests[P]['response'] try { @@ -152,7 +152,7 @@ export let sendApiRequest = async<P extends keyof typedHypixelApi.Requests>(path await sleep(10000) return await sendApiRequest(path, options) } - return response + return response.data } // this is necessary for mocking in the tests because es6 |