@hasagi/types 15.7.1 → 15.8.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.
@@ -978,7 +978,7 @@ export interface LCUEndpoints {
978
978
  get: { path: never, params: never, body: never, response: LCUTypes.LolEventHubTokenUpsell[] }
979
979
  },
980
980
  "/lol-event-mission/v1/event-mission": {
981
- get: { path: never, params: never, body: never, response: LCUTypes.LolTftEventTFTEventMissionChain[] }
981
+ get: { path: never, params: never, body: never, response: LCUTypes.LolTftEventTFTEventMissionChains[] }
982
982
  },
983
983
  "/lol-game-client-chat/v1/buddies": {
984
984
  get: { path: never, params: never, body: never, response: string[] }
@@ -1374,6 +1374,9 @@ export interface LCUEndpoints {
1374
1374
  "/lol-lobby-team-builder/champ-select/v1/session/timer": {
1375
1375
  get: { path: never, params: never, body: never, response: LCUTypes.LolLobbyTeamBuilderChampSelectTimer }
1376
1376
  },
1377
+ "/lol-lobby-team-builder/champ-select/v1/subset-champion-list": {
1378
+ get: { path: never, params: never, body: never, response: number[] }
1379
+ },
1377
1380
  "/lol-lobby-team-builder/champ-select/v1/team-boost": {
1378
1381
  get: { path: never, params: never, body: never, response: LCUTypes.LolLobbyTeamBuilderTeamBoost }
1379
1382
  },
@@ -1948,8 +1951,8 @@ export interface LCUEndpoints {
1948
1951
  "/lol-ranked/v1/eos-notifications": {
1949
1952
  get: { path: never, params: never, body: never, response: LCUTypes.LolRankedEosNotificationResource[] }
1950
1953
  },
1951
- "/lol-ranked/v1/eos-rewards": {
1952
- get: { path: never, params: never, body: never, response: LCUTypes.LolRankedEosRewardsConfig }
1954
+ "/lol-ranked/v1/eos-rewards/{seasonId}": {
1955
+ get: { path: [seasonId: number], params: never, body: never, response: LCUTypes.LolRankedLolEosRewardsConfigGameData }
1953
1956
  },
1954
1957
  "/lol-ranked/v1/league-ladders/{puuid}": {
1955
1958
  get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolRankedLeagueLadderInfo[] }
@@ -2318,6 +2321,9 @@ export interface LCUEndpoints {
2318
2321
  "/lol-tastes/v1/tft-overview-model": {
2319
2322
  get: { path: never, params: never, body: never, response: LCUTypes.LolTastesDataModelResponse }
2320
2323
  },
2324
+ "/lol-tft-pass/v1/active-passes": {
2325
+ get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass[] }
2326
+ },
2321
2327
  "/lol-tft-pass/v1/battle-pass": {
2322
2328
  get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass }
2323
2329
  },
@@ -2693,6 +2699,9 @@ export interface LCUEndpoints {
2693
2699
  "/lol-activity-center/v1/clear-cache": {
2694
2700
  post: { path: never, params: never, body: never, response: unknown }
2695
2701
  },
2702
+ "/lol-cap-missions/v1/markasviewed": {
2703
+ post: { path: never, params: never, body: LCUTypes.LolCapMissionsCapMissionsMarkAsViewedPostBodyEvent[], response: unknown }
2704
+ },
2696
2705
  "/lol-challenges/v1/ack-challenge-update/{id}": {
2697
2706
  post: { path: [id: number], params: never, body: never, response: unknown }
2698
2707
  },
@@ -24,6 +24,7 @@ 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,
27
28
  "OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
28
29
  "OnJsonApiEvent_lol-activity-center_v1_ready": LCUTypes.PluginResourceEvent,
29
30
  "OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
@@ -59,7 +60,9 @@ export interface LCUWebSocketEvents {
59
60
  "OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
60
61
  "OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
61
62
  "OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
63
+ "OnJsonApiEvent_lol-clash_v1_all-tournaments": LCUTypes.PluginResourceEvent,
62
64
  "OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
65
+ "OnJsonApiEvent_lol-clash_v1_currentTournamentIds": LCUTypes.PluginResourceEvent,
63
66
  "OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
64
67
  "OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
65
68
  "OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
@@ -69,6 +72,9 @@ export interface LCUWebSocketEvents {
69
72
  "OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
70
73
  "OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
71
74
  "OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
75
+ "OnJsonApiEvent_lol-clash_v1_tournament": LCUTypes.PluginResourceEvent,
76
+ "OnJsonApiEvent_lol-clash_v1_tournament-state-info": LCUTypes.PluginResourceEvent,
77
+ "OnJsonApiEvent_lol-clash_v1_tournament-summary": LCUTypes.PluginResourceEvent,
72
78
  "OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
73
79
  "OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
74
80
  "OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
@@ -85,6 +91,7 @@ export interface LCUWebSocketEvents {
85
91
  "OnJsonApiEvent_lol-event-hub_v1_navigation-button-data": LCUTypes.PluginResourceEvent,
86
92
  "OnJsonApiEvent_lol-event-hub_v1_skins": LCUTypes.PluginResourceEvent,
87
93
  "OnJsonApiEvent_lol-event-hub_v1_token-upsell": LCUTypes.PluginResourceEvent,
94
+ "OnJsonApiEvent_lol-event-mission_v1_event-mission": LCUTypes.PluginResourceEvent,
88
95
  "OnJsonApiEvent_lol-game-client-chat_v1_buddies": LCUTypes.PluginResourceEvent,
89
96
  "OnJsonApiEvent_lol-game-client-chat_v1_instant-messages": LCUTypes.PluginResourceEvent,
90
97
  "OnJsonApiEvent_lol-game-client-chat_v2_buddies": LCUTypes.PluginResourceEvent,
@@ -152,12 +159,8 @@ export interface LCUWebSocketEvents {
152
159
  "OnJsonApiEvent_lol-loot_v1_currency-configuration": LCUTypes.PluginResourceEvent,
153
160
  "OnJsonApiEvent_lol-loot_v1_enabled": LCUTypes.PluginResourceEvent,
154
161
  "OnJsonApiEvent_lol-loot_v1_milestones": LCUTypes.PluginResourceEvent,
155
- "OnJsonApiEvent_lol-loot_v1_player-display-categories": LCUTypes.PluginResourceEvent,
156
- "OnJsonApiEvent_lol-loot_v1_player-loot": LCUTypes.PluginResourceEvent,
157
- "OnJsonApiEvent_lol-loot_v1_player-loot-map": LCUTypes.PluginResourceEvent,
158
162
  "OnJsonApiEvent_lol-loot_v1_ready": LCUTypes.PluginResourceEvent,
159
163
  "OnJsonApiEvent_lol-loot_v1_recipes": LCUTypes.PluginResourceEvent,
160
- "OnJsonApiEvent_lol-loot_v2_player-loot-map": LCUTypes.PluginResourceEvent,
161
164
  "OnJsonApiEvent_lol-loyalty_v1_status-notification": LCUTypes.PluginResourceEvent,
162
165
  "OnJsonApiEvent_lol-maps_v1_maps": LCUTypes.PluginResourceEvent,
163
166
  "OnJsonApiEvent_lol-maps_v2_maps": LCUTypes.PluginResourceEvent,
@@ -290,7 +293,6 @@ export interface LCUWebSocketEvents {
290
293
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_PremiumTicketsEnabled": LCUTypes.PluginResourceEvent,
291
294
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ScoutingEnabled": LCUTypes.PluginResourceEvent,
292
295
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_StorePageLink": LCUTypes.PluginResourceEvent,
293
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_SubstitutionEnabled": LCUTypes.PluginResourceEvent,
294
296
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ThirdPartyInvitesEnabled": LCUTypes.PluginResourceEvent,
295
297
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_TutorialEnabled": LCUTypes.PluginResourceEvent,
296
298
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_Visibility": LCUTypes.PluginResourceEvent,
@@ -362,6 +364,7 @@ export interface LCUWebSocketEvents {
362
364
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame": LCUTypes.PluginResourceEvent,
363
365
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_BotsAvailableInAram": LCUTypes.PluginResourceEvent,
364
366
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_MinorRestrictionsEnabled": LCUTypes.PluginResourceEvent,
367
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampion": LCUTypes.PluginResourceEvent,
365
368
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
366
369
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
367
370
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChromas": LCUTypes.PluginResourceEvent,
@@ -388,6 +391,7 @@ export interface LCUWebSocketEvents {
388
391
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_GAMEMODEX": LCUTypes.PluginResourceEvent,
389
392
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_HEXAKILL": LCUTypes.PluginResourceEvent,
390
393
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO": LCUTypes.PluginResourceEvent,
394
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO-5X5": LCUTypes.PluginResourceEvent,
391
395
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KING_PORO": LCUTypes.PluginResourceEvent,
392
396
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY23_TFT": LCUTypes.PluginResourceEvent,
393
397
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY24_TFT": LCUTypes.PluginResourceEvent,
@@ -398,6 +402,9 @@ export interface LCUWebSocketEvents {
398
402
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_3x3": LCUTypes.PluginResourceEvent,
399
403
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_TFT": LCUTypes.PluginResourceEvent,
400
404
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN": LCUTypes.PluginResourceEvent,
405
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT": LCUTypes.PluginResourceEvent,
406
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT-5x5": LCUTypes.PluginResourceEvent,
407
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT_5x5": LCUTypes.PluginResourceEvent,
401
408
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN_UNRANKED": LCUTypes.PluginResourceEvent,
402
409
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODYSSEY": LCUTypes.PluginResourceEvent,
403
410
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ONEFORALL": LCUTypes.PluginResourceEvent,
@@ -406,6 +413,8 @@ export interface LCUWebSocketEvents {
406
413
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_PVE_PUZZLE_TFT": LCUTypes.PluginResourceEvent,
407
414
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_SR": LCUTypes.PluginResourceEvent,
408
415
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_TT": LCUTypes.PluginResourceEvent,
416
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_PREMADE_3x3": LCUTypes.PluginResourceEvent,
417
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_PREMADE_5x5": LCUTypes.PluginResourceEvent,
409
418
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_SOLO_5x5": LCUTypes.PluginResourceEvent,
410
419
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_3x3": LCUTypes.PluginResourceEvent,
411
420
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_5x5": LCUTypes.PluginResourceEvent,
@@ -474,14 +483,14 @@ export interface LCUWebSocketEvents {
474
483
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes": LCUTypes.PluginResourceEvent,
475
484
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmotePanelEnabled": LCUTypes.PluginResourceEvent,
476
485
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmoteTutorialModalEnabled": LCUTypes.PluginResourceEvent,
486
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings": LCUTypes.PluginResourceEvent,
487
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
488
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
489
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
490
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
491
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
477
492
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting": LCUTypes.PluginResourceEvent,
478
493
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting_Enabled": LCUTypes.PluginResourceEvent,
479
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings": LCUTypes.PluginResourceEvent,
480
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
481
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
482
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
483
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
484
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
485
494
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting": LCUTypes.PluginResourceEvent,
486
495
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting_GameAgnosticReportingTrinary": LCUTypes.PluginResourceEvent,
487
496
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Esports_NotificationsAssetMagickURL": LCUTypes.PluginResourceEvent,
@@ -513,6 +522,8 @@ export interface LCUWebSocketEvents {
513
522
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync": LCUTypes.PluginResourceEvent,
514
523
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_Enabled": LCUTypes.PluginResourceEvent,
515
524
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_PercentOfTotalTimerToSyncAt": LCUTypes.PluginResourceEvent,
525
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow": LCUTypes.PluginResourceEvent,
526
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ForceGameLocaleAsEnglish": LCUTypes.PluginResourceEvent,
516
527
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ShouldSendRiotClientHeartBeat": LCUTypes.PluginResourceEvent,
517
528
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GeoInfo": LCUTypes.PluginResourceEvent,
518
529
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GuestSlots": LCUTypes.PluginResourceEvent,
@@ -523,6 +534,8 @@ export interface LCUWebSocketEvents {
523
534
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Enabled": LCUTypes.PluginResourceEvent,
524
535
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Honor2018Enabled": LCUTypes.PluginResourceEvent,
525
536
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_SecondsToVote": LCUTypes.PluginResourceEvent,
537
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig": LCUTypes.PluginResourceEvent,
538
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig_EnabledState": LCUTypes.PluginResourceEvent,
526
539
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory": LCUTypes.PluginResourceEvent,
527
540
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_BaseServiceUrl": LCUTypes.PluginResourceEvent,
528
541
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_Enabled": LCUTypes.PluginResourceEvent,
@@ -538,20 +551,14 @@ export interface LCUWebSocketEvents {
538
551
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS": LCUTypes.PluginResourceEvent,
539
552
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_Endpoint": LCUTypes.PluginResourceEvent,
540
553
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_UseIdTokens": LCUTypes.PluginResourceEvent,
541
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
542
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
543
554
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections": LCUTypes.PluginResourceEvent,
544
555
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_Enabled": LCUTypes.PluginResourceEvent,
545
556
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUAugmentsVisible": LCUTypes.PluginResourceEvent,
546
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesChromasEnabled": LCUTypes.PluginResourceEvent,
547
557
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesFinishersEnabled": LCUTypes.PluginResourceEvent,
548
558
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUMasteriesVisible": LCUTypes.PluginResourceEvent,
549
559
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUPerksVisible": LCUTypes.PluginResourceEvent,
550
560
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCURunesVisible": LCUTypes.PluginResourceEvent,
551
561
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUSkinsViewerEnabled": LCUTypes.PluginResourceEvent,
552
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory": LCUTypes.PluginResourceEvent,
553
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_Enabled": LCUTypes.PluginResourceEvent,
554
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_MatchHistoryWebURL": LCUTypes.PluginResourceEvent,
555
562
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore": LCUTypes.PluginResourceEvent,
556
563
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_CanQueryInactiveItems": LCUTypes.PluginResourceEvent,
557
564
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_DisableCapRMS": LCUTypes.PluginResourceEvent,
@@ -567,10 +574,9 @@ export interface LCUWebSocketEvents {
567
574
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_UseRsoAccessToken": LCUTypes.PluginResourceEvent,
568
575
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteEnabled": LCUTypes.PluginResourceEvent,
569
576
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteURL": LCUTypes.PluginResourceEvent,
577
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
578
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
570
579
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Enabled": LCUTypes.PluginResourceEvent,
571
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout": LCUTypes.PluginResourceEvent,
572
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleExitAfterWarningMinutes": LCUTypes.PluginResourceEvent,
573
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleWarningMinutes": LCUTypes.PluginResourceEvent,
574
580
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate": LCUTypes.PluginResourceEvent,
575
581
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate_Enabled": LCUTypes.PluginResourceEvent,
576
582
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionDetails": LCUTypes.PluginResourceEvent,
@@ -696,7 +702,6 @@ export interface LCUWebSocketEvents {
696
702
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_HubEnabled": LCUTypes.PluginResourceEvent,
697
703
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_MatchHistoryEnabled": LCUTypes.PluginResourceEvent,
698
704
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_OrbEnabled": LCUTypes.PluginResourceEvent,
699
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_PatchNotesUrl": LCUTypes.PluginResourceEvent,
700
705
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_PlayButtonEnabled": LCUTypes.PluginResourceEvent,
701
706
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_SeriesInternalName": LCUTypes.PluginResourceEvent,
702
707
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_TftHomeEnabled": LCUTypes.PluginResourceEvent,
@@ -728,6 +733,7 @@ export interface LCUWebSocketEvents {
728
733
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_FlexRestrictionModalEnabled": LCUTypes.PluginResourceEvent,
729
734
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsGlobalNotificationsEnabled": LCUTypes.PluginResourceEvent,
730
735
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsPreseason": LCUTypes.PluginResourceEvent,
736
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSplitStartModalEnabled": LCUTypes.PluginResourceEvent,
731
737
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_JWTEnabled": LCUTypes.PluginResourceEvent,
732
738
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_LeagueServiceEnabled": LCUTypes.PluginResourceEvent,
733
739
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_MasterTierEnabled": LCUTypes.PluginResourceEvent,
@@ -808,11 +814,6 @@ export interface LCUWebSocketEvents {
808
814
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount3": LCUTypes.PluginResourceEvent,
809
815
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount4": LCUTypes.PluginResourceEvent,
810
816
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount5": LCUTypes.PluginResourceEvent,
811
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId1": LCUTypes.PluginResourceEvent,
812
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId2": LCUTypes.PluginResourceEvent,
813
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId3": LCUTypes.PluginResourceEvent,
814
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId4": LCUTypes.PluginResourceEvent,
815
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId5": LCUTypes.PluginResourceEvent,
816
817
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EnableMythicEssenceDisplay": LCUTypes.PluginResourceEvent,
817
818
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Enabled": LCUTypes.PluginResourceEvent,
818
819
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EventChestBundleId1": LCUTypes.PluginResourceEvent,
@@ -834,11 +835,6 @@ export interface LCUWebSocketEvents {
834
835
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
835
836
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Visible": LCUTypes.PluginResourceEvent,
836
837
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_WorldsTokensEnabled": LCUTypes.PluginResourceEvent,
837
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService": LCUTypes.PluginResourceEvent,
838
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Enabled": LCUTypes.PluginResourceEvent,
839
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_NewPlayerChestEnabled": LCUTypes.PluginResourceEvent,
840
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
841
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Visible": LCUTypes.PluginResourceEvent,
842
838
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries": LCUTypes.PluginResourceEvent,
843
839
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries_ShowPointsResetMessage": LCUTypes.PluginResourceEvent,
844
840
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Missions": LCUTypes.PluginResourceEvent,
@@ -872,12 +868,6 @@ export interface LCUWebSocketEvents {
872
868
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro": LCUTypes.PluginResourceEvent,
873
869
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_IntroUrl": LCUTypes.PluginResourceEvent,
874
870
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_NewSummonerIconIds": LCUTypes.PluginResourceEvent,
875
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage": LCUTypes.PluginResourceEvent,
876
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_ChampDisplayList": LCUTypes.PluginResourceEvent,
877
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_Enabled": LCUTypes.PluginResourceEvent,
878
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_LikeUsURL": LCUTypes.PluginResourceEvent,
879
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_MaxLevel": LCUTypes.PluginResourceEvent,
880
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_SubscribeURL": LCUTypes.PluginResourceEvent,
881
871
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter": LCUTypes.PluginResourceEvent,
882
872
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_ABDisablingOfTutorial": LCUTypes.PluginResourceEvent,
883
873
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_QueueID": LCUTypes.PluginResourceEvent,
@@ -974,29 +964,31 @@ export interface LCUWebSocketEvents {
974
964
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId470": LCUTypes.PluginResourceEvent,
975
965
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId9": LCUTypes.PluginResourceEvent,
976
966
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2": LCUTypes.PluginResourceEvent,
977
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId4": LCUTypes.PluginResourceEvent,
967
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId410": LCUTypes.PluginResourceEvent,
978
968
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
979
969
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId440": LCUTypes.PluginResourceEvent,
980
970
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId470": LCUTypes.PluginResourceEvent,
981
971
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId9": LCUTypes.PluginResourceEvent,
982
972
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3": LCUTypes.PluginResourceEvent,
973
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId410": LCUTypes.PluginResourceEvent,
983
974
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId420": LCUTypes.PluginResourceEvent,
984
975
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId440": LCUTypes.PluginResourceEvent,
985
976
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId470": LCUTypes.PluginResourceEvent,
986
977
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId9": LCUTypes.PluginResourceEvent,
987
978
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4": LCUTypes.PluginResourceEvent,
979
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId410": LCUTypes.PluginResourceEvent,
988
980
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId420": LCUTypes.PluginResourceEvent,
989
981
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId440": LCUTypes.PluginResourceEvent,
990
982
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId470": LCUTypes.PluginResourceEvent,
991
983
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId9": LCUTypes.PluginResourceEvent,
992
984
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5": LCUTypes.PluginResourceEvent,
985
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId410": LCUTypes.PluginResourceEvent,
993
986
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId420": LCUTypes.PluginResourceEvent,
994
987
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId440": LCUTypes.PluginResourceEvent,
995
988
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId470": LCUTypes.PluginResourceEvent,
996
989
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId9": LCUTypes.PluginResourceEvent,
997
990
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_QueuesRequiringTwentyChampions": LCUTypes.PluginResourceEvent,
998
991
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTier": LCUTypes.PluginResourceEvent,
999
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId4": LCUTypes.PluginResourceEvent,
1000
992
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId410": LCUTypes.PluginResourceEvent,
1001
993
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId420": LCUTypes.PluginResourceEvent,
1002
994
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId440": LCUTypes.PluginResourceEvent,
@@ -1009,35 +1001,30 @@ export interface LCUWebSocketEvents {
1009
1001
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeRestrictionEnabled": LCUTypes.PluginResourceEvent,
1010
1002
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeTier": LCUTypes.PluginResourceEvent,
1011
1003
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTier": LCUTypes.PluginResourceEvent,
1012
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId4": LCUTypes.PluginResourceEvent,
1013
1004
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId410": LCUTypes.PluginResourceEvent,
1014
1005
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId420": LCUTypes.PluginResourceEvent,
1015
1006
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId440": LCUTypes.PluginResourceEvent,
1016
1007
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId470": LCUTypes.PluginResourceEvent,
1017
1008
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId9": LCUTypes.PluginResourceEvent,
1018
1009
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
1019
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
1020
1010
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
1021
1011
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
1022
1012
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
1023
1013
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
1024
1014
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
1025
1015
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMode": LCUTypes.PluginResourceEvent,
1026
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
1027
1016
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
1028
1017
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
1029
1018
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
1030
1019
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId470": LCUTypes.PluginResourceEvent,
1031
1020
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId9": LCUTypes.PluginResourceEvent,
1032
1021
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
1033
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
1034
1022
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
1035
1023
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
1036
1024
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
1037
1025
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
1038
1026
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
1039
1027
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMode": LCUTypes.PluginResourceEvent,
1040
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
1041
1028
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
1042
1029
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
1043
1030
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
@@ -1050,6 +1037,9 @@ export interface LCUWebSocketEvents {
1050
1037
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_ThirdPersonAccessibleGameQueues": LCUTypes.PluginResourceEvent,
1051
1038
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards": LCUTypes.PluginResourceEvent,
1052
1039
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards_Enabled": LCUTypes.PluginResourceEvent,
1040
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring": LCUTypes.PluginResourceEvent,
1041
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitInterval": LCUTypes.PluginResourceEvent,
1042
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitMaxActions": LCUTypes.PluginResourceEvent,
1053
1043
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer": LCUTypes.PluginResourceEvent,
1054
1044
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer_Level1Unfilter": LCUTypes.PluginResourceEvent,
1055
1045
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SeasonReward": LCUTypes.PluginResourceEvent,
@@ -1072,14 +1062,12 @@ export interface LCUWebSocketEvents {
1072
1062
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_MatchHistoryUrlTemplate": LCUTypes.PluginResourceEvent,
1073
1063
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareEndOfGameEnabled": LCUTypes.PluginResourceEvent,
1074
1064
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareGameUrlTemplate": LCUTypes.PluginResourceEvent,
1075
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareMatchHistory": LCUTypes.PluginResourceEvent,
1076
1065
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals": LCUTypes.PluginResourceEvent,
1077
1066
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals_Enabled": LCUTypes.PluginResourceEvent,
1078
1067
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer": LCUTypes.PluginResourceEvent,
1079
1068
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer_VintageSkinSummonerIconConfig": LCUTypes.PluginResourceEvent,
1080
1069
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard": LCUTypes.PluginResourceEvent,
1081
1070
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_IsSocialLeaderboardEnabled": LCUTypes.PluginResourceEvent,
1082
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_LeaguesPuuidPageSize": LCUTypes.PluginResourceEvent,
1083
1071
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_MinsTillCacheExpiry": LCUTypes.PluginResourceEvent,
1084
1072
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_SecsTillAvailabilityCacheExpiry": LCUTypes.PluginResourceEvent,
1085
1073
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_UseSocialLeaderboardLeaguesEndpoint": LCUTypes.PluginResourceEvent,
@@ -1097,7 +1085,9 @@ export interface LCUWebSocketEvents {
1097
1085
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_OnlineFriendsLimit": LCUTypes.PluginResourceEvent,
1098
1086
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_PreviousPremadesLimit": LCUTypes.PluginResourceEvent,
1099
1087
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_VictoriousComradesLimit": LCUTypes.PluginResourceEvent,
1088
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner": LCUTypes.PluginResourceEvent,
1100
1089
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_ConfigRefreshIntervalSeconds": LCUTypes.PluginResourceEvent,
1090
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTEnabled": LCUTypes.PluginResourceEvent,
1101
1091
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMaxTimeoutSeconds": LCUTypes.PluginResourceEvent,
1102
1092
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMinTimeoutSeconds": LCUTypes.PluginResourceEvent,
1103
1093
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_SummonerProfileCacheEnabled": LCUTypes.PluginResourceEvent,
@@ -1105,7 +1095,6 @@ export interface LCUWebSocketEvents {
1105
1095
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_AllSkinEnabled": LCUTypes.PluginResourceEvent,
1106
1096
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_RandomSkinEnabled": LCUTypes.PluginResourceEvent,
1107
1097
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft": LCUTypes.PluginResourceEvent,
1108
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ActionTimeoutRecoveryEnabled": LCUTypes.PluginResourceEvent,
1109
1098
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EnableChampionSelectPreferences": LCUTypes.PluginResourceEvent,
1110
1099
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EstimatedWaitAdjustmentEnabled": LCUTypes.PluginResourceEvent,
1111
1100
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_FillPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
@@ -1113,6 +1102,7 @@ export interface LCUWebSocketEvents {
1113
1102
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_LogAllLCDSMessages": LCUTypes.PluginResourceEvent,
1114
1103
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_MidPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
1115
1104
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendAfkCheckMetricsEnabled": LCUTypes.PluginResourceEvent,
1105
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendSummonerIconJwt": LCUTypes.PluginResourceEvent,
1116
1106
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ServiceCallTimeoutMillis": LCUTypes.PluginResourceEvent,
1117
1107
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SkinPurchaseEnabled": LCUTypes.PluginResourceEvent,
1118
1108
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SupportPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
@@ -1121,8 +1111,6 @@ export interface LCUWebSocketEvents {
1121
1111
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_TakeoverEnabled": LCUTypes.PluginResourceEvent,
1122
1112
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_UnlockLockInButtonTimeoutEnabled": LCUTypes.PluginResourceEvent,
1123
1113
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction_Enabled": LCUTypes.PluginResourceEvent,
1124
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing": LCUTypes.PluginResourceEvent,
1125
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing_Rcarter": LCUTypes.PluginResourceEvent,
1126
1114
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification": LCUTypes.PluginResourceEvent,
1127
1115
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification_CAHServiceEnabled": LCUTypes.PluginResourceEvent,
1128
1116
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Trophies": LCUTypes.PluginResourceEvent,
@@ -1152,7 +1140,7 @@ export interface LCUWebSocketEvents {
1152
1140
  "OnJsonApiEvent_lol-purchase-widget_v3_purchase-offer-order-statuses": LCUTypes.PluginResourceEvent,
1153
1141
  "OnJsonApiEvent_lol-ranked_v1_challenger-ladders-enabled": LCUTypes.PluginResourceEvent,
1154
1142
  "OnJsonApiEvent_lol-ranked_v1_current-ranked-stats": LCUTypes.PluginResourceEvent,
1155
- "OnJsonApiEvent_lol-ranked_v1_eos-rewards": LCUTypes.PluginResourceEvent,
1143
+ "OnJsonApiEvent_lol-ranked_v1_eos-notifications": LCUTypes.PluginResourceEvent,
1156
1144
  "OnJsonApiEvent_lol-ranked_v1_global-notifications": LCUTypes.PluginResourceEvent,
1157
1145
  "OnJsonApiEvent_lol-ranked_v1_notifications": LCUTypes.PluginResourceEvent,
1158
1146
  "OnJsonApiEvent_lol-ranked_v1_ranked-stats": LCUTypes.PluginResourceEvent,
@@ -1168,6 +1156,7 @@ export interface LCUWebSocketEvents {
1168
1156
  "OnJsonApiEvent_lol-rewards_v1_groups": LCUTypes.PluginResourceEvent,
1169
1157
  "OnJsonApiEvent_lol-rso-auth_configuration_v3": LCUTypes.PluginResourceEvent,
1170
1158
  "OnJsonApiEvent_lol-rso-auth_v1_authorization": LCUTypes.PluginResourceEvent,
1159
+ "OnJsonApiEvent_lol-service-status_v1_ticker-messages": LCUTypes.PluginResourceEvent,
1171
1160
  "OnJsonApiEvent_lol-settings_v1_account": LCUTypes.PluginResourceEvent,
1172
1161
  "OnJsonApiEvent_lol-settings_v1_local": LCUTypes.PluginResourceEvent,
1173
1162
  "OnJsonApiEvent_lol-settings_v2_account": LCUTypes.PluginResourceEvent,
@@ -1186,6 +1175,8 @@ export interface LCUWebSocketEvents {
1186
1175
  "OnJsonApiEvent_lol-summoner_v1_status": LCUTypes.PluginResourceEvent,
1187
1176
  "OnJsonApiEvent_lol-summoner_v1_summoner-requests-ready": LCUTypes.PluginResourceEvent,
1188
1177
  "OnJsonApiEvent_lol-tastes_v1_ready": LCUTypes.PluginResourceEvent,
1178
+ "OnJsonApiEvent_lol-tft-pass_v1_active-passes": LCUTypes.PluginResourceEvent,
1179
+ "OnJsonApiEvent_lol-tft-pass_v1_battle-pass": LCUTypes.PluginResourceEvent,
1189
1180
  "OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
1190
1181
  "OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
1191
1182
  "OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,