@hasagi/types 15.15.1 → 15.17.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 +32 -10
- package/dist/lcu-events.d.ts +51 -46
- package/dist/lcu-types.d.ts +184 -18
- package/package.json +2 -2
package/dist/lcu-endpoints.d.ts
CHANGED
|
@@ -364,9 +364,6 @@ export interface LCUEndpoints {
|
|
|
364
364
|
"/deep-links/v1/settings": {
|
|
365
365
|
get: { path: never, params: never, body: never, response: LCUTypes.DeepLinksDeepLinksSettings }
|
|
366
366
|
},
|
|
367
|
-
"/dx11-upgrade/notification-type": {
|
|
368
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolDx9DeprecationDx9DeprecationNotificationType }
|
|
369
|
-
},
|
|
370
367
|
"/entitlements/v1/token": {
|
|
371
368
|
get: { path: never, params: never, body: never, response: LCUTypes.EntitlementsToken }
|
|
372
369
|
},
|
|
@@ -592,6 +589,9 @@ export interface LCUEndpoints {
|
|
|
592
589
|
"/lol-champion-mastery/v1/{puuid}/champion-mastery": {
|
|
593
590
|
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMastery[] }
|
|
594
591
|
},
|
|
592
|
+
"/lol-champion-mastery/v1/{puuid}/champion-mastery-view": {
|
|
593
|
+
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMasteryViewData[] }
|
|
594
|
+
},
|
|
595
595
|
"/lol-champion-mastery/v1/local-player/champion-mastery": {
|
|
596
596
|
get: { path: never, params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMastery[] }
|
|
597
597
|
},
|
|
@@ -859,6 +859,12 @@ export interface LCUEndpoints {
|
|
|
859
859
|
"/lol-cosmetics/v1/inventories/{setName}/zoom-skins": {
|
|
860
860
|
get: { path: [setName: string], params: never, body: never, response: LCUTypes.LolCosmeticsTFTZoomSkinGroupedViewModel }
|
|
861
861
|
},
|
|
862
|
+
"/lol-directx-upgrade/needs-hardware-upgrade": {
|
|
863
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
864
|
+
},
|
|
865
|
+
"/lol-directx-upgrade/notification-type": {
|
|
866
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolDirectxUpgradeDirectXUpgradeNotificationType }
|
|
867
|
+
},
|
|
862
868
|
"/lol-drops/v1/drop-tables": {
|
|
863
869
|
get: { path: never, params: never, body: never, response: LCUTypes.LolDropsCapDropsDropTableWithPityDTO[] }
|
|
864
870
|
},
|
|
@@ -1700,6 +1706,9 @@ export interface LCUEndpoints {
|
|
|
1700
1706
|
"/lol-missions/v1/missions/seriesId": {
|
|
1701
1707
|
get: { path: never, params: { "missionId": string }, body: never, response: string }
|
|
1702
1708
|
},
|
|
1709
|
+
"/lol-missions/v1/missions/seriesName": {
|
|
1710
|
+
get: { path: never, params: { "missionId": string }, body: never, response: string }
|
|
1711
|
+
},
|
|
1703
1712
|
"/lol-missions/v1/series": {
|
|
1704
1713
|
get: { path: never, params: never, body: never, response: LCUTypes.SeriesDTO[] }
|
|
1705
1714
|
},
|
|
@@ -1780,8 +1789,8 @@ export interface LCUEndpoints {
|
|
|
1780
1789
|
"/lol-patch/v1/notifications": {
|
|
1781
1790
|
get: { path: never, params: never, body: never, response: LCUTypes.LolPatchNotification[] }
|
|
1782
1791
|
},
|
|
1783
|
-
"/lol-patch/v1/product-integration/app-update/
|
|
1784
|
-
get: { path: never, params: never, body: never, response:
|
|
1792
|
+
"/lol-patch/v1/product-integration/app-update/available": {
|
|
1793
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1785
1794
|
},
|
|
1786
1795
|
"/lol-patch/v1/products/league_of_legends/install-location": {
|
|
1787
1796
|
get: { path: never, params: never, body: never, response: LCUTypes.LolPatchInstallPaths }
|
|
@@ -2295,6 +2304,16 @@ export interface LCUEndpoints {
|
|
|
2295
2304
|
"/lol-suggested-players/v1/suggested-players": {
|
|
2296
2305
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSuggestedPlayersSuggestedPlayersSuggestedPlayer[] }
|
|
2297
2306
|
},
|
|
2307
|
+
"/lol-summoner-profiles/v1/{puuid}/champion-mastery-view": {
|
|
2308
|
+
get: { path: [puuid: string], params: never, body: never, response: {
|
|
2309
|
+
} }
|
|
2310
|
+
},
|
|
2311
|
+
"/lol-summoner-profiles/v1/get-champion-mastery-view": {
|
|
2312
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesChampionMasteryView }
|
|
2313
|
+
},
|
|
2314
|
+
"/lol-summoner-profiles/v1/get-honor-view": {
|
|
2315
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesHonorView }
|
|
2316
|
+
},
|
|
2298
2317
|
"/lol-summoner-profiles/v1/get-summoner-level-view": {
|
|
2299
2318
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesSummonerLevel }
|
|
2300
2319
|
},
|
|
@@ -2518,7 +2537,7 @@ export interface LCUEndpoints {
|
|
|
2518
2537
|
get: { path: never, params: never, body: never, response: LCUTypes.LolVanguardVanguardMachineSpecs }
|
|
2519
2538
|
},
|
|
2520
2539
|
"/lol-vanguard/v1/notification": {
|
|
2521
|
-
get: { path: never, params:
|
|
2540
|
+
get: { path: never, params: never, body: never, response: {
|
|
2522
2541
|
} }
|
|
2523
2542
|
},
|
|
2524
2543
|
"/lol-vanguard/v1/session": {
|
|
@@ -2754,9 +2773,6 @@ export interface LCUEndpoints {
|
|
|
2754
2773
|
"/deep-links/v1/launch-lor-link": {
|
|
2755
2774
|
post: { path: never, params: never, body: never, response: string }
|
|
2756
2775
|
},
|
|
2757
|
-
"/dx11-upgrade/notification-ack": {
|
|
2758
|
-
post: { path: never, params: never, body: never, response: void }
|
|
2759
|
-
},
|
|
2760
2776
|
"/error-monitor/v1/logs/batches": {
|
|
2761
2777
|
post: { path: never, params: never, body: never, response: LCUTypes.ErrorMonitorLogBatch[] }
|
|
2762
2778
|
},
|
|
@@ -2773,7 +2789,7 @@ export interface LCUEndpoints {
|
|
|
2773
2789
|
post: { path: never, params: never, body: LCUTypes.LolAccountVerificationSendActivationPinRequest, response: void }
|
|
2774
2790
|
},
|
|
2775
2791
|
"/lol-account-verification/v1/sendDeactivationPin": {
|
|
2776
|
-
post: { path: never, params: never, body:
|
|
2792
|
+
post: { path: never, params: never, body: never, response: void }
|
|
2777
2793
|
},
|
|
2778
2794
|
"/lol-activity-center/v1/clear-cache": {
|
|
2779
2795
|
post: { path: never, params: never, body: never, response: void }
|
|
@@ -3021,6 +3037,9 @@ export interface LCUEndpoints {
|
|
|
3021
3037
|
"/lol-clash/v1/update-logos": {
|
|
3022
3038
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3023
3039
|
},
|
|
3040
|
+
"/lol-directx-upgrade/notification-ack": {
|
|
3041
|
+
post: { path: never, params: never, body: never, response: void }
|
|
3042
|
+
},
|
|
3024
3043
|
"/lol-email-verification/v1/confirm-email": {
|
|
3025
3044
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3026
3045
|
},
|
|
@@ -3534,6 +3553,9 @@ export interface LCUEndpoints {
|
|
|
3534
3553
|
"/lol-suggested-players/v1/victorious-comrade": {
|
|
3535
3554
|
post: { path: never, params: never, body: LCUTypes.LolSuggestedPlayersSuggestedPlayersVictoriousComrade, response: void }
|
|
3536
3555
|
},
|
|
3556
|
+
"/lol-summoner-profiles/v1/pco/{category}": {
|
|
3557
|
+
post: { path: [category: string], params: never, body: string, response: void }
|
|
3558
|
+
},
|
|
3537
3559
|
"/lol-summoner/v1/current-summoner/name": {
|
|
3538
3560
|
post: { path: never, params: never, body: string, response: LCUTypes.LolSummonerSummoner }
|
|
3539
3561
|
},
|
package/dist/lcu-events.d.ts
CHANGED
|
@@ -24,16 +24,12 @@ export interface LCUWebSocketEvents {
|
|
|
24
24
|
"OnJsonApiEvent_entitlements_v1_token": LCUTypes.PluginResourceEvent,
|
|
25
25
|
"OnJsonApiEvent_entitlements_v2_token": LCUTypes.PluginResourceEvent,
|
|
26
26
|
"OnJsonApiEvent_ga-restriction_v1_penalty-notifications": LCUTypes.PluginResourceEvent,
|
|
27
|
-
"OnJsonApiEvent_lol-account-verification_v1_is-verified": LCUTypes.PluginResourceEvent,
|
|
28
27
|
"OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
|
|
29
28
|
"OnJsonApiEvent_lol-activity-center_v1_ready": LCUTypes.PluginResourceEvent,
|
|
30
29
|
"OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
31
30
|
"OnJsonApiEvent_lol-cap-missions_v1_ready": LCUTypes.PluginResourceEvent,
|
|
32
|
-
"OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
|
|
33
|
-
"OnJsonApiEvent_lol-challenges_v1_challenges": LCUTypes.PluginResourceEvent,
|
|
34
31
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
35
32
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
36
|
-
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
37
33
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
38
34
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
39
35
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -84,8 +80,8 @@ export interface LCUWebSocketEvents {
|
|
|
84
80
|
"OnJsonApiEvent_lol-collections_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
85
81
|
"OnJsonApiEvent_lol-cosmetics_v1_favorites": LCUTypes.PluginResourceEvent,
|
|
86
82
|
"OnJsonApiEvent_lol-cosmetics_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
83
|
+
"OnJsonApiEvent_lol-directx-upgrade_needs-hardware-upgrade": LCUTypes.PluginResourceEvent,
|
|
87
84
|
"OnJsonApiEvent_lol-drops_v1_ready": LCUTypes.PluginResourceEvent,
|
|
88
|
-
"OnJsonApiEvent_lol-dx9-deprecation_needs-hardware-upgrade": LCUTypes.PluginResourceEvent,
|
|
89
85
|
"OnJsonApiEvent_lol-end-of-game_v1_eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
90
86
|
"OnJsonApiEvent_lol-end-of-game_v1_gameclient-eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
91
87
|
"OnJsonApiEvent_lol-end-of-game_v1_tft-eog-stats": LCUTypes.PluginResourceEvent,
|
|
@@ -165,6 +161,7 @@ export interface LCUWebSocketEvents {
|
|
|
165
161
|
"OnJsonApiEvent_lol-loot_v1_ready": LCUTypes.PluginResourceEvent,
|
|
166
162
|
"OnJsonApiEvent_lol-loot_v1_recipes": LCUTypes.PluginResourceEvent,
|
|
167
163
|
"OnJsonApiEvent_lol-loyalty_v1_status-notification": LCUTypes.PluginResourceEvent,
|
|
164
|
+
"OnJsonApiEvent_lol-mac-graphics-upgrade_needs-hardware-upgrade": LCUTypes.PluginResourceEvent,
|
|
168
165
|
"OnJsonApiEvent_lol-maps_v1_maps": LCUTypes.PluginResourceEvent,
|
|
169
166
|
"OnJsonApiEvent_lol-maps_v2_maps": LCUTypes.PluginResourceEvent,
|
|
170
167
|
"OnJsonApiEvent_lol-marketing-preferences_v1_ready": LCUTypes.PluginResourceEvent,
|
|
@@ -192,11 +189,9 @@ export interface LCUWebSocketEvents {
|
|
|
192
189
|
"OnJsonApiEvent_lol-patch_v1_product-integration": LCUTypes.PluginResourceEvent,
|
|
193
190
|
"OnJsonApiEvent_lol-patch_v1_products": LCUTypes.PluginResourceEvent,
|
|
194
191
|
"OnJsonApiEvent_lol-patch_v1_status": LCUTypes.PluginResourceEvent,
|
|
195
|
-
"OnJsonApiEvent_lol-perks_v1_currentpage": LCUTypes.PluginResourceEvent,
|
|
196
192
|
"OnJsonApiEvent_lol-perks_v1_inventory": LCUTypes.PluginResourceEvent,
|
|
197
193
|
"OnJsonApiEvent_lol-perks_v1_pages": LCUTypes.PluginResourceEvent,
|
|
198
194
|
"OnJsonApiEvent_lol-perks_v1_perks": LCUTypes.PluginResourceEvent,
|
|
199
|
-
"OnJsonApiEvent_lol-perks_v1_rune-recommender-auto-select": LCUTypes.PluginResourceEvent,
|
|
200
195
|
"OnJsonApiEvent_lol-perks_v1_settings": LCUTypes.PluginResourceEvent,
|
|
201
196
|
"OnJsonApiEvent_lol-perks_v1_styles": LCUTypes.PluginResourceEvent,
|
|
202
197
|
"OnJsonApiEvent_lol-platform-config_v1_initial-configuration-complete": LCUTypes.PluginResourceEvent,
|
|
@@ -299,6 +294,7 @@ export interface LCUWebSocketEvents {
|
|
|
299
294
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_PremiumTicketsEnabled": LCUTypes.PluginResourceEvent,
|
|
300
295
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ScoutingEnabled": LCUTypes.PluginResourceEvent,
|
|
301
296
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_StorePageLink": LCUTypes.PluginResourceEvent,
|
|
297
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_SubstitutionEnabled": LCUTypes.PluginResourceEvent,
|
|
302
298
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ThirdPartyInvitesEnabled": LCUTypes.PluginResourceEvent,
|
|
303
299
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_TutorialEnabled": LCUTypes.PluginResourceEvent,
|
|
304
300
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_Visibility": LCUTypes.PluginResourceEvent,
|
|
@@ -370,7 +366,6 @@ export interface LCUWebSocketEvents {
|
|
|
370
366
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame": LCUTypes.PluginResourceEvent,
|
|
371
367
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_BotsAvailableInAram": LCUTypes.PluginResourceEvent,
|
|
372
368
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_MinorRestrictionsEnabled": LCUTypes.PluginResourceEvent,
|
|
373
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampion": LCUTypes.PluginResourceEvent,
|
|
374
369
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
|
|
375
370
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
|
|
376
371
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChromas": LCUTypes.PluginResourceEvent,
|
|
@@ -398,7 +393,6 @@ export interface LCUWebSocketEvents {
|
|
|
398
393
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_GAMEMODEX": LCUTypes.PluginResourceEvent,
|
|
399
394
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_HEXAKILL": LCUTypes.PluginResourceEvent,
|
|
400
395
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO": LCUTypes.PluginResourceEvent,
|
|
401
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO-5X5": LCUTypes.PluginResourceEvent,
|
|
402
396
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KING_PORO": LCUTypes.PluginResourceEvent,
|
|
403
397
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY23_TFT": LCUTypes.PluginResourceEvent,
|
|
404
398
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY24_TFT": LCUTypes.PluginResourceEvent,
|
|
@@ -409,9 +403,6 @@ export interface LCUWebSocketEvents {
|
|
|
409
403
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_3x3": LCUTypes.PluginResourceEvent,
|
|
410
404
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_TFT": LCUTypes.PluginResourceEvent,
|
|
411
405
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN": LCUTypes.PluginResourceEvent,
|
|
412
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT": LCUTypes.PluginResourceEvent,
|
|
413
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT-5x5": LCUTypes.PluginResourceEvent,
|
|
414
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT_5x5": LCUTypes.PluginResourceEvent,
|
|
415
406
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN_UNRANKED": LCUTypes.PluginResourceEvent,
|
|
416
407
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODYSSEY": LCUTypes.PluginResourceEvent,
|
|
417
408
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ONEFORALL": LCUTypes.PluginResourceEvent,
|
|
@@ -420,8 +411,6 @@ export interface LCUWebSocketEvents {
|
|
|
420
411
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_PVE_PUZZLE_TFT": LCUTypes.PluginResourceEvent,
|
|
421
412
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_SR": LCUTypes.PluginResourceEvent,
|
|
422
413
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_TT": LCUTypes.PluginResourceEvent,
|
|
423
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_PREMADE_3x3": LCUTypes.PluginResourceEvent,
|
|
424
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_PREMADE_5x5": LCUTypes.PluginResourceEvent,
|
|
425
414
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_SOLO_5x5": LCUTypes.PluginResourceEvent,
|
|
426
415
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_3x3": LCUTypes.PluginResourceEvent,
|
|
427
416
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_5x5": LCUTypes.PluginResourceEvent,
|
|
@@ -491,14 +480,14 @@ export interface LCUWebSocketEvents {
|
|
|
491
480
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes": LCUTypes.PluginResourceEvent,
|
|
492
481
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmotePanelEnabled": LCUTypes.PluginResourceEvent,
|
|
493
482
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmoteTutorialModalEnabled": LCUTypes.PluginResourceEvent,
|
|
494
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings": LCUTypes.PluginResourceEvent,
|
|
495
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
|
|
496
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
|
|
497
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
|
|
498
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
499
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
500
483
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting": LCUTypes.PluginResourceEvent,
|
|
501
484
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting_Enabled": LCUTypes.PluginResourceEvent,
|
|
485
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings": LCUTypes.PluginResourceEvent,
|
|
486
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
|
|
487
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
|
|
488
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
|
|
489
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
490
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
502
491
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting": LCUTypes.PluginResourceEvent,
|
|
503
492
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting_GameAgnosticReportingTrinary": LCUTypes.PluginResourceEvent,
|
|
504
493
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Esports_NotificationsAssetMagickURL": LCUTypes.PluginResourceEvent,
|
|
@@ -530,8 +519,6 @@ export interface LCUWebSocketEvents {
|
|
|
530
519
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync": LCUTypes.PluginResourceEvent,
|
|
531
520
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_Enabled": LCUTypes.PluginResourceEvent,
|
|
532
521
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_PercentOfTotalTimerToSyncAt": LCUTypes.PluginResourceEvent,
|
|
533
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow": LCUTypes.PluginResourceEvent,
|
|
534
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ForceGameLocaleAsEnglish": LCUTypes.PluginResourceEvent,
|
|
535
522
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ShouldSendRiotClientHeartBeat": LCUTypes.PluginResourceEvent,
|
|
536
523
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GeoInfo": LCUTypes.PluginResourceEvent,
|
|
537
524
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GuestSlots": LCUTypes.PluginResourceEvent,
|
|
@@ -542,8 +529,6 @@ export interface LCUWebSocketEvents {
|
|
|
542
529
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Enabled": LCUTypes.PluginResourceEvent,
|
|
543
530
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Honor2018Enabled": LCUTypes.PluginResourceEvent,
|
|
544
531
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_SecondsToVote": LCUTypes.PluginResourceEvent,
|
|
545
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig": LCUTypes.PluginResourceEvent,
|
|
546
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig_EnabledState": LCUTypes.PluginResourceEvent,
|
|
547
532
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory": LCUTypes.PluginResourceEvent,
|
|
548
533
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_BaseServiceUrl": LCUTypes.PluginResourceEvent,
|
|
549
534
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_Enabled": LCUTypes.PluginResourceEvent,
|
|
@@ -559,14 +544,20 @@ export interface LCUWebSocketEvents {
|
|
|
559
544
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS": LCUTypes.PluginResourceEvent,
|
|
560
545
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_Endpoint": LCUTypes.PluginResourceEvent,
|
|
561
546
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_UseIdTokens": LCUTypes.PluginResourceEvent,
|
|
547
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
|
|
548
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
|
|
562
549
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections": LCUTypes.PluginResourceEvent,
|
|
563
550
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_Enabled": LCUTypes.PluginResourceEvent,
|
|
564
551
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUAugmentsVisible": LCUTypes.PluginResourceEvent,
|
|
552
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesChromasEnabled": LCUTypes.PluginResourceEvent,
|
|
565
553
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesFinishersEnabled": LCUTypes.PluginResourceEvent,
|
|
566
554
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUMasteriesVisible": LCUTypes.PluginResourceEvent,
|
|
567
555
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUPerksVisible": LCUTypes.PluginResourceEvent,
|
|
568
556
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCURunesVisible": LCUTypes.PluginResourceEvent,
|
|
569
557
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUSkinsViewerEnabled": LCUTypes.PluginResourceEvent,
|
|
558
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory": LCUTypes.PluginResourceEvent,
|
|
559
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_Enabled": LCUTypes.PluginResourceEvent,
|
|
560
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_MatchHistoryWebURL": LCUTypes.PluginResourceEvent,
|
|
570
561
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore": LCUTypes.PluginResourceEvent,
|
|
571
562
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_CanQueryInactiveItems": LCUTypes.PluginResourceEvent,
|
|
572
563
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_DisableCapRMS": LCUTypes.PluginResourceEvent,
|
|
@@ -582,9 +573,10 @@ export interface LCUWebSocketEvents {
|
|
|
582
573
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_UseRsoAccessToken": LCUTypes.PluginResourceEvent,
|
|
583
574
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteEnabled": LCUTypes.PluginResourceEvent,
|
|
584
575
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteURL": LCUTypes.PluginResourceEvent,
|
|
585
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
|
|
586
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
|
|
587
576
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Enabled": LCUTypes.PluginResourceEvent,
|
|
577
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout": LCUTypes.PluginResourceEvent,
|
|
578
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleExitAfterWarningMinutes": LCUTypes.PluginResourceEvent,
|
|
579
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleWarningMinutes": LCUTypes.PluginResourceEvent,
|
|
588
580
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate": LCUTypes.PluginResourceEvent,
|
|
589
581
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate_Enabled": LCUTypes.PluginResourceEvent,
|
|
590
582
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionDetails": LCUTypes.PluginResourceEvent,
|
|
@@ -710,6 +702,7 @@ export interface LCUWebSocketEvents {
|
|
|
710
702
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_HubEnabled": LCUTypes.PluginResourceEvent,
|
|
711
703
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_MatchHistoryEnabled": LCUTypes.PluginResourceEvent,
|
|
712
704
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_OrbEnabled": LCUTypes.PluginResourceEvent,
|
|
705
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_PatchNotesUrl": LCUTypes.PluginResourceEvent,
|
|
713
706
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_PlayButtonEnabled": LCUTypes.PluginResourceEvent,
|
|
714
707
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_SeriesInternalName": LCUTypes.PluginResourceEvent,
|
|
715
708
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_TftHomeEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -729,31 +722,21 @@ export interface LCUWebSocketEvents {
|
|
|
729
722
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_ApexDemotionNotificationEnabled": LCUTypes.PluginResourceEvent,
|
|
730
723
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_ChallengerLaddersEnabled": LCUTypes.PluginResourceEvent,
|
|
731
724
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_ConfigRefreshIntervalSeconds": LCUTypes.PluginResourceEvent,
|
|
732
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_CurrentSplit": LCUTypes.PluginResourceEvent,
|
|
733
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_CurrentYear": LCUTypes.PluginResourceEvent,
|
|
734
725
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_DefaultJwtTimeToLiveSeconds": LCUTypes.PluginResourceEvent,
|
|
735
726
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_EosNotificationSettingsName": LCUTypes.PluginResourceEvent,
|
|
736
727
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_EosNotificationSettingsSchemaVer": LCUTypes.PluginResourceEvent,
|
|
737
728
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_EosNotificationsConfig": LCUTypes.PluginResourceEvent,
|
|
738
729
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_EosNotificationsEnabled": LCUTypes.PluginResourceEvent,
|
|
739
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_EosRewardGroupsConfig": LCUTypes.PluginResourceEvent,
|
|
740
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_EosRewardsConfig": LCUTypes.PluginResourceEvent,
|
|
741
730
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_FlexRestrictionModalEnabled": LCUTypes.PluginResourceEvent,
|
|
742
731
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsGlobalNotificationsEnabled": LCUTypes.PluginResourceEvent,
|
|
743
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsPreseason": LCUTypes.PluginResourceEvent,
|
|
744
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSeasonMemorialModalEnabled": LCUTypes.PluginResourceEvent,
|
|
745
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSplitStartModalEnabled": LCUTypes.PluginResourceEvent,
|
|
746
732
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_JWTEnabled": LCUTypes.PluginResourceEvent,
|
|
747
733
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_LeagueServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
748
734
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_MasterTierEnabled": LCUTypes.PluginResourceEvent,
|
|
749
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_PreseasonName": LCUTypes.PluginResourceEvent,
|
|
750
735
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_PromoHelperEnabled": LCUTypes.PluginResourceEvent,
|
|
751
736
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_PromotionVignetteV2Enabled": LCUTypes.PluginResourceEvent,
|
|
752
737
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_Ranked2017Enabled": LCUTypes.PluginResourceEvent,
|
|
753
738
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_Ranked2019Enabled": LCUTypes.PluginResourceEvent,
|
|
754
739
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_RankedReferenceModalEnabled": LCUTypes.PluginResourceEvent,
|
|
755
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_RankedRewardConfig": LCUTypes.PluginResourceEvent,
|
|
756
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_SeasonMemorialModalMinHonorLevel": LCUTypes.PluginResourceEvent,
|
|
757
740
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_SeasonModalEnabled": LCUTypes.PluginResourceEvent,
|
|
758
741
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_SeasonName": LCUTypes.PluginResourceEvent,
|
|
759
742
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_SendSignedRankedOverview": LCUTypes.PluginResourceEvent,
|
|
@@ -823,6 +806,11 @@ export interface LCUWebSocketEvents {
|
|
|
823
806
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount3": LCUTypes.PluginResourceEvent,
|
|
824
807
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount4": LCUTypes.PluginResourceEvent,
|
|
825
808
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount5": LCUTypes.PluginResourceEvent,
|
|
809
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId1": LCUTypes.PluginResourceEvent,
|
|
810
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId2": LCUTypes.PluginResourceEvent,
|
|
811
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId3": LCUTypes.PluginResourceEvent,
|
|
812
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId4": LCUTypes.PluginResourceEvent,
|
|
813
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId5": LCUTypes.PluginResourceEvent,
|
|
826
814
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EnableMythicEssenceDisplay": LCUTypes.PluginResourceEvent,
|
|
827
815
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Enabled": LCUTypes.PluginResourceEvent,
|
|
828
816
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EventChestBundleId1": LCUTypes.PluginResourceEvent,
|
|
@@ -844,6 +832,11 @@ export interface LCUWebSocketEvents {
|
|
|
844
832
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
|
|
845
833
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Visible": LCUTypes.PluginResourceEvent,
|
|
846
834
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_WorldsTokensEnabled": LCUTypes.PluginResourceEvent,
|
|
835
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService": LCUTypes.PluginResourceEvent,
|
|
836
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Enabled": LCUTypes.PluginResourceEvent,
|
|
837
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_NewPlayerChestEnabled": LCUTypes.PluginResourceEvent,
|
|
838
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
|
|
839
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Visible": LCUTypes.PluginResourceEvent,
|
|
847
840
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries": LCUTypes.PluginResourceEvent,
|
|
848
841
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries_ShowPointsResetMessage": LCUTypes.PluginResourceEvent,
|
|
849
842
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Missions": LCUTypes.PluginResourceEvent,
|
|
@@ -876,6 +869,12 @@ export interface LCUWebSocketEvents {
|
|
|
876
869
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro": LCUTypes.PluginResourceEvent,
|
|
877
870
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_IntroUrl": LCUTypes.PluginResourceEvent,
|
|
878
871
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_NewSummonerIconIds": LCUTypes.PluginResourceEvent,
|
|
872
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage": LCUTypes.PluginResourceEvent,
|
|
873
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_ChampDisplayList": LCUTypes.PluginResourceEvent,
|
|
874
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_Enabled": LCUTypes.PluginResourceEvent,
|
|
875
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_LikeUsURL": LCUTypes.PluginResourceEvent,
|
|
876
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_MaxLevel": LCUTypes.PluginResourceEvent,
|
|
877
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_SubscribeURL": LCUTypes.PluginResourceEvent,
|
|
879
878
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter": LCUTypes.PluginResourceEvent,
|
|
880
879
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_ABDisablingOfTutorial": LCUTypes.PluginResourceEvent,
|
|
881
880
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_QueueID": LCUTypes.PluginResourceEvent,
|
|
@@ -972,31 +971,29 @@ export interface LCUWebSocketEvents {
|
|
|
972
971
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId470": LCUTypes.PluginResourceEvent,
|
|
973
972
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId9": LCUTypes.PluginResourceEvent,
|
|
974
973
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2": LCUTypes.PluginResourceEvent,
|
|
975
|
-
"OnJsonApiEvent_lol-platform-
|
|
974
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId4": LCUTypes.PluginResourceEvent,
|
|
976
975
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
|
|
977
976
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId440": LCUTypes.PluginResourceEvent,
|
|
978
977
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId470": LCUTypes.PluginResourceEvent,
|
|
979
978
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId9": LCUTypes.PluginResourceEvent,
|
|
980
979
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3": LCUTypes.PluginResourceEvent,
|
|
981
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId410": LCUTypes.PluginResourceEvent,
|
|
982
980
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId420": LCUTypes.PluginResourceEvent,
|
|
983
981
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId440": LCUTypes.PluginResourceEvent,
|
|
984
982
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId470": LCUTypes.PluginResourceEvent,
|
|
985
983
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId9": LCUTypes.PluginResourceEvent,
|
|
986
984
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4": LCUTypes.PluginResourceEvent,
|
|
987
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId410": LCUTypes.PluginResourceEvent,
|
|
988
985
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId420": LCUTypes.PluginResourceEvent,
|
|
989
986
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId440": LCUTypes.PluginResourceEvent,
|
|
990
987
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId470": LCUTypes.PluginResourceEvent,
|
|
991
988
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId9": LCUTypes.PluginResourceEvent,
|
|
992
989
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5": LCUTypes.PluginResourceEvent,
|
|
993
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId410": LCUTypes.PluginResourceEvent,
|
|
994
990
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId420": LCUTypes.PluginResourceEvent,
|
|
995
991
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId440": LCUTypes.PluginResourceEvent,
|
|
996
992
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId470": LCUTypes.PluginResourceEvent,
|
|
997
993
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId9": LCUTypes.PluginResourceEvent,
|
|
998
994
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_QueuesRequiringTwentyChampions": LCUTypes.PluginResourceEvent,
|
|
999
995
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTier": LCUTypes.PluginResourceEvent,
|
|
996
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId4": LCUTypes.PluginResourceEvent,
|
|
1000
997
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId410": LCUTypes.PluginResourceEvent,
|
|
1001
998
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId420": LCUTypes.PluginResourceEvent,
|
|
1002
999
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId440": LCUTypes.PluginResourceEvent,
|
|
@@ -1009,30 +1006,35 @@ export interface LCUWebSocketEvents {
|
|
|
1009
1006
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeRestrictionEnabled": LCUTypes.PluginResourceEvent,
|
|
1010
1007
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeTier": LCUTypes.PluginResourceEvent,
|
|
1011
1008
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTier": LCUTypes.PluginResourceEvent,
|
|
1009
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId4": LCUTypes.PluginResourceEvent,
|
|
1012
1010
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId410": LCUTypes.PluginResourceEvent,
|
|
1013
1011
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId420": LCUTypes.PluginResourceEvent,
|
|
1014
1012
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId440": LCUTypes.PluginResourceEvent,
|
|
1015
1013
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId470": LCUTypes.PluginResourceEvent,
|
|
1016
1014
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId9": LCUTypes.PluginResourceEvent,
|
|
1017
1015
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
1016
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
|
|
1018
1017
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
|
|
1019
1018
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
|
|
1020
1019
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
|
|
1021
1020
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
|
|
1022
1021
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
|
|
1023
1022
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMode": LCUTypes.PluginResourceEvent,
|
|
1023
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
|
|
1024
1024
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
|
|
1025
1025
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
|
|
1026
1026
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
|
|
1027
1027
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId470": LCUTypes.PluginResourceEvent,
|
|
1028
1028
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId9": LCUTypes.PluginResourceEvent,
|
|
1029
1029
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
1030
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
|
|
1030
1031
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
|
|
1031
1032
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
|
|
1032
1033
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
|
|
1033
1034
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
|
|
1034
1035
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
|
|
1035
1036
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMode": LCUTypes.PluginResourceEvent,
|
|
1037
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
|
|
1036
1038
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
|
|
1037
1039
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
|
|
1038
1040
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
|
|
@@ -1045,9 +1047,6 @@ export interface LCUWebSocketEvents {
|
|
|
1045
1047
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_ThirdPersonAccessibleGameQueues": LCUTypes.PluginResourceEvent,
|
|
1046
1048
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards": LCUTypes.PluginResourceEvent,
|
|
1047
1049
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards_Enabled": LCUTypes.PluginResourceEvent,
|
|
1048
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring": LCUTypes.PluginResourceEvent,
|
|
1049
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitInterval": LCUTypes.PluginResourceEvent,
|
|
1050
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitMaxActions": LCUTypes.PluginResourceEvent,
|
|
1051
1050
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer": LCUTypes.PluginResourceEvent,
|
|
1052
1051
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer_Level1Unfilter": LCUTypes.PluginResourceEvent,
|
|
1053
1052
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SeasonReward": LCUTypes.PluginResourceEvent,
|
|
@@ -1070,12 +1069,14 @@ export interface LCUWebSocketEvents {
|
|
|
1070
1069
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_MatchHistoryUrlTemplate": LCUTypes.PluginResourceEvent,
|
|
1071
1070
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareEndOfGameEnabled": LCUTypes.PluginResourceEvent,
|
|
1072
1071
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareGameUrlTemplate": LCUTypes.PluginResourceEvent,
|
|
1072
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareMatchHistory": LCUTypes.PluginResourceEvent,
|
|
1073
1073
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals": LCUTypes.PluginResourceEvent,
|
|
1074
1074
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals_Enabled": LCUTypes.PluginResourceEvent,
|
|
1075
1075
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer": LCUTypes.PluginResourceEvent,
|
|
1076
1076
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer_VintageSkinSummonerIconConfig": LCUTypes.PluginResourceEvent,
|
|
1077
1077
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard": LCUTypes.PluginResourceEvent,
|
|
1078
1078
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_IsSocialLeaderboardEnabled": LCUTypes.PluginResourceEvent,
|
|
1079
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_LeaguesPuuidPageSize": LCUTypes.PluginResourceEvent,
|
|
1079
1080
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_MinsTillCacheExpiry": LCUTypes.PluginResourceEvent,
|
|
1080
1081
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_SecsTillAvailabilityCacheExpiry": LCUTypes.PluginResourceEvent,
|
|
1081
1082
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_UseSocialLeaderboardLeaguesEndpoint": LCUTypes.PluginResourceEvent,
|
|
@@ -1093,9 +1094,7 @@ export interface LCUWebSocketEvents {
|
|
|
1093
1094
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_OnlineFriendsLimit": LCUTypes.PluginResourceEvent,
|
|
1094
1095
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_PreviousPremadesLimit": LCUTypes.PluginResourceEvent,
|
|
1095
1096
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_VictoriousComradesLimit": LCUTypes.PluginResourceEvent,
|
|
1096
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner": LCUTypes.PluginResourceEvent,
|
|
1097
1097
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_ConfigRefreshIntervalSeconds": LCUTypes.PluginResourceEvent,
|
|
1098
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTEnabled": LCUTypes.PluginResourceEvent,
|
|
1099
1098
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMaxTimeoutSeconds": LCUTypes.PluginResourceEvent,
|
|
1100
1099
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMinTimeoutSeconds": LCUTypes.PluginResourceEvent,
|
|
1101
1100
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_SummonerProfileCacheEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -1103,6 +1102,7 @@ export interface LCUWebSocketEvents {
|
|
|
1103
1102
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_AllSkinEnabled": LCUTypes.PluginResourceEvent,
|
|
1104
1103
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_RandomSkinEnabled": LCUTypes.PluginResourceEvent,
|
|
1105
1104
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft": LCUTypes.PluginResourceEvent,
|
|
1105
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ActionTimeoutRecoveryEnabled": LCUTypes.PluginResourceEvent,
|
|
1106
1106
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EnableChampionSelectPreferences": LCUTypes.PluginResourceEvent,
|
|
1107
1107
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EstimatedWaitAdjustmentEnabled": LCUTypes.PluginResourceEvent,
|
|
1108
1108
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_FillPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
|
|
@@ -1110,7 +1110,6 @@ export interface LCUWebSocketEvents {
|
|
|
1110
1110
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_LogAllLCDSMessages": LCUTypes.PluginResourceEvent,
|
|
1111
1111
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_MidPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
|
|
1112
1112
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendAfkCheckMetricsEnabled": LCUTypes.PluginResourceEvent,
|
|
1113
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendSummonerIconJwt": LCUTypes.PluginResourceEvent,
|
|
1114
1113
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ServiceCallTimeoutMillis": LCUTypes.PluginResourceEvent,
|
|
1115
1114
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SkinPurchaseEnabled": LCUTypes.PluginResourceEvent,
|
|
1116
1115
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SupportPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
|
|
@@ -1119,6 +1118,8 @@ export interface LCUWebSocketEvents {
|
|
|
1119
1118
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_TakeoverEnabled": LCUTypes.PluginResourceEvent,
|
|
1120
1119
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_UnlockLockInButtonTimeoutEnabled": LCUTypes.PluginResourceEvent,
|
|
1121
1120
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction_Enabled": LCUTypes.PluginResourceEvent,
|
|
1121
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing": LCUTypes.PluginResourceEvent,
|
|
1122
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing_Rcarter": LCUTypes.PluginResourceEvent,
|
|
1122
1123
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification": LCUTypes.PluginResourceEvent,
|
|
1123
1124
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification_CAHServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
1124
1125
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Trophies": LCUTypes.PluginResourceEvent,
|
|
@@ -1148,6 +1149,7 @@ export interface LCUWebSocketEvents {
|
|
|
1148
1149
|
"OnJsonApiEvent_lol-purchase-widget_v3_purchase-offer-order-statuses": LCUTypes.PluginResourceEvent,
|
|
1149
1150
|
"OnJsonApiEvent_lol-ranked_v1_challenger-ladders-enabled": LCUTypes.PluginResourceEvent,
|
|
1150
1151
|
"OnJsonApiEvent_lol-ranked_v1_current-ranked-stats": LCUTypes.PluginResourceEvent,
|
|
1152
|
+
"OnJsonApiEvent_lol-ranked_v1_eos-notifications": LCUTypes.PluginResourceEvent,
|
|
1151
1153
|
"OnJsonApiEvent_lol-ranked_v1_global-notifications": LCUTypes.PluginResourceEvent,
|
|
1152
1154
|
"OnJsonApiEvent_lol-ranked_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
1153
1155
|
"OnJsonApiEvent_lol-ranked_v1_ranked-stats": LCUTypes.PluginResourceEvent,
|
|
@@ -1163,6 +1165,7 @@ export interface LCUWebSocketEvents {
|
|
|
1163
1165
|
"OnJsonApiEvent_lol-rewards_v1_groups": LCUTypes.PluginResourceEvent,
|
|
1164
1166
|
"OnJsonApiEvent_lol-rso-auth_configuration_v3": LCUTypes.PluginResourceEvent,
|
|
1165
1167
|
"OnJsonApiEvent_lol-rso-auth_v1_authorization": LCUTypes.PluginResourceEvent,
|
|
1168
|
+
"OnJsonApiEvent_lol-service-status_v1_ticker-messages": LCUTypes.PluginResourceEvent,
|
|
1166
1169
|
"OnJsonApiEvent_lol-settings_v1_account": LCUTypes.PluginResourceEvent,
|
|
1167
1170
|
"OnJsonApiEvent_lol-settings_v1_local": LCUTypes.PluginResourceEvent,
|
|
1168
1171
|
"OnJsonApiEvent_lol-settings_v2_account": LCUTypes.PluginResourceEvent,
|
|
@@ -1177,6 +1180,8 @@ export interface LCUWebSocketEvents {
|
|
|
1177
1180
|
"OnJsonApiEvent_lol-store_v1_getStoreUrl": LCUTypes.PluginResourceEvent,
|
|
1178
1181
|
"OnJsonApiEvent_lol-store_v1_store-ready": LCUTypes.PluginResourceEvent,
|
|
1179
1182
|
"OnJsonApiEvent_lol-suggested-players_v1_suggested-players": LCUTypes.PluginResourceEvent,
|
|
1183
|
+
"OnJsonApiEvent_lol-summoner-profiles_v1_get-champion-mastery-view": LCUTypes.PluginResourceEvent,
|
|
1184
|
+
"OnJsonApiEvent_lol-summoner-profiles_v1_get-honor-view": LCUTypes.PluginResourceEvent,
|
|
1180
1185
|
"OnJsonApiEvent_lol-summoner-profiles_v1_get-summoner-level-view": LCUTypes.PluginResourceEvent,
|
|
1181
1186
|
"OnJsonApiEvent_lol-summoner_v1_current-summoner": LCUTypes.PluginResourceEvent,
|
|
1182
1187
|
"OnJsonApiEvent_lol-summoner_v1_player-alias-state": LCUTypes.PluginResourceEvent,
|
package/dist/lcu-types.d.ts
CHANGED
|
@@ -2058,6 +2058,7 @@ export interface LolCapMissionsCapMissionSeriesMissionReward {
|
|
|
2058
2058
|
itemId: string
|
|
2059
2059
|
itemTypeId: string
|
|
2060
2060
|
typeId: string
|
|
2061
|
+
currencyId: string
|
|
2061
2062
|
/** @format uint32 */
|
|
2062
2063
|
amount: number
|
|
2063
2064
|
}
|
|
@@ -3060,6 +3061,11 @@ export interface LolChampionMasteryAllChampionMasterySetReward {
|
|
|
3060
3061
|
totalScore: number
|
|
3061
3062
|
}
|
|
3062
3063
|
|
|
3064
|
+
export interface LolChampionMasteryChampMasteryView {
|
|
3065
|
+
puuid: string
|
|
3066
|
+
data: LolChampionMasteryChampionMasteryViewData[]
|
|
3067
|
+
}
|
|
3068
|
+
|
|
3063
3069
|
export interface LolChampionMasteryChampionMastery {
|
|
3064
3070
|
puuid: string
|
|
3065
3071
|
/** @format int32 */
|
|
@@ -3154,6 +3160,16 @@ export interface LolChampionMasteryChampionMasteryRewardGrantNotification {
|
|
|
3154
3160
|
messageKey: string
|
|
3155
3161
|
}
|
|
3156
3162
|
|
|
3163
|
+
export interface LolChampionMasteryChampionMasteryViewData {
|
|
3164
|
+
/** @format int64 */
|
|
3165
|
+
championId: number
|
|
3166
|
+
/** @format int32 */
|
|
3167
|
+
championLevel: number
|
|
3168
|
+
/** @format int32 */
|
|
3169
|
+
championPoints: number
|
|
3170
|
+
highestGrade?: string
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3157
3173
|
export interface LolChampionMasteryChampionSet {
|
|
3158
3174
|
champions: number[]
|
|
3159
3175
|
/** @format int32 */
|
|
@@ -4379,6 +4395,55 @@ export interface LolChatSettingsResource {
|
|
|
4379
4395
|
data: unknown
|
|
4380
4396
|
}
|
|
4381
4397
|
|
|
4398
|
+
export interface LolChatSocialPresencesSession {
|
|
4399
|
+
player: LolChatSocialPresencesSessionPlayer
|
|
4400
|
+
activity?: LolChatSocialPresencesSessionActivity
|
|
4401
|
+
crossPlayPermissions?: LolChatSocialPresencesSessionCrossPlayPermissions
|
|
4402
|
+
party?: LolChatSocialPresencesSessionParty
|
|
4403
|
+
productData?: string
|
|
4404
|
+
region: string
|
|
4405
|
+
}
|
|
4406
|
+
|
|
4407
|
+
export interface LolChatSocialPresencesSessionActivity {
|
|
4408
|
+
actors: string[]
|
|
4409
|
+
location: string
|
|
4410
|
+
mode: string
|
|
4411
|
+
progress: LolChatSocialPresencesSessionActivityProgress
|
|
4412
|
+
spectate: string
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4415
|
+
export interface LolChatSocialPresencesSessionActivityProgress {
|
|
4416
|
+
type: string
|
|
4417
|
+
value: string
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
export interface LolChatSocialPresencesSessionCrossPlayPermissions {
|
|
4421
|
+
hasPartyCrossPlayEnabled: boolean
|
|
4422
|
+
hasPlayerCrossPlayEnabled: boolean
|
|
4423
|
+
isInParty: boolean
|
|
4424
|
+
partyMemberPlatforms: string[]
|
|
4425
|
+
}
|
|
4426
|
+
|
|
4427
|
+
export interface LolChatSocialPresencesSessionParty {
|
|
4428
|
+
/** @format uint64 */
|
|
4429
|
+
currentSize: number
|
|
4430
|
+
id: string
|
|
4431
|
+
join: string
|
|
4432
|
+
/** @format uint64 */
|
|
4433
|
+
maxSize: number
|
|
4434
|
+
}
|
|
4435
|
+
|
|
4436
|
+
export interface LolChatSocialPresencesSessionPlayer {
|
|
4437
|
+
profileBanner?: string
|
|
4438
|
+
profileIcon?: string
|
|
4439
|
+
show: string
|
|
4440
|
+
state?: string
|
|
4441
|
+
}
|
|
4442
|
+
|
|
4443
|
+
export interface LolChatSocialPresencesStatusMessage {
|
|
4444
|
+
statusMessage: string
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4382
4447
|
export interface LolChatSpectateGameInfoResource {
|
|
4383
4448
|
dropInSpectateGameId: string
|
|
4384
4449
|
gameQueueType: string
|
|
@@ -6105,6 +6170,16 @@ export interface LolCosmeticsGameDataCompanion {
|
|
|
6105
6170
|
TFTRarity: string
|
|
6106
6171
|
}
|
|
6107
6172
|
|
|
6173
|
+
export interface LolCosmeticsGameDataTFTAugmentPillar {
|
|
6174
|
+
contentId: string
|
|
6175
|
+
/** @format int32 */
|
|
6176
|
+
itemId: number
|
|
6177
|
+
name: string
|
|
6178
|
+
description: string
|
|
6179
|
+
loadoutsIcon: string
|
|
6180
|
+
TFTRarity: string
|
|
6181
|
+
}
|
|
6182
|
+
|
|
6108
6183
|
export interface LolCosmeticsGameDataTFTCosmeticsDefaults {
|
|
6109
6184
|
playbook: unknown
|
|
6110
6185
|
}
|
|
@@ -6563,6 +6638,14 @@ export interface LolCosmeticsVelocityLimiterDto {
|
|
|
6563
6638
|
refill: string
|
|
6564
6639
|
}
|
|
6565
6640
|
|
|
6641
|
+
export type LolDirectxUpgradeDirectXUpgradeNotificationType = "FUTURE_HARDWARE_UPGRADE" | "HARDWARE_UPGRADE" | "NONE"
|
|
6642
|
+
|
|
6643
|
+
export interface LolDirectxUpgradeLocalSettingsCategory {
|
|
6644
|
+
data: unknown
|
|
6645
|
+
/** @format int32 */
|
|
6646
|
+
schemaVersion: number
|
|
6647
|
+
}
|
|
6648
|
+
|
|
6566
6649
|
export interface LolDiscordRpGameDataChampionSummary {
|
|
6567
6650
|
/** @format int32 */
|
|
6568
6651
|
id: number
|
|
@@ -6642,14 +6725,6 @@ export interface LolDropsOddsTableDisplayMetadata {
|
|
|
6642
6725
|
priority: number
|
|
6643
6726
|
}
|
|
6644
6727
|
|
|
6645
|
-
export type LolDx9DeprecationDx9DeprecationNotificationType = "TURN_OFF_DX9_LEGACY_MODE" | "HARDWARE_UPGRADE" | "NONE"
|
|
6646
|
-
|
|
6647
|
-
export interface LolDx9DeprecationLocalSettingsCategory {
|
|
6648
|
-
data: unknown
|
|
6649
|
-
/** @format int32 */
|
|
6650
|
-
schemaVersion: number
|
|
6651
|
-
}
|
|
6652
|
-
|
|
6653
6728
|
export interface LolEmailVerificationAccessToken {
|
|
6654
6729
|
token: string
|
|
6655
6730
|
/** @format uint64 */
|
|
@@ -7120,6 +7195,13 @@ export interface LolEndOfGameTFTEndOfGameCustomAugmentContainerViewModel {
|
|
|
7120
7195
|
description: string
|
|
7121
7196
|
}
|
|
7122
7197
|
|
|
7198
|
+
export interface LolEndOfGameTFTEndOfGameEventPVEViewModel {
|
|
7199
|
+
buddyName: string
|
|
7200
|
+
buddyIcon: string
|
|
7201
|
+
bossName: string
|
|
7202
|
+
affixes: string[]
|
|
7203
|
+
}
|
|
7204
|
+
|
|
7123
7205
|
export interface LolEndOfGameTFTEndOfGameItemViewModel {
|
|
7124
7206
|
name: string
|
|
7125
7207
|
icon: string
|
|
@@ -7196,6 +7278,7 @@ export interface LolEndOfGameTFTEndOfGameViewModel {
|
|
|
7196
7278
|
players: LolEndOfGameTFTEndOfGamePlayerViewModel[]
|
|
7197
7279
|
localPlayer?: LolEndOfGameTFTEndOfGamePlayerViewModel
|
|
7198
7280
|
playerSkillTreeEoG?: LolEndOfGameTFTEndOfGameSkillTreeViewModel
|
|
7281
|
+
eventPVEData?: LolEndOfGameTFTEndOfGameEventPVEViewModel
|
|
7199
7282
|
/** @format uint32 */
|
|
7200
7283
|
gameLength: number
|
|
7201
7284
|
/** @format uint64 */
|
|
@@ -7700,6 +7783,8 @@ export interface LolEventHubEventInfoUIData {
|
|
|
7700
7783
|
eventIcon: string
|
|
7701
7784
|
navBarIcon: string
|
|
7702
7785
|
battleExpIcon: string
|
|
7786
|
+
localizedSeasonLogo: string
|
|
7787
|
+
localizedShortName: string
|
|
7703
7788
|
eventTokenImage: string
|
|
7704
7789
|
startDate: string
|
|
7705
7790
|
progressEndDate: string
|
|
@@ -8717,6 +8802,8 @@ export interface LolEventHubSeasonPass {
|
|
|
8717
8802
|
upsellBackgroundImageUrl: string
|
|
8718
8803
|
upsellTooltipBackgroundImageUrl: string
|
|
8719
8804
|
objectiveBannerImage: string
|
|
8805
|
+
localizedSeasonLogo: string
|
|
8806
|
+
localizedShortName: string
|
|
8720
8807
|
chapters: LolEventHubChapter[]
|
|
8721
8808
|
}
|
|
8722
8809
|
|
|
@@ -9267,6 +9354,7 @@ export interface LolGameQueuesQueue {
|
|
|
9267
9354
|
gameSelectPriority: number
|
|
9268
9355
|
isLimitedTimeQueue: boolean
|
|
9269
9356
|
isSkillTreeQueue: boolean
|
|
9357
|
+
isBotHonoringAllowed: boolean
|
|
9270
9358
|
isCustom: boolean
|
|
9271
9359
|
/** @format uint32 */
|
|
9272
9360
|
numberOfTeamsInLobby: number
|
|
@@ -9359,6 +9447,7 @@ export interface LolGameQueuesQueueTranslation {
|
|
|
9359
9447
|
gameSelectPriority: number
|
|
9360
9448
|
isLimitedTimeQueue: boolean
|
|
9361
9449
|
isSkillTreeQueue: boolean
|
|
9450
|
+
isBotHonoringAllowed: boolean
|
|
9362
9451
|
hidePlayerPosition: boolean
|
|
9363
9452
|
}
|
|
9364
9453
|
|
|
@@ -9562,6 +9651,7 @@ export interface LolGameflowQueue {
|
|
|
9562
9651
|
/** @format int32 */
|
|
9563
9652
|
removalFromGameDelayMinutes: number
|
|
9564
9653
|
isCustom: boolean
|
|
9654
|
+
isBotHonoringAllowed: boolean
|
|
9565
9655
|
}
|
|
9566
9656
|
|
|
9567
9657
|
export type LolGameflowQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -9720,6 +9810,8 @@ export interface LolHonorV2EligiblePlayer {
|
|
|
9720
9810
|
summonerId: number
|
|
9721
9811
|
summonerName: string
|
|
9722
9812
|
championName: string
|
|
9813
|
+
/** @format int32 */
|
|
9814
|
+
championId: number
|
|
9723
9815
|
skinSplashPath: string
|
|
9724
9816
|
role: string
|
|
9725
9817
|
botPlayer: boolean
|
|
@@ -9736,6 +9828,8 @@ export interface LolHonorV2EndOfGamePlayer {
|
|
|
9736
9828
|
summonerId: number
|
|
9737
9829
|
skinSplashPath: string
|
|
9738
9830
|
championName: string
|
|
9831
|
+
/** @format int32 */
|
|
9832
|
+
championId: number
|
|
9739
9833
|
detectedTeamPosition: string
|
|
9740
9834
|
}
|
|
9741
9835
|
|
|
@@ -9786,6 +9880,7 @@ export interface LolHonorV2HonorConfig {
|
|
|
9786
9880
|
HonorSuggestionsEnabled: boolean
|
|
9787
9881
|
"honorEndpointsV2Enabled": boolean
|
|
9788
9882
|
"ceremonyV3Enabled": boolean
|
|
9883
|
+
useHonorInPostgamePlugin: boolean
|
|
9789
9884
|
}
|
|
9790
9885
|
|
|
9791
9886
|
export interface LolHonorV2HonorInteraction {
|
|
@@ -9811,6 +9906,12 @@ export interface LolHonorV2HonorSummoner {
|
|
|
9811
9906
|
summonerId: number
|
|
9812
9907
|
}
|
|
9813
9908
|
|
|
9909
|
+
export interface LolHonorV2HonorView {
|
|
9910
|
+
/** @format int32 */
|
|
9911
|
+
honorLevel: number
|
|
9912
|
+
redemptions: LolHonorV2Redemption[]
|
|
9913
|
+
}
|
|
9914
|
+
|
|
9814
9915
|
export interface LolHonorV2LoginSession {
|
|
9815
9916
|
state: LolHonorV2LoginSessionStates
|
|
9816
9917
|
}
|
|
@@ -9859,6 +9960,7 @@ export interface LolHonorV2Queue {
|
|
|
9859
9960
|
removalFromGameAllowed: boolean
|
|
9860
9961
|
/** @format int32 */
|
|
9861
9962
|
removalFromGameDelayMinutes: number
|
|
9963
|
+
isBotHonoringAllowed: boolean
|
|
9862
9964
|
}
|
|
9863
9965
|
|
|
9864
9966
|
export interface LolHonorV2Redemption {
|
|
@@ -11832,6 +11934,7 @@ export interface LolLobbyQueue {
|
|
|
11832
11934
|
/** @format uint8 */
|
|
11833
11935
|
gameSelectPriority: number
|
|
11834
11936
|
isSkillTreeQueue: boolean
|
|
11937
|
+
isBotHonoringAllowed: boolean
|
|
11835
11938
|
isCustom: boolean
|
|
11836
11939
|
/** @format uint32 */
|
|
11837
11940
|
numberOfTeamsInLobby: number
|
|
@@ -13266,6 +13369,10 @@ export interface LolMapsMaps {
|
|
|
13266
13369
|
platformName: string
|
|
13267
13370
|
assets: Record<string, string>
|
|
13268
13371
|
locStrings: Record<string, string>
|
|
13372
|
+
/** @format int32 */
|
|
13373
|
+
setModalButtonBottom: number
|
|
13374
|
+
/** @format int32 */
|
|
13375
|
+
setModalButtonLeft: number
|
|
13269
13376
|
categorizedContentBundles: unknown
|
|
13270
13377
|
tutorialCards: LolMapsTutorialCard[]
|
|
13271
13378
|
properties: unknown
|
|
@@ -13341,6 +13448,11 @@ export interface LolMarketplaceFulfillmentDto {
|
|
|
13341
13448
|
progressionCounterId: string
|
|
13342
13449
|
}
|
|
13343
13450
|
|
|
13451
|
+
export interface LolMarketplaceGameDataCompanion {
|
|
13452
|
+
contentId: string
|
|
13453
|
+
companionType: string
|
|
13454
|
+
}
|
|
13455
|
+
|
|
13344
13456
|
export interface LolMarketplacePagination {
|
|
13345
13457
|
/** @format uint32 */
|
|
13346
13458
|
offset: number
|
|
@@ -13625,6 +13737,13 @@ export interface LolMatchHistoryGAMHSMatchHistoryMetadata {
|
|
|
13625
13737
|
private: boolean
|
|
13626
13738
|
}
|
|
13627
13739
|
|
|
13740
|
+
export interface LolMatchHistoryGameDataChampionSummary {
|
|
13741
|
+
/** @format int32 */
|
|
13742
|
+
id: number
|
|
13743
|
+
name: string
|
|
13744
|
+
alias: string
|
|
13745
|
+
}
|
|
13746
|
+
|
|
13628
13747
|
export interface LolMatchHistoryLoginSession {
|
|
13629
13748
|
state: LolMatchHistoryLoginSessionStates
|
|
13630
13749
|
/** @format uint64 */
|
|
@@ -14296,6 +14415,7 @@ export interface LolMissionsCapMissionSeriesMissionReward {
|
|
|
14296
14415
|
itemId: string
|
|
14297
14416
|
itemTypeId: string
|
|
14298
14417
|
typeId: string
|
|
14418
|
+
currencyId: string
|
|
14299
14419
|
/** @format uint32 */
|
|
14300
14420
|
amount: number
|
|
14301
14421
|
}
|
|
@@ -15284,6 +15404,7 @@ export interface LolObjectivesCapMissionSeriesMissionReward {
|
|
|
15284
15404
|
itemId: string
|
|
15285
15405
|
itemTypeId: string
|
|
15286
15406
|
typeId: string
|
|
15407
|
+
currencyId: string
|
|
15287
15408
|
/** @format uint32 */
|
|
15288
15409
|
amount: number
|
|
15289
15410
|
}
|
|
@@ -15630,6 +15751,7 @@ export interface LolObjectivesTftBattlepassInfo {
|
|
|
15630
15751
|
premiumEntitlementId: string
|
|
15631
15752
|
pcPurchaseRequirement: string
|
|
15632
15753
|
passId: string
|
|
15754
|
+
hasLevelPurchasing: boolean
|
|
15633
15755
|
media: Record<string, string>
|
|
15634
15756
|
passType: LolObjectivesTftPassType
|
|
15635
15757
|
}
|
|
@@ -15735,6 +15857,11 @@ export interface LolObjectivesUserInfo {
|
|
|
15735
15857
|
userInfo: string
|
|
15736
15858
|
}
|
|
15737
15859
|
|
|
15860
|
+
export interface LolPatchAppUpdateConfig {
|
|
15861
|
+
disableDeprecatedProductIntegrationState: boolean
|
|
15862
|
+
enablePatchProxyState: boolean
|
|
15863
|
+
}
|
|
15864
|
+
|
|
15738
15865
|
export interface LolPatchChunkingPatcherEnvironment {
|
|
15739
15866
|
game_patcher_available: boolean
|
|
15740
15867
|
game_patcher_enabled: boolean
|
|
@@ -15776,11 +15903,6 @@ export interface LolPatchConfigStatus {
|
|
|
15776
15903
|
readiness: LolPatchConfigReadiness
|
|
15777
15904
|
}
|
|
15778
15905
|
|
|
15779
|
-
export interface LolPatchCurrentUpdateStatus {
|
|
15780
|
-
updateAvailable: boolean
|
|
15781
|
-
updateRequired: boolean
|
|
15782
|
-
}
|
|
15783
|
-
|
|
15784
15906
|
export interface LolPatchEntitlementsTokenResource {
|
|
15785
15907
|
accessToken: string
|
|
15786
15908
|
token: string
|
|
@@ -15800,6 +15922,11 @@ export interface LolPatchNotification {
|
|
|
15800
15922
|
|
|
15801
15923
|
export type LolPatchNotificationId = "BrokenPermissions" | "NotEnoughDiskSpace" | "DidRestoreClientBackup" | "FailedToWriteError" | "MissingFilesError" | "ConnectionError" | "UnspecifiedError"
|
|
15802
15924
|
|
|
15925
|
+
export interface LolPatchPatchProxyState {
|
|
15926
|
+
state: string
|
|
15927
|
+
launchable: boolean
|
|
15928
|
+
}
|
|
15929
|
+
|
|
15803
15930
|
export interface LolPatchPatchSieveCompatVersion {
|
|
15804
15931
|
id: string
|
|
15805
15932
|
}
|
|
@@ -15857,9 +15984,7 @@ export interface LolPatchPatcherSettings {
|
|
|
15857
15984
|
patchsieve_url: string
|
|
15858
15985
|
}
|
|
15859
15986
|
|
|
15860
|
-
export interface
|
|
15861
|
-
patchlineId: string
|
|
15862
|
-
productId: string
|
|
15987
|
+
export interface LolPatchProductIntegrationState {
|
|
15863
15988
|
updateAvailable: boolean
|
|
15864
15989
|
updateRequired: boolean
|
|
15865
15990
|
}
|
|
@@ -20959,7 +21084,7 @@ export type LolSuggestedPlayersSuggestedPlayersReason = "LegacyPlayAgain" | "Hon
|
|
|
20959
21084
|
|
|
20960
21085
|
export interface LolSuggestedPlayersSuggestedPlayersReportedPlayer {
|
|
20961
21086
|
/** @format uint64 */
|
|
20962
|
-
|
|
21087
|
+
offenderSummonerId: number
|
|
20963
21088
|
}
|
|
20964
21089
|
|
|
20965
21090
|
export interface LolSuggestedPlayersSuggestedPlayersSuggestedPlayer {
|
|
@@ -21104,14 +21229,47 @@ export type LolSummonerProfilePrivacyEnabledState = "DISABLED" | "ENABLED" | "UN
|
|
|
21104
21229
|
|
|
21105
21230
|
export type LolSummonerProfilePrivacySetting = "PUBLIC" | "PRIVATE"
|
|
21106
21231
|
|
|
21232
|
+
export interface LolSummonerProfilesChampionMasteryData {
|
|
21233
|
+
/** @format int64 */
|
|
21234
|
+
championId: number
|
|
21235
|
+
/** @format int32 */
|
|
21236
|
+
championLevel: number
|
|
21237
|
+
/** @format int32 */
|
|
21238
|
+
championPoints: number
|
|
21239
|
+
highestGrade?: string
|
|
21240
|
+
}
|
|
21241
|
+
|
|
21242
|
+
export interface LolSummonerProfilesChampionMasteryView {
|
|
21243
|
+
puuid: string
|
|
21244
|
+
data: LolSummonerProfilesChampionMasteryData[]
|
|
21245
|
+
}
|
|
21246
|
+
|
|
21247
|
+
export interface LolSummonerProfilesHonorView {
|
|
21248
|
+
/** @format int32 */
|
|
21249
|
+
honorLevel: number
|
|
21250
|
+
redemptions: LolSummonerProfilesRedemption[]
|
|
21251
|
+
}
|
|
21252
|
+
|
|
21253
|
+
export interface LolSummonerProfilesPrivacyView {
|
|
21254
|
+
anonymityEnabled: boolean
|
|
21255
|
+
}
|
|
21256
|
+
|
|
21107
21257
|
export interface LolSummonerProfilesPuuidAndViews {
|
|
21108
21258
|
payload: Record<string, LolSummonerProfilesViews>
|
|
21109
21259
|
}
|
|
21110
21260
|
|
|
21261
|
+
export interface LolSummonerProfilesRedemption {
|
|
21262
|
+
/** @format int32 */
|
|
21263
|
+
required: number
|
|
21264
|
+
/** @format int32 */
|
|
21265
|
+
remaining: number
|
|
21266
|
+
eventType: string
|
|
21267
|
+
}
|
|
21268
|
+
|
|
21111
21269
|
export interface LolSummonerProfilesSummonerLevel {
|
|
21112
21270
|
puuid: string
|
|
21113
21271
|
/** @format uint32 */
|
|
21114
|
-
|
|
21272
|
+
level: number
|
|
21115
21273
|
/** @format uint32 */
|
|
21116
21274
|
xpSinceLastLevel: number
|
|
21117
21275
|
/** @format uint32 */
|
|
@@ -21374,6 +21532,7 @@ export interface LolTftEventCapMissionSeriesMissionReward {
|
|
|
21374
21532
|
itemId: string
|
|
21375
21533
|
itemTypeId: string
|
|
21376
21534
|
typeId: string
|
|
21535
|
+
currencyId: string
|
|
21377
21536
|
/** @format uint32 */
|
|
21378
21537
|
amount: number
|
|
21379
21538
|
}
|
|
@@ -22009,6 +22168,8 @@ export interface LolTftPassEventInfoUIData {
|
|
|
22009
22168
|
eventIcon: string
|
|
22010
22169
|
navBarIcon: string
|
|
22011
22170
|
battleExpIcon: string
|
|
22171
|
+
localizedSeasonLogo: string
|
|
22172
|
+
localizedShortName: string
|
|
22012
22173
|
eventTokenImage: string
|
|
22013
22174
|
startDate: string
|
|
22014
22175
|
progressEndDate: string
|
|
@@ -22730,6 +22891,8 @@ export interface LolTftPassSeasonPass {
|
|
|
22730
22891
|
upsellBackgroundImageUrl: string
|
|
22731
22892
|
upsellTooltipBackgroundImageUrl: string
|
|
22732
22893
|
objectiveBannerImage: string
|
|
22894
|
+
localizedSeasonLogo: string
|
|
22895
|
+
localizedShortName: string
|
|
22733
22896
|
chapters: LolTftPassChapter[]
|
|
22734
22897
|
}
|
|
22735
22898
|
|
|
@@ -22836,6 +22999,7 @@ export interface LolTftPassTFTPassDTO {
|
|
|
22836
22999
|
premiumEntitlementID: string
|
|
22837
23000
|
storePurchaseIDs: Record<string, string>
|
|
22838
23001
|
milestones: LolTftPassTFTPassMilestoneDTO[]
|
|
23002
|
+
hasLevelPurchasing: boolean
|
|
22839
23003
|
status: string
|
|
22840
23004
|
}
|
|
22841
23005
|
|
|
@@ -22900,6 +23064,7 @@ export interface LolTftPassTftBattlepassInfo {
|
|
|
22900
23064
|
premiumEntitlementId: string
|
|
22901
23065
|
pcPurchaseRequirement: string
|
|
22902
23066
|
passId: string
|
|
23067
|
+
hasLevelPurchasing: boolean
|
|
22903
23068
|
media: Record<string, string>
|
|
22904
23069
|
passType: LolTftPassTftPassType
|
|
22905
23070
|
}
|
|
@@ -23273,6 +23438,7 @@ export interface LolTftSkillTreeTftBattlepassInfo {
|
|
|
23273
23438
|
premiumEntitlementId: string
|
|
23274
23439
|
pcPurchaseRequirement: string
|
|
23275
23440
|
passId: string
|
|
23441
|
+
hasLevelPurchasing: boolean
|
|
23276
23442
|
media: Record<string, string>
|
|
23277
23443
|
passType: LolTftSkillTreeTftPassType
|
|
23278
23444
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasagi/types",
|
|
3
|
-
"version": "15.
|
|
4
|
-
"_clientVersion": "15.
|
|
3
|
+
"version": "15.17.1",
|
|
4
|
+
"_clientVersion": "15.17.706.7883",
|
|
5
5
|
"description": "This package contains auto-generated LCU types and endpoints.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"update-types": "node scripts/update-types.mjs",
|