fgo-api-types 2025.7.30.22.24.21__tar.gz → 2025.8.3.9.54.3__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.30.22.24.21
3
+ Version: 2025.8.3.9.54.3
4
4
  Summary: Provide Pydantic types from FGO API
5
5
  Author: squaresmile
6
6
  Author-email: squaresmile@protonmail.com
@@ -386,6 +386,7 @@ class SvtClass(StrEnum):
386
386
  grandCaster = "grandCaster"
387
387
  grandAssassin = "grandAssassin"
388
388
  grandBerserker = "grandBerserker"
389
+ unBeast = "unBeast"
389
390
 
390
391
 
391
392
  CLASS_NAME: dict[int, SvtClass] = {
@@ -428,6 +429,7 @@ CLASS_NAME: dict[int, SvtClass] = {
428
429
  38: SvtClass.beastEresh,
429
430
  37: SvtClass.uOlgaMarieAqua,
430
431
  39: SvtClass.uOlgaMarieGrand,
432
+ 40: SvtClass.unBeast,
431
433
  97: SvtClass.unknown,
432
434
  # 98
433
435
  # 99
@@ -1062,6 +1064,7 @@ class Trait(StrEnum):
1062
1064
  mightyChain = "mightyChain"
1063
1065
  braveChain = "braveChain"
1064
1066
  chainError = "chainError"
1067
+ classBeastDraco = "classBeastDraco"
1065
1068
 
1066
1069
 
1067
1070
  TRAIT_NAME: dict[int, Trait] = {
@@ -1092,12 +1095,13 @@ TRAIT_NAME: dict[int, Trait] = {
1092
1095
  121: Trait.classBeastIV,
1093
1096
  122: Trait.classBeastILost,
1094
1097
  123: Trait.classUOlgaMarie,
1095
- 124: Trait.classBeast,
1098
+ 124: Trait.classBeastDraco,
1096
1099
  125: Trait.classBeastVI,
1097
1100
  126: Trait.classBeastVIBoss,
1098
1101
  127: Trait.classUOlgaMarieFlare,
1099
1102
  129: Trait.classBeastEresh,
1100
1103
  130: Trait.classUOlgaMarieGrand,
1104
+ 135: Trait.classBeast,
1101
1105
  200: Trait.attributeSky,
1102
1106
  201: Trait.attributeEarth,
1103
1107
  202: Trait.attributeHuman,
@@ -1117,7 +1117,7 @@ class MstGachaStoryAdjust(BaseModelORJson):
1117
1117
 
1118
1118
 
1119
1119
  class MstGachaSub(BaseModelORJson):
1120
- # script: dict[str, Any] | None = None
1120
+ script: dict[str, Any] | None = None
1121
1121
  gachaId: int
1122
1122
  id: int
1123
1123
  priority: int
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "fgo-api-types"
3
- version = "2025.07.30.22.24.21"
3
+ version = "2025.08.03.09.54.03"
4
4
  description = "Provide Pydantic types from FGO API"
5
5
  authors = ["squaresmile <squaresmile@protonmail.com>"]
6
6
  readme = "README.md"