@hasagi/types 14.7.1 → 14.11.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/lcu-endpoints.d.ts +84 -92
- package/lcu-events.d.ts +18 -11
- package/lcu-types.d.ts +678 -1643
- package/package.json +4 -4
package/lcu-endpoints.d.ts
CHANGED
|
@@ -13,6 +13,9 @@ export interface LCUEndpoints {
|
|
|
13
13
|
"/Cancel": {
|
|
14
14
|
post: { path: never, params: never, body: number, response: unknown }
|
|
15
15
|
},
|
|
16
|
+
"/lol-champion-mastery/v1/reward-grants/{id}": {
|
|
17
|
+
delete: { path: [id: string], params: never, body: never, response: unknown }
|
|
18
|
+
},
|
|
16
19
|
"/lol-chat/v1/blocked-players/{id}": {
|
|
17
20
|
get: { path: [id: string], params: never, body: never, response: LCUTypes.LolChatBlockedPlayerResource }
|
|
18
21
|
delete: { path: [id: string], params: never, body: never, response: unknown }
|
|
@@ -120,7 +123,6 @@ export interface LCUEndpoints {
|
|
|
120
123
|
delete: { path: never, params: never, body: never, response: unknown }
|
|
121
124
|
},
|
|
122
125
|
"/lol-lobby/v1/lobby/custom/bots/{summonerInternalName}": {
|
|
123
|
-
post: { path: [summonerInternalName: string], params: never, body: LCUTypes.LolLobbyLobbyBotParams, response: unknown }
|
|
124
126
|
delete: { path: [summonerInternalName: string], params: never, body: never, response: unknown }
|
|
125
127
|
},
|
|
126
128
|
"/lol-lobby/v2/lobby": {
|
|
@@ -307,12 +309,6 @@ export interface LCUEndpoints {
|
|
|
307
309
|
get: { path: [plugin: string, path: string], params: { "if-none-match"?: string }, body: never, response: unknown }
|
|
308
310
|
head: { path: [plugin: string, path: string], params: { "if-none-match"?: string }, body: never, response: unknown }
|
|
309
311
|
},
|
|
310
|
-
"/client-config/v1/config": {
|
|
311
|
-
get: { path: never, params: { "type": LCUTypes.ClientConfigConfigType, "app"?: string, "version"?: string, "patchline"?: string, "region"?: string, "namespace"?: string }, body: never, response: Record<string, unknown> }
|
|
312
|
-
},
|
|
313
|
-
"/client-config/v1/config/{name}": {
|
|
314
|
-
get: { path: [name: string], params: { "type": LCUTypes.ClientConfigConfigType, "app"?: string, "version"?: string, "patchline"?: string, "region"?: string }, body: never, response: unknown }
|
|
315
|
-
},
|
|
316
312
|
"/client-config/v1/status/{type}": {
|
|
317
313
|
get: { path: [type: LCUTypes.ClientConfigConfigType], params: never, body: never, response: LCUTypes.ClientConfigConfigStatus }
|
|
318
314
|
},
|
|
@@ -351,6 +347,9 @@ export interface LCUEndpoints {
|
|
|
351
347
|
"/deep-links/v1/settings": {
|
|
352
348
|
get: { path: never, params: never, body: never, response: LCUTypes.DeepLinksDeepLinksSettings }
|
|
353
349
|
},
|
|
350
|
+
"/dx9-deprecation/notification-type": {
|
|
351
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolDx9DeprecationDx9DeprecationNotificationType }
|
|
352
|
+
},
|
|
354
353
|
"/entitlements/v1/token": {
|
|
355
354
|
get: { path: never, params: never, body: never, response: LCUTypes.EntitlementsToken }
|
|
356
355
|
},
|
|
@@ -576,6 +575,24 @@ export interface LCUEndpoints {
|
|
|
576
575
|
"/lol-champ-select/v1/team-boost": {
|
|
577
576
|
get: { path: never, params: never, body: never, response: LCUTypes.LolChampSelectTeamBoost }
|
|
578
577
|
},
|
|
578
|
+
"/lol-champion-mastery/v1/{puuid}/champion-mastery": {
|
|
579
|
+
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMastery[] }
|
|
580
|
+
},
|
|
581
|
+
"/lol-champion-mastery/v1/local-player/champion-mastery": {
|
|
582
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMastery[] }
|
|
583
|
+
},
|
|
584
|
+
"/lol-champion-mastery/v1/local-player/champion-mastery-score": {
|
|
585
|
+
get: { path: never, params: never, body: never, response: number }
|
|
586
|
+
},
|
|
587
|
+
"/lol-champion-mastery/v1/local-player/champion-mastery-sets-and-rewards": {
|
|
588
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolChampionMasteryUIAllChampionMasteryWithSets }
|
|
589
|
+
},
|
|
590
|
+
"/lol-champion-mastery/v1/notifications": {
|
|
591
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMasteryChangeNotification }
|
|
592
|
+
},
|
|
593
|
+
"/lol-champion-mastery/v1/reward-grants": {
|
|
594
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMasteryRewardGrantNotification[] }
|
|
595
|
+
},
|
|
579
596
|
"/lol-champions/v1/inventories/{summonerId}/champions": {
|
|
580
597
|
get: { path: [summonerId: number], params: never, body: never, response: LCUTypes.LolChampionsCollectionsChampion[] }
|
|
581
598
|
},
|
|
@@ -810,9 +827,6 @@ export interface LCUEndpoints {
|
|
|
810
827
|
"/lol-collections/v1/inventories/{summonerId}/ward-skins/{wardSkinId}": {
|
|
811
828
|
get: { path: [summonerId: number, wardSkinId: number], params: never, body: never, response: LCUTypes.LolCollectionsCollectionsWardSkin }
|
|
812
829
|
},
|
|
813
|
-
"/lol-collections/v1/inventories/chest-eligibility": {
|
|
814
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolCollectionsCollectionsChestEligibility }
|
|
815
|
-
},
|
|
816
830
|
"/lol-collections/v1/inventories/local-player/champion-mastery-score": {
|
|
817
831
|
get: { path: never, params: never, body: never, response: number }
|
|
818
832
|
},
|
|
@@ -873,6 +887,9 @@ export interface LCUEndpoints {
|
|
|
873
887
|
"/lol-drops/v1/ready": {
|
|
874
888
|
get: { path: never, params: never, body: never, response: boolean }
|
|
875
889
|
},
|
|
890
|
+
"/lol-dx9-deprecation/needs-hardware-upgrade": {
|
|
891
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
892
|
+
},
|
|
876
893
|
"/lol-email-verification/v1/email": {
|
|
877
894
|
get: { path: never, params: never, body: never, response: LCUTypes.LolEmailVerificationEmailVerificationSession }
|
|
878
895
|
put: { path: never, params: never, body: LCUTypes.LolEmailVerificationEmailUpdate, response: unknown }
|
|
@@ -965,63 +982,6 @@ export interface LCUEndpoints {
|
|
|
965
982
|
"/lol-event-mission/v1/event-mission": {
|
|
966
983
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftEventTFTEventMissionChain[] }
|
|
967
984
|
},
|
|
968
|
-
"/lol-event-shop/v1/categories-offers": {
|
|
969
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopCategoryOffersUIData[] }
|
|
970
|
-
},
|
|
971
|
-
"/lol-event-shop/v1/event-details-data": {
|
|
972
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopEventDetailsUIData }
|
|
973
|
-
},
|
|
974
|
-
"/lol-event-shop/v1/failure-loading-reward-track": {
|
|
975
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopEventShopError }
|
|
976
|
-
},
|
|
977
|
-
"/lol-event-shop/v1/failure-loading-token-shop": {
|
|
978
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopEventShopError }
|
|
979
|
-
},
|
|
980
|
-
"/lol-event-shop/v1/info": {
|
|
981
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopEventShopInfoUIData }
|
|
982
|
-
},
|
|
983
|
-
"/lol-event-shop/v1/is-grace-period": {
|
|
984
|
-
get: { path: never, params: never, body: never, response: boolean }
|
|
985
|
-
},
|
|
986
|
-
"/lol-event-shop/v1/navigation-button-data": {
|
|
987
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopNavigationButtonUIData }
|
|
988
|
-
},
|
|
989
|
-
"/lol-event-shop/v1/pass-background-data": {
|
|
990
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopEventBackgroundUIData }
|
|
991
|
-
},
|
|
992
|
-
"/lol-event-shop/v1/pass-bundles": {
|
|
993
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopBundleOfferUIData[] }
|
|
994
|
-
},
|
|
995
|
-
"/lol-event-shop/v1/progress-info-data": {
|
|
996
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopProgressInfoUIData }
|
|
997
|
-
},
|
|
998
|
-
"/lol-event-shop/v1/reward-track-bonus-items": {
|
|
999
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopRewardTrackItem[] }
|
|
1000
|
-
},
|
|
1001
|
-
"/lol-event-shop/v1/reward-track-bonus-progress": {
|
|
1002
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopRewardTrackProgress }
|
|
1003
|
-
},
|
|
1004
|
-
"/lol-event-shop/v1/reward-track-items": {
|
|
1005
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopRewardTrackItem[] }
|
|
1006
|
-
},
|
|
1007
|
-
"/lol-event-shop/v1/reward-track-progress": {
|
|
1008
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopRewardTrackProgress }
|
|
1009
|
-
},
|
|
1010
|
-
"/lol-event-shop/v1/reward-track-xp": {
|
|
1011
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopRewardTrackXP }
|
|
1012
|
-
},
|
|
1013
|
-
"/lol-event-shop/v1/token-balance": {
|
|
1014
|
-
get: { path: never, params: never, body: never, response: number }
|
|
1015
|
-
},
|
|
1016
|
-
"/lol-event-shop/v1/token-shop-data": {
|
|
1017
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopTokenShopUIData }
|
|
1018
|
-
},
|
|
1019
|
-
"/lol-event-shop/v1/token-upsell": {
|
|
1020
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopTokenUpsell[] }
|
|
1021
|
-
},
|
|
1022
|
-
"/lol-event-shop/v1/unclaimed-rewards": {
|
|
1023
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolEventShopUnclaimedRewardsUIData }
|
|
1024
|
-
},
|
|
1025
985
|
"/lol-game-client-chat/v1/buddies": {
|
|
1026
986
|
get: { path: never, params: never, body: never, response: string[] }
|
|
1027
987
|
},
|
|
@@ -1522,6 +1482,9 @@ export interface LCUEndpoints {
|
|
|
1522
1482
|
"/lol-loot/v1/loot-odds/{recipeName}": {
|
|
1523
1483
|
get: { path: [recipeName: string], params: never, body: never, response: LCUTypes.LolLootVerboseLootOddsResponse }
|
|
1524
1484
|
},
|
|
1485
|
+
"/lol-loot/v1/loot-odds/{recipeName}/visibility": {
|
|
1486
|
+
get: { path: [recipeName: string], params: never, body: never, response: boolean }
|
|
1487
|
+
},
|
|
1525
1488
|
"/lol-loot/v1/mass-disenchant/configuration": {
|
|
1526
1489
|
get: { path: never, params: never, body: never, response: LCUTypes.LolLootMassDisenchantClientConfig }
|
|
1527
1490
|
},
|
|
@@ -1603,6 +1566,12 @@ export interface LCUEndpoints {
|
|
|
1603
1566
|
"/lol-marketing-preferences/v1/ready": {
|
|
1604
1567
|
get: { path: never, params: never, body: never, response: boolean }
|
|
1605
1568
|
},
|
|
1569
|
+
"/lol-marketplace/v1/products/{product}/stores": {
|
|
1570
|
+
get: { path: [product: string], params: never, body: never, response: LCUTypes.LolMarketplaceStoresResponse }
|
|
1571
|
+
},
|
|
1572
|
+
"/lol-marketplace/v1/purchases/{purchaseId}": {
|
|
1573
|
+
get: { path: [purchaseId: string], params: never, body: never, response: LCUTypes.LolMarketplacePurchaseTransaction }
|
|
1574
|
+
},
|
|
1606
1575
|
"/lol-match-history/v1/delta": {
|
|
1607
1576
|
get: { path: never, params: never, body: never, response: LCUTypes.LolMatchHistoryMatchHistoryPlayerDelta }
|
|
1608
1577
|
},
|
|
@@ -1716,6 +1685,9 @@ export interface LCUEndpoints {
|
|
|
1716
1685
|
"/lol-perks/v1/quick-play-selections/champion/{championId}/position/{position}": {
|
|
1717
1686
|
get: { path: [championId: number, position: string], params: never, body: never, response: string }
|
|
1718
1687
|
},
|
|
1688
|
+
"/lol-perks/v1/recommended-champion-positions": {
|
|
1689
|
+
get: { path: never, params: never, body: never, response: Record<string, LCUTypes.LolPerksRecommendedPositionsMapResource> }
|
|
1690
|
+
},
|
|
1719
1691
|
"/lol-perks/v1/recommended-pages/champion/{championId}/position/{position}/map/{mapId}": {
|
|
1720
1692
|
get: { path: [championId: number, position: string, mapId: number], params: never, body: never, response: LCUTypes.LolPerksPerkUIRecommendedPage[] }
|
|
1721
1693
|
},
|
|
@@ -1765,9 +1737,6 @@ export interface LCUEndpoints {
|
|
|
1765
1737
|
"/lol-player-behavior/v1/credibility-behavior-warnings": {
|
|
1766
1738
|
get: { path: never, params: never, body: never, response: void }
|
|
1767
1739
|
},
|
|
1768
|
-
"/lol-player-behavior/v1/ranked-restriction": {
|
|
1769
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolPlayerBehaviorRestrictionNotification }
|
|
1770
|
-
},
|
|
1771
1740
|
"/lol-player-behavior/v1/reform-card": {
|
|
1772
1741
|
get: { path: never, params: never, body: never, response: LCUTypes.LolPlayerBehaviorReformCard }
|
|
1773
1742
|
},
|
|
@@ -1982,6 +1951,9 @@ export interface LCUEndpoints {
|
|
|
1982
1951
|
"/lol-rso-auth/v1/authorization/access-token": {
|
|
1983
1952
|
get: { path: never, params: never, body: never, response: LCUTypes.LolRsoAuthAccessToken }
|
|
1984
1953
|
},
|
|
1954
|
+
"/lol-rso-auth/v1/authorization/country": {
|
|
1955
|
+
get: { path: never, params: never, body: never, response: string }
|
|
1956
|
+
},
|
|
1985
1957
|
"/lol-rso-auth/v1/authorization/error": {
|
|
1986
1958
|
get: { path: never, params: never, body: never, response: LCUTypes.LolRsoAuthAuthError }
|
|
1987
1959
|
},
|
|
@@ -2059,10 +2031,6 @@ export interface LCUEndpoints {
|
|
|
2059
2031
|
"/lol-spectator/v1/spectate/config": {
|
|
2060
2032
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSpectatorSpectatorConfig }
|
|
2061
2033
|
},
|
|
2062
|
-
"/lol-spectator/v3/buddy/spectate": {
|
|
2063
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolSpectatorSpectateResource }
|
|
2064
|
-
post: { path: never, params: never, body: string[], response: void }
|
|
2065
|
-
},
|
|
2066
2034
|
"/lol-statstones/v1/eog-notifications/{gameId}": {
|
|
2067
2035
|
get: { path: [gameId: number], params: never, body: never, response: LCUTypes.LolStatstonesEogNotificationEnvelope }
|
|
2068
2036
|
},
|
|
@@ -2239,16 +2207,16 @@ export interface LCUEndpoints {
|
|
|
2239
2207
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTastesDataModelResponse }
|
|
2240
2208
|
},
|
|
2241
2209
|
"/lol-tft-pass/v1/battle-pass": {
|
|
2242
|
-
get: { path: never, params: never, body: never, response: LCUTypes.
|
|
2210
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass }
|
|
2243
2211
|
},
|
|
2244
2212
|
"/lol-tft-pass/v1/daily-login-pass": {
|
|
2245
|
-
get: { path: never, params: never, body: never, response: LCUTypes.
|
|
2213
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass }
|
|
2246
2214
|
},
|
|
2247
2215
|
"/lol-tft-pass/v1/enabled": {
|
|
2248
2216
|
get: { path: never, params: never, body: never, response: boolean }
|
|
2249
2217
|
},
|
|
2250
2218
|
"/lol-tft-pass/v1/event-pass": {
|
|
2251
|
-
get: { path: never, params: never, body: never, response: LCUTypes.
|
|
2219
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass }
|
|
2252
2220
|
},
|
|
2253
2221
|
"/lol-tft-pass/v1/reward-notification": {
|
|
2254
2222
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTFTPassRewardNotification }
|
|
@@ -2276,9 +2244,18 @@ export interface LCUEndpoints {
|
|
|
2276
2244
|
"/lol-tft-troves/v1/loot-odds/{dropTableId}": {
|
|
2277
2245
|
get: { path: [dropTableId: string], params: never, body: never, response: LCUTypes.LolTftTrovesVerboseLootOddsResponse }
|
|
2278
2246
|
},
|
|
2247
|
+
"/lol-tft-troves/v1/milestone-notifications": {
|
|
2248
|
+
get: { path: never, params: never, body: never, response: void }
|
|
2249
|
+
},
|
|
2250
|
+
"/lol-tft-troves/v1/milestones": {
|
|
2251
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTrovesTrovesMilestones }
|
|
2252
|
+
},
|
|
2279
2253
|
"/lol-tft-troves/v1/status-notifications": {
|
|
2280
2254
|
get: { path: never, params: never, body: never, response: void }
|
|
2281
2255
|
},
|
|
2256
|
+
"/lol-tft/v1/tft/backgrounds": {
|
|
2257
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftLolTftBackgrounds }
|
|
2258
|
+
},
|
|
2282
2259
|
"/lol-tft/v1/tft/battlePassHub": {
|
|
2283
2260
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftLolTftBattlePassHub }
|
|
2284
2261
|
},
|
|
@@ -2300,9 +2277,6 @@ export interface LCUEndpoints {
|
|
|
2300
2277
|
"/lol-tft/v1/tft/tencentEventhubConfigs": {
|
|
2301
2278
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftLolTftTencentEventHubConfigs }
|
|
2302
2279
|
},
|
|
2303
|
-
"/lol-tft/v2/tft/battlepass": {
|
|
2304
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolMissionsTftPaidBattlepass }
|
|
2305
|
-
},
|
|
2306
2280
|
"/lol-trophies/v1/current-summoner/trophies/profile": {
|
|
2307
2281
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTrophiesTrophyProfileData }
|
|
2308
2282
|
},
|
|
@@ -2541,6 +2515,9 @@ export interface LCUEndpoints {
|
|
|
2541
2515
|
"/deep-links/v1/launch-lor-link": {
|
|
2542
2516
|
post: { path: never, params: never, body: never, response: string }
|
|
2543
2517
|
},
|
|
2518
|
+
"/dx9-deprecation/legacy-mode-notification/ack": {
|
|
2519
|
+
post: { path: never, params: never, body: never, response: void }
|
|
2520
|
+
},
|
|
2544
2521
|
"/lol-account-verification/v1/confirmActivationPin": {
|
|
2545
2522
|
post: { path: never, params: never, body: LCUTypes.LolAccountVerificationConfirmActivationPinRequest, response: void }
|
|
2546
2523
|
},
|
|
@@ -2643,6 +2620,15 @@ export interface LCUEndpoints {
|
|
|
2643
2620
|
"/lol-champ-select/v1/toggle-player-muted": {
|
|
2644
2621
|
post: { path: never, params: never, body: LCUTypes.LolChampSelectMutedPlayerInfo, response: unknown }
|
|
2645
2622
|
},
|
|
2623
|
+
"/lol-champion-mastery/v1/{puuid}/champion-mastery/top": {
|
|
2624
|
+
post: { path: [puuid: string], params: never, body: number, response: LCUTypes.LolChampionMasteryTopChampionMasteries }
|
|
2625
|
+
},
|
|
2626
|
+
"/lol-champion-mastery/v1/notifications/ack": {
|
|
2627
|
+
post: { path: never, params: never, body: never, response: void }
|
|
2628
|
+
},
|
|
2629
|
+
"/lol-champion-mastery/v1/scouting": {
|
|
2630
|
+
post: { path: never, params: never, body: string[], response: LCUTypes.RankedScoutingDTO[] }
|
|
2631
|
+
},
|
|
2646
2632
|
"/lol-chat/v1/conversations/eog-chat-toggle": {
|
|
2647
2633
|
post: { path: never, params: never, body: boolean, response: unknown }
|
|
2648
2634
|
},
|
|
@@ -2790,18 +2776,6 @@ export interface LCUEndpoints {
|
|
|
2790
2776
|
"/lol-event-hub/v1/purchase-item": {
|
|
2791
2777
|
post: { path: never, params: never, body: LCUTypes.LolEventHubItemOrderDTO, response: LCUTypes.LolEventHubPurchaseOrderResponseDTO }
|
|
2792
2778
|
},
|
|
2793
|
-
"/lol-event-shop/v1/claim-select-all": {
|
|
2794
|
-
post: { path: never, params: never, body: never, response: void }
|
|
2795
|
-
},
|
|
2796
|
-
"/lol-event-shop/v1/claim-select-bonus-iteration": {
|
|
2797
|
-
post: { path: never, params: never, body: never, response: void }
|
|
2798
|
-
},
|
|
2799
|
-
"/lol-event-shop/v1/purchase-item": {
|
|
2800
|
-
post: { path: never, params: never, body: LCUTypes.LolEventShopItemOrderDTO, response: LCUTypes.LolEventShopPurchaseOrderResponseDTO }
|
|
2801
|
-
},
|
|
2802
|
-
"/lol-event-shop/v1/purchase-offer": {
|
|
2803
|
-
post: { path: never, params: never, body: LCUTypes.LolEventShopPurchaseOfferRequest, response: LCUTypes.LolEventShopPurchaseOfferResponseV3 }
|
|
2804
|
-
},
|
|
2805
2779
|
"/lol-game-client-chat/v1/instant-messages": {
|
|
2806
2780
|
post: { path: never, params: { "summonerName": string, "message": string }, body: never, response: void }
|
|
2807
2781
|
},
|
|
@@ -2970,6 +2944,9 @@ export interface LCUEndpoints {
|
|
|
2970
2944
|
"/lol-lobby/v1/lobby/custom/bots": {
|
|
2971
2945
|
post: { path: never, params: never, body: LCUTypes.LolLobbyLobbyBotParams, response: unknown }
|
|
2972
2946
|
},
|
|
2947
|
+
"/lol-lobby/v1/lobby/custom/bots/{summonerInternalName}/{botToDeletePosition}": {
|
|
2948
|
+
post: { path: [summonerInternalName: string, botToDeletePosition: string], params: never, body: LCUTypes.LolLobbyLobbyBotParams, response: unknown }
|
|
2949
|
+
},
|
|
2973
2950
|
"/lol-lobby/v1/lobby/custom/cancel-champ-select": {
|
|
2974
2951
|
post: { path: never, params: never, body: never, response: unknown }
|
|
2975
2952
|
},
|
|
@@ -3075,6 +3052,9 @@ export interface LCUEndpoints {
|
|
|
3075
3052
|
"/lol-maps/v1/map": {
|
|
3076
3053
|
post: { path: never, params: never, body: LCUTypes.LolMapsMaps, response: void }
|
|
3077
3054
|
},
|
|
3055
|
+
"/lol-marketplace/v1/products/{product}/purchases": {
|
|
3056
|
+
post: { path: [product: string], params: never, body: LCUTypes.LolMarketplacePurchaseRequest, response: LCUTypes.LolMarketplacePurchaseResponse }
|
|
3057
|
+
},
|
|
3078
3058
|
"/lol-match-history/v1/acs-endpoint-override": {
|
|
3079
3059
|
post: { path: never, params: never, body: LCUTypes.LolMatchHistoryAcsEndPoint, response: unknown }
|
|
3080
3060
|
},
|
|
@@ -3234,6 +3214,9 @@ export interface LCUEndpoints {
|
|
|
3234
3214
|
"/lol-spectator/v2/buddy/spectate": {
|
|
3235
3215
|
post: { path: never, params: never, body: number[], response: LCUTypes.LolSpectatorSummonerIdAvailability }
|
|
3236
3216
|
},
|
|
3217
|
+
"/lol-spectator/v3/buddy/spectate": {
|
|
3218
|
+
post: { path: never, params: never, body: string[], response: LCUTypes.LolSpectatorSummonerPuuidsSpectateResource }
|
|
3219
|
+
},
|
|
3237
3220
|
"/lol-statstones/v1/featured-champion-statstones/{championItemId}/{statstoneId}": {
|
|
3238
3221
|
post: { path: [championItemId: number, statstoneId: string], params: never, body: LCUTypes.LolStatstonesStatstoneFeaturedRequest, response: unknown }
|
|
3239
3222
|
},
|
|
@@ -3480,6 +3463,9 @@ export interface LCUEndpoints {
|
|
|
3480
3463
|
"/lol-lobby/v2/lobby/partyType": {
|
|
3481
3464
|
put: { path: never, params: never, body: string, response: unknown }
|
|
3482
3465
|
},
|
|
3466
|
+
"/lol-lobby/v2/lobby/strawberryMapId": {
|
|
3467
|
+
put: { path: never, params: never, body: string, response: void }
|
|
3468
|
+
},
|
|
3483
3469
|
"/lol-lobby/v2/lobby/subteamData": {
|
|
3484
3470
|
put: { path: never, params: never, body: LCUTypes.LolLobbySubteamDataDto, response: void }
|
|
3485
3471
|
},
|
|
@@ -3546,6 +3532,9 @@ export interface LCUEndpoints {
|
|
|
3546
3532
|
"/lol-tft-pass/v1/pass/{id}/milestone/{milestoneId}/reward": {
|
|
3547
3533
|
put: { path: [id: string, milestoneId: string], params: never, body: never, response: void }
|
|
3548
3534
|
},
|
|
3535
|
+
"/lol-tft-pass/v1/pass/{id}/milestone/claimAllRewards": {
|
|
3536
|
+
put: { path: [id: string], params: never, body: never, response: void }
|
|
3537
|
+
},
|
|
3549
3538
|
"/lol-tft-team-planner/v1/team": {
|
|
3550
3539
|
put: { path: never, params: never, body: never, response: unknown }
|
|
3551
3540
|
},
|
|
@@ -3561,6 +3550,9 @@ export interface LCUEndpoints {
|
|
|
3561
3550
|
"/riotclient/ux-state/ack": {
|
|
3562
3551
|
put: { path: never, params: never, body: number, response: void }
|
|
3563
3552
|
},
|
|
3553
|
+
"/services-api/game-session/v1/game-session-token": {
|
|
3554
|
+
put: { path: never, params: never, body: string, response: void }
|
|
3555
|
+
},
|
|
3564
3556
|
"/Subscribe": {
|
|
3565
3557
|
post: { path: never, params: { "eventName": string, "format"?: LCUTypes.RemotingSerializedFormat }, body: never, response: unknown }
|
|
3566
3558
|
},
|
package/lcu-events.d.ts
CHANGED
|
@@ -23,10 +23,13 @@ export interface LCUWebSocketEvents {
|
|
|
23
23
|
"OnJsonApiEvent_data-store_v1_system-settings": LCUTypes.PluginResourceEvent,
|
|
24
24
|
"OnJsonApiEvent_deep-links_v1_settings": LCUTypes.PluginResourceEvent,
|
|
25
25
|
"OnJsonApiEvent_entitlements_v1_token": LCUTypes.PluginResourceEvent,
|
|
26
|
+
"OnJsonApiEvent_entitlements_v2_token": LCUTypes.PluginResourceEvent,
|
|
26
27
|
"OnJsonApiEvent_ga-restriction_v1_penalty-notifications": LCUTypes.PluginResourceEvent,
|
|
27
28
|
"OnJsonApiEvent_lol-account-verification_v1_is-verified": LCUTypes.PluginResourceEvent,
|
|
28
29
|
"OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
|
|
29
30
|
"OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
31
|
+
"OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
|
|
32
|
+
"OnJsonApiEvent_lol-challenges_v1_challenges": LCUTypes.PluginResourceEvent,
|
|
30
33
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
31
34
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
32
35
|
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
@@ -43,6 +46,7 @@ export interface LCUWebSocketEvents {
|
|
|
43
46
|
"OnJsonApiEvent_lol-champ-select_v1_muted-players": LCUTypes.PluginResourceEvent,
|
|
44
47
|
"OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
|
|
45
48
|
"OnJsonApiEvent_lol-champ-select_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
49
|
+
"OnJsonApiEvent_lol-champion-mastery_v1_local-player": LCUTypes.PluginResourceEvent,
|
|
46
50
|
"OnJsonApiEvent_lol-champions_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
47
51
|
"OnJsonApiEvent_lol-champions_v1_owned-champions-minimal": LCUTypes.PluginResourceEvent,
|
|
48
52
|
"OnJsonApiEvent_lol-chat_v1_blocked-players": LCUTypes.PluginResourceEvent,
|
|
@@ -53,12 +57,11 @@ export interface LCUWebSocketEvents {
|
|
|
53
57
|
"OnJsonApiEvent_lol-chat_v1_friend-requests": LCUTypes.PluginResourceEvent,
|
|
54
58
|
"OnJsonApiEvent_lol-chat_v1_friends": LCUTypes.PluginResourceEvent,
|
|
55
59
|
"OnJsonApiEvent_lol-chat_v1_me": LCUTypes.PluginResourceEvent,
|
|
60
|
+
"OnJsonApiEvent_lol-chat_v1_player-mutes": LCUTypes.PluginResourceEvent,
|
|
56
61
|
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
57
62
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
58
63
|
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
59
|
-
"OnJsonApiEvent_lol-clash_v1_all-tournaments": LCUTypes.PluginResourceEvent,
|
|
60
64
|
"OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
|
|
61
|
-
"OnJsonApiEvent_lol-clash_v1_currentTournamentIds": LCUTypes.PluginResourceEvent,
|
|
62
65
|
"OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
|
|
63
66
|
"OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
64
67
|
"OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
|
|
@@ -68,9 +71,6 @@ export interface LCUWebSocketEvents {
|
|
|
68
71
|
"OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
|
|
69
72
|
"OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
|
|
70
73
|
"OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
|
|
71
|
-
"OnJsonApiEvent_lol-clash_v1_tournament": LCUTypes.PluginResourceEvent,
|
|
72
|
-
"OnJsonApiEvent_lol-clash_v1_tournament-state-info": LCUTypes.PluginResourceEvent,
|
|
73
|
-
"OnJsonApiEvent_lol-clash_v1_tournament-summary": LCUTypes.PluginResourceEvent,
|
|
74
74
|
"OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
|
|
75
75
|
"OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
|
|
76
76
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
@@ -80,6 +80,7 @@ export interface LCUWebSocketEvents {
|
|
|
80
80
|
"OnJsonApiEvent_lol-cosmetics_v1_favorites": LCUTypes.PluginResourceEvent,
|
|
81
81
|
"OnJsonApiEvent_lol-cosmetics_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
82
82
|
"OnJsonApiEvent_lol-drops_v1_ready": LCUTypes.PluginResourceEvent,
|
|
83
|
+
"OnJsonApiEvent_lol-dx9-deprecation_needs-hardware-upgrade": LCUTypes.PluginResourceEvent,
|
|
83
84
|
"OnJsonApiEvent_lol-end-of-game_v1_eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
84
85
|
"OnJsonApiEvent_lol-end-of-game_v1_gameclient-eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
85
86
|
"OnJsonApiEvent_lol-end-of-game_v1_tft-eog-stats": LCUTypes.PluginResourceEvent,
|
|
@@ -88,9 +89,6 @@ export interface LCUWebSocketEvents {
|
|
|
88
89
|
"OnJsonApiEvent_lol-event-hub_v1_skins": LCUTypes.PluginResourceEvent,
|
|
89
90
|
"OnJsonApiEvent_lol-event-hub_v1_token-upsell": LCUTypes.PluginResourceEvent,
|
|
90
91
|
"OnJsonApiEvent_lol-event-mission_v1_event-mission": LCUTypes.PluginResourceEvent,
|
|
91
|
-
"OnJsonApiEvent_lol-event-shop_v1_info": LCUTypes.PluginResourceEvent,
|
|
92
|
-
"OnJsonApiEvent_lol-event-shop_v1_navigation-button-data": LCUTypes.PluginResourceEvent,
|
|
93
|
-
"OnJsonApiEvent_lol-event-shop_v1_token-upsell": LCUTypes.PluginResourceEvent,
|
|
94
92
|
"OnJsonApiEvent_lol-game-client-chat_v1_buddies": LCUTypes.PluginResourceEvent,
|
|
95
93
|
"OnJsonApiEvent_lol-game-client-chat_v1_instant-messages": LCUTypes.PluginResourceEvent,
|
|
96
94
|
"OnJsonApiEvent_lol-game-client-chat_v2_buddies": LCUTypes.PluginResourceEvent,
|
|
@@ -102,6 +100,7 @@ export interface LCUWebSocketEvents {
|
|
|
102
100
|
"OnJsonApiEvent_lol-game-settings_v1_game-settings": LCUTypes.PluginResourceEvent,
|
|
103
101
|
"OnJsonApiEvent_lol-game-settings_v1_input-settings": LCUTypes.PluginResourceEvent,
|
|
104
102
|
"OnJsonApiEvent_lol-game-settings_v1_ready": LCUTypes.PluginResourceEvent,
|
|
103
|
+
"OnJsonApiEvent_lol-gameflow_v1_active-patcher-lock": LCUTypes.PluginResourceEvent,
|
|
105
104
|
"OnJsonApiEvent_lol-gameflow_v1_availability": LCUTypes.PluginResourceEvent,
|
|
106
105
|
"OnJsonApiEvent_lol-gameflow_v1_battle-training": LCUTypes.PluginResourceEvent,
|
|
107
106
|
"OnJsonApiEvent_lol-gameflow_v1_early-exit-notifications": LCUTypes.PluginResourceEvent,
|
|
@@ -143,9 +142,12 @@ export interface LCUWebSocketEvents {
|
|
|
143
142
|
"OnJsonApiEvent_lol-lobby-team-builder_champ-select_v1": LCUTypes.PluginResourceEvent,
|
|
144
143
|
"OnJsonApiEvent_lol-lobby-team-builder_v1_matchmaking": LCUTypes.PluginResourceEvent,
|
|
145
144
|
"OnJsonApiEvent_lol-lobby_v1_lobby": LCUTypes.PluginResourceEvent,
|
|
145
|
+
"OnJsonApiEvent_lol-lobby_v1_parties": LCUTypes.PluginResourceEvent,
|
|
146
|
+
"OnJsonApiEvent_lol-lobby_v1_party-rewards": LCUTypes.PluginResourceEvent,
|
|
146
147
|
"OnJsonApiEvent_lol-lobby_v2_comms": LCUTypes.PluginResourceEvent,
|
|
147
148
|
"OnJsonApiEvent_lol-lobby_v2_eligibility": LCUTypes.PluginResourceEvent,
|
|
148
149
|
"OnJsonApiEvent_lol-lobby_v2_lobby": LCUTypes.PluginResourceEvent,
|
|
150
|
+
"OnJsonApiEvent_lol-lobby_v2_party-active": LCUTypes.PluginResourceEvent,
|
|
149
151
|
"OnJsonApiEvent_lol-login_v1_login-connection-state": LCUTypes.PluginResourceEvent,
|
|
150
152
|
"OnJsonApiEvent_lol-login_v1_login-data-packet": LCUTypes.PluginResourceEvent,
|
|
151
153
|
"OnJsonApiEvent_lol-login_v1_login-in-game-creds": LCUTypes.PluginResourceEvent,
|
|
@@ -378,6 +380,7 @@ export interface LCUWebSocketEvents {
|
|
|
378
380
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_BOT_3x3": LCUTypes.PluginResourceEvent,
|
|
379
381
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_CHERRY": LCUTypes.PluginResourceEvent,
|
|
380
382
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_CHERRY_UNRANKED": LCUTypes.PluginResourceEvent,
|
|
383
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_CHONCC_TREASURE_TFT": LCUTypes.PluginResourceEvent,
|
|
381
384
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_CLASH": LCUTypes.PluginResourceEvent,
|
|
382
385
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_CLASSIC": LCUTypes.PluginResourceEvent,
|
|
383
386
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_COUNTER_PICK": LCUTypes.PluginResourceEvent,
|
|
@@ -567,6 +570,7 @@ export interface LCUWebSocketEvents {
|
|
|
567
570
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_Endpoint": LCUTypes.PluginResourceEvent,
|
|
568
571
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_UseIdTokens": LCUTypes.PluginResourceEvent,
|
|
569
572
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections": LCUTypes.PluginResourceEvent,
|
|
573
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_Enabled": LCUTypes.PluginResourceEvent,
|
|
570
574
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUAugmentsVisible": LCUTypes.PluginResourceEvent,
|
|
571
575
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesWardSkinsEnabled": LCUTypes.PluginResourceEvent,
|
|
572
576
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUMasteriesVisible": LCUTypes.PluginResourceEvent,
|
|
@@ -583,7 +587,6 @@ export interface LCUWebSocketEvents {
|
|
|
583
587
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_PlayerGiftingNotificationsEnabled": LCUTypes.PluginResourceEvent,
|
|
584
588
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_RecommendationsEnabled": LCUTypes.PluginResourceEvent,
|
|
585
589
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_SinglePageApplicationEnabled": LCUTypes.PluginResourceEvent,
|
|
586
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_StoreUrl": LCUTypes.PluginResourceEvent,
|
|
587
590
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_UseGameDataAssets": LCUTypes.PluginResourceEvent,
|
|
588
591
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_UseRMS": LCUTypes.PluginResourceEvent,
|
|
589
592
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_UseRsoAccessToken": LCUTypes.PluginResourceEvent,
|
|
@@ -785,6 +788,7 @@ export interface LCUWebSocketEvents {
|
|
|
785
788
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSeasonMemorialModalEnabled": LCUTypes.PluginResourceEvent,
|
|
786
789
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSplitStartModalEnabled": LCUTypes.PluginResourceEvent,
|
|
787
790
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_JWTEnabled": LCUTypes.PluginResourceEvent,
|
|
791
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_LeagueServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
788
792
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_MasterTierEnabled": LCUTypes.PluginResourceEvent,
|
|
789
793
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_PreseasonName": LCUTypes.PluginResourceEvent,
|
|
790
794
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_PromoHelperEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -793,6 +797,7 @@ export interface LCUWebSocketEvents {
|
|
|
793
797
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_Ranked2019Enabled": LCUTypes.PluginResourceEvent,
|
|
794
798
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_RankedReferenceModalEnabled": LCUTypes.PluginResourceEvent,
|
|
795
799
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_RankedRewardConfig": LCUTypes.PluginResourceEvent,
|
|
800
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_SeasonMemorialModalMinHonorLevel": LCUTypes.PluginResourceEvent,
|
|
796
801
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_SeasonModalEnabled": LCUTypes.PluginResourceEvent,
|
|
797
802
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_SeasonName": LCUTypes.PluginResourceEvent,
|
|
798
803
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_SendSignedRankedOverview": LCUTypes.PluginResourceEvent,
|
|
@@ -1207,6 +1212,7 @@ export interface LCUWebSocketEvents {
|
|
|
1207
1212
|
"OnJsonApiEvent_lol-ranked_v1_top-rated-ladders-enabled": LCUTypes.PluginResourceEvent,
|
|
1208
1213
|
"OnJsonApiEvent_lol-regalia_v2_config": LCUTypes.PluginResourceEvent,
|
|
1209
1214
|
"OnJsonApiEvent_lol-regalia_v2_summoners": LCUTypes.PluginResourceEvent,
|
|
1215
|
+
"OnJsonApiEvent_lol-remedy_v1_remedy-notifications": LCUTypes.PluginResourceEvent,
|
|
1210
1216
|
"OnJsonApiEvent_lol-replays_v1_configuration": LCUTypes.PluginResourceEvent,
|
|
1211
1217
|
"OnJsonApiEvent_lol-replays_v1_metadata": LCUTypes.PluginResourceEvent,
|
|
1212
1218
|
"OnJsonApiEvent_lol-replays_v1_rofls": LCUTypes.PluginResourceEvent,
|
|
@@ -1237,13 +1243,14 @@ export interface LCUWebSocketEvents {
|
|
|
1237
1243
|
"OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
|
|
1238
1244
|
"OnJsonApiEvent_lol-tft-team-planner_v1_team": LCUTypes.PluginResourceEvent,
|
|
1239
1245
|
"OnJsonApiEvent_lol-tft-troves_v1_config": LCUTypes.PluginResourceEvent,
|
|
1246
|
+
"OnJsonApiEvent_lol-tft-troves_v1_milestones-group-id": LCUTypes.PluginResourceEvent,
|
|
1240
1247
|
"OnJsonApiEvent_lol-tft_v1_tft": LCUTypes.PluginResourceEvent,
|
|
1241
|
-
"OnJsonApiEvent_lol-
|
|
1248
|
+
"OnJsonApiEvent_lol-vanguard_v1_session": LCUTypes.PluginResourceEvent,
|
|
1242
1249
|
"OnJsonApiEvent_lol-yourshop_v1_modal": LCUTypes.PluginResourceEvent,
|
|
1243
1250
|
"OnJsonApiEvent_lol-yourshop_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1244
1251
|
"OnJsonApiEvent_lol-yourshop_v1_status": LCUTypes.PluginResourceEvent,
|
|
1245
1252
|
"OnJsonApiEvent_loyalty_v1_loyalty-resource": LCUTypes.PluginResourceEvent,
|
|
1246
|
-
"OnJsonApiEvent_mailbox_v1_check-new-
|
|
1253
|
+
"OnJsonApiEvent_mailbox_v1_check-new-mail": LCUTypes.PluginResourceEvent,
|
|
1247
1254
|
"OnJsonApiEvent_memory_v1_fe-processes-ready": LCUTypes.PluginResourceEvent,
|
|
1248
1255
|
"OnJsonApiEvent_patcher_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
1249
1256
|
"OnJsonApiEvent_patcher_v1_products": LCUTypes.PluginResourceEvent,
|