@hasagi/types 15.3.1 → 15.6.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 +25 -69
- package/dist/lcu-events.d.ts +45 -4
- package/dist/lcu-types.d.ts +401 -433
- package/package.json +5 -5
package/dist/lcu-endpoints.d.ts
CHANGED
|
@@ -242,6 +242,7 @@ export interface LCUEndpoints {
|
|
|
242
242
|
delete: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
243
243
|
},
|
|
244
244
|
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}/champions": {
|
|
245
|
+
post: { path: [set: string, team: string], params: never, body: string[], response: unknown }
|
|
245
246
|
patch: { path: [set: string, team: string], params: never, body: number[], response: unknown }
|
|
246
247
|
delete: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
247
248
|
},
|
|
@@ -253,22 +254,6 @@ export interface LCUEndpoints {
|
|
|
253
254
|
post: { path: [set: string, team: string, championId: string, index: number], params: never, body: never, response: unknown }
|
|
254
255
|
delete: { path: [set: string, team: string, championId: string, index: number], params: never, body: never, response: unknown }
|
|
255
256
|
},
|
|
256
|
-
"/lol-tft-team-planner/v1/team/champions": {
|
|
257
|
-
patch: { path: never, params: never, body: number[], response: unknown }
|
|
258
|
-
delete: { path: never, params: never, body: never, response: unknown }
|
|
259
|
-
},
|
|
260
|
-
"/lol-tft-team-planner/v1/team/championsById/{championName}": {
|
|
261
|
-
post: { path: [championName: string], params: never, body: never, response: unknown }
|
|
262
|
-
delete: { path: [championName: string], params: never, body: never, response: unknown }
|
|
263
|
-
},
|
|
264
|
-
"/lol-tft-team-planner/v1/team/champions/{index}": {
|
|
265
|
-
post: { path: [index: number], params: never, body: string, response: unknown }
|
|
266
|
-
delete: { path: [index: number], params: never, body: never, response: unknown }
|
|
267
|
-
},
|
|
268
|
-
"/lol-tft-team-planner/v1/team/dirty": {
|
|
269
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTeamPlannerTeamPlan }
|
|
270
|
-
delete: { path: never, params: never, body: never, response: unknown }
|
|
271
|
-
},
|
|
272
257
|
"/lol-tft-troves/v1/roll-rewards": {
|
|
273
258
|
get: { path: never, params: never, body: never, response: unknown }
|
|
274
259
|
delete: { path: never, params: never, body: never, response: unknown }
|
|
@@ -833,15 +818,6 @@ export interface LCUEndpoints {
|
|
|
833
818
|
"/lol-collections/v1/inventories/{summonerId}/ward-skins/{wardSkinId}": {
|
|
834
819
|
get: { path: [summonerId: number, wardSkinId: number], params: never, body: never, response: LCUTypes.LolCollectionsCollectionsWardSkin }
|
|
835
820
|
},
|
|
836
|
-
"/lol-content-targeting/v1/filters": {
|
|
837
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolContentTargetingContentTargetingFilterResponse }
|
|
838
|
-
},
|
|
839
|
-
"/lol-content-targeting/v1/locale": {
|
|
840
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolContentTargetingContentTargetingLocaleResponse }
|
|
841
|
-
},
|
|
842
|
-
"/lol-content-targeting/v1/protected_filters": {
|
|
843
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolContentTargetingContentTargetingFilterResponse }
|
|
844
|
-
},
|
|
845
821
|
"/lol-cosmetics/v1/favorites/tft/companions": {
|
|
846
822
|
get: { path: never, params: never, body: never, response: LCUTypes.LolCosmeticsCompanionsFavoritesViewModel }
|
|
847
823
|
},
|
|
@@ -1116,12 +1092,6 @@ export interface LCUEndpoints {
|
|
|
1116
1092
|
"/lol-gameflow/v1/watch": {
|
|
1117
1093
|
get: { path: never, params: never, body: never, response: LCUTypes.LolGameflowGameflowWatchPhase }
|
|
1118
1094
|
},
|
|
1119
|
-
"/lol-geoinfo/v1/getlocation": {
|
|
1120
|
-
get: { path: never, params: { "ip_address": string }, body: never, response: LCUTypes.LolGeoinfoGeoInfo }
|
|
1121
|
-
},
|
|
1122
|
-
"/lol-geoinfo/v1/whereami": {
|
|
1123
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolGeoinfoGeoInfoResponse }
|
|
1124
|
-
},
|
|
1125
1095
|
"/lol-highlights/v1/config": {
|
|
1126
1096
|
get: { path: never, params: never, body: never, response: LCUTypes.LolHighlightsHighlightsConfig }
|
|
1127
1097
|
},
|
|
@@ -1671,6 +1641,10 @@ export interface LCUEndpoints {
|
|
|
1671
1641
|
"/lol-missions/v1/series": {
|
|
1672
1642
|
get: { path: never, params: never, body: never, response: LCUTypes.SeriesDTO[] }
|
|
1673
1643
|
},
|
|
1644
|
+
"/lol-nacho/v1/banner/active": {
|
|
1645
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoNachoBannersResponse }
|
|
1646
|
+
post: { path: never, params: never, body: LCUTypes.LolNachoNachoBannersResponse, response: LCUTypes.LolNachoNachoBannersResponse }
|
|
1647
|
+
},
|
|
1674
1648
|
"/lol-nacho/v1/banner-odds": {
|
|
1675
1649
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoBannerOddsInfo }
|
|
1676
1650
|
},
|
|
@@ -1678,27 +1652,23 @@ export interface LCUEndpoints {
|
|
|
1678
1652
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoNachoBannersResponse[] }
|
|
1679
1653
|
},
|
|
1680
1654
|
"/lol-nacho/v1/get-active-store-catalog": {
|
|
1681
|
-
get: { path: never, params: never, body: never, response: LCUTypes.
|
|
1655
|
+
get: { path: never, params: never, body: never, response: LCUTypes.ChemtechShoppe_CatalogEntryDto[] }
|
|
1682
1656
|
},
|
|
1683
1657
|
"/lol-nacho/v1/get-active-stores": {
|
|
1684
|
-
get: { path: never, params: never, body: never, response: LCUTypes.
|
|
1658
|
+
get: { path: never, params: never, body: never, response: LCUTypes.ChemtechShoppe_StoresResponseDto }
|
|
1685
1659
|
},
|
|
1686
1660
|
"/lol-nacho/v1/get-current-catalog-item": {
|
|
1687
|
-
get: { path: never, params: never, body: never, response: LCUTypes.
|
|
1661
|
+
get: { path: never, params: never, body: never, response: LCUTypes.ChemtechShoppe_CatalogEntryDto }
|
|
1688
1662
|
},
|
|
1689
1663
|
"/lol-nacho/v1/get-store-digests": {
|
|
1690
|
-
get: { path: never, params: never, body: never, response: LCUTypes.
|
|
1691
|
-
},
|
|
1692
|
-
"/lol-nacho/v1/mock-roll-rewards": {
|
|
1693
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoNachoPurchaseResponse }
|
|
1694
|
-
post: { path: never, params: never, body: LCUTypes.LolNachoFinalPurchaseUnitDto[], response: unknown }
|
|
1695
|
-
},
|
|
1696
|
-
"/lol-nacho/v1/pity-counter": {
|
|
1697
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoCapCounterData }
|
|
1664
|
+
get: { path: never, params: never, body: never, response: LCUTypes.ChemtechShoppe_StoreDigestsDto }
|
|
1698
1665
|
},
|
|
1699
1666
|
"/lol-nacho/v1/purchases/{purchaseId}": {
|
|
1700
1667
|
get: { path: [purchaseId: string], params: never, body: never, response: LCUTypes.LolNachoNachoPurchaseResponse }
|
|
1701
1668
|
},
|
|
1669
|
+
"/lol-nacho/v1/ready": {
|
|
1670
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1671
|
+
},
|
|
1702
1672
|
"/lol-nacho/v1/roll-purchase-enabled": {
|
|
1703
1673
|
get: { path: never, params: never, body: never, response: boolean }
|
|
1704
1674
|
},
|
|
@@ -1846,13 +1816,6 @@ export interface LCUEndpoints {
|
|
|
1846
1816
|
"/lol-player-behavior/v3/reform-cards": {
|
|
1847
1817
|
get: { path: never, params: never, body: never, response: unknown }
|
|
1848
1818
|
},
|
|
1849
|
-
"/lol-player-level-up/v1/level-up": {
|
|
1850
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolPlayerLevelUpPlayerLevelUpEvent }
|
|
1851
|
-
},
|
|
1852
|
-
"/lol-player-level-up/v1/level-up-notifications/{pluginName}": {
|
|
1853
|
-
get: { path: [pluginName: string], params: never, body: never, response: LCUTypes.LolPlayerLevelUpPlayerLevelUpEventAck }
|
|
1854
|
-
post: { path: [pluginName: string], params: never, body: LCUTypes.LolPlayerLevelUpPlayerLevelUpEventAck, response: unknown }
|
|
1855
|
-
},
|
|
1856
1819
|
"/lol-player-messaging/v1/celebration/notification": {
|
|
1857
1820
|
get: { path: never, params: never, body: never, response: LCUTypes.LolPlayerMessagingDynamicCelebrationMessagingNotificationResource }
|
|
1858
1821
|
},
|
|
@@ -2394,13 +2357,6 @@ export interface LCUEndpoints {
|
|
|
2394
2357
|
get: { path: never, params: never, body: never, response: number }
|
|
2395
2358
|
patch: { path: never, params: never, body: number, response: unknown }
|
|
2396
2359
|
},
|
|
2397
|
-
"/lol-tft-team-planner/v1/team/local": {
|
|
2398
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTeamPlannerTeamSettings }
|
|
2399
|
-
},
|
|
2400
|
-
"/lol-tft-team-planner/v1/team/reminders": {
|
|
2401
|
-
get: { path: never, params: never, body: never, response: boolean }
|
|
2402
|
-
patch: { path: never, params: never, body: boolean, response: unknown }
|
|
2403
|
-
},
|
|
2404
2360
|
"/lol-tft-team-planner/v2/reminders": {
|
|
2405
2361
|
get: { path: never, params: never, body: never, response: string[] }
|
|
2406
2362
|
},
|
|
@@ -2624,6 +2580,9 @@ export interface LCUEndpoints {
|
|
|
2624
2580
|
"/telemetry/v1/application-start-time": {
|
|
2625
2581
|
get: { path: never, params: never, body: never, response: number }
|
|
2626
2582
|
},
|
|
2583
|
+
"/telemetry/v1/common-data": {
|
|
2584
|
+
get: { path: never, params: never, body: never, response: Record<string, string> }
|
|
2585
|
+
},
|
|
2627
2586
|
"/Help": {
|
|
2628
2587
|
post: { path: never, params: { "target"?: string, "format"?: LCUTypes.RemotingHelpFormat }, body: never, response: unknown }
|
|
2629
2588
|
},
|
|
@@ -3030,6 +2989,9 @@ export interface LCUEndpoints {
|
|
|
3030
2989
|
"/lol-gameflow/v2/spectate/launch": {
|
|
3031
2990
|
post: { path: never, params: never, body: LCUTypes.LolGameflowSpectateGameInfoResource, response: unknown }
|
|
3032
2991
|
},
|
|
2992
|
+
"/lol-heartbeat/v1/connection-status": {
|
|
2993
|
+
post: { path: never, params: never, body: never, response: LCUTypes.LolHeartbeatLcdsConnection }
|
|
2994
|
+
},
|
|
3033
2995
|
"/lol-highlights/v1/file-browser/{highlightId}": {
|
|
3034
2996
|
post: { path: [highlightId: number], params: never, body: never, response: unknown }
|
|
3035
2997
|
},
|
|
@@ -3084,6 +3046,9 @@ export interface LCUEndpoints {
|
|
|
3084
3046
|
"/lol-lobby-team-builder/champ-select/v1/session/my-selection/reroll": {
|
|
3085
3047
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3086
3048
|
},
|
|
3049
|
+
"/lol-lobby-team-builder/champ-select/v1/session/quit": {
|
|
3050
|
+
post: { path: never, params: never, body: never, response: unknown }
|
|
3051
|
+
},
|
|
3087
3052
|
"/lol-lobby-team-builder/champ-select/v1/session/swaps/{id}/accept": {
|
|
3088
3053
|
post: { path: [id: number], params: never, body: never, response: unknown }
|
|
3089
3054
|
},
|
|
@@ -3237,7 +3202,7 @@ export interface LCUEndpoints {
|
|
|
3237
3202
|
"/lol-mac-graphics-upgrade/hardware-upgrade-notification/ack": {
|
|
3238
3203
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3239
3204
|
},
|
|
3240
|
-
"/lol-mac-graphics-upgrade/
|
|
3205
|
+
"/lol-mac-graphics-upgrade/supported-hardware-notification/ack": {
|
|
3241
3206
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3242
3207
|
},
|
|
3243
3208
|
"/lol-maps/v1/map": {
|
|
@@ -3270,15 +3235,9 @@ export interface LCUEndpoints {
|
|
|
3270
3235
|
"/lol-nacho/v1/set-active-stores": {
|
|
3271
3236
|
post: { path: never, params: never, body: LCUTypes.LolNachoSetActiveStoresRequest, response: unknown }
|
|
3272
3237
|
},
|
|
3273
|
-
"/lol-nacho/v1/set-current-catalog-item": {
|
|
3274
|
-
post: { path: never, params: never, body: never, response: unknown }
|
|
3275
|
-
},
|
|
3276
3238
|
"/lol-nacho/v1/set-product-id": {
|
|
3277
3239
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3278
3240
|
},
|
|
3279
|
-
"/lol-nacho/v1/set-store-id": {
|
|
3280
|
-
post: { path: never, params: never, body: never, response: unknown }
|
|
3281
|
-
},
|
|
3282
3241
|
"/lol-npe-rewards/v1/challenges/opt": {
|
|
3283
3242
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3284
3243
|
},
|
|
@@ -3675,9 +3634,6 @@ export interface LCUEndpoints {
|
|
|
3675
3634
|
"/lol-lobby/v1/lobby/members/localMember/position-preferences": {
|
|
3676
3635
|
put: { path: never, params: never, body: LCUTypes.LolLobbyLobbyPositionPreferences, response: unknown }
|
|
3677
3636
|
},
|
|
3678
|
-
"/lol-lobby/v1/lobby/members/localMember/quickplayPlayerState": {
|
|
3679
|
-
put: { path: never, params: never, body: string, response: unknown }
|
|
3680
|
-
},
|
|
3681
3637
|
"/lol-lobby/v1/parties/active": {
|
|
3682
3638
|
put: { path: never, params: never, body: number, response: unknown }
|
|
3683
3639
|
},
|
|
@@ -3702,6 +3658,9 @@ export interface LCUEndpoints {
|
|
|
3702
3658
|
"/lol-lobby/v2/lobby/partyType": {
|
|
3703
3659
|
put: { path: never, params: never, body: string, response: unknown }
|
|
3704
3660
|
},
|
|
3661
|
+
"/lol-lobby/v2/lobby/quickplayMemberData": {
|
|
3662
|
+
put: { path: never, params: never, body: Record<string, string>, response: unknown }
|
|
3663
|
+
},
|
|
3705
3664
|
"/lol-lobby/v2/lobby/strawberryMapId": {
|
|
3706
3665
|
put: { path: never, params: never, body: LCUTypes.LolLobbyStrawberryMapUpdateDto, response: unknown }
|
|
3707
3666
|
},
|
|
@@ -3783,9 +3742,6 @@ export interface LCUEndpoints {
|
|
|
3783
3742
|
"/lol-tft-team-planner/v1/sets/save-all": {
|
|
3784
3743
|
put: { path: never, params: never, body: never, response: unknown }
|
|
3785
3744
|
},
|
|
3786
|
-
"/lol-tft-team-planner/v1/team": {
|
|
3787
|
-
put: { path: never, params: never, body: never, response: unknown }
|
|
3788
|
-
},
|
|
3789
3745
|
"/lol-tft/v1/tft_experiment_bucket": {
|
|
3790
3746
|
put: { path: never, params: never, body: number, response: unknown }
|
|
3791
3747
|
},
|
package/dist/lcu-events.d.ts
CHANGED
|
@@ -30,9 +30,13 @@ export interface LCUWebSocketEvents {
|
|
|
30
30
|
"OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
31
31
|
"OnJsonApiEvent_lol-cap-missions_v1_ready": LCUTypes.PluginResourceEvent,
|
|
32
32
|
"OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
|
|
33
|
+
"OnJsonApiEvent_lol-challenges_v1_challenges": LCUTypes.PluginResourceEvent,
|
|
33
34
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
35
|
+
"OnJsonApiEvent_lol-challenges_v1_my-updated-challenges": LCUTypes.PluginResourceEvent,
|
|
36
|
+
"OnJsonApiEvent_lol-challenges_v1_penalty": LCUTypes.PluginResourceEvent,
|
|
34
37
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
35
38
|
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
39
|
+
"OnJsonApiEvent_lol-challenges_v1_updated-challenges": LCUTypes.PluginResourceEvent,
|
|
36
40
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
37
41
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
38
42
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -42,11 +46,21 @@ export interface LCUWebSocketEvents {
|
|
|
42
46
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_session": LCUTypes.PluginResourceEvent,
|
|
43
47
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
44
48
|
"OnJsonApiEvent_lol-champ-select_v1_all-grid-champions": LCUTypes.PluginResourceEvent,
|
|
49
|
+
"OnJsonApiEvent_lol-champ-select_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
50
|
+
"OnJsonApiEvent_lol-champ-select_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
51
|
+
"OnJsonApiEvent_lol-champ-select_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
45
52
|
"OnJsonApiEvent_lol-champ-select_v1_grid-champions": LCUTypes.PluginResourceEvent,
|
|
46
53
|
"OnJsonApiEvent_lol-champ-select_v1_muted-players": LCUTypes.PluginResourceEvent,
|
|
54
|
+
"OnJsonApiEvent_lol-champ-select_v1_pickable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
55
|
+
"OnJsonApiEvent_lol-champ-select_v1_pin-drop-notification": LCUTypes.PluginResourceEvent,
|
|
47
56
|
"OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
|
|
57
|
+
"OnJsonApiEvent_lol-champ-select_v1_sfx-notifications": LCUTypes.PluginResourceEvent,
|
|
58
|
+
"OnJsonApiEvent_lol-champ-select_v1_skin-carousel-skins": LCUTypes.PluginResourceEvent,
|
|
59
|
+
"OnJsonApiEvent_lol-champ-select_v1_skin-selector-info": LCUTypes.PluginResourceEvent,
|
|
60
|
+
"OnJsonApiEvent_lol-champ-select_v1_summoners": LCUTypes.PluginResourceEvent,
|
|
48
61
|
"OnJsonApiEvent_lol-champ-select_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
49
62
|
"OnJsonApiEvent_lol-champion-mastery_v1_local-player": LCUTypes.PluginResourceEvent,
|
|
63
|
+
"OnJsonApiEvent_lol-champion-mastery_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
50
64
|
"OnJsonApiEvent_lol-champion-mastery_v1_ready": LCUTypes.PluginResourceEvent,
|
|
51
65
|
"OnJsonApiEvent_lol-champions_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
52
66
|
"OnJsonApiEvent_lol-champions_v1_owned-champions-minimal": LCUTypes.PluginResourceEvent,
|
|
@@ -58,6 +72,7 @@ export interface LCUWebSocketEvents {
|
|
|
58
72
|
"OnJsonApiEvent_lol-chat_v1_friend-requests": LCUTypes.PluginResourceEvent,
|
|
59
73
|
"OnJsonApiEvent_lol-chat_v1_friends": LCUTypes.PluginResourceEvent,
|
|
60
74
|
"OnJsonApiEvent_lol-chat_v1_me": LCUTypes.PluginResourceEvent,
|
|
75
|
+
"OnJsonApiEvent_lol-chat_v1_player-mutes": LCUTypes.PluginResourceEvent,
|
|
61
76
|
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
62
77
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
63
78
|
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
@@ -76,11 +91,11 @@ export interface LCUWebSocketEvents {
|
|
|
76
91
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
77
92
|
"OnJsonApiEvent_lol-client-config_v3_client-config": LCUTypes.PluginResourceEvent,
|
|
78
93
|
"OnJsonApiEvent_lol-collections_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
79
|
-
"OnJsonApiEvent_lol-content-targeting_v1_filters": LCUTypes.PluginResourceEvent,
|
|
80
94
|
"OnJsonApiEvent_lol-cosmetics_v1_favorites": LCUTypes.PluginResourceEvent,
|
|
81
95
|
"OnJsonApiEvent_lol-cosmetics_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
82
96
|
"OnJsonApiEvent_lol-drops_v1_ready": LCUTypes.PluginResourceEvent,
|
|
83
97
|
"OnJsonApiEvent_lol-dx9-deprecation_needs-hardware-upgrade": LCUTypes.PluginResourceEvent,
|
|
98
|
+
"OnJsonApiEvent_lol-end-of-game_v1_champion-mastery-updates": LCUTypes.PluginResourceEvent,
|
|
84
99
|
"OnJsonApiEvent_lol-end-of-game_v1_eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
85
100
|
"OnJsonApiEvent_lol-end-of-game_v1_gameclient-eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
86
101
|
"OnJsonApiEvent_lol-end-of-game_v1_tft-eog-stats": LCUTypes.PluginResourceEvent,
|
|
@@ -99,6 +114,7 @@ export interface LCUWebSocketEvents {
|
|
|
99
114
|
"OnJsonApiEvent_lol-game-settings_v1_game-settings": LCUTypes.PluginResourceEvent,
|
|
100
115
|
"OnJsonApiEvent_lol-game-settings_v1_input-settings": LCUTypes.PluginResourceEvent,
|
|
101
116
|
"OnJsonApiEvent_lol-game-settings_v1_ready": LCUTypes.PluginResourceEvent,
|
|
117
|
+
"OnJsonApiEvent_lol-gameflow_v1_active-patcher-lock": LCUTypes.PluginResourceEvent,
|
|
102
118
|
"OnJsonApiEvent_lol-gameflow_v1_availability": LCUTypes.PluginResourceEvent,
|
|
103
119
|
"OnJsonApiEvent_lol-gameflow_v1_battle-training": LCUTypes.PluginResourceEvent,
|
|
104
120
|
"OnJsonApiEvent_lol-gameflow_v1_early-exit-notifications": LCUTypes.PluginResourceEvent,
|
|
@@ -112,12 +128,16 @@ export interface LCUWebSocketEvents {
|
|
|
112
128
|
"OnJsonApiEvent_lol-honeyfruit_v1_vng-publisher-settings": LCUTypes.PluginResourceEvent,
|
|
113
129
|
"OnJsonApiEvent_lol-honor-v2_v1_ballot": LCUTypes.PluginResourceEvent,
|
|
114
130
|
"OnJsonApiEvent_lol-honor-v2_v1_config": LCUTypes.PluginResourceEvent,
|
|
131
|
+
"OnJsonApiEvent_lol-honor-v2_v1_late-recognition": LCUTypes.PluginResourceEvent,
|
|
132
|
+
"OnJsonApiEvent_lol-honor-v2_v1_latest-eligible-game": LCUTypes.PluginResourceEvent,
|
|
115
133
|
"OnJsonApiEvent_lol-honor-v2_v1_level-change": LCUTypes.PluginResourceEvent,
|
|
134
|
+
"OnJsonApiEvent_lol-honor-v2_v1_mutual-honor": LCUTypes.PluginResourceEvent,
|
|
116
135
|
"OnJsonApiEvent_lol-honor-v2_v1_profile": LCUTypes.PluginResourceEvent,
|
|
117
136
|
"OnJsonApiEvent_lol-honor-v2_v1_recipients": LCUTypes.PluginResourceEvent,
|
|
118
137
|
"OnJsonApiEvent_lol-honor-v2_v1_recognition": LCUTypes.PluginResourceEvent,
|
|
119
138
|
"OnJsonApiEvent_lol-honor-v2_v1_recognition-history": LCUTypes.PluginResourceEvent,
|
|
120
139
|
"OnJsonApiEvent_lol-honor-v2_v1_team-choices": LCUTypes.PluginResourceEvent,
|
|
140
|
+
"OnJsonApiEvent_lol-honor-v2_v1_vote-completion": LCUTypes.PluginResourceEvent,
|
|
121
141
|
"OnJsonApiEvent_lol-hovercard_v1_friend-info": LCUTypes.PluginResourceEvent,
|
|
122
142
|
"OnJsonApiEvent_lol-hovercard_v1_friend-info-by-summoner": LCUTypes.PluginResourceEvent,
|
|
123
143
|
"OnJsonApiEvent_lol-inventory_v1_initial-configuration-complete": LCUTypes.PluginResourceEvent,
|
|
@@ -138,10 +158,15 @@ export interface LCUWebSocketEvents {
|
|
|
138
158
|
"OnJsonApiEvent_lol-loadouts_v4_loadouts": LCUTypes.PluginResourceEvent,
|
|
139
159
|
"OnJsonApiEvent_lol-lobby-team-builder_champ-select_v1": LCUTypes.PluginResourceEvent,
|
|
140
160
|
"OnJsonApiEvent_lol-lobby-team-builder_v1_matchmaking": LCUTypes.PluginResourceEvent,
|
|
161
|
+
"OnJsonApiEvent_lol-lobby_v1_last-queued-lobby": LCUTypes.PluginResourceEvent,
|
|
141
162
|
"OnJsonApiEvent_lol-lobby_v1_lobby": LCUTypes.PluginResourceEvent,
|
|
163
|
+
"OnJsonApiEvent_lol-lobby_v1_parties": LCUTypes.PluginResourceEvent,
|
|
164
|
+
"OnJsonApiEvent_lol-lobby_v1_party-rewards": LCUTypes.PluginResourceEvent,
|
|
142
165
|
"OnJsonApiEvent_lol-lobby_v2_comms": LCUTypes.PluginResourceEvent,
|
|
143
166
|
"OnJsonApiEvent_lol-lobby_v2_eligibility": LCUTypes.PluginResourceEvent,
|
|
144
167
|
"OnJsonApiEvent_lol-lobby_v2_lobby": LCUTypes.PluginResourceEvent,
|
|
168
|
+
"OnJsonApiEvent_lol-lobby_v2_party": LCUTypes.PluginResourceEvent,
|
|
169
|
+
"OnJsonApiEvent_lol-lobby_v2_party-active": LCUTypes.PluginResourceEvent,
|
|
145
170
|
"OnJsonApiEvent_lol-lock-and-load_v1_home-hubs-waits": LCUTypes.PluginResourceEvent,
|
|
146
171
|
"OnJsonApiEvent_lol-lock-and-load_v1_should-show-progress-bar-text": LCUTypes.PluginResourceEvent,
|
|
147
172
|
"OnJsonApiEvent_lol-lock-and-load_v1_should-wait-for-home-hubs": LCUTypes.PluginResourceEvent,
|
|
@@ -154,6 +179,7 @@ export interface LCUWebSocketEvents {
|
|
|
154
179
|
"OnJsonApiEvent_lol-login_v2_league-session-init-token": LCUTypes.PluginResourceEvent,
|
|
155
180
|
"OnJsonApiEvent_lol-loot_v1_currency-configuration": LCUTypes.PluginResourceEvent,
|
|
156
181
|
"OnJsonApiEvent_lol-loot_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
182
|
+
"OnJsonApiEvent_lol-loot_v1_loot-grants": LCUTypes.PluginResourceEvent,
|
|
157
183
|
"OnJsonApiEvent_lol-loot_v1_milestones": LCUTypes.PluginResourceEvent,
|
|
158
184
|
"OnJsonApiEvent_lol-loot_v1_player-display-categories": LCUTypes.PluginResourceEvent,
|
|
159
185
|
"OnJsonApiEvent_lol-loot_v1_player-loot": LCUTypes.PluginResourceEvent,
|
|
@@ -162,15 +188,21 @@ export interface LCUWebSocketEvents {
|
|
|
162
188
|
"OnJsonApiEvent_lol-loot_v1_recipes": LCUTypes.PluginResourceEvent,
|
|
163
189
|
"OnJsonApiEvent_lol-loot_v2_player-loot-map": LCUTypes.PluginResourceEvent,
|
|
164
190
|
"OnJsonApiEvent_lol-loyalty_v1_status-notification": LCUTypes.PluginResourceEvent,
|
|
165
|
-
"OnJsonApiEvent_lol-mac-graphics-upgrade_notification-type": LCUTypes.PluginResourceEvent,
|
|
166
191
|
"OnJsonApiEvent_lol-maps_v1_maps": LCUTypes.PluginResourceEvent,
|
|
167
192
|
"OnJsonApiEvent_lol-maps_v2_maps": LCUTypes.PluginResourceEvent,
|
|
168
193
|
"OnJsonApiEvent_lol-marketing-preferences_v1_ready": LCUTypes.PluginResourceEvent,
|
|
194
|
+
"OnJsonApiEvent_lol-matchmaking_v1_ready-check": LCUTypes.PluginResourceEvent,
|
|
169
195
|
"OnJsonApiEvent_lol-matchmaking_v1_search": LCUTypes.PluginResourceEvent,
|
|
170
196
|
"OnJsonApiEvent_lol-missions_v1_missions": LCUTypes.PluginResourceEvent,
|
|
171
197
|
"OnJsonApiEvent_lol-missions_v1_series": LCUTypes.PluginResourceEvent,
|
|
198
|
+
"OnJsonApiEvent_lol-nacho_v1_banner": LCUTypes.PluginResourceEvent,
|
|
199
|
+
"OnJsonApiEvent_lol-nacho_v1_banner-odds": LCUTypes.PluginResourceEvent,
|
|
172
200
|
"OnJsonApiEvent_lol-nacho_v1_banners": LCUTypes.PluginResourceEvent,
|
|
201
|
+
"OnJsonApiEvent_lol-nacho_v1_get-active-store-catalog": LCUTypes.PluginResourceEvent,
|
|
202
|
+
"OnJsonApiEvent_lol-nacho_v1_get-current-catalog-item": LCUTypes.PluginResourceEvent,
|
|
173
203
|
"OnJsonApiEvent_lol-nacho_v1_get-store-digests": LCUTypes.PluginResourceEvent,
|
|
204
|
+
"OnJsonApiEvent_lol-nacho_v1_ready": LCUTypes.PluginResourceEvent,
|
|
205
|
+
"OnJsonApiEvent_lol-nacho_v1_roll-purchase-enabled": LCUTypes.PluginResourceEvent,
|
|
174
206
|
"OnJsonApiEvent_lol-npe-tutorial-path_v1_rewards": LCUTypes.PluginResourceEvent,
|
|
175
207
|
"OnJsonApiEvent_lol-npe-tutorial-path_v1_settings": LCUTypes.PluginResourceEvent,
|
|
176
208
|
"OnJsonApiEvent_lol-npe-tutorial-path_v1_tutorials": LCUTypes.PluginResourceEvent,
|
|
@@ -440,6 +472,7 @@ export interface LCUWebSocketEvents {
|
|
|
440
472
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ULTBOOK": LCUTypes.PluginResourceEvent,
|
|
441
473
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_URF": LCUTypes.PluginResourceEvent,
|
|
442
474
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_URF_BOT": LCUTypes.PluginResourceEvent,
|
|
475
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_URF_CLASH": LCUTypes.PluginResourceEvent,
|
|
443
476
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DiscordRP_IsEnabled": LCUTypes.PluginResourceEvent,
|
|
444
477
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DockedPrompt": LCUTypes.PluginResourceEvent,
|
|
445
478
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DockedPrompt_EnabledNewDockedPromptRenderer": LCUTypes.PluginResourceEvent,
|
|
@@ -685,7 +718,6 @@ export interface LCUWebSocketEvents {
|
|
|
685
718
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLeagueSpectate": LCUTypes.PluginResourceEvent,
|
|
686
719
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLeagueSpectate_Enabled": LCUTypes.PluginResourceEvent,
|
|
687
720
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLevelUp": LCUTypes.PluginResourceEvent,
|
|
688
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLevelUp_EventEnabled": LCUTypes.PluginResourceEvent,
|
|
689
721
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLevelUp_ModalNotificationDisabled": LCUTypes.PluginResourceEvent,
|
|
690
722
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby": LCUTypes.PluginResourceEvent,
|
|
691
723
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuLobby_AutoGrantInviteEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -1195,6 +1227,7 @@ export interface LCUWebSocketEvents {
|
|
|
1195
1227
|
"OnJsonApiEvent_lol-player-behavior_v2_reporter-feedback": LCUTypes.PluginResourceEvent,
|
|
1196
1228
|
"OnJsonApiEvent_lol-player-behavior_v3_reform-cards": LCUTypes.PluginResourceEvent,
|
|
1197
1229
|
"OnJsonApiEvent_lol-player-preferences_v1_player-preferences-ready": LCUTypes.PluginResourceEvent,
|
|
1230
|
+
"OnJsonApiEvent_lol-player-report-sender_v1_in-game-reports": LCUTypes.PluginResourceEvent,
|
|
1198
1231
|
"OnJsonApiEvent_lol-pre-end-of-game_v1_currentSequenceEvent": LCUTypes.PluginResourceEvent,
|
|
1199
1232
|
"OnJsonApiEvent_lol-premade-voice_v1_availability": LCUTypes.PluginResourceEvent,
|
|
1200
1233
|
"OnJsonApiEvent_lol-premade-voice_v1_capturedevices": LCUTypes.PluginResourceEvent,
|
|
@@ -1209,6 +1242,7 @@ export interface LCUWebSocketEvents {
|
|
|
1209
1242
|
"OnJsonApiEvent_lol-purchase-widget_v1_configuration": LCUTypes.PluginResourceEvent,
|
|
1210
1243
|
"OnJsonApiEvent_lol-purchase-widget_v3_purchase-offer-order-statuses": LCUTypes.PluginResourceEvent,
|
|
1211
1244
|
"OnJsonApiEvent_lol-ranked_v1_challenger-ladders-enabled": LCUTypes.PluginResourceEvent,
|
|
1245
|
+
"OnJsonApiEvent_lol-ranked_v1_current-lp-change-notification": LCUTypes.PluginResourceEvent,
|
|
1212
1246
|
"OnJsonApiEvent_lol-ranked_v1_current-ranked-stats": LCUTypes.PluginResourceEvent,
|
|
1213
1247
|
"OnJsonApiEvent_lol-ranked_v1_eos-rewards": LCUTypes.PluginResourceEvent,
|
|
1214
1248
|
"OnJsonApiEvent_lol-ranked_v1_global-notifications": LCUTypes.PluginResourceEvent,
|
|
@@ -1234,7 +1268,10 @@ export interface LCUWebSocketEvents {
|
|
|
1234
1268
|
"OnJsonApiEvent_lol-settings_v2_local": LCUTypes.PluginResourceEvent,
|
|
1235
1269
|
"OnJsonApiEvent_lol-settings_v2_ready": LCUTypes.PluginResourceEvent,
|
|
1236
1270
|
"OnJsonApiEvent_lol-shutdown_v1_notification": LCUTypes.PluginResourceEvent,
|
|
1271
|
+
"OnJsonApiEvent_lol-simple-dialog-messages_v1_messages": LCUTypes.PluginResourceEvent,
|
|
1237
1272
|
"OnJsonApiEvent_lol-spectator_v1_spectate": LCUTypes.PluginResourceEvent,
|
|
1273
|
+
"OnJsonApiEvent_lol-statstones_v1_eog-notifications": LCUTypes.PluginResourceEvent,
|
|
1274
|
+
"OnJsonApiEvent_lol-statstones_v1_vignette-notifications": LCUTypes.PluginResourceEvent,
|
|
1238
1275
|
"OnJsonApiEvent_lol-statstones_v2_player-summary-self": LCUTypes.PluginResourceEvent,
|
|
1239
1276
|
"OnJsonApiEvent_lol-store_v1_getStoreUrl": LCUTypes.PluginResourceEvent,
|
|
1240
1277
|
"OnJsonApiEvent_lol-store_v1_store-ready": LCUTypes.PluginResourceEvent,
|
|
@@ -1244,15 +1281,18 @@ export interface LCUWebSocketEvents {
|
|
|
1244
1281
|
"OnJsonApiEvent_lol-summoner_v1_player-name-mode": LCUTypes.PluginResourceEvent,
|
|
1245
1282
|
"OnJsonApiEvent_lol-summoner_v1_status": LCUTypes.PluginResourceEvent,
|
|
1246
1283
|
"OnJsonApiEvent_lol-summoner_v1_summoner-requests-ready": LCUTypes.PluginResourceEvent,
|
|
1284
|
+
"OnJsonApiEvent_lol-summoner_v1_summoners": LCUTypes.PluginResourceEvent,
|
|
1247
1285
|
"OnJsonApiEvent_lol-tastes_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1286
|
+
"OnJsonApiEvent_lol-tft-pass_v1_battle-pass": LCUTypes.PluginResourceEvent,
|
|
1248
1287
|
"OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
|
|
1288
|
+
"OnJsonApiEvent_lol-tft-pass_v1_event-pass": LCUTypes.PluginResourceEvent,
|
|
1249
1289
|
"OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1250
1290
|
"OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,
|
|
1291
|
+
"OnJsonApiEvent_lol-tft-skill-tree_v1_skill-tree": LCUTypes.PluginResourceEvent,
|
|
1251
1292
|
"OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
|
|
1252
1293
|
"OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
|
|
1253
1294
|
"OnJsonApiEvent_lol-tft-team-planner_v1_previous-context": LCUTypes.PluginResourceEvent,
|
|
1254
1295
|
"OnJsonApiEvent_lol-tft-team-planner_v1_set": LCUTypes.PluginResourceEvent,
|
|
1255
|
-
"OnJsonApiEvent_lol-tft-team-planner_v1_team": LCUTypes.PluginResourceEvent,
|
|
1256
1296
|
"OnJsonApiEvent_lol-tft-team-planner_v2_reminders": LCUTypes.PluginResourceEvent,
|
|
1257
1297
|
"OnJsonApiEvent_lol-tft-troves_v1_config": LCUTypes.PluginResourceEvent,
|
|
1258
1298
|
"OnJsonApiEvent_lol-tft-troves_v1_milestones-group-id": LCUTypes.PluginResourceEvent,
|
|
@@ -1261,6 +1301,7 @@ export interface LCUWebSocketEvents {
|
|
|
1261
1301
|
"OnJsonApiEvent_lol-vanguard_v1_service-session-check-failure": LCUTypes.PluginResourceEvent,
|
|
1262
1302
|
"OnJsonApiEvent_lol-vanguard_v1_session": LCUTypes.PluginResourceEvent,
|
|
1263
1303
|
"OnJsonApiEvent_lol-yourshop_v1_modal": LCUTypes.PluginResourceEvent,
|
|
1304
|
+
"OnJsonApiEvent_lol-yourshop_v1_offers": LCUTypes.PluginResourceEvent,
|
|
1264
1305
|
"OnJsonApiEvent_lol-yourshop_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1265
1306
|
"OnJsonApiEvent_lol-yourshop_v1_status": LCUTypes.PluginResourceEvent,
|
|
1266
1307
|
"OnJsonApiEvent_loyalty_v1_loyalty-resource": LCUTypes.PluginResourceEvent,
|