1.0.32 • Published 2 years ago

typepixel v1.0.32

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

TypePixel

JavaScript library built on Typescript to better manage data received from Hypixel API endpoints.

API

Client(config)

  • config JS Object with options to change how client acts.

Constructs a new Client. This allows you to run API requests that will return their typescript counterparts and without the mess of handling it yourself.

getUserProfiles

  • uuid Mojang created UUID
  • params JS Object with parameters that allow you to change the returning object.
    • justGetIdentifiers Option to just return profile_id, cute_name, game_mode, and if it's selected. Defaults to false
    • constructItems Allows the API to convert item_bytes into items on backpacks, etc. Defaults to true
    • keepItemBytes Whether or not to return the item_bytes key. Defaults to false
    • readableNames Converts items like ink_sack_4 to Lapis or Cocoa Beans, ender_stone to end_stone. Defaults to true
  • returns: Profile[]

Requires an API Hypixel key

getAuctions

  • page integer page number, Defaults to 0
  • convertItemBytes Converts item_bytes to item Defaults to false
  • returns:
{
    type: string,

        page?: number,
        total_pages?: number,
        total_auctions?: number,
        last_updated?: number,

        message: string,
        auctions: Auction[]
}

Does not require an API key

getEndedAuctions

  • convertItemBytes Converts item_bytes to item Defaults to false

Grabs auctions ended in the past 60 seconds. Does not require an API Key

  • returns:
{
    type: string,
        last_updated?: number,
        message: string,
        auctions: EndedAuction[]
}
1.0.2

2 years ago

1.0.19

2 years ago

1.0.18

2 years ago

1.0.17

2 years ago

1.0.16

2 years ago

1.0.22

2 years ago

1.0.21

2 years ago

1.0.26

2 years ago

1.0.25

2 years ago

1.0.24

2 years ago

1.0.23

2 years ago

1.0.29

2 years ago

1.0.28

2 years ago

1.0.27

2 years ago

1.0.32

2 years ago

1.0.31

2 years ago

1.0.30

2 years ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago