fgo-api-types 2025.6.20.18.13.58__tar.gz → 2025.7.2.10.38.33__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.6.20.18.13.58
3
+ Version: 2025.7.2.10.38.33
4
4
  Summary: Provide Pydantic types from FGO API
5
5
  Author: squaresmile
6
6
  Author-email: squaresmile@protonmail.com
@@ -288,6 +288,7 @@ class FuncType(IntEnum):
288
288
  ADD_BATTLE_MISSION_VALUE = 155
289
289
  SET_BATTLE_MISSION_VALUE = 156
290
290
  CHANGE_ENEMY_STATUS_UI_TYPE = 157
291
+ SWAP_FIELD_POSITION = 158
291
292
 
292
293
 
293
294
  class NiceFuncType(StrEnum):
@@ -414,6 +415,7 @@ class NiceFuncType(StrEnum):
414
415
  addBattleMissionValue = "addBattleMissionValue"
415
416
  setBattleMissionValue = "setBattleMissionValue"
416
417
  changeEnemyStatusUiType = "changeEnemyStatusUiType"
418
+ swapFieldPosition = "swapFieldPosition"
417
419
 
418
420
 
419
421
  FUNC_TYPE_NAME: dict[int, NiceFuncType] = {
@@ -538,6 +540,7 @@ FUNC_TYPE_NAME: dict[int, NiceFuncType] = {
538
540
  155: NiceFuncType.addBattleMissionValue,
539
541
  156: NiceFuncType.setBattleMissionValue,
540
542
  157: NiceFuncType.changeEnemyStatusUiType,
543
+ 158: NiceFuncType.swapFieldPosition,
541
544
  }
542
545
 
543
546
 
@@ -655,6 +658,27 @@ FUNC_TARGETTYPE_NAME: dict[int, NiceFuncTargetType] = {
655
658
  }
656
659
 
657
660
 
661
+ class FuncApplyTargetType(IntEnum):
662
+ PLAYER = 1
663
+ ENEMY = 2
664
+ ALL = 3
665
+
666
+
667
+ class NiceFuncApplyTargetType(StrEnum):
668
+ """Function Apply Target Type Enum"""
669
+
670
+ player = "player"
671
+ enemy = "enemy"
672
+ all = "all"
673
+
674
+
675
+ FUNC_APPLY_TARGET_TYPE_NAME: dict[int, NiceFuncApplyTargetType] = {
676
+ 1: NiceFuncApplyTargetType.player,
677
+ 2: NiceFuncApplyTargetType.enemy,
678
+ 3: NiceFuncApplyTargetType.all,
679
+ }
680
+
681
+
658
682
  class BuffType(IntEnum):
659
683
  NONE = 0
660
684
  INVALID = -1
@@ -2079,6 +2103,8 @@ class DataValsType(IntEnum):
2079
2103
  ExecEvenCardSelectState = 231
2080
2104
  OverwriteShift = 232
2081
2105
  IgnoreShiftWhiteFade = 233
2106
+ BackStepTargets = 234
2107
+ ReplacePositionTargets = 235
2082
2108
 
2083
2109
 
2084
2110
  class ClassRelationOverwriteType(IntEnum):
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "fgo-api-types"
3
- version = "2025.06.20.18.13.58"
3
+ version = "2025.07.02.10.38.33"
4
4
  description = "Provide Pydantic types from FGO API"
5
5
  authors = ["squaresmile <squaresmile@protonmail.com>"]
6
6
  readme = "README.md"