pogo-masterfile-types 0.1.50 → 0.1.51

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,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.51] - 2026-09-02
6
+
7
+ Automated regeneration from upstream masterfile commit `47e77226b87bf2218da12ac2930d6af19e4f3d2b`.
8
+
9
+ ### Added template IDs (1)
10
+
11
+ - LOCATION_CARD_FEATURE_SETTINGS
12
+
5
13
  ## [0.1.50] - 2026-09-01
6
14
 
7
15
  Automated regeneration from upstream masterfile commit `c0a59b646b57fa36ff3edf842ba7234f3c56a20f`.
@@ -10507,6 +10507,12 @@ export type PokemonSettingsV0398PokemonStaraptor = S<
10507
10507
  {
10508
10508
  averageHeightM: 1.9;
10509
10509
  averageWeightKg: 50;
10510
+ buddyPortraitOffset: [0, 0, 300];
10511
+ camera: {
10512
+ cylinderGroundM: 0.3;
10513
+ cylinderHeightM: 3.6;
10514
+ cylinderRadiusM: 1;
10515
+ };
10510
10516
  stats: {
10511
10517
  baseAttack: 278;
10512
10518
  baseDefense: 207;
@@ -10612,6 +10618,12 @@ export type PokemonSettingsV0398PokemonStaraptorNormal = S<
10612
10618
  {
10613
10619
  averageHeightM: 1.9;
10614
10620
  averageWeightKg: 50;
10621
+ buddyPortraitOffset: [0, 0, 300];
10622
+ camera: {
10623
+ cylinderGroundM: 0.3;
10624
+ cylinderHeightM: 3.6;
10625
+ cylinderRadiusM: 1;
10626
+ };
10615
10627
  stats: {
10616
10628
  baseAttack: 278;
10617
10629
  baseDefense: 207;
@@ -3590,6 +3590,13 @@ export interface LanguageSelectorSettings {
3590
3590
  };
3591
3591
  }
3592
3592
 
3593
+ export interface LocationCardFeatureSettings {
3594
+ templateId: "LOCATION_CARD_FEATURE_SETTINGS";
3595
+ data: {
3596
+ templateId: "LOCATION_CARD_FEATURE_SETTINGS";
3597
+ };
3598
+ }
3599
+
3593
3600
  export interface LuckyPokemonSettings {
3594
3601
  templateId: "LUCKY_POKEMON_SETTINGS";
3595
3602
  data: {
@@ -6342,6 +6349,7 @@ export type SingletonsSettingsMasterfileEntry =
6342
6349
  | ItemInventoryUpdateSettings
6343
6350
  | JoinRaidViaFriendListSettings
6344
6351
  | LanguageSelectorSettings
6352
+ | LocationCardFeatureSettings
6345
6353
  | LuckyPokemonSettings
6346
6354
  | MapDisplaySettings
6347
6355
  | MapObjectsInteractionRangeSettings
@@ -73,6 +73,7 @@ import type {
73
73
  ItemInventoryUpdateSettings,
74
74
  JoinRaidViaFriendListSettings,
75
75
  LanguageSelectorSettings,
76
+ LocationCardFeatureSettings,
76
77
  LuckyPokemonSettings,
77
78
  MainMenuChanges,
78
79
  MapDisplaySettings,
@@ -220,6 +221,7 @@ export interface SingletonsLookup {
220
221
  ITEM_INVENTORY_UPDATE_SETTINGS: ItemInventoryUpdateSettings;
221
222
  JOIN_RAID_VIA_FRIEND_LIST_SETTINGS: JoinRaidViaFriendListSettings;
222
223
  LANGUAGE_SELECTOR_SETTINGS: LanguageSelectorSettings;
224
+ LOCATION_CARD_FEATURE_SETTINGS: LocationCardFeatureSettings;
223
225
  LUCKY_POKEMON_SETTINGS: LuckyPokemonSettings;
224
226
  MAIN_MENU_CAMERA_BUTTON_SETTINGS: MainMenuChanges;
225
227
  MAP_DISPLAY_SETTINGS: MapDisplaySettings;
@@ -74,6 +74,7 @@ import type {
74
74
  ItemInventoryUpdateSettings,
75
75
  JoinRaidViaFriendListSettings,
76
76
  LanguageSelectorSettings,
77
+ LocationCardFeatureSettings,
77
78
  LuckyPokemonSettings,
78
79
  MainMenuChanges,
79
80
  MapDisplaySettings,
@@ -220,6 +221,7 @@ export type ItemCurrencyValuesType = W<ItemCurrencyValues>;
220
221
  export type ItemInventoryUpdateSettingsType = W<ItemInventoryUpdateSettings>;
221
222
  export type JoinRaidViaFriendListSettingsType = W<JoinRaidViaFriendListSettings>;
222
223
  export type LanguageSelectorSettingsType = W<LanguageSelectorSettings>;
224
+ export type LocationCardFeatureSettingsType = W<LocationCardFeatureSettings>;
223
225
  export type LuckyPokemonSettingsType = W<LuckyPokemonSettings>;
224
226
  export type MainMenuChangesType = W<MainMenuChanges>;
225
227
  export type MapDisplaySettingsType = W<MapDisplaySettings>;
@@ -366,6 +368,7 @@ export type Singletons =
366
368
  | ItemInventoryUpdateSettingsType
367
369
  | JoinRaidViaFriendListSettingsType
368
370
  | LanguageSelectorSettingsType
371
+ | LocationCardFeatureSettingsType
369
372
  | LuckyPokemonSettingsType
370
373
  | MainMenuChangesType
371
374
  | MapDisplaySettingsType
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pogo-masterfile-types",
3
- "version": "0.1.50",
3
+ "version": "0.1.51",
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)",