@hasagi/types 14.24.3 → 15.1.1
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.
- package/dist/lcu-endpoints.d.ts +21 -3
- package/dist/lcu-events.d.ts +12 -6
- package/dist/lcu-types.d.ts +353 -18
- package/package.json +3 -3
- package/CODEOWNERS +0 -2
package/dist/lcu-endpoints.d.ts
CHANGED
|
@@ -910,6 +910,9 @@ export interface LCUEndpoints {
|
|
|
910
910
|
"/lol-event-hub/v1/events": {
|
|
911
911
|
get: { path: never, params: never, body: never, response: LCUTypes.LolEventHubActiveEventUIData[] }
|
|
912
912
|
},
|
|
913
|
+
"/lol-event-hub/v1/events/{eventId}/chapters": {
|
|
914
|
+
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubChaptersUIData }
|
|
915
|
+
},
|
|
913
916
|
"/lol-event-hub/v1/events/{eventId}/event-details-data": {
|
|
914
917
|
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubEventDetailsUIData }
|
|
915
918
|
},
|
|
@@ -922,6 +925,9 @@ export interface LCUEndpoints {
|
|
|
922
925
|
"/lol-event-hub/v1/events/{eventId}/narrative": {
|
|
923
926
|
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubNarrativeElement[] }
|
|
924
927
|
},
|
|
928
|
+
"/lol-event-hub/v1/events/{eventId}/objectives-banner": {
|
|
929
|
+
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubObjectivesBanner }
|
|
930
|
+
},
|
|
925
931
|
"/lol-event-hub/v1/events/{eventId}/pass-background-data": {
|
|
926
932
|
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubEventBackgroundUIData }
|
|
927
933
|
},
|
|
@@ -1003,6 +1009,9 @@ export interface LCUEndpoints {
|
|
|
1003
1009
|
"/lol-game-queues/v1/custom-non-default": {
|
|
1004
1010
|
get: { path: never, params: never, body: never, response: LCUTypes.LolGameQueuesQueueCustomGame }
|
|
1005
1011
|
},
|
|
1012
|
+
"/lol-game-queues/v1/customs-in-parties-enabled": {
|
|
1013
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1014
|
+
},
|
|
1006
1015
|
"/lol-game-queues/v1/game-type-config/{gameTypeConfigId}": {
|
|
1007
1016
|
get: { path: [gameTypeConfigId: number], params: never, body: never, response: LCUTypes.LolGameQueuesQueueGameTypeConfig }
|
|
1008
1017
|
},
|
|
@@ -1169,6 +1178,9 @@ export interface LCUEndpoints {
|
|
|
1169
1178
|
"/lol-inventory/v1/champSelectInventory": {
|
|
1170
1179
|
get: { path: never, params: never, body: never, response: string }
|
|
1171
1180
|
},
|
|
1181
|
+
"/lol-inventory/v1/cherryInventory": {
|
|
1182
|
+
get: { path: never, params: never, body: never, response: string }
|
|
1183
|
+
},
|
|
1172
1184
|
"/lol-inventory/v1/initial-configuration-complete": {
|
|
1173
1185
|
get: { path: never, params: never, body: never, response: boolean }
|
|
1174
1186
|
},
|
|
@@ -1658,6 +1670,9 @@ export interface LCUEndpoints {
|
|
|
1658
1670
|
"/lol-nacho/v1/get-active-store-catalog": {
|
|
1659
1671
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoShoppeCatalogEntry[] }
|
|
1660
1672
|
},
|
|
1673
|
+
"/lol-nacho/v1/get-active-stores": {
|
|
1674
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoStoresResponse }
|
|
1675
|
+
},
|
|
1661
1676
|
"/lol-nacho/v1/get-current-catalog-item": {
|
|
1662
1677
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoShoppeCatalogEntry }
|
|
1663
1678
|
},
|
|
@@ -2066,6 +2081,9 @@ export interface LCUEndpoints {
|
|
|
2066
2081
|
"/lol-seasons/v1/season/LOL/current-split-seasons": {
|
|
2067
2082
|
get: { path: never, params: never, body: never, response: number[] }
|
|
2068
2083
|
},
|
|
2084
|
+
"/lol-seasons/v1/season/name/{name}": {
|
|
2085
|
+
get: { path: [name: string], params: never, body: never, response: LCUTypes.LolSeasonsAllSeasonsProduct }
|
|
2086
|
+
},
|
|
2069
2087
|
"/lol-seasons/v1/season/product/{product}": {
|
|
2070
2088
|
get: { path: [product: string], params: never, body: never, response: LCUTypes.LolSeasonsAllSeasonsProduct }
|
|
2071
2089
|
},
|
|
@@ -3232,6 +3250,9 @@ export interface LCUEndpoints {
|
|
|
3232
3250
|
"/lol-nacho/v1/purchase/roll": {
|
|
3233
3251
|
post: { path: never, params: never, body: LCUTypes.LolNachoBlessingTokenPurchaseRequest, response: string }
|
|
3234
3252
|
},
|
|
3253
|
+
"/lol-nacho/v1/set-active-stores": {
|
|
3254
|
+
post: { path: never, params: never, body: LCUTypes.LolNachoSetActiveStoresRequest, response: void }
|
|
3255
|
+
},
|
|
3235
3256
|
"/lol-nacho/v1/set-current-catalog-item": {
|
|
3236
3257
|
post: { path: never, params: never, body: never, response: void }
|
|
3237
3258
|
},
|
|
@@ -3565,9 +3586,6 @@ export interface LCUEndpoints {
|
|
|
3565
3586
|
"/sanitizer/v1/sanitize": {
|
|
3566
3587
|
post: { path: never, params: never, body: LCUTypes.SanitizerSanitizeRequest, response: LCUTypes.SanitizerSanitizeResponse }
|
|
3567
3588
|
},
|
|
3568
|
-
"/services-api/config/v1/client-config": {
|
|
3569
|
-
post: { path: never, params: never, body: unknown, response: void }
|
|
3570
|
-
},
|
|
3571
3589
|
"/services-api/config/v2/client-config/{prefix}/{scope}": {
|
|
3572
3590
|
post: { path: [prefix: string, scope: string], params: never, body: unknown, response: void }
|
|
3573
3591
|
},
|
package/dist/lcu-events.d.ts
CHANGED
|
@@ -28,8 +28,10 @@ export interface LCUWebSocketEvents {
|
|
|
28
28
|
"OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
|
|
29
29
|
"OnJsonApiEvent_lol-activity-center_v1_ready": LCUTypes.PluginResourceEvent,
|
|
30
30
|
"OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
31
|
+
"OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
|
|
31
32
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
32
33
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
34
|
+
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
33
35
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
34
36
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
35
37
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -58,9 +60,7 @@ export interface LCUWebSocketEvents {
|
|
|
58
60
|
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
59
61
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
60
62
|
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
61
|
-
"OnJsonApiEvent_lol-clash_v1_all-tournaments": LCUTypes.PluginResourceEvent,
|
|
62
63
|
"OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
|
|
63
|
-
"OnJsonApiEvent_lol-clash_v1_currentTournamentIds": LCUTypes.PluginResourceEvent,
|
|
64
64
|
"OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
|
|
65
65
|
"OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
66
66
|
"OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
|
|
@@ -70,15 +70,11 @@ export interface LCUWebSocketEvents {
|
|
|
70
70
|
"OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
|
|
71
71
|
"OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
|
|
72
72
|
"OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
|
|
73
|
-
"OnJsonApiEvent_lol-clash_v1_tournament": LCUTypes.PluginResourceEvent,
|
|
74
|
-
"OnJsonApiEvent_lol-clash_v1_tournament-state-info": LCUTypes.PluginResourceEvent,
|
|
75
|
-
"OnJsonApiEvent_lol-clash_v1_tournament-summary": LCUTypes.PluginResourceEvent,
|
|
76
73
|
"OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
|
|
77
74
|
"OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
|
|
78
75
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
79
76
|
"OnJsonApiEvent_lol-client-config_v3_client-config": LCUTypes.PluginResourceEvent,
|
|
80
77
|
"OnJsonApiEvent_lol-collections_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
81
|
-
"OnJsonApiEvent_lol-content-targeting_v1_filters": LCUTypes.PluginResourceEvent,
|
|
82
78
|
"OnJsonApiEvent_lol-cosmetics_v1_favorites": LCUTypes.PluginResourceEvent,
|
|
83
79
|
"OnJsonApiEvent_lol-cosmetics_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
84
80
|
"OnJsonApiEvent_lol-drops_v1_ready": LCUTypes.PluginResourceEvent,
|
|
@@ -171,18 +167,23 @@ export interface LCUWebSocketEvents {
|
|
|
171
167
|
"OnJsonApiEvent_lol-matchmaking_v1_search": LCUTypes.PluginResourceEvent,
|
|
172
168
|
"OnJsonApiEvent_lol-missions_v1_missions": LCUTypes.PluginResourceEvent,
|
|
173
169
|
"OnJsonApiEvent_lol-missions_v1_series": LCUTypes.PluginResourceEvent,
|
|
170
|
+
"OnJsonApiEvent_lol-nacho_v1_banners": LCUTypes.PluginResourceEvent,
|
|
171
|
+
"OnJsonApiEvent_lol-nacho_v1_get-store-digests": LCUTypes.PluginResourceEvent,
|
|
174
172
|
"OnJsonApiEvent_lol-npe-tutorial-path_v1_rewards": LCUTypes.PluginResourceEvent,
|
|
175
173
|
"OnJsonApiEvent_lol-npe-tutorial-path_v1_settings": LCUTypes.PluginResourceEvent,
|
|
176
174
|
"OnJsonApiEvent_lol-npe-tutorial-path_v1_tutorials": LCUTypes.PluginResourceEvent,
|
|
175
|
+
"OnJsonApiEvent_lol-objectives_v1_objectives": LCUTypes.PluginResourceEvent,
|
|
177
176
|
"OnJsonApiEvent_lol-patch_v1_checking-enabled": LCUTypes.PluginResourceEvent,
|
|
178
177
|
"OnJsonApiEvent_lol-patch_v1_environment": LCUTypes.PluginResourceEvent,
|
|
179
178
|
"OnJsonApiEvent_lol-patch_v1_game-version": LCUTypes.PluginResourceEvent,
|
|
180
179
|
"OnJsonApiEvent_lol-patch_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
181
180
|
"OnJsonApiEvent_lol-patch_v1_products": LCUTypes.PluginResourceEvent,
|
|
182
181
|
"OnJsonApiEvent_lol-patch_v1_status": LCUTypes.PluginResourceEvent,
|
|
182
|
+
"OnJsonApiEvent_lol-perks_v1_currentpage": LCUTypes.PluginResourceEvent,
|
|
183
183
|
"OnJsonApiEvent_lol-perks_v1_inventory": LCUTypes.PluginResourceEvent,
|
|
184
184
|
"OnJsonApiEvent_lol-perks_v1_pages": LCUTypes.PluginResourceEvent,
|
|
185
185
|
"OnJsonApiEvent_lol-perks_v1_perks": LCUTypes.PluginResourceEvent,
|
|
186
|
+
"OnJsonApiEvent_lol-perks_v1_rune-recommender-auto-select": LCUTypes.PluginResourceEvent,
|
|
186
187
|
"OnJsonApiEvent_lol-perks_v1_settings": LCUTypes.PluginResourceEvent,
|
|
187
188
|
"OnJsonApiEvent_lol-perks_v1_styles": LCUTypes.PluginResourceEvent,
|
|
188
189
|
"OnJsonApiEvent_lol-platform-config_v1_initial-configuration-complete": LCUTypes.PluginResourceEvent,
|
|
@@ -426,6 +427,7 @@ export interface LCUWebSocketEvents {
|
|
|
426
427
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SNOWURF": LCUTypes.PluginResourceEvent,
|
|
427
428
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SR_6x6": LCUTypes.PluginResourceEvent,
|
|
428
429
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_STRAWBERRY": LCUTypes.PluginResourceEvent,
|
|
430
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SWIFTPLAY": LCUTypes.PluginResourceEvent,
|
|
429
431
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_TFT": LCUTypes.PluginResourceEvent,
|
|
430
432
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_TUTORIAL": LCUTypes.PluginResourceEvent,
|
|
431
433
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_TUTORIAL_MODULE_1": LCUTypes.PluginResourceEvent,
|
|
@@ -1222,6 +1224,7 @@ export interface LCUWebSocketEvents {
|
|
|
1222
1224
|
"OnJsonApiEvent_lol-rewards_v1_groups": LCUTypes.PluginResourceEvent,
|
|
1223
1225
|
"OnJsonApiEvent_lol-rso-auth_configuration_v3": LCUTypes.PluginResourceEvent,
|
|
1224
1226
|
"OnJsonApiEvent_lol-rso-auth_v1_authorization": LCUTypes.PluginResourceEvent,
|
|
1227
|
+
"OnJsonApiEvent_lol-service-status_v1_ticker-messages": LCUTypes.PluginResourceEvent,
|
|
1225
1228
|
"OnJsonApiEvent_lol-settings_v1_account": LCUTypes.PluginResourceEvent,
|
|
1226
1229
|
"OnJsonApiEvent_lol-settings_v1_local": LCUTypes.PluginResourceEvent,
|
|
1227
1230
|
"OnJsonApiEvent_lol-settings_v2_account": LCUTypes.PluginResourceEvent,
|
|
@@ -1240,6 +1243,7 @@ export interface LCUWebSocketEvents {
|
|
|
1240
1243
|
"OnJsonApiEvent_lol-summoner_v1_status": LCUTypes.PluginResourceEvent,
|
|
1241
1244
|
"OnJsonApiEvent_lol-summoner_v1_summoner-requests-ready": LCUTypes.PluginResourceEvent,
|
|
1242
1245
|
"OnJsonApiEvent_lol-tastes_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1246
|
+
"OnJsonApiEvent_lol-tft-pass_v1_battle-pass": LCUTypes.PluginResourceEvent,
|
|
1243
1247
|
"OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
|
|
1244
1248
|
"OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1245
1249
|
"OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,
|
|
@@ -1249,7 +1253,9 @@ export interface LCUWebSocketEvents {
|
|
|
1249
1253
|
"OnJsonApiEvent_lol-tft-team-planner_v1_set": LCUTypes.PluginResourceEvent,
|
|
1250
1254
|
"OnJsonApiEvent_lol-tft-team-planner_v1_team": LCUTypes.PluginResourceEvent,
|
|
1251
1255
|
"OnJsonApiEvent_lol-tft-team-planner_v2_reminders": LCUTypes.PluginResourceEvent,
|
|
1256
|
+
"OnJsonApiEvent_lol-tft-troves_v1_banners": LCUTypes.PluginResourceEvent,
|
|
1252
1257
|
"OnJsonApiEvent_lol-tft-troves_v1_config": LCUTypes.PluginResourceEvent,
|
|
1258
|
+
"OnJsonApiEvent_lol-tft-troves_v1_milestones": LCUTypes.PluginResourceEvent,
|
|
1253
1259
|
"OnJsonApiEvent_lol-tft-troves_v1_milestones-group-id": LCUTypes.PluginResourceEvent,
|
|
1254
1260
|
"OnJsonApiEvent_lol-tft_v1_tft": LCUTypes.PluginResourceEvent,
|
|
1255
1261
|
"OnJsonApiEvent_lol-vanguard_v1_service-session-check-failure": LCUTypes.PluginResourceEvent,
|
package/dist/lcu-types.d.ts
CHANGED
|
@@ -867,6 +867,11 @@ export interface GameQueuesLcdsGameQueueConfig {
|
|
|
867
867
|
removalFromGameAllowed: boolean
|
|
868
868
|
/** @format int32 */
|
|
869
869
|
removalFromGameDelayMinutes: number
|
|
870
|
+
custom: boolean
|
|
871
|
+
/** @format uint32 */
|
|
872
|
+
numberOfTeamsInLobby: number
|
|
873
|
+
/** @format uint32 */
|
|
874
|
+
maxLobbySpectatorCount: number
|
|
870
875
|
}
|
|
871
876
|
|
|
872
877
|
export interface GameflowLcdsGameDTO {
|
|
@@ -1645,6 +1650,8 @@ export interface LolCatalogCatalogPluginItem {
|
|
|
1645
1650
|
description: string
|
|
1646
1651
|
imagePath: string
|
|
1647
1652
|
tilePath: string
|
|
1653
|
+
loadScreenPath: string
|
|
1654
|
+
rarity: string
|
|
1648
1655
|
/** @format uint64 */
|
|
1649
1656
|
purchaseDate: number
|
|
1650
1657
|
/** @format uint64 */
|
|
@@ -1664,6 +1671,7 @@ export interface LolCatalogCatalogPluginItemAssets {
|
|
|
1664
1671
|
splashPath: string
|
|
1665
1672
|
iconPath: string
|
|
1666
1673
|
tilePath: string
|
|
1674
|
+
loadScreenPath: string
|
|
1667
1675
|
emblems: LolCatalogChampionSkinEmblem[]
|
|
1668
1676
|
colors: string[]
|
|
1669
1677
|
}
|
|
@@ -1734,6 +1742,8 @@ export interface LolCatalogGameDataChampionSkin {
|
|
|
1734
1742
|
emblems: LolCatalogChampionSkinEmblem[]
|
|
1735
1743
|
uncenteredSplashPath: string
|
|
1736
1744
|
tilePath: string
|
|
1745
|
+
loadScreenPath: string
|
|
1746
|
+
rarity: string
|
|
1737
1747
|
chromaPath: string
|
|
1738
1748
|
questSkinInfo?: LolCatalogSkinLineInfo
|
|
1739
1749
|
colors: string[]
|
|
@@ -1901,6 +1911,7 @@ export interface LolCatalogSkinLineInfo {
|
|
|
1901
1911
|
uncenteredSplashPath: string
|
|
1902
1912
|
collectionDescription: string
|
|
1903
1913
|
tiers: LolCatalogSkinLineTier[]
|
|
1914
|
+
productType: string
|
|
1904
1915
|
}
|
|
1905
1916
|
|
|
1906
1917
|
export interface LolCatalogSkinLineTier {
|
|
@@ -1917,6 +1928,11 @@ export interface LolCatalogSkinLineTier {
|
|
|
1917
1928
|
shortName: string
|
|
1918
1929
|
splashVideoPath?: string
|
|
1919
1930
|
collectionSplashVideoPath?: string
|
|
1931
|
+
ownership: LolCatalogSkinLineTierOwnership
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
export interface LolCatalogSkinLineTierOwnership {
|
|
1935
|
+
owned: boolean
|
|
1920
1936
|
}
|
|
1921
1937
|
|
|
1922
1938
|
export interface LolChallengesChallengeData {
|
|
@@ -6091,6 +6107,46 @@ export interface LolCosmeticsCosmeticsTFTPlaybookViewModel {
|
|
|
6091
6107
|
isDisabledInDoubleUp: boolean
|
|
6092
6108
|
}
|
|
6093
6109
|
|
|
6110
|
+
export interface LolCosmeticsCosmeticsTFTZoomSkin {
|
|
6111
|
+
contentId: string
|
|
6112
|
+
/** @format int32 */
|
|
6113
|
+
itemId: number
|
|
6114
|
+
name: string
|
|
6115
|
+
description: string
|
|
6116
|
+
loadoutsIcon: string
|
|
6117
|
+
owned: boolean
|
|
6118
|
+
selected: boolean
|
|
6119
|
+
loyalty: boolean
|
|
6120
|
+
"f2p": boolean
|
|
6121
|
+
/** @format uint32 */
|
|
6122
|
+
rarityValue: number
|
|
6123
|
+
purchaseDate: string
|
|
6124
|
+
/** @format uint32 */
|
|
6125
|
+
groupId: number
|
|
6126
|
+
groupName: string
|
|
6127
|
+
}
|
|
6128
|
+
|
|
6129
|
+
export interface LolCosmeticsCosmeticsTFTZoomSkinViewModel {
|
|
6130
|
+
contentId: string
|
|
6131
|
+
/** @format int32 */
|
|
6132
|
+
itemId: number
|
|
6133
|
+
name: string
|
|
6134
|
+
description: string
|
|
6135
|
+
loadoutsIcon: string
|
|
6136
|
+
owned: boolean
|
|
6137
|
+
selected: boolean
|
|
6138
|
+
favorited: boolean
|
|
6139
|
+
loyalty: boolean
|
|
6140
|
+
"f2p": boolean
|
|
6141
|
+
/** @format uint32 */
|
|
6142
|
+
rarityValue: number
|
|
6143
|
+
purchaseDate: string
|
|
6144
|
+
isRecentItem: boolean
|
|
6145
|
+
/** @format uint32 */
|
|
6146
|
+
groupId: number
|
|
6147
|
+
groupName: string
|
|
6148
|
+
}
|
|
6149
|
+
|
|
6094
6150
|
export interface LolCosmeticsFavoriteCosmetics {
|
|
6095
6151
|
companions: string[]
|
|
6096
6152
|
tft_map_skins: string[]
|
|
@@ -6169,6 +6225,20 @@ export interface LolCosmeticsGameDataTFTPlaybook {
|
|
|
6169
6225
|
isDisabledInDoubleUp: boolean
|
|
6170
6226
|
}
|
|
6171
6227
|
|
|
6228
|
+
export interface LolCosmeticsGameDataTFTZoomSkin {
|
|
6229
|
+
contentId: string
|
|
6230
|
+
/** @format int32 */
|
|
6231
|
+
itemId: number
|
|
6232
|
+
name: string
|
|
6233
|
+
description: string
|
|
6234
|
+
loadoutsIcon: string
|
|
6235
|
+
/** @format uint32 */
|
|
6236
|
+
groupId: number
|
|
6237
|
+
groupName: string
|
|
6238
|
+
/** @format uint32 */
|
|
6239
|
+
rarityValue: number
|
|
6240
|
+
}
|
|
6241
|
+
|
|
6172
6242
|
export interface LolCosmeticsLoadout {
|
|
6173
6243
|
id: string
|
|
6174
6244
|
name: string
|
|
@@ -6271,6 +6341,30 @@ export interface LolCosmeticsTFTSettingsResource {
|
|
|
6271
6341
|
schemaVersion: number
|
|
6272
6342
|
}
|
|
6273
6343
|
|
|
6344
|
+
export interface LolCosmeticsTFTZoomSkinFavoritesViewModel {
|
|
6345
|
+
favoriteItems: LolCosmeticsCosmeticsTFTZoomSkinViewModel[]
|
|
6346
|
+
}
|
|
6347
|
+
|
|
6348
|
+
export interface LolCosmeticsTFTZoomSkinGroupViewModel {
|
|
6349
|
+
groupName: string
|
|
6350
|
+
/** @format uint32 */
|
|
6351
|
+
groupId: number
|
|
6352
|
+
/** @format uint32 */
|
|
6353
|
+
numOwned: number
|
|
6354
|
+
/** @format uint32 */
|
|
6355
|
+
numAvailable: number
|
|
6356
|
+
/** @format int64 */
|
|
6357
|
+
purchaseDate: number
|
|
6358
|
+
items: LolCosmeticsCosmeticsTFTZoomSkinViewModel[]
|
|
6359
|
+
}
|
|
6360
|
+
|
|
6361
|
+
export interface LolCosmeticsTFTZoomSkinGroupedViewModel {
|
|
6362
|
+
selectedLoadoutItem: LolCosmeticsCosmeticsTFTZoomSkinViewModel
|
|
6363
|
+
/** @format int32 */
|
|
6364
|
+
defaultItemId: number
|
|
6365
|
+
groups: LolCosmeticsTFTZoomSkinGroupViewModel[]
|
|
6366
|
+
}
|
|
6367
|
+
|
|
6274
6368
|
export interface LolCosmeticsUserResource {
|
|
6275
6369
|
/** @format uint64 */
|
|
6276
6370
|
summonerId: number
|
|
@@ -7287,6 +7381,29 @@ export interface LolEventHubChampionSkinEmblemPosition {
|
|
|
7287
7381
|
horizontal: string
|
|
7288
7382
|
}
|
|
7289
7383
|
|
|
7384
|
+
export interface LolEventHubChapter {
|
|
7385
|
+
localizedTitle: string
|
|
7386
|
+
localizedDescription: string
|
|
7387
|
+
cardImage: string
|
|
7388
|
+
backgroundImage: string
|
|
7389
|
+
backgroundVideo: string
|
|
7390
|
+
foregroundImage: string
|
|
7391
|
+
/** @format uint16 */
|
|
7392
|
+
chapterStart: number
|
|
7393
|
+
/** @format uint16 */
|
|
7394
|
+
chapterEnd: number
|
|
7395
|
+
/** @format uint16 */
|
|
7396
|
+
chapterNumber: number
|
|
7397
|
+
/** @format uint16 */
|
|
7398
|
+
levelFocus: number
|
|
7399
|
+
}
|
|
7400
|
+
|
|
7401
|
+
export interface LolEventHubChaptersUIData {
|
|
7402
|
+
/** @format uint16 */
|
|
7403
|
+
currentChapter: number
|
|
7404
|
+
chapters: LolEventHubChapter[]
|
|
7405
|
+
}
|
|
7406
|
+
|
|
7290
7407
|
export interface LolEventHubClientCacheClearMessageDTO {
|
|
7291
7408
|
regions: string[]
|
|
7292
7409
|
clearAll: boolean
|
|
@@ -7375,7 +7492,7 @@ export interface LolEventHubEventHubError {
|
|
|
7375
7492
|
errorId: string
|
|
7376
7493
|
}
|
|
7377
7494
|
|
|
7378
|
-
export type LolEventHubEventHubType = "HallOfLegends" | "EventShop"
|
|
7495
|
+
export type LolEventHubEventHubType = "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
7379
7496
|
|
|
7380
7497
|
export interface LolEventHubEventInfoUIData {
|
|
7381
7498
|
eventId: string
|
|
@@ -7556,6 +7673,8 @@ export interface LolEventHubFSCRewards {
|
|
|
7556
7673
|
imageOverlay: string
|
|
7557
7674
|
title: string
|
|
7558
7675
|
subtitle: string
|
|
7676
|
+
rarity: string
|
|
7677
|
+
questSkinInfo: LolEventHubRewardsSkinLineInfo
|
|
7559
7678
|
}
|
|
7560
7679
|
|
|
7561
7680
|
export type LolEventHubGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
@@ -7928,6 +8047,12 @@ export interface LolEventHubNextRewardUIData {
|
|
|
7928
8047
|
level: string
|
|
7929
8048
|
}
|
|
7930
8049
|
|
|
8050
|
+
export interface LolEventHubObjectivesBanner {
|
|
8051
|
+
eventName: string
|
|
8052
|
+
currentChapter: LolEventHubChapter
|
|
8053
|
+
trackProgress: LolEventHubTrackProgressNextReward
|
|
8054
|
+
}
|
|
8055
|
+
|
|
7931
8056
|
export interface LolEventHubOffer {
|
|
7932
8057
|
id: string
|
|
7933
8058
|
localizedTitle: string
|
|
@@ -8255,10 +8380,46 @@ export interface LolEventHubRewardTrackXP {
|
|
|
8255
8380
|
iteration: number
|
|
8256
8381
|
}
|
|
8257
8382
|
|
|
8383
|
+
export interface LolEventHubRewardsCatalogPluginItem {
|
|
8384
|
+
/** @format int32 */
|
|
8385
|
+
itemId: number
|
|
8386
|
+
name: string
|
|
8387
|
+
itemInstanceId: string
|
|
8388
|
+
owned: boolean
|
|
8389
|
+
rarity: string
|
|
8390
|
+
active: boolean
|
|
8391
|
+
questSkinInfo: LolEventHubRewardsSkinLineInfo
|
|
8392
|
+
}
|
|
8393
|
+
|
|
8394
|
+
export interface LolEventHubRewardsCatalogPluginItemAssets {
|
|
8395
|
+
splashPath: string
|
|
8396
|
+
loadScreenPath: string
|
|
8397
|
+
}
|
|
8398
|
+
|
|
8399
|
+
export interface LolEventHubRewardsCatalogPluginItemWithDetails {
|
|
8400
|
+
item: LolEventHubRewardsCatalogPluginItem
|
|
8401
|
+
assets: LolEventHubRewardsCatalogPluginItemAssets
|
|
8402
|
+
}
|
|
8403
|
+
|
|
8258
8404
|
export interface LolEventHubRewardsConfig {
|
|
8259
8405
|
GrantFiltering: boolean
|
|
8260
8406
|
}
|
|
8261
8407
|
|
|
8408
|
+
export interface LolEventHubRewardsSkinLineInfo {
|
|
8409
|
+
productType: string
|
|
8410
|
+
tiers: LolEventHubRewardsSkinLineTier[]
|
|
8411
|
+
}
|
|
8412
|
+
|
|
8413
|
+
export interface LolEventHubRewardsSkinLineTier {
|
|
8414
|
+
/** @format int64 */
|
|
8415
|
+
stage: number
|
|
8416
|
+
ownership: LolEventHubRewardsSkinLineTierOwnership
|
|
8417
|
+
}
|
|
8418
|
+
|
|
8419
|
+
export interface LolEventHubRewardsSkinLineTierOwnership {
|
|
8420
|
+
owned: boolean
|
|
8421
|
+
}
|
|
8422
|
+
|
|
8262
8423
|
export interface LolEventHubRiotMessagingServiceMessage {
|
|
8263
8424
|
resource: string
|
|
8264
8425
|
service: string
|
|
@@ -8302,6 +8463,29 @@ export interface LolEventHubSale {
|
|
|
8302
8463
|
prices: LolEventHubItemCost[]
|
|
8303
8464
|
}
|
|
8304
8465
|
|
|
8466
|
+
export interface LolEventHubSeasonPass {
|
|
8467
|
+
eventId: string
|
|
8468
|
+
eventHubType: string
|
|
8469
|
+
localizedName: string
|
|
8470
|
+
navbarIconImage: string
|
|
8471
|
+
headerIconImage: string
|
|
8472
|
+
headerTitleImage: string
|
|
8473
|
+
startDate: string
|
|
8474
|
+
progressEndDate: string
|
|
8475
|
+
endDate: string
|
|
8476
|
+
helpModalImage: string
|
|
8477
|
+
eventPassBundlesCatalogEntry: LolEventHubCatalogEntry[]
|
|
8478
|
+
progressionPurchaseCatalogEntry: LolEventHubCatalogEntry
|
|
8479
|
+
rewardTrack: LolEventHubRewardTrack
|
|
8480
|
+
localizedUpsellTitle: string
|
|
8481
|
+
localizedUpsellTooltipTitle: string
|
|
8482
|
+
localizedUpsellTooltipDescription: string
|
|
8483
|
+
localizedUpsellButtonText: string
|
|
8484
|
+
upsellBackgroundImageUrl: string
|
|
8485
|
+
upsellTooltipBackgroundImageUrl: string
|
|
8486
|
+
chapters: LolEventHubChapter[]
|
|
8487
|
+
}
|
|
8488
|
+
|
|
8305
8489
|
export type LolEventHubSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
8306
8490
|
|
|
8307
8491
|
export interface LolEventHubSelectionRequestDTO {
|
|
@@ -8839,6 +9023,11 @@ export interface LolGameQueuesQueue {
|
|
|
8839
9023
|
/** @format uint8 */
|
|
8840
9024
|
gameSelectPriority: number
|
|
8841
9025
|
isSkillTreeQueue: boolean
|
|
9026
|
+
isCustom: boolean
|
|
9027
|
+
/** @format uint32 */
|
|
9028
|
+
numberOfTeamsInLobby: number
|
|
9029
|
+
/** @format uint32 */
|
|
9030
|
+
maxLobbySpectatorCount: number
|
|
8842
9031
|
}
|
|
8843
9032
|
|
|
8844
9033
|
export type LolGameQueuesQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -12574,6 +12763,8 @@ export interface LolLootFSCRewards {
|
|
|
12574
12763
|
imageOverlay: string
|
|
12575
12764
|
title: string
|
|
12576
12765
|
subtitle: string
|
|
12766
|
+
rarity: string
|
|
12767
|
+
questSkinInfo: LolLootRewardsSkinLineInfo
|
|
12577
12768
|
}
|
|
12578
12769
|
|
|
12579
12770
|
export interface LolLootGameDataNexusFinisher {
|
|
@@ -13172,10 +13363,46 @@ export type LolLootRewardStatus = "FAILED" | "FULFILLED" | "PENDING"
|
|
|
13172
13363
|
|
|
13173
13364
|
export type LolLootRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
13174
13365
|
|
|
13366
|
+
export interface LolLootRewardsCatalogPluginItem {
|
|
13367
|
+
/** @format int32 */
|
|
13368
|
+
itemId: number
|
|
13369
|
+
name: string
|
|
13370
|
+
itemInstanceId: string
|
|
13371
|
+
owned: boolean
|
|
13372
|
+
rarity: string
|
|
13373
|
+
active: boolean
|
|
13374
|
+
questSkinInfo: LolLootRewardsSkinLineInfo
|
|
13375
|
+
}
|
|
13376
|
+
|
|
13377
|
+
export interface LolLootRewardsCatalogPluginItemAssets {
|
|
13378
|
+
splashPath: string
|
|
13379
|
+
loadScreenPath: string
|
|
13380
|
+
}
|
|
13381
|
+
|
|
13382
|
+
export interface LolLootRewardsCatalogPluginItemWithDetails {
|
|
13383
|
+
item: LolLootRewardsCatalogPluginItem
|
|
13384
|
+
assets: LolLootRewardsCatalogPluginItemAssets
|
|
13385
|
+
}
|
|
13386
|
+
|
|
13175
13387
|
export interface LolLootRewardsConfig {
|
|
13176
13388
|
GrantFiltering: boolean
|
|
13177
13389
|
}
|
|
13178
13390
|
|
|
13391
|
+
export interface LolLootRewardsSkinLineInfo {
|
|
13392
|
+
productType: string
|
|
13393
|
+
tiers: LolLootRewardsSkinLineTier[]
|
|
13394
|
+
}
|
|
13395
|
+
|
|
13396
|
+
export interface LolLootRewardsSkinLineTier {
|
|
13397
|
+
/** @format int64 */
|
|
13398
|
+
stage: number
|
|
13399
|
+
ownership: LolLootRewardsSkinLineTierOwnership
|
|
13400
|
+
}
|
|
13401
|
+
|
|
13402
|
+
export interface LolLootRewardsSkinLineTierOwnership {
|
|
13403
|
+
owned: boolean
|
|
13404
|
+
}
|
|
13405
|
+
|
|
13179
13406
|
export type LolLootSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
13180
13407
|
|
|
13181
13408
|
export interface LolLootSelectionRequestDTO {
|
|
@@ -13662,13 +13889,13 @@ export interface LolMatchHistoryMatchHistoryEvent {
|
|
|
13662
13889
|
type: string
|
|
13663
13890
|
/** @format uint64 */
|
|
13664
13891
|
timestamp: number
|
|
13892
|
+
/** @format uint32 */
|
|
13893
|
+
itemId: number
|
|
13665
13894
|
/** @format uint16 */
|
|
13666
13895
|
participantId: number
|
|
13667
13896
|
/** @format uint16 */
|
|
13668
13897
|
teamId: number
|
|
13669
13898
|
/** @format uint16 */
|
|
13670
|
-
itemId: number
|
|
13671
|
-
/** @format uint16 */
|
|
13672
13899
|
killerId: number
|
|
13673
13900
|
/** @format uint16 */
|
|
13674
13901
|
victimId: number
|
|
@@ -14484,6 +14711,7 @@ export interface LolNachoBannerOddsInfo {
|
|
|
14484
14711
|
name: string
|
|
14485
14712
|
productId: string
|
|
14486
14713
|
rewardTables: LolNachoNachoRollRewardsTable[]
|
|
14714
|
+
endDateMilis: string
|
|
14487
14715
|
}
|
|
14488
14716
|
|
|
14489
14717
|
export interface LolNachoBlessingTokenPurchaseRequest {
|
|
@@ -14504,6 +14732,7 @@ export interface LolNachoCapDropsDropTableDisplayMetadata {
|
|
|
14504
14732
|
/** @format uint8 */
|
|
14505
14733
|
version: number
|
|
14506
14734
|
oddsTree: LolNachoDropsOddsTreeNodeDTO
|
|
14735
|
+
endDateMilis: string
|
|
14507
14736
|
}
|
|
14508
14737
|
|
|
14509
14738
|
export interface LolNachoClientConfigNachoBanners {
|
|
@@ -14529,6 +14758,13 @@ export interface LolNachoFinalPurchaseUnitDto {
|
|
|
14529
14758
|
}
|
|
14530
14759
|
|
|
14531
14760
|
export interface LolNachoFulfillmentDto {
|
|
14761
|
+
name: string
|
|
14762
|
+
itemTypeId: string
|
|
14763
|
+
itemId: string
|
|
14764
|
+
/** @format int64 */
|
|
14765
|
+
finalDelta: number
|
|
14766
|
+
/** @format int64 */
|
|
14767
|
+
delta: number
|
|
14532
14768
|
results: unknown
|
|
14533
14769
|
}
|
|
14534
14770
|
|
|
@@ -14554,9 +14790,7 @@ export interface LolNachoGameDataNachoBanner {
|
|
|
14554
14790
|
chaseCelebrationVo: LolNachoGameDataNachoBannerVo
|
|
14555
14791
|
hubIntroVo: LolNachoGameDataNachoBannerVo
|
|
14556
14792
|
rollVignette: LolNachoNachoVignette
|
|
14557
|
-
|
|
14558
|
-
rollCardTierTwo: LolNachoNachoRollCard
|
|
14559
|
-
rollCardTierThree: LolNachoNachoRollCard
|
|
14793
|
+
capCatalogStoreId: string
|
|
14560
14794
|
}
|
|
14561
14795
|
|
|
14562
14796
|
export interface LolNachoGameDataNachoBannerTable {
|
|
@@ -14638,9 +14872,6 @@ export interface LolNachoNachoBannersResponse {
|
|
|
14638
14872
|
chaseCelebrationVo: LolNachoGameDataNachoBannerVo
|
|
14639
14873
|
hubIntroVo: LolNachoGameDataNachoBannerVo
|
|
14640
14874
|
rollVignette: LolNachoNachoVignette
|
|
14641
|
-
rollCardTierOne: LolNachoNachoRollCard
|
|
14642
|
-
rollCardTierTwo: LolNachoNachoRollCard
|
|
14643
|
-
rollCardTierThree: LolNachoNachoRollCard
|
|
14644
14875
|
}
|
|
14645
14876
|
|
|
14646
14877
|
export interface LolNachoNachoPurchaseResponse {
|
|
@@ -14668,15 +14899,6 @@ export interface LolNachoNachoRewardData {
|
|
|
14668
14899
|
quantity: number
|
|
14669
14900
|
}
|
|
14670
14901
|
|
|
14671
|
-
export interface LolNachoNachoRollCard {
|
|
14672
|
-
cardPath: string
|
|
14673
|
-
cardBackPath: string
|
|
14674
|
-
cardWebmTopPath: string
|
|
14675
|
-
cardWebmBotPath: string
|
|
14676
|
-
cardWebmHoverPath: string
|
|
14677
|
-
cardWebmLoopPath: string
|
|
14678
|
-
}
|
|
14679
|
-
|
|
14680
14902
|
export interface LolNachoNachoRollRewardsTable {
|
|
14681
14903
|
/** @format float */
|
|
14682
14904
|
odds: number
|
|
@@ -14718,24 +14940,42 @@ export interface LolNachoPurchaseUnitDto {
|
|
|
14718
14940
|
fulfillment: LolNachoFulfillmentDto
|
|
14719
14941
|
}
|
|
14720
14942
|
|
|
14943
|
+
export interface LolNachoSetActiveStoresRequest {
|
|
14944
|
+
storeIds: string[]
|
|
14945
|
+
}
|
|
14946
|
+
|
|
14721
14947
|
export interface LolNachoShoppeCatalogEntry {
|
|
14722
14948
|
id: string
|
|
14723
14949
|
name: string
|
|
14724
14950
|
productId: string
|
|
14725
14951
|
purchaseUnits: LolNachoPurchaseUnitDto[]
|
|
14952
|
+
endTime: string
|
|
14726
14953
|
purchaseVisibility: string
|
|
14727
14954
|
refundRule: string
|
|
14728
14955
|
purchaseLimits: LolNachoVelocityLimitDeltaDto[]
|
|
14729
14956
|
}
|
|
14730
14957
|
|
|
14958
|
+
export interface LolNachoStore {
|
|
14959
|
+
id: string
|
|
14960
|
+
productId: string
|
|
14961
|
+
name: string
|
|
14962
|
+
catalogEntries: LolNachoShoppeCatalogEntry[]
|
|
14963
|
+
displayMetadata: unknown
|
|
14964
|
+
}
|
|
14965
|
+
|
|
14731
14966
|
export interface LolNachoStoreDigest {
|
|
14732
14967
|
id: string
|
|
14968
|
+
displayMetadata: unknown
|
|
14733
14969
|
}
|
|
14734
14970
|
|
|
14735
14971
|
export interface LolNachoStoreDigests {
|
|
14736
14972
|
digests: LolNachoStoreDigest[]
|
|
14737
14973
|
}
|
|
14738
14974
|
|
|
14975
|
+
export interface LolNachoStoresResponse {
|
|
14976
|
+
data: LolNachoStore[]
|
|
14977
|
+
}
|
|
14978
|
+
|
|
14739
14979
|
export interface LolNachoVelocityLimitDeltaDto {
|
|
14740
14980
|
ruleId: string
|
|
14741
14981
|
/** @format int64 */
|
|
@@ -18938,6 +19178,8 @@ export interface LolRewardTrackFSCRewards {
|
|
|
18938
19178
|
imageOverlay: string
|
|
18939
19179
|
title: string
|
|
18940
19180
|
subtitle: string
|
|
19181
|
+
rarity: string
|
|
19182
|
+
questSkinInfo: LolRewardTrackRewardsSkinLineInfo
|
|
18941
19183
|
}
|
|
18942
19184
|
|
|
18943
19185
|
export type LolRewardTrackGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
@@ -19150,10 +19392,46 @@ export interface LolRewardTrackRewardTrackXP {
|
|
|
19150
19392
|
iteration: number
|
|
19151
19393
|
}
|
|
19152
19394
|
|
|
19395
|
+
export interface LolRewardTrackRewardsCatalogPluginItem {
|
|
19396
|
+
/** @format int32 */
|
|
19397
|
+
itemId: number
|
|
19398
|
+
name: string
|
|
19399
|
+
itemInstanceId: string
|
|
19400
|
+
owned: boolean
|
|
19401
|
+
rarity: string
|
|
19402
|
+
active: boolean
|
|
19403
|
+
questSkinInfo: LolRewardTrackRewardsSkinLineInfo
|
|
19404
|
+
}
|
|
19405
|
+
|
|
19406
|
+
export interface LolRewardTrackRewardsCatalogPluginItemAssets {
|
|
19407
|
+
splashPath: string
|
|
19408
|
+
loadScreenPath: string
|
|
19409
|
+
}
|
|
19410
|
+
|
|
19411
|
+
export interface LolRewardTrackRewardsCatalogPluginItemWithDetails {
|
|
19412
|
+
item: LolRewardTrackRewardsCatalogPluginItem
|
|
19413
|
+
assets: LolRewardTrackRewardsCatalogPluginItemAssets
|
|
19414
|
+
}
|
|
19415
|
+
|
|
19153
19416
|
export interface LolRewardTrackRewardsConfig {
|
|
19154
19417
|
GrantFiltering: boolean
|
|
19155
19418
|
}
|
|
19156
19419
|
|
|
19420
|
+
export interface LolRewardTrackRewardsSkinLineInfo {
|
|
19421
|
+
productType: string
|
|
19422
|
+
tiers: LolRewardTrackRewardsSkinLineTier[]
|
|
19423
|
+
}
|
|
19424
|
+
|
|
19425
|
+
export interface LolRewardTrackRewardsSkinLineTier {
|
|
19426
|
+
/** @format int64 */
|
|
19427
|
+
stage: number
|
|
19428
|
+
ownership: LolRewardTrackRewardsSkinLineTierOwnership
|
|
19429
|
+
}
|
|
19430
|
+
|
|
19431
|
+
export interface LolRewardTrackRewardsSkinLineTierOwnership {
|
|
19432
|
+
owned: boolean
|
|
19433
|
+
}
|
|
19434
|
+
|
|
19157
19435
|
export type LolRewardTrackSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
19158
19436
|
|
|
19159
19437
|
export interface LolRewardTrackSelectionRequestDTO {
|
|
@@ -19268,6 +19546,8 @@ export interface LolRewardsFSCRewards {
|
|
|
19268
19546
|
imageOverlay: string
|
|
19269
19547
|
title: string
|
|
19270
19548
|
subtitle: string
|
|
19549
|
+
rarity: string
|
|
19550
|
+
questSkinInfo: LolRewardsRewardsSkinLineInfo
|
|
19271
19551
|
}
|
|
19272
19552
|
|
|
19273
19553
|
export type LolRewardsGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
@@ -19350,10 +19630,46 @@ export type LolRewardsRewardStatus = "FAILED" | "FULFILLED" | "PENDING"
|
|
|
19350
19630
|
|
|
19351
19631
|
export type LolRewardsRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
19352
19632
|
|
|
19633
|
+
export interface LolRewardsRewardsCatalogPluginItem {
|
|
19634
|
+
/** @format int32 */
|
|
19635
|
+
itemId: number
|
|
19636
|
+
name: string
|
|
19637
|
+
itemInstanceId: string
|
|
19638
|
+
owned: boolean
|
|
19639
|
+
rarity: string
|
|
19640
|
+
active: boolean
|
|
19641
|
+
questSkinInfo: LolRewardsRewardsSkinLineInfo
|
|
19642
|
+
}
|
|
19643
|
+
|
|
19644
|
+
export interface LolRewardsRewardsCatalogPluginItemAssets {
|
|
19645
|
+
splashPath: string
|
|
19646
|
+
loadScreenPath: string
|
|
19647
|
+
}
|
|
19648
|
+
|
|
19649
|
+
export interface LolRewardsRewardsCatalogPluginItemWithDetails {
|
|
19650
|
+
item: LolRewardsRewardsCatalogPluginItem
|
|
19651
|
+
assets: LolRewardsRewardsCatalogPluginItemAssets
|
|
19652
|
+
}
|
|
19653
|
+
|
|
19353
19654
|
export interface LolRewardsRewardsConfig {
|
|
19354
19655
|
GrantFiltering: boolean
|
|
19355
19656
|
}
|
|
19356
19657
|
|
|
19658
|
+
export interface LolRewardsRewardsSkinLineInfo {
|
|
19659
|
+
productType: string
|
|
19660
|
+
tiers: LolRewardsRewardsSkinLineTier[]
|
|
19661
|
+
}
|
|
19662
|
+
|
|
19663
|
+
export interface LolRewardsRewardsSkinLineTier {
|
|
19664
|
+
/** @format int64 */
|
|
19665
|
+
stage: number
|
|
19666
|
+
ownership: LolRewardsRewardsSkinLineTierOwnership
|
|
19667
|
+
}
|
|
19668
|
+
|
|
19669
|
+
export interface LolRewardsRewardsSkinLineTierOwnership {
|
|
19670
|
+
owned: boolean
|
|
19671
|
+
}
|
|
19672
|
+
|
|
19357
19673
|
export type LolRewardsSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
19358
19674
|
|
|
19359
19675
|
export interface LolRewardsSelectionRequestDTO {
|
|
@@ -21066,6 +21382,14 @@ export interface LolTftEventLolTftEvent {
|
|
|
21066
21382
|
defaultLandingPage: boolean
|
|
21067
21383
|
eventHubTemplateType: string
|
|
21068
21384
|
eventFuture: boolean
|
|
21385
|
+
weblinkSubnavs: LolTftEventLolTftEventWebLinkSubnav[]
|
|
21386
|
+
}
|
|
21387
|
+
|
|
21388
|
+
export interface LolTftEventLolTftEventWebLinkSubnav {
|
|
21389
|
+
enabled: boolean
|
|
21390
|
+
key: string
|
|
21391
|
+
titleTranslationKey: string
|
|
21392
|
+
url: string
|
|
21069
21393
|
}
|
|
21070
21394
|
|
|
21071
21395
|
export interface LolTftEventLolTftEvents {
|
|
@@ -21311,6 +21635,14 @@ export interface LolTftLolTftEvent {
|
|
|
21311
21635
|
defaultLandingPage: boolean
|
|
21312
21636
|
eventHubTemplateType: string
|
|
21313
21637
|
eventFuture: boolean
|
|
21638
|
+
weblinkSubnavs: LolTftLolTftEventWebLinkSubnav[]
|
|
21639
|
+
}
|
|
21640
|
+
|
|
21641
|
+
export interface LolTftLolTftEventWebLinkSubnav {
|
|
21642
|
+
enabled: boolean
|
|
21643
|
+
key: string
|
|
21644
|
+
titleTranslationKey: string
|
|
21645
|
+
url: string
|
|
21314
21646
|
}
|
|
21315
21647
|
|
|
21316
21648
|
export interface LolTftLolTftEvents {
|
|
@@ -22278,6 +22610,8 @@ export interface LolTftTeamPlannerTFTChampionData {
|
|
|
22278
22610
|
squareIconPath: string
|
|
22279
22611
|
/** @format uint32 */
|
|
22280
22612
|
tier: number
|
|
22613
|
+
/** @format uint32 */
|
|
22614
|
+
team_planner_code: number
|
|
22281
22615
|
}
|
|
22282
22616
|
|
|
22283
22617
|
export interface LolTftTeamPlannerTFTMapSetData {
|
|
@@ -22312,6 +22646,7 @@ export interface LolTftTeamPlannerTeamPlan {
|
|
|
22312
22646
|
setName: string
|
|
22313
22647
|
teamIsImported: boolean
|
|
22314
22648
|
editedByPlayer: boolean
|
|
22649
|
+
shownNewTeamAnim: boolean
|
|
22315
22650
|
}
|
|
22316
22651
|
|
|
22317
22652
|
export interface LolTftTeamPlannerTeamSettings {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasagi/types",
|
|
3
|
-
"version": "
|
|
4
|
-
"_clientVersion": "
|
|
3
|
+
"version": "15.1.1",
|
|
4
|
+
"_clientVersion": "15.1.648.3927",
|
|
5
5
|
"description": "This package contains auto-generated LCU types and endpoints.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"update-types": "node scripts/update-types.mjs",
|
|
@@ -26,4 +26,4 @@
|
|
|
26
26
|
"type": "git",
|
|
27
27
|
"url": "https://github.com/dysolix/hasagi-types.git"
|
|
28
28
|
}
|
|
29
|
-
}
|
|
29
|
+
}
|
package/CODEOWNERS
DELETED