@hasagi/types 15.21.1 → 15.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lcu-endpoints.d.ts +13 -1
- package/dist/lcu-events.d.ts +84 -2
- package/dist/lcu-types.d.ts +23 -1
- package/package.json +3 -3
package/dist/lcu-endpoints.d.ts
CHANGED
|
@@ -674,6 +674,12 @@ export interface LCUEndpoints {
|
|
|
674
674
|
"/lol-chat/v1/friends": {
|
|
675
675
|
get: { path: never, params: never, body: never, response: LCUTypes.LolChatFriendResource[] }
|
|
676
676
|
},
|
|
677
|
+
"/lol-chat/v1/is-discord-link-available": {
|
|
678
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
679
|
+
},
|
|
680
|
+
"/lol-chat/v1/is-discord-linked": {
|
|
681
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
682
|
+
},
|
|
677
683
|
"/lol-chat/v1/me": {
|
|
678
684
|
get: { path: never, params: never, body: never, response: LCUTypes.LolChatUserResource }
|
|
679
685
|
put: { path: never, params: never, body: LCUTypes.LolChatUserResource, response: LCUTypes.LolChatUserResource }
|
|
@@ -1434,7 +1440,7 @@ export interface LCUEndpoints {
|
|
|
1434
1440
|
},
|
|
1435
1441
|
"/lol-lobby/v1/lobby/invitations": {
|
|
1436
1442
|
get: { path: never, params: never, body: never, response: LCUTypes.LolLobbyLobbyInvitation[] }
|
|
1437
|
-
post: { path: never, params: never, body:
|
|
1443
|
+
post: { path: never, params: never, body: never, response: LCUTypes.LolLobbyLobbyInvitation }
|
|
1438
1444
|
},
|
|
1439
1445
|
"/lol-lobby/v1/lobby/invitations/{id}": {
|
|
1440
1446
|
get: { path: [id: string], params: never, body: never, response: LCUTypes.LolLobbyLobbyInvitation }
|
|
@@ -2217,6 +2223,9 @@ export interface LCUEndpoints {
|
|
|
2217
2223
|
"/lol-spectator/v1/spectate/config": {
|
|
2218
2224
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSpectatorSpectatorConfig }
|
|
2219
2225
|
},
|
|
2226
|
+
"/lol-spectator/v3/buddy/can-spectate/{puuid}/{spectatorKey}": {
|
|
2227
|
+
get: { path: [puuid: string, spectatorKey: string], params: never, body: never, response: LCUTypes.LolSpectatorSpectatorKeySpectateResource }
|
|
2228
|
+
},
|
|
2220
2229
|
"/lol-statstones/v1/eog-notifications/{gameId}": {
|
|
2221
2230
|
get: { path: [gameId: number], params: never, body: never, response: LCUTypes.LolStatstonesEogNotificationEnvelope }
|
|
2222
2231
|
},
|
|
@@ -2944,6 +2953,9 @@ export interface LCUEndpoints {
|
|
|
2944
2953
|
"/lol-chat/v1/conversations/eog-chat-toggle": {
|
|
2945
2954
|
post: { path: never, params: never, body: boolean, response: unknown }
|
|
2946
2955
|
},
|
|
2956
|
+
"/lol-chat/v1/discord-link": {
|
|
2957
|
+
post: { path: never, params: never, body: void, response: unknown }
|
|
2958
|
+
},
|
|
2947
2959
|
"/lol-chat/v1/system-mutes": {
|
|
2948
2960
|
post: { path: never, params: never, body: LCUTypes.LolChatPlayerMuteUpdate, response: unknown }
|
|
2949
2961
|
},
|
package/dist/lcu-events.d.ts
CHANGED
|
@@ -44,6 +44,7 @@ export interface LCUWebSocketEvents {
|
|
|
44
44
|
"OnJsonApiEvent_lol-champ-select_v1_muted-players": LCUTypes.PluginResourceEvent,
|
|
45
45
|
"OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
|
|
46
46
|
"OnJsonApiEvent_lol-champ-select_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
47
|
+
"OnJsonApiEvent_lol-champion-mastery_v1_champion-mastery-view": LCUTypes.PluginResourceEvent,
|
|
47
48
|
"OnJsonApiEvent_lol-champion-mastery_v1_champion-mastery-view-enabled": LCUTypes.PluginResourceEvent,
|
|
48
49
|
"OnJsonApiEvent_lol-champion-mastery_v1_local-player": LCUTypes.PluginResourceEvent,
|
|
49
50
|
"OnJsonApiEvent_lol-champion-mastery_v1_ready": LCUTypes.PluginResourceEvent,
|
|
@@ -60,7 +61,9 @@ export interface LCUWebSocketEvents {
|
|
|
60
61
|
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
61
62
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
62
63
|
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
64
|
+
"OnJsonApiEvent_lol-clash_v1_all-tournaments": LCUTypes.PluginResourceEvent,
|
|
63
65
|
"OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
|
|
66
|
+
"OnJsonApiEvent_lol-clash_v1_currentTournamentIds": LCUTypes.PluginResourceEvent,
|
|
64
67
|
"OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
|
|
65
68
|
"OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
66
69
|
"OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
|
|
@@ -70,6 +73,9 @@ export interface LCUWebSocketEvents {
|
|
|
70
73
|
"OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
|
|
71
74
|
"OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
|
|
72
75
|
"OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
|
|
76
|
+
"OnJsonApiEvent_lol-clash_v1_tournament": LCUTypes.PluginResourceEvent,
|
|
77
|
+
"OnJsonApiEvent_lol-clash_v1_tournament-state-info": LCUTypes.PluginResourceEvent,
|
|
78
|
+
"OnJsonApiEvent_lol-clash_v1_tournament-summary": LCUTypes.PluginResourceEvent,
|
|
73
79
|
"OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
|
|
74
80
|
"OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
|
|
75
81
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
@@ -200,6 +206,7 @@ export interface LCUWebSocketEvents {
|
|
|
200
206
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_SettingsEnabled": LCUTypes.PluginResourceEvent,
|
|
201
207
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_SettingsVerifyEnabled": LCUTypes.PluginResourceEvent,
|
|
202
208
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_ShouldUseNewAvs": LCUTypes.PluginResourceEvent,
|
|
209
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_TencentPhoneDisplayEnabled": LCUTypes.PluginResourceEvent,
|
|
203
210
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Banners": LCUTypes.PluginResourceEvent,
|
|
204
211
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Banners_IsEnabledOnProfile": LCUTypes.PluginResourceEvent,
|
|
205
212
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Banners_IsEquipEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -269,6 +276,7 @@ export interface LCUWebSocketEvents {
|
|
|
269
276
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Chroma_IsEnabled": LCUTypes.PluginResourceEvent,
|
|
270
277
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Clash": LCUTypes.PluginResourceEvent,
|
|
271
278
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig": LCUTypes.PluginResourceEvent,
|
|
279
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_AntiCheatModalEnabled": LCUTypes.PluginResourceEvent,
|
|
272
280
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_AwardsTabEnabled": LCUTypes.PluginResourceEvent,
|
|
273
281
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_BracketSpectateEnabled": LCUTypes.PluginResourceEvent,
|
|
274
282
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_CapacityIndicatorEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -276,6 +284,7 @@ export interface LCUWebSocketEvents {
|
|
|
276
284
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EatTooltipEnabled": LCUTypes.PluginResourceEvent,
|
|
277
285
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EnabledState": LCUTypes.PluginResourceEvent,
|
|
278
286
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EndOfGameFlowEnabled": LCUTypes.PluginResourceEvent,
|
|
287
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_FaqLinkOverride": LCUTypes.PluginResourceEvent,
|
|
279
288
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_FindTeamViewEnabled": LCUTypes.PluginResourceEvent,
|
|
280
289
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_HonorLevelRequired": LCUTypes.PluginResourceEvent,
|
|
281
290
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_IconConfig": LCUTypes.PluginResourceEvent,
|
|
@@ -534,22 +543,28 @@ export interface LCUWebSocketEvents {
|
|
|
534
543
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets": LCUTypes.PluginResourceEvent,
|
|
535
544
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_EditorEnabled": LCUTypes.PluginResourceEvent,
|
|
536
545
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_MaxItemSets": LCUTypes.PluginResourceEvent,
|
|
546
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_RestrictedPageNamesEnabled": LCUTypes.PluginResourceEvent,
|
|
537
547
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_SendItemSetsToGame": LCUTypes.PluginResourceEvent,
|
|
538
548
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Karma": LCUTypes.PluginResourceEvent,
|
|
539
549
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Karma_Worlds2017VotingEnabled": LCUTypes.PluginResourceEvent,
|
|
540
550
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Kickout": LCUTypes.PluginResourceEvent,
|
|
551
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Kickout_Enabled": LCUTypes.PluginResourceEvent,
|
|
552
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Kickout_SecurityCheckEnabled": LCUTypes.PluginResourceEvent,
|
|
553
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Kickout_SecurityCheckUrl": LCUTypes.PluginResourceEvent,
|
|
541
554
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_KrPlaytimeReminder": LCUTypes.PluginResourceEvent,
|
|
555
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_KrPlaytimeReminder_Enabled": LCUTypes.PluginResourceEvent,
|
|
542
556
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU": LCUTypes.PluginResourceEvent,
|
|
543
557
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS": LCUTypes.PluginResourceEvent,
|
|
544
558
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_Endpoint": LCUTypes.PluginResourceEvent,
|
|
545
559
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_UseIdTokens": LCUTypes.PluginResourceEvent,
|
|
546
560
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
|
|
547
|
-
"OnJsonApiEvent_lol-platform-
|
|
561
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
|
|
548
562
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections": LCUTypes.PluginResourceEvent,
|
|
549
563
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_Enabled": LCUTypes.PluginResourceEvent,
|
|
550
564
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUAugmentsVisible": LCUTypes.PluginResourceEvent,
|
|
551
565
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesChromasEnabled": LCUTypes.PluginResourceEvent,
|
|
552
566
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesFinishersEnabled": LCUTypes.PluginResourceEvent,
|
|
567
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUEmotesEnabled": LCUTypes.PluginResourceEvent,
|
|
553
568
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUMasteriesVisible": LCUTypes.PluginResourceEvent,
|
|
554
569
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUPerksVisible": LCUTypes.PluginResourceEvent,
|
|
555
570
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCURunesVisible": LCUTypes.PluginResourceEvent,
|
|
@@ -591,11 +606,14 @@ export interface LCUWebSocketEvents {
|
|
|
591
606
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_ChampSelectReportV2Enabled": LCUTypes.PluginResourceEvent,
|
|
592
607
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_ChampTradingTooltipEnabled": LCUTypes.PluginResourceEvent,
|
|
593
608
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_DisableAutoSmiteAssignment": LCUTypes.PluginResourceEvent,
|
|
609
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_DraftActionTickSoundThreshold": LCUTypes.PluginResourceEvent,
|
|
594
610
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_EnableFavorites": LCUTypes.PluginResourceEvent,
|
|
595
611
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_EnablePositionFilters": LCUTypes.PluginResourceEvent,
|
|
596
612
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_IsDisconnectNotificationEnabled": LCUTypes.PluginResourceEvent,
|
|
613
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_MinPickIntentDuration": LCUTypes.PluginResourceEvent,
|
|
597
614
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_PickOrderSwappingTooltipEnabled": LCUTypes.PluginResourceEvent,
|
|
598
615
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_PositionAssignmentAnimationEnabled": LCUTypes.PluginResourceEvent,
|
|
616
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_PotatoModeForced": LCUTypes.PluginResourceEvent,
|
|
599
617
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_RandomChampionEnabledGameQueues": LCUTypes.PluginResourceEvent,
|
|
600
618
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_RandomChampionRateLimitInterval": LCUTypes.PluginResourceEvent,
|
|
601
619
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_RandomChampionRateLimitMaxActions": LCUTypes.PluginResourceEvent,
|
|
@@ -614,6 +632,8 @@ export interface LCUWebSocketEvents {
|
|
|
614
632
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEmailVerification_MaxOptionalLevel": LCUTypes.PluginResourceEvent,
|
|
615
633
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEmailVerification_MinimumSummonerLevel": LCUTypes.PluginResourceEvent,
|
|
616
634
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEmailVerification_RequiredLogins": LCUTypes.PluginResourceEvent,
|
|
635
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEsportsSpectator": LCUTypes.PluginResourceEvent,
|
|
636
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEsportsSpectator_Enabled": LCUTypes.PluginResourceEvent,
|
|
617
637
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuGameSettings": LCUTypes.PluginResourceEvent,
|
|
618
638
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuGameSettings_GameplayEnabled": LCUTypes.PluginResourceEvent,
|
|
619
639
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuGameSettings_HotkeysEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -636,6 +656,7 @@ export interface LCUWebSocketEvents {
|
|
|
636
656
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_AutoGrantInviteEnabled": LCUTypes.PluginResourceEvent,
|
|
637
657
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_GameInvitesEnabled": LCUTypes.PluginResourceEvent,
|
|
638
658
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_ObserverModeEnabled": LCUTypes.PluginResourceEvent,
|
|
659
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_PotatoModeForced": LCUTypes.PluginResourceEvent,
|
|
639
660
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_PracticeGameEnabled": LCUTypes.PluginResourceEvent,
|
|
640
661
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_PracticeGameListEnabled": LCUTypes.PluginResourceEvent,
|
|
641
662
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_QueueEligibilityGateKeeperEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -661,6 +682,7 @@ export interface LCUWebSocketEvents {
|
|
|
661
682
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuProfiles": LCUTypes.PluginResourceEvent,
|
|
662
683
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuProfiles_Enabled": LCUTypes.PluginResourceEvent,
|
|
663
684
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget": LCUTypes.PluginResourceEvent,
|
|
685
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_AlwaysShowPurchaseDisclaimer": LCUTypes.PluginResourceEvent,
|
|
664
686
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_BaseUrl": LCUTypes.PluginResourceEvent,
|
|
665
687
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_CapOrdersUrl": LCUTypes.PluginResourceEvent,
|
|
666
688
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_Enabled": LCUTypes.PluginResourceEvent,
|
|
@@ -682,6 +704,7 @@ export interface LCUWebSocketEvents {
|
|
|
682
704
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_ClearChatHistoryEnabled": LCUTypes.PluginResourceEvent,
|
|
683
705
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_DefaultGameQueues": LCUTypes.PluginResourceEvent,
|
|
684
706
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_EnabledGameQueues": LCUTypes.PluginResourceEvent,
|
|
707
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_ForceChatFilter": LCUTypes.PluginResourceEvent,
|
|
685
708
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_FriendRequestToastsDisabled": LCUTypes.PluginResourceEvent,
|
|
686
709
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_FriendsListGiftingEnabled": LCUTypes.PluginResourceEvent,
|
|
687
710
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_LcuSupportedGameQueues": LCUTypes.PluginResourceEvent,
|
|
@@ -898,8 +921,10 @@ export interface LCUWebSocketEvents {
|
|
|
898
921
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks": LCUTypes.PluginResourceEvent,
|
|
899
922
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks_MinSummonerLevelUnlockCustomPages": LCUTypes.PluginResourceEvent,
|
|
900
923
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks_PerksEnabled": LCUTypes.PluginResourceEvent,
|
|
924
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks_RestrictedPageNamesEnabled": LCUTypes.PluginResourceEvent,
|
|
901
925
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers": LCUTypes.PluginResourceEvent,
|
|
902
926
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_BaseServiceURL": LCUTypes.PluginResourceEvent,
|
|
927
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_DataAuthModal": LCUTypes.PluginResourceEvent,
|
|
903
928
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_HubEnabled": LCUTypes.PluginResourceEvent,
|
|
904
929
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_Port": LCUTypes.PluginResourceEvent,
|
|
905
930
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_PromotionEndTime": LCUTypes.PluginResourceEvent,
|
|
@@ -964,6 +989,7 @@ export interface LCUWebSocketEvents {
|
|
|
964
989
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndDivisionForPremadeSize2QueueId1100": LCUTypes.PluginResourceEvent,
|
|
965
990
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndDivisionForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
|
|
966
991
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1": LCUTypes.PluginResourceEvent,
|
|
992
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId4": LCUTypes.PluginResourceEvent,
|
|
967
993
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId410": LCUTypes.PluginResourceEvent,
|
|
968
994
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId420": LCUTypes.PluginResourceEvent,
|
|
969
995
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId440": LCUTypes.PluginResourceEvent,
|
|
@@ -971,31 +997,44 @@ export interface LCUWebSocketEvents {
|
|
|
971
997
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId9": LCUTypes.PluginResourceEvent,
|
|
972
998
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2": LCUTypes.PluginResourceEvent,
|
|
973
999
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId4": LCUTypes.PluginResourceEvent,
|
|
1000
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId410": LCUTypes.PluginResourceEvent,
|
|
974
1001
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
|
|
975
1002
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId440": LCUTypes.PluginResourceEvent,
|
|
976
1003
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId470": LCUTypes.PluginResourceEvent,
|
|
977
1004
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId9": LCUTypes.PluginResourceEvent,
|
|
978
1005
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3": LCUTypes.PluginResourceEvent,
|
|
1006
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId410": LCUTypes.PluginResourceEvent,
|
|
979
1007
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId420": LCUTypes.PluginResourceEvent,
|
|
980
1008
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId440": LCUTypes.PluginResourceEvent,
|
|
981
1009
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId470": LCUTypes.PluginResourceEvent,
|
|
982
1010
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId9": LCUTypes.PluginResourceEvent,
|
|
983
1011
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4": LCUTypes.PluginResourceEvent,
|
|
1012
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId410": LCUTypes.PluginResourceEvent,
|
|
984
1013
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId420": LCUTypes.PluginResourceEvent,
|
|
985
1014
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId440": LCUTypes.PluginResourceEvent,
|
|
986
1015
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId470": LCUTypes.PluginResourceEvent,
|
|
987
1016
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId9": LCUTypes.PluginResourceEvent,
|
|
988
1017
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5": LCUTypes.PluginResourceEvent,
|
|
1018
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId410": LCUTypes.PluginResourceEvent,
|
|
989
1019
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId420": LCUTypes.PluginResourceEvent,
|
|
990
1020
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId440": LCUTypes.PluginResourceEvent,
|
|
991
1021
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId470": LCUTypes.PluginResourceEvent,
|
|
992
1022
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId9": LCUTypes.PluginResourceEvent,
|
|
1023
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierForPremadeSize2QueueId1100": LCUTypes.PluginResourceEvent,
|
|
1024
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
|
|
993
1025
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_QueuesRequiringTwentyChampions": LCUTypes.PluginResourceEvent,
|
|
994
1026
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTier": LCUTypes.PluginResourceEvent,
|
|
1027
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId11": LCUTypes.PluginResourceEvent,
|
|
995
1028
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId4": LCUTypes.PluginResourceEvent,
|
|
996
1029
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId410": LCUTypes.PluginResourceEvent,
|
|
1030
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId411": LCUTypes.PluginResourceEvent,
|
|
1031
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId412": LCUTypes.PluginResourceEvent,
|
|
997
1032
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId420": LCUTypes.PluginResourceEvent,
|
|
1033
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId421": LCUTypes.PluginResourceEvent,
|
|
1034
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId422": LCUTypes.PluginResourceEvent,
|
|
998
1035
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId440": LCUTypes.PluginResourceEvent,
|
|
1036
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId441": LCUTypes.PluginResourceEvent,
|
|
1037
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId442": LCUTypes.PluginResourceEvent,
|
|
999
1038
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId470": LCUTypes.PluginResourceEvent,
|
|
1000
1039
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId9": LCUTypes.PluginResourceEvent,
|
|
1001
1040
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
@@ -1005,44 +1044,82 @@ export interface LCUWebSocketEvents {
|
|
|
1005
1044
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeRestrictionEnabled": LCUTypes.PluginResourceEvent,
|
|
1006
1045
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeTier": LCUTypes.PluginResourceEvent,
|
|
1007
1046
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTier": LCUTypes.PluginResourceEvent,
|
|
1047
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId11": LCUTypes.PluginResourceEvent,
|
|
1008
1048
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId4": LCUTypes.PluginResourceEvent,
|
|
1009
1049
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId410": LCUTypes.PluginResourceEvent,
|
|
1050
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId411": LCUTypes.PluginResourceEvent,
|
|
1051
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId412": LCUTypes.PluginResourceEvent,
|
|
1010
1052
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId420": LCUTypes.PluginResourceEvent,
|
|
1053
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId421": LCUTypes.PluginResourceEvent,
|
|
1054
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId422": LCUTypes.PluginResourceEvent,
|
|
1011
1055
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId440": LCUTypes.PluginResourceEvent,
|
|
1056
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId441": LCUTypes.PluginResourceEvent,
|
|
1057
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId442": LCUTypes.PluginResourceEvent,
|
|
1012
1058
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId470": LCUTypes.PluginResourceEvent,
|
|
1013
1059
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId9": LCUTypes.PluginResourceEvent,
|
|
1014
1060
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
1061
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId11": LCUTypes.PluginResourceEvent,
|
|
1015
1062
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
|
|
1016
1063
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
|
|
1064
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId411": LCUTypes.PluginResourceEvent,
|
|
1065
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId412": LCUTypes.PluginResourceEvent,
|
|
1017
1066
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
|
|
1067
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId421": LCUTypes.PluginResourceEvent,
|
|
1068
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId422": LCUTypes.PluginResourceEvent,
|
|
1018
1069
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
|
|
1070
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId441": LCUTypes.PluginResourceEvent,
|
|
1071
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId442": LCUTypes.PluginResourceEvent,
|
|
1019
1072
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
|
|
1020
1073
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
|
|
1021
1074
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMode": LCUTypes.PluginResourceEvent,
|
|
1075
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId11": LCUTypes.PluginResourceEvent,
|
|
1022
1076
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
|
|
1023
1077
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
|
|
1078
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId411": LCUTypes.PluginResourceEvent,
|
|
1079
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId412": LCUTypes.PluginResourceEvent,
|
|
1024
1080
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
|
|
1081
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId421": LCUTypes.PluginResourceEvent,
|
|
1082
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId422": LCUTypes.PluginResourceEvent,
|
|
1025
1083
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
|
|
1084
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId441": LCUTypes.PluginResourceEvent,
|
|
1085
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId442": LCUTypes.PluginResourceEvent,
|
|
1026
1086
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId470": LCUTypes.PluginResourceEvent,
|
|
1027
1087
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId9": LCUTypes.PluginResourceEvent,
|
|
1028
1088
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
1089
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId11": LCUTypes.PluginResourceEvent,
|
|
1029
1090
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
|
|
1030
1091
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
|
|
1092
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId411": LCUTypes.PluginResourceEvent,
|
|
1093
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId412": LCUTypes.PluginResourceEvent,
|
|
1031
1094
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
|
|
1095
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId421": LCUTypes.PluginResourceEvent,
|
|
1096
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId422": LCUTypes.PluginResourceEvent,
|
|
1032
1097
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
|
|
1098
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId441": LCUTypes.PluginResourceEvent,
|
|
1099
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId442": LCUTypes.PluginResourceEvent,
|
|
1033
1100
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
|
|
1034
1101
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
|
|
1035
1102
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMode": LCUTypes.PluginResourceEvent,
|
|
1103
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId11": LCUTypes.PluginResourceEvent,
|
|
1036
1104
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
|
|
1037
1105
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
|
|
1106
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId411": LCUTypes.PluginResourceEvent,
|
|
1107
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId412": LCUTypes.PluginResourceEvent,
|
|
1038
1108
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
|
|
1109
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId421": LCUTypes.PluginResourceEvent,
|
|
1110
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId422": LCUTypes.PluginResourceEvent,
|
|
1039
1111
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
|
|
1112
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId441": LCUTypes.PluginResourceEvent,
|
|
1113
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId442": LCUTypes.PluginResourceEvent,
|
|
1040
1114
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId470": LCUTypes.PluginResourceEvent,
|
|
1041
1115
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId9": LCUTypes.PluginResourceEvent,
|
|
1042
1116
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_ServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
1117
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRewards": LCUTypes.PluginResourceEvent,
|
|
1118
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRewards_SoloAutoFillProtectionForQueueId440": LCUTypes.PluginResourceEvent,
|
|
1043
1119
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Regalia": LCUTypes.PluginResourceEvent,
|
|
1044
1120
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays": LCUTypes.PluginResourceEvent,
|
|
1045
1121
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_MinSupportedGameServerVersion": LCUTypes.PluginResourceEvent,
|
|
1122
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_MinutesUntilReplayConsideredLost": LCUTypes.PluginResourceEvent,
|
|
1046
1123
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_ThirdPersonAccessibleGameQueues": LCUTypes.PluginResourceEvent,
|
|
1047
1124
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards": LCUTypes.PluginResourceEvent,
|
|
1048
1125
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards_Enabled": LCUTypes.PluginResourceEvent,
|
|
@@ -1072,6 +1149,7 @@ export interface LCUWebSocketEvents {
|
|
|
1072
1149
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals": LCUTypes.PluginResourceEvent,
|
|
1073
1150
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals_Enabled": LCUTypes.PluginResourceEvent,
|
|
1074
1151
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer": LCUTypes.PluginResourceEvent,
|
|
1152
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer_DisableAllPurchase": LCUTypes.PluginResourceEvent,
|
|
1075
1153
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer_VintageSkinSummonerIconConfig": LCUTypes.PluginResourceEvent,
|
|
1076
1154
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard": LCUTypes.PluginResourceEvent,
|
|
1077
1155
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_IsSocialLeaderboardEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -1116,6 +1194,8 @@ export interface LCUWebSocketEvents {
|
|
|
1116
1194
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_TBRerollServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
1117
1195
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_TakeoverEnabled": LCUTypes.PluginResourceEvent,
|
|
1118
1196
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_UnlockLockInButtonTimeoutEnabled": LCUTypes.PluginResourceEvent,
|
|
1197
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction": LCUTypes.PluginResourceEvent,
|
|
1198
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction_AntiAddictionUrl": LCUTypes.PluginResourceEvent,
|
|
1119
1199
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction_Enabled": LCUTypes.PluginResourceEvent,
|
|
1120
1200
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing": LCUTypes.PluginResourceEvent,
|
|
1121
1201
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing_Rcarter": LCUTypes.PluginResourceEvent,
|
|
@@ -1174,6 +1254,7 @@ export interface LCUWebSocketEvents {
|
|
|
1174
1254
|
"OnJsonApiEvent_lol-shoppefront_v1_stores": LCUTypes.PluginResourceEvent,
|
|
1175
1255
|
"OnJsonApiEvent_lol-shutdown_v1_notification": LCUTypes.PluginResourceEvent,
|
|
1176
1256
|
"OnJsonApiEvent_lol-spectator_v1_spectate": LCUTypes.PluginResourceEvent,
|
|
1257
|
+
"OnJsonApiEvent_lol-statstones_v2_player-summary-self": LCUTypes.PluginResourceEvent,
|
|
1177
1258
|
"OnJsonApiEvent_lol-store_v1_getStoreUrl": LCUTypes.PluginResourceEvent,
|
|
1178
1259
|
"OnJsonApiEvent_lol-store_v1_store-ready": LCUTypes.PluginResourceEvent,
|
|
1179
1260
|
"OnJsonApiEvent_lol-suggested-players_v1_suggested-players": LCUTypes.PluginResourceEvent,
|
|
@@ -1191,9 +1272,11 @@ export interface LCUWebSocketEvents {
|
|
|
1191
1272
|
"OnJsonApiEvent_lol-tft-pass_v1_active-passes": LCUTypes.PluginResourceEvent,
|
|
1192
1273
|
"OnJsonApiEvent_lol-tft-pass_v1_battle-pass": LCUTypes.PluginResourceEvent,
|
|
1193
1274
|
"OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
|
|
1275
|
+
"OnJsonApiEvent_lol-tft-pass_v1_event-pass": LCUTypes.PluginResourceEvent,
|
|
1194
1276
|
"OnJsonApiEvent_lol-tft-pass_v1_pm-ultimate-victory-pass": LCUTypes.PluginResourceEvent,
|
|
1195
1277
|
"OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1196
1278
|
"OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,
|
|
1279
|
+
"OnJsonApiEvent_lol-tft-skill-tree_v1_skill-tree": LCUTypes.PluginResourceEvent,
|
|
1197
1280
|
"OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
|
|
1198
1281
|
"OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
|
|
1199
1282
|
"OnJsonApiEvent_lol-tft-team-planner_v1_previous-context": LCUTypes.PluginResourceEvent,
|
|
@@ -1257,7 +1340,6 @@ export interface LCUWebSocketEvents {
|
|
|
1257
1340
|
"OnLcdsEvent_com_riotgames_platform_game_message_GameNotification": LCUTypes.PluginLcdsEvent,
|
|
1258
1341
|
"OnLcdsEvent_com_riotgames_platform_gameinvite_contract_InvitationRequest": LCUTypes.PluginLcdsEvent,
|
|
1259
1342
|
"OnLcdsEvent_com_riotgames_platform_gameinvite_contract_InvitePrivileges": LCUTypes.PluginLcdsEvent,
|
|
1260
|
-
"OnLcdsEvent_com_riotgames_platform_gameinvite_contract_LobbyStatus": LCUTypes.PluginLcdsEvent,
|
|
1261
1343
|
"OnLcdsEvent_com_riotgames_platform_gameinvite_contract_RemovedFromLobbyNotification": LCUTypes.PluginLcdsEvent,
|
|
1262
1344
|
"OnLcdsEvent_com_riotgames_platform_leaverbuster_event_messaging_LeaverBusterLowPriorityQueueAbandoned": LCUTypes.PluginLcdsEvent,
|
|
1263
1345
|
"OnLcdsEvent_com_riotgames_platform_loyalty_message_LoyaltyStateChangeNotification": LCUTypes.PluginLcdsEvent,
|
package/dist/lcu-types.d.ts
CHANGED
|
@@ -3455,6 +3455,7 @@ export interface LolChampionsGameDataChampion {
|
|
|
3455
3455
|
export interface LolChampionsGameDataChampionChroma {
|
|
3456
3456
|
/** @format int32 */
|
|
3457
3457
|
id: number
|
|
3458
|
+
name: string
|
|
3458
3459
|
colors: string[]
|
|
3459
3460
|
chromaPath: string
|
|
3460
3461
|
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
@@ -3854,6 +3855,13 @@ export interface LolChatDebugResource {
|
|
|
3854
3855
|
silenceChatWhileInGame?: boolean
|
|
3855
3856
|
}
|
|
3856
3857
|
|
|
3858
|
+
export interface LolChatDiscordLink {
|
|
3859
|
+
available: boolean
|
|
3860
|
+
linked: boolean
|
|
3861
|
+
visible: boolean
|
|
3862
|
+
error: string
|
|
3863
|
+
}
|
|
3864
|
+
|
|
3857
3865
|
export interface LolChatEndOfGamePlayer {
|
|
3858
3866
|
puuid: string
|
|
3859
3867
|
/** @format uint64 */
|
|
@@ -4029,6 +4037,7 @@ export interface LolChatFriendResource {
|
|
|
4029
4037
|
groupName: string
|
|
4030
4038
|
displayGroupName: string
|
|
4031
4039
|
lol: Record<string, string>
|
|
4040
|
+
discordInfo?: LolChatSocialV4DiscordInfo
|
|
4032
4041
|
}
|
|
4033
4042
|
|
|
4034
4043
|
export type LolChatFriendSubscriptionType = "pending_in" | "pending_out"
|
|
@@ -6745,6 +6754,7 @@ export interface LolCosmeticsTFTRotationalShopConfig {
|
|
|
6745
6754
|
refund: LolCosmeticsTFTRotationalShopRefundConfig
|
|
6746
6755
|
littleLegendsUpgradeEnabled: boolean
|
|
6747
6756
|
eventsStoreEnabled: boolean
|
|
6757
|
+
eventsStoreData: unknown
|
|
6748
6758
|
}
|
|
6749
6759
|
|
|
6750
6760
|
export interface LolCosmeticsTFTRotationalShopNavConfig {
|
|
@@ -9941,6 +9951,7 @@ export interface LolGameflowSpectateGameInfoResource {
|
|
|
9941
9951
|
gameQueueType: string
|
|
9942
9952
|
allowObserveMode: string
|
|
9943
9953
|
puuid: string
|
|
9954
|
+
spectatorKey: string
|
|
9944
9955
|
}
|
|
9945
9956
|
|
|
9946
9957
|
export interface LolHeartbeatLcdsConnection {
|
|
@@ -13917,6 +13928,7 @@ export interface LolMarketplaceTFTRotationalShopConfig {
|
|
|
13917
13928
|
refund: LolMarketplaceTFTRotationalShopRefundConfig
|
|
13918
13929
|
littleLegendsUpgradeEnabled: boolean
|
|
13919
13930
|
eventsStoreEnabled: boolean
|
|
13931
|
+
eventsStoreData: unknown
|
|
13920
13932
|
}
|
|
13921
13933
|
|
|
13922
13934
|
export interface LolMarketplaceTFTRotationalShopNavConfig {
|
|
@@ -18605,7 +18617,6 @@ export interface LolRankedRankedStats {
|
|
|
18605
18617
|
/** @format int32 */
|
|
18606
18618
|
previousSeasonSplitPoints: number
|
|
18607
18619
|
seasons: Record<string, LolRankedSeasonDTO>
|
|
18608
|
-
shouldShowIndicator: boolean
|
|
18609
18620
|
}
|
|
18610
18621
|
|
|
18611
18622
|
export interface LolRankedRankedStatsDTO {
|
|
@@ -20562,6 +20573,7 @@ export interface LolSpectatorSpectateGameInfo {
|
|
|
20562
20573
|
gameQueueType: string
|
|
20563
20574
|
allowObserveMode: string
|
|
20564
20575
|
puuid: string
|
|
20576
|
+
spectatorKey: string
|
|
20565
20577
|
}
|
|
20566
20578
|
|
|
20567
20579
|
export interface LolSpectatorSpectateResource {
|
|
@@ -20582,6 +20594,11 @@ export interface LolSpectatorSpectatorDynamicConfiguration {
|
|
|
20582
20594
|
isUsingOperationalConfig: boolean
|
|
20583
20595
|
}
|
|
20584
20596
|
|
|
20597
|
+
export interface LolSpectatorSpectatorKeySpectateResource {
|
|
20598
|
+
availableForWatching: boolean
|
|
20599
|
+
reason: string
|
|
20600
|
+
}
|
|
20601
|
+
|
|
20585
20602
|
export interface LolSpectatorSpectatorOperationalConfiguration {
|
|
20586
20603
|
enabled: boolean
|
|
20587
20604
|
enforceGridSpectating: boolean
|
|
@@ -25301,6 +25318,7 @@ export interface LolTftTrovesTFTRotationalShopConfig {
|
|
|
25301
25318
|
refund: LolTftTrovesTFTRotationalShopRefundConfig
|
|
25302
25319
|
littleLegendsUpgradeEnabled: boolean
|
|
25303
25320
|
eventsStoreEnabled: boolean
|
|
25321
|
+
eventsStoreData: unknown
|
|
25304
25322
|
}
|
|
25305
25323
|
|
|
25306
25324
|
export interface LolTftTrovesTFTRotationalShopNavConfig {
|
|
@@ -27670,6 +27688,7 @@ export interface TeamBuilderDirect_Cell {
|
|
|
27670
27688
|
/** @format int64 */
|
|
27671
27689
|
obfuscatedSummonerId: number
|
|
27672
27690
|
obfuscatedPuuid: string
|
|
27691
|
+
isAutofilled: boolean
|
|
27673
27692
|
}
|
|
27674
27693
|
|
|
27675
27694
|
export interface TeamBuilderDirect_Cells {
|
|
@@ -27832,6 +27851,7 @@ export interface TeamBuilderDirect_ChampSelectPlayerSelection {
|
|
|
27832
27851
|
/** @format uint64 */
|
|
27833
27852
|
obfuscatedSummonerId: number
|
|
27834
27853
|
obfuscatedPuuid: string
|
|
27854
|
+
isAutofilled: boolean
|
|
27835
27855
|
internalName: string
|
|
27836
27856
|
/** @format int32 */
|
|
27837
27857
|
pickMode: number
|
|
@@ -27955,6 +27975,7 @@ export interface TeamBuilderDirect_ChampSelectSummoner {
|
|
|
27955
27975
|
showSwaps: boolean
|
|
27956
27976
|
showPositionSwaps: boolean
|
|
27957
27977
|
showMuted: boolean
|
|
27978
|
+
isAutofilled: boolean
|
|
27958
27979
|
}
|
|
27959
27980
|
|
|
27960
27981
|
export interface TeamBuilderDirect_ChampSelectSwapContract {
|
|
@@ -28767,6 +28788,7 @@ export interface TeambuilderEdge_CellV1 {
|
|
|
28767
28788
|
/** @format int32 */
|
|
28768
28789
|
skinId: number
|
|
28769
28790
|
nameVisibilityType: string
|
|
28791
|
+
isAutofilled: boolean
|
|
28770
28792
|
}
|
|
28771
28793
|
|
|
28772
28794
|
export interface TeambuilderEdge_CellsV1 {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasagi/types",
|
|
3
|
-
"version": "15.
|
|
4
|
-
"_clientVersion": "15.
|
|
3
|
+
"version": "15.22.1",
|
|
4
|
+
"_clientVersion": "15.22.723.4896",
|
|
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.
|
|
20
|
+
"axios": "^1.13.2"
|
|
21
21
|
},
|
|
22
22
|
"types": "./dist/index.d.ts",
|
|
23
23
|
"repository": {
|