@hasagi/types 15.21.1 → 15.23.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.
@@ -420,6 +420,9 @@ export interface LCUEndpoints {
420
420
  "/lol-catalog/v1/items": {
421
421
  get: { path: never, params: { "inventoryType": string, "itemIds": number[] }, body: never, response: LCUTypes.LolCatalogItemChoiceDetails[] }
422
422
  },
423
+ "/lol-catalog/v1/items/{bundleId}/related-items": {
424
+ get: { path: [bundleId: number], params: never, body: never, response: LCUTypes.LolCatalogCatalogPluginItemWithDetails[] }
425
+ },
423
426
  "/lol-catalog/v1/items/{inventoryType}": {
424
427
  get: { path: [inventoryType: string], params: never, body: never, response: LCUTypes.LolCatalogCatalogPluginItem[] }
425
428
  },
@@ -674,6 +677,12 @@ export interface LCUEndpoints {
674
677
  "/lol-chat/v1/friends": {
675
678
  get: { path: never, params: never, body: never, response: LCUTypes.LolChatFriendResource[] }
676
679
  },
680
+ "/lol-chat/v1/is-discord-link-available": {
681
+ get: { path: never, params: never, body: never, response: boolean }
682
+ },
683
+ "/lol-chat/v1/is-discord-linked": {
684
+ get: { path: never, params: never, body: never, response: boolean }
685
+ },
677
686
  "/lol-chat/v1/me": {
678
687
  get: { path: never, params: never, body: never, response: LCUTypes.LolChatUserResource }
679
688
  put: { path: never, params: never, body: LCUTypes.LolChatUserResource, response: LCUTypes.LolChatUserResource }
@@ -1434,7 +1443,7 @@ export interface LCUEndpoints {
1434
1443
  },
1435
1444
  "/lol-lobby/v1/lobby/invitations": {
1436
1445
  get: { path: never, params: never, body: never, response: LCUTypes.LolLobbyLobbyInvitation[] }
1437
- post: { path: never, params: never, body: LCUTypes.LolLobbyLobbyInvitation, response: LCUTypes.LolLobbyLobbyInvitation }
1446
+ post: { path: never, params: never, body: never, response: LCUTypes.LolLobbyLobbyInvitation }
1438
1447
  },
1439
1448
  "/lol-lobby/v1/lobby/invitations/{id}": {
1440
1449
  get: { path: [id: string], params: never, body: never, response: LCUTypes.LolLobbyLobbyInvitation }
@@ -1963,8 +1972,8 @@ export interface LCUEndpoints {
1963
1972
  "/lol-purchase-widget/v1/configuration": {
1964
1973
  get: { path: never, params: never, body: never, response: LCUTypes.LolPurchaseWidgetPurchaseWidgetConfig }
1965
1974
  },
1966
- "/lol-purchase-widget/v1/items/{skinId}/related-bundles": {
1967
- get: { path: [skinId: number], params: never, body: never, response: LCUTypes.LolPurchaseWidgetCatalogPluginItemWithDetails[] }
1975
+ "/lol-purchase-widget/v1/items/{itemId}/related-bundles": {
1976
+ get: { path: [itemId: number], params: { "inventoryType": string }, body: never, response: LCUTypes.LolPurchaseWidgetCatalogPluginItemWithDetails[] }
1968
1977
  },
1969
1978
  "/lol-purchase-widget/v1/order-notifications": {
1970
1979
  get: { path: never, params: never, body: never, response: LCUTypes.LolPurchaseWidgetOrderNotificationResource[] }
@@ -2217,6 +2226,9 @@ export interface LCUEndpoints {
2217
2226
  "/lol-spectator/v1/spectate/config": {
2218
2227
  get: { path: never, params: never, body: never, response: LCUTypes.LolSpectatorSpectatorConfig }
2219
2228
  },
2229
+ "/lol-spectator/v3/buddy/can-spectate/{puuid}/{spectatorKey}": {
2230
+ get: { path: [puuid: string, spectatorKey: string], params: never, body: never, response: LCUTypes.LolSpectatorSpectatorKeySpectateResource }
2231
+ },
2220
2232
  "/lol-statstones/v1/eog-notifications/{gameId}": {
2221
2233
  get: { path: [gameId: number], params: never, body: never, response: LCUTypes.LolStatstonesEogNotificationEnvelope }
2222
2234
  },
@@ -2944,6 +2956,9 @@ export interface LCUEndpoints {
2944
2956
  "/lol-chat/v1/conversations/eog-chat-toggle": {
2945
2957
  post: { path: never, params: never, body: boolean, response: unknown }
2946
2958
  },
2959
+ "/lol-chat/v1/discord-link": {
2960
+ post: { path: never, params: never, body: void, response: unknown }
2961
+ },
2947
2962
  "/lol-chat/v1/system-mutes": {
2948
2963
  post: { path: never, params: never, body: LCUTypes.LolChatPlayerMuteUpdate, response: unknown }
2949
2964
  },
@@ -24,13 +24,14 @@ 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,
30
31
  "OnJsonApiEvent_lol-cap-missions_v1_ready": LCUTypes.PluginResourceEvent,
32
+ "OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
31
33
  "OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
32
34
  "OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
33
- "OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
34
35
  "OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
35
36
  "OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
36
37
  "OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
@@ -44,6 +45,7 @@ export interface LCUWebSocketEvents {
44
45
  "OnJsonApiEvent_lol-champ-select_v1_muted-players": LCUTypes.PluginResourceEvent,
45
46
  "OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
46
47
  "OnJsonApiEvent_lol-champ-select_v1_team-boost": LCUTypes.PluginResourceEvent,
48
+ "OnJsonApiEvent_lol-champion-mastery_v1_champion-mastery-view": LCUTypes.PluginResourceEvent,
47
49
  "OnJsonApiEvent_lol-champion-mastery_v1_champion-mastery-view-enabled": LCUTypes.PluginResourceEvent,
48
50
  "OnJsonApiEvent_lol-champion-mastery_v1_local-player": LCUTypes.PluginResourceEvent,
49
51
  "OnJsonApiEvent_lol-champion-mastery_v1_ready": LCUTypes.PluginResourceEvent,
@@ -60,7 +62,9 @@ export interface LCUWebSocketEvents {
60
62
  "OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
61
63
  "OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
62
64
  "OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
65
+ "OnJsonApiEvent_lol-clash_v1_all-tournaments": LCUTypes.PluginResourceEvent,
63
66
  "OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
67
+ "OnJsonApiEvent_lol-clash_v1_currentTournamentIds": LCUTypes.PluginResourceEvent,
64
68
  "OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
65
69
  "OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
66
70
  "OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
@@ -70,6 +74,9 @@ export interface LCUWebSocketEvents {
70
74
  "OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
71
75
  "OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
72
76
  "OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
77
+ "OnJsonApiEvent_lol-clash_v1_tournament": LCUTypes.PluginResourceEvent,
78
+ "OnJsonApiEvent_lol-clash_v1_tournament-state-info": LCUTypes.PluginResourceEvent,
79
+ "OnJsonApiEvent_lol-clash_v1_tournament-summary": LCUTypes.PluginResourceEvent,
73
80
  "OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
74
81
  "OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
75
82
  "OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
@@ -200,6 +207,7 @@ export interface LCUWebSocketEvents {
200
207
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_SettingsEnabled": LCUTypes.PluginResourceEvent,
201
208
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_SettingsVerifyEnabled": LCUTypes.PluginResourceEvent,
202
209
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_ShouldUseNewAvs": LCUTypes.PluginResourceEvent,
210
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_TencentPhoneDisplayEnabled": LCUTypes.PluginResourceEvent,
203
211
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Banners": LCUTypes.PluginResourceEvent,
204
212
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Banners_IsEnabledOnProfile": LCUTypes.PluginResourceEvent,
205
213
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Banners_IsEquipEnabled": LCUTypes.PluginResourceEvent,
@@ -269,6 +277,7 @@ export interface LCUWebSocketEvents {
269
277
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Chroma_IsEnabled": LCUTypes.PluginResourceEvent,
270
278
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Clash": LCUTypes.PluginResourceEvent,
271
279
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig": LCUTypes.PluginResourceEvent,
280
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_AntiCheatModalEnabled": LCUTypes.PluginResourceEvent,
272
281
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_AwardsTabEnabled": LCUTypes.PluginResourceEvent,
273
282
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_BracketSpectateEnabled": LCUTypes.PluginResourceEvent,
274
283
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_CapacityIndicatorEnabled": LCUTypes.PluginResourceEvent,
@@ -276,6 +285,7 @@ export interface LCUWebSocketEvents {
276
285
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EatTooltipEnabled": LCUTypes.PluginResourceEvent,
277
286
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EnabledState": LCUTypes.PluginResourceEvent,
278
287
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EndOfGameFlowEnabled": LCUTypes.PluginResourceEvent,
288
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_FaqLinkOverride": LCUTypes.PluginResourceEvent,
279
289
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_FindTeamViewEnabled": LCUTypes.PluginResourceEvent,
280
290
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_HonorLevelRequired": LCUTypes.PluginResourceEvent,
281
291
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_IconConfig": LCUTypes.PluginResourceEvent,
@@ -287,7 +297,6 @@ export interface LCUWebSocketEvents {
287
297
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_PremiumTicketsEnabled": LCUTypes.PluginResourceEvent,
288
298
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ScoutingEnabled": LCUTypes.PluginResourceEvent,
289
299
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_StorePageLink": LCUTypes.PluginResourceEvent,
290
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_SubstitutionEnabled": LCUTypes.PluginResourceEvent,
291
300
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ThirdPartyInvitesEnabled": LCUTypes.PluginResourceEvent,
292
301
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_TutorialEnabled": LCUTypes.PluginResourceEvent,
293
302
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_Visibility": LCUTypes.PluginResourceEvent,
@@ -359,6 +368,7 @@ export interface LCUWebSocketEvents {
359
368
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame": LCUTypes.PluginResourceEvent,
360
369
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_BotsAvailableInAram": LCUTypes.PluginResourceEvent,
361
370
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_MinorRestrictionsEnabled": LCUTypes.PluginResourceEvent,
371
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampion": LCUTypes.PluginResourceEvent,
362
372
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
363
373
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
364
374
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChromas": LCUTypes.PluginResourceEvent,
@@ -386,6 +396,7 @@ export interface LCUWebSocketEvents {
386
396
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_GAMEMODEX": LCUTypes.PluginResourceEvent,
387
397
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_HEXAKILL": LCUTypes.PluginResourceEvent,
388
398
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO": LCUTypes.PluginResourceEvent,
399
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO-5X5": LCUTypes.PluginResourceEvent,
389
400
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KING_PORO": LCUTypes.PluginResourceEvent,
390
401
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KIWI": LCUTypes.PluginResourceEvent,
391
402
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY23_TFT": LCUTypes.PluginResourceEvent,
@@ -397,6 +408,9 @@ export interface LCUWebSocketEvents {
397
408
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_3x3": LCUTypes.PluginResourceEvent,
398
409
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_TFT": LCUTypes.PluginResourceEvent,
399
410
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN": LCUTypes.PluginResourceEvent,
411
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT": LCUTypes.PluginResourceEvent,
412
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT-5x5": LCUTypes.PluginResourceEvent,
413
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT_5x5": LCUTypes.PluginResourceEvent,
400
414
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN_UNRANKED": LCUTypes.PluginResourceEvent,
401
415
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODYSSEY": LCUTypes.PluginResourceEvent,
402
416
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ONEFORALL": LCUTypes.PluginResourceEvent,
@@ -406,6 +420,8 @@ export interface LCUWebSocketEvents {
406
420
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_PVE_PUZZLE_TFT": LCUTypes.PluginResourceEvent,
407
421
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_SR": LCUTypes.PluginResourceEvent,
408
422
  "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,
409
425
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_SOLO_5x5": LCUTypes.PluginResourceEvent,
410
426
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_3x3": LCUTypes.PluginResourceEvent,
411
427
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_5x5": LCUTypes.PluginResourceEvent,
@@ -479,14 +495,14 @@ export interface LCUWebSocketEvents {
479
495
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes": LCUTypes.PluginResourceEvent,
480
496
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmotePanelEnabled": LCUTypes.PluginResourceEvent,
481
497
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmoteTutorialModalEnabled": LCUTypes.PluginResourceEvent,
498
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings": LCUTypes.PluginResourceEvent,
499
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
500
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
501
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
502
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
503
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
482
504
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting": LCUTypes.PluginResourceEvent,
483
505
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting_Enabled": LCUTypes.PluginResourceEvent,
484
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings": LCUTypes.PluginResourceEvent,
485
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
486
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
487
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
488
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
489
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
490
506
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting": LCUTypes.PluginResourceEvent,
491
507
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting_GameAgnosticReportingTrinary": LCUTypes.PluginResourceEvent,
492
508
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Esports_NotificationsAssetMagickURL": LCUTypes.PluginResourceEvent,
@@ -518,6 +534,8 @@ export interface LCUWebSocketEvents {
518
534
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync": LCUTypes.PluginResourceEvent,
519
535
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_Enabled": LCUTypes.PluginResourceEvent,
520
536
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_PercentOfTotalTimerToSyncAt": LCUTypes.PluginResourceEvent,
537
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow": LCUTypes.PluginResourceEvent,
538
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ForceGameLocaleAsEnglish": LCUTypes.PluginResourceEvent,
521
539
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ShouldSendRiotClientHeartBeat": LCUTypes.PluginResourceEvent,
522
540
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GeoInfo": LCUTypes.PluginResourceEvent,
523
541
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_GuestSlots": LCUTypes.PluginResourceEvent,
@@ -528,35 +546,38 @@ export interface LCUWebSocketEvents {
528
546
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Enabled": LCUTypes.PluginResourceEvent,
529
547
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Honor2018Enabled": LCUTypes.PluginResourceEvent,
530
548
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_SecondsToVote": LCUTypes.PluginResourceEvent,
549
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig": LCUTypes.PluginResourceEvent,
550
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig_EnabledState": LCUTypes.PluginResourceEvent,
531
551
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory": LCUTypes.PluginResourceEvent,
532
552
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_BaseServiceUrl": LCUTypes.PluginResourceEvent,
533
553
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_Enabled": LCUTypes.PluginResourceEvent,
534
554
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets": LCUTypes.PluginResourceEvent,
535
555
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_EditorEnabled": LCUTypes.PluginResourceEvent,
536
556
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_MaxItemSets": LCUTypes.PluginResourceEvent,
557
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_RestrictedPageNamesEnabled": LCUTypes.PluginResourceEvent,
537
558
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_SendItemSetsToGame": LCUTypes.PluginResourceEvent,
538
559
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Karma": LCUTypes.PluginResourceEvent,
539
560
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Karma_Worlds2017VotingEnabled": LCUTypes.PluginResourceEvent,
540
561
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Kickout": LCUTypes.PluginResourceEvent,
562
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Kickout_Enabled": LCUTypes.PluginResourceEvent,
563
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Kickout_SecurityCheckEnabled": LCUTypes.PluginResourceEvent,
564
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Kickout_SecurityCheckUrl": LCUTypes.PluginResourceEvent,
541
565
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_KrPlaytimeReminder": LCUTypes.PluginResourceEvent,
566
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_KrPlaytimeReminder_Enabled": LCUTypes.PluginResourceEvent,
542
567
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU": LCUTypes.PluginResourceEvent,
543
568
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS": LCUTypes.PluginResourceEvent,
544
569
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_Endpoint": LCUTypes.PluginResourceEvent,
545
570
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_UseIdTokens": LCUTypes.PluginResourceEvent,
546
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
547
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
548
571
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections": LCUTypes.PluginResourceEvent,
549
572
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_Enabled": LCUTypes.PluginResourceEvent,
550
573
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUAugmentsVisible": LCUTypes.PluginResourceEvent,
551
574
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesChromasEnabled": LCUTypes.PluginResourceEvent,
552
575
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesFinishersEnabled": LCUTypes.PluginResourceEvent,
576
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUEmotesEnabled": LCUTypes.PluginResourceEvent,
553
577
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUMasteriesVisible": LCUTypes.PluginResourceEvent,
554
578
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUPerksVisible": LCUTypes.PluginResourceEvent,
555
579
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCURunesVisible": LCUTypes.PluginResourceEvent,
556
580
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUSkinsViewerEnabled": LCUTypes.PluginResourceEvent,
557
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory": LCUTypes.PluginResourceEvent,
558
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_Enabled": LCUTypes.PluginResourceEvent,
559
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_MatchHistoryWebURL": LCUTypes.PluginResourceEvent,
560
581
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore": LCUTypes.PluginResourceEvent,
561
582
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_CanQueryInactiveItems": LCUTypes.PluginResourceEvent,
562
583
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_DisableCapRMS": LCUTypes.PluginResourceEvent,
@@ -572,10 +593,9 @@ export interface LCUWebSocketEvents {
572
593
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_UseRsoAccessToken": LCUTypes.PluginResourceEvent,
573
594
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteEnabled": LCUTypes.PluginResourceEvent,
574
595
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteURL": LCUTypes.PluginResourceEvent,
596
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
597
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
575
598
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Enabled": LCUTypes.PluginResourceEvent,
576
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout": LCUTypes.PluginResourceEvent,
577
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleExitAfterWarningMinutes": LCUTypes.PluginResourceEvent,
578
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleWarningMinutes": LCUTypes.PluginResourceEvent,
579
599
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate": LCUTypes.PluginResourceEvent,
580
600
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate_Enabled": LCUTypes.PluginResourceEvent,
581
601
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionDetails": LCUTypes.PluginResourceEvent,
@@ -591,11 +611,14 @@ export interface LCUWebSocketEvents {
591
611
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_ChampSelectReportV2Enabled": LCUTypes.PluginResourceEvent,
592
612
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_ChampTradingTooltipEnabled": LCUTypes.PluginResourceEvent,
593
613
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_DisableAutoSmiteAssignment": LCUTypes.PluginResourceEvent,
614
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_DraftActionTickSoundThreshold": LCUTypes.PluginResourceEvent,
594
615
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_EnableFavorites": LCUTypes.PluginResourceEvent,
595
616
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_EnablePositionFilters": LCUTypes.PluginResourceEvent,
596
617
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_IsDisconnectNotificationEnabled": LCUTypes.PluginResourceEvent,
618
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_MinPickIntentDuration": LCUTypes.PluginResourceEvent,
597
619
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_PickOrderSwappingTooltipEnabled": LCUTypes.PluginResourceEvent,
598
620
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_PositionAssignmentAnimationEnabled": LCUTypes.PluginResourceEvent,
621
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_PotatoModeForced": LCUTypes.PluginResourceEvent,
599
622
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_RandomChampionEnabledGameQueues": LCUTypes.PluginResourceEvent,
600
623
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_RandomChampionRateLimitInterval": LCUTypes.PluginResourceEvent,
601
624
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_RandomChampionRateLimitMaxActions": LCUTypes.PluginResourceEvent,
@@ -614,6 +637,8 @@ export interface LCUWebSocketEvents {
614
637
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEmailVerification_MaxOptionalLevel": LCUTypes.PluginResourceEvent,
615
638
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEmailVerification_MinimumSummonerLevel": LCUTypes.PluginResourceEvent,
616
639
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEmailVerification_RequiredLogins": LCUTypes.PluginResourceEvent,
640
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEsportsSpectator": LCUTypes.PluginResourceEvent,
641
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEsportsSpectator_Enabled": LCUTypes.PluginResourceEvent,
617
642
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuGameSettings": LCUTypes.PluginResourceEvent,
618
643
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuGameSettings_GameplayEnabled": LCUTypes.PluginResourceEvent,
619
644
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuGameSettings_HotkeysEnabled": LCUTypes.PluginResourceEvent,
@@ -636,6 +661,7 @@ export interface LCUWebSocketEvents {
636
661
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_AutoGrantInviteEnabled": LCUTypes.PluginResourceEvent,
637
662
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_GameInvitesEnabled": LCUTypes.PluginResourceEvent,
638
663
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_ObserverModeEnabled": LCUTypes.PluginResourceEvent,
664
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_PotatoModeForced": LCUTypes.PluginResourceEvent,
639
665
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_PracticeGameEnabled": LCUTypes.PluginResourceEvent,
640
666
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_PracticeGameListEnabled": LCUTypes.PluginResourceEvent,
641
667
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_QueueEligibilityGateKeeperEnabled": LCUTypes.PluginResourceEvent,
@@ -661,6 +687,7 @@ export interface LCUWebSocketEvents {
661
687
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuProfiles": LCUTypes.PluginResourceEvent,
662
688
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuProfiles_Enabled": LCUTypes.PluginResourceEvent,
663
689
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget": LCUTypes.PluginResourceEvent,
690
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_AlwaysShowPurchaseDisclaimer": LCUTypes.PluginResourceEvent,
664
691
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_BaseUrl": LCUTypes.PluginResourceEvent,
665
692
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_CapOrdersUrl": LCUTypes.PluginResourceEvent,
666
693
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_Enabled": LCUTypes.PluginResourceEvent,
@@ -682,6 +709,7 @@ export interface LCUWebSocketEvents {
682
709
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_ClearChatHistoryEnabled": LCUTypes.PluginResourceEvent,
683
710
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_DefaultGameQueues": LCUTypes.PluginResourceEvent,
684
711
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_EnabledGameQueues": LCUTypes.PluginResourceEvent,
712
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_ForceChatFilter": LCUTypes.PluginResourceEvent,
685
713
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_FriendRequestToastsDisabled": LCUTypes.PluginResourceEvent,
686
714
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_FriendsListGiftingEnabled": LCUTypes.PluginResourceEvent,
687
715
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_LcuSupportedGameQueues": LCUTypes.PluginResourceEvent,
@@ -728,6 +756,7 @@ export interface LCUWebSocketEvents {
728
756
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_EosNotificationsEnabled": LCUTypes.PluginResourceEvent,
729
757
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_FlexRestrictionModalEnabled": LCUTypes.PluginResourceEvent,
730
758
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsGlobalNotificationsEnabled": LCUTypes.PluginResourceEvent,
759
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSplitStartModalEnabled": LCUTypes.PluginResourceEvent,
731
760
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_JWTEnabled": LCUTypes.PluginResourceEvent,
732
761
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_LeagueServiceEnabled": LCUTypes.PluginResourceEvent,
733
762
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_MasterTierEnabled": LCUTypes.PluginResourceEvent,
@@ -805,11 +834,6 @@ export interface LCUWebSocketEvents {
805
834
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount3": LCUTypes.PluginResourceEvent,
806
835
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount4": LCUTypes.PluginResourceEvent,
807
836
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount5": LCUTypes.PluginResourceEvent,
808
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId1": LCUTypes.PluginResourceEvent,
809
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId2": LCUTypes.PluginResourceEvent,
810
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId3": LCUTypes.PluginResourceEvent,
811
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId4": LCUTypes.PluginResourceEvent,
812
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId5": LCUTypes.PluginResourceEvent,
813
837
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EnableMythicEssenceDisplay": LCUTypes.PluginResourceEvent,
814
838
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Enabled": LCUTypes.PluginResourceEvent,
815
839
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EventChestBundleId1": LCUTypes.PluginResourceEvent,
@@ -831,11 +855,6 @@ export interface LCUWebSocketEvents {
831
855
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
832
856
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Visible": LCUTypes.PluginResourceEvent,
833
857
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_WorldsTokensEnabled": LCUTypes.PluginResourceEvent,
834
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService": LCUTypes.PluginResourceEvent,
835
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Enabled": LCUTypes.PluginResourceEvent,
836
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_NewPlayerChestEnabled": LCUTypes.PluginResourceEvent,
837
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
838
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Visible": LCUTypes.PluginResourceEvent,
839
858
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries": LCUTypes.PluginResourceEvent,
840
859
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries_ShowPointsResetMessage": LCUTypes.PluginResourceEvent,
841
860
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Missions": LCUTypes.PluginResourceEvent,
@@ -860,6 +879,7 @@ export interface LCUWebSocketEvents {
860
879
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Navigation_NavBarDisplayMode": LCUTypes.PluginResourceEvent,
861
880
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Navigation_UseEnhancedMenu": LCUTypes.PluginResourceEvent,
862
881
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewMatchHistory": LCUTypes.PluginResourceEvent,
882
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewMatchHistory_ACSEndpoint": LCUTypes.PluginResourceEvent,
863
883
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewMatchHistory_Enabled": LCUTypes.PluginResourceEvent,
864
884
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewMatchHistory_MatchHistoryWebURL": LCUTypes.PluginResourceEvent,
865
885
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewMatchHistory_PostIPXPToLegSEnabled": LCUTypes.PluginResourceEvent,
@@ -868,12 +888,6 @@ export interface LCUWebSocketEvents {
868
888
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro": LCUTypes.PluginResourceEvent,
869
889
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_IntroUrl": LCUTypes.PluginResourceEvent,
870
890
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_NewSummonerIconIds": LCUTypes.PluginResourceEvent,
871
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage": LCUTypes.PluginResourceEvent,
872
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_ChampDisplayList": LCUTypes.PluginResourceEvent,
873
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_Enabled": LCUTypes.PluginResourceEvent,
874
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_LikeUsURL": LCUTypes.PluginResourceEvent,
875
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_MaxLevel": LCUTypes.PluginResourceEvent,
876
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_SubscribeURL": LCUTypes.PluginResourceEvent,
877
891
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter": LCUTypes.PluginResourceEvent,
878
892
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_ABDisablingOfTutorial": LCUTypes.PluginResourceEvent,
879
893
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_QueueID": LCUTypes.PluginResourceEvent,
@@ -898,8 +912,10 @@ export interface LCUWebSocketEvents {
898
912
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks": LCUTypes.PluginResourceEvent,
899
913
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks_MinSummonerLevelUnlockCustomPages": LCUTypes.PluginResourceEvent,
900
914
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks_PerksEnabled": LCUTypes.PluginResourceEvent,
915
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks_RestrictedPageNamesEnabled": LCUTypes.PluginResourceEvent,
901
916
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers": LCUTypes.PluginResourceEvent,
902
917
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_BaseServiceURL": LCUTypes.PluginResourceEvent,
918
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_DataAuthModal": LCUTypes.PluginResourceEvent,
903
919
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_HubEnabled": LCUTypes.PluginResourceEvent,
904
920
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_Port": LCUTypes.PluginResourceEvent,
905
921
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_PromotionEndTime": LCUTypes.PluginResourceEvent,
@@ -964,6 +980,7 @@ export interface LCUWebSocketEvents {
964
980
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndDivisionForPremadeSize2QueueId1100": LCUTypes.PluginResourceEvent,
965
981
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndDivisionForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
966
982
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1": LCUTypes.PluginResourceEvent,
983
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId4": LCUTypes.PluginResourceEvent,
967
984
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId410": LCUTypes.PluginResourceEvent,
968
985
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId420": LCUTypes.PluginResourceEvent,
969
986
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId440": LCUTypes.PluginResourceEvent,
@@ -971,31 +988,44 @@ export interface LCUWebSocketEvents {
971
988
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId9": LCUTypes.PluginResourceEvent,
972
989
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2": LCUTypes.PluginResourceEvent,
973
990
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId4": LCUTypes.PluginResourceEvent,
991
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId410": LCUTypes.PluginResourceEvent,
974
992
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
975
993
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId440": LCUTypes.PluginResourceEvent,
976
994
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId470": LCUTypes.PluginResourceEvent,
977
995
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId9": LCUTypes.PluginResourceEvent,
978
996
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3": LCUTypes.PluginResourceEvent,
997
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId410": LCUTypes.PluginResourceEvent,
979
998
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId420": LCUTypes.PluginResourceEvent,
980
999
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId440": LCUTypes.PluginResourceEvent,
981
1000
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId470": LCUTypes.PluginResourceEvent,
982
1001
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId9": LCUTypes.PluginResourceEvent,
983
1002
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4": LCUTypes.PluginResourceEvent,
1003
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId410": LCUTypes.PluginResourceEvent,
984
1004
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId420": LCUTypes.PluginResourceEvent,
985
1005
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId440": LCUTypes.PluginResourceEvent,
986
1006
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId470": LCUTypes.PluginResourceEvent,
987
1007
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId9": LCUTypes.PluginResourceEvent,
988
1008
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5": LCUTypes.PluginResourceEvent,
1009
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId410": LCUTypes.PluginResourceEvent,
989
1010
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId420": LCUTypes.PluginResourceEvent,
990
1011
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId440": LCUTypes.PluginResourceEvent,
991
1012
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId470": LCUTypes.PluginResourceEvent,
992
1013
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId9": LCUTypes.PluginResourceEvent,
1014
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierForPremadeSize2QueueId1100": LCUTypes.PluginResourceEvent,
1015
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
993
1016
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_QueuesRequiringTwentyChampions": LCUTypes.PluginResourceEvent,
994
1017
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTier": LCUTypes.PluginResourceEvent,
1018
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId11": LCUTypes.PluginResourceEvent,
995
1019
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId4": LCUTypes.PluginResourceEvent,
996
1020
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId410": LCUTypes.PluginResourceEvent,
1021
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId411": LCUTypes.PluginResourceEvent,
1022
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId412": LCUTypes.PluginResourceEvent,
997
1023
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId420": LCUTypes.PluginResourceEvent,
1024
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId421": LCUTypes.PluginResourceEvent,
1025
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId422": LCUTypes.PluginResourceEvent,
998
1026
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId440": LCUTypes.PluginResourceEvent,
1027
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId441": LCUTypes.PluginResourceEvent,
1028
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId442": LCUTypes.PluginResourceEvent,
999
1029
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId470": LCUTypes.PluginResourceEvent,
1000
1030
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId9": LCUTypes.PluginResourceEvent,
1001
1031
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
@@ -1005,47 +1035,88 @@ export interface LCUWebSocketEvents {
1005
1035
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeRestrictionEnabled": LCUTypes.PluginResourceEvent,
1006
1036
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeTier": LCUTypes.PluginResourceEvent,
1007
1037
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTier": LCUTypes.PluginResourceEvent,
1038
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId11": LCUTypes.PluginResourceEvent,
1008
1039
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId4": LCUTypes.PluginResourceEvent,
1009
1040
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId410": LCUTypes.PluginResourceEvent,
1041
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId411": LCUTypes.PluginResourceEvent,
1042
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId412": LCUTypes.PluginResourceEvent,
1010
1043
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId420": LCUTypes.PluginResourceEvent,
1044
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId421": LCUTypes.PluginResourceEvent,
1045
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId422": LCUTypes.PluginResourceEvent,
1011
1046
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId440": LCUTypes.PluginResourceEvent,
1047
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId441": LCUTypes.PluginResourceEvent,
1048
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId442": LCUTypes.PluginResourceEvent,
1012
1049
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId470": LCUTypes.PluginResourceEvent,
1013
1050
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId9": LCUTypes.PluginResourceEvent,
1014
1051
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
1052
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId11": LCUTypes.PluginResourceEvent,
1015
1053
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
1016
1054
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
1055
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId411": LCUTypes.PluginResourceEvent,
1056
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId412": LCUTypes.PluginResourceEvent,
1017
1057
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
1058
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId421": LCUTypes.PluginResourceEvent,
1059
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId422": LCUTypes.PluginResourceEvent,
1018
1060
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
1061
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId441": LCUTypes.PluginResourceEvent,
1062
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId442": LCUTypes.PluginResourceEvent,
1019
1063
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
1020
1064
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
1021
1065
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMode": LCUTypes.PluginResourceEvent,
1066
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId11": LCUTypes.PluginResourceEvent,
1022
1067
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
1023
1068
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
1069
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId411": LCUTypes.PluginResourceEvent,
1070
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId412": LCUTypes.PluginResourceEvent,
1024
1071
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
1072
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId421": LCUTypes.PluginResourceEvent,
1073
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId422": LCUTypes.PluginResourceEvent,
1025
1074
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
1075
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId441": LCUTypes.PluginResourceEvent,
1076
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId442": LCUTypes.PluginResourceEvent,
1026
1077
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId470": LCUTypes.PluginResourceEvent,
1027
1078
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId9": LCUTypes.PluginResourceEvent,
1028
1079
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
1080
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId11": LCUTypes.PluginResourceEvent,
1029
1081
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
1030
1082
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
1083
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId411": LCUTypes.PluginResourceEvent,
1084
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId412": LCUTypes.PluginResourceEvent,
1031
1085
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
1086
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId421": LCUTypes.PluginResourceEvent,
1087
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId422": LCUTypes.PluginResourceEvent,
1032
1088
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
1089
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId441": LCUTypes.PluginResourceEvent,
1090
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId442": LCUTypes.PluginResourceEvent,
1033
1091
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
1034
1092
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
1035
1093
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMode": LCUTypes.PluginResourceEvent,
1094
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId11": LCUTypes.PluginResourceEvent,
1036
1095
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
1037
1096
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
1097
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId411": LCUTypes.PluginResourceEvent,
1098
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId412": LCUTypes.PluginResourceEvent,
1038
1099
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
1100
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId421": LCUTypes.PluginResourceEvent,
1101
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId422": LCUTypes.PluginResourceEvent,
1039
1102
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
1103
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId441": LCUTypes.PluginResourceEvent,
1104
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId442": LCUTypes.PluginResourceEvent,
1040
1105
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId470": LCUTypes.PluginResourceEvent,
1041
1106
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId9": LCUTypes.PluginResourceEvent,
1042
1107
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_ServiceEnabled": LCUTypes.PluginResourceEvent,
1108
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRewards": LCUTypes.PluginResourceEvent,
1109
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRewards_SoloAutoFillProtectionForQueueId440": LCUTypes.PluginResourceEvent,
1043
1110
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Regalia": LCUTypes.PluginResourceEvent,
1044
1111
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays": LCUTypes.PluginResourceEvent,
1045
1112
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_MinSupportedGameServerVersion": LCUTypes.PluginResourceEvent,
1113
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_MinutesUntilReplayConsideredLost": LCUTypes.PluginResourceEvent,
1046
1114
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_ThirdPersonAccessibleGameQueues": LCUTypes.PluginResourceEvent,
1047
1115
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards": LCUTypes.PluginResourceEvent,
1048
1116
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards_Enabled": LCUTypes.PluginResourceEvent,
1117
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring": LCUTypes.PluginResourceEvent,
1118
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitInterval": LCUTypes.PluginResourceEvent,
1119
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitMaxActions": LCUTypes.PluginResourceEvent,
1049
1120
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer": LCUTypes.PluginResourceEvent,
1050
1121
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer_Level1Unfilter": LCUTypes.PluginResourceEvent,
1051
1122
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SeasonReward": LCUTypes.PluginResourceEvent,
@@ -1068,14 +1139,13 @@ export interface LCUWebSocketEvents {
1068
1139
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_MatchHistoryUrlTemplate": LCUTypes.PluginResourceEvent,
1069
1140
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareEndOfGameEnabled": LCUTypes.PluginResourceEvent,
1070
1141
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareGameUrlTemplate": LCUTypes.PluginResourceEvent,
1071
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareMatchHistory": LCUTypes.PluginResourceEvent,
1072
1142
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals": LCUTypes.PluginResourceEvent,
1073
1143
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals_Enabled": LCUTypes.PluginResourceEvent,
1074
1144
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer": LCUTypes.PluginResourceEvent,
1145
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer_DisableAllPurchase": LCUTypes.PluginResourceEvent,
1075
1146
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer_VintageSkinSummonerIconConfig": LCUTypes.PluginResourceEvent,
1076
1147
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard": LCUTypes.PluginResourceEvent,
1077
1148
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_IsSocialLeaderboardEnabled": LCUTypes.PluginResourceEvent,
1078
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_LeaguesPuuidPageSize": LCUTypes.PluginResourceEvent,
1079
1149
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_MinsTillCacheExpiry": LCUTypes.PluginResourceEvent,
1080
1150
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_SecsTillAvailabilityCacheExpiry": LCUTypes.PluginResourceEvent,
1081
1151
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_UseSocialLeaderboardLeaguesEndpoint": LCUTypes.PluginResourceEvent,
@@ -1093,7 +1163,9 @@ export interface LCUWebSocketEvents {
1093
1163
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_OnlineFriendsLimit": LCUTypes.PluginResourceEvent,
1094
1164
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_PreviousPremadesLimit": LCUTypes.PluginResourceEvent,
1095
1165
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_VictoriousComradesLimit": LCUTypes.PluginResourceEvent,
1166
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner": LCUTypes.PluginResourceEvent,
1096
1167
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_ConfigRefreshIntervalSeconds": LCUTypes.PluginResourceEvent,
1168
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTEnabled": LCUTypes.PluginResourceEvent,
1097
1169
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMaxTimeoutSeconds": LCUTypes.PluginResourceEvent,
1098
1170
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMinTimeoutSeconds": LCUTypes.PluginResourceEvent,
1099
1171
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_SummonerProfileCacheEnabled": LCUTypes.PluginResourceEvent,
@@ -1101,7 +1173,6 @@ export interface LCUWebSocketEvents {
1101
1173
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_AllSkinEnabled": LCUTypes.PluginResourceEvent,
1102
1174
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_RandomSkinEnabled": LCUTypes.PluginResourceEvent,
1103
1175
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft": LCUTypes.PluginResourceEvent,
1104
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ActionTimeoutRecoveryEnabled": LCUTypes.PluginResourceEvent,
1105
1176
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EnableChampionSelectPreferences": LCUTypes.PluginResourceEvent,
1106
1177
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EstimatedWaitAdjustmentEnabled": LCUTypes.PluginResourceEvent,
1107
1178
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_FillPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
@@ -1109,6 +1180,7 @@ export interface LCUWebSocketEvents {
1109
1180
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_LogAllLCDSMessages": LCUTypes.PluginResourceEvent,
1110
1181
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_MidPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
1111
1182
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendAfkCheckMetricsEnabled": LCUTypes.PluginResourceEvent,
1183
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendSummonerIconJwt": LCUTypes.PluginResourceEvent,
1112
1184
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ServiceCallTimeoutMillis": LCUTypes.PluginResourceEvent,
1113
1185
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SkinPurchaseEnabled": LCUTypes.PluginResourceEvent,
1114
1186
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SupportPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
@@ -1116,9 +1188,9 @@ export interface LCUWebSocketEvents {
1116
1188
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_TBRerollServiceEnabled": LCUTypes.PluginResourceEvent,
1117
1189
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_TakeoverEnabled": LCUTypes.PluginResourceEvent,
1118
1190
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_UnlockLockInButtonTimeoutEnabled": LCUTypes.PluginResourceEvent,
1191
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction": LCUTypes.PluginResourceEvent,
1192
+ "OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction_AntiAddictionUrl": LCUTypes.PluginResourceEvent,
1119
1193
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction_Enabled": LCUTypes.PluginResourceEvent,
1120
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing": LCUTypes.PluginResourceEvent,
1121
- "OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing_Rcarter": LCUTypes.PluginResourceEvent,
1122
1194
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification": LCUTypes.PluginResourceEvent,
1123
1195
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification_CAHServiceEnabled": LCUTypes.PluginResourceEvent,
1124
1196
  "OnJsonApiEvent_lol-platform-config_v1_namespaces_Trophies": LCUTypes.PluginResourceEvent,
@@ -1146,7 +1218,6 @@ export interface LCUWebSocketEvents {
1146
1218
  "OnJsonApiEvent_lol-publishing-content_v1_settings": LCUTypes.PluginResourceEvent,
1147
1219
  "OnJsonApiEvent_lol-purchase-widget_v1_configuration": LCUTypes.PluginResourceEvent,
1148
1220
  "OnJsonApiEvent_lol-purchase-widget_v3_purchase-offer-order-statuses": LCUTypes.PluginResourceEvent,
1149
- "OnJsonApiEvent_lol-ranked_v1_cached-ranked-stats": LCUTypes.PluginResourceEvent,
1150
1221
  "OnJsonApiEvent_lol-ranked_v1_challenger-ladders-enabled": LCUTypes.PluginResourceEvent,
1151
1222
  "OnJsonApiEvent_lol-ranked_v1_current-ranked-stats": LCUTypes.PluginResourceEvent,
1152
1223
  "OnJsonApiEvent_lol-ranked_v1_global-notifications": LCUTypes.PluginResourceEvent,
@@ -1191,9 +1262,11 @@ export interface LCUWebSocketEvents {
1191
1262
  "OnJsonApiEvent_lol-tft-pass_v1_active-passes": LCUTypes.PluginResourceEvent,
1192
1263
  "OnJsonApiEvent_lol-tft-pass_v1_battle-pass": LCUTypes.PluginResourceEvent,
1193
1264
  "OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
1265
+ "OnJsonApiEvent_lol-tft-pass_v1_event-pass": LCUTypes.PluginResourceEvent,
1194
1266
  "OnJsonApiEvent_lol-tft-pass_v1_pm-ultimate-victory-pass": LCUTypes.PluginResourceEvent,
1195
1267
  "OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
1196
1268
  "OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,
1269
+ "OnJsonApiEvent_lol-tft-skill-tree_v1_skill-tree": LCUTypes.PluginResourceEvent,
1197
1270
  "OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
1198
1271
  "OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
1199
1272
  "OnJsonApiEvent_lol-tft-team-planner_v1_previous-context": LCUTypes.PluginResourceEvent,
@@ -1257,7 +1330,6 @@ export interface LCUWebSocketEvents {
1257
1330
  "OnLcdsEvent_com_riotgames_platform_game_message_GameNotification": LCUTypes.PluginLcdsEvent,
1258
1331
  "OnLcdsEvent_com_riotgames_platform_gameinvite_contract_InvitationRequest": LCUTypes.PluginLcdsEvent,
1259
1332
  "OnLcdsEvent_com_riotgames_platform_gameinvite_contract_InvitePrivileges": LCUTypes.PluginLcdsEvent,
1260
- "OnLcdsEvent_com_riotgames_platform_gameinvite_contract_LobbyStatus": LCUTypes.PluginLcdsEvent,
1261
1333
  "OnLcdsEvent_com_riotgames_platform_gameinvite_contract_RemovedFromLobbyNotification": LCUTypes.PluginLcdsEvent,
1262
1334
  "OnLcdsEvent_com_riotgames_platform_leaverbuster_event_messaging_LeaverBusterLowPriorityQueueAbandoned": LCUTypes.PluginLcdsEvent,
1263
1335
  "OnLcdsEvent_com_riotgames_platform_loyalty_message_LoyaltyStateChangeNotification": LCUTypes.PluginLcdsEvent,
@@ -482,6 +482,7 @@ export interface ChemtechShoppe_DropsMultiRollResultsDto {
482
482
 
483
483
  export interface ChemtechShoppe_DropsRollResultsDto {
484
484
  fulfillments: unknown[]
485
+ rolledFulfillments: ChemtechShoppe_RolledFulfillmentWrapperDto[]
485
486
  }
486
487
 
487
488
  export interface ChemtechShoppe_FinalPurchaseUnitDto {
@@ -636,6 +637,12 @@ export interface ChemtechShoppe_RefundResponseDto {
636
637
  notes: string[]
637
638
  }
638
639
 
640
+ export interface ChemtechShoppe_RolledFulfillmentWrapperDto {
641
+ nodeId: string
642
+ nodeName: string
643
+ fulfillment: unknown
644
+ }
645
+
639
646
  export interface ChemtechShoppe_RotatingStoreMetadataDto {
640
647
  slots: ChemtechShoppe_RotatingStoreSlotMetadataDto[]
641
648
  currRotationStartTime: string
@@ -1299,6 +1306,7 @@ export interface GameflowLcdsPlayerCredentialsDto {
1299
1306
  summonerId: number
1300
1307
  packetCopMetadata: string
1301
1308
  spectatorKey: string
1309
+ puuid: string
1302
1310
  }
1303
1311
 
1304
1312
  export interface GameflowLcdsReconnectInfoDto {
@@ -3455,6 +3463,7 @@ export interface LolChampionsGameDataChampion {
3455
3463
  export interface LolChampionsGameDataChampionChroma {
3456
3464
  /** @format int32 */
3457
3465
  id: number
3466
+ name: string
3458
3467
  colors: string[]
3459
3468
  chromaPath: string
3460
3469
  skinAugments: LolChampionsCollectionsChampionSkinAugments
@@ -3854,6 +3863,13 @@ export interface LolChatDebugResource {
3854
3863
  silenceChatWhileInGame?: boolean
3855
3864
  }
3856
3865
 
3866
+ export interface LolChatDiscordLink {
3867
+ available: boolean
3868
+ linked: boolean
3869
+ visible: boolean
3870
+ error: string
3871
+ }
3872
+
3857
3873
  export interface LolChatEndOfGamePlayer {
3858
3874
  puuid: string
3859
3875
  /** @format uint64 */
@@ -4029,6 +4045,7 @@ export interface LolChatFriendResource {
4029
4045
  groupName: string
4030
4046
  displayGroupName: string
4031
4047
  lol: Record<string, string>
4048
+ discordInfo?: LolChatSocialV4DiscordInfo
4032
4049
  }
4033
4050
 
4034
4051
  export type LolChatFriendSubscriptionType = "pending_in" | "pending_out"
@@ -6745,6 +6762,7 @@ export interface LolCosmeticsTFTRotationalShopConfig {
6745
6762
  refund: LolCosmeticsTFTRotationalShopRefundConfig
6746
6763
  littleLegendsUpgradeEnabled: boolean
6747
6764
  eventsStoreEnabled: boolean
6765
+ eventsStoreData: unknown
6748
6766
  }
6749
6767
 
6750
6768
  export interface LolCosmeticsTFTRotationalShopNavConfig {
@@ -7970,6 +7988,7 @@ export interface LolEventHubEventDetailsUIData {
7970
7988
  memoryBookBackgroundImage: string
7971
7989
  /** @format uint32 */
7972
7990
  spotlightSkinId: number
7991
+ actBackgroundImage: string
7973
7992
  }
7974
7993
 
7975
7994
  export interface LolEventHubEventHubError {
@@ -8372,6 +8391,8 @@ export interface LolEventHubItemDefinition {
8372
8391
  bundledItemPrice?: LolEventHubBundledItemPricingInfo
8373
8392
  loyaltyUnlocked: boolean
8374
8393
  hasVisibleLootOdds: boolean
8394
+ /** @format uint64 */
8395
+ inactiveDate: number
8375
8396
  }
8376
8397
 
8377
8398
  export interface LolEventHubItemDetails {
@@ -8382,9 +8403,10 @@ export interface LolEventHubItemDetails {
8382
8403
  }
8383
8404
 
8384
8405
  export interface LolEventHubItemKey {
8385
- inventoryType: string
8386
8406
  /** @format int32 */
8387
8407
  itemId: number
8408
+ inventoryType: string
8409
+ subInventoryType: string
8388
8410
  }
8389
8411
 
8390
8412
  export interface LolEventHubItemMetadataEntry {
@@ -8414,6 +8436,8 @@ export interface LolEventHubItemPrice {
8414
8436
  currencyType: string
8415
8437
  /** @format int32 */
8416
8438
  price: number
8439
+ /** @format int32 */
8440
+ originalPrice: number
8417
8441
  purchasable: boolean
8418
8442
  }
8419
8443
 
@@ -9021,6 +9045,7 @@ export interface LolEventHubSeasonPass {
9021
9045
  localizedSeasonLogo: string
9022
9046
  localizedShortName: string
9023
9047
  chapters: LolEventHubChapter[]
9048
+ actBackgroundImage: string
9024
9049
  }
9025
9050
 
9026
9051
  export type LolEventHubSelectGrantStatusResponse = "FAILED" | "SELECTED"
@@ -9941,6 +9966,7 @@ export interface LolGameflowSpectateGameInfoResource {
9941
9966
  gameQueueType: string
9942
9967
  allowObserveMode: string
9943
9968
  puuid: string
9969
+ spectatorKey: string
9944
9970
  }
9945
9971
 
9946
9972
  export interface LolHeartbeatLcdsConnection {
@@ -11318,6 +11344,7 @@ export interface LolLobbyEligibilityRestriction {
11318
11344
  summonerIds: number[]
11319
11345
  summonerIdsString: string
11320
11346
  puuids: string[]
11347
+ puuidsString: string
11321
11348
  }
11322
11349
 
11323
11350
  export type LolLobbyEligibilityRestrictionCode = "FullPartyUnranked" | "PlayerNoRankedUpdatesDueToRankDisparity" | "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPInsufficientPlayerChampionCoveragePopularChampion" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "UnknownRestriction" | "PlayerQueueSuspendedRestriction" | "SeasonVersionLockout" | "MinNormalGamesForRankedRestriction" | "LOLNewPlayerRestriction" | "TFTNewPlayerRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerRankSoloOnlyRestriction" | "PlayerTimePlayedRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerTimeBasedRankRestriction" | "PlayerGameBasedRankRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerDisruptiveGameplayLockoutRestriction" | "PlayerReadyCheckFailRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
@@ -12007,6 +12034,7 @@ export interface LolLobbyPartyPresenceData {
12007
12034
  /** @format int32 */
12008
12035
  queueId: number
12009
12036
  summoners: number[]
12037
+ summonerPuuids: string[]
12010
12038
  /** @format uint64 */
12011
12039
  maxPlayers: number
12012
12040
  }
@@ -12361,6 +12389,8 @@ export interface LolLobbyTeamBuilderMatchmakingSearch {
12361
12389
 
12362
12390
  export type LolLobbyTeamBuilderMatchmakingSearchState = "ServiceShutdown" | "ServiceError" | "Error" | "Found" | "Searching" | "Canceled" | "AbandonedLowPriorityQueue" | "Invalid"
12363
12391
 
12392
+ export type LolLobbyTeamBuilderRiotMessagingServiceState = "Connected" | "SwitchingServers" | "Connecting" | "DisconnectRequested" | "Disconnected" | "Disconnecting"
12393
+
12364
12394
  export interface LolLobbyUserInfoToken {
12365
12395
  userInfo: string
12366
12396
  }
@@ -13917,6 +13947,7 @@ export interface LolMarketplaceTFTRotationalShopConfig {
13917
13947
  refund: LolMarketplaceTFTRotationalShopRefundConfig
13918
13948
  littleLegendsUpgradeEnabled: boolean
13919
13949
  eventsStoreEnabled: boolean
13950
+ eventsStoreData: unknown
13920
13951
  }
13921
13952
 
13922
13953
  export interface LolMarketplaceTFTRotationalShopNavConfig {
@@ -17858,6 +17889,8 @@ export interface LolPurchaseWidgetItemDefinition {
17858
17889
  bundledItemPrice?: LolPurchaseWidgetBundledItemPricingInfo
17859
17890
  loyaltyUnlocked: boolean
17860
17891
  hasVisibleLootOdds: boolean
17892
+ /** @format uint64 */
17893
+ inactiveDate: number
17861
17894
  }
17862
17895
 
17863
17896
  export interface LolPurchaseWidgetItemDetails {
@@ -17868,9 +17901,10 @@ export interface LolPurchaseWidgetItemDetails {
17868
17901
  }
17869
17902
 
17870
17903
  export interface LolPurchaseWidgetItemKey {
17871
- inventoryType: string
17872
17904
  /** @format int32 */
17873
17905
  itemId: number
17906
+ inventoryType: string
17907
+ subInventoryType: string
17874
17908
  }
17875
17909
 
17876
17910
  export interface LolPurchaseWidgetItemMetadataEntry {
@@ -17900,6 +17934,8 @@ export interface LolPurchaseWidgetItemPrice {
17900
17934
  currencyType: string
17901
17935
  /** @format int32 */
17902
17936
  price: number
17937
+ /** @format int32 */
17938
+ originalPrice: number
17903
17939
  purchasable: boolean
17904
17940
  }
17905
17941
 
@@ -18283,7 +18319,7 @@ export interface LolRankedLcuLeagueNotification {
18283
18319
  wins: number
18284
18320
  /** @format int32 */
18285
18321
  losses: number
18286
- leaguePointsChangeBreakdown: Record<string, number>
18322
+ leaguePointDeltaBreakdown: Record<string, number>
18287
18323
  }
18288
18324
 
18289
18325
  export type LolRankedLeagueDivision = "NA" | "V" | "IV" | "III" | "II" | "I"
@@ -18369,9 +18405,6 @@ export interface LolRankedLeagueNotification {
18369
18405
  leaguePoints: number
18370
18406
  /** @format int32 */
18371
18407
  leaguePointsDelta: number
18372
- /** @format int32 */
18373
- splitPoints: number
18374
- splitPointsBreakdown: Record<string, number>
18375
18408
  ratedTier: string
18376
18409
  /** @format int32 */
18377
18410
  ratedRating: number
@@ -18393,7 +18426,7 @@ export interface LolRankedLeagueNotification {
18393
18426
  wins: number
18394
18427
  /** @format int32 */
18395
18428
  losses: number
18396
- leaguePointsChangeBreakdown: Record<string, number>
18429
+ leaguePointDeltaBreakdown: Record<string, number>
18397
18430
  }
18398
18431
 
18399
18432
  export interface LolRankedLeagueNotifications {
@@ -18605,7 +18638,6 @@ export interface LolRankedRankedStats {
18605
18638
  /** @format int32 */
18606
18639
  previousSeasonSplitPoints: number
18607
18640
  seasons: Record<string, LolRankedSeasonDTO>
18608
- shouldShowIndicator: boolean
18609
18641
  }
18610
18642
 
18611
18643
  export interface LolRankedRankedStatsDTO {
@@ -20562,6 +20594,7 @@ export interface LolSpectatorSpectateGameInfo {
20562
20594
  gameQueueType: string
20563
20595
  allowObserveMode: string
20564
20596
  puuid: string
20597
+ spectatorKey: string
20565
20598
  }
20566
20599
 
20567
20600
  export interface LolSpectatorSpectateResource {
@@ -20582,6 +20615,11 @@ export interface LolSpectatorSpectatorDynamicConfiguration {
20582
20615
  isUsingOperationalConfig: boolean
20583
20616
  }
20584
20617
 
20618
+ export interface LolSpectatorSpectatorKeySpectateResource {
20619
+ availableForWatching: boolean
20620
+ reason: string
20621
+ }
20622
+
20585
20623
  export interface LolSpectatorSpectatorOperationalConfiguration {
20586
20624
  enabled: boolean
20587
20625
  enforceGridSpectating: boolean
@@ -21454,6 +21492,11 @@ export interface LolSummonerGameloopPlayerInfoV2 {
21454
21492
  rerollDataBags: LolSummonerRerollDataBagForClientV1[]
21455
21493
  }
21456
21494
 
21495
+ export interface LolSummonerGameloopPlayerInfoV2Response {
21496
+ payload?: LolSummonerGameloopPlayerInfoV2
21497
+ status: string
21498
+ }
21499
+
21457
21500
  export interface LolSummonerLevelField {
21458
21501
  /** @format uint32 */
21459
21502
  initialLevel: number
@@ -21528,7 +21571,11 @@ export interface LolSummonerProfilesHonorView {
21528
21571
  }
21529
21572
 
21530
21573
  export interface LolSummonerProfilesLolEosRewardView {
21574
+ /** @format int32 */
21575
+ seasonId: number
21531
21576
  rewardIds: string[]
21577
+ highestRankPerQueueId: Record<string, LolSummonerProfilesRank>
21578
+ eligibility: LolSummonerProfilesRewardsEligibility
21532
21579
  }
21533
21580
 
21534
21581
  export interface LolSummonerProfilesPrivacyView {
@@ -21540,6 +21587,11 @@ export interface LolSummonerProfilesPuuidAndViews {
21540
21587
  payload: Record<string, LolSummonerProfilesViews>
21541
21588
  }
21542
21589
 
21590
+ export interface LolSummonerProfilesRank {
21591
+ tier: string
21592
+ division: string
21593
+ }
21594
+
21543
21595
  export interface LolSummonerProfilesRedemption {
21544
21596
  /** @format int32 */
21545
21597
  required: number
@@ -21548,6 +21600,14 @@ export interface LolSummonerProfilesRedemption {
21548
21600
  eventType: string
21549
21601
  }
21550
21602
 
21603
+ export interface LolSummonerProfilesRewardsEligibility {
21604
+ honorRequirementEnabled: boolean
21605
+ /** @format int32 */
21606
+ minHonorLevelForRewards: number
21607
+ /** @format int32 */
21608
+ honorLevel?: number
21609
+ }
21610
+
21551
21611
  export interface LolSummonerProfilesSummonerLevel {
21552
21612
  puuid: string
21553
21613
  /** @format uint32 */
@@ -23130,6 +23190,7 @@ export interface LolTftPassEventDetailsUIData {
23130
23190
  memoryBookBackgroundImage: string
23131
23191
  /** @format uint32 */
23132
23192
  spotlightSkinId: number
23193
+ actBackgroundImage: string
23133
23194
  }
23134
23195
 
23135
23196
  export type LolTftPassEventHubType = "ActivityCenterMilestones" | "SeasonPass" | "HallOfLegends" | "EventShop"
@@ -23879,6 +23940,7 @@ export interface LolTftPassSeasonPass {
23879
23940
  localizedSeasonLogo: string
23880
23941
  localizedShortName: string
23881
23942
  chapters: LolTftPassChapter[]
23943
+ actBackgroundImage: string
23882
23944
  }
23883
23945
 
23884
23946
  export type LolTftPassSelectGrantStatusResponse = "FAILED" | "SELECTED"
@@ -25301,6 +25363,7 @@ export interface LolTftTrovesTFTRotationalShopConfig {
25301
25363
  refund: LolTftTrovesTFTRotationalShopRefundConfig
25302
25364
  littleLegendsUpgradeEnabled: boolean
25303
25365
  eventsStoreEnabled: boolean
25366
+ eventsStoreData: unknown
25304
25367
  }
25305
25368
 
25306
25369
  export interface LolTftTrovesTFTRotationalShopNavConfig {
@@ -27670,6 +27733,7 @@ export interface TeamBuilderDirect_Cell {
27670
27733
  /** @format int64 */
27671
27734
  obfuscatedSummonerId: number
27672
27735
  obfuscatedPuuid: string
27736
+ isAutofilled: boolean
27673
27737
  }
27674
27738
 
27675
27739
  export interface TeamBuilderDirect_Cells {
@@ -27800,6 +27864,7 @@ export interface TeamBuilderDirect_ChampSelectPinDropSummoner {
27800
27864
  lanePosition: number
27801
27865
  isLocalSummoner: boolean
27802
27866
  isPlaceholder: boolean
27867
+ isAutofilled: boolean
27803
27868
  }
27804
27869
 
27805
27870
  export interface TeamBuilderDirect_ChampSelectPlayerSelection {
@@ -27832,6 +27897,7 @@ export interface TeamBuilderDirect_ChampSelectPlayerSelection {
27832
27897
  /** @format uint64 */
27833
27898
  obfuscatedSummonerId: number
27834
27899
  obfuscatedPuuid: string
27900
+ isAutofilled: boolean
27835
27901
  internalName: string
27836
27902
  /** @format int32 */
27837
27903
  pickMode: number
@@ -27955,6 +28021,7 @@ export interface TeamBuilderDirect_ChampSelectSummoner {
27955
28021
  showSwaps: boolean
27956
28022
  showPositionSwaps: boolean
27957
28023
  showMuted: boolean
28024
+ isAutofilled: boolean
27958
28025
  }
27959
28026
 
27960
28027
  export interface TeamBuilderDirect_ChampSelectSwapContract {
@@ -28767,6 +28834,7 @@ export interface TeambuilderEdge_CellV1 {
28767
28834
  /** @format int32 */
28768
28835
  skinId: number
28769
28836
  nameVisibilityType: string
28837
+ isAutofilled: boolean
28770
28838
  }
28771
28839
 
28772
28840
  export interface TeambuilderEdge_CellsV1 {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hasagi/types",
3
- "version": "15.21.1",
4
- "_clientVersion": "15.21.720.4234",
3
+ "version": "15.23.1",
4
+ "_clientVersion": "15.23.727.2154",
5
5
  "description": "This package contains auto-generated LCU types and endpoints.",
6
6
  "scripts": {
7
7
  "update-deps": "npm i @hasagi/core@latest @hasagi/schema@latest @hasagi/cli@latest axios@latest -d",
@@ -17,7 +17,7 @@
17
17
  "@hasagi/cli": "^0.9.9",
18
18
  "@hasagi/core": "^0.6.7",
19
19
  "@hasagi/schema": "^0.7.0",
20
- "axios": "^1.12.2"
20
+ "axios": "^1.13.2"
21
21
  },
22
22
  "types": "./dist/index.d.ts",
23
23
  "repository": {