pogo-masterfile-types 0.1.47 → 0.1.48

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.48] - 2026-08-29
6
+
7
+ Automated regeneration from upstream masterfile commit `a56aad7db8a6aa5bd5dd9ddd5e986949c518984f`.
8
+
5
9
  ## [0.1.47] - 2026-08-28
6
10
 
7
11
  Automated regeneration from upstream masterfile commit `469fb1798bab2886648e6909ee0a7f634ae3db12`.
@@ -226,9 +226,7 @@ export type ItemSettingsItemEventPassPointLiveOps07 = S<
226
226
  itemCap: 999999;
227
227
  itemType: "ITEM_TYPE_EVENT_PASS_POINT";
228
228
  timePeriodCounters: {
229
- playerActivity: {
230
- limit: 500;
231
- };
229
+ playerActivity: object;
232
230
  };
233
231
  }
234
232
  >
@@ -604,7 +604,7 @@ export interface ItemSettingsData {
604
604
  };
605
605
  timePeriodCounters?: {
606
606
  playerActivity: {
607
- limit: number;
607
+ limit?: number;
608
608
  };
609
609
  };
610
610
  xpBoost?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pogo-masterfile-types",
3
- "version": "0.1.47",
3
+ "version": "0.1.48",
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)",