pogo-masterfile-types 0.1.8 → 0.1.9
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/CHANGELOG.md +4 -0
- package/dist/badge-settings/entries/event-badge-event-badge-settings.d.ts +16 -1
- package/dist/badge-settings/lookup-table.d.ts +2 -0
- package/dist/badge-settings/types.d.ts +1 -1
- package/dist/feature-gate/entries/index.d.ts +4 -0
- package/dist/feature-gate/types.d.ts +2 -1
- package/dist/singletons/entries/misc.d.ts +8 -0
- package/dist/singletons/entries/settings.d.ts +2 -2
- package/dist/singletons/lookup-table.d.ts +2 -0
- package/dist/singletons/types.d.ts +3 -0
- package/dist/vs-seeker-pokemon-rewards/types.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `pogo-masterfile-types` (npm) are recorded here. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## [0.1.9] - 2026-05-06
|
|
6
|
+
|
|
7
|
+
Automated regeneration from upstream masterfile commit `cf88a9bdee34929c6f2810b137ff19568b54b579`.
|
|
8
|
+
|
|
5
9
|
## [0.1.8] - 2026-05-05
|
|
6
10
|
|
|
7
11
|
Backfill release from merge commit `2d4d1d60969f40cddd18f247ffea6e1ae00db0e8`.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Generated from Pokémon GO masterfile — group "badgeSettings", split "event-badge-event-badge-settings",
|
|
1
|
+
// Generated from Pokémon GO masterfile — group "badgeSettings", split "event-badge-event-badge-settings", 73 entries.
|
|
2
2
|
|
|
3
3
|
import type { S } from "../../_utils";
|
|
4
4
|
import type { BadgeSettings } from "../types";
|
|
@@ -717,6 +717,20 @@ export type BadgeSettingsEvent0200 = S<
|
|
|
717
717
|
}
|
|
718
718
|
>
|
|
719
719
|
>;
|
|
720
|
+
export type BadgeSettingsEvent0205 = S<
|
|
721
|
+
BadgeSettings<
|
|
722
|
+
"BADGE_EVENT_0205",
|
|
723
|
+
{
|
|
724
|
+
badgeRank: 2;
|
|
725
|
+
badgeType: "BADGE_EVENT_0205";
|
|
726
|
+
eventBadge: true;
|
|
727
|
+
eventBadgeSettings: {
|
|
728
|
+
obEventBadgeSettingsNumber6: 1;
|
|
729
|
+
};
|
|
730
|
+
targets: [100];
|
|
731
|
+
}
|
|
732
|
+
>
|
|
733
|
+
>;
|
|
720
734
|
export type BadgeSettingsEvent0279 = S<
|
|
721
735
|
BadgeSettings<
|
|
722
736
|
"BADGE_EVENT_0279",
|
|
@@ -1064,6 +1078,7 @@ export type BadgeSettingsEventBadgeEventBadgeSettingsMasterfileEntry =
|
|
|
1064
1078
|
| BadgeSettingsEvent0194
|
|
1065
1079
|
| BadgeSettingsEvent0196
|
|
1066
1080
|
| BadgeSettingsEvent0200
|
|
1081
|
+
| BadgeSettingsEvent0205
|
|
1067
1082
|
| BadgeSettingsEvent0279
|
|
1068
1083
|
| BadgeSettingsEvent0280
|
|
1069
1084
|
| BadgeSettingsGoTour2026DeluxePass
|
|
@@ -150,6 +150,7 @@ import type {
|
|
|
150
150
|
BadgeSettingsEvent0194,
|
|
151
151
|
BadgeSettingsEvent0196,
|
|
152
152
|
BadgeSettingsEvent0200,
|
|
153
|
+
BadgeSettingsEvent0205,
|
|
153
154
|
BadgeSettingsEvent0279,
|
|
154
155
|
BadgeSettingsEvent0280,
|
|
155
156
|
BadgeSettingsEvolvedTotal,
|
|
@@ -1022,6 +1023,7 @@ export interface BadgeSettingsLookup {
|
|
|
1022
1023
|
BADGE_EVENT_0194: BadgeSettingsEvent0194;
|
|
1023
1024
|
BADGE_EVENT_0196: BadgeSettingsEvent0196;
|
|
1024
1025
|
BADGE_EVENT_0200: BadgeSettingsEvent0200;
|
|
1026
|
+
BADGE_EVENT_0205: BadgeSettingsEvent0205;
|
|
1025
1027
|
BADGE_EVENT_0279: BadgeSettingsEvent0279;
|
|
1026
1028
|
BADGE_EVENT_0280: BadgeSettingsEvent0280;
|
|
1027
1029
|
BADGE_EVOLVED_TOTAL: BadgeSettingsEvolvedTotal;
|
|
@@ -23,10 +23,11 @@ export interface FeatureGateData {
|
|
|
23
23
|
| "MEGA_HUD_SUB_FEATURE_GATE"
|
|
24
24
|
| "MEGA_HUD_TIMER_SUB_FEATURE_GATE"
|
|
25
25
|
| "MEGA_LEVEL_4_ENABLED_SUB_FEATURE_GATE"
|
|
26
|
+
| "MEGA_LEVEL_SPEEDUP_SUB_FEATURE_GATE"
|
|
26
27
|
| "MEGA_LEVELS_TUTORIAL_SUB_FEATURE_GATE"
|
|
27
28
|
| "PVP"
|
|
28
29
|
| "REMOTE_NC_HELP_TEXT_SUB_FEATURE_GATE";
|
|
29
|
-
rolloutPercentage
|
|
30
|
+
rolloutPercentage?: number;
|
|
30
31
|
status: number;
|
|
31
32
|
}>;
|
|
32
33
|
}
|
|
@@ -95,6 +95,13 @@ export interface BreadMoveMappings {
|
|
|
95
95
|
};
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
+
export interface ErrorReportingSettingsPreLogin {
|
|
99
|
+
templateId: "ERROR_REPORTING_SETTINGS_PRE_LOGIN";
|
|
100
|
+
data: {
|
|
101
|
+
templateId: "ERROR_REPORTING_SETTINGS_PRE_LOGIN";
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
|
|
98
105
|
export interface ItemCurrencyValues {
|
|
99
106
|
templateId: "ITEM_CURRENCY_VALUES";
|
|
100
107
|
data: {
|
|
@@ -420,6 +427,7 @@ export interface VnextBattleConfig {
|
|
|
420
427
|
export type SingletonsMiscMasterfileEntry =
|
|
421
428
|
| BelugaPokemonWhitelist
|
|
422
429
|
| BreadMoveMappings
|
|
430
|
+
| ErrorReportingSettingsPreLogin
|
|
423
431
|
| ItemCurrencyValues
|
|
424
432
|
| MainMenuChanges
|
|
425
433
|
| PlayerLevel
|
|
@@ -5760,8 +5760,8 @@ export interface VsSeekerClientSettings {
|
|
|
5760
5760
|
templateId: "VS_SEEKER_CLIENT_SETTINGS";
|
|
5761
5761
|
vsSeekerClientSettings: {
|
|
5762
5762
|
allowedVsSeekerLeagueTemplateId: [
|
|
5763
|
-
"
|
|
5764
|
-
"
|
|
5763
|
+
"COMBAT_LEAGUE_VS_SEEKER_ULTRA",
|
|
5764
|
+
"COMBAT_LEAGUE_VS_SEEKER_GREAT_JUNGLE",
|
|
5765
5765
|
"COMBAT_LEAGUE_VS_SEEKER_GREAT_PVP_NEXT_PREVIEW",
|
|
5766
5766
|
];
|
|
5767
5767
|
};
|
|
@@ -49,6 +49,7 @@ import type {
|
|
|
49
49
|
DeepLinkingSettings,
|
|
50
50
|
EggHatchImprovementsSettings,
|
|
51
51
|
EncounterSettings,
|
|
52
|
+
ErrorReportingSettingsPreLogin,
|
|
52
53
|
EventPlannerPopularNotificationSettings,
|
|
53
54
|
ExternalAddressableAssetsSettings,
|
|
54
55
|
FeatureUnlockLevelSettings,
|
|
@@ -190,6 +191,7 @@ export interface SingletonsLookup {
|
|
|
190
191
|
DEFAULT_BATTLE_INPUT_BUFFER_SETTINGS: BattleInputBufferSettings;
|
|
191
192
|
EGG_HATCH_IMPROVEMENTS_SETTINGS: EggHatchImprovementsSettings;
|
|
192
193
|
ENCOUNTER_SETTINGS: EncounterSettings;
|
|
194
|
+
ERROR_REPORTING_SETTINGS_PRE_LOGIN: ErrorReportingSettingsPreLogin;
|
|
193
195
|
EVENT_PLANNER_POPULAR_RAID_RSVP_SETTINGS: EventPlannerPopularNotificationSettings;
|
|
194
196
|
EVENT_PLANNER_SETTINGS: PlannerSettings;
|
|
195
197
|
EXTERNAL_ADDRESSABLE_ASSETS_SETTINGS: ExternalAddressableAssetsSettings;
|
|
@@ -50,6 +50,7 @@ import type {
|
|
|
50
50
|
DeepLinkingSettings,
|
|
51
51
|
EggHatchImprovementsSettings,
|
|
52
52
|
EncounterSettings,
|
|
53
|
+
ErrorReportingSettingsPreLogin,
|
|
53
54
|
EventPlannerPopularNotificationSettings,
|
|
54
55
|
ExternalAddressableAssetsSettings,
|
|
55
56
|
FeatureUnlockLevelSettings,
|
|
@@ -191,6 +192,7 @@ export type DailyAdventureIncenseSettingsType = W<DailyAdventureIncenseSettings>
|
|
|
191
192
|
export type DeepLinkingSettingsType = W<DeepLinkingSettings>;
|
|
192
193
|
export type EggHatchImprovementsSettingsType = W<EggHatchImprovementsSettings>;
|
|
193
194
|
export type EncounterSettingsType = W<EncounterSettings>;
|
|
195
|
+
export type ErrorReportingSettingsPreLoginType = W<ErrorReportingSettingsPreLogin>;
|
|
194
196
|
export type EventPlannerPopularNotificationSettingsType = W<EventPlannerPopularNotificationSettings>;
|
|
195
197
|
export type ExternalAddressableAssetsSettingsType = W<ExternalAddressableAssetsSettings>;
|
|
196
198
|
export type FeatureUnlockLevelSettingsType = W<FeatureUnlockLevelSettings>;
|
|
@@ -332,6 +334,7 @@ export type Singletons =
|
|
|
332
334
|
| DeepLinkingSettingsType
|
|
333
335
|
| EggHatchImprovementsSettingsType
|
|
334
336
|
| EncounterSettingsType
|
|
337
|
+
| ErrorReportingSettingsPreLoginType
|
|
335
338
|
| EventPlannerPopularNotificationSettingsType
|
|
336
339
|
| ExternalAddressableAssetsSettingsType
|
|
337
340
|
| FeatureUnlockLevelSettingsType
|
|
@@ -669,9 +669,9 @@ export interface VsSeekerPokemonRewards<TemplateID extends string = string, TDat
|
|
|
669
669
|
};
|
|
670
670
|
pokemon: {
|
|
671
671
|
pokemonDisplay: {
|
|
672
|
-
form: "
|
|
672
|
+
form: "NIHILEGO_NORMAL";
|
|
673
673
|
};
|
|
674
|
-
pokemonId: "
|
|
674
|
+
pokemonId: "NIHILEGO";
|
|
675
675
|
};
|
|
676
676
|
staminaIvOverride: {
|
|
677
677
|
range: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pogo-masterfile-types",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Generated TypeScript type definitions for the Pokémon GO masterfile, plus a typed `parseMasterfile` helper that dispatches each entry to its concrete payload type.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Hazel's Lab (https://github.com/Hazels-Lab)",
|