@wise-old-man/utils 3.3.6 → 3.3.7
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 +11 -2
- package/dist/es/index.js +11 -3
- package/dist/es/index.mjs +11 -3
- package/dist/index.d.ts +12 -2
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -552,7 +552,8 @@ const Activity = {
|
|
|
552
552
|
PVP_ARENA: 'pvp_arena',
|
|
553
553
|
SOUL_WARS_ZEAL: 'soul_wars_zeal',
|
|
554
554
|
GUARDIANS_OF_THE_RIFT: 'guardians_of_the_rift',
|
|
555
|
-
COLOSSEUM_GLORY: 'colosseum_glory'
|
|
555
|
+
COLOSSEUM_GLORY: 'colosseum_glory',
|
|
556
|
+
COLLECTIONS_LOGGED: 'collections_logged'
|
|
556
557
|
};
|
|
557
558
|
const Boss = {
|
|
558
559
|
ABYSSAL_SIRE: 'abyssal_sire',
|
|
@@ -644,6 +645,11 @@ const PlayerType = {
|
|
|
644
645
|
HARDCORE: 'hardcore',
|
|
645
646
|
ULTIMATE: 'ultimate'
|
|
646
647
|
};
|
|
648
|
+
const PlayerAnnotationType = {
|
|
649
|
+
BLACKLIST: 'blacklist',
|
|
650
|
+
GREYLIST: 'greylist',
|
|
651
|
+
FAKE_F2P: 'fake_f2p'
|
|
652
|
+
};
|
|
647
653
|
const PlayerBuild = {
|
|
648
654
|
MAIN: 'main',
|
|
649
655
|
F2P: 'f2p',
|
|
@@ -1981,7 +1987,8 @@ const ActivityProps = mapValues({
|
|
|
1981
1987
|
[Activity.PVP_ARENA]: { name: 'PvP Arena', minimumValue: 2525 },
|
|
1982
1988
|
[Activity.SOUL_WARS_ZEAL]: { name: 'Soul Wars Zeal', minimumValue: 200 },
|
|
1983
1989
|
[Activity.GUARDIANS_OF_THE_RIFT]: { name: 'Guardians of the Rift', minimumValue: 2 },
|
|
1984
|
-
[Activity.COLOSSEUM_GLORY]: { name: 'Colosseum Glory', minimumValue: 300 }
|
|
1990
|
+
[Activity.COLOSSEUM_GLORY]: { name: 'Colosseum Glory', minimumValue: 300 },
|
|
1991
|
+
[Activity.COLLECTIONS_LOGGED]: { name: 'Collection Logs', minimumValue: 500 }
|
|
1985
1992
|
}, props => (Object.assign(Object.assign({}, props), { type: exports.MetricType.ACTIVITY, measure: exports.MetricMeasure.SCORE, minimumValue: 'minimumValue' in props ? props.minimumValue : 1 })));
|
|
1986
1993
|
const ComputedMetricProps = mapValues({
|
|
1987
1994
|
[ComputedMetric.EHP]: { name: 'EHP' },
|
|
@@ -2202,6 +2209,7 @@ exports.EfficiencyAlgorithmType = void 0;
|
|
|
2202
2209
|
EfficiencyAlgorithmType["F2P_LVL3"] = "f2p_lvl3";
|
|
2203
2210
|
EfficiencyAlgorithmType["F2P_IRONMAN"] = "f2p_ironman";
|
|
2204
2211
|
EfficiencyAlgorithmType["F2P_LVL3_IRONMAN"] = "f2p_lvl3_ironman";
|
|
2212
|
+
EfficiencyAlgorithmType["DEF1"] = "def1";
|
|
2205
2213
|
})(exports.EfficiencyAlgorithmType || (exports.EfficiencyAlgorithmType = {}));
|
|
2206
2214
|
|
|
2207
2215
|
class EfficiencyClient extends BaseAPIClient {
|
|
@@ -2411,6 +2419,7 @@ exports.PLAYER_TYPES = PLAYER_TYPES;
|
|
|
2411
2419
|
exports.PRIVELEGED_GROUP_ROLES = PRIVELEGED_GROUP_ROLES;
|
|
2412
2420
|
exports.Period = Period;
|
|
2413
2421
|
exports.PeriodProps = PeriodProps;
|
|
2422
|
+
exports.PlayerAnnotationType = PlayerAnnotationType;
|
|
2414
2423
|
exports.PlayerBuild = PlayerBuild;
|
|
2415
2424
|
exports.PlayerBuildProps = PlayerBuildProps;
|
|
2416
2425
|
exports.PlayerStatus = PlayerStatus;
|
package/dist/es/index.js
CHANGED
|
@@ -550,7 +550,8 @@ const Activity = {
|
|
|
550
550
|
PVP_ARENA: 'pvp_arena',
|
|
551
551
|
SOUL_WARS_ZEAL: 'soul_wars_zeal',
|
|
552
552
|
GUARDIANS_OF_THE_RIFT: 'guardians_of_the_rift',
|
|
553
|
-
COLOSSEUM_GLORY: 'colosseum_glory'
|
|
553
|
+
COLOSSEUM_GLORY: 'colosseum_glory',
|
|
554
|
+
COLLECTIONS_LOGGED: 'collections_logged'
|
|
554
555
|
};
|
|
555
556
|
const Boss = {
|
|
556
557
|
ABYSSAL_SIRE: 'abyssal_sire',
|
|
@@ -642,6 +643,11 @@ const PlayerType = {
|
|
|
642
643
|
HARDCORE: 'hardcore',
|
|
643
644
|
ULTIMATE: 'ultimate'
|
|
644
645
|
};
|
|
646
|
+
const PlayerAnnotationType = {
|
|
647
|
+
BLACKLIST: 'blacklist',
|
|
648
|
+
GREYLIST: 'greylist',
|
|
649
|
+
FAKE_F2P: 'fake_f2p'
|
|
650
|
+
};
|
|
645
651
|
const PlayerBuild = {
|
|
646
652
|
MAIN: 'main',
|
|
647
653
|
F2P: 'f2p',
|
|
@@ -1979,7 +1985,8 @@ const ActivityProps = mapValues({
|
|
|
1979
1985
|
[Activity.PVP_ARENA]: { name: 'PvP Arena', minimumValue: 2525 },
|
|
1980
1986
|
[Activity.SOUL_WARS_ZEAL]: { name: 'Soul Wars Zeal', minimumValue: 200 },
|
|
1981
1987
|
[Activity.GUARDIANS_OF_THE_RIFT]: { name: 'Guardians of the Rift', minimumValue: 2 },
|
|
1982
|
-
[Activity.COLOSSEUM_GLORY]: { name: 'Colosseum Glory', minimumValue: 300 }
|
|
1988
|
+
[Activity.COLOSSEUM_GLORY]: { name: 'Colosseum Glory', minimumValue: 300 },
|
|
1989
|
+
[Activity.COLLECTIONS_LOGGED]: { name: 'Collection Logs', minimumValue: 500 }
|
|
1983
1990
|
}, props => (Object.assign(Object.assign({}, props), { type: MetricType.ACTIVITY, measure: MetricMeasure.SCORE, minimumValue: 'minimumValue' in props ? props.minimumValue : 1 })));
|
|
1984
1991
|
const ComputedMetricProps = mapValues({
|
|
1985
1992
|
[ComputedMetric.EHP]: { name: 'EHP' },
|
|
@@ -2200,6 +2207,7 @@ var EfficiencyAlgorithmType;
|
|
|
2200
2207
|
EfficiencyAlgorithmType["F2P_LVL3"] = "f2p_lvl3";
|
|
2201
2208
|
EfficiencyAlgorithmType["F2P_IRONMAN"] = "f2p_ironman";
|
|
2202
2209
|
EfficiencyAlgorithmType["F2P_LVL3_IRONMAN"] = "f2p_lvl3_ironman";
|
|
2210
|
+
EfficiencyAlgorithmType["DEF1"] = "def1";
|
|
2203
2211
|
})(EfficiencyAlgorithmType || (EfficiencyAlgorithmType = {}));
|
|
2204
2212
|
|
|
2205
2213
|
class EfficiencyClient extends BaseAPIClient {
|
|
@@ -2373,4 +2381,4 @@ class WOMClient extends BaseAPIClient {
|
|
|
2373
2381
|
}
|
|
2374
2382
|
}
|
|
2375
2383
|
|
|
2376
|
-
export { ACTIVITIES, Activity, ActivityType, BOSSES, Boss, CAPPED_MAX_TOTAL_XP, COMBAT_SKILLS, COMPETITION_STATUSES, COMPETITION_TYPES, COMPUTED_METRICS, COUNTRY_CODES, CompetitionCSVTableType, CompetitionStatus, CompetitionStatusProps, CompetitionType, CompetitionTypeProps, ComputedMetric, Country, CountryProps, EfficiencyAlgorithmType, F2P_BOSSES, GROUP_ROLES, GroupRole, GroupRoleProps, MAX_LEVEL, MAX_SKILL_EXP, MAX_VIRTUAL_LEVEL, MEMBER_SKILLS, METRICS, Metric, MetricMeasure, MetricProps, MetricType, NameChangeStatus, PERIODS, PLAYER_BUILDS, PLAYER_STATUSES, PLAYER_TYPES, PRIVELEGED_GROUP_ROLES, Period, PeriodProps, PlayerBuild, PlayerBuildProps, PlayerStatus, PlayerStatusProps, PlayerType, PlayerTypeProps, REAL_METRICS, REAL_SKILLS, SKILLS, SKILL_EXP_AT_99, Skill, WOMClient, findCountry, findCountryByCode, findCountryByName, findGroupRole, findMetric, findPeriod, findPlayerBuild, findPlayerType, formatNumber, getCombatLevel, getExpForLevel, getLevel, getMetricMeasure, getMetricName, getMetricRankKey, getMetricValueKey, getMinimumValue, getParentEfficiencyMetric, isActivity, isBoss, isCompetitionStatus, isCompetitionType, isComputedMetric, isCountry, isGroupRole, isMetric, isPeriod, isPlayerBuild, isPlayerStatus, isPlayerType, isSkill, padNumber, parsePeriodExpression, round };
|
|
2384
|
+
export { ACTIVITIES, Activity, ActivityType, BOSSES, Boss, CAPPED_MAX_TOTAL_XP, COMBAT_SKILLS, COMPETITION_STATUSES, COMPETITION_TYPES, COMPUTED_METRICS, COUNTRY_CODES, CompetitionCSVTableType, CompetitionStatus, CompetitionStatusProps, CompetitionType, CompetitionTypeProps, ComputedMetric, Country, CountryProps, EfficiencyAlgorithmType, F2P_BOSSES, GROUP_ROLES, GroupRole, GroupRoleProps, MAX_LEVEL, MAX_SKILL_EXP, MAX_VIRTUAL_LEVEL, MEMBER_SKILLS, METRICS, Metric, MetricMeasure, MetricProps, MetricType, NameChangeStatus, PERIODS, PLAYER_BUILDS, PLAYER_STATUSES, PLAYER_TYPES, PRIVELEGED_GROUP_ROLES, Period, PeriodProps, PlayerAnnotationType, PlayerBuild, PlayerBuildProps, PlayerStatus, PlayerStatusProps, PlayerType, PlayerTypeProps, REAL_METRICS, REAL_SKILLS, SKILLS, SKILL_EXP_AT_99, Skill, WOMClient, findCountry, findCountryByCode, findCountryByName, findGroupRole, findMetric, findPeriod, findPlayerBuild, findPlayerType, formatNumber, getCombatLevel, getExpForLevel, getLevel, getMetricMeasure, getMetricName, getMetricRankKey, getMetricValueKey, getMinimumValue, getParentEfficiencyMetric, isActivity, isBoss, isCompetitionStatus, isCompetitionType, isComputedMetric, isCountry, isGroupRole, isMetric, isPeriod, isPlayerBuild, isPlayerStatus, isPlayerType, isSkill, padNumber, parsePeriodExpression, round };
|
package/dist/es/index.mjs
CHANGED
|
@@ -550,7 +550,8 @@ const Activity = {
|
|
|
550
550
|
PVP_ARENA: 'pvp_arena',
|
|
551
551
|
SOUL_WARS_ZEAL: 'soul_wars_zeal',
|
|
552
552
|
GUARDIANS_OF_THE_RIFT: 'guardians_of_the_rift',
|
|
553
|
-
COLOSSEUM_GLORY: 'colosseum_glory'
|
|
553
|
+
COLOSSEUM_GLORY: 'colosseum_glory',
|
|
554
|
+
COLLECTIONS_LOGGED: 'collections_logged'
|
|
554
555
|
};
|
|
555
556
|
const Boss = {
|
|
556
557
|
ABYSSAL_SIRE: 'abyssal_sire',
|
|
@@ -642,6 +643,11 @@ const PlayerType = {
|
|
|
642
643
|
HARDCORE: 'hardcore',
|
|
643
644
|
ULTIMATE: 'ultimate'
|
|
644
645
|
};
|
|
646
|
+
const PlayerAnnotationType = {
|
|
647
|
+
BLACKLIST: 'blacklist',
|
|
648
|
+
GREYLIST: 'greylist',
|
|
649
|
+
FAKE_F2P: 'fake_f2p'
|
|
650
|
+
};
|
|
645
651
|
const PlayerBuild = {
|
|
646
652
|
MAIN: 'main',
|
|
647
653
|
F2P: 'f2p',
|
|
@@ -1979,7 +1985,8 @@ const ActivityProps = mapValues({
|
|
|
1979
1985
|
[Activity.PVP_ARENA]: { name: 'PvP Arena', minimumValue: 2525 },
|
|
1980
1986
|
[Activity.SOUL_WARS_ZEAL]: { name: 'Soul Wars Zeal', minimumValue: 200 },
|
|
1981
1987
|
[Activity.GUARDIANS_OF_THE_RIFT]: { name: 'Guardians of the Rift', minimumValue: 2 },
|
|
1982
|
-
[Activity.COLOSSEUM_GLORY]: { name: 'Colosseum Glory', minimumValue: 300 }
|
|
1988
|
+
[Activity.COLOSSEUM_GLORY]: { name: 'Colosseum Glory', minimumValue: 300 },
|
|
1989
|
+
[Activity.COLLECTIONS_LOGGED]: { name: 'Collection Logs', minimumValue: 500 }
|
|
1983
1990
|
}, props => (Object.assign(Object.assign({}, props), { type: MetricType.ACTIVITY, measure: MetricMeasure.SCORE, minimumValue: 'minimumValue' in props ? props.minimumValue : 1 })));
|
|
1984
1991
|
const ComputedMetricProps = mapValues({
|
|
1985
1992
|
[ComputedMetric.EHP]: { name: 'EHP' },
|
|
@@ -2200,6 +2207,7 @@ var EfficiencyAlgorithmType;
|
|
|
2200
2207
|
EfficiencyAlgorithmType["F2P_LVL3"] = "f2p_lvl3";
|
|
2201
2208
|
EfficiencyAlgorithmType["F2P_IRONMAN"] = "f2p_ironman";
|
|
2202
2209
|
EfficiencyAlgorithmType["F2P_LVL3_IRONMAN"] = "f2p_lvl3_ironman";
|
|
2210
|
+
EfficiencyAlgorithmType["DEF1"] = "def1";
|
|
2203
2211
|
})(EfficiencyAlgorithmType || (EfficiencyAlgorithmType = {}));
|
|
2204
2212
|
|
|
2205
2213
|
class EfficiencyClient extends BaseAPIClient {
|
|
@@ -2373,4 +2381,4 @@ class WOMClient extends BaseAPIClient {
|
|
|
2373
2381
|
}
|
|
2374
2382
|
}
|
|
2375
2383
|
|
|
2376
|
-
export { ACTIVITIES, Activity, ActivityType, BOSSES, Boss, CAPPED_MAX_TOTAL_XP, COMBAT_SKILLS, COMPETITION_STATUSES, COMPETITION_TYPES, COMPUTED_METRICS, COUNTRY_CODES, CompetitionCSVTableType, CompetitionStatus, CompetitionStatusProps, CompetitionType, CompetitionTypeProps, ComputedMetric, Country, CountryProps, EfficiencyAlgorithmType, F2P_BOSSES, GROUP_ROLES, GroupRole, GroupRoleProps, MAX_LEVEL, MAX_SKILL_EXP, MAX_VIRTUAL_LEVEL, MEMBER_SKILLS, METRICS, Metric, MetricMeasure, MetricProps, MetricType, NameChangeStatus, PERIODS, PLAYER_BUILDS, PLAYER_STATUSES, PLAYER_TYPES, PRIVELEGED_GROUP_ROLES, Period, PeriodProps, PlayerBuild, PlayerBuildProps, PlayerStatus, PlayerStatusProps, PlayerType, PlayerTypeProps, REAL_METRICS, REAL_SKILLS, SKILLS, SKILL_EXP_AT_99, Skill, WOMClient, findCountry, findCountryByCode, findCountryByName, findGroupRole, findMetric, findPeriod, findPlayerBuild, findPlayerType, formatNumber, getCombatLevel, getExpForLevel, getLevel, getMetricMeasure, getMetricName, getMetricRankKey, getMetricValueKey, getMinimumValue, getParentEfficiencyMetric, isActivity, isBoss, isCompetitionStatus, isCompetitionType, isComputedMetric, isCountry, isGroupRole, isMetric, isPeriod, isPlayerBuild, isPlayerStatus, isPlayerType, isSkill, padNumber, parsePeriodExpression, round };
|
|
2384
|
+
export { ACTIVITIES, Activity, ActivityType, BOSSES, Boss, CAPPED_MAX_TOTAL_XP, COMBAT_SKILLS, COMPETITION_STATUSES, COMPETITION_TYPES, COMPUTED_METRICS, COUNTRY_CODES, CompetitionCSVTableType, CompetitionStatus, CompetitionStatusProps, CompetitionType, CompetitionTypeProps, ComputedMetric, Country, CountryProps, EfficiencyAlgorithmType, F2P_BOSSES, GROUP_ROLES, GroupRole, GroupRoleProps, MAX_LEVEL, MAX_SKILL_EXP, MAX_VIRTUAL_LEVEL, MEMBER_SKILLS, METRICS, Metric, MetricMeasure, MetricProps, MetricType, NameChangeStatus, PERIODS, PLAYER_BUILDS, PLAYER_STATUSES, PLAYER_TYPES, PRIVELEGED_GROUP_ROLES, Period, PeriodProps, PlayerAnnotationType, PlayerBuild, PlayerBuildProps, PlayerStatus, PlayerStatusProps, PlayerType, PlayerTypeProps, REAL_METRICS, REAL_SKILLS, SKILLS, SKILL_EXP_AT_99, Skill, WOMClient, findCountry, findCountryByCode, findCountryByName, findGroupRole, findMetric, findPeriod, findPlayerBuild, findPlayerType, formatNumber, getCombatLevel, getExpForLevel, getLevel, getMetricMeasure, getMetricName, getMetricRankKey, getMetricValueKey, getMinimumValue, getParentEfficiencyMetric, isActivity, isBoss, isCompetitionStatus, isCompetitionType, isComputedMetric, isCountry, isGroupRole, isMetric, isPeriod, isPlayerBuild, isPlayerStatus, isPlayerType, isSkill, padNumber, parsePeriodExpression, round };
|
package/dist/index.d.ts
CHANGED
|
@@ -424,6 +424,7 @@ declare const Activity: {
|
|
|
424
424
|
readonly SOUL_WARS_ZEAL: "soul_wars_zeal";
|
|
425
425
|
readonly GUARDIANS_OF_THE_RIFT: "guardians_of_the_rift";
|
|
426
426
|
readonly COLOSSEUM_GLORY: "colosseum_glory";
|
|
427
|
+
readonly COLLECTIONS_LOGGED: "collections_logged";
|
|
427
428
|
};
|
|
428
429
|
type Activity = (typeof Activity)[keyof typeof Activity];
|
|
429
430
|
declare const Boss: {
|
|
@@ -580,6 +581,7 @@ declare const Metric: {
|
|
|
580
581
|
readonly SOUL_WARS_ZEAL: "soul_wars_zeal";
|
|
581
582
|
readonly GUARDIANS_OF_THE_RIFT: "guardians_of_the_rift";
|
|
582
583
|
readonly COLOSSEUM_GLORY: "colosseum_glory";
|
|
584
|
+
readonly COLLECTIONS_LOGGED: "collections_logged";
|
|
583
585
|
readonly OVERALL: "overall";
|
|
584
586
|
readonly ATTACK: "attack";
|
|
585
587
|
readonly DEFENCE: "defence";
|
|
@@ -628,6 +630,12 @@ declare const PlayerType: {
|
|
|
628
630
|
readonly ULTIMATE: "ultimate";
|
|
629
631
|
};
|
|
630
632
|
type PlayerType = (typeof PlayerType)[keyof typeof PlayerType];
|
|
633
|
+
declare const PlayerAnnotationType: {
|
|
634
|
+
readonly BLACKLIST: "blacklist";
|
|
635
|
+
readonly GREYLIST: "greylist";
|
|
636
|
+
readonly FAKE_F2P: "fake_f2p";
|
|
637
|
+
};
|
|
638
|
+
type PlayerAnnotationType = (typeof PlayerAnnotationType)[keyof typeof PlayerAnnotationType];
|
|
631
639
|
declare const PlayerBuild: {
|
|
632
640
|
readonly MAIN: "main";
|
|
633
641
|
readonly F2P: "f2p";
|
|
@@ -1440,7 +1448,8 @@ declare enum EfficiencyAlgorithmType {
|
|
|
1440
1448
|
F2P = "f2p",
|
|
1441
1449
|
F2P_LVL3 = "f2p_lvl3",
|
|
1442
1450
|
F2P_IRONMAN = "f2p_ironman",
|
|
1443
|
-
F2P_LVL3_IRONMAN = "f2p_lvl3_ironman"
|
|
1451
|
+
F2P_LVL3_IRONMAN = "f2p_lvl3_ironman",
|
|
1452
|
+
DEF1 = "def1"
|
|
1444
1453
|
}
|
|
1445
1454
|
interface SkillMetaMethod {
|
|
1446
1455
|
rate: number;
|
|
@@ -1651,6 +1660,7 @@ declare const MetricProps: {
|
|
|
1651
1660
|
readonly soul_wars_zeal: ActivityProperties;
|
|
1652
1661
|
readonly guardians_of_the_rift: ActivityProperties;
|
|
1653
1662
|
readonly colosseum_glory: ActivityProperties;
|
|
1663
|
+
readonly collections_logged: ActivityProperties;
|
|
1654
1664
|
readonly abyssal_sire: BossProperties;
|
|
1655
1665
|
readonly alchemical_hydra: BossProperties;
|
|
1656
1666
|
readonly amoxliatl: BossProperties;
|
|
@@ -2261,4 +2271,4 @@ declare class WOMClient extends BaseAPIClient {
|
|
|
2261
2271
|
constructor(options?: WOMClientOptions);
|
|
2262
2272
|
}
|
|
2263
2273
|
|
|
2264
|
-
export { ACTIVITIES, type Achievement, type AchievementDefinition, type AchievementProgress, type AchievementTemplate, Activity, type ActivityDelta, ActivityType, type ActivityValue, type AssertPlayerTypeResponse, BOSSES, type Bonus, Boss, type BossDelta, type BossMetaConfig, type BossValue, CAPPED_MAX_TOTAL_XP, COMBAT_SKILLS, COMPETITION_STATUSES, COMPETITION_TYPES, COMPUTED_METRICS, COUNTRY_CODES, type ChangeMemberRolePayload, CompetitionCSVTableType, type CompetitionDetails, type CompetitionDetailsCSVParams, type CompetitionListItem, CompetitionStatus, CompetitionStatusProps, CompetitionType, CompetitionTypeProps, type CompetitionWithParticipations, type CompetitionsSearchFilter, ComputedMetric, type ComputedMetricDelta, type ComputedMetricValue, Country, type CountryDetails, CountryProps, type CreateCompetitionPayload, type CreateCompetitionResponse, type CreateGroupPayload, type CreateGroupResponse, type DeltaGroupLeaderboardEntry, type DeltaLeaderboardEntry, type DeltaLeaderboardFilter, type DenyContext, type EditCompetitionPayload, type EditGroupPayload, EfficiencyAlgorithmType, type EfficiencyAlgorithmTypeUnion, type EfficiencyLeaderboardsFilter, type ExtendedAchievement, type ExtendedAchievementWithPlayer, F2P_BOSSES, type FlaggedPlayerReviewContext, type FormattedSnapshot, GROUP_ROLES, type GenericCountMessageResponse, type GenericMessageResponse, type GetGroupGainsFilter, type GetPlayerGainsResponse, type Group, type GroupDetails, type GroupHiscoresActivityItem, type GroupHiscoresBossItem, type GroupHiscoresComputedMetricItem, type GroupHiscoresEntry, type GroupHiscoresSkillItem, type GroupListItem, type GroupMemberFragment, type GroupRecordsFilter, GroupRole, GroupRoleProps, type GroupStatistics, MAX_LEVEL, MAX_SKILL_EXP, MAX_VIRTUAL_LEVEL, MEMBER_SKILLS, METRICS, type MapOf, type MeasuredDeltaProgress, type MemberActivityWithPlayer, type MemberInput, type MemberJoinedEvent, type MemberLeftEvent, type MemberRoleChangeEvent, type MembershipWithGroup, type MembershipWithPlayer, Metric, type MetricLeaders, MetricMeasure, MetricProps, MetricType, type MetricValueKey, type NameChange, type NameChangeDetails, NameChangeStatus, type NameChangeWithPlayer, type NameChangesSearchFilter, PERIODS, PLAYER_BUILDS, PLAYER_STATUSES, PLAYER_TYPES, PRIVELEGED_GROUP_ROLES, type ParticipationWithCompetition, type ParticipationWithCompetitionAndStandings, type ParticipationWithPlayer, type ParticipationWithPlayerAndProgress, Period, PeriodProps, type Player, type PlayerArchiveWithPlayer, PlayerBuild, PlayerBuildProps, type PlayerCompetitionStandingsFilter, type PlayerCompetitionsFilter, type PlayerDeltasMap, type PlayerDetails, type PlayerRecordsFilter, PlayerStatus, PlayerStatusProps, PlayerType, PlayerTypeProps, REAL_METRICS, REAL_SKILLS, type Record, type RecordLeaderboardEntry, type RecordLeaderboardFilter, SKILLS, SKILL_EXP_AT_99, Skill, type SkillDelta, type SkillMetaConfig, type SkillMetaMethod, type SkillValue, type SkipContext, type Snapshot, type SnapshotFragment, type Team, type TimeRangeFilter, type Top5ProgressResult, WOMClient, findCountry, findCountryByCode, findCountryByName, findGroupRole, findMetric, findPeriod, findPlayerBuild, findPlayerType, formatNumber, getCombatLevel, getExpForLevel, getLevel, getMetricMeasure, getMetricName, getMetricRankKey, getMetricValueKey, getMinimumValue, getParentEfficiencyMetric, isActivity, isBoss, isCompetitionStatus, isCompetitionType, isComputedMetric, isCountry, isGroupRole, isMetric, isPeriod, isPlayerBuild, isPlayerStatus, isPlayerType, isSkill, padNumber, parsePeriodExpression, round };
|
|
2274
|
+
export { ACTIVITIES, type Achievement, type AchievementDefinition, type AchievementProgress, type AchievementTemplate, Activity, type ActivityDelta, ActivityType, type ActivityValue, type AssertPlayerTypeResponse, BOSSES, type Bonus, Boss, type BossDelta, type BossMetaConfig, type BossValue, CAPPED_MAX_TOTAL_XP, COMBAT_SKILLS, COMPETITION_STATUSES, COMPETITION_TYPES, COMPUTED_METRICS, COUNTRY_CODES, type ChangeMemberRolePayload, CompetitionCSVTableType, type CompetitionDetails, type CompetitionDetailsCSVParams, type CompetitionListItem, CompetitionStatus, CompetitionStatusProps, CompetitionType, CompetitionTypeProps, type CompetitionWithParticipations, type CompetitionsSearchFilter, ComputedMetric, type ComputedMetricDelta, type ComputedMetricValue, Country, type CountryDetails, CountryProps, type CreateCompetitionPayload, type CreateCompetitionResponse, type CreateGroupPayload, type CreateGroupResponse, type DeltaGroupLeaderboardEntry, type DeltaLeaderboardEntry, type DeltaLeaderboardFilter, type DenyContext, type EditCompetitionPayload, type EditGroupPayload, EfficiencyAlgorithmType, type EfficiencyAlgorithmTypeUnion, type EfficiencyLeaderboardsFilter, type ExtendedAchievement, type ExtendedAchievementWithPlayer, F2P_BOSSES, type FlaggedPlayerReviewContext, type FormattedSnapshot, GROUP_ROLES, type GenericCountMessageResponse, type GenericMessageResponse, type GetGroupGainsFilter, type GetPlayerGainsResponse, type Group, type GroupDetails, type GroupHiscoresActivityItem, type GroupHiscoresBossItem, type GroupHiscoresComputedMetricItem, type GroupHiscoresEntry, type GroupHiscoresSkillItem, type GroupListItem, type GroupMemberFragment, type GroupRecordsFilter, GroupRole, GroupRoleProps, type GroupStatistics, MAX_LEVEL, MAX_SKILL_EXP, MAX_VIRTUAL_LEVEL, MEMBER_SKILLS, METRICS, type MapOf, type MeasuredDeltaProgress, type MemberActivityWithPlayer, type MemberInput, type MemberJoinedEvent, type MemberLeftEvent, type MemberRoleChangeEvent, type MembershipWithGroup, type MembershipWithPlayer, Metric, type MetricLeaders, MetricMeasure, MetricProps, MetricType, type MetricValueKey, type NameChange, type NameChangeDetails, NameChangeStatus, type NameChangeWithPlayer, type NameChangesSearchFilter, PERIODS, PLAYER_BUILDS, PLAYER_STATUSES, PLAYER_TYPES, PRIVELEGED_GROUP_ROLES, type ParticipationWithCompetition, type ParticipationWithCompetitionAndStandings, type ParticipationWithPlayer, type ParticipationWithPlayerAndProgress, Period, PeriodProps, type Player, PlayerAnnotationType, type PlayerArchiveWithPlayer, PlayerBuild, PlayerBuildProps, type PlayerCompetitionStandingsFilter, type PlayerCompetitionsFilter, type PlayerDeltasMap, type PlayerDetails, type PlayerRecordsFilter, PlayerStatus, PlayerStatusProps, PlayerType, PlayerTypeProps, REAL_METRICS, REAL_SKILLS, type Record, type RecordLeaderboardEntry, type RecordLeaderboardFilter, SKILLS, SKILL_EXP_AT_99, Skill, type SkillDelta, type SkillMetaConfig, type SkillMetaMethod, type SkillValue, type SkipContext, type Snapshot, type SnapshotFragment, type Team, type TimeRangeFilter, type Top5ProgressResult, WOMClient, findCountry, findCountryByCode, findCountryByName, findGroupRole, findMetric, findPeriod, findPlayerBuild, findPlayerType, formatNumber, getCombatLevel, getExpForLevel, getLevel, getMetricMeasure, getMetricName, getMetricRankKey, getMetricValueKey, getMinimumValue, getParentEfficiencyMetric, isActivity, isBoss, isCompetitionStatus, isCompetitionType, isComputedMetric, isCountry, isGroupRole, isMetric, isPeriod, isPlayerBuild, isPlayerStatus, isPlayerType, isSkill, padNumber, parsePeriodExpression, round };
|
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.7",
|
|
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",
|