@hasagi/types 14.17.1 → 14.24.2
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/CODEOWNERS +2 -0
- package/LICENSE +9 -9
- package/README.md +14 -8
- package/{index.d.ts → dist/index.d.ts} +2 -2
- package/{lcu-endpoints.d.ts → dist/lcu-endpoints.d.ts} +214 -29
- package/{lcu-events.d.ts → dist/lcu-events.d.ts} +19 -8
- package/{lcu-types.d.ts → dist/lcu-types.d.ts} +1913 -516
- package/package.json +8 -8
package/CODEOWNERS
ADDED
package/LICENSE
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright 2024 dysolix
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
-
|
|
7
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
-
|
|
9
|
-
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright 2024 dysolix
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
-
# hasagi-types
|
|
2
|
-
|
|
3
|
-
This repository hosts the auto-generated `swagger.json` schema and TypeScript types for the League Client Update (LCU) API.
|
|
4
|
-
|
|
5
|
-
## npm package
|
|
6
|
-
The types are available in the npm package `@hasagi/types`.
|
|
7
|
-
```shell
|
|
8
|
-
npm install @hasagi/types
|
|
1
|
+
# hasagi-types
|
|
2
|
+
|
|
3
|
+
This repository hosts the auto-generated `swagger.json` schema and TypeScript types for the League Client Update (LCU) API.
|
|
4
|
+
|
|
5
|
+
## npm package
|
|
6
|
+
The types are available in the npm package `@hasagi/types`.
|
|
7
|
+
```shell
|
|
8
|
+
npm install @hasagi/types
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Updating the types
|
|
12
|
+
If you cloned the repository and want to update the types you can run this command while the League client is open.
|
|
13
|
+
```shell
|
|
14
|
+
npm run update-types
|
|
9
15
|
```
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export type { LCUEndpoint, LCUEndpointBodyType, LCUEndpointResponseType, LCUEndpoints, HttpMethod, EndpointsWithMethod } from "./lcu-endpoints";
|
|
2
|
-
export type * as LCUTypes from "./lcu-types";
|
|
1
|
+
export type { LCUEndpoint, LCUEndpointBodyType, LCUEndpointResponseType, LCUEndpoints, HttpMethod, EndpointsWithMethod } from "./lcu-endpoints";
|
|
2
|
+
export type * as LCUTypes from "./lcu-types";
|
|
3
3
|
export type { LCUWebSocketEvents } from "./lcu-events";
|
|
@@ -104,10 +104,9 @@ export interface LCUEndpoints {
|
|
|
104
104
|
put: { path: [id: number], params: never, body: LCUTypes.LolHighlightsHighlight, response: LCUTypes.LolHighlightsHighlight }
|
|
105
105
|
delete: { path: [id: number], params: never, body: never, response: LCUTypes.LolHighlightsHighlight }
|
|
106
106
|
},
|
|
107
|
-
"/lol-
|
|
108
|
-
get: { path: never, params: never, body: never, response:
|
|
109
|
-
|
|
110
|
-
delete: { path: never, params: never, body: never, response: unknown }
|
|
107
|
+
"/lol-honor-v2/v1/ballot": {
|
|
108
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolHonorV2Ballot }
|
|
109
|
+
delete: { path: never, params: never, body: never, response: void }
|
|
111
110
|
},
|
|
112
111
|
"/lol-leaver-buster/v1/notifications/{id}": {
|
|
113
112
|
get: { path: [id: number], params: never, body: never, response: LCUTypes.LolLeaverBusterLeaverBusterNotificationResource }
|
|
@@ -234,6 +233,10 @@ export interface LCUEndpoints {
|
|
|
234
233
|
"/lol-suggested-players/v1/suggested-players/{summonerId}": {
|
|
235
234
|
delete: { path: [summonerId: number], params: never, body: never, response: unknown }
|
|
236
235
|
},
|
|
236
|
+
"/lol-tft-team-planner/v1/sets/{set}/reminders/{team}": {
|
|
237
|
+
patch: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
238
|
+
delete: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
239
|
+
},
|
|
237
240
|
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}": {
|
|
238
241
|
post: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
239
242
|
delete: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
@@ -386,6 +389,21 @@ export interface LCUEndpoints {
|
|
|
386
389
|
"/lol-active-boosts/v1/active-boosts": {
|
|
387
390
|
get: { path: never, params: never, body: never, response: LCUTypes.LolActiveBoostsActiveBoosts }
|
|
388
391
|
},
|
|
392
|
+
"/lol-activity-center/v1/config-data": {
|
|
393
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolActivityCenterConfigData }
|
|
394
|
+
},
|
|
395
|
+
"/lol-activity-center/v1/content/{pageName}": {
|
|
396
|
+
get: { path: [pageName: string], params: never, body: never, response: unknown }
|
|
397
|
+
},
|
|
398
|
+
"/lol-activity-center/v1/content/client-nav": {
|
|
399
|
+
get: { path: never, params: never, body: never, response: unknown }
|
|
400
|
+
},
|
|
401
|
+
"/lol-activity-center/v1/overrides": {
|
|
402
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolActivityCenterTencentOverrides }
|
|
403
|
+
},
|
|
404
|
+
"/lol-activity-center/v1/ready": {
|
|
405
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
406
|
+
},
|
|
389
407
|
"/lol-anti-addiction/v1/anti-addiction-token": {
|
|
390
408
|
get: { path: never, params: never, body: never, response: LCUTypes.LolAntiAddictionAntiAddictionToken }
|
|
391
409
|
},
|
|
@@ -922,8 +940,11 @@ export interface LCUEndpoints {
|
|
|
922
940
|
"/lol-event-hub/v1/events/{eventId}/reward-track/bonus-progress": {
|
|
923
941
|
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubRewardTrackProgress }
|
|
924
942
|
},
|
|
943
|
+
"/lol-event-hub/v1/events/{eventId}/reward-track/counter": {
|
|
944
|
+
get: { path: [eventId: string], params: { "beforeEpoch": number }, body: never, response: number }
|
|
945
|
+
},
|
|
925
946
|
"/lol-event-hub/v1/events/{eventId}/reward-track/failure": {
|
|
926
|
-
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.
|
|
947
|
+
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubRewardTrackError }
|
|
927
948
|
},
|
|
928
949
|
"/lol-event-hub/v1/events/{eventId}/reward-track/items": {
|
|
929
950
|
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubRewardTrackItem[] }
|
|
@@ -1099,23 +1120,10 @@ export interface LCUEndpoints {
|
|
|
1099
1120
|
"/lol-highlights/v1/highlights-folder-path/default": {
|
|
1100
1121
|
get: { path: never, params: never, body: never, response: string }
|
|
1101
1122
|
},
|
|
1102
|
-
"/lol-honeyfruit/v1/account-claim/account-status/{puuid}": {
|
|
1103
|
-
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolHoneyfruitAccountClaimStatus }
|
|
1104
|
-
},
|
|
1105
|
-
"/lol-honeyfruit/v1/account-claim/auto-dismiss": {
|
|
1106
|
-
get: { path: never, params: never, body: never, response: boolean }
|
|
1107
|
-
put: { path: never, params: never, body: boolean, response: unknown }
|
|
1108
|
-
},
|
|
1109
|
-
"/lol-honeyfruit/v1/linking-settings-button-available": {
|
|
1110
|
-
get: { path: never, params: never, body: never, response: boolean }
|
|
1111
|
-
},
|
|
1112
1123
|
"/lol-honeyfruit/v1/vng-publisher-settings": {
|
|
1113
|
-
get: { path: never, params: never, body: never, response: LCUTypes.
|
|
1124
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolSettingsHoneyfruitVNGPublisherSettings }
|
|
1114
1125
|
post: { path: never, params: never, body: never, response: unknown }
|
|
1115
1126
|
},
|
|
1116
|
-
"/lol-honor-v2/v1/ballot": {
|
|
1117
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolHonorV2Ballot }
|
|
1118
|
-
},
|
|
1119
1127
|
"/lol-honor-v2/v1/config": {
|
|
1120
1128
|
get: { path: never, params: never, body: never, response: LCUTypes.LolHonorV2HonorConfig }
|
|
1121
1129
|
},
|
|
@@ -1128,6 +1136,9 @@ export interface LCUEndpoints {
|
|
|
1128
1136
|
"/lol-honor-v2/v1/level-change": {
|
|
1129
1137
|
get: { path: never, params: never, body: never, response: LCUTypes.LolHonorV2VendedHonorChange }
|
|
1130
1138
|
},
|
|
1139
|
+
"/lol-honor-v2/v1/level-change-notifications": {
|
|
1140
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolHonorV2Mail[] }
|
|
1141
|
+
},
|
|
1131
1142
|
"/lol-honor-v2/v1/mutual-honor": {
|
|
1132
1143
|
get: { path: never, params: never, body: never, response: LCUTypes.LolHonorV2MutualHonor }
|
|
1133
1144
|
},
|
|
@@ -1241,6 +1252,33 @@ export interface LCUEndpoints {
|
|
|
1241
1252
|
"/lol-kr-shutdown-law/v1/status": {
|
|
1242
1253
|
get: { path: never, params: never, body: never, response: LCUTypes.LolKrShutdownLawAllQueueShutdownStatus }
|
|
1243
1254
|
},
|
|
1255
|
+
"/lol-leaderboard/v1/name/{name}/currentSeason": {
|
|
1256
|
+
get: { path: [name: string], params: never, body: never, response: string }
|
|
1257
|
+
},
|
|
1258
|
+
"/lol-leaderboard/v1/name/{name}/groupings": {
|
|
1259
|
+
get: { path: [name: string], params: never, body: never, response: string[] }
|
|
1260
|
+
},
|
|
1261
|
+
"/lol-leaderboard/v1/name/{name}/pageSize": {
|
|
1262
|
+
get: { path: [name: string], params: never, body: never, response: number }
|
|
1263
|
+
},
|
|
1264
|
+
"/lol-leaderboard/v1/name/{name}/season/{season}/grouping/{grouping}": {
|
|
1265
|
+
get: { path: [name: string, season: string, grouping: string], params: { "startRank": number, "endRank": number }, body: never, response: LCUTypes.LolLeaderboardLeaderboardPageResponse }
|
|
1266
|
+
},
|
|
1267
|
+
"/lol-leaderboard/v1/name/{name}/season/{season}/grouping/{grouping}/entry-ranking/{entityId}": {
|
|
1268
|
+
get: { path: [name: string, season: string, grouping: string, entityId: string], params: never, body: never, response: LCUTypes.LolLeaderboardLeaderboardPlayerRanking }
|
|
1269
|
+
},
|
|
1270
|
+
"/lol-leaderboard/v1/name/{name}/season/{season}/grouping/{grouping}/jump-to-entry/{entityId}": {
|
|
1271
|
+
get: { path: [name: string, season: string, grouping: string, entityId: string], params: { "pageSize": number }, body: never, response: LCUTypes.LolLeaderboardLeaderboardPageResponse }
|
|
1272
|
+
},
|
|
1273
|
+
"/lol-leaderboard/v1/name/{name}/season/{season}/grouping/{grouping}/multipage": {
|
|
1274
|
+
get: { path: [name: string, season: string, grouping: string], params: { "startPage": number, "endPage": number, "pageSize": number }, body: never, response: LCUTypes.LolLeaderboardLeaderboardPageResponse }
|
|
1275
|
+
},
|
|
1276
|
+
"/lol-leaderboard/v1/name/{name}/timer": {
|
|
1277
|
+
get: { path: [name: string], params: never, body: never, response: number }
|
|
1278
|
+
},
|
|
1279
|
+
"/lol-leaderboard/v1/ready": {
|
|
1280
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1281
|
+
},
|
|
1244
1282
|
"/lol-league-session/v1/league-session-token": {
|
|
1245
1283
|
get: { path: never, params: never, body: never, response: string }
|
|
1246
1284
|
},
|
|
@@ -1280,6 +1318,9 @@ export interface LCUEndpoints {
|
|
|
1280
1318
|
"/lol-lobby-team-builder/champ-select/v1/bannable-champion-ids": {
|
|
1281
1319
|
get: { path: never, params: never, body: never, response: number[] }
|
|
1282
1320
|
},
|
|
1321
|
+
"/lol-lobby-team-builder/champ-select/v1/crowd-favorte-champion-list": {
|
|
1322
|
+
get: { path: never, params: never, body: never, response: number[] }
|
|
1323
|
+
},
|
|
1283
1324
|
"/lol-lobby-team-builder/champ-select/v1/current-champion": {
|
|
1284
1325
|
get: { path: never, params: never, body: never, response: number }
|
|
1285
1326
|
},
|
|
@@ -1362,9 +1403,6 @@ export interface LCUEndpoints {
|
|
|
1362
1403
|
get: { path: never, params: never, body: never, response: LCUTypes.LolLobbyQuickPlayPresetSlotDto[] }
|
|
1363
1404
|
put: { path: never, params: never, body: LCUTypes.LolLobbyQuickPlayPresetSlotDto[], response: unknown }
|
|
1364
1405
|
},
|
|
1365
|
-
"/lol-lobby/v1/lobby/tft-ranked-history": {
|
|
1366
|
-
get: { path: never, params: never, body: never, response: boolean }
|
|
1367
|
-
},
|
|
1368
1406
|
"/lol-lobby/v1/parties/gamemode": {
|
|
1369
1407
|
get: { path: never, params: never, body: never, response: LCUTypes.LolLobbyGameModeDto }
|
|
1370
1408
|
},
|
|
@@ -1418,6 +1456,9 @@ export interface LCUEndpoints {
|
|
|
1418
1456
|
"/lol-lobby/v2/registration-status": {
|
|
1419
1457
|
get: { path: never, params: never, body: never, response: unknown }
|
|
1420
1458
|
},
|
|
1459
|
+
"/lol-lock-and-load/v1/home-hubs-waits": {
|
|
1460
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolLockAndLoadHomeHubsWaits }
|
|
1461
|
+
},
|
|
1421
1462
|
"/lol-lock-and-load/v1/should-show-progress-bar-text": {
|
|
1422
1463
|
get: { path: never, params: never, body: never, response: boolean }
|
|
1423
1464
|
},
|
|
@@ -1526,6 +1567,12 @@ export interface LCUEndpoints {
|
|
|
1526
1567
|
"/lol-loyalty/v1/status-notification": {
|
|
1527
1568
|
get: { path: never, params: never, body: never, response: LCUTypes.LolLoyaltyLoyaltyStatusNotification }
|
|
1528
1569
|
},
|
|
1570
|
+
"/lol-mac-graphics-upgrade/needs-hardware-upgrade": {
|
|
1571
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1572
|
+
},
|
|
1573
|
+
"/lol-mac-graphics-upgrade/notification-type": {
|
|
1574
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType }
|
|
1575
|
+
},
|
|
1529
1576
|
"/lol-maps/v1/map/{id}": {
|
|
1530
1577
|
get: { path: [id: number], params: never, body: never, response: LCUTypes.LolMapsMaps }
|
|
1531
1578
|
},
|
|
@@ -1602,9 +1649,40 @@ export interface LCUEndpoints {
|
|
|
1602
1649
|
"/lol-missions/v1/series": {
|
|
1603
1650
|
get: { path: never, params: never, body: never, response: LCUTypes.SeriesDTO[] }
|
|
1604
1651
|
},
|
|
1652
|
+
"/lol-nacho/v1/banner-odds": {
|
|
1653
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoBannerOddsInfo }
|
|
1654
|
+
},
|
|
1655
|
+
"/lol-nacho/v1/banners": {
|
|
1656
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoNachoBannersResponse[] }
|
|
1657
|
+
},
|
|
1658
|
+
"/lol-nacho/v1/get-active-store-catalog": {
|
|
1659
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoShoppeCatalogEntry[] }
|
|
1660
|
+
},
|
|
1661
|
+
"/lol-nacho/v1/get-current-catalog-item": {
|
|
1662
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoShoppeCatalogEntry }
|
|
1663
|
+
},
|
|
1664
|
+
"/lol-nacho/v1/get-store-digests": {
|
|
1665
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoStoreDigests }
|
|
1666
|
+
},
|
|
1667
|
+
"/lol-nacho/v1/mock-roll-rewards": {
|
|
1668
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoNachoPurchaseResponse }
|
|
1669
|
+
post: { path: never, params: never, body: LCUTypes.LolNachoFinalPurchaseUnitDto[], response: void }
|
|
1670
|
+
},
|
|
1671
|
+
"/lol-nacho/v1/pity-counter": {
|
|
1672
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoCapCounterData }
|
|
1673
|
+
},
|
|
1674
|
+
"/lol-nacho/v1/purchases/{purchaseId}": {
|
|
1675
|
+
get: { path: [purchaseId: string], params: never, body: never, response: LCUTypes.LolNachoNachoPurchaseResponse }
|
|
1676
|
+
},
|
|
1677
|
+
"/lol-nacho/v1/roll-purchase-enabled": {
|
|
1678
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1679
|
+
},
|
|
1605
1680
|
"/lol-npe-rewards/v1/challenges/progress": {
|
|
1606
1681
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNpeRewardsChallengesProgress }
|
|
1607
1682
|
},
|
|
1683
|
+
"/lol-npe-rewards/v1/get_poro_experiments": {
|
|
1684
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNpeRewardsPoroExperimentData }
|
|
1685
|
+
},
|
|
1608
1686
|
"/lol-npe-rewards/v1/level-rewards": {
|
|
1609
1687
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNpeRewardsRewardSeries }
|
|
1610
1688
|
},
|
|
@@ -1627,6 +1705,12 @@ export interface LCUEndpoints {
|
|
|
1627
1705
|
"/lol-npe-tutorial-path/v1/tutorials": {
|
|
1628
1706
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNpeTutorialPathTutorial[] }
|
|
1629
1707
|
},
|
|
1708
|
+
"/lol-objectives/v1/missions-by-tag": {
|
|
1709
|
+
get: { path: never, params: { "tags": string[] }, body: never, response: Record<string, LCUTypes.LolObjectivesUIMissions> }
|
|
1710
|
+
},
|
|
1711
|
+
"/lol-objectives/v1/objectives/{gameType}": {
|
|
1712
|
+
get: { path: [gameType: string], params: never, body: never, response: LCUTypes.LolObjectivesUIObjectivesGroup[] }
|
|
1713
|
+
},
|
|
1630
1714
|
"/lol-patch/v1/checking-enabled": {
|
|
1631
1715
|
get: { path: never, params: never, body: never, response: boolean }
|
|
1632
1716
|
},
|
|
@@ -1924,6 +2008,30 @@ export interface LCUEndpoints {
|
|
|
1924
2008
|
"/lol-replays/v1/rofls/path/default": {
|
|
1925
2009
|
get: { path: never, params: never, body: never, response: string }
|
|
1926
2010
|
},
|
|
2011
|
+
"/lol-reward-track/{progressionGroupId}/reward-track/bonus-items": {
|
|
2012
|
+
get: { path: [progressionGroupId: string], params: never, body: never, response: LCUTypes.LolRewardTrackRewardTrackItem[] }
|
|
2013
|
+
},
|
|
2014
|
+
"/lol-reward-track/{progressionGroupId}/reward-track/bonus-progress": {
|
|
2015
|
+
get: { path: [progressionGroupId: string], params: never, body: never, response: LCUTypes.LolRewardTrackRewardTrackProgress }
|
|
2016
|
+
},
|
|
2017
|
+
"/lol-reward-track/{progressionGroupId}/reward-track/failure": {
|
|
2018
|
+
get: { path: [progressionGroupId: string], params: never, body: never, response: LCUTypes.LolRewardTrackRewardTrackError }
|
|
2019
|
+
},
|
|
2020
|
+
"/lol-reward-track/{progressionGroupId}/reward-track/items": {
|
|
2021
|
+
get: { path: [progressionGroupId: string], params: never, body: never, response: LCUTypes.LolRewardTrackRewardTrackItem[] }
|
|
2022
|
+
},
|
|
2023
|
+
"/lol-reward-track/{progressionGroupId}/reward-track/progress": {
|
|
2024
|
+
get: { path: [progressionGroupId: string], params: never, body: never, response: LCUTypes.LolRewardTrackRewardTrackProgress }
|
|
2025
|
+
},
|
|
2026
|
+
"/lol-reward-track/{progressionGroupId}/reward-track/unclaimed-rewards": {
|
|
2027
|
+
get: { path: [progressionGroupId: string], params: never, body: never, response: LCUTypes.LolRewardTrackUnclaimedRewardsUIData }
|
|
2028
|
+
},
|
|
2029
|
+
"/lol-reward-track/{progressionGroupId}/reward-track/xp": {
|
|
2030
|
+
get: { path: [progressionGroupId: string], params: never, body: never, response: LCUTypes.LolRewardTrackRewardTrackXP }
|
|
2031
|
+
},
|
|
2032
|
+
"/lol-reward-track/register/{progressionGroupId}": {
|
|
2033
|
+
get: { path: [progressionGroupId: string], params: never, body: never, response: void }
|
|
2034
|
+
},
|
|
1927
2035
|
"/lol-rewards/v1/grants": {
|
|
1928
2036
|
get: { path: never, params: { "status"?: LCUTypes.LolRewardsGrantStatus }, body: never, response: LCUTypes.LolRewardsRewardGrant[] }
|
|
1929
2037
|
},
|
|
@@ -1964,6 +2072,9 @@ export interface LCUEndpoints {
|
|
|
1964
2072
|
"/lol-seasons/v1/season/recent-final-split": {
|
|
1965
2073
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSeasonsAllSeasonsProduct }
|
|
1966
2074
|
},
|
|
2075
|
+
"/lol-seasons/v1/season/should-ac-refresh": {
|
|
2076
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
2077
|
+
},
|
|
1967
2078
|
"/lol-service-status/v1/lcu-status": {
|
|
1968
2079
|
get: { path: never, params: never, body: never, response: LCUTypes.LolServiceStatusServiceStatusResource }
|
|
1969
2080
|
},
|
|
@@ -2218,6 +2329,24 @@ export interface LCUEndpoints {
|
|
|
2218
2329
|
"/lol-tft-pass/v1/skill-tree-pass": {
|
|
2219
2330
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass }
|
|
2220
2331
|
},
|
|
2332
|
+
"/lol-tft-skill-tree/v1/enabled": {
|
|
2333
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
2334
|
+
},
|
|
2335
|
+
"/lol-tft-skill-tree/v1/player-progression": {
|
|
2336
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftSkillTreeEventSkillPlayerProgression }
|
|
2337
|
+
},
|
|
2338
|
+
"/lol-tft-skill-tree/v1/ready": {
|
|
2339
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
2340
|
+
},
|
|
2341
|
+
"/lol-tft-skill-tree/v1/skill/{skillId}": {
|
|
2342
|
+
get: { path: [skillId: number], params: never, body: never, response: LCUTypes.LolTftSkillTreeEventSkill }
|
|
2343
|
+
},
|
|
2344
|
+
"/lol-tft-skill-tree/v1/skill-tree": {
|
|
2345
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftSkillTreeEventSkillTreeData }
|
|
2346
|
+
},
|
|
2347
|
+
"/lol-tft-skill-tree/v1/skill-tree-rank/{rank}": {
|
|
2348
|
+
get: { path: [rank: number], params: never, body: never, response: LCUTypes.LolTftSkillTreeEventSkillTreeRank }
|
|
2349
|
+
},
|
|
2221
2350
|
"/lol-tft-team-planner/v1/config": {
|
|
2222
2351
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTeamPlannerTFTTeamPlannerConfig }
|
|
2223
2352
|
},
|
|
@@ -2225,9 +2354,17 @@ export interface LCUEndpoints {
|
|
|
2225
2354
|
get: { path: never, params: never, body: never, response: boolean }
|
|
2226
2355
|
patch: { path: never, params: never, body: boolean, response: unknown }
|
|
2227
2356
|
},
|
|
2357
|
+
"/lol-tft-team-planner/v1/previous-context": {
|
|
2358
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTeamPlannerPreviouslyUsedContext }
|
|
2359
|
+
put: { path: never, params: never, body: LCUTypes.LolTftTeamPlannerPreviouslyUsedContext, response: unknown }
|
|
2360
|
+
},
|
|
2228
2361
|
"/lol-tft-team-planner/v1/sets/dirty": {
|
|
2229
2362
|
get: { path: never, params: never, body: never, response: Record<string, LCUTypes.LolTftTeamPlannerTeamsForSet> }
|
|
2230
2363
|
},
|
|
2364
|
+
"/lol-tft-team-planner/v1/sort-option": {
|
|
2365
|
+
get: { path: never, params: never, body: never, response: number }
|
|
2366
|
+
patch: { path: never, params: never, body: number, response: unknown }
|
|
2367
|
+
},
|
|
2231
2368
|
"/lol-tft-team-planner/v1/team/local": {
|
|
2232
2369
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTeamPlannerTeamSettings }
|
|
2233
2370
|
},
|
|
@@ -2236,8 +2373,7 @@ export interface LCUEndpoints {
|
|
|
2236
2373
|
patch: { path: never, params: never, body: boolean, response: unknown }
|
|
2237
2374
|
},
|
|
2238
2375
|
"/lol-tft-team-planner/v2/reminders": {
|
|
2239
|
-
get: { path: never, params: never, body: never, response: string }
|
|
2240
|
-
patch: { path: never, params: never, body: string, response: unknown }
|
|
2376
|
+
get: { path: never, params: never, body: never, response: string[] }
|
|
2241
2377
|
},
|
|
2242
2378
|
"/lol-tft-troves/v1/banners": {
|
|
2243
2379
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTrovesTrovesBanner[] }
|
|
@@ -2414,6 +2550,10 @@ export interface LCUEndpoints {
|
|
|
2414
2550
|
"/riotclient/auth-token": {
|
|
2415
2551
|
get: { path: never, params: never, body: never, response: string }
|
|
2416
2552
|
},
|
|
2553
|
+
"/riotclient/clipboard": {
|
|
2554
|
+
get: { path: never, params: never, body: never, response: string }
|
|
2555
|
+
post: { path: never, params: never, body: string, response: boolean }
|
|
2556
|
+
},
|
|
2417
2557
|
"/riotclient/command-line-args": {
|
|
2418
2558
|
get: { path: never, params: never, body: never, response: string[] }
|
|
2419
2559
|
},
|
|
@@ -2537,11 +2677,14 @@ export interface LCUEndpoints {
|
|
|
2537
2677
|
"/lol-account-verification/v1/sendDeactivationPin": {
|
|
2538
2678
|
post: { path: never, params: never, body: void, response: void }
|
|
2539
2679
|
},
|
|
2680
|
+
"/lol-activity-center/v1/clear-cache": {
|
|
2681
|
+
post: { path: never, params: never, body: never, response: void }
|
|
2682
|
+
},
|
|
2540
2683
|
"/lol-challenges/v1/ack-challenge-update/{id}": {
|
|
2541
2684
|
post: { path: [id: number], params: never, body: never, response: void }
|
|
2542
2685
|
},
|
|
2543
|
-
"/lol-challenges/v1/rsbot-challenges": {
|
|
2544
|
-
post: { path:
|
|
2686
|
+
"/lol-challenges/v1/rsbot-challenges/{gameId}": {
|
|
2687
|
+
post: { path: [gameId: number], params: never, body: never, response: Record<string, LCUTypes.LolChallengesUIChallenge> }
|
|
2545
2688
|
},
|
|
2546
2689
|
"/lol-challenges/v1/update-player-preferences": {
|
|
2547
2690
|
post: { path: never, params: never, body: LCUTypes.LolChallengesChallengesPlayerPreferences, response: void }
|
|
@@ -2855,15 +2998,15 @@ export interface LCUEndpoints {
|
|
|
2855
2998
|
"/lol-highlights/v1/file-browser/{highlightId}": {
|
|
2856
2999
|
post: { path: [highlightId: number], params: never, body: never, response: unknown }
|
|
2857
3000
|
},
|
|
2858
|
-
"/lol-honeyfruit/v1/account-claim/linking-redirect": {
|
|
2859
|
-
post: { path: never, params: never, body: never, response: void }
|
|
2860
|
-
},
|
|
2861
3001
|
"/lol-honor/v1/ballot": {
|
|
2862
3002
|
post: { path: never, params: never, body: never, response: string }
|
|
2863
3003
|
},
|
|
2864
3004
|
"/lol-honor/v1/honor": {
|
|
2865
3005
|
post: { path: never, params: never, body: LCUTypes.LolHonorV2ApiHonorPlayerServerRequestV3, response: void }
|
|
2866
3006
|
},
|
|
3007
|
+
"/lol-honor-v2/v1/ack-honor-notification/{mailId}": {
|
|
3008
|
+
post: { path: [mailId: string], params: never, body: never, response: void }
|
|
3009
|
+
},
|
|
2867
3010
|
"/lol-honor-v2/v1/honor-player": {
|
|
2868
3011
|
post: { path: never, params: never, body: LCUTypes.LolHonorV2ApiHonorPlayerServerRequest, response: string }
|
|
2869
3012
|
},
|
|
@@ -3059,6 +3202,12 @@ export interface LCUEndpoints {
|
|
|
3059
3202
|
"/lol-loyalty/v1/updateLoyaltyInventory": {
|
|
3060
3203
|
post: { path: never, params: never, body: LCUTypes.LolLoyaltyLoyaltyRewards, response: void }
|
|
3061
3204
|
},
|
|
3205
|
+
"/lol-mac-graphics-upgrade/hardware-upgrade-notification/ack": {
|
|
3206
|
+
post: { path: never, params: never, body: never, response: void }
|
|
3207
|
+
},
|
|
3208
|
+
"/lol-mac-graphics-upgrade/legacy-mode-notification/ack": {
|
|
3209
|
+
post: { path: never, params: never, body: never, response: void }
|
|
3210
|
+
},
|
|
3062
3211
|
"/lol-maps/v1/map": {
|
|
3063
3212
|
post: { path: never, params: never, body: LCUTypes.LolMapsMaps, response: void }
|
|
3064
3213
|
},
|
|
@@ -3077,6 +3226,21 @@ export interface LCUEndpoints {
|
|
|
3077
3226
|
"/lol-missions/v1/force": {
|
|
3078
3227
|
post: { path: never, params: never, body: never, response: void }
|
|
3079
3228
|
},
|
|
3229
|
+
"/lol-nacho/v1/purchase/blessing-token": {
|
|
3230
|
+
post: { path: never, params: never, body: LCUTypes.LolNachoBlessingTokenPurchaseRequest, response: string }
|
|
3231
|
+
},
|
|
3232
|
+
"/lol-nacho/v1/purchase/roll": {
|
|
3233
|
+
post: { path: never, params: never, body: LCUTypes.LolNachoBlessingTokenPurchaseRequest, response: string }
|
|
3234
|
+
},
|
|
3235
|
+
"/lol-nacho/v1/set-current-catalog-item": {
|
|
3236
|
+
post: { path: never, params: never, body: never, response: void }
|
|
3237
|
+
},
|
|
3238
|
+
"/lol-nacho/v1/set-product-id": {
|
|
3239
|
+
post: { path: never, params: never, body: never, response: void }
|
|
3240
|
+
},
|
|
3241
|
+
"/lol-nacho/v1/set-store-id": {
|
|
3242
|
+
post: { path: never, params: never, body: never, response: void }
|
|
3243
|
+
},
|
|
3080
3244
|
"/lol-npe-rewards/v1/challenges/opt": {
|
|
3081
3245
|
post: { path: never, params: never, body: never, response: void }
|
|
3082
3246
|
},
|
|
@@ -3185,6 +3349,9 @@ export interface LCUEndpoints {
|
|
|
3185
3349
|
"/lol-replays/v2/metadata/{gameId}/create": {
|
|
3186
3350
|
post: { path: [gameId: number], params: never, body: LCUTypes.LolReplaysReplayCreateMetadata, response: void }
|
|
3187
3351
|
},
|
|
3352
|
+
"/lol-rewards/v1/celebrations/fsc": {
|
|
3353
|
+
post: { path: never, params: never, body: LCUTypes.LolRewardsFSC, response: void }
|
|
3354
|
+
},
|
|
3188
3355
|
"/lol-rewards/v1/grants/{grantId}/select": {
|
|
3189
3356
|
post: { path: [grantId: string], params: never, body: LCUTypes.LolRewardsSelectionRequestDTO, response: LCUTypes.LolRewardsRewardGrant }
|
|
3190
3357
|
},
|
|
@@ -3272,9 +3439,21 @@ export interface LCUEndpoints {
|
|
|
3272
3439
|
"/lol-tft-pass/v1/passes": {
|
|
3273
3440
|
post: { path: never, params: never, body: never, response: void }
|
|
3274
3441
|
},
|
|
3442
|
+
"/lol-tft-team-planner/v1/is-name-valid/{name}": {
|
|
3443
|
+
post: { path: [name: string], params: never, body: never, response: boolean }
|
|
3444
|
+
},
|
|
3445
|
+
"/lol-tft-team-planner/v1/sets/{set}/team-code/{team}": {
|
|
3446
|
+
post: { path: [set: string, team: string], params: never, body: never, response: string }
|
|
3447
|
+
},
|
|
3275
3448
|
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}/import": {
|
|
3276
3449
|
post: { path: [set: string, team: string], params: never, body: string[], response: unknown }
|
|
3277
3450
|
},
|
|
3451
|
+
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}/lastView": {
|
|
3452
|
+
post: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
3453
|
+
},
|
|
3454
|
+
"/lol-tft-team-planner/v1/team-code/clipboard/{set}": {
|
|
3455
|
+
post: { path: [set: string], params: never, body: never, response: LCUTypes.LolTftTeamPlannerImportedTeamCodeData }
|
|
3456
|
+
},
|
|
3278
3457
|
"/lol-tft-troves/v1/purchase": {
|
|
3279
3458
|
post: { path: never, params: never, body: LCUTypes.LolTftTrovesTrovesPurchaseRequest, response: LCUTypes.LolTftTrovesCapOrdersResponseDTO }
|
|
3280
3459
|
},
|
|
@@ -3557,6 +3736,12 @@ export interface LCUEndpoints {
|
|
|
3557
3736
|
"/lol-tft-pass/v1/pass/{id}/milestone/claimAllRewards": {
|
|
3558
3737
|
put: { path: [id: string], params: never, body: never, response: void }
|
|
3559
3738
|
},
|
|
3739
|
+
"/lol-tft-skill-tree/v1/skill/{skillId}/equip": {
|
|
3740
|
+
put: { path: [skillId: number], params: never, body: never, response: LCUTypes.LolTftSkillTreeEventSkillTreeRank }
|
|
3741
|
+
},
|
|
3742
|
+
"/lol-tft-skill-tree/v1/skill-tree-rank/{rank}/claim-rewards": {
|
|
3743
|
+
put: { path: [rank: number], params: never, body: never, response: void }
|
|
3744
|
+
},
|
|
3560
3745
|
"/lol-tft-team-planner/v1/sets/save-all": {
|
|
3561
3746
|
put: { path: never, params: never, body: never, response: unknown }
|
|
3562
3747
|
},
|
|
@@ -26,6 +26,7 @@ export interface LCUWebSocketEvents {
|
|
|
26
26
|
"OnJsonApiEvent_ga-restriction_v1_penalty-notifications": LCUTypes.PluginResourceEvent,
|
|
27
27
|
"OnJsonApiEvent_lol-account-verification_v1_is-verified": LCUTypes.PluginResourceEvent,
|
|
28
28
|
"OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
|
|
29
|
+
"OnJsonApiEvent_lol-activity-center_v1_ready": LCUTypes.PluginResourceEvent,
|
|
29
30
|
"OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
30
31
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
31
32
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
@@ -57,7 +58,9 @@ export interface LCUWebSocketEvents {
|
|
|
57
58
|
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
58
59
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
59
60
|
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
61
|
+
"OnJsonApiEvent_lol-clash_v1_all-tournaments": LCUTypes.PluginResourceEvent,
|
|
60
62
|
"OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
|
|
63
|
+
"OnJsonApiEvent_lol-clash_v1_currentTournamentIds": LCUTypes.PluginResourceEvent,
|
|
61
64
|
"OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
|
|
62
65
|
"OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
63
66
|
"OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
|
|
@@ -67,11 +70,15 @@ export interface LCUWebSocketEvents {
|
|
|
67
70
|
"OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
|
|
68
71
|
"OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
|
|
69
72
|
"OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
|
|
73
|
+
"OnJsonApiEvent_lol-clash_v1_tournament": LCUTypes.PluginResourceEvent,
|
|
74
|
+
"OnJsonApiEvent_lol-clash_v1_tournament-state-info": LCUTypes.PluginResourceEvent,
|
|
75
|
+
"OnJsonApiEvent_lol-clash_v1_tournament-summary": LCUTypes.PluginResourceEvent,
|
|
70
76
|
"OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
|
|
71
77
|
"OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
|
|
72
78
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
73
79
|
"OnJsonApiEvent_lol-client-config_v3_client-config": LCUTypes.PluginResourceEvent,
|
|
74
80
|
"OnJsonApiEvent_lol-collections_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
81
|
+
"OnJsonApiEvent_lol-content-targeting_v1_filters": LCUTypes.PluginResourceEvent,
|
|
75
82
|
"OnJsonApiEvent_lol-cosmetics_v1_favorites": LCUTypes.PluginResourceEvent,
|
|
76
83
|
"OnJsonApiEvent_lol-cosmetics_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
77
84
|
"OnJsonApiEvent_lol-drops_v1_ready": LCUTypes.PluginResourceEvent,
|
|
@@ -83,7 +90,6 @@ export interface LCUWebSocketEvents {
|
|
|
83
90
|
"OnJsonApiEvent_lol-event-hub_v1_navigation-button-data": LCUTypes.PluginResourceEvent,
|
|
84
91
|
"OnJsonApiEvent_lol-event-hub_v1_skins": LCUTypes.PluginResourceEvent,
|
|
85
92
|
"OnJsonApiEvent_lol-event-hub_v1_token-upsell": LCUTypes.PluginResourceEvent,
|
|
86
|
-
"OnJsonApiEvent_lol-event-mission_v1_event-mission": LCUTypes.PluginResourceEvent,
|
|
87
93
|
"OnJsonApiEvent_lol-game-client-chat_v1_buddies": LCUTypes.PluginResourceEvent,
|
|
88
94
|
"OnJsonApiEvent_lol-game-client-chat_v1_instant-messages": LCUTypes.PluginResourceEvent,
|
|
89
95
|
"OnJsonApiEvent_lol-game-client-chat_v2_buddies": LCUTypes.PluginResourceEvent,
|
|
@@ -105,8 +111,6 @@ export interface LCUWebSocketEvents {
|
|
|
105
111
|
"OnJsonApiEvent_lol-gameflow_v1_watch": LCUTypes.PluginResourceEvent,
|
|
106
112
|
"OnJsonApiEvent_lol-highlights_v1_config": LCUTypes.PluginResourceEvent,
|
|
107
113
|
"OnJsonApiEvent_lol-highlights_v1_highlights-folder-path": LCUTypes.PluginResourceEvent,
|
|
108
|
-
"OnJsonApiEvent_lol-honeyfruit_v1_account-claim": LCUTypes.PluginResourceEvent,
|
|
109
|
-
"OnJsonApiEvent_lol-honeyfruit_v1_linking-settings-button-available": LCUTypes.PluginResourceEvent,
|
|
110
114
|
"OnJsonApiEvent_lol-honeyfruit_v1_vng-publisher-settings": LCUTypes.PluginResourceEvent,
|
|
111
115
|
"OnJsonApiEvent_lol-honor-v2_v1_ballot": LCUTypes.PluginResourceEvent,
|
|
112
116
|
"OnJsonApiEvent_lol-honor-v2_v1_config": LCUTypes.PluginResourceEvent,
|
|
@@ -124,6 +128,7 @@ export interface LCUWebSocketEvents {
|
|
|
124
128
|
"OnJsonApiEvent_lol-inventory_v1_wallet": LCUTypes.PluginResourceEvent,
|
|
125
129
|
"OnJsonApiEvent_lol-inventory_v2_inventory": LCUTypes.PluginResourceEvent,
|
|
126
130
|
"OnJsonApiEvent_lol-kr-playtime-reminder_v1_hours-played": LCUTypes.PluginResourceEvent,
|
|
131
|
+
"OnJsonApiEvent_lol-leaderboard_v1_ready": LCUTypes.PluginResourceEvent,
|
|
127
132
|
"OnJsonApiEvent_lol-league-session_v1_league-session-token": LCUTypes.PluginResourceEvent,
|
|
128
133
|
"OnJsonApiEvent_lol-leaver-buster_v1_ranked-restriction": LCUTypes.PluginResourceEvent,
|
|
129
134
|
"OnJsonApiEvent_lol-license-agreement_v1_agreements": LCUTypes.PluginResourceEvent,
|
|
@@ -139,6 +144,7 @@ export interface LCUWebSocketEvents {
|
|
|
139
144
|
"OnJsonApiEvent_lol-lobby_v2_comms": LCUTypes.PluginResourceEvent,
|
|
140
145
|
"OnJsonApiEvent_lol-lobby_v2_eligibility": LCUTypes.PluginResourceEvent,
|
|
141
146
|
"OnJsonApiEvent_lol-lobby_v2_lobby": LCUTypes.PluginResourceEvent,
|
|
147
|
+
"OnJsonApiEvent_lol-lock-and-load_v1_home-hubs-waits": LCUTypes.PluginResourceEvent,
|
|
142
148
|
"OnJsonApiEvent_lol-lock-and-load_v1_should-show-progress-bar-text": LCUTypes.PluginResourceEvent,
|
|
143
149
|
"OnJsonApiEvent_lol-lock-and-load_v1_should-wait-for-home-hubs": LCUTypes.PluginResourceEvent,
|
|
144
150
|
"OnJsonApiEvent_lol-login_v1_login-connection-state": LCUTypes.PluginResourceEvent,
|
|
@@ -158,6 +164,7 @@ export interface LCUWebSocketEvents {
|
|
|
158
164
|
"OnJsonApiEvent_lol-loot_v1_recipes": LCUTypes.PluginResourceEvent,
|
|
159
165
|
"OnJsonApiEvent_lol-loot_v2_player-loot-map": LCUTypes.PluginResourceEvent,
|
|
160
166
|
"OnJsonApiEvent_lol-loyalty_v1_status-notification": LCUTypes.PluginResourceEvent,
|
|
167
|
+
"OnJsonApiEvent_lol-mac-graphics-upgrade_notification-type": LCUTypes.PluginResourceEvent,
|
|
161
168
|
"OnJsonApiEvent_lol-maps_v1_maps": LCUTypes.PluginResourceEvent,
|
|
162
169
|
"OnJsonApiEvent_lol-maps_v2_maps": LCUTypes.PluginResourceEvent,
|
|
163
170
|
"OnJsonApiEvent_lol-marketing-preferences_v1_ready": LCUTypes.PluginResourceEvent,
|
|
@@ -173,11 +180,9 @@ export interface LCUWebSocketEvents {
|
|
|
173
180
|
"OnJsonApiEvent_lol-patch_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
174
181
|
"OnJsonApiEvent_lol-patch_v1_products": LCUTypes.PluginResourceEvent,
|
|
175
182
|
"OnJsonApiEvent_lol-patch_v1_status": LCUTypes.PluginResourceEvent,
|
|
176
|
-
"OnJsonApiEvent_lol-perks_v1_currentpage": LCUTypes.PluginResourceEvent,
|
|
177
183
|
"OnJsonApiEvent_lol-perks_v1_inventory": LCUTypes.PluginResourceEvent,
|
|
178
184
|
"OnJsonApiEvent_lol-perks_v1_pages": LCUTypes.PluginResourceEvent,
|
|
179
185
|
"OnJsonApiEvent_lol-perks_v1_perks": LCUTypes.PluginResourceEvent,
|
|
180
|
-
"OnJsonApiEvent_lol-perks_v1_rune-recommender-auto-select": LCUTypes.PluginResourceEvent,
|
|
181
186
|
"OnJsonApiEvent_lol-perks_v1_settings": LCUTypes.PluginResourceEvent,
|
|
182
187
|
"OnJsonApiEvent_lol-perks_v1_styles": LCUTypes.PluginResourceEvent,
|
|
183
188
|
"OnJsonApiEvent_lol-platform-config_v1_initial-configuration-complete": LCUTypes.PluginResourceEvent,
|
|
@@ -415,6 +420,7 @@ export interface LCUWebSocketEvents {
|
|
|
415
420
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TFT_PAIRS": LCUTypes.PluginResourceEvent,
|
|
416
421
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TFT_TURBO": LCUTypes.PluginResourceEvent,
|
|
417
422
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RIOTSCRIPT_BOT": LCUTypes.PluginResourceEvent,
|
|
423
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SET_REVIVAL_5_5_TFT": LCUTypes.PluginResourceEvent,
|
|
418
424
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SF_TFT": LCUTypes.PluginResourceEvent,
|
|
419
425
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SIEGE": LCUTypes.PluginResourceEvent,
|
|
420
426
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SNOWURF": LCUTypes.PluginResourceEvent,
|
|
@@ -568,6 +574,7 @@ export interface LCUWebSocketEvents {
|
|
|
568
574
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections": LCUTypes.PluginResourceEvent,
|
|
569
575
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_Enabled": LCUTypes.PluginResourceEvent,
|
|
570
576
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUAugmentsVisible": LCUTypes.PluginResourceEvent,
|
|
577
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesFinishersEnabled": LCUTypes.PluginResourceEvent,
|
|
571
578
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesWardSkinsEnabled": LCUTypes.PluginResourceEvent,
|
|
572
579
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUMasteriesVisible": LCUTypes.PluginResourceEvent,
|
|
573
580
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUPerksVisible": LCUTypes.PluginResourceEvent,
|
|
@@ -781,7 +788,6 @@ export interface LCUWebSocketEvents {
|
|
|
781
788
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_FlexRestrictionModalEnabled": LCUTypes.PluginResourceEvent,
|
|
782
789
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsGlobalNotificationsEnabled": LCUTypes.PluginResourceEvent,
|
|
783
790
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsPreseason": LCUTypes.PluginResourceEvent,
|
|
784
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSeasonMemorialModalEnabled": LCUTypes.PluginResourceEvent,
|
|
785
791
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSplitStartModalEnabled": LCUTypes.PluginResourceEvent,
|
|
786
792
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_JWTEnabled": LCUTypes.PluginResourceEvent,
|
|
787
793
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_LeagueServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -924,7 +930,6 @@ export interface LCUWebSocketEvents {
|
|
|
924
930
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_ABDisablingOfTutorial": LCUTypes.PluginResourceEvent,
|
|
925
931
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_QueueID": LCUTypes.PluginResourceEvent,
|
|
926
932
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Parties": LCUTypes.PluginResourceEvent,
|
|
927
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Parties_CustomsInPartiesEnabled": LCUTypes.PluginResourceEvent,
|
|
928
933
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Parties_EnableLobbyCreation": LCUTypes.PluginResourceEvent,
|
|
929
934
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Parties_Enabled": LCUTypes.PluginResourceEvent,
|
|
930
935
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Parties_EnabledForTeamBuilderQueues": LCUTypes.PluginResourceEvent,
|
|
@@ -1178,6 +1183,7 @@ export interface LCUWebSocketEvents {
|
|
|
1178
1183
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Voice": LCUTypes.PluginResourceEvent,
|
|
1179
1184
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Voice_Enabled": LCUTypes.PluginResourceEvent,
|
|
1180
1185
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_WardSkinConfig": LCUTypes.PluginResourceEvent,
|
|
1186
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_WardSkinConfig_UseGsmLoadouts": LCUTypes.PluginResourceEvent,
|
|
1181
1187
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_WardSkinConfig_UseLoadouts": LCUTypes.PluginResourceEvent,
|
|
1182
1188
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_WardSkinConfig_WardSkinSelection": LCUTypes.PluginResourceEvent,
|
|
1183
1189
|
"OnJsonApiEvent_lol-player-behavior_v1_config": LCUTypes.PluginResourceEvent,
|
|
@@ -1216,7 +1222,6 @@ export interface LCUWebSocketEvents {
|
|
|
1216
1222
|
"OnJsonApiEvent_lol-rewards_v1_groups": LCUTypes.PluginResourceEvent,
|
|
1217
1223
|
"OnJsonApiEvent_lol-rso-auth_configuration_v3": LCUTypes.PluginResourceEvent,
|
|
1218
1224
|
"OnJsonApiEvent_lol-rso-auth_v1_authorization": LCUTypes.PluginResourceEvent,
|
|
1219
|
-
"OnJsonApiEvent_lol-service-status_v1_ticker-messages": LCUTypes.PluginResourceEvent,
|
|
1220
1225
|
"OnJsonApiEvent_lol-settings_v1_account": LCUTypes.PluginResourceEvent,
|
|
1221
1226
|
"OnJsonApiEvent_lol-settings_v1_local": LCUTypes.PluginResourceEvent,
|
|
1222
1227
|
"OnJsonApiEvent_lol-settings_v2_account": LCUTypes.PluginResourceEvent,
|
|
@@ -1236,12 +1241,18 @@ export interface LCUWebSocketEvents {
|
|
|
1236
1241
|
"OnJsonApiEvent_lol-summoner_v1_summoner-requests-ready": LCUTypes.PluginResourceEvent,
|
|
1237
1242
|
"OnJsonApiEvent_lol-tastes_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1238
1243
|
"OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
|
|
1244
|
+
"OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1245
|
+
"OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,
|
|
1239
1246
|
"OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
|
|
1240
1247
|
"OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
|
|
1248
|
+
"OnJsonApiEvent_lol-tft-team-planner_v1_previous-context": LCUTypes.PluginResourceEvent,
|
|
1249
|
+
"OnJsonApiEvent_lol-tft-team-planner_v1_set": LCUTypes.PluginResourceEvent,
|
|
1241
1250
|
"OnJsonApiEvent_lol-tft-team-planner_v1_team": LCUTypes.PluginResourceEvent,
|
|
1251
|
+
"OnJsonApiEvent_lol-tft-team-planner_v2_reminders": LCUTypes.PluginResourceEvent,
|
|
1242
1252
|
"OnJsonApiEvent_lol-tft-troves_v1_config": LCUTypes.PluginResourceEvent,
|
|
1243
1253
|
"OnJsonApiEvent_lol-tft-troves_v1_milestones-group-id": LCUTypes.PluginResourceEvent,
|
|
1244
1254
|
"OnJsonApiEvent_lol-tft_v1_tft": LCUTypes.PluginResourceEvent,
|
|
1255
|
+
"OnJsonApiEvent_lol-vanguard_v1_service-session-check-failure": LCUTypes.PluginResourceEvent,
|
|
1245
1256
|
"OnJsonApiEvent_lol-vanguard_v1_session": LCUTypes.PluginResourceEvent,
|
|
1246
1257
|
"OnJsonApiEvent_lol-yourshop_v1_modal": LCUTypes.PluginResourceEvent,
|
|
1247
1258
|
"OnJsonApiEvent_lol-yourshop_v1_ready": LCUTypes.PluginResourceEvent,
|