pogo-masterfile-types 0.1.53 → 0.1.54
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 +8 -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/event-pass-settings/entries/index.d.ts +3 -3
- package/dist/item-expiration-settings/entries/index.d.ts +2 -2
- package/dist/item-expiration-settings/types.d.ts +2 -2
- package/dist/item-settings/entries/event-pass-point.d.ts +3 -7
- package/dist/item-settings/types.d.ts +2 -2
- package/dist/singletons/entries/settings.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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.54] - 2026-09-05
|
|
6
|
+
|
|
7
|
+
Automated regeneration from upstream masterfile commit `be51f47e8c81a159c5846082bc3eb85ab531aed2`.
|
|
8
|
+
|
|
9
|
+
### Added template IDs (1)
|
|
10
|
+
|
|
11
|
+
- BADGE_EVENT_0242
|
|
12
|
+
|
|
5
13
|
## [0.1.53] - 2026-09-04
|
|
6
14
|
|
|
7
15
|
Automated regeneration from upstream masterfile commit `859dfff254ff35d004560a76a2c488d135bff403`.
|
|
@@ -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", 132 entries.
|
|
2
2
|
|
|
3
3
|
import type { S } from "../../_utils";
|
|
4
4
|
import type { BadgeSettings } from "../types";
|
|
@@ -1235,6 +1235,20 @@ export type BadgeSettingsEvent0241 = S<
|
|
|
1235
1235
|
}
|
|
1236
1236
|
>
|
|
1237
1237
|
>;
|
|
1238
|
+
export type BadgeSettingsEvent0242 = S<
|
|
1239
|
+
BadgeSettings<
|
|
1240
|
+
"BADGE_EVENT_0242",
|
|
1241
|
+
{
|
|
1242
|
+
badgeRank: 2;
|
|
1243
|
+
badgeType: "BADGE_EVENT_0242";
|
|
1244
|
+
eventBadge: true;
|
|
1245
|
+
eventBadgeSettings: {
|
|
1246
|
+
obEventBadgeSettingsNumber6: 1;
|
|
1247
|
+
};
|
|
1248
|
+
targets: [100];
|
|
1249
|
+
}
|
|
1250
|
+
>
|
|
1251
|
+
>;
|
|
1238
1252
|
export type BadgeSettingsEvent0253 = S<
|
|
1239
1253
|
BadgeSettings<
|
|
1240
1254
|
"BADGE_EVENT_0253",
|
|
@@ -1927,6 +1941,7 @@ export type BadgeSettingsEventBadgeEventBadgeSettingsMasterfileEntry =
|
|
|
1927
1941
|
| BadgeSettingsEvent0236
|
|
1928
1942
|
| BadgeSettingsEvent0240
|
|
1929
1943
|
| BadgeSettingsEvent0241
|
|
1944
|
+
| BadgeSettingsEvent0242
|
|
1930
1945
|
| BadgeSettingsEvent0253
|
|
1931
1946
|
| BadgeSettingsEvent0259
|
|
1932
1947
|
| BadgeSettingsEvent0260
|
|
@@ -188,6 +188,7 @@ import type {
|
|
|
188
188
|
BadgeSettingsEvent0236,
|
|
189
189
|
BadgeSettingsEvent0240,
|
|
190
190
|
BadgeSettingsEvent0241,
|
|
191
|
+
BadgeSettingsEvent0242,
|
|
191
192
|
BadgeSettingsEvent0253,
|
|
192
193
|
BadgeSettingsEvent0259,
|
|
193
194
|
BadgeSettingsEvent0260,
|
|
@@ -1198,6 +1199,7 @@ export interface BadgeSettingsLookup {
|
|
|
1198
1199
|
BADGE_EVENT_0236: BadgeSettingsEvent0236;
|
|
1199
1200
|
BADGE_EVENT_0240: BadgeSettingsEvent0240;
|
|
1200
1201
|
BADGE_EVENT_0241: BadgeSettingsEvent0241;
|
|
1202
|
+
BADGE_EVENT_0242: BadgeSettingsEvent0242;
|
|
1201
1203
|
BADGE_EVENT_0253: BadgeSettingsEvent0253;
|
|
1202
1204
|
BADGE_EVENT_0259: BadgeSettingsEvent0259;
|
|
1203
1205
|
BADGE_EVENT_0260: BadgeSettingsEvent0260;
|
|
@@ -75,17 +75,17 @@ export type EventPassSettingsGofest2026Finale = S<
|
|
|
75
75
|
bonusBoxes: [
|
|
76
76
|
{
|
|
77
77
|
iconType: "SPAWN_UNKNOWN";
|
|
78
|
-
quantity:
|
|
78
|
+
quantity: 25;
|
|
79
79
|
text: "quest_catch_pokemon_singular";
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
iconType: "RAID";
|
|
83
|
-
quantity:
|
|
83
|
+
quantity: 250;
|
|
84
84
|
text: "quest_win_raid_singular";
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
87
|
iconType: "EGG";
|
|
88
|
-
quantity:
|
|
88
|
+
quantity: 500;
|
|
89
89
|
text: "quest_hatch_egg_singular";
|
|
90
90
|
},
|
|
91
91
|
];
|
|
@@ -56,8 +56,8 @@ export type ItemExpirationSettingsEventPassPointLiveOps02 = S<
|
|
|
56
56
|
ItemExpirationSettings<
|
|
57
57
|
"ITEM_EXPIRATION_ITEM_EVENT_PASS_POINT_LIVE_OPS_02",
|
|
58
58
|
{
|
|
59
|
-
emergencyExpirationTime: "2026-
|
|
60
|
-
expirationTime: "2026-
|
|
59
|
+
emergencyExpirationTime: "2026-09-27T10:00:00";
|
|
60
|
+
expirationTime: "2026-09-26T20:00:00";
|
|
61
61
|
}
|
|
62
62
|
>
|
|
63
63
|
>;
|
|
@@ -25,7 +25,6 @@ export interface ItemExpirationSettingsData {
|
|
|
25
25
|
emergencyExpirationTime?:
|
|
26
26
|
| "2025-11-16T18:00:00"
|
|
27
27
|
| "2026-05-09T10:00:00"
|
|
28
|
-
| "2026-06-06T10:00:00"
|
|
29
28
|
| "2026-06-13T10:00:00"
|
|
30
29
|
| "2026-06-20T10:00:00"
|
|
31
30
|
| "2026-07-04T10:00:00"
|
|
@@ -36,6 +35,7 @@ export interface ItemExpirationSettingsData {
|
|
|
36
35
|
| "2026-09-12T10:00:00"
|
|
37
36
|
| "2026-09-14T10:00:00"
|
|
38
37
|
| "2026-09-19T10:00:00"
|
|
38
|
+
| "2026-09-27T10:00:00"
|
|
39
39
|
| "2026-10-10T10:00:00";
|
|
40
40
|
expirationTime:
|
|
41
41
|
| "2025-11-16T18:00:00"
|
|
@@ -44,7 +44,6 @@ export interface ItemExpirationSettingsData {
|
|
|
44
44
|
| "2026-02-22T17:00:00"
|
|
45
45
|
| "2026-03-03T18:00:00"
|
|
46
46
|
| "2026-05-08T20:00:00"
|
|
47
|
-
| "2026-06-05T20:00:00"
|
|
48
47
|
| "2026-06-12T20:00:00"
|
|
49
48
|
| "2026-06-19T20:00:00"
|
|
50
49
|
| "2026-07-03T20:00:00"
|
|
@@ -59,6 +58,7 @@ export interface ItemExpirationSettingsData {
|
|
|
59
58
|
| "2026-09-10T10:00:00"
|
|
60
59
|
| "2026-09-13T23:59:00"
|
|
61
60
|
| "2026-09-18T20:00:00"
|
|
61
|
+
| "2026-09-26T20:00:00"
|
|
62
62
|
| "2026-10-08T10:00:00";
|
|
63
63
|
itemEnablementSettings?: {
|
|
64
64
|
enabledTimePeriods: [
|
|
@@ -33,9 +33,7 @@ export type ItemSettingsItemEventPassPointGoFest02 = S<
|
|
|
33
33
|
itemId: "ITEM_EVENT_PASS_POINT_GO_FEST_02";
|
|
34
34
|
itemType: "ITEM_TYPE_EVENT_PASS_POINT";
|
|
35
35
|
timePeriodCounters: {
|
|
36
|
-
playerActivity:
|
|
37
|
-
limit: 1000;
|
|
38
|
-
};
|
|
36
|
+
playerActivity: object;
|
|
39
37
|
};
|
|
40
38
|
}
|
|
41
39
|
>
|
|
@@ -125,7 +123,7 @@ export type ItemSettingsItemEventPassPointLiveOps02 = S<
|
|
|
125
123
|
{
|
|
126
124
|
category: "ITEM_CATEGORY_EVENT_PASS_POINT";
|
|
127
125
|
eventPassPoint: {
|
|
128
|
-
eventPassId: "
|
|
126
|
+
eventPassId: "EVENT_PASS_HORIZONS_FALL_2026_EVENT";
|
|
129
127
|
};
|
|
130
128
|
hideItemInInventory: true;
|
|
131
129
|
ignoreInventorySpace: true;
|
|
@@ -366,9 +364,7 @@ export type ItemSettingsItemEventPassPointMonthly03 = S<
|
|
|
366
364
|
itemId: "ITEM_EVENT_PASS_POINT_MONTHLY_03";
|
|
367
365
|
itemType: "ITEM_TYPE_EVENT_PASS_POINT";
|
|
368
366
|
timePeriodCounters: {
|
|
369
|
-
playerActivity:
|
|
370
|
-
limit: 250;
|
|
371
|
-
};
|
|
367
|
+
playerActivity: object;
|
|
372
368
|
};
|
|
373
369
|
}
|
|
374
370
|
>
|
|
@@ -92,7 +92,6 @@ export interface ItemSettingsData {
|
|
|
92
92
|
| "EVENT_PASS_AFTERPARTY2026_EVENT"
|
|
93
93
|
| "EVENT_PASS_AMER2026_EVENT"
|
|
94
94
|
| "EVENT_PASS_AUGUST2026_SEASON"
|
|
95
|
-
| "EVENT_PASS_BLANCHE2026_EVENT"
|
|
96
95
|
| "EVENT_PASS_EMEA2026_EVENT"
|
|
97
96
|
| "EVENT_PASS_FLYINGTAXI2026_EVENT"
|
|
98
97
|
| "EVENT_PASS_GOFEST2025_GLOBAL"
|
|
@@ -100,6 +99,7 @@ export interface ItemSettingsData {
|
|
|
100
99
|
| "EVENT_PASS_GOTOUR2026_GLOBAL"
|
|
101
100
|
| "EVENT_PASS_GOTOUR2026_IRL"
|
|
102
101
|
| "EVENT_PASS_GOWA_2025"
|
|
102
|
+
| "EVENT_PASS_HORIZONS_FALL_2026_EVENT"
|
|
103
103
|
| "EVENT_PASS_JULY2026_SEASON"
|
|
104
104
|
| "EVENT_PASS_MEGASQUADS2026_EVENT"
|
|
105
105
|
| "EVENT_PASS_SEPTEMBER2026_SEASON"
|
|
@@ -629,7 +629,7 @@ export interface ItemSettingsData {
|
|
|
629
629
|
};
|
|
630
630
|
timePeriodCounters?: {
|
|
631
631
|
playerActivity: {
|
|
632
|
-
limit
|
|
632
|
+
limit?: number;
|
|
633
633
|
};
|
|
634
634
|
};
|
|
635
635
|
xpBoost?: {
|
|
@@ -2790,7 +2790,7 @@ export interface EventMapRefreshSettings {
|
|
|
2790
2790
|
data: {
|
|
2791
2791
|
templateId: "EVENT_SERVER_SETTINGS";
|
|
2792
2792
|
eventMapRefreshSettings: {
|
|
2793
|
-
eventServerSettingsHash: "
|
|
2793
|
+
eventServerSettingsHash: "ae31e2a8c2b1befc04cf16c7f07b5b61939bab5d414efd053eaa060dc9673361";
|
|
2794
2794
|
};
|
|
2795
2795
|
};
|
|
2796
2796
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pogo-masterfile-types",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.54",
|
|
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)",
|