@raid-toolkit/webclient
TypeScript icon, indicating that this package has built-in type declarations

1.0.8 • Public • Published

RaidToolkit WebClient

This package provides access to the Raid Toolkit API from web contexts.

Installation

Yarn

yarn add @raid-toolkit/webclient

NPM

npm install @raid-toolkit/webclient

Usage

To access APIs from RTK, simply call useRaidToolkitApi with the API definition you wish to access, and then call whatever APIs you'd like.

import { useRaidToolkitApi, IAccountApi } from '@raid-toolkit/webclient';

async function loadAccount() {
    const accountApi = useRaidToolkitApi(IAccountApi);
    const accounts = await accountApi.getAccounts();
    for (const account of accounts) {
        const accountDump = await accountApi.getAccountDump(account.id);
        console.log({account, accountDump});
    }
}

APIs

AccountApi

API Description
getAccounts Fetch a list of all user accounts.
getAccountDump(accountId) Get an account dump for a given accountId, in RaidExtractor format.
getArtifacts(accountId) Get all artifacts for a given accountId
getArtifactById(accountId, artifactId) Get an artifact by id
getHeroes(accountId) Get all heroes for a given accountId
getHeroById(accountId, heroId) Get a hero by id
getArena(accountId) Get arena data for a given accountId
getAllResources(accountId) Get all resources for a given accountId

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.83latest

Version History

VersionDownloads (Last 7 Days)Published
1.0.83
1.0.72
1.0.62
1.0.52
1.0.42
1.0.32
1.0.22
1.0.12
0.9.272
0.9.262
0.9.252
0.9.242
0.9.232
0.9.222
0.9.212
0.9.202
0.9.192
0.9.182
0.9.172
0.9.162
0.9.152
0.9.142
0.9.132
0.9.122
0.9.112
0.9.102
0.9.82
0.9.72
0.9.62
0.9.52
0.9.42
0.9.32
0.9.22
0.9.12
0.9.02

Package Sidebar

Install

npm i @raid-toolkit/webclient

Weekly Downloads

71

Version

1.0.8

License

MIT

Unpacked Size

146 kB

Total Files

56

Last publish

Collaborators

  • dnchattan