pogo-masterfile-types 0.1.14 → 0.1.15

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 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.15] - 2026-05-11
6
+
7
+ Automated regeneration from upstream masterfile commit `d168ac4b7be72e48bd744f51fcb716918e7f687b`.
8
+
5
9
  ## [0.1.14] - 2026-05-10
6
10
 
7
11
  Automated regeneration from upstream masterfile commit `af379b35f08bf90feb0946be90fe1156d2858498`.
@@ -235,15 +235,12 @@ export type IapItemDisplayBundleCd20221 = S<
235
235
  "bundle.cd2022.1",
236
236
  {
237
237
  category: "IAP_CATEGORY_BUNDLE";
238
+ hidden: true;
238
239
  sale: true;
239
240
  sku: "bundle.cd2022.1";
240
- skuDisableTime: "2026-05-10T23:59:59";
241
- skuDisableTimeUtcMs: "1778457599000";
242
- skuEnableTime: "2022-10-13T12:00:00";
243
- skuEnableTimeUtcMs: "1665662400000";
244
241
  sortOrder: 1;
245
- spriteId: "bundle.general4.small.1";
246
- title: "bundle.general4.small.1_title";
242
+ spriteId: "bundle.halloween.small.1";
243
+ title: "bundle.halloween.small.1_title";
247
244
  }
248
245
  >
249
246
  >;
@@ -252,15 +249,12 @@ export type IapItemDisplayBundleCd20222 = S<
252
249
  "bundle.cd2022.2",
253
250
  {
254
251
  category: "IAP_CATEGORY_BUNDLE";
252
+ hidden: true;
255
253
  sale: true;
256
254
  sku: "bundle.cd2022.2";
257
- skuDisableTime: "2026-05-10T23:59:59";
258
- skuDisableTimeUtcMs: "1778457599000";
259
- skuEnableTime: "2022-10-13T12:00:00";
260
- skuEnableTimeUtcMs: "1665662400000";
261
255
  sortOrder: 2;
262
- spriteId: "bundle.general1.medium.1";
263
- title: "bundle.general1.medium.1_title";
256
+ spriteId: "bundle.halloween.adventure.1";
257
+ title: "bundle.halloween.adventure.1_title";
264
258
  }
265
259
  >
266
260
  >;
@@ -122,7 +122,6 @@ export interface IapItemDisplayData {
122
122
  | "2026-04-18T17:00:00"
123
123
  | "2026-04-25T17:00:00"
124
124
  | "2026-05-02T17:00:00"
125
- | "2026-05-10T23:59:59"
126
125
  | "2026-05-11T22:00:00"
127
126
  | "2026-06-04T10:00:00"
128
127
  | "2026-07-14T23:59:59";
@@ -165,7 +164,6 @@ export interface IapItemDisplayData {
165
164
  | "1776531600000"
166
165
  | "1777136400000"
167
166
  | "1777741200000"
168
- | "1778457599000"
169
167
  | "1778536800000"
170
168
  | "1780567200000"
171
169
  | "1784073599000";
@@ -69,7 +69,7 @@ export type ItemSettingsItemIncenseOrdinary = S<
69
69
  category: "ITEM_CATEGORY_INCENSE";
70
70
  dropTrainerLevel: 1;
71
71
  incense: {
72
- incenseLifetimeSeconds: 7200;
72
+ incenseLifetimeSeconds: 3600;
73
73
  };
74
74
  itemType: "ITEM_TYPE_INCENSE";
75
75
  }
@@ -2783,17 +2783,17 @@ export interface EventPassSettings {
2783
2783
  bonusBoxes: [
2784
2784
  {
2785
2785
  iconType: "SPAWN_UNKNOWN";
2786
- quantity: 5;
2786
+ quantity: 10;
2787
2787
  text: "quest_catch_pokemon_singular";
2788
2788
  },
2789
2789
  {
2790
2790
  iconType: "EGG";
2791
- quantity: 40;
2791
+ quantity: 80;
2792
2792
  text: "quest_hatch_egg_singular";
2793
2793
  },
2794
2794
  {
2795
2795
  iconType: "RAID";
2796
- quantity: 100;
2796
+ quantity: 200;
2797
2797
  text: "quest_win_raid_singular";
2798
2798
  },
2799
2799
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pogo-masterfile-types",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
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)",