fgo-api-types 2025.10.5.3.57.8__tar.gz → 2025.10.8.11.46.6__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fgo-api-types
3
- Version: 2025.10.5.3.57.8
3
+ Version: 2025.10.8.11.46.6
4
4
  Summary: Provide Pydantic types from FGO API
5
5
  License-File: LICENSE
6
6
  Author: squaresmile
@@ -2140,6 +2140,7 @@ class DataValsType(IntEnum):
2140
2140
  IsClassIconChangeSaveGrand = 238
2141
2141
  ExecuteEffectId = 239
2142
2142
  PriorityUpHate = 240
2143
+ JudgeUseEveryTime = 241
2143
2144
 
2144
2145
 
2145
2146
  class ClassRelationOverwriteType(IntEnum):
@@ -6588,6 +6589,7 @@ class ItemTransitionType(IntEnum):
6588
6589
  SUMMON = 16
6589
6590
  REVIVAL_ITEM = 17
6590
6591
  BLANK_EARTH_SCENARIO = 18
6592
+ LOGIN_BONUS = 19
6591
6593
 
6592
6594
 
6593
6595
  class NiceItemTransitionType(StrEnum):
@@ -6612,6 +6614,7 @@ class NiceItemTransitionType(StrEnum):
6612
6614
  summon = "summon"
6613
6615
  revivalItem = "revivalItem"
6614
6616
  blankEarthScenario = "blankEarthScenario"
6617
+ loginBonus = "loginBonus"
6615
6618
 
6616
6619
 
6617
6620
  ITEM_TRANSITION_TYPE_NAME: dict[int, NiceItemTransitionType] = {
@@ -6634,6 +6637,7 @@ ITEM_TRANSITION_TYPE_NAME: dict[int, NiceItemTransitionType] = {
6634
6637
  16: NiceItemTransitionType.summon,
6635
6638
  17: NiceItemTransitionType.revivalItem,
6636
6639
  18: NiceItemTransitionType.blankEarthScenario,
6640
+ 19: NiceItemTransitionType.loginBonus,
6637
6641
  }
6638
6642
 
6639
6643
 
@@ -657,6 +657,7 @@ class BaseVals(BaseModel):
657
657
  IsClassIconChangeSaveGrand: int | None = None
658
658
  ExecuteEffectId: int | None = None
659
659
  PriorityUpHate: int | None = None
660
+ JudgeUseEveryTime: int | None = None
660
661
  # These are not DataVals but guesses from SkillLvEntity and EventDropUpValInfo
661
662
  Individuality: Optional[int] = None
662
663
  EventId: Optional[int] = None
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "fgo-api-types"
3
- version = "2025.10.05.03.57.08"
3
+ version = "2025.10.08.11.46.06"
4
4
  description = "Provide Pydantic types from FGO API"
5
5
  authors = ["squaresmile <squaresmile@protonmail.com>"]
6
6
  readme = "README.md"