@wise-old-man/utils 3.2.3 → 3.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1336,19 +1336,23 @@ interface MemberInput {
|
|
|
1336
1336
|
role: string | GroupRole;
|
|
1337
1337
|
}
|
|
1338
1338
|
interface GroupHiscoresSkillItem {
|
|
1339
|
+
type: 'skill';
|
|
1339
1340
|
rank: number;
|
|
1340
1341
|
level: number;
|
|
1341
1342
|
experience: number;
|
|
1342
1343
|
}
|
|
1343
1344
|
interface GroupHiscoresBossItem {
|
|
1345
|
+
type: 'boss';
|
|
1344
1346
|
rank: number;
|
|
1345
1347
|
kills: number;
|
|
1346
1348
|
}
|
|
1347
1349
|
interface GroupHiscoresActivityItem {
|
|
1350
|
+
type: 'activity';
|
|
1348
1351
|
rank: number;
|
|
1349
1352
|
score: number;
|
|
1350
1353
|
}
|
|
1351
1354
|
interface GroupHiscoresComputedMetricItem {
|
|
1355
|
+
type: 'computed';
|
|
1352
1356
|
rank: number;
|
|
1353
1357
|
value: number;
|
|
1354
1358
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise-old-man/utils",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.4",
|
|
4
4
|
"description": "A JavaScript/TypeScript client that interfaces and consumes the Wise Old Man API, an API that tracks and measures players' progress in Old School Runescape.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wiseoldman",
|