fgo-api-types 2025.7.28.1.37.25__tar.gz → 2025.7.30.10.15.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.
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/PKG-INFO +1 -1
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/gameenums.py +6 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/pyproject.toml +1 -1
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/LICENSE +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/README.md +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/__init__.py +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/base.py +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/basic.py +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/common.py +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/enums.py +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/nice.py +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/raw.py +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/rayshift.py +0 -0
- {fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/search.py +0 -0
{fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/gameenums.py
RENAMED
@@ -2849,6 +2849,8 @@ class CondType(IntEnum):
|
|
2849
2849
|
PLAYED_MOVIE = 259
|
2850
2850
|
NOT_PLAYED_MOVIE = 260
|
2851
2851
|
NOT_SHOP_GROUP_LIMIT_NUM = 263
|
2852
|
+
EQUIP_GET = 264
|
2853
|
+
NOT_EQUIP_GET = 265
|
2852
2854
|
|
2853
2855
|
|
2854
2856
|
class NiceCondType(StrEnum):
|
@@ -3108,6 +3110,8 @@ class NiceCondType(StrEnum):
|
|
3108
3110
|
playedMovie = "playedMovie"
|
3109
3111
|
notPlayedMovie = "notPlayedMovie"
|
3110
3112
|
notShopGroupLimitNum = "notShopGroupLimitNum"
|
3113
|
+
equipGet = "equipGet"
|
3114
|
+
notEquipGet = "notEquipGet"
|
3111
3115
|
|
3112
3116
|
|
3113
3117
|
COND_TYPE_NAME: dict[int, NiceCondType] = {
|
@@ -3365,6 +3369,8 @@ COND_TYPE_NAME: dict[int, NiceCondType] = {
|
|
3365
3369
|
259: NiceCondType.playedMovie,
|
3366
3370
|
260: NiceCondType.notPlayedMovie,
|
3367
3371
|
263: NiceCondType.notShopGroupLimitNum,
|
3372
|
+
264: NiceCondType.equipGet,
|
3373
|
+
265: NiceCondType.notEquipGet,
|
3368
3374
|
}
|
3369
3375
|
|
3370
3376
|
|
File without changes
|
File without changes
|
{fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/common.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/rayshift.py
RENAMED
File without changes
|
{fgo_api_types-2025.7.28.1.37.25 → fgo_api_types-2025.7.30.10.15.33}/fgo_api_types/search.py
RENAMED
File without changes
|