fgo-api-types 2025.7.2.12.12.43__tar.gz → 2025.7.26.7.36.42__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.3
2
2
  Name: fgo-api-types
3
- Version: 2025.7.2.12.12.43
3
+ Version: 2025.7.26.7.36.42
4
4
  Summary: Provide Pydantic types from FGO API
5
5
  Author: squaresmile
6
6
  Author-email: squaresmile@protonmail.com
@@ -579,6 +579,7 @@ class FuncTargetType(IntEnum):
579
579
  HAND_COMMANDCARD_RANDOM_ONE = 31
580
580
  FIELD_ALL = 32
581
581
  NO_TARGET = 33
582
+ FIELD_RANDOM = 34
582
583
 
583
584
 
584
585
  class NiceFuncTargetType(StrEnum):
@@ -618,6 +619,7 @@ class NiceFuncTargetType(StrEnum):
618
619
  handCommandcardRandomOne = "handCommandcardRandomOne"
619
620
  fieldAll = "fieldAll"
620
621
  noTarget = "noTarget"
622
+ fieldRandom = "fieldRandom"
621
623
 
622
624
 
623
625
  FUNC_TARGETTYPE_NAME: dict[int, NiceFuncTargetType] = {
@@ -655,6 +657,7 @@ FUNC_TARGETTYPE_NAME: dict[int, NiceFuncTargetType] = {
655
657
  31: NiceFuncTargetType.handCommandcardRandomOne,
656
658
  32: NiceFuncTargetType.fieldAll,
657
659
  33: NiceFuncTargetType.noTarget,
660
+ 34: NiceFuncTargetType.fieldRandom,
658
661
  }
659
662
 
660
663
 
@@ -2105,6 +2108,9 @@ class DataValsType(IntEnum):
2105
2108
  IgnoreShiftWhiteFade = 233
2106
2109
  BackStepTargets = 234
2107
2110
  ReplacePositionTargets = 235
2111
+ ApplySupportSvt = 236
2112
+ ApplyHighestValueInFieldGroup = 237
2113
+ IsClassIconChangeSaveGrand = 238
2108
2114
 
2109
2115
 
2110
2116
  class ClassRelationOverwriteType(IntEnum):
@@ -648,8 +648,9 @@ class BaseVals(BaseModel):
648
648
  IgnoreShiftWhiteFade: int | None = None
649
649
  BackStepTargets: list[int] | None = None
650
650
  ReplacePositionTargets: list[int] | None = None
651
- # Extra dataval from SkillLvEntty.DIC_KEY_APPLY_SUPPORT_SVT
652
- ApplySupportSvt: Optional[int] = None
651
+ ApplySupportSvt: int | None = None
652
+ ApplyHighestValueInFieldGroup: int | None = None
653
+ IsClassIconChangeSaveGrand: int | None = None
653
654
  # These are not DataVals but guesses from SkillLvEntity and EventDropUpValInfo
654
655
  Individuality: Optional[int] = None
655
656
  EventId: Optional[int] = None
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "fgo-api-types"
3
- version = "2025.07.02.12.12.43"
3
+ version = "2025.07.26.07.36.42"
4
4
  description = "Provide Pydantic types from FGO API"
5
5
  authors = ["squaresmile <squaresmile@protonmail.com>"]
6
6
  readme = "README.md"