@hasagi/types 15.20.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 +22 -13
- package/dist/lcu-events.d.ts +120 -31
- package/dist/lcu-types.d.ts +162 -41
- 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 }
|
|
@@ -1331,12 +1337,6 @@ export interface LCUEndpoints {
|
|
|
1331
1337
|
"/lol-license-agreement/v1/agreement": {
|
|
1332
1338
|
get: { path: never, params: never, body: never, response: string }
|
|
1333
1339
|
},
|
|
1334
|
-
"/lol-license-agreement/v1/agreements": {
|
|
1335
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolLicenseAgreementLicenseAgreement[] }
|
|
1336
|
-
},
|
|
1337
|
-
"/lol-license-agreement/v1/all-agreements": {
|
|
1338
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolLicenseAgreementLicenseAgreement[] }
|
|
1339
|
-
},
|
|
1340
1340
|
"/lol-license-agreement/v1/privacy-policy": {
|
|
1341
1341
|
get: { path: never, params: never, body: never, response: string }
|
|
1342
1342
|
},
|
|
@@ -1440,7 +1440,7 @@ export interface LCUEndpoints {
|
|
|
1440
1440
|
},
|
|
1441
1441
|
"/lol-lobby/v1/lobby/invitations": {
|
|
1442
1442
|
get: { path: never, params: never, body: never, response: LCUTypes.LolLobbyLobbyInvitation[] }
|
|
1443
|
-
post: { path: never, params: never, body:
|
|
1443
|
+
post: { path: never, params: never, body: never, response: LCUTypes.LolLobbyLobbyInvitation }
|
|
1444
1444
|
},
|
|
1445
1445
|
"/lol-lobby/v1/lobby/invitations/{id}": {
|
|
1446
1446
|
get: { path: [id: string], params: never, body: never, response: LCUTypes.LolLobbyLobbyInvitation }
|
|
@@ -1987,6 +1987,9 @@ export interface LCUEndpoints {
|
|
|
1987
1987
|
"/lol-ranked/v1/apex-leagues/{queueType}/{tier}": {
|
|
1988
1988
|
get: { path: [queueType: LCUTypes.LolRankedLeagueQueueType, tier: string], params: never, body: never, response: LCUTypes.LolRankedLeagueLadderInfo }
|
|
1989
1989
|
},
|
|
1990
|
+
"/lol-ranked/v1/cached-ranked-stats/{puuid}": {
|
|
1991
|
+
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolRankedRankedStats }
|
|
1992
|
+
},
|
|
1990
1993
|
"/lol-ranked/v1/challenger-ladders-enabled": {
|
|
1991
1994
|
get: { path: never, params: never, body: never, response: string[] }
|
|
1992
1995
|
},
|
|
@@ -2220,6 +2223,9 @@ export interface LCUEndpoints {
|
|
|
2220
2223
|
"/lol-spectator/v1/spectate/config": {
|
|
2221
2224
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSpectatorSpectatorConfig }
|
|
2222
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
|
+
},
|
|
2223
2229
|
"/lol-statstones/v1/eog-notifications/{gameId}": {
|
|
2224
2230
|
get: { path: [gameId: number], params: never, body: never, response: LCUTypes.LolStatstonesEogNotificationEnvelope }
|
|
2225
2231
|
},
|
|
@@ -2314,6 +2320,9 @@ export interface LCUEndpoints {
|
|
|
2314
2320
|
"/lol-summoner-profiles/v1/get-honor-view": {
|
|
2315
2321
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesHonorView }
|
|
2316
2322
|
},
|
|
2323
|
+
"/lol-summoner-profiles/v1/get-lol-eos-rewards-view": {
|
|
2324
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesLolEosRewardView }
|
|
2325
|
+
},
|
|
2317
2326
|
"/lol-summoner-profiles/v1/get-privacy-view": {
|
|
2318
2327
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesPrivacyView }
|
|
2319
2328
|
},
|
|
@@ -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
|
},
|
|
@@ -3208,12 +3220,6 @@ export interface LCUEndpoints {
|
|
|
3208
3220
|
"/lol-kr-shutdown-law/v1/rating-screen/acknowledge": {
|
|
3209
3221
|
post: { path: never, params: never, body: never, response: void }
|
|
3210
3222
|
},
|
|
3211
|
-
"/lol-license-agreement/v1/agreements/{id}/accept": {
|
|
3212
|
-
post: { path: [id: string], params: never, body: never, response: unknown }
|
|
3213
|
-
},
|
|
3214
|
-
"/lol-license-agreement/v1/agreements/{id}/decline": {
|
|
3215
|
-
post: { path: [id: string], params: never, body: never, response: unknown }
|
|
3216
|
-
},
|
|
3217
3223
|
"/lol-lobby-team-builder/champ-select/v1/retrieve-latest-game-dto": {
|
|
3218
3224
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3219
3225
|
},
|
|
@@ -3646,6 +3652,9 @@ export interface LCUEndpoints {
|
|
|
3646
3652
|
"/lol-tft-troves/v1/roll": {
|
|
3647
3653
|
post: { path: never, params: never, body: LCUTypes.LolTftTrovesTrovesRollRequest, response: LCUTypes.LolTftTrovesCapOrdersResponseDTO }
|
|
3648
3654
|
},
|
|
3655
|
+
"/lol-tft-troves/v2/roll": {
|
|
3656
|
+
post: { path: never, params: never, body: LCUTypes.LolTftTrovesPurchaseRequest, response: void }
|
|
3657
|
+
},
|
|
3649
3658
|
"/lol-tft/v1/tft/homeHub/redirect": {
|
|
3650
3659
|
post: { path: never, params: never, body: never, response: void }
|
|
3651
3660
|
},
|
package/dist/lcu-events.d.ts
CHANGED
|
@@ -24,14 +24,13 @@ export interface LCUWebSocketEvents {
|
|
|
24
24
|
"OnJsonApiEvent_entitlements_v1_token": LCUTypes.PluginResourceEvent,
|
|
25
25
|
"OnJsonApiEvent_entitlements_v2_token": LCUTypes.PluginResourceEvent,
|
|
26
26
|
"OnJsonApiEvent_ga-restriction_v1_penalty-notifications": LCUTypes.PluginResourceEvent,
|
|
27
|
-
"OnJsonApiEvent_lol-account-verification_v1_is-verified": LCUTypes.PluginResourceEvent,
|
|
28
27
|
"OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
|
|
29
28
|
"OnJsonApiEvent_lol-activity-center_v1_ready": LCUTypes.PluginResourceEvent,
|
|
30
29
|
"OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
31
30
|
"OnJsonApiEvent_lol-cap-missions_v1_ready": LCUTypes.PluginResourceEvent,
|
|
32
|
-
"OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
|
|
33
31
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
34
32
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
33
|
+
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
35
34
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
36
35
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
37
36
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -45,6 +44,7 @@ export interface LCUWebSocketEvents {
|
|
|
45
44
|
"OnJsonApiEvent_lol-champ-select_v1_muted-players": LCUTypes.PluginResourceEvent,
|
|
46
45
|
"OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
|
|
47
46
|
"OnJsonApiEvent_lol-champ-select_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
47
|
+
"OnJsonApiEvent_lol-champion-mastery_v1_champion-mastery-view": LCUTypes.PluginResourceEvent,
|
|
48
48
|
"OnJsonApiEvent_lol-champion-mastery_v1_champion-mastery-view-enabled": LCUTypes.PluginResourceEvent,
|
|
49
49
|
"OnJsonApiEvent_lol-champion-mastery_v1_local-player": LCUTypes.PluginResourceEvent,
|
|
50
50
|
"OnJsonApiEvent_lol-champion-mastery_v1_ready": LCUTypes.PluginResourceEvent,
|
|
@@ -135,8 +135,6 @@ export interface LCUWebSocketEvents {
|
|
|
135
135
|
"OnJsonApiEvent_lol-leaderboard_v1_ready": LCUTypes.PluginResourceEvent,
|
|
136
136
|
"OnJsonApiEvent_lol-league-session_v1_league-session-token": LCUTypes.PluginResourceEvent,
|
|
137
137
|
"OnJsonApiEvent_lol-leaver-buster_v1_ranked-restriction": LCUTypes.PluginResourceEvent,
|
|
138
|
-
"OnJsonApiEvent_lol-license-agreement_v1_agreements": LCUTypes.PluginResourceEvent,
|
|
139
|
-
"OnJsonApiEvent_lol-license-agreement_v1_all-agreements": LCUTypes.PluginResourceEvent,
|
|
140
138
|
"OnJsonApiEvent_lol-loadouts_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
141
139
|
"OnJsonApiEvent_lol-loadouts_v1_loadouts-ready": LCUTypes.PluginResourceEvent,
|
|
142
140
|
"OnJsonApiEvent_lol-loadouts_v4_loadout": LCUTypes.PluginResourceEvent,
|
|
@@ -208,6 +206,7 @@ export interface LCUWebSocketEvents {
|
|
|
208
206
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_SettingsEnabled": LCUTypes.PluginResourceEvent,
|
|
209
207
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_SettingsVerifyEnabled": LCUTypes.PluginResourceEvent,
|
|
210
208
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_ShouldUseNewAvs": LCUTypes.PluginResourceEvent,
|
|
209
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_AccountVerification_TencentPhoneDisplayEnabled": LCUTypes.PluginResourceEvent,
|
|
211
210
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Banners": LCUTypes.PluginResourceEvent,
|
|
212
211
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Banners_IsEnabledOnProfile": LCUTypes.PluginResourceEvent,
|
|
213
212
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Banners_IsEquipEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -277,6 +276,7 @@ export interface LCUWebSocketEvents {
|
|
|
277
276
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Chroma_IsEnabled": LCUTypes.PluginResourceEvent,
|
|
278
277
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Clash": LCUTypes.PluginResourceEvent,
|
|
279
278
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig": LCUTypes.PluginResourceEvent,
|
|
279
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_AntiCheatModalEnabled": LCUTypes.PluginResourceEvent,
|
|
280
280
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_AwardsTabEnabled": LCUTypes.PluginResourceEvent,
|
|
281
281
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_BracketSpectateEnabled": LCUTypes.PluginResourceEvent,
|
|
282
282
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_CapacityIndicatorEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -284,6 +284,7 @@ export interface LCUWebSocketEvents {
|
|
|
284
284
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EatTooltipEnabled": LCUTypes.PluginResourceEvent,
|
|
285
285
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EnabledState": LCUTypes.PluginResourceEvent,
|
|
286
286
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_EndOfGameFlowEnabled": LCUTypes.PluginResourceEvent,
|
|
287
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_FaqLinkOverride": LCUTypes.PluginResourceEvent,
|
|
287
288
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_FindTeamViewEnabled": LCUTypes.PluginResourceEvent,
|
|
288
289
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_HonorLevelRequired": LCUTypes.PluginResourceEvent,
|
|
289
290
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_IconConfig": LCUTypes.PluginResourceEvent,
|
|
@@ -295,6 +296,7 @@ export interface LCUWebSocketEvents {
|
|
|
295
296
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_PremiumTicketsEnabled": LCUTypes.PluginResourceEvent,
|
|
296
297
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ScoutingEnabled": LCUTypes.PluginResourceEvent,
|
|
297
298
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_StorePageLink": LCUTypes.PluginResourceEvent,
|
|
299
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_SubstitutionEnabled": LCUTypes.PluginResourceEvent,
|
|
298
300
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ThirdPartyInvitesEnabled": LCUTypes.PluginResourceEvent,
|
|
299
301
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_TutorialEnabled": LCUTypes.PluginResourceEvent,
|
|
300
302
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_Visibility": LCUTypes.PluginResourceEvent,
|
|
@@ -366,7 +368,6 @@ export interface LCUWebSocketEvents {
|
|
|
366
368
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame": LCUTypes.PluginResourceEvent,
|
|
367
369
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_BotsAvailableInAram": LCUTypes.PluginResourceEvent,
|
|
368
370
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_MinorRestrictionsEnabled": LCUTypes.PluginResourceEvent,
|
|
369
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampion": LCUTypes.PluginResourceEvent,
|
|
370
371
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
|
|
371
372
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
|
|
372
373
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChromas": LCUTypes.PluginResourceEvent,
|
|
@@ -394,8 +395,8 @@ export interface LCUWebSocketEvents {
|
|
|
394
395
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_GAMEMODEX": LCUTypes.PluginResourceEvent,
|
|
395
396
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_HEXAKILL": LCUTypes.PluginResourceEvent,
|
|
396
397
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO": LCUTypes.PluginResourceEvent,
|
|
397
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO-5X5": LCUTypes.PluginResourceEvent,
|
|
398
398
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KING_PORO": LCUTypes.PluginResourceEvent,
|
|
399
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KIWI": LCUTypes.PluginResourceEvent,
|
|
399
400
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY23_TFT": LCUTypes.PluginResourceEvent,
|
|
400
401
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY24_TFT": LCUTypes.PluginResourceEvent,
|
|
401
402
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY25_TFT": LCUTypes.PluginResourceEvent,
|
|
@@ -405,9 +406,6 @@ export interface LCUWebSocketEvents {
|
|
|
405
406
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_3x3": LCUTypes.PluginResourceEvent,
|
|
406
407
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_TFT": LCUTypes.PluginResourceEvent,
|
|
407
408
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN": LCUTypes.PluginResourceEvent,
|
|
408
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT": LCUTypes.PluginResourceEvent,
|
|
409
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT-5x5": LCUTypes.PluginResourceEvent,
|
|
410
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT_5x5": LCUTypes.PluginResourceEvent,
|
|
411
409
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN_UNRANKED": LCUTypes.PluginResourceEvent,
|
|
412
410
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODYSSEY": LCUTypes.PluginResourceEvent,
|
|
413
411
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ONEFORALL": LCUTypes.PluginResourceEvent,
|
|
@@ -417,8 +415,6 @@ export interface LCUWebSocketEvents {
|
|
|
417
415
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_PVE_PUZZLE_TFT": LCUTypes.PluginResourceEvent,
|
|
418
416
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_SR": LCUTypes.PluginResourceEvent,
|
|
419
417
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_TT": LCUTypes.PluginResourceEvent,
|
|
420
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_PREMADE_3x3": LCUTypes.PluginResourceEvent,
|
|
421
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_PREMADE_5x5": LCUTypes.PluginResourceEvent,
|
|
422
418
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_SOLO_5x5": LCUTypes.PluginResourceEvent,
|
|
423
419
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_3x3": LCUTypes.PluginResourceEvent,
|
|
424
420
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_5x5": LCUTypes.PluginResourceEvent,
|
|
@@ -492,14 +488,14 @@ export interface LCUWebSocketEvents {
|
|
|
492
488
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes": LCUTypes.PluginResourceEvent,
|
|
493
489
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmotePanelEnabled": LCUTypes.PluginResourceEvent,
|
|
494
490
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmoteTutorialModalEnabled": LCUTypes.PluginResourceEvent,
|
|
495
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings": LCUTypes.PluginResourceEvent,
|
|
496
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
|
|
497
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
|
|
498
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
|
|
499
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
500
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
501
491
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting": LCUTypes.PluginResourceEvent,
|
|
502
492
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting_Enabled": LCUTypes.PluginResourceEvent,
|
|
493
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings": LCUTypes.PluginResourceEvent,
|
|
494
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
|
|
495
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
|
|
496
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
|
|
497
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
498
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
503
499
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting": LCUTypes.PluginResourceEvent,
|
|
504
500
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting_GameAgnosticReportingTrinary": LCUTypes.PluginResourceEvent,
|
|
505
501
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Esports_NotificationsAssetMagickURL": LCUTypes.PluginResourceEvent,
|
|
@@ -531,8 +527,6 @@ export interface LCUWebSocketEvents {
|
|
|
531
527
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync": LCUTypes.PluginResourceEvent,
|
|
532
528
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_Enabled": LCUTypes.PluginResourceEvent,
|
|
533
529
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_PercentOfTotalTimerToSyncAt": LCUTypes.PluginResourceEvent,
|
|
534
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow": LCUTypes.PluginResourceEvent,
|
|
535
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ForceGameLocaleAsEnglish": LCUTypes.PluginResourceEvent,
|
|
536
530
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ShouldSendRiotClientHeartBeat": LCUTypes.PluginResourceEvent,
|
|
537
531
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GeoInfo": LCUTypes.PluginResourceEvent,
|
|
538
532
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GuestSlots": LCUTypes.PluginResourceEvent,
|
|
@@ -543,31 +537,41 @@ export interface LCUWebSocketEvents {
|
|
|
543
537
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Enabled": LCUTypes.PluginResourceEvent,
|
|
544
538
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Honor2018Enabled": LCUTypes.PluginResourceEvent,
|
|
545
539
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_SecondsToVote": LCUTypes.PluginResourceEvent,
|
|
546
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig": LCUTypes.PluginResourceEvent,
|
|
547
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig_EnabledState": LCUTypes.PluginResourceEvent,
|
|
548
540
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory": LCUTypes.PluginResourceEvent,
|
|
549
541
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_BaseServiceUrl": LCUTypes.PluginResourceEvent,
|
|
550
542
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_Enabled": LCUTypes.PluginResourceEvent,
|
|
551
543
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets": LCUTypes.PluginResourceEvent,
|
|
552
544
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_EditorEnabled": LCUTypes.PluginResourceEvent,
|
|
553
545
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_MaxItemSets": LCUTypes.PluginResourceEvent,
|
|
546
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_RestrictedPageNamesEnabled": LCUTypes.PluginResourceEvent,
|
|
554
547
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ItemSets_SendItemSetsToGame": LCUTypes.PluginResourceEvent,
|
|
555
548
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Karma": LCUTypes.PluginResourceEvent,
|
|
556
549
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Karma_Worlds2017VotingEnabled": LCUTypes.PluginResourceEvent,
|
|
557
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,
|
|
558
554
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_KrPlaytimeReminder": LCUTypes.PluginResourceEvent,
|
|
555
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_KrPlaytimeReminder_Enabled": LCUTypes.PluginResourceEvent,
|
|
559
556
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU": LCUTypes.PluginResourceEvent,
|
|
560
557
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS": LCUTypes.PluginResourceEvent,
|
|
561
558
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_Endpoint": LCUTypes.PluginResourceEvent,
|
|
562
559
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_UseIdTokens": LCUTypes.PluginResourceEvent,
|
|
560
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
|
|
561
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
|
|
563
562
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections": LCUTypes.PluginResourceEvent,
|
|
564
563
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_Enabled": LCUTypes.PluginResourceEvent,
|
|
565
564
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUAugmentsVisible": LCUTypes.PluginResourceEvent,
|
|
565
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesChromasEnabled": LCUTypes.PluginResourceEvent,
|
|
566
566
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesFinishersEnabled": LCUTypes.PluginResourceEvent,
|
|
567
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUEmotesEnabled": LCUTypes.PluginResourceEvent,
|
|
567
568
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUMasteriesVisible": LCUTypes.PluginResourceEvent,
|
|
568
569
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUPerksVisible": LCUTypes.PluginResourceEvent,
|
|
569
570
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCURunesVisible": LCUTypes.PluginResourceEvent,
|
|
570
571
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUSkinsViewerEnabled": LCUTypes.PluginResourceEvent,
|
|
572
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory": LCUTypes.PluginResourceEvent,
|
|
573
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_Enabled": LCUTypes.PluginResourceEvent,
|
|
574
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_MatchHistoryWebURL": LCUTypes.PluginResourceEvent,
|
|
571
575
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore": LCUTypes.PluginResourceEvent,
|
|
572
576
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_CanQueryInactiveItems": LCUTypes.PluginResourceEvent,
|
|
573
577
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_DisableCapRMS": LCUTypes.PluginResourceEvent,
|
|
@@ -583,9 +587,10 @@ export interface LCUWebSocketEvents {
|
|
|
583
587
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_UseRsoAccessToken": LCUTypes.PluginResourceEvent,
|
|
584
588
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteEnabled": LCUTypes.PluginResourceEvent,
|
|
585
589
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteURL": LCUTypes.PluginResourceEvent,
|
|
586
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
|
|
587
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
|
|
588
590
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Enabled": LCUTypes.PluginResourceEvent,
|
|
591
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout": LCUTypes.PluginResourceEvent,
|
|
592
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleExitAfterWarningMinutes": LCUTypes.PluginResourceEvent,
|
|
593
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleWarningMinutes": LCUTypes.PluginResourceEvent,
|
|
589
594
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate": LCUTypes.PluginResourceEvent,
|
|
590
595
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate_Enabled": LCUTypes.PluginResourceEvent,
|
|
591
596
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionDetails": LCUTypes.PluginResourceEvent,
|
|
@@ -601,11 +606,14 @@ export interface LCUWebSocketEvents {
|
|
|
601
606
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_ChampSelectReportV2Enabled": LCUTypes.PluginResourceEvent,
|
|
602
607
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_ChampTradingTooltipEnabled": LCUTypes.PluginResourceEvent,
|
|
603
608
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_DisableAutoSmiteAssignment": LCUTypes.PluginResourceEvent,
|
|
609
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_DraftActionTickSoundThreshold": LCUTypes.PluginResourceEvent,
|
|
604
610
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_EnableFavorites": LCUTypes.PluginResourceEvent,
|
|
605
611
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_EnablePositionFilters": LCUTypes.PluginResourceEvent,
|
|
606
612
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_IsDisconnectNotificationEnabled": LCUTypes.PluginResourceEvent,
|
|
613
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_MinPickIntentDuration": LCUTypes.PluginResourceEvent,
|
|
607
614
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_PickOrderSwappingTooltipEnabled": LCUTypes.PluginResourceEvent,
|
|
608
615
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_PositionAssignmentAnimationEnabled": LCUTypes.PluginResourceEvent,
|
|
616
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_PotatoModeForced": LCUTypes.PluginResourceEvent,
|
|
609
617
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_RandomChampionEnabledGameQueues": LCUTypes.PluginResourceEvent,
|
|
610
618
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_RandomChampionRateLimitInterval": LCUTypes.PluginResourceEvent,
|
|
611
619
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionSelect_RandomChampionRateLimitMaxActions": LCUTypes.PluginResourceEvent,
|
|
@@ -624,6 +632,8 @@ export interface LCUWebSocketEvents {
|
|
|
624
632
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEmailVerification_MaxOptionalLevel": LCUTypes.PluginResourceEvent,
|
|
625
633
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuEmailVerification_MinimumSummonerLevel": LCUTypes.PluginResourceEvent,
|
|
626
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,
|
|
627
637
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuGameSettings": LCUTypes.PluginResourceEvent,
|
|
628
638
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuGameSettings_GameplayEnabled": LCUTypes.PluginResourceEvent,
|
|
629
639
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuGameSettings_HotkeysEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -646,6 +656,7 @@ export interface LCUWebSocketEvents {
|
|
|
646
656
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_AutoGrantInviteEnabled": LCUTypes.PluginResourceEvent,
|
|
647
657
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_GameInvitesEnabled": LCUTypes.PluginResourceEvent,
|
|
648
658
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_ObserverModeEnabled": LCUTypes.PluginResourceEvent,
|
|
659
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_PotatoModeForced": LCUTypes.PluginResourceEvent,
|
|
649
660
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_PracticeGameEnabled": LCUTypes.PluginResourceEvent,
|
|
650
661
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_PracticeGameListEnabled": LCUTypes.PluginResourceEvent,
|
|
651
662
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_QueueEligibilityGateKeeperEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -671,6 +682,7 @@ export interface LCUWebSocketEvents {
|
|
|
671
682
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuProfiles": LCUTypes.PluginResourceEvent,
|
|
672
683
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuProfiles_Enabled": LCUTypes.PluginResourceEvent,
|
|
673
684
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget": LCUTypes.PluginResourceEvent,
|
|
685
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_AlwaysShowPurchaseDisclaimer": LCUTypes.PluginResourceEvent,
|
|
674
686
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_BaseUrl": LCUTypes.PluginResourceEvent,
|
|
675
687
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_CapOrdersUrl": LCUTypes.PluginResourceEvent,
|
|
676
688
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuPurchaseWidget_Enabled": LCUTypes.PluginResourceEvent,
|
|
@@ -692,6 +704,7 @@ export interface LCUWebSocketEvents {
|
|
|
692
704
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_ClearChatHistoryEnabled": LCUTypes.PluginResourceEvent,
|
|
693
705
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_DefaultGameQueues": LCUTypes.PluginResourceEvent,
|
|
694
706
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_EnabledGameQueues": LCUTypes.PluginResourceEvent,
|
|
707
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_ForceChatFilter": LCUTypes.PluginResourceEvent,
|
|
695
708
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_FriendRequestToastsDisabled": LCUTypes.PluginResourceEvent,
|
|
696
709
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_FriendsListGiftingEnabled": LCUTypes.PluginResourceEvent,
|
|
697
710
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuSocial_LcuSupportedGameQueues": LCUTypes.PluginResourceEvent,
|
|
@@ -711,6 +724,7 @@ export interface LCUWebSocketEvents {
|
|
|
711
724
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_HubEnabled": LCUTypes.PluginResourceEvent,
|
|
712
725
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_MatchHistoryEnabled": LCUTypes.PluginResourceEvent,
|
|
713
726
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_OrbEnabled": LCUTypes.PluginResourceEvent,
|
|
727
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_PatchNotesUrl": LCUTypes.PluginResourceEvent,
|
|
714
728
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_PlayButtonEnabled": LCUTypes.PluginResourceEvent,
|
|
715
729
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_SeriesInternalName": LCUTypes.PluginResourceEvent,
|
|
716
730
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_TftHomeEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -737,7 +751,6 @@ export interface LCUWebSocketEvents {
|
|
|
737
751
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_EosNotificationsEnabled": LCUTypes.PluginResourceEvent,
|
|
738
752
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_FlexRestrictionModalEnabled": LCUTypes.PluginResourceEvent,
|
|
739
753
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsGlobalNotificationsEnabled": LCUTypes.PluginResourceEvent,
|
|
740
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSplitStartModalEnabled": LCUTypes.PluginResourceEvent,
|
|
741
754
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_JWTEnabled": LCUTypes.PluginResourceEvent,
|
|
742
755
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_LeagueServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
743
756
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_MasterTierEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -815,6 +828,11 @@ export interface LCUWebSocketEvents {
|
|
|
815
828
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount3": LCUTypes.PluginResourceEvent,
|
|
816
829
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount4": LCUTypes.PluginResourceEvent,
|
|
817
830
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount5": LCUTypes.PluginResourceEvent,
|
|
831
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId1": LCUTypes.PluginResourceEvent,
|
|
832
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId2": LCUTypes.PluginResourceEvent,
|
|
833
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId3": LCUTypes.PluginResourceEvent,
|
|
834
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId4": LCUTypes.PluginResourceEvent,
|
|
835
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId5": LCUTypes.PluginResourceEvent,
|
|
818
836
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EnableMythicEssenceDisplay": LCUTypes.PluginResourceEvent,
|
|
819
837
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Enabled": LCUTypes.PluginResourceEvent,
|
|
820
838
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EventChestBundleId1": LCUTypes.PluginResourceEvent,
|
|
@@ -836,6 +854,11 @@ export interface LCUWebSocketEvents {
|
|
|
836
854
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
|
|
837
855
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Visible": LCUTypes.PluginResourceEvent,
|
|
838
856
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_WorldsTokensEnabled": LCUTypes.PluginResourceEvent,
|
|
857
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService": LCUTypes.PluginResourceEvent,
|
|
858
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Enabled": LCUTypes.PluginResourceEvent,
|
|
859
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_NewPlayerChestEnabled": LCUTypes.PluginResourceEvent,
|
|
860
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
|
|
861
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Visible": LCUTypes.PluginResourceEvent,
|
|
839
862
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries": LCUTypes.PluginResourceEvent,
|
|
840
863
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries_ShowPointsResetMessage": LCUTypes.PluginResourceEvent,
|
|
841
864
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Missions": LCUTypes.PluginResourceEvent,
|
|
@@ -868,6 +891,12 @@ export interface LCUWebSocketEvents {
|
|
|
868
891
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro": LCUTypes.PluginResourceEvent,
|
|
869
892
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_IntroUrl": LCUTypes.PluginResourceEvent,
|
|
870
893
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_NewSummonerIconIds": LCUTypes.PluginResourceEvent,
|
|
894
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage": LCUTypes.PluginResourceEvent,
|
|
895
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_ChampDisplayList": LCUTypes.PluginResourceEvent,
|
|
896
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_Enabled": LCUTypes.PluginResourceEvent,
|
|
897
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_LikeUsURL": LCUTypes.PluginResourceEvent,
|
|
898
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_MaxLevel": LCUTypes.PluginResourceEvent,
|
|
899
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_SubscribeURL": LCUTypes.PluginResourceEvent,
|
|
871
900
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter": LCUTypes.PluginResourceEvent,
|
|
872
901
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_ABDisablingOfTutorial": LCUTypes.PluginResourceEvent,
|
|
873
902
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_QueueID": LCUTypes.PluginResourceEvent,
|
|
@@ -892,8 +921,10 @@ export interface LCUWebSocketEvents {
|
|
|
892
921
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks": LCUTypes.PluginResourceEvent,
|
|
893
922
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks_MinSummonerLevelUnlockCustomPages": LCUTypes.PluginResourceEvent,
|
|
894
923
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks_PerksEnabled": LCUTypes.PluginResourceEvent,
|
|
924
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Perks_RestrictedPageNamesEnabled": LCUTypes.PluginResourceEvent,
|
|
895
925
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers": LCUTypes.PluginResourceEvent,
|
|
896
926
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_BaseServiceURL": LCUTypes.PluginResourceEvent,
|
|
927
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_DataAuthModal": LCUTypes.PluginResourceEvent,
|
|
897
928
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_HubEnabled": LCUTypes.PluginResourceEvent,
|
|
898
929
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_Port": LCUTypes.PluginResourceEvent,
|
|
899
930
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_PersonalizedOffers_PromotionEndTime": LCUTypes.PluginResourceEvent,
|
|
@@ -958,12 +989,14 @@ export interface LCUWebSocketEvents {
|
|
|
958
989
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndDivisionForPremadeSize2QueueId1100": LCUTypes.PluginResourceEvent,
|
|
959
990
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndDivisionForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
|
|
960
991
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1": LCUTypes.PluginResourceEvent,
|
|
992
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId4": LCUTypes.PluginResourceEvent,
|
|
961
993
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId410": LCUTypes.PluginResourceEvent,
|
|
962
994
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId420": LCUTypes.PluginResourceEvent,
|
|
963
995
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId440": LCUTypes.PluginResourceEvent,
|
|
964
996
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId470": LCUTypes.PluginResourceEvent,
|
|
965
997
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId9": LCUTypes.PluginResourceEvent,
|
|
966
998
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2": LCUTypes.PluginResourceEvent,
|
|
999
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId4": LCUTypes.PluginResourceEvent,
|
|
967
1000
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId410": LCUTypes.PluginResourceEvent,
|
|
968
1001
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
|
|
969
1002
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId440": LCUTypes.PluginResourceEvent,
|
|
@@ -987,11 +1020,21 @@ export interface LCUWebSocketEvents {
|
|
|
987
1020
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId440": LCUTypes.PluginResourceEvent,
|
|
988
1021
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId470": LCUTypes.PluginResourceEvent,
|
|
989
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,
|
|
990
1025
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_QueuesRequiringTwentyChampions": LCUTypes.PluginResourceEvent,
|
|
991
1026
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTier": LCUTypes.PluginResourceEvent,
|
|
1027
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId11": LCUTypes.PluginResourceEvent,
|
|
1028
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId4": LCUTypes.PluginResourceEvent,
|
|
992
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,
|
|
993
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,
|
|
994
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,
|
|
995
1038
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId470": LCUTypes.PluginResourceEvent,
|
|
996
1039
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId9": LCUTypes.PluginResourceEvent,
|
|
997
1040
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
@@ -1001,45 +1044,85 @@ export interface LCUWebSocketEvents {
|
|
|
1001
1044
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeRestrictionEnabled": LCUTypes.PluginResourceEvent,
|
|
1002
1045
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeTier": LCUTypes.PluginResourceEvent,
|
|
1003
1046
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTier": LCUTypes.PluginResourceEvent,
|
|
1047
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId11": LCUTypes.PluginResourceEvent,
|
|
1048
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId4": LCUTypes.PluginResourceEvent,
|
|
1004
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,
|
|
1005
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,
|
|
1006
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,
|
|
1007
1058
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId470": LCUTypes.PluginResourceEvent,
|
|
1008
1059
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId9": LCUTypes.PluginResourceEvent,
|
|
1009
1060
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
1061
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId11": LCUTypes.PluginResourceEvent,
|
|
1062
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
|
|
1010
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,
|
|
1011
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,
|
|
1012
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,
|
|
1013
1072
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
|
|
1014
1073
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
|
|
1015
1074
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMode": LCUTypes.PluginResourceEvent,
|
|
1075
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId11": LCUTypes.PluginResourceEvent,
|
|
1076
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
|
|
1016
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,
|
|
1017
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,
|
|
1018
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,
|
|
1019
1086
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId470": LCUTypes.PluginResourceEvent,
|
|
1020
1087
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId9": LCUTypes.PluginResourceEvent,
|
|
1021
1088
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
1089
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId11": LCUTypes.PluginResourceEvent,
|
|
1090
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
|
|
1022
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,
|
|
1023
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,
|
|
1024
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,
|
|
1025
1100
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
|
|
1026
1101
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
|
|
1027
1102
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMode": LCUTypes.PluginResourceEvent,
|
|
1103
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId11": LCUTypes.PluginResourceEvent,
|
|
1104
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
|
|
1028
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,
|
|
1029
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,
|
|
1030
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,
|
|
1031
1114
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId470": LCUTypes.PluginResourceEvent,
|
|
1032
1115
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId9": LCUTypes.PluginResourceEvent,
|
|
1033
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,
|
|
1034
1119
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Regalia": LCUTypes.PluginResourceEvent,
|
|
1035
1120
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays": LCUTypes.PluginResourceEvent,
|
|
1036
1121
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_MinSupportedGameServerVersion": LCUTypes.PluginResourceEvent,
|
|
1122
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_MinutesUntilReplayConsideredLost": LCUTypes.PluginResourceEvent,
|
|
1037
1123
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_ThirdPersonAccessibleGameQueues": LCUTypes.PluginResourceEvent,
|
|
1038
1124
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards": LCUTypes.PluginResourceEvent,
|
|
1039
1125
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards_Enabled": LCUTypes.PluginResourceEvent,
|
|
1040
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring": LCUTypes.PluginResourceEvent,
|
|
1041
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitInterval": LCUTypes.PluginResourceEvent,
|
|
1042
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitMaxActions": LCUTypes.PluginResourceEvent,
|
|
1043
1126
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer": LCUTypes.PluginResourceEvent,
|
|
1044
1127
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer_Level1Unfilter": LCUTypes.PluginResourceEvent,
|
|
1045
1128
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SeasonReward": LCUTypes.PluginResourceEvent,
|
|
@@ -1062,12 +1145,15 @@ export interface LCUWebSocketEvents {
|
|
|
1062
1145
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_MatchHistoryUrlTemplate": LCUTypes.PluginResourceEvent,
|
|
1063
1146
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareEndOfGameEnabled": LCUTypes.PluginResourceEvent,
|
|
1064
1147
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareGameUrlTemplate": LCUTypes.PluginResourceEvent,
|
|
1148
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareMatchHistory": LCUTypes.PluginResourceEvent,
|
|
1065
1149
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals": LCUTypes.PluginResourceEvent,
|
|
1066
1150
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals_Enabled": LCUTypes.PluginResourceEvent,
|
|
1067
1151
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer": LCUTypes.PluginResourceEvent,
|
|
1152
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer_DisableAllPurchase": LCUTypes.PluginResourceEvent,
|
|
1068
1153
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer_VintageSkinSummonerIconConfig": LCUTypes.PluginResourceEvent,
|
|
1069
1154
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard": LCUTypes.PluginResourceEvent,
|
|
1070
1155
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_IsSocialLeaderboardEnabled": LCUTypes.PluginResourceEvent,
|
|
1156
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_LeaguesPuuidPageSize": LCUTypes.PluginResourceEvent,
|
|
1071
1157
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_MinsTillCacheExpiry": LCUTypes.PluginResourceEvent,
|
|
1072
1158
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_SecsTillAvailabilityCacheExpiry": LCUTypes.PluginResourceEvent,
|
|
1073
1159
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_UseSocialLeaderboardLeaguesEndpoint": LCUTypes.PluginResourceEvent,
|
|
@@ -1085,9 +1171,7 @@ export interface LCUWebSocketEvents {
|
|
|
1085
1171
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_OnlineFriendsLimit": LCUTypes.PluginResourceEvent,
|
|
1086
1172
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_PreviousPremadesLimit": LCUTypes.PluginResourceEvent,
|
|
1087
1173
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_VictoriousComradesLimit": LCUTypes.PluginResourceEvent,
|
|
1088
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner": LCUTypes.PluginResourceEvent,
|
|
1089
1174
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_ConfigRefreshIntervalSeconds": LCUTypes.PluginResourceEvent,
|
|
1090
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTEnabled": LCUTypes.PluginResourceEvent,
|
|
1091
1175
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMaxTimeoutSeconds": LCUTypes.PluginResourceEvent,
|
|
1092
1176
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMinTimeoutSeconds": LCUTypes.PluginResourceEvent,
|
|
1093
1177
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_SummonerProfileCacheEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -1095,6 +1179,7 @@ export interface LCUWebSocketEvents {
|
|
|
1095
1179
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_AllSkinEnabled": LCUTypes.PluginResourceEvent,
|
|
1096
1180
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_RandomSkinEnabled": LCUTypes.PluginResourceEvent,
|
|
1097
1181
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft": LCUTypes.PluginResourceEvent,
|
|
1182
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ActionTimeoutRecoveryEnabled": LCUTypes.PluginResourceEvent,
|
|
1098
1183
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EnableChampionSelectPreferences": LCUTypes.PluginResourceEvent,
|
|
1099
1184
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EstimatedWaitAdjustmentEnabled": LCUTypes.PluginResourceEvent,
|
|
1100
1185
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_FillPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
|
|
@@ -1102,7 +1187,6 @@ export interface LCUWebSocketEvents {
|
|
|
1102
1187
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_LogAllLCDSMessages": LCUTypes.PluginResourceEvent,
|
|
1103
1188
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_MidPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
|
|
1104
1189
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendAfkCheckMetricsEnabled": LCUTypes.PluginResourceEvent,
|
|
1105
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendSummonerIconJwt": LCUTypes.PluginResourceEvent,
|
|
1106
1190
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ServiceCallTimeoutMillis": LCUTypes.PluginResourceEvent,
|
|
1107
1191
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SkinPurchaseEnabled": LCUTypes.PluginResourceEvent,
|
|
1108
1192
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SupportPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
|
|
@@ -1110,7 +1194,11 @@ export interface LCUWebSocketEvents {
|
|
|
1110
1194
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_TBRerollServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
1111
1195
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_TakeoverEnabled": LCUTypes.PluginResourceEvent,
|
|
1112
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,
|
|
1113
1199
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction_Enabled": LCUTypes.PluginResourceEvent,
|
|
1200
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing": LCUTypes.PluginResourceEvent,
|
|
1201
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing_Rcarter": LCUTypes.PluginResourceEvent,
|
|
1114
1202
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification": LCUTypes.PluginResourceEvent,
|
|
1115
1203
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification_CAHServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
1116
1204
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Trophies": LCUTypes.PluginResourceEvent,
|
|
@@ -1138,6 +1226,7 @@ export interface LCUWebSocketEvents {
|
|
|
1138
1226
|
"OnJsonApiEvent_lol-publishing-content_v1_settings": LCUTypes.PluginResourceEvent,
|
|
1139
1227
|
"OnJsonApiEvent_lol-purchase-widget_v1_configuration": LCUTypes.PluginResourceEvent,
|
|
1140
1228
|
"OnJsonApiEvent_lol-purchase-widget_v3_purchase-offer-order-statuses": LCUTypes.PluginResourceEvent,
|
|
1229
|
+
"OnJsonApiEvent_lol-ranked_v1_cached-ranked-stats": LCUTypes.PluginResourceEvent,
|
|
1141
1230
|
"OnJsonApiEvent_lol-ranked_v1_challenger-ladders-enabled": LCUTypes.PluginResourceEvent,
|
|
1142
1231
|
"OnJsonApiEvent_lol-ranked_v1_current-ranked-stats": LCUTypes.PluginResourceEvent,
|
|
1143
1232
|
"OnJsonApiEvent_lol-ranked_v1_global-notifications": LCUTypes.PluginResourceEvent,
|
|
@@ -1187,6 +1276,7 @@ export interface LCUWebSocketEvents {
|
|
|
1187
1276
|
"OnJsonApiEvent_lol-tft-pass_v1_pm-ultimate-victory-pass": LCUTypes.PluginResourceEvent,
|
|
1188
1277
|
"OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1189
1278
|
"OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,
|
|
1279
|
+
"OnJsonApiEvent_lol-tft-skill-tree_v1_skill-tree": LCUTypes.PluginResourceEvent,
|
|
1190
1280
|
"OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
|
|
1191
1281
|
"OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
|
|
1192
1282
|
"OnJsonApiEvent_lol-tft-team-planner_v1_previous-context": LCUTypes.PluginResourceEvent,
|
|
@@ -1250,7 +1340,6 @@ export interface LCUWebSocketEvents {
|
|
|
1250
1340
|
"OnLcdsEvent_com_riotgames_platform_game_message_GameNotification": LCUTypes.PluginLcdsEvent,
|
|
1251
1341
|
"OnLcdsEvent_com_riotgames_platform_gameinvite_contract_InvitationRequest": LCUTypes.PluginLcdsEvent,
|
|
1252
1342
|
"OnLcdsEvent_com_riotgames_platform_gameinvite_contract_InvitePrivileges": LCUTypes.PluginLcdsEvent,
|
|
1253
|
-
"OnLcdsEvent_com_riotgames_platform_gameinvite_contract_LobbyStatus": LCUTypes.PluginLcdsEvent,
|
|
1254
1343
|
"OnLcdsEvent_com_riotgames_platform_gameinvite_contract_RemovedFromLobbyNotification": LCUTypes.PluginLcdsEvent,
|
|
1255
1344
|
"OnLcdsEvent_com_riotgames_platform_leaverbuster_event_messaging_LeaverBusterLowPriorityQueueAbandoned": LCUTypes.PluginLcdsEvent,
|
|
1256
1345
|
"OnLcdsEvent_com_riotgames_platform_loyalty_message_LoyaltyStateChangeNotification": LCUTypes.PluginLcdsEvent,
|
package/dist/lcu-types.d.ts
CHANGED
|
@@ -454,18 +454,6 @@ export interface ChampionScoutingDTO {
|
|
|
454
454
|
kda: number
|
|
455
455
|
}
|
|
456
456
|
|
|
457
|
-
export interface ChemtechShoppe_BulkPurchaseRequestDto {
|
|
458
|
-
bulkPurchaseId: string
|
|
459
|
-
purchaserId: string
|
|
460
|
-
source: string
|
|
461
|
-
subPurchaseRequests: ChemtechShoppe_SubPurchaseRequestDto[]
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
export interface ChemtechShoppe_BulkPurchaseResponseDto {
|
|
465
|
-
bulkPurchaseId: string
|
|
466
|
-
purchases: ChemtechShoppe_PurchaseDto[]
|
|
467
|
-
}
|
|
468
|
-
|
|
469
457
|
export interface ChemtechShoppe_CatalogEntryDto {
|
|
470
458
|
id: string
|
|
471
459
|
name: string
|
|
@@ -713,16 +701,6 @@ export interface ChemtechShoppe_StoresResponseDto {
|
|
|
713
701
|
notes: string[]
|
|
714
702
|
}
|
|
715
703
|
|
|
716
|
-
export interface ChemtechShoppe_SubPurchaseRequestDto {
|
|
717
|
-
storeId: string
|
|
718
|
-
catalogEntryId: string
|
|
719
|
-
paymentOptionsKeys: string[]
|
|
720
|
-
idempotencyId: string
|
|
721
|
-
/** @format int64 */
|
|
722
|
-
quantity: number
|
|
723
|
-
customInventoryLocation: string
|
|
724
|
-
}
|
|
725
|
-
|
|
726
704
|
export interface ChemtechShoppe_VelocityLimitDeltaDto {
|
|
727
705
|
ruleId: string
|
|
728
706
|
/** @format int64 */
|
|
@@ -1320,6 +1298,7 @@ export interface GameflowLcdsPlayerCredentialsDto {
|
|
|
1320
1298
|
/** @format uint64 */
|
|
1321
1299
|
summonerId: number
|
|
1322
1300
|
packetCopMetadata: string
|
|
1301
|
+
spectatorKey: string
|
|
1323
1302
|
}
|
|
1324
1303
|
|
|
1325
1304
|
export interface GameflowLcdsReconnectInfoDto {
|
|
@@ -3476,6 +3455,7 @@ export interface LolChampionsGameDataChampion {
|
|
|
3476
3455
|
export interface LolChampionsGameDataChampionChroma {
|
|
3477
3456
|
/** @format int32 */
|
|
3478
3457
|
id: number
|
|
3458
|
+
name: string
|
|
3479
3459
|
colors: string[]
|
|
3480
3460
|
chromaPath: string
|
|
3481
3461
|
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
@@ -3875,6 +3855,13 @@ export interface LolChatDebugResource {
|
|
|
3875
3855
|
silenceChatWhileInGame?: boolean
|
|
3876
3856
|
}
|
|
3877
3857
|
|
|
3858
|
+
export interface LolChatDiscordLink {
|
|
3859
|
+
available: boolean
|
|
3860
|
+
linked: boolean
|
|
3861
|
+
visible: boolean
|
|
3862
|
+
error: string
|
|
3863
|
+
}
|
|
3864
|
+
|
|
3878
3865
|
export interface LolChatEndOfGamePlayer {
|
|
3879
3866
|
puuid: string
|
|
3880
3867
|
/** @format uint64 */
|
|
@@ -4050,6 +4037,7 @@ export interface LolChatFriendResource {
|
|
|
4050
4037
|
groupName: string
|
|
4051
4038
|
displayGroupName: string
|
|
4052
4039
|
lol: Record<string, string>
|
|
4040
|
+
discordInfo?: LolChatSocialV4DiscordInfo
|
|
4053
4041
|
}
|
|
4054
4042
|
|
|
4055
4043
|
export type LolChatFriendSubscriptionType = "pending_in" | "pending_out"
|
|
@@ -4067,6 +4055,7 @@ export interface LolChatGameflowGameData {
|
|
|
4067
4055
|
teamOne: LolChatTeamPlayerEntry[]
|
|
4068
4056
|
teamTwo: LolChatTeamPlayerEntry[]
|
|
4069
4057
|
playerChampionSelections: LolChatChampSelection[]
|
|
4058
|
+
spectatorKey: string
|
|
4070
4059
|
}
|
|
4071
4060
|
|
|
4072
4061
|
export interface LolChatGameflowGameMap {
|
|
@@ -4477,6 +4466,13 @@ export interface LolChatSocialV4CrossPlayPermissions {
|
|
|
4477
4466
|
partyMemberPlatforms: string[]
|
|
4478
4467
|
}
|
|
4479
4468
|
|
|
4469
|
+
export interface LolChatSocialV4DiscordInfo {
|
|
4470
|
+
displayName: string
|
|
4471
|
+
onlineStatus: string
|
|
4472
|
+
isPlayingSameTitle: boolean
|
|
4473
|
+
relationship: string
|
|
4474
|
+
}
|
|
4475
|
+
|
|
4480
4476
|
export interface LolChatSocialV4Friend {
|
|
4481
4477
|
activity?: string
|
|
4482
4478
|
crossPlayPermissions: LolChatSocialV4CrossPlayPermissions
|
|
@@ -4493,7 +4489,7 @@ export interface LolChatSocialV4Friend {
|
|
|
4493
4489
|
platformShow: string
|
|
4494
4490
|
product: string
|
|
4495
4491
|
productBannerUrl: string
|
|
4496
|
-
productData?:
|
|
4492
|
+
productData?: unknown
|
|
4497
4493
|
productFolderName: string
|
|
4498
4494
|
productIconUrl: string
|
|
4499
4495
|
productPresenceName: string
|
|
@@ -4501,6 +4497,7 @@ export interface LolChatSocialV4Friend {
|
|
|
4501
4497
|
profileIcon: string
|
|
4502
4498
|
puuid: string
|
|
4503
4499
|
region: string
|
|
4500
|
+
discordInfo?: LolChatSocialV4DiscordInfo
|
|
4504
4501
|
relationshipOnConsole: string
|
|
4505
4502
|
relationshipOnRiot: string
|
|
4506
4503
|
show: string
|
|
@@ -5906,6 +5903,31 @@ export interface LolCosmeticsCatalogEntryDto {
|
|
|
5906
5903
|
purchaseLimits: LolCosmeticsVelocityLimitDeltaDto[]
|
|
5907
5904
|
}
|
|
5908
5905
|
|
|
5906
|
+
export interface LolCosmeticsChemtechShoppeDropsFulfillmentDto {
|
|
5907
|
+
/** @format int64 */
|
|
5908
|
+
delta: number
|
|
5909
|
+
/** @format int64 */
|
|
5910
|
+
finalDelta: number
|
|
5911
|
+
name: string
|
|
5912
|
+
/** @format int64 */
|
|
5913
|
+
maxQuantity: number
|
|
5914
|
+
/** @format int64 */
|
|
5915
|
+
ownedQuantity: number
|
|
5916
|
+
ownershipCompensationMode: string
|
|
5917
|
+
itemTypeId: string
|
|
5918
|
+
itemId: string
|
|
5919
|
+
currencyId: string
|
|
5920
|
+
subCurrencyDeltas: Record<string, number>
|
|
5921
|
+
}
|
|
5922
|
+
|
|
5923
|
+
export interface LolCosmeticsChemtechShoppeDropsRollDto {
|
|
5924
|
+
fulfillments: LolCosmeticsChemtechShoppeDropsFulfillmentDto[]
|
|
5925
|
+
}
|
|
5926
|
+
|
|
5927
|
+
export interface LolCosmeticsChemtechShoppeDropsRollResultsDto {
|
|
5928
|
+
rolls: LolCosmeticsChemtechShoppeDropsRollDto[]
|
|
5929
|
+
}
|
|
5930
|
+
|
|
5909
5931
|
export interface LolCosmeticsCompanionsFavoritesViewModel {
|
|
5910
5932
|
favoriteItems: LolCosmeticsCosmeticsCompanionViewModel[]
|
|
5911
5933
|
}
|
|
@@ -6287,6 +6309,7 @@ export interface LolCosmeticsFulfillmentDto {
|
|
|
6287
6309
|
subCurrencyDeltas: Record<string, number>
|
|
6288
6310
|
progressionCounterId: string
|
|
6289
6311
|
dropTableId: string
|
|
6312
|
+
results: LolCosmeticsChemtechShoppeDropsRollResultsDto
|
|
6290
6313
|
}
|
|
6291
6314
|
|
|
6292
6315
|
export interface LolCosmeticsGameDataCompanion {
|
|
@@ -6621,6 +6644,8 @@ export interface LolCosmeticsStoreDto {
|
|
|
6621
6644
|
name: string
|
|
6622
6645
|
catalogEntries: LolCosmeticsCatalogEntryDto[]
|
|
6623
6646
|
displayMetadata: unknown
|
|
6647
|
+
startTime: string
|
|
6648
|
+
endTime: string
|
|
6624
6649
|
}
|
|
6625
6650
|
|
|
6626
6651
|
export interface LolCosmeticsStoresResponse {
|
|
@@ -6728,6 +6753,8 @@ export interface LolCosmeticsTFTRotationalShopConfig {
|
|
|
6728
6753
|
navs: LolCosmeticsTFTRotationalShopNavConfig[]
|
|
6729
6754
|
refund: LolCosmeticsTFTRotationalShopRefundConfig
|
|
6730
6755
|
littleLegendsUpgradeEnabled: boolean
|
|
6756
|
+
eventsStoreEnabled: boolean
|
|
6757
|
+
eventsStoreData: unknown
|
|
6731
6758
|
}
|
|
6732
6759
|
|
|
6733
6760
|
export interface LolCosmeticsTFTRotationalShopNavConfig {
|
|
@@ -7616,6 +7643,8 @@ export interface LolEventHubActivityCenterMilestones {
|
|
|
7616
7643
|
/** @format uint32 */
|
|
7617
7644
|
queueId: number
|
|
7618
7645
|
localizedLogo: string
|
|
7646
|
+
localizedEventSubtitle: string
|
|
7647
|
+
localizedHelpUrl: string
|
|
7619
7648
|
backgroundImage: string
|
|
7620
7649
|
helpModalImage: string
|
|
7621
7650
|
objectiveBannerImage: string
|
|
@@ -7973,6 +8002,8 @@ export interface LolEventHubEventInfoUIData {
|
|
|
7973
8002
|
progressEndDate: string
|
|
7974
8003
|
endDate: string
|
|
7975
8004
|
localizedLogo: string
|
|
8005
|
+
localizedEventSubtitle: string
|
|
8006
|
+
localizedHelpUrl: string
|
|
7976
8007
|
objectiveCard: LolEventHubObjectiveCard
|
|
7977
8008
|
/** @format int32 */
|
|
7978
8009
|
currentTokenBalance: number
|
|
@@ -8526,6 +8557,7 @@ export interface LolEventHubNavigationButtonUIData {
|
|
|
8526
8557
|
showGlow: boolean
|
|
8527
8558
|
iconPath: string
|
|
8528
8559
|
eventName: string
|
|
8560
|
+
eventType: string
|
|
8529
8561
|
}
|
|
8530
8562
|
|
|
8531
8563
|
export interface LolEventHubNextRewardUIData {
|
|
@@ -9715,6 +9747,7 @@ export interface LolGameflowGameflowGameData {
|
|
|
9715
9747
|
teamTwo: unknown[]
|
|
9716
9748
|
playerChampionSelections: unknown[]
|
|
9717
9749
|
spectatorsAllowed: boolean
|
|
9750
|
+
spectatorKey: string
|
|
9718
9751
|
}
|
|
9719
9752
|
|
|
9720
9753
|
export interface LolGameflowGameflowGameDodge {
|
|
@@ -9918,6 +9951,7 @@ export interface LolGameflowSpectateGameInfoResource {
|
|
|
9918
9951
|
gameQueueType: string
|
|
9919
9952
|
allowObserveMode: string
|
|
9920
9953
|
puuid: string
|
|
9954
|
+
spectatorKey: string
|
|
9921
9955
|
}
|
|
9922
9956
|
|
|
9923
9957
|
export interface LolHeartbeatLcdsConnection {
|
|
@@ -10991,21 +11025,8 @@ export interface LolLeaverBusterSummoner {
|
|
|
10991
11025
|
sumId: number
|
|
10992
11026
|
}
|
|
10993
11027
|
|
|
10994
|
-
export interface LolLicenseAgreementLicenseAgreement {
|
|
10995
|
-
id: string
|
|
10996
|
-
licenseType: LolLicenseAgreementLicenseAgreementType
|
|
10997
|
-
text: string
|
|
10998
|
-
}
|
|
10999
|
-
|
|
11000
11028
|
export type LolLicenseAgreementLicenseAgreementType = "TermsOfUse" | "PrivacyNotice"
|
|
11001
11029
|
|
|
11002
|
-
export type LolLicenseAgreementLicenseServeLocation = "External" | "Local" | "Preparing"
|
|
11003
|
-
|
|
11004
|
-
export interface LolLicenseAgreementPluginRegionLocaleChangedEvent {
|
|
11005
|
-
region: string
|
|
11006
|
-
locale: string
|
|
11007
|
-
}
|
|
11008
|
-
|
|
11009
11030
|
export interface LolLoadoutsAccessTokenResource {
|
|
11010
11031
|
token: string
|
|
11011
11032
|
scopes: string[]
|
|
@@ -13604,6 +13625,31 @@ export interface LolMarketplaceCatalogEntryDto {
|
|
|
13604
13625
|
purchaseLimits: LolMarketplaceVelocityLimitDeltaDto[]
|
|
13605
13626
|
}
|
|
13606
13627
|
|
|
13628
|
+
export interface LolMarketplaceChemtechShoppeDropsFulfillmentDto {
|
|
13629
|
+
/** @format int64 */
|
|
13630
|
+
delta: number
|
|
13631
|
+
/** @format int64 */
|
|
13632
|
+
finalDelta: number
|
|
13633
|
+
name: string
|
|
13634
|
+
/** @format int64 */
|
|
13635
|
+
maxQuantity: number
|
|
13636
|
+
/** @format int64 */
|
|
13637
|
+
ownedQuantity: number
|
|
13638
|
+
ownershipCompensationMode: string
|
|
13639
|
+
itemTypeId: string
|
|
13640
|
+
itemId: string
|
|
13641
|
+
currencyId: string
|
|
13642
|
+
subCurrencyDeltas: Record<string, number>
|
|
13643
|
+
}
|
|
13644
|
+
|
|
13645
|
+
export interface LolMarketplaceChemtechShoppeDropsRollDto {
|
|
13646
|
+
fulfillments: LolMarketplaceChemtechShoppeDropsFulfillmentDto[]
|
|
13647
|
+
}
|
|
13648
|
+
|
|
13649
|
+
export interface LolMarketplaceChemtechShoppeDropsRollResultsDto {
|
|
13650
|
+
rolls: LolMarketplaceChemtechShoppeDropsRollDto[]
|
|
13651
|
+
}
|
|
13652
|
+
|
|
13607
13653
|
export interface LolMarketplaceEntitlementDto {
|
|
13608
13654
|
id: string
|
|
13609
13655
|
label: string
|
|
@@ -13649,6 +13695,7 @@ export interface LolMarketplaceFulfillmentDto {
|
|
|
13649
13695
|
subCurrencyDeltas: Record<string, number>
|
|
13650
13696
|
progressionCounterId: string
|
|
13651
13697
|
dropTableId: string
|
|
13698
|
+
results: LolMarketplaceChemtechShoppeDropsRollResultsDto
|
|
13652
13699
|
}
|
|
13653
13700
|
|
|
13654
13701
|
export interface LolMarketplaceGameDataCompanion {
|
|
@@ -13861,6 +13908,8 @@ export interface LolMarketplaceStoreDto {
|
|
|
13861
13908
|
name: string
|
|
13862
13909
|
catalogEntries: LolMarketplaceCatalogEntryDto[]
|
|
13863
13910
|
displayMetadata: unknown
|
|
13911
|
+
startTime: string
|
|
13912
|
+
endTime: string
|
|
13864
13913
|
}
|
|
13865
13914
|
|
|
13866
13915
|
export interface LolMarketplaceStoresResponse {
|
|
@@ -13878,6 +13927,8 @@ export interface LolMarketplaceTFTRotationalShopConfig {
|
|
|
13878
13927
|
navs: LolMarketplaceTFTRotationalShopNavConfig[]
|
|
13879
13928
|
refund: LolMarketplaceTFTRotationalShopRefundConfig
|
|
13880
13929
|
littleLegendsUpgradeEnabled: boolean
|
|
13930
|
+
eventsStoreEnabled: boolean
|
|
13931
|
+
eventsStoreData: unknown
|
|
13881
13932
|
}
|
|
13882
13933
|
|
|
13883
13934
|
export interface LolMarketplaceTFTRotationalShopNavConfig {
|
|
@@ -18121,9 +18172,19 @@ export interface LolRankedAchievedTier {
|
|
|
18121
18172
|
division: number
|
|
18122
18173
|
}
|
|
18123
18174
|
|
|
18175
|
+
export interface LolRankedEndOfGamePlayer {
|
|
18176
|
+
puuid: string
|
|
18177
|
+
}
|
|
18178
|
+
|
|
18124
18179
|
export interface LolRankedEndOfGameStatsBlock {
|
|
18125
18180
|
/** @format uint64 */
|
|
18126
18181
|
gameId: number
|
|
18182
|
+
ranked: boolean
|
|
18183
|
+
teams: LolRankedEndOfGameTeam[]
|
|
18184
|
+
}
|
|
18185
|
+
|
|
18186
|
+
export interface LolRankedEndOfGameTeam {
|
|
18187
|
+
players: LolRankedEndOfGamePlayer[]
|
|
18127
18188
|
}
|
|
18128
18189
|
|
|
18129
18190
|
export interface LolRankedEosNotificationResource {
|
|
@@ -18234,6 +18295,7 @@ export interface LolRankedLcuLeagueNotification {
|
|
|
18234
18295
|
wins: number
|
|
18235
18296
|
/** @format int32 */
|
|
18236
18297
|
losses: number
|
|
18298
|
+
leaguePointsChangeBreakdown: Record<string, number>
|
|
18237
18299
|
}
|
|
18238
18300
|
|
|
18239
18301
|
export type LolRankedLeagueDivision = "NA" | "V" | "IV" | "III" | "II" | "I"
|
|
@@ -18343,6 +18405,7 @@ export interface LolRankedLeagueNotification {
|
|
|
18343
18405
|
wins: number
|
|
18344
18406
|
/** @format int32 */
|
|
18345
18407
|
losses: number
|
|
18408
|
+
leaguePointsChangeBreakdown: Record<string, number>
|
|
18346
18409
|
}
|
|
18347
18410
|
|
|
18348
18411
|
export interface LolRankedLeagueNotifications {
|
|
@@ -18554,7 +18617,6 @@ export interface LolRankedRankedStats {
|
|
|
18554
18617
|
/** @format int32 */
|
|
18555
18618
|
previousSeasonSplitPoints: number
|
|
18556
18619
|
seasons: Record<string, LolRankedSeasonDTO>
|
|
18557
|
-
shouldShowIndicator: boolean
|
|
18558
18620
|
}
|
|
18559
18621
|
|
|
18560
18622
|
export interface LolRankedRankedStatsDTO {
|
|
@@ -20328,6 +20390,8 @@ export interface LolSettingsVNGStatusResponse {
|
|
|
20328
20390
|
|
|
20329
20391
|
export interface LolShoppefrontBulkPurchaseRequest {
|
|
20330
20392
|
purchaseItems: LolShoppefrontPurchaseRequest[]
|
|
20393
|
+
/** @format uint32 */
|
|
20394
|
+
purchaseTimeOut: number
|
|
20331
20395
|
}
|
|
20332
20396
|
|
|
20333
20397
|
export interface LolShoppefrontPurchaseRequest {
|
|
@@ -20336,6 +20400,8 @@ export interface LolShoppefrontPurchaseRequest {
|
|
|
20336
20400
|
/** @format uint32 */
|
|
20337
20401
|
quantity: number
|
|
20338
20402
|
paymentOptions: string[]
|
|
20403
|
+
/** @format uint32 */
|
|
20404
|
+
purchaseTimeOut: number
|
|
20339
20405
|
}
|
|
20340
20406
|
|
|
20341
20407
|
export interface LolShoppefrontPurchaseResponse {
|
|
@@ -20507,6 +20573,7 @@ export interface LolSpectatorSpectateGameInfo {
|
|
|
20507
20573
|
gameQueueType: string
|
|
20508
20574
|
allowObserveMode: string
|
|
20509
20575
|
puuid: string
|
|
20576
|
+
spectatorKey: string
|
|
20510
20577
|
}
|
|
20511
20578
|
|
|
20512
20579
|
export interface LolSpectatorSpectateResource {
|
|
@@ -20527,6 +20594,11 @@ export interface LolSpectatorSpectatorDynamicConfiguration {
|
|
|
20527
20594
|
isUsingOperationalConfig: boolean
|
|
20528
20595
|
}
|
|
20529
20596
|
|
|
20597
|
+
export interface LolSpectatorSpectatorKeySpectateResource {
|
|
20598
|
+
availableForWatching: boolean
|
|
20599
|
+
reason: string
|
|
20600
|
+
}
|
|
20601
|
+
|
|
20530
20602
|
export interface LolSpectatorSpectatorOperationalConfiguration {
|
|
20531
20603
|
enabled: boolean
|
|
20532
20604
|
enforceGridSpectating: boolean
|
|
@@ -21472,6 +21544,10 @@ export interface LolSummonerProfilesHonorView {
|
|
|
21472
21544
|
redemptions: LolSummonerProfilesRedemption[]
|
|
21473
21545
|
}
|
|
21474
21546
|
|
|
21547
|
+
export interface LolSummonerProfilesLolEosRewardView {
|
|
21548
|
+
rewardIds: string[]
|
|
21549
|
+
}
|
|
21550
|
+
|
|
21475
21551
|
export interface LolSummonerProfilesPrivacyView {
|
|
21476
21552
|
anonymityEnabled: boolean
|
|
21477
21553
|
nameOnlyAnonymityEnabled: boolean
|
|
@@ -22925,6 +23001,8 @@ export interface LolTftPassActivityCenterMilestones {
|
|
|
22925
23001
|
/** @format uint32 */
|
|
22926
23002
|
queueId: number
|
|
22927
23003
|
localizedLogo: string
|
|
23004
|
+
localizedEventSubtitle: string
|
|
23005
|
+
localizedHelpUrl: string
|
|
22928
23006
|
backgroundImage: string
|
|
22929
23007
|
helpModalImage: string
|
|
22930
23008
|
objectiveBannerImage: string
|
|
@@ -23086,6 +23164,8 @@ export interface LolTftPassEventInfoUIData {
|
|
|
23086
23164
|
progressEndDate: string
|
|
23087
23165
|
endDate: string
|
|
23088
23166
|
localizedLogo: string
|
|
23167
|
+
localizedEventSubtitle: string
|
|
23168
|
+
localizedHelpUrl: string
|
|
23089
23169
|
objectiveCard: LolTftPassObjectiveCard
|
|
23090
23170
|
/** @format int32 */
|
|
23091
23171
|
currentTokenBalance: number
|
|
@@ -24636,14 +24716,18 @@ export interface LolTftTrovesChemtechShoppeDropTableOddsTreeDto {
|
|
|
24636
24716
|
}
|
|
24637
24717
|
|
|
24638
24718
|
export interface LolTftTrovesChemtechShoppeDropTableOddsTreeHierarchyDto {
|
|
24639
|
-
|
|
24719
|
+
edges: LolTftTrovesChemtechShoppeDropTableOddsTreeHierarchyEdgeDto[]
|
|
24720
|
+
}
|
|
24721
|
+
|
|
24722
|
+
export interface LolTftTrovesChemtechShoppeDropTableOddsTreeHierarchyEdgeDto {
|
|
24723
|
+
targetNodeId: string
|
|
24724
|
+
/** @format double */
|
|
24725
|
+
odds: number
|
|
24640
24726
|
}
|
|
24641
24727
|
|
|
24642
24728
|
export interface LolTftTrovesChemtechShoppeDropTableOddsTreeNodeDto {
|
|
24643
24729
|
id: string
|
|
24644
24730
|
name: string
|
|
24645
|
-
/** @format double */
|
|
24646
|
-
odds: number
|
|
24647
24731
|
/** @format uint32 */
|
|
24648
24732
|
displayPriority: number
|
|
24649
24733
|
sourceId: string
|
|
@@ -24659,6 +24743,31 @@ export interface LolTftTrovesChemtechShoppeDropTableOddsTreeResultDto {
|
|
|
24659
24743
|
data: LolTftTrovesChemtechShoppeDropTableOddsTreeDto
|
|
24660
24744
|
}
|
|
24661
24745
|
|
|
24746
|
+
export interface LolTftTrovesChemtechShoppeDropsFulfillmentDto {
|
|
24747
|
+
/** @format int64 */
|
|
24748
|
+
delta: number
|
|
24749
|
+
/** @format int64 */
|
|
24750
|
+
finalDelta: number
|
|
24751
|
+
name: string
|
|
24752
|
+
/** @format int64 */
|
|
24753
|
+
maxQuantity: number
|
|
24754
|
+
/** @format int64 */
|
|
24755
|
+
ownedQuantity: number
|
|
24756
|
+
ownershipCompensationMode: string
|
|
24757
|
+
itemTypeId: string
|
|
24758
|
+
itemId: string
|
|
24759
|
+
currencyId: string
|
|
24760
|
+
subCurrencyDeltas: Record<string, number>
|
|
24761
|
+
}
|
|
24762
|
+
|
|
24763
|
+
export interface LolTftTrovesChemtechShoppeDropsRollDto {
|
|
24764
|
+
fulfillments: LolTftTrovesChemtechShoppeDropsFulfillmentDto[]
|
|
24765
|
+
}
|
|
24766
|
+
|
|
24767
|
+
export interface LolTftTrovesChemtechShoppeDropsRollResultsDto {
|
|
24768
|
+
rolls: LolTftTrovesChemtechShoppeDropsRollDto[]
|
|
24769
|
+
}
|
|
24770
|
+
|
|
24662
24771
|
export interface LolTftTrovesCompanionData {
|
|
24663
24772
|
name: string
|
|
24664
24773
|
contentId: string
|
|
@@ -24792,6 +24901,7 @@ export interface LolTftTrovesFulfillmentDto {
|
|
|
24792
24901
|
subCurrencyDeltas: Record<string, number>
|
|
24793
24902
|
progressionCounterId: string
|
|
24794
24903
|
dropTableId: string
|
|
24904
|
+
results: LolTftTrovesChemtechShoppeDropsRollResultsDto
|
|
24795
24905
|
}
|
|
24796
24906
|
|
|
24797
24907
|
export interface LolTftTrovesGameDataCompanion {
|
|
@@ -25188,6 +25298,8 @@ export interface LolTftTrovesStoreDto {
|
|
|
25188
25298
|
name: string
|
|
25189
25299
|
catalogEntries: LolTftTrovesCatalogEntryDto[]
|
|
25190
25300
|
displayMetadata: unknown
|
|
25301
|
+
startTime: string
|
|
25302
|
+
endTime: string
|
|
25191
25303
|
}
|
|
25192
25304
|
|
|
25193
25305
|
export interface LolTftTrovesStoresResponse {
|
|
@@ -25205,6 +25317,8 @@ export interface LolTftTrovesTFTRotationalShopConfig {
|
|
|
25205
25317
|
navs: LolTftTrovesTFTRotationalShopNavConfig[]
|
|
25206
25318
|
refund: LolTftTrovesTFTRotationalShopRefundConfig
|
|
25207
25319
|
littleLegendsUpgradeEnabled: boolean
|
|
25320
|
+
eventsStoreEnabled: boolean
|
|
25321
|
+
eventsStoreData: unknown
|
|
25208
25322
|
}
|
|
25209
25323
|
|
|
25210
25324
|
export interface LolTftTrovesTFTRotationalShopNavConfig {
|
|
@@ -25273,7 +25387,7 @@ export interface LolTftTrovesTrovesBanner {
|
|
|
25273
25387
|
isCollectorBounty: boolean
|
|
25274
25388
|
/** @format uint32 */
|
|
25275
25389
|
maxTotalRolls: number
|
|
25276
|
-
/** @format
|
|
25390
|
+
/** @format uint64 */
|
|
25277
25391
|
pullCost: number
|
|
25278
25392
|
chaseContentIds: string[]
|
|
25279
25393
|
prestigeContentIds: string[]
|
|
@@ -25281,6 +25395,9 @@ export interface LolTftTrovesTrovesBanner {
|
|
|
25281
25395
|
status: LolTftTrovesTrovesStatus
|
|
25282
25396
|
bountyType: string
|
|
25283
25397
|
videoId: string
|
|
25398
|
+
storeId: string
|
|
25399
|
+
catalogEntryId: string
|
|
25400
|
+
paymentOptionsKeys: string[]
|
|
25284
25401
|
}
|
|
25285
25402
|
|
|
25286
25403
|
export interface LolTftTrovesTrovesCelebrationCurrencySegmentData {
|
|
@@ -27571,6 +27688,7 @@ export interface TeamBuilderDirect_Cell {
|
|
|
27571
27688
|
/** @format int64 */
|
|
27572
27689
|
obfuscatedSummonerId: number
|
|
27573
27690
|
obfuscatedPuuid: string
|
|
27691
|
+
isAutofilled: boolean
|
|
27574
27692
|
}
|
|
27575
27693
|
|
|
27576
27694
|
export interface TeamBuilderDirect_Cells {
|
|
@@ -27733,6 +27851,7 @@ export interface TeamBuilderDirect_ChampSelectPlayerSelection {
|
|
|
27733
27851
|
/** @format uint64 */
|
|
27734
27852
|
obfuscatedSummonerId: number
|
|
27735
27853
|
obfuscatedPuuid: string
|
|
27854
|
+
isAutofilled: boolean
|
|
27736
27855
|
internalName: string
|
|
27737
27856
|
/** @format int32 */
|
|
27738
27857
|
pickMode: number
|
|
@@ -27856,6 +27975,7 @@ export interface TeamBuilderDirect_ChampSelectSummoner {
|
|
|
27856
27975
|
showSwaps: boolean
|
|
27857
27976
|
showPositionSwaps: boolean
|
|
27858
27977
|
showMuted: boolean
|
|
27978
|
+
isAutofilled: boolean
|
|
27859
27979
|
}
|
|
27860
27980
|
|
|
27861
27981
|
export interface TeamBuilderDirect_ChampSelectSwapContract {
|
|
@@ -28668,6 +28788,7 @@ export interface TeambuilderEdge_CellV1 {
|
|
|
28668
28788
|
/** @format int32 */
|
|
28669
28789
|
skinId: number
|
|
28670
28790
|
nameVisibilityType: string
|
|
28791
|
+
isAutofilled: boolean
|
|
28671
28792
|
}
|
|
28672
28793
|
|
|
28673
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": {
|