@hasagi/types 13.19.2 → 14.7.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/LICENSE +1 -1
- package/index.d.ts +2 -2
- package/lcu-endpoints.d.ts +1470 -1274
- package/lcu-events.d.ts +28 -11
- package/lcu-types.d.ts +24671 -18718
- package/package.json +11 -5
package/lcu-events.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as LCUTypes from "./lcu-types";
|
|
2
2
|
|
|
3
3
|
export interface LCUWebSocketEvents {
|
|
4
4
|
[key: string]: LCUTypes.PluginResourceEvent | LCUTypes.BindingCallbackEvent | LCUTypes.PluginLcdsEvent | LCUTypes.PluginRegionLocaleChangedEvent | LCUTypes.LogEvent | LCUTypes.PluginServiceProxyResponse
|
|
@@ -10,25 +10,26 @@ export interface LCUWebSocketEvents {
|
|
|
10
10
|
"OnJsonApiEvent_chat_v3_errors": LCUTypes.PluginResourceEvent,
|
|
11
11
|
"OnJsonApiEvent_chat_v3_friends": LCUTypes.PluginResourceEvent,
|
|
12
12
|
"OnJsonApiEvent_chat_v3_groups": LCUTypes.PluginResourceEvent,
|
|
13
|
-
"OnJsonApiEvent_chat_v4_friendrequests": LCUTypes.PluginResourceEvent,
|
|
14
13
|
"OnJsonApiEvent_chat_v4_presences": LCUTypes.PluginResourceEvent,
|
|
15
14
|
"OnJsonApiEvent_chat_v5_messages": LCUTypes.PluginResourceEvent,
|
|
16
15
|
"OnJsonApiEvent_chat_v5_participants": LCUTypes.PluginResourceEvent,
|
|
17
16
|
"OnJsonApiEvent_chat_v6_conversations": LCUTypes.PluginResourceEvent,
|
|
17
|
+
"OnJsonApiEvent_chat_v6_friendrequests": LCUTypes.PluginResourceEvent,
|
|
18
18
|
"OnJsonApiEvent_client-config_v1_status": LCUTypes.PluginResourceEvent,
|
|
19
19
|
"OnJsonApiEvent_client-config_v2_config": LCUTypes.PluginResourceEvent,
|
|
20
20
|
"OnJsonApiEvent_client-config_v2_namespace": LCUTypes.PluginResourceEvent,
|
|
21
21
|
"OnJsonApiEvent_config_v1_config": LCUTypes.PluginResourceEvent,
|
|
22
22
|
"OnJsonApiEvent_data-store_v1_install-settings": LCUTypes.PluginResourceEvent,
|
|
23
23
|
"OnJsonApiEvent_data-store_v1_system-settings": LCUTypes.PluginResourceEvent,
|
|
24
|
+
"OnJsonApiEvent_deep-links_v1_settings": LCUTypes.PluginResourceEvent,
|
|
24
25
|
"OnJsonApiEvent_entitlements_v1_token": LCUTypes.PluginResourceEvent,
|
|
25
26
|
"OnJsonApiEvent_ga-restriction_v1_penalty-notifications": LCUTypes.PluginResourceEvent,
|
|
26
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-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
29
|
-
"OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
|
|
30
30
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
31
31
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
32
|
+
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
32
33
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
33
34
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
34
35
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -38,7 +39,6 @@ export interface LCUWebSocketEvents {
|
|
|
38
39
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_session": LCUTypes.PluginResourceEvent,
|
|
39
40
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
40
41
|
"OnJsonApiEvent_lol-champ-select_v1_all-grid-champions": LCUTypes.PluginResourceEvent,
|
|
41
|
-
"OnJsonApiEvent_lol-champ-select_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
42
42
|
"OnJsonApiEvent_lol-champ-select_v1_grid-champions": LCUTypes.PluginResourceEvent,
|
|
43
43
|
"OnJsonApiEvent_lol-champ-select_v1_muted-players": LCUTypes.PluginResourceEvent,
|
|
44
44
|
"OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
|
|
@@ -56,7 +56,9 @@ export interface LCUWebSocketEvents {
|
|
|
56
56
|
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
57
57
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
58
58
|
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
59
|
+
"OnJsonApiEvent_lol-clash_v1_all-tournaments": LCUTypes.PluginResourceEvent,
|
|
59
60
|
"OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
|
|
61
|
+
"OnJsonApiEvent_lol-clash_v1_currentTournamentIds": LCUTypes.PluginResourceEvent,
|
|
60
62
|
"OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
|
|
61
63
|
"OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
62
64
|
"OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
|
|
@@ -66,26 +68,34 @@ export interface LCUWebSocketEvents {
|
|
|
66
68
|
"OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
|
|
67
69
|
"OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
|
|
68
70
|
"OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
|
|
71
|
+
"OnJsonApiEvent_lol-clash_v1_tournament": LCUTypes.PluginResourceEvent,
|
|
72
|
+
"OnJsonApiEvent_lol-clash_v1_tournament-state-info": LCUTypes.PluginResourceEvent,
|
|
73
|
+
"OnJsonApiEvent_lol-clash_v1_tournament-summary": LCUTypes.PluginResourceEvent,
|
|
69
74
|
"OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
|
|
70
75
|
"OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
|
|
71
76
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
72
77
|
"OnJsonApiEvent_lol-client-config_v3_client-config": LCUTypes.PluginResourceEvent,
|
|
73
78
|
"OnJsonApiEvent_lol-collections_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
74
79
|
"OnJsonApiEvent_lol-content-targeting_v1_filters": LCUTypes.PluginResourceEvent,
|
|
80
|
+
"OnJsonApiEvent_lol-cosmetics_v1_favorites": LCUTypes.PluginResourceEvent,
|
|
75
81
|
"OnJsonApiEvent_lol-cosmetics_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
76
82
|
"OnJsonApiEvent_lol-drops_v1_ready": LCUTypes.PluginResourceEvent,
|
|
77
83
|
"OnJsonApiEvent_lol-end-of-game_v1_eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
78
84
|
"OnJsonApiEvent_lol-end-of-game_v1_gameclient-eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
79
85
|
"OnJsonApiEvent_lol-end-of-game_v1_tft-eog-stats": LCUTypes.PluginResourceEvent,
|
|
86
|
+
"OnJsonApiEvent_lol-event-hub_v1_events": LCUTypes.PluginResourceEvent,
|
|
87
|
+
"OnJsonApiEvent_lol-event-hub_v1_navigation-button-data": LCUTypes.PluginResourceEvent,
|
|
88
|
+
"OnJsonApiEvent_lol-event-hub_v1_skins": LCUTypes.PluginResourceEvent,
|
|
89
|
+
"OnJsonApiEvent_lol-event-hub_v1_token-upsell": LCUTypes.PluginResourceEvent,
|
|
90
|
+
"OnJsonApiEvent_lol-event-mission_v1_event-mission": LCUTypes.PluginResourceEvent,
|
|
80
91
|
"OnJsonApiEvent_lol-event-shop_v1_info": LCUTypes.PluginResourceEvent,
|
|
81
92
|
"OnJsonApiEvent_lol-event-shop_v1_navigation-button-data": LCUTypes.PluginResourceEvent,
|
|
82
93
|
"OnJsonApiEvent_lol-event-shop_v1_token-upsell": LCUTypes.PluginResourceEvent,
|
|
83
|
-
"OnJsonApiEvent_lol-game-client-chat_v1_aas-messages": LCUTypes.PluginResourceEvent,
|
|
84
94
|
"OnJsonApiEvent_lol-game-client-chat_v1_buddies": LCUTypes.PluginResourceEvent,
|
|
85
95
|
"OnJsonApiEvent_lol-game-client-chat_v1_instant-messages": LCUTypes.PluginResourceEvent,
|
|
86
|
-
"OnJsonApiEvent_lol-game-client-chat_v2_aas-messages": LCUTypes.PluginResourceEvent,
|
|
87
96
|
"OnJsonApiEvent_lol-game-client-chat_v2_buddies": LCUTypes.PluginResourceEvent,
|
|
88
97
|
"OnJsonApiEvent_lol-game-client-chat_v2_instant-messages": LCUTypes.PluginResourceEvent,
|
|
98
|
+
"OnJsonApiEvent_lol-game-client-chat_v2_playtime-reminder-hours-played": LCUTypes.PluginResourceEvent,
|
|
89
99
|
"OnJsonApiEvent_lol-game-queues_v1_custom": LCUTypes.PluginResourceEvent,
|
|
90
100
|
"OnJsonApiEvent_lol-game-queues_v1_custom-non-default": LCUTypes.PluginResourceEvent,
|
|
91
101
|
"OnJsonApiEvent_lol-game-queues_v1_queues": LCUTypes.PluginResourceEvent,
|
|
@@ -120,8 +130,9 @@ export interface LCUWebSocketEvents {
|
|
|
120
130
|
"OnJsonApiEvent_lol-inventory_v1_signedInventory": LCUTypes.PluginResourceEvent,
|
|
121
131
|
"OnJsonApiEvent_lol-inventory_v1_wallet": LCUTypes.PluginResourceEvent,
|
|
122
132
|
"OnJsonApiEvent_lol-inventory_v2_inventory": LCUTypes.PluginResourceEvent,
|
|
123
|
-
"OnJsonApiEvent_lol-kr-playtime-
|
|
133
|
+
"OnJsonApiEvent_lol-kr-playtime-reminder_v1_hours-played": LCUTypes.PluginResourceEvent,
|
|
124
134
|
"OnJsonApiEvent_lol-league-session_v1_league-session-token": LCUTypes.PluginResourceEvent,
|
|
135
|
+
"OnJsonApiEvent_lol-leaver-buster_v1_ranked-restriction": LCUTypes.PluginResourceEvent,
|
|
125
136
|
"OnJsonApiEvent_lol-license-agreement_v1_agreements": LCUTypes.PluginResourceEvent,
|
|
126
137
|
"OnJsonApiEvent_lol-license-agreement_v1_all-agreements": LCUTypes.PluginResourceEvent,
|
|
127
138
|
"OnJsonApiEvent_lol-license-agreement_v1_serve-location": LCUTypes.PluginResourceEvent,
|
|
@@ -201,6 +212,7 @@ export interface LCUWebSocketEvents {
|
|
|
201
212
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_BotConfigurations_RiotscriptInCustoms": LCUTypes.PluginResourceEvent,
|
|
202
213
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CareerStats": LCUTypes.PluginResourceEvent,
|
|
203
214
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CareerStats_StatsEnabled": LCUTypes.PluginResourceEvent,
|
|
215
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CareerStats_YearsAllowedToQuerySeasonData": LCUTypes.PluginResourceEvent,
|
|
204
216
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Challenges": LCUTypes.PluginResourceEvent,
|
|
205
217
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Challenges_ChallengeUpdateDelaySeconds": LCUTypes.PluginResourceEvent,
|
|
206
218
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Challenges_ClientState": LCUTypes.PluginResourceEvent,
|
|
@@ -216,6 +228,7 @@ export interface LCUWebSocketEvents {
|
|
|
216
228
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Challenges_PartiesV2Enabled": LCUTypes.PluginResourceEvent,
|
|
217
229
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Challenges_PostgameOverride": LCUTypes.PluginResourceEvent,
|
|
218
230
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Challenges_RankIdentityOverride": LCUTypes.PluginResourceEvent,
|
|
231
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Challenges_SeasonalTooltipEnabled": LCUTypes.PluginResourceEvent,
|
|
219
232
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Challenges_WaitTimeBeforeCallChallengeUpdateSeconds": LCUTypes.PluginResourceEvent,
|
|
220
233
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Challenges_WaitTimeBeforeDarkModeAdditionalCallsSeconds": LCUTypes.PluginResourceEvent,
|
|
221
234
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ChampionMasteryConfig": LCUTypes.PluginResourceEvent,
|
|
@@ -260,6 +273,7 @@ export interface LCUWebSocketEvents {
|
|
|
260
273
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_CapacityIndicatorEnabled": LCUTypes.PluginResourceEvent,
|
|
261
274
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ClashStartModalEnabled": LCUTypes.PluginResourceEvent,
|
|
262
275
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_DarkModeEntitlement": LCUTypes.PluginResourceEvent,
|
|
276
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EatTooltipEnabled": LCUTypes.PluginResourceEvent,
|
|
263
277
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EnabledState": LCUTypes.PluginResourceEvent,
|
|
264
278
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EndOfGameFlowEnabled": LCUTypes.PluginResourceEvent,
|
|
265
279
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_FindTeamViewEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -363,6 +377,7 @@ export interface LCUWebSocketEvents {
|
|
|
363
377
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_BOT": LCUTypes.PluginResourceEvent,
|
|
364
378
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_BOT_3x3": LCUTypes.PluginResourceEvent,
|
|
365
379
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_CHERRY": LCUTypes.PluginResourceEvent,
|
|
380
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_CHERRY_UNRANKED": LCUTypes.PluginResourceEvent,
|
|
366
381
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_CLASH": LCUTypes.PluginResourceEvent,
|
|
367
382
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_CLASSIC": LCUTypes.PluginResourceEvent,
|
|
368
383
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_COUNTER_PICK": LCUTypes.PluginResourceEvent,
|
|
@@ -375,6 +390,7 @@ export interface LCUWebSocketEvents {
|
|
|
375
390
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO-5X5": LCUTypes.PluginResourceEvent,
|
|
376
391
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KING_PORO": LCUTypes.PluginResourceEvent,
|
|
377
392
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY23_TFT": LCUTypes.PluginResourceEvent,
|
|
393
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY24_TFT": LCUTypes.PluginResourceEvent,
|
|
378
394
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NEXUSBLITZ": LCUTypes.PluginResourceEvent,
|
|
379
395
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NIGHTMARE_BOT": LCUTypes.PluginResourceEvent,
|
|
380
396
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL": LCUTypes.PluginResourceEvent,
|
|
@@ -400,6 +416,7 @@ export interface LCUWebSocketEvents {
|
|
|
400
416
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TFT_DOUBLE_UP": LCUTypes.PluginResourceEvent,
|
|
401
417
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TFT_PAIRS": LCUTypes.PluginResourceEvent,
|
|
402
418
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TFT_TURBO": LCUTypes.PluginResourceEvent,
|
|
419
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RIOTSCRIPT_BOT": LCUTypes.PluginResourceEvent,
|
|
403
420
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SF_TFT": LCUTypes.PluginResourceEvent,
|
|
404
421
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SIEGE": LCUTypes.PluginResourceEvent,
|
|
405
422
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SNOWURF": LCUTypes.PluginResourceEvent,
|
|
@@ -707,11 +724,9 @@ export interface LCUWebSocketEvents {
|
|
|
707
724
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSettings_FullRepairEnabled": LCUTypes.PluginResourceEvent,
|
|
708
725
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial": LCUTypes.PluginResourceEvent,
|
|
709
726
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_AutoLinkEnabled": LCUTypes.PluginResourceEvent,
|
|
710
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_ChatWindowPopoutEnabled": LCUTypes.PluginResourceEvent,
|
|
711
727
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_ChatWindowResizeEnabled": LCUTypes.PluginResourceEvent,
|
|
712
728
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_ClearChatHistoryEnabled": LCUTypes.PluginResourceEvent,
|
|
713
729
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_DefaultGameQueues": LCUTypes.PluginResourceEvent,
|
|
714
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_DetachedChatWindowResizeDisabled": LCUTypes.PluginResourceEvent,
|
|
715
730
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_EnabledGameQueues": LCUTypes.PluginResourceEvent,
|
|
716
731
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_FriendRequestToastsDisabled": LCUTypes.PluginResourceEvent,
|
|
717
732
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_FriendsListGiftingEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -1167,7 +1182,6 @@ export interface LCUWebSocketEvents {
|
|
|
1167
1182
|
"OnJsonApiEvent_lol-player-behavior_v1_config": LCUTypes.PluginResourceEvent,
|
|
1168
1183
|
"OnJsonApiEvent_lol-player-behavior_v2_reporter-feedback": LCUTypes.PluginResourceEvent,
|
|
1169
1184
|
"OnJsonApiEvent_lol-player-behavior_v3_reform-cards": LCUTypes.PluginResourceEvent,
|
|
1170
|
-
"OnJsonApiEvent_lol-player-name-transition_v1_modal-state": LCUTypes.PluginResourceEvent,
|
|
1171
1185
|
"OnJsonApiEvent_lol-player-preferences_v1_player-preferences-ready": LCUTypes.PluginResourceEvent,
|
|
1172
1186
|
"OnJsonApiEvent_lol-pre-end-of-game_v1_currentSequenceEvent": LCUTypes.PluginResourceEvent,
|
|
1173
1187
|
"OnJsonApiEvent_lol-premade-voice_v1_availability": LCUTypes.PluginResourceEvent,
|
|
@@ -1200,7 +1214,6 @@ export interface LCUWebSocketEvents {
|
|
|
1200
1214
|
"OnJsonApiEvent_lol-rewards_v1_groups": LCUTypes.PluginResourceEvent,
|
|
1201
1215
|
"OnJsonApiEvent_lol-rso-auth_configuration_v3": LCUTypes.PluginResourceEvent,
|
|
1202
1216
|
"OnJsonApiEvent_lol-rso-auth_v1_authorization": LCUTypes.PluginResourceEvent,
|
|
1203
|
-
"OnJsonApiEvent_lol-service-status_v1_ticker-messages": LCUTypes.PluginResourceEvent,
|
|
1204
1217
|
"OnJsonApiEvent_lol-settings_v1_account": LCUTypes.PluginResourceEvent,
|
|
1205
1218
|
"OnJsonApiEvent_lol-settings_v1_local": LCUTypes.PluginResourceEvent,
|
|
1206
1219
|
"OnJsonApiEvent_lol-settings_v2_account": LCUTypes.PluginResourceEvent,
|
|
@@ -1215,11 +1228,13 @@ export interface LCUWebSocketEvents {
|
|
|
1215
1228
|
"OnJsonApiEvent_lol-suggested-players_v1_suggested-players": LCUTypes.PluginResourceEvent,
|
|
1216
1229
|
"OnJsonApiEvent_lol-summoner_v1_current-summoner": LCUTypes.PluginResourceEvent,
|
|
1217
1230
|
"OnJsonApiEvent_lol-summoner_v1_player-alias-state": LCUTypes.PluginResourceEvent,
|
|
1231
|
+
"OnJsonApiEvent_lol-summoner_v1_player-name-mode": LCUTypes.PluginResourceEvent,
|
|
1218
1232
|
"OnJsonApiEvent_lol-summoner_v1_status": LCUTypes.PluginResourceEvent,
|
|
1219
1233
|
"OnJsonApiEvent_lol-summoner_v1_summoner-requests-ready": LCUTypes.PluginResourceEvent,
|
|
1220
1234
|
"OnJsonApiEvent_lol-tastes_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1221
1235
|
"OnJsonApiEvent_lol-tft-pass_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
1222
1236
|
"OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
|
|
1237
|
+
"OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
|
|
1223
1238
|
"OnJsonApiEvent_lol-tft-team-planner_v1_team": LCUTypes.PluginResourceEvent,
|
|
1224
1239
|
"OnJsonApiEvent_lol-tft-troves_v1_config": LCUTypes.PluginResourceEvent,
|
|
1225
1240
|
"OnJsonApiEvent_lol-tft_v1_tft": LCUTypes.PluginResourceEvent,
|
|
@@ -1227,6 +1242,8 @@ export interface LCUWebSocketEvents {
|
|
|
1227
1242
|
"OnJsonApiEvent_lol-yourshop_v1_modal": LCUTypes.PluginResourceEvent,
|
|
1228
1243
|
"OnJsonApiEvent_lol-yourshop_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1229
1244
|
"OnJsonApiEvent_lol-yourshop_v1_status": LCUTypes.PluginResourceEvent,
|
|
1245
|
+
"OnJsonApiEvent_loyalty_v1_loyalty-resource": LCUTypes.PluginResourceEvent,
|
|
1246
|
+
"OnJsonApiEvent_mailbox_v1_check-new-product-mail": LCUTypes.PluginResourceEvent,
|
|
1230
1247
|
"OnJsonApiEvent_memory_v1_fe-processes-ready": LCUTypes.PluginResourceEvent,
|
|
1231
1248
|
"OnJsonApiEvent_patcher_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
1232
1249
|
"OnJsonApiEvent_patcher_v1_products": LCUTypes.PluginResourceEvent,
|