@wise-old-man/utils 3.3.10 → 3.3.11
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/cjs/index.cjs +2 -0
- package/dist/es/index.js +2 -0
- package/dist/es/index.mjs +2 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -614,6 +614,7 @@ const Boss = {
|
|
|
614
614
|
VETION: 'vetion',
|
|
615
615
|
VORKATH: 'vorkath',
|
|
616
616
|
WINTERTODT: 'wintertodt',
|
|
617
|
+
YAMA: 'yama',
|
|
617
618
|
ZALCANO: 'zalcano',
|
|
618
619
|
ZULRAH: 'zulrah'
|
|
619
620
|
};
|
|
@@ -1966,6 +1967,7 @@ const BossProps = mapValues({
|
|
|
1966
1967
|
[Boss.VETION]: { name: "Vet'ion" },
|
|
1967
1968
|
[Boss.VORKATH]: { name: 'Vorkath' },
|
|
1968
1969
|
[Boss.WINTERTODT]: { name: 'Wintertodt' },
|
|
1970
|
+
[Boss.YAMA]: { name: 'Yama' },
|
|
1969
1971
|
[Boss.ZALCANO]: { name: 'Zalcano' },
|
|
1970
1972
|
[Boss.ZULRAH]: { name: 'Zulrah' }
|
|
1971
1973
|
}, props => (Object.assign(Object.assign({}, props), { type: exports.MetricType.BOSS, measure: exports.MetricMeasure.KILLS, isMembers: 'isMembers' in props ? props.isMembers : true, minimumValue: 'minimumValue' in props ? props.minimumValue : 5 })));
|
package/dist/es/index.js
CHANGED
|
@@ -612,6 +612,7 @@ const Boss = {
|
|
|
612
612
|
VETION: 'vetion',
|
|
613
613
|
VORKATH: 'vorkath',
|
|
614
614
|
WINTERTODT: 'wintertodt',
|
|
615
|
+
YAMA: 'yama',
|
|
615
616
|
ZALCANO: 'zalcano',
|
|
616
617
|
ZULRAH: 'zulrah'
|
|
617
618
|
};
|
|
@@ -1964,6 +1965,7 @@ const BossProps = mapValues({
|
|
|
1964
1965
|
[Boss.VETION]: { name: "Vet'ion" },
|
|
1965
1966
|
[Boss.VORKATH]: { name: 'Vorkath' },
|
|
1966
1967
|
[Boss.WINTERTODT]: { name: 'Wintertodt' },
|
|
1968
|
+
[Boss.YAMA]: { name: 'Yama' },
|
|
1967
1969
|
[Boss.ZALCANO]: { name: 'Zalcano' },
|
|
1968
1970
|
[Boss.ZULRAH]: { name: 'Zulrah' }
|
|
1969
1971
|
}, props => (Object.assign(Object.assign({}, props), { type: MetricType.BOSS, measure: MetricMeasure.KILLS, isMembers: 'isMembers' in props ? props.isMembers : true, minimumValue: 'minimumValue' in props ? props.minimumValue : 5 })));
|
package/dist/es/index.mjs
CHANGED
|
@@ -612,6 +612,7 @@ const Boss = {
|
|
|
612
612
|
VETION: 'vetion',
|
|
613
613
|
VORKATH: 'vorkath',
|
|
614
614
|
WINTERTODT: 'wintertodt',
|
|
615
|
+
YAMA: 'yama',
|
|
615
616
|
ZALCANO: 'zalcano',
|
|
616
617
|
ZULRAH: 'zulrah'
|
|
617
618
|
};
|
|
@@ -1964,6 +1965,7 @@ const BossProps = mapValues({
|
|
|
1964
1965
|
[Boss.VETION]: { name: "Vet'ion" },
|
|
1965
1966
|
[Boss.VORKATH]: { name: 'Vorkath' },
|
|
1966
1967
|
[Boss.WINTERTODT]: { name: 'Wintertodt' },
|
|
1968
|
+
[Boss.YAMA]: { name: 'Yama' },
|
|
1967
1969
|
[Boss.ZALCANO]: { name: 'Zalcano' },
|
|
1968
1970
|
[Boss.ZULRAH]: { name: 'Zulrah' }
|
|
1969
1971
|
}, props => (Object.assign(Object.assign({}, props), { type: MetricType.BOSS, measure: MetricMeasure.KILLS, isMembers: 'isMembers' in props ? props.isMembers : true, minimumValue: 'minimumValue' in props ? props.minimumValue : 5 })));
|
package/dist/index.d.ts
CHANGED
|
@@ -497,6 +497,7 @@ declare const Boss: {
|
|
|
497
497
|
readonly VETION: "vetion";
|
|
498
498
|
readonly VORKATH: "vorkath";
|
|
499
499
|
readonly WINTERTODT: "wintertodt";
|
|
500
|
+
readonly YAMA: "yama";
|
|
500
501
|
readonly ZALCANO: "zalcano";
|
|
501
502
|
readonly ZULRAH: "zulrah";
|
|
502
503
|
};
|
|
@@ -572,6 +573,7 @@ declare const Metric: {
|
|
|
572
573
|
readonly VETION: "vetion";
|
|
573
574
|
readonly VORKATH: "vorkath";
|
|
574
575
|
readonly WINTERTODT: "wintertodt";
|
|
576
|
+
readonly YAMA: "yama";
|
|
575
577
|
readonly ZALCANO: "zalcano";
|
|
576
578
|
readonly ZULRAH: "zulrah";
|
|
577
579
|
readonly LEAGUE_POINTS: "league_points";
|
|
@@ -1733,6 +1735,7 @@ declare const MetricProps: {
|
|
|
1733
1735
|
readonly vetion: BossProperties;
|
|
1734
1736
|
readonly vorkath: BossProperties;
|
|
1735
1737
|
readonly wintertodt: BossProperties;
|
|
1738
|
+
readonly yama: BossProperties;
|
|
1736
1739
|
readonly zalcano: BossProperties;
|
|
1737
1740
|
readonly zulrah: BossProperties;
|
|
1738
1741
|
readonly overall: SkillProperties;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise-old-man/utils",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.11",
|
|
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",
|