@hasagi/types 14.11.1 → 14.17.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/README.md +9 -0
- package/lcu-endpoints.d.ts +98 -70
- package/lcu-events.d.ts +8 -11
- package/lcu-types.d.ts +201 -130
- package/package.json +8 -7
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
```
|
package/lcu-endpoints.d.ts
CHANGED
|
@@ -122,8 +122,8 @@ export interface LCUEndpoints {
|
|
|
122
122
|
post: { path: never, params: never, body: string, response: unknown }
|
|
123
123
|
delete: { path: never, params: never, body: never, response: unknown }
|
|
124
124
|
},
|
|
125
|
-
"/lol-lobby/v1/lobby/custom/bots/{summonerInternalName}": {
|
|
126
|
-
delete: { path: [summonerInternalName: string], params: never, body: never, response: unknown }
|
|
125
|
+
"/lol-lobby/v1/lobby/custom/bots/{summonerInternalName}/{botUuidToDelete}/{teamId}": {
|
|
126
|
+
delete: { path: [summonerInternalName: string, botUuidToDelete: string, teamId: string], params: never, body: never, response: unknown }
|
|
127
127
|
},
|
|
128
128
|
"/lol-lobby/v2/lobby": {
|
|
129
129
|
get: { path: never, params: never, body: never, response: LCUTypes.LolLobbyLobbyDto }
|
|
@@ -143,7 +143,6 @@ export interface LCUEndpoints {
|
|
|
143
143
|
},
|
|
144
144
|
"/lol-login/v1/session": {
|
|
145
145
|
get: { path: never, params: never, body: never, response: LCUTypes.LolLoginLoginSession }
|
|
146
|
-
post: { path: never, params: never, body: LCUTypes.LolLoginUsernameAndPassword, response: LCUTypes.LolLoginLoginSession }
|
|
147
146
|
delete: { path: never, params: never, body: never, response: void }
|
|
148
147
|
},
|
|
149
148
|
"/lol-login/v1/shutdown-locks/{lockName}": {
|
|
@@ -235,6 +234,22 @@ export interface LCUEndpoints {
|
|
|
235
234
|
"/lol-suggested-players/v1/suggested-players/{summonerId}": {
|
|
236
235
|
delete: { path: [summonerId: number], params: never, body: never, response: unknown }
|
|
237
236
|
},
|
|
237
|
+
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}": {
|
|
238
|
+
post: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
239
|
+
delete: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
240
|
+
},
|
|
241
|
+
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}/champions": {
|
|
242
|
+
patch: { path: [set: string, team: string], params: never, body: number[], response: unknown }
|
|
243
|
+
delete: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
244
|
+
},
|
|
245
|
+
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}/champions/{championId}": {
|
|
246
|
+
post: { path: [set: string, team: string, championId: string], params: never, body: never, response: unknown }
|
|
247
|
+
delete: { path: [set: string, team: string, championId: string], params: never, body: never, response: unknown }
|
|
248
|
+
},
|
|
249
|
+
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}/champions/{championId}/{index}": {
|
|
250
|
+
post: { path: [set: string, team: string, championId: string, index: number], params: never, body: never, response: unknown }
|
|
251
|
+
delete: { path: [set: string, team: string, championId: string, index: number], params: never, body: never, response: unknown }
|
|
252
|
+
},
|
|
238
253
|
"/lol-tft-team-planner/v1/team/champions": {
|
|
239
254
|
patch: { path: never, params: never, body: number[], response: unknown }
|
|
240
255
|
delete: { path: never, params: never, body: never, response: unknown }
|
|
@@ -291,6 +306,18 @@ export interface LCUEndpoints {
|
|
|
291
306
|
put: { path: [authToken: string], params: never, body: never, response: unknown }
|
|
292
307
|
delete: { path: [authToken: string], params: never, body: never, response: unknown }
|
|
293
308
|
},
|
|
309
|
+
"/services-api/player-session/v1/access-token": {
|
|
310
|
+
put: { path: never, params: never, body: string, response: void }
|
|
311
|
+
delete: { path: never, params: never, body: never, response: void }
|
|
312
|
+
},
|
|
313
|
+
"/services-api/player-session/v1/entitlements-token": {
|
|
314
|
+
put: { path: never, params: never, body: string, response: void }
|
|
315
|
+
delete: { path: never, params: never, body: never, response: void }
|
|
316
|
+
},
|
|
317
|
+
"/services-api/player-session/v1/user-info-token": {
|
|
318
|
+
put: { path: never, params: never, body: string, response: void }
|
|
319
|
+
delete: { path: never, params: never, body: never, response: void }
|
|
320
|
+
},
|
|
294
321
|
"/tracing/v1/performance/{name}": {
|
|
295
322
|
post: { path: [name: string], params: never, body: never, response: void }
|
|
296
323
|
delete: { path: [name: string], params: never, body: never, response: void }
|
|
@@ -324,9 +351,6 @@ export interface LCUEndpoints {
|
|
|
324
351
|
"/client-config/v2/namespace/{namespace}/public": {
|
|
325
352
|
get: { path: [namespace: string], params: never, body: never, response: Record<string, unknown> }
|
|
326
353
|
},
|
|
327
|
-
"/config/v1/config": {
|
|
328
|
-
get: { path: never, params: never, body: never, response: unknown }
|
|
329
|
-
},
|
|
330
354
|
"/cookie-jar/v1/cookies": {
|
|
331
355
|
get: { path: never, params: never, body: never, response: LCUTypes.cookie[] }
|
|
332
356
|
post: { path: never, params: never, body: LCUTypes.cookie[], response: unknown }
|
|
@@ -378,39 +402,6 @@ export interface LCUEndpoints {
|
|
|
378
402
|
"/lol-banners/v1/players/{puuid}/flags/equipped": {
|
|
379
403
|
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolBannersBannerFlag }
|
|
380
404
|
},
|
|
381
|
-
"/lol-career-stats/v1/champion-averages/{championId}/{position}/{tier}/{queue}": {
|
|
382
|
-
get: { path: [championId: number, position: LCUTypes.LolCareerStatsSummonersRiftPosition, tier: string, queue: LCUTypes.LolCareerStatsCareerStatsQueueType], params: never, body: never, response: LCUTypes.LolCareerStatsChampionQueueStatsResponse }
|
|
383
|
-
},
|
|
384
|
-
"/lol-career-stats/v1/champion-averages/season/{season}/{championId}/{position}/{tier}/{queue}": {
|
|
385
|
-
get: { path: [season: number, championId: number, position: LCUTypes.LolCareerStatsSummonersRiftPosition, tier: string, queue: LCUTypes.LolCareerStatsCareerStatsQueueType], params: never, body: never, response: LCUTypes.LolCareerStatsChampionQueueStatsResponse }
|
|
386
|
-
},
|
|
387
|
-
"/lol-career-stats/v1/champion-experts/{championId}/{position}": {
|
|
388
|
-
get: { path: [championId: number, position: LCUTypes.LolCareerStatsSummonersRiftPosition], params: never, body: never, response: LCUTypes.LolCareerStatsExpertPlayer[] }
|
|
389
|
-
},
|
|
390
|
-
"/lol-career-stats/v1/champion-experts/season/{season}/{championId}/{position}": {
|
|
391
|
-
get: { path: [season: number, championId: number, position: LCUTypes.LolCareerStatsSummonersRiftPosition], params: never, body: never, response: LCUTypes.LolCareerStatsExpertPlayer[] }
|
|
392
|
-
},
|
|
393
|
-
"/lol-career-stats/v1/position-averages/{position}/{tier}/{queue}": {
|
|
394
|
-
get: { path: [position: LCUTypes.LolCareerStatsSummonersRiftPosition, tier: string, queue: LCUTypes.LolCareerStatsCareerStatsQueueType], params: never, body: never, response: LCUTypes.LolCareerStatsChampionQueueStatsResponse }
|
|
395
|
-
},
|
|
396
|
-
"/lol-career-stats/v1/position-averages/season/{season}/{position}/{tier}/{queue}": {
|
|
397
|
-
get: { path: [season: number, position: LCUTypes.LolCareerStatsSummonersRiftPosition, tier: string, queue: LCUTypes.LolCareerStatsCareerStatsQueueType], params: never, body: never, response: LCUTypes.LolCareerStatsChampionQueueStatsResponse }
|
|
398
|
-
},
|
|
399
|
-
"/lol-career-stats/v1/position-experts/{position}": {
|
|
400
|
-
get: { path: [position: LCUTypes.LolCareerStatsSummonersRiftPosition], params: never, body: never, response: LCUTypes.LolCareerStatsExpertPlayer[] }
|
|
401
|
-
},
|
|
402
|
-
"/lol-career-stats/v1/position-experts/season/{season}/{position}": {
|
|
403
|
-
get: { path: [season: number, position: LCUTypes.LolCareerStatsSummonersRiftPosition], params: never, body: never, response: LCUTypes.LolCareerStatsExpertPlayer[] }
|
|
404
|
-
},
|
|
405
|
-
"/lol-career-stats/v1/summoner-games/{puuid}": {
|
|
406
|
-
get: { path: [puuid: string], params: never, body: never, response: unknown }
|
|
407
|
-
},
|
|
408
|
-
"/lol-career-stats/v1/summoner-games/{puuid}/season/{season}": {
|
|
409
|
-
get: { path: [puuid: string, season: number], params: never, body: never, response: unknown }
|
|
410
|
-
},
|
|
411
|
-
"/lol-career-stats/v1/summoner-stats/{puuid}/{season}/{queue}/{position}": {
|
|
412
|
-
get: { path: [puuid: string, season: number, queue: LCUTypes.LolCareerStatsCareerStatsQueueType, position: LCUTypes.LolCareerStatsSummonersRiftPosition], params: { "championId"?: number }, body: never, response: unknown }
|
|
413
|
-
},
|
|
414
405
|
"/lol-catalog/v1/item-details": {
|
|
415
406
|
get: { path: never, params: { "inventoryType": string, "itemId": number }, body: never, response: LCUTypes.LolCatalogCatalogPluginItemWithDetails }
|
|
416
407
|
},
|
|
@@ -806,15 +797,6 @@ export interface LCUEndpoints {
|
|
|
806
797
|
"/lol-client-config/v3/client-config/{name}": {
|
|
807
798
|
get: { path: [name: string], params: never, body: never, response: unknown }
|
|
808
799
|
},
|
|
809
|
-
"/lol-client-config/v3/client-config/operational/{name}": {
|
|
810
|
-
get: { path: [name: string], params: never, body: never, response: unknown }
|
|
811
|
-
},
|
|
812
|
-
"/lol-collections/v1/inventories/{puuid}/champion-mastery": {
|
|
813
|
-
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolCollectionsCollectionsChampionMastery[] }
|
|
814
|
-
},
|
|
815
|
-
"/lol-collections/v1/inventories/{puuid}/champion-mastery/top": {
|
|
816
|
-
get: { path: [puuid: string], params: { "limit": number, "sortRule"?: string }, body: never, response: LCUTypes.LolCollectionsCollectionsTopChampionMasteries }
|
|
817
|
-
},
|
|
818
800
|
"/lol-collections/v1/inventories/{summonerId}/backdrop": {
|
|
819
801
|
get: { path: [summonerId: number], params: never, body: never, response: LCUTypes.LolCollectionsCollectionsSummonerBackdrop }
|
|
820
802
|
},
|
|
@@ -827,12 +809,6 @@ export interface LCUEndpoints {
|
|
|
827
809
|
"/lol-collections/v1/inventories/{summonerId}/ward-skins/{wardSkinId}": {
|
|
828
810
|
get: { path: [summonerId: number, wardSkinId: number], params: never, body: never, response: LCUTypes.LolCollectionsCollectionsWardSkin }
|
|
829
811
|
},
|
|
830
|
-
"/lol-collections/v1/inventories/local-player/champion-mastery-score": {
|
|
831
|
-
get: { path: never, params: never, body: never, response: number }
|
|
832
|
-
},
|
|
833
|
-
"/lol-collections/v1/inventories/scouting": {
|
|
834
|
-
get: { path: never, params: { "puuids": string[] }, body: never, response: LCUTypes.RankedScoutingDTO[] }
|
|
835
|
-
},
|
|
836
812
|
"/lol-content-targeting/v1/filters": {
|
|
837
813
|
get: { path: never, params: never, body: never, response: LCUTypes.LolContentTargetingContentTargetingFilterResponse }
|
|
838
814
|
},
|
|
@@ -1442,6 +1418,12 @@ export interface LCUEndpoints {
|
|
|
1442
1418
|
"/lol-lobby/v2/registration-status": {
|
|
1443
1419
|
get: { path: never, params: never, body: never, response: unknown }
|
|
1444
1420
|
},
|
|
1421
|
+
"/lol-lock-and-load/v1/should-show-progress-bar-text": {
|
|
1422
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1423
|
+
},
|
|
1424
|
+
"/lol-lock-and-load/v1/should-wait-for-home-hubs": {
|
|
1425
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1426
|
+
},
|
|
1445
1427
|
"/lol-login/v1/account-state": {
|
|
1446
1428
|
get: { path: never, params: never, body: never, response: LCUTypes.LolLoginAccountStateResource }
|
|
1447
1429
|
post: { path: never, params: never, body: never, response: void }
|
|
@@ -1588,7 +1570,7 @@ export interface LCUEndpoints {
|
|
|
1588
1570
|
get: { path: never, params: { "begIndex"?: number, "endIndex"?: number }, body: never, response: LCUTypes.LolMatchHistoryMatchHistoryList }
|
|
1589
1571
|
},
|
|
1590
1572
|
"/lol-match-history/v1/products/tft/{puuid}/matches": {
|
|
1591
|
-
get: { path: [puuid: string], params: { "begin"?: number, "count"?: number, "
|
|
1573
|
+
get: { path: [puuid: string], params: { "begin"?: number, "count"?: number, "tags"?: string[] }, body: never, response: LCUTypes.LolMatchHistoryGAMHSMatchHistoryList }
|
|
1592
1574
|
},
|
|
1593
1575
|
"/lol-match-history/v1/recently-played-summoners": {
|
|
1594
1576
|
get: { path: never, params: never, body: never, response: LCUTypes.LolMatchHistoryRecentlyPlayedSummoner[] }
|
|
@@ -1614,6 +1596,9 @@ export interface LCUEndpoints {
|
|
|
1614
1596
|
"/lol-missions/v1/missions": {
|
|
1615
1597
|
get: { path: never, params: never, body: never, response: LCUTypes.PlayerMissionDTO[] }
|
|
1616
1598
|
},
|
|
1599
|
+
"/lol-missions/v1/missions/series/{seriesName}": {
|
|
1600
|
+
get: { path: [seriesName: string], params: never, body: never, response: LCUTypes.PlayerMissionDTO[] }
|
|
1601
|
+
},
|
|
1617
1602
|
"/lol-missions/v1/series": {
|
|
1618
1603
|
get: { path: never, params: never, body: never, response: LCUTypes.SeriesDTO[] }
|
|
1619
1604
|
},
|
|
@@ -1788,6 +1773,9 @@ export interface LCUEndpoints {
|
|
|
1788
1773
|
get: { path: never, params: never, body: never, response: LCUTypes.LolPremadeVoiceDeviceResource[] }
|
|
1789
1774
|
put: { path: never, params: never, body: string, response: void }
|
|
1790
1775
|
},
|
|
1776
|
+
"/lol-premade-voice/v1/devices/capture/permission": {
|
|
1777
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1778
|
+
},
|
|
1791
1779
|
"/lol-premade-voice/v1/first-experience": {
|
|
1792
1780
|
get: { path: never, params: never, body: never, response: LCUTypes.LolPremadeVoiceFirstExperience }
|
|
1793
1781
|
},
|
|
@@ -2209,6 +2197,9 @@ export interface LCUEndpoints {
|
|
|
2209
2197
|
"/lol-tft-pass/v1/battle-pass": {
|
|
2210
2198
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass }
|
|
2211
2199
|
},
|
|
2200
|
+
"/lol-tft-pass/v1/config-fetched": {
|
|
2201
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
2202
|
+
},
|
|
2212
2203
|
"/lol-tft-pass/v1/daily-login-pass": {
|
|
2213
2204
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass }
|
|
2214
2205
|
},
|
|
@@ -2218,9 +2209,15 @@ export interface LCUEndpoints {
|
|
|
2218
2209
|
"/lol-tft-pass/v1/event-pass": {
|
|
2219
2210
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass }
|
|
2220
2211
|
},
|
|
2212
|
+
"/lol-tft-pass/v1/ready": {
|
|
2213
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
2214
|
+
},
|
|
2221
2215
|
"/lol-tft-pass/v1/reward-notification": {
|
|
2222
2216
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTFTPassRewardNotification }
|
|
2223
2217
|
},
|
|
2218
|
+
"/lol-tft-pass/v1/skill-tree-pass": {
|
|
2219
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass }
|
|
2220
|
+
},
|
|
2224
2221
|
"/lol-tft-team-planner/v1/config": {
|
|
2225
2222
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTeamPlannerTFTTeamPlannerConfig }
|
|
2226
2223
|
},
|
|
@@ -2228,6 +2225,9 @@ export interface LCUEndpoints {
|
|
|
2228
2225
|
get: { path: never, params: never, body: never, response: boolean }
|
|
2229
2226
|
patch: { path: never, params: never, body: boolean, response: unknown }
|
|
2230
2227
|
},
|
|
2228
|
+
"/lol-tft-team-planner/v1/sets/dirty": {
|
|
2229
|
+
get: { path: never, params: never, body: never, response: Record<string, LCUTypes.LolTftTeamPlannerTeamsForSet> }
|
|
2230
|
+
},
|
|
2231
2231
|
"/lol-tft-team-planner/v1/team/local": {
|
|
2232
2232
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTeamPlannerTeamSettings }
|
|
2233
2233
|
},
|
|
@@ -2235,6 +2235,10 @@ export interface LCUEndpoints {
|
|
|
2235
2235
|
get: { path: never, params: never, body: never, response: boolean }
|
|
2236
2236
|
patch: { path: never, params: never, body: boolean, response: unknown }
|
|
2237
2237
|
},
|
|
2238
|
+
"/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 }
|
|
2241
|
+
},
|
|
2238
2242
|
"/lol-tft-troves/v1/banners": {
|
|
2239
2243
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTrovesTrovesBanner[] }
|
|
2240
2244
|
},
|
|
@@ -2259,9 +2263,6 @@ export interface LCUEndpoints {
|
|
|
2259
2263
|
"/lol-tft/v1/tft/battlePassHub": {
|
|
2260
2264
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftLolTftBattlePassHub }
|
|
2261
2265
|
},
|
|
2262
|
-
"/lol-tft/v1/tft/directToHub": {
|
|
2263
|
-
get: { path: never, params: never, body: never, response: boolean }
|
|
2264
|
-
},
|
|
2265
2266
|
"/lol-tft/v1/tft/events": {
|
|
2266
2267
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftLolTftEvents }
|
|
2267
2268
|
},
|
|
@@ -2451,9 +2452,6 @@ export interface LCUEndpoints {
|
|
|
2451
2452
|
"/telemetry/v1/application-start-time": {
|
|
2452
2453
|
get: { path: never, params: never, body: never, response: number }
|
|
2453
2454
|
},
|
|
2454
|
-
"/tracing/v1/trace/payloads/enabled": {
|
|
2455
|
-
get: { path: never, params: never, body: never, response: boolean }
|
|
2456
|
-
},
|
|
2457
2455
|
"/Help": {
|
|
2458
2456
|
post: { path: never, params: { "target"?: string, "format"?: LCUTypes.RemotingHelpFormat }, body: never, response: unknown }
|
|
2459
2457
|
},
|
|
@@ -2497,6 +2495,15 @@ export interface LCUEndpoints {
|
|
|
2497
2495
|
"/lol-rewards/v1/grants/view": {
|
|
2498
2496
|
patch: { path: never, params: never, body: string[], response: void }
|
|
2499
2497
|
},
|
|
2498
|
+
"/lol-tft-team-planner/v1/set": {
|
|
2499
|
+
patch: { path: never, params: never, body: string, response: unknown }
|
|
2500
|
+
},
|
|
2501
|
+
"/lol-tft-team-planner/v1/set/lastViewed": {
|
|
2502
|
+
patch: { path: never, params: never, body: never, response: unknown }
|
|
2503
|
+
},
|
|
2504
|
+
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}/{name}": {
|
|
2505
|
+
patch: { path: [set: string, team: string, name: string], params: never, body: never, response: unknown }
|
|
2506
|
+
},
|
|
2500
2507
|
"/telemetry/v3/slis/add-bool-diagnostic": {
|
|
2501
2508
|
patch: { path: never, params: never, body: LCUTypes.SLIBoolDiagnostic, response: void }
|
|
2502
2509
|
},
|
|
@@ -2530,15 +2537,12 @@ export interface LCUEndpoints {
|
|
|
2530
2537
|
"/lol-account-verification/v1/sendDeactivationPin": {
|
|
2531
2538
|
post: { path: never, params: never, body: void, response: void }
|
|
2532
2539
|
},
|
|
2533
|
-
"/lol-career-stats/v1/champion-stats-percentiles": {
|
|
2534
|
-
post: { path: never, params: never, body: LCUTypes.LolCareerStatsStatsQueryRequest[], response: LCUTypes.LolCareerStatsStatisticsPercentilesResponse[] }
|
|
2535
|
-
},
|
|
2536
|
-
"/lol-career-stats/v1/position-stats-percentiles": {
|
|
2537
|
-
post: { path: never, params: never, body: LCUTypes.LolCareerStatsPositionStatsQueryRequest[], response: LCUTypes.LolCareerStatsStatisticsPercentilesResponse[] }
|
|
2538
|
-
},
|
|
2539
2540
|
"/lol-challenges/v1/ack-challenge-update/{id}": {
|
|
2540
2541
|
post: { path: [id: number], params: never, body: never, response: void }
|
|
2541
2542
|
},
|
|
2543
|
+
"/lol-challenges/v1/rsbot-challenges": {
|
|
2544
|
+
post: { path: never, params: never, body: never, response: Record<string, LCUTypes.LolChallengesUIChallenge> }
|
|
2545
|
+
},
|
|
2542
2546
|
"/lol-challenges/v1/update-player-preferences": {
|
|
2543
2547
|
post: { path: never, params: never, body: LCUTypes.LolChallengesChallengesPlayerPreferences, response: void }
|
|
2544
2548
|
},
|
|
@@ -2854,6 +2858,12 @@ export interface LCUEndpoints {
|
|
|
2854
2858
|
"/lol-honeyfruit/v1/account-claim/linking-redirect": {
|
|
2855
2859
|
post: { path: never, params: never, body: never, response: void }
|
|
2856
2860
|
},
|
|
2861
|
+
"/lol-honor/v1/ballot": {
|
|
2862
|
+
post: { path: never, params: never, body: never, response: string }
|
|
2863
|
+
},
|
|
2864
|
+
"/lol-honor/v1/honor": {
|
|
2865
|
+
post: { path: never, params: never, body: LCUTypes.LolHonorV2ApiHonorPlayerServerRequestV3, response: void }
|
|
2866
|
+
},
|
|
2857
2867
|
"/lol-honor-v2/v1/honor-player": {
|
|
2858
2868
|
post: { path: never, params: never, body: LCUTypes.LolHonorV2ApiHonorPlayerServerRequest, response: string }
|
|
2859
2869
|
},
|
|
@@ -2944,8 +2954,8 @@ export interface LCUEndpoints {
|
|
|
2944
2954
|
"/lol-lobby/v1/lobby/custom/bots": {
|
|
2945
2955
|
post: { path: never, params: never, body: LCUTypes.LolLobbyLobbyBotParams, response: unknown }
|
|
2946
2956
|
},
|
|
2947
|
-
"/lol-lobby/v1/lobby/custom/bots/{summonerInternalName}/{
|
|
2948
|
-
post: { path: [summonerInternalName: string,
|
|
2957
|
+
"/lol-lobby/v1/lobby/custom/bots/{summonerInternalName}/{botUuidToDelete}": {
|
|
2958
|
+
post: { path: [summonerInternalName: string, botUuidToDelete: string], params: never, body: LCUTypes.LolLobbyLobbyBotParams, response: unknown }
|
|
2949
2959
|
},
|
|
2950
2960
|
"/lol-lobby/v1/lobby/custom/cancel-champ-select": {
|
|
2951
2961
|
post: { path: never, params: never, body: never, response: unknown }
|
|
@@ -3262,6 +3272,9 @@ export interface LCUEndpoints {
|
|
|
3262
3272
|
"/lol-tft-pass/v1/passes": {
|
|
3263
3273
|
post: { path: never, params: never, body: never, response: void }
|
|
3264
3274
|
},
|
|
3275
|
+
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}/import": {
|
|
3276
|
+
post: { path: [set: string, team: string], params: never, body: string[], response: unknown }
|
|
3277
|
+
},
|
|
3265
3278
|
"/lol-tft-troves/v1/purchase": {
|
|
3266
3279
|
post: { path: never, params: never, body: LCUTypes.LolTftTrovesTrovesPurchaseRequest, response: LCUTypes.LolTftTrovesCapOrdersResponseDTO }
|
|
3267
3280
|
},
|
|
@@ -3373,6 +3386,15 @@ export interface LCUEndpoints {
|
|
|
3373
3386
|
"/sanitizer/v1/sanitize": {
|
|
3374
3387
|
post: { path: never, params: never, body: LCUTypes.SanitizerSanitizeRequest, response: LCUTypes.SanitizerSanitizeResponse }
|
|
3375
3388
|
},
|
|
3389
|
+
"/services-api/config/v1/client-config": {
|
|
3390
|
+
post: { path: never, params: never, body: unknown, response: void }
|
|
3391
|
+
},
|
|
3392
|
+
"/services-api/config/v2/client-config/{prefix}/{scope}": {
|
|
3393
|
+
post: { path: [prefix: string, scope: string], params: never, body: unknown, response: void }
|
|
3394
|
+
},
|
|
3395
|
+
"/services-api/riot-message-service/v1/data": {
|
|
3396
|
+
post: { path: never, params: never, body: unknown, response: void }
|
|
3397
|
+
},
|
|
3376
3398
|
"/telemetry/v1/common-data/{key}": {
|
|
3377
3399
|
post: { path: [key: string], params: never, body: string, response: void }
|
|
3378
3400
|
},
|
|
@@ -3464,7 +3486,7 @@ export interface LCUEndpoints {
|
|
|
3464
3486
|
put: { path: never, params: never, body: string, response: unknown }
|
|
3465
3487
|
},
|
|
3466
3488
|
"/lol-lobby/v2/lobby/strawberryMapId": {
|
|
3467
|
-
put: { path: never, params: never, body:
|
|
3489
|
+
put: { path: never, params: never, body: LCUTypes.LolLobbyStrawberryMapUpdateDto, response: void }
|
|
3468
3490
|
},
|
|
3469
3491
|
"/lol-lobby/v2/lobby/subteamData": {
|
|
3470
3492
|
put: { path: never, params: never, body: LCUTypes.LolLobbySubteamDataDto, response: void }
|
|
@@ -3535,6 +3557,9 @@ export interface LCUEndpoints {
|
|
|
3535
3557
|
"/lol-tft-pass/v1/pass/{id}/milestone/claimAllRewards": {
|
|
3536
3558
|
put: { path: [id: string], params: never, body: never, response: void }
|
|
3537
3559
|
},
|
|
3560
|
+
"/lol-tft-team-planner/v1/sets/save-all": {
|
|
3561
|
+
put: { path: never, params: never, body: never, response: unknown }
|
|
3562
|
+
},
|
|
3538
3563
|
"/lol-tft-team-planner/v1/team": {
|
|
3539
3564
|
put: { path: never, params: never, body: never, response: unknown }
|
|
3540
3565
|
},
|
|
@@ -3553,6 +3578,9 @@ export interface LCUEndpoints {
|
|
|
3553
3578
|
"/services-api/game-session/v1/game-session-token": {
|
|
3554
3579
|
put: { path: never, params: never, body: string, response: void }
|
|
3555
3580
|
},
|
|
3581
|
+
"/services-api/identity/v1/player-alias": {
|
|
3582
|
+
put: { path: never, params: never, body: unknown, response: void }
|
|
3583
|
+
},
|
|
3556
3584
|
"/Subscribe": {
|
|
3557
3585
|
post: { path: never, params: { "eventName": string, "format"?: LCUTypes.RemotingSerializedFormat }, body: never, response: unknown }
|
|
3558
3586
|
},
|
package/lcu-events.d.ts
CHANGED
|
@@ -18,7 +18,6 @@ export interface LCUWebSocketEvents {
|
|
|
18
18
|
"OnJsonApiEvent_client-config_v1_status": LCUTypes.PluginResourceEvent,
|
|
19
19
|
"OnJsonApiEvent_client-config_v2_config": LCUTypes.PluginResourceEvent,
|
|
20
20
|
"OnJsonApiEvent_client-config_v2_namespace": LCUTypes.PluginResourceEvent,
|
|
21
|
-
"OnJsonApiEvent_config_v1_config": LCUTypes.PluginResourceEvent,
|
|
22
21
|
"OnJsonApiEvent_data-store_v1_install-settings": LCUTypes.PluginResourceEvent,
|
|
23
22
|
"OnJsonApiEvent_data-store_v1_system-settings": LCUTypes.PluginResourceEvent,
|
|
24
23
|
"OnJsonApiEvent_deep-links_v1_settings": LCUTypes.PluginResourceEvent,
|
|
@@ -28,11 +27,8 @@ export interface LCUWebSocketEvents {
|
|
|
28
27
|
"OnJsonApiEvent_lol-account-verification_v1_is-verified": LCUTypes.PluginResourceEvent,
|
|
29
28
|
"OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
|
|
30
29
|
"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,
|
|
33
30
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
34
31
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
35
|
-
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
36
32
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
37
33
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
38
34
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -47,6 +43,7 @@ export interface LCUWebSocketEvents {
|
|
|
47
43
|
"OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
|
|
48
44
|
"OnJsonApiEvent_lol-champ-select_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
49
45
|
"OnJsonApiEvent_lol-champion-mastery_v1_local-player": LCUTypes.PluginResourceEvent,
|
|
46
|
+
"OnJsonApiEvent_lol-champion-mastery_v1_ready": LCUTypes.PluginResourceEvent,
|
|
50
47
|
"OnJsonApiEvent_lol-champions_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
51
48
|
"OnJsonApiEvent_lol-champions_v1_owned-champions-minimal": LCUTypes.PluginResourceEvent,
|
|
52
49
|
"OnJsonApiEvent_lol-chat_v1_blocked-players": LCUTypes.PluginResourceEvent,
|
|
@@ -57,7 +54,6 @@ export interface LCUWebSocketEvents {
|
|
|
57
54
|
"OnJsonApiEvent_lol-chat_v1_friend-requests": LCUTypes.PluginResourceEvent,
|
|
58
55
|
"OnJsonApiEvent_lol-chat_v1_friends": LCUTypes.PluginResourceEvent,
|
|
59
56
|
"OnJsonApiEvent_lol-chat_v1_me": LCUTypes.PluginResourceEvent,
|
|
60
|
-
"OnJsonApiEvent_lol-chat_v1_player-mutes": LCUTypes.PluginResourceEvent,
|
|
61
57
|
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
62
58
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
63
59
|
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
@@ -76,7 +72,6 @@ export interface LCUWebSocketEvents {
|
|
|
76
72
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
77
73
|
"OnJsonApiEvent_lol-client-config_v3_client-config": LCUTypes.PluginResourceEvent,
|
|
78
74
|
"OnJsonApiEvent_lol-collections_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
79
|
-
"OnJsonApiEvent_lol-content-targeting_v1_filters": LCUTypes.PluginResourceEvent,
|
|
80
75
|
"OnJsonApiEvent_lol-cosmetics_v1_favorites": LCUTypes.PluginResourceEvent,
|
|
81
76
|
"OnJsonApiEvent_lol-cosmetics_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
82
77
|
"OnJsonApiEvent_lol-drops_v1_ready": LCUTypes.PluginResourceEvent,
|
|
@@ -100,7 +95,6 @@ export interface LCUWebSocketEvents {
|
|
|
100
95
|
"OnJsonApiEvent_lol-game-settings_v1_game-settings": LCUTypes.PluginResourceEvent,
|
|
101
96
|
"OnJsonApiEvent_lol-game-settings_v1_input-settings": LCUTypes.PluginResourceEvent,
|
|
102
97
|
"OnJsonApiEvent_lol-game-settings_v1_ready": LCUTypes.PluginResourceEvent,
|
|
103
|
-
"OnJsonApiEvent_lol-gameflow_v1_active-patcher-lock": LCUTypes.PluginResourceEvent,
|
|
104
98
|
"OnJsonApiEvent_lol-gameflow_v1_availability": LCUTypes.PluginResourceEvent,
|
|
105
99
|
"OnJsonApiEvent_lol-gameflow_v1_battle-training": LCUTypes.PluginResourceEvent,
|
|
106
100
|
"OnJsonApiEvent_lol-gameflow_v1_early-exit-notifications": LCUTypes.PluginResourceEvent,
|
|
@@ -142,12 +136,11 @@ export interface LCUWebSocketEvents {
|
|
|
142
136
|
"OnJsonApiEvent_lol-lobby-team-builder_champ-select_v1": LCUTypes.PluginResourceEvent,
|
|
143
137
|
"OnJsonApiEvent_lol-lobby-team-builder_v1_matchmaking": LCUTypes.PluginResourceEvent,
|
|
144
138
|
"OnJsonApiEvent_lol-lobby_v1_lobby": LCUTypes.PluginResourceEvent,
|
|
145
|
-
"OnJsonApiEvent_lol-lobby_v1_parties": LCUTypes.PluginResourceEvent,
|
|
146
|
-
"OnJsonApiEvent_lol-lobby_v1_party-rewards": LCUTypes.PluginResourceEvent,
|
|
147
139
|
"OnJsonApiEvent_lol-lobby_v2_comms": LCUTypes.PluginResourceEvent,
|
|
148
140
|
"OnJsonApiEvent_lol-lobby_v2_eligibility": LCUTypes.PluginResourceEvent,
|
|
149
141
|
"OnJsonApiEvent_lol-lobby_v2_lobby": LCUTypes.PluginResourceEvent,
|
|
150
|
-
"OnJsonApiEvent_lol-
|
|
142
|
+
"OnJsonApiEvent_lol-lock-and-load_v1_should-show-progress-bar-text": LCUTypes.PluginResourceEvent,
|
|
143
|
+
"OnJsonApiEvent_lol-lock-and-load_v1_should-wait-for-home-hubs": LCUTypes.PluginResourceEvent,
|
|
151
144
|
"OnJsonApiEvent_lol-login_v1_login-connection-state": LCUTypes.PluginResourceEvent,
|
|
152
145
|
"OnJsonApiEvent_lol-login_v1_login-data-packet": LCUTypes.PluginResourceEvent,
|
|
153
146
|
"OnJsonApiEvent_lol-login_v1_login-in-game-creds": LCUTypes.PluginResourceEvent,
|
|
@@ -387,6 +380,7 @@ export interface LCUWebSocketEvents {
|
|
|
387
380
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_FIRSTBLOOD": LCUTypes.PluginResourceEvent,
|
|
388
381
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_FIRSTBLOOD_1x1": LCUTypes.PluginResourceEvent,
|
|
389
382
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_FIRSTBLOOD_2x2": LCUTypes.PluginResourceEvent,
|
|
383
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_FIVE_YEAR_ANNIVERSARY_TFT": LCUTypes.PluginResourceEvent,
|
|
390
384
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_GAMEMODEX": LCUTypes.PluginResourceEvent,
|
|
391
385
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_HEXAKILL": LCUTypes.PluginResourceEvent,
|
|
392
386
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO": LCUTypes.PluginResourceEvent,
|
|
@@ -408,6 +402,7 @@ export interface LCUWebSocketEvents {
|
|
|
408
402
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ONEFORALL": LCUTypes.PluginResourceEvent,
|
|
409
403
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ONEFORALL_5x5": LCUTypes.PluginResourceEvent,
|
|
410
404
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_PRACTICETOOL": LCUTypes.PluginResourceEvent,
|
|
405
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_PVE_PUZZLE_TFT": LCUTypes.PluginResourceEvent,
|
|
411
406
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_SR": LCUTypes.PluginResourceEvent,
|
|
412
407
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_TT": LCUTypes.PluginResourceEvent,
|
|
413
408
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_PREMADE_3x3": LCUTypes.PluginResourceEvent,
|
|
@@ -424,6 +419,7 @@ export interface LCUWebSocketEvents {
|
|
|
424
419
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SIEGE": LCUTypes.PluginResourceEvent,
|
|
425
420
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SNOWURF": LCUTypes.PluginResourceEvent,
|
|
426
421
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SR_6x6": LCUTypes.PluginResourceEvent,
|
|
422
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_STRAWBERRY": LCUTypes.PluginResourceEvent,
|
|
427
423
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_TFT": LCUTypes.PluginResourceEvent,
|
|
428
424
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_TUTORIAL": LCUTypes.PluginResourceEvent,
|
|
429
425
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_TUTORIAL_MODULE_1": LCUTypes.PluginResourceEvent,
|
|
@@ -1220,6 +1216,7 @@ export interface LCUWebSocketEvents {
|
|
|
1220
1216
|
"OnJsonApiEvent_lol-rewards_v1_groups": LCUTypes.PluginResourceEvent,
|
|
1221
1217
|
"OnJsonApiEvent_lol-rso-auth_configuration_v3": LCUTypes.PluginResourceEvent,
|
|
1222
1218
|
"OnJsonApiEvent_lol-rso-auth_v1_authorization": LCUTypes.PluginResourceEvent,
|
|
1219
|
+
"OnJsonApiEvent_lol-service-status_v1_ticker-messages": LCUTypes.PluginResourceEvent,
|
|
1223
1220
|
"OnJsonApiEvent_lol-settings_v1_account": LCUTypes.PluginResourceEvent,
|
|
1224
1221
|
"OnJsonApiEvent_lol-settings_v1_local": LCUTypes.PluginResourceEvent,
|
|
1225
1222
|
"OnJsonApiEvent_lol-settings_v2_account": LCUTypes.PluginResourceEvent,
|
|
@@ -1238,7 +1235,7 @@ export interface LCUWebSocketEvents {
|
|
|
1238
1235
|
"OnJsonApiEvent_lol-summoner_v1_status": LCUTypes.PluginResourceEvent,
|
|
1239
1236
|
"OnJsonApiEvent_lol-summoner_v1_summoner-requests-ready": LCUTypes.PluginResourceEvent,
|
|
1240
1237
|
"OnJsonApiEvent_lol-tastes_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1241
|
-
"OnJsonApiEvent_lol-tft-
|
|
1238
|
+
"OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
|
|
1242
1239
|
"OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
|
|
1243
1240
|
"OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
|
|
1244
1241
|
"OnJsonApiEvent_lol-tft-team-planner_v1_team": LCUTypes.PluginResourceEvent,
|
package/lcu-types.d.ts
CHANGED
|
@@ -985,7 +985,9 @@ export interface LcdsBotParticipant {
|
|
|
985
985
|
summonerInternalName: string
|
|
986
986
|
/** @format int32 */
|
|
987
987
|
botSkillLevel: number
|
|
988
|
+
botDifficulty: string
|
|
988
989
|
position: string
|
|
990
|
+
botUuid: string
|
|
989
991
|
teamId: string
|
|
990
992
|
}
|
|
991
993
|
|
|
@@ -1147,6 +1149,7 @@ export interface LcdsPlayerGcoTokens {
|
|
|
1147
1149
|
idToken: string
|
|
1148
1150
|
summonerToken: string
|
|
1149
1151
|
userInfoJwt: string
|
|
1152
|
+
entitlementsToken: string
|
|
1150
1153
|
}
|
|
1151
1154
|
|
|
1152
1155
|
export interface LcdsPlayerParticipant {
|
|
@@ -1156,7 +1159,9 @@ export interface LcdsPlayerParticipant {
|
|
|
1156
1159
|
summonerInternalName: string
|
|
1157
1160
|
/** @format int32 */
|
|
1158
1161
|
botSkillLevel: number
|
|
1162
|
+
botDifficulty: string
|
|
1159
1163
|
position: string
|
|
1164
|
+
botUuid: string
|
|
1160
1165
|
}
|
|
1161
1166
|
|
|
1162
1167
|
export interface LcdsPracticeGameConfig {
|
|
@@ -1546,85 +1551,6 @@ export interface LolBannersTournamentFrameInventoryItem {
|
|
|
1546
1551
|
purchaseDate: string
|
|
1547
1552
|
}
|
|
1548
1553
|
|
|
1549
|
-
export type LolCareerStatsCareerStatsQueueType = "other" | "quickplay5" | "rank3flex" | "blind3" | "aram" | "blind5" | "rank5solo" | "rank5flex" | "draft5"
|
|
1550
|
-
|
|
1551
|
-
export interface LolCareerStatsChampionQueueStatsResponse {
|
|
1552
|
-
/** @format int32 */
|
|
1553
|
-
championId: number
|
|
1554
|
-
queueType: LolCareerStatsCareerStatsQueueType
|
|
1555
|
-
position: LolCareerStatsSummonersRiftPosition
|
|
1556
|
-
rankTier: string
|
|
1557
|
-
stats: unknown
|
|
1558
|
-
}
|
|
1559
|
-
|
|
1560
|
-
export interface LolCareerStatsChampionStatistics {
|
|
1561
|
-
/** @format int32 */
|
|
1562
|
-
championId: number
|
|
1563
|
-
experts: LolCareerStatsExpertPlayer[]
|
|
1564
|
-
queueStats: LolCareerStatsStatisticsByQueue[]
|
|
1565
|
-
}
|
|
1566
|
-
|
|
1567
|
-
export interface LolCareerStatsEntitlementsToken {
|
|
1568
|
-
entitlements: string[]
|
|
1569
|
-
}
|
|
1570
|
-
|
|
1571
|
-
export interface LolCareerStatsExpertPlayer {
|
|
1572
|
-
/** @format int32 */
|
|
1573
|
-
championId: number
|
|
1574
|
-
position: LolCareerStatsSummonersRiftPosition
|
|
1575
|
-
/** @format uint64 */
|
|
1576
|
-
summonerId: number
|
|
1577
|
-
summonerName: string
|
|
1578
|
-
/** @format int32 */
|
|
1579
|
-
numOfGames: number
|
|
1580
|
-
/** @format float */
|
|
1581
|
-
winRate: number
|
|
1582
|
-
/** @format int32 */
|
|
1583
|
-
expertRank: number
|
|
1584
|
-
}
|
|
1585
|
-
|
|
1586
|
-
export interface LolCareerStatsPositionStatistics {
|
|
1587
|
-
position: LolCareerStatsSummonersRiftPosition
|
|
1588
|
-
experts: LolCareerStatsExpertPlayer[]
|
|
1589
|
-
queueStats: LolCareerStatsStatisticsByQueue[]
|
|
1590
|
-
}
|
|
1591
|
-
|
|
1592
|
-
export interface LolCareerStatsPositionStatsQueryRequest {
|
|
1593
|
-
queueType: LolCareerStatsCareerStatsQueueType
|
|
1594
|
-
position: LolCareerStatsSummonersRiftPosition
|
|
1595
|
-
rankTier: string
|
|
1596
|
-
/** @format uint32 */
|
|
1597
|
-
season: number
|
|
1598
|
-
}
|
|
1599
|
-
|
|
1600
|
-
export interface LolCareerStatsStatisticsByQueue {
|
|
1601
|
-
queueType: LolCareerStatsCareerStatsQueueType
|
|
1602
|
-
stats: unknown
|
|
1603
|
-
}
|
|
1604
|
-
|
|
1605
|
-
export interface LolCareerStatsStatisticsPercentilesResponse {
|
|
1606
|
-
/** @format int32 */
|
|
1607
|
-
championId: number
|
|
1608
|
-
queueType: LolCareerStatsCareerStatsQueueType
|
|
1609
|
-
position: LolCareerStatsSummonersRiftPosition
|
|
1610
|
-
rankTier: string
|
|
1611
|
-
/** @format uint32 */
|
|
1612
|
-
season: number
|
|
1613
|
-
stats: unknown
|
|
1614
|
-
}
|
|
1615
|
-
|
|
1616
|
-
export interface LolCareerStatsStatsQueryRequest {
|
|
1617
|
-
/** @format int32 */
|
|
1618
|
-
championId: number
|
|
1619
|
-
queueType: LolCareerStatsCareerStatsQueueType
|
|
1620
|
-
position: LolCareerStatsSummonersRiftPosition
|
|
1621
|
-
rankTier: string
|
|
1622
|
-
/** @format uint32 */
|
|
1623
|
-
season: number
|
|
1624
|
-
}
|
|
1625
|
-
|
|
1626
|
-
export type LolCareerStatsSummonersRiftPosition = "SUPPORT" | "BOTTOM" | "MID" | "JUNGLE" | "TOP" | "UNKNOWN" | "ALL"
|
|
1627
|
-
|
|
1628
1554
|
export interface LolCatalogBundled {
|
|
1629
1555
|
flexible: boolean
|
|
1630
1556
|
items: LolCatalogBundledItem[]
|
|
@@ -1681,6 +1607,7 @@ export interface LolCatalogCatalogPluginItem {
|
|
|
1681
1607
|
subTitle: string
|
|
1682
1608
|
description: string
|
|
1683
1609
|
imagePath: string
|
|
1610
|
+
tilePath: string
|
|
1684
1611
|
/** @format uint64 */
|
|
1685
1612
|
purchaseDate: number
|
|
1686
1613
|
/** @format uint64 */
|
|
@@ -1790,6 +1717,13 @@ export interface LolCatalogGameDataItemReference {
|
|
|
1790
1717
|
contentId: string
|
|
1791
1718
|
}
|
|
1792
1719
|
|
|
1720
|
+
export interface LolCatalogGameDataRegaliaBanner {
|
|
1721
|
+
id: string
|
|
1722
|
+
idSecondary: string
|
|
1723
|
+
assetPath: string
|
|
1724
|
+
localizedName: string
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1793
1727
|
export interface LolCatalogGameDataSkinAugment {
|
|
1794
1728
|
/** @format int32 */
|
|
1795
1729
|
itemId: number
|
|
@@ -2325,7 +2259,6 @@ export interface LolChampSelectChampGridChampion {
|
|
|
2325
2259
|
masteryPoints: number
|
|
2326
2260
|
/** @format int32 */
|
|
2327
2261
|
masteryLevel: number
|
|
2328
|
-
masteryChestGranted: boolean
|
|
2329
2262
|
selectionStatus: LolChampSelectChampionSelection
|
|
2330
2263
|
positionsFavorited: string[]
|
|
2331
2264
|
}
|
|
@@ -2555,6 +2488,15 @@ export interface LolChampSelectChampSelectTradeNotification {
|
|
|
2555
2488
|
|
|
2556
2489
|
export type LolChampSelectChampSelectTradeState = "ACCEPTED" | "CANCELLED" | "DECLINED" | "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
2557
2490
|
|
|
2491
|
+
export interface LolChampSelectChampionMastery {
|
|
2492
|
+
/** @format int32 */
|
|
2493
|
+
championId: number
|
|
2494
|
+
/** @format int32 */
|
|
2495
|
+
championLevel: number
|
|
2496
|
+
/** @format int32 */
|
|
2497
|
+
championPoints: number
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2558
2500
|
export interface LolChampSelectChampionQuestSkinInfo {
|
|
2559
2501
|
splashPath: string
|
|
2560
2502
|
tilePath: string
|
|
@@ -2599,19 +2541,10 @@ export interface LolChampSelectCollectionsChampionChroma {
|
|
|
2599
2541
|
ownership: LolChampSelectCollectionsOwnership
|
|
2600
2542
|
disabled: boolean
|
|
2601
2543
|
stillObtainable: boolean
|
|
2544
|
+
skinAugments: LolChampSelectChampionSkinAugments
|
|
2602
2545
|
colors: string[]
|
|
2603
2546
|
}
|
|
2604
2547
|
|
|
2605
|
-
export interface LolChampSelectCollectionsChampionMastery {
|
|
2606
|
-
/** @format int32 */
|
|
2607
|
-
championId: number
|
|
2608
|
-
/** @format int32 */
|
|
2609
|
-
championLevel: number
|
|
2610
|
-
/** @format int32 */
|
|
2611
|
-
championPoints: number
|
|
2612
|
-
chestGranted: boolean
|
|
2613
|
-
}
|
|
2614
|
-
|
|
2615
2548
|
export interface LolChampSelectCollectionsChampionMinimal {
|
|
2616
2549
|
banVoPath: string
|
|
2617
2550
|
chooseVoPath: string
|
|
@@ -2638,9 +2571,9 @@ export interface LolChampSelectCollectionsChampionQuestSkin {
|
|
|
2638
2571
|
isBase: boolean
|
|
2639
2572
|
disabled: boolean
|
|
2640
2573
|
stillObtainable: boolean
|
|
2574
|
+
skinAugments: LolChampSelectChampionSkinAugments
|
|
2641
2575
|
splashPath: string
|
|
2642
2576
|
tilePath: string
|
|
2643
|
-
skinAugments: LolChampSelectChampionSkinAugments
|
|
2644
2577
|
/** @format uint64 */
|
|
2645
2578
|
stage: number
|
|
2646
2579
|
shortName: string
|
|
@@ -2658,9 +2591,9 @@ export interface LolChampSelectCollectionsChampionSkin {
|
|
|
2658
2591
|
isBase: boolean
|
|
2659
2592
|
disabled: boolean
|
|
2660
2593
|
stillObtainable: boolean
|
|
2594
|
+
skinAugments: LolChampSelectChampionSkinAugments
|
|
2661
2595
|
splashPath: string
|
|
2662
2596
|
tilePath: string
|
|
2663
|
-
skinAugments: LolChampSelectChampionSkinAugments
|
|
2664
2597
|
chromas: LolChampSelectCollectionsChampionChroma[]
|
|
2665
2598
|
questSkinInfo: LolChampSelectChampionQuestSkinInfo
|
|
2666
2599
|
emblems: LolChampSelectCollectionsChampionSkinEmblem[]
|
|
@@ -2695,9 +2628,9 @@ export interface LolChampSelectCollectionsChampionSkinMinimal {
|
|
|
2695
2628
|
isBase: boolean
|
|
2696
2629
|
disabled: boolean
|
|
2697
2630
|
stillObtainable: boolean
|
|
2631
|
+
skinAugments: LolChampSelectChampionSkinAugments
|
|
2698
2632
|
splashPath: string
|
|
2699
2633
|
tilePath: string
|
|
2700
|
-
skinAugments: LolChampSelectChampionSkinAugments
|
|
2701
2634
|
}
|
|
2702
2635
|
|
|
2703
2636
|
export interface LolChampSelectCollectionsOwnership {
|
|
@@ -3087,7 +3020,6 @@ export interface LolChampionMasteryChampionMastery {
|
|
|
3087
3020
|
championPointsUntilNextLevel: number
|
|
3088
3021
|
/** @format int32 */
|
|
3089
3022
|
markRequiredForNextLevel: number
|
|
3090
|
-
chestGranted: boolean
|
|
3091
3023
|
/** @format int32 */
|
|
3092
3024
|
tokensEarned: number
|
|
3093
3025
|
/** @format int32 */
|
|
@@ -3209,6 +3141,8 @@ export interface LolChampionMasterySeasonMilestoneRequireAndRewards {
|
|
|
3209
3141
|
export interface LolChampionMasterySetRewardEntry {
|
|
3210
3142
|
id: string
|
|
3211
3143
|
type: string
|
|
3144
|
+
/** @format int32 */
|
|
3145
|
+
value: number
|
|
3212
3146
|
}
|
|
3213
3147
|
|
|
3214
3148
|
export interface LolChampionMasteryTopChampionMasteries {
|
|
@@ -3291,6 +3225,7 @@ export interface LolChampionsCollectionsChampionChroma {
|
|
|
3291
3225
|
disabled: boolean
|
|
3292
3226
|
stillObtainable: boolean
|
|
3293
3227
|
lastSelected: boolean
|
|
3228
|
+
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
3294
3229
|
colors: string[]
|
|
3295
3230
|
}
|
|
3296
3231
|
|
|
@@ -3342,9 +3277,9 @@ export interface LolChampionsCollectionsChampionQuestSkin {
|
|
|
3342
3277
|
disabled: boolean
|
|
3343
3278
|
stillObtainable: boolean
|
|
3344
3279
|
lastSelected: boolean
|
|
3280
|
+
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
3345
3281
|
splashPath: string
|
|
3346
3282
|
tilePath: string
|
|
3347
|
-
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
3348
3283
|
/** @format uint64 */
|
|
3349
3284
|
stage: number
|
|
3350
3285
|
description: string
|
|
@@ -3367,9 +3302,9 @@ export interface LolChampionsCollectionsChampionSkin {
|
|
|
3367
3302
|
disabled: boolean
|
|
3368
3303
|
stillObtainable: boolean
|
|
3369
3304
|
lastSelected: boolean
|
|
3305
|
+
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
3370
3306
|
splashPath: string
|
|
3371
3307
|
tilePath: string
|
|
3372
|
-
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
3373
3308
|
chromas: LolChampionsCollectionsChampionChroma[]
|
|
3374
3309
|
questSkinInfo: LolChampionsChampionQuestSkinInfo
|
|
3375
3310
|
emblems: LolChampionsCollectionsChampionSkinEmblem[]
|
|
@@ -3426,9 +3361,9 @@ export interface LolChampionsCollectionsChampionSkinMinimal {
|
|
|
3426
3361
|
disabled: boolean
|
|
3427
3362
|
stillObtainable: boolean
|
|
3428
3363
|
lastSelected: boolean
|
|
3364
|
+
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
3429
3365
|
splashPath: string
|
|
3430
3366
|
tilePath: string
|
|
3431
|
-
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
3432
3367
|
}
|
|
3433
3368
|
|
|
3434
3369
|
export interface LolChampionsCollectionsChampionSpell {
|
|
@@ -3483,6 +3418,7 @@ export interface LolChampionsGameDataChampionChroma {
|
|
|
3483
3418
|
id: number
|
|
3484
3419
|
colors: string[]
|
|
3485
3420
|
chromaPath: string
|
|
3421
|
+
skinAugments: LolChampionsCollectionsChampionSkinAugments
|
|
3486
3422
|
}
|
|
3487
3423
|
|
|
3488
3424
|
export interface LolChampionsGameDataChampionQuestSkin {
|
|
@@ -5417,17 +5353,14 @@ export interface LolCollectionsAccountIdAndSummonerId {
|
|
|
5417
5353
|
summonerId: number
|
|
5418
5354
|
}
|
|
5419
5355
|
|
|
5420
|
-
export interface
|
|
5356
|
+
export interface LolCollectionsChampionMastery {
|
|
5421
5357
|
puuid: string
|
|
5422
|
-
/** @format uint64 */
|
|
5423
|
-
playerId: number
|
|
5424
5358
|
/** @format int32 */
|
|
5425
5359
|
championId: number
|
|
5426
5360
|
/** @format int32 */
|
|
5427
5361
|
championLevel: number
|
|
5428
5362
|
/** @format int32 */
|
|
5429
5363
|
championPoints: number
|
|
5430
|
-
formattedChampionPoints: string
|
|
5431
5364
|
/** @format uint64 */
|
|
5432
5365
|
lastPlayTime: number
|
|
5433
5366
|
/** @format int32 */
|
|
@@ -5435,10 +5368,14 @@ export interface LolCollectionsCollectionsChampionMastery {
|
|
|
5435
5368
|
/** @format int32 */
|
|
5436
5369
|
championPointsUntilNextLevel: number
|
|
5437
5370
|
/** @format int32 */
|
|
5371
|
+
markRequiredForNextLevel: number
|
|
5372
|
+
/** @format int32 */
|
|
5438
5373
|
tokensEarned: number
|
|
5439
|
-
|
|
5374
|
+
/** @format int32 */
|
|
5375
|
+
championSeasonMilestone: number
|
|
5376
|
+
milestoneGrades: string[]
|
|
5377
|
+
nextSeasonMilestone: LolCollectionsSeasonMilestoneRequireAndRewards
|
|
5440
5378
|
highestGrade: string
|
|
5441
|
-
formattedMasteryGoal: string
|
|
5442
5379
|
}
|
|
5443
5380
|
|
|
5444
5381
|
export interface LolCollectionsCollectionsOwnership {
|
|
@@ -5488,15 +5425,6 @@ export interface LolCollectionsCollectionsSummonerSpells {
|
|
|
5488
5425
|
spells: number[]
|
|
5489
5426
|
}
|
|
5490
5427
|
|
|
5491
|
-
export interface LolCollectionsCollectionsTopChampionMasteries {
|
|
5492
|
-
puuid: string
|
|
5493
|
-
/** @format uint64 */
|
|
5494
|
-
summonerId: number
|
|
5495
|
-
/** @format uint64 */
|
|
5496
|
-
score: number
|
|
5497
|
-
masteries: LolCollectionsCollectionsChampionMastery[]
|
|
5498
|
-
}
|
|
5499
|
-
|
|
5500
5428
|
export interface LolCollectionsCollectionsWardSkin {
|
|
5501
5429
|
/** @format int64 */
|
|
5502
5430
|
id: number
|
|
@@ -5681,6 +5609,20 @@ export interface LolCollectionsPlayerNotification {
|
|
|
5681
5609
|
type: string
|
|
5682
5610
|
}
|
|
5683
5611
|
|
|
5612
|
+
export interface LolCollectionsRewardConfigurationEntry {
|
|
5613
|
+
rewardValue: string
|
|
5614
|
+
/** @format int32 */
|
|
5615
|
+
maximumReward: number
|
|
5616
|
+
}
|
|
5617
|
+
|
|
5618
|
+
export interface LolCollectionsSeasonMilestoneRequireAndRewards {
|
|
5619
|
+
requireGradeCounts: Record<string, number>
|
|
5620
|
+
/** @format uint16 */
|
|
5621
|
+
rewardMarks: number
|
|
5622
|
+
bonus: boolean
|
|
5623
|
+
rewardConfig: LolCollectionsRewardConfigurationEntry
|
|
5624
|
+
}
|
|
5625
|
+
|
|
5684
5626
|
export interface LolCollectionsSummoner {
|
|
5685
5627
|
/** @format uint64 */
|
|
5686
5628
|
summonerId: number
|
|
@@ -5704,22 +5646,18 @@ export interface LolCollectionsSummonerProfileUpdate {
|
|
|
5704
5646
|
value: unknown
|
|
5705
5647
|
}
|
|
5706
5648
|
|
|
5707
|
-
export interface
|
|
5649
|
+
export interface LolCollectionsTopChampionMasteries {
|
|
5650
|
+
puuid: string
|
|
5708
5651
|
/** @format uint64 */
|
|
5709
5652
|
summonerId: number
|
|
5653
|
+
/** @format uint64 */
|
|
5654
|
+
score: number
|
|
5655
|
+
masteries: LolCollectionsChampionMastery[]
|
|
5710
5656
|
}
|
|
5711
5657
|
|
|
5712
|
-
export interface
|
|
5713
|
-
/** @format uint64 */
|
|
5714
|
-
playerId: number
|
|
5715
|
-
/** @format int32 */
|
|
5716
|
-
championId: number
|
|
5717
|
-
/** @format int32 */
|
|
5718
|
-
championLevel: number
|
|
5719
|
-
/** @format int32 */
|
|
5720
|
-
championPoints: number
|
|
5658
|
+
export interface LolContentTargetingAccountIdAndSummonerId {
|
|
5721
5659
|
/** @format uint64 */
|
|
5722
|
-
|
|
5660
|
+
summonerId: number
|
|
5723
5661
|
}
|
|
5724
5662
|
|
|
5725
5663
|
export interface LolContentTargetingContentTargetingFilterResponse {
|
|
@@ -7380,13 +7318,14 @@ export interface LolEventHubEventHubError {
|
|
|
7380
7318
|
errorId: string
|
|
7381
7319
|
}
|
|
7382
7320
|
|
|
7383
|
-
export type LolEventHubEventHubType = "
|
|
7321
|
+
export type LolEventHubEventHubType = "HallOfLegends" | "EventShop"
|
|
7384
7322
|
|
|
7385
7323
|
export interface LolEventHubEventInfoUIData {
|
|
7386
7324
|
eventId: string
|
|
7387
7325
|
eventName: string
|
|
7388
7326
|
eventType: string
|
|
7389
7327
|
eventIcon: string
|
|
7328
|
+
navBarIcon: string
|
|
7390
7329
|
eventTokenImage: string
|
|
7391
7330
|
/** @format int32 */
|
|
7392
7331
|
currentTokenBalance: number
|
|
@@ -7401,6 +7340,13 @@ export interface LolEventHubEventInfoUIData {
|
|
|
7401
7340
|
tokenBundles: LolEventHubCatalogEntry[]
|
|
7402
7341
|
}
|
|
7403
7342
|
|
|
7343
|
+
export interface LolEventHubEventOverrideData {
|
|
7344
|
+
eventActive: boolean
|
|
7345
|
+
eventStartDate: string
|
|
7346
|
+
eventProgressEndDate: string
|
|
7347
|
+
eventEndDate: string
|
|
7348
|
+
}
|
|
7349
|
+
|
|
7404
7350
|
export interface LolEventHubEventPassInfo {
|
|
7405
7351
|
eventId: string
|
|
7406
7352
|
isPassPurchased: boolean
|
|
@@ -7461,6 +7407,7 @@ export interface LolEventHubExternalCatalogPluginItem {
|
|
|
7461
7407
|
subTitle: string
|
|
7462
7408
|
description: string
|
|
7463
7409
|
imagePath: string
|
|
7410
|
+
tilePath: string
|
|
7464
7411
|
/** @format uint64 */
|
|
7465
7412
|
purchaseDate: number
|
|
7466
7413
|
/** @format uint64 */
|
|
@@ -7879,6 +7826,15 @@ export interface LolEventHubNavigationButtonUIData {
|
|
|
7879
7826
|
showPip: boolean
|
|
7880
7827
|
showGlow: boolean
|
|
7881
7828
|
iconPath: string
|
|
7829
|
+
eventName: string
|
|
7830
|
+
}
|
|
7831
|
+
|
|
7832
|
+
export interface LolEventHubNextRewardUIData {
|
|
7833
|
+
thumbIconPath: string
|
|
7834
|
+
state: LolEventHubRewardTrackItemHeaderType
|
|
7835
|
+
name: string
|
|
7836
|
+
description: string
|
|
7837
|
+
level: string
|
|
7882
7838
|
}
|
|
7883
7839
|
|
|
7884
7840
|
export interface LolEventHubOffer {
|
|
@@ -8414,6 +8370,16 @@ export interface LolEventHubTokenUpsell {
|
|
|
8414
8370
|
|
|
8415
8371
|
export type LolEventHubTokenUpsellLockedType = "UNLOCKED" | "LOCKED" | "UNASSIGNED"
|
|
8416
8372
|
|
|
8373
|
+
export interface LolEventHubTrackProgressNextReward {
|
|
8374
|
+
/** @format int64 */
|
|
8375
|
+
currentXP: number
|
|
8376
|
+
/** @format int64 */
|
|
8377
|
+
nextLevelXP: number
|
|
8378
|
+
/** @format int64 */
|
|
8379
|
+
currentLevel: number
|
|
8380
|
+
nextReward: LolEventHubNextRewardUIData
|
|
8381
|
+
}
|
|
8382
|
+
|
|
8417
8383
|
export interface LolEventHubTransaction {
|
|
8418
8384
|
transactionId: string
|
|
8419
8385
|
itemKey: LolEventHubItemKey
|
|
@@ -8768,6 +8734,10 @@ export interface LolGameQueuesQueue {
|
|
|
8768
8734
|
removalFromGameAllowed: boolean
|
|
8769
8735
|
/** @format int32 */
|
|
8770
8736
|
removalFromGameDelayMinutes: number
|
|
8737
|
+
gameSelectModeGroup: string
|
|
8738
|
+
gameSelectCategory: string
|
|
8739
|
+
/** @format uint8 */
|
|
8740
|
+
gameSelectPriority: number
|
|
8771
8741
|
}
|
|
8772
8742
|
|
|
8773
8743
|
export type LolGameQueuesQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -8843,10 +8813,16 @@ export interface LolGameQueuesQueueReward {
|
|
|
8843
8813
|
}
|
|
8844
8814
|
|
|
8845
8815
|
export interface LolGameQueuesQueueTranslation {
|
|
8816
|
+
/** @format int32 */
|
|
8817
|
+
id: number
|
|
8846
8818
|
name: string
|
|
8847
8819
|
shortName: string
|
|
8848
8820
|
description: string
|
|
8849
8821
|
detailedDescription: string
|
|
8822
|
+
gameSelectModeGroup: string
|
|
8823
|
+
gameSelectCategory: string
|
|
8824
|
+
/** @format uint8 */
|
|
8825
|
+
gameSelectPriority: number
|
|
8850
8826
|
}
|
|
8851
8827
|
|
|
8852
8828
|
export interface LolGameSettingsLoginSession {
|
|
@@ -9391,10 +9367,22 @@ export interface LolHonorV2ApiHonorPlayerServerRequest {
|
|
|
9391
9367
|
gameId: number
|
|
9392
9368
|
}
|
|
9393
9369
|
|
|
9370
|
+
export interface LolHonorV2ApiHonorPlayerServerRequestV3 {
|
|
9371
|
+
recipientPuuid: string
|
|
9372
|
+
honorType: string
|
|
9373
|
+
}
|
|
9374
|
+
|
|
9375
|
+
export interface LolHonorV2ApiSubmitBallotRequest {
|
|
9376
|
+
honorRequests: LolHonorV2ApiHonorPlayerServerRequestV3[]
|
|
9377
|
+
}
|
|
9378
|
+
|
|
9394
9379
|
export interface LolHonorV2Ballot {
|
|
9395
|
-
|
|
9380
|
+
eligibleAllies: LolHonorV2EligiblePlayer[]
|
|
9381
|
+
eligibleOpponents: LolHonorV2EligiblePlayer[]
|
|
9382
|
+
votePool: LolHonorV2VotePool
|
|
9396
9383
|
/** @format uint64 */
|
|
9397
9384
|
gameId: number
|
|
9385
|
+
honoredPlayers: LolHonorV2ApiHonorPlayerServerRequestV3[]
|
|
9398
9386
|
}
|
|
9399
9387
|
|
|
9400
9388
|
export interface LolHonorV2DynamicHonorMessage {
|
|
@@ -9410,6 +9398,7 @@ export interface LolHonorV2EligiblePlayer {
|
|
|
9410
9398
|
summonerName: string
|
|
9411
9399
|
championName: string
|
|
9412
9400
|
skinSplashPath: string
|
|
9401
|
+
role: string
|
|
9413
9402
|
}
|
|
9414
9403
|
|
|
9415
9404
|
export interface LolHonorV2EndOfGamePlayer {
|
|
@@ -9423,12 +9412,14 @@ export interface LolHonorV2EndOfGamePlayer {
|
|
|
9423
9412
|
summonerId: number
|
|
9424
9413
|
skinSplashPath: string
|
|
9425
9414
|
championName: string
|
|
9415
|
+
detectedTeamPosition: string
|
|
9426
9416
|
}
|
|
9427
9417
|
|
|
9428
9418
|
export interface LolHonorV2EndOfGameStats {
|
|
9429
9419
|
/** @format uint64 */
|
|
9430
9420
|
gameId: number
|
|
9431
9421
|
gameType: string
|
|
9422
|
+
gameMutators: string[]
|
|
9432
9423
|
invalid: boolean
|
|
9433
9424
|
queueType: string
|
|
9434
9425
|
ranked: boolean
|
|
@@ -9470,6 +9461,7 @@ export interface LolHonorV2HonorConfig {
|
|
|
9470
9461
|
HonorVisibilityEnabled: boolean
|
|
9471
9462
|
HonorSuggestionsEnabled: boolean
|
|
9472
9463
|
"honorEndpointsV2Enabled": boolean
|
|
9464
|
+
"ceremonyV3Enabled": boolean
|
|
9473
9465
|
}
|
|
9474
9466
|
|
|
9475
9467
|
export interface LolHonorV2HonorInteraction {
|
|
@@ -9585,6 +9577,19 @@ export interface LolHonorV2VoteCompletion {
|
|
|
9585
9577
|
fullTeamVote: boolean
|
|
9586
9578
|
}
|
|
9587
9579
|
|
|
9580
|
+
export interface LolHonorV2VotePool {
|
|
9581
|
+
/** @format int32 */
|
|
9582
|
+
votes: number
|
|
9583
|
+
/** @format int32 */
|
|
9584
|
+
fromGamePlayed: number
|
|
9585
|
+
/** @format int32 */
|
|
9586
|
+
fromHighHonor: number
|
|
9587
|
+
/** @format int32 */
|
|
9588
|
+
fromRecentHonors: number
|
|
9589
|
+
/** @format int32 */
|
|
9590
|
+
fromRollover: number
|
|
9591
|
+
}
|
|
9592
|
+
|
|
9588
9593
|
export interface LolHovercardAlias {
|
|
9589
9594
|
gameName: string
|
|
9590
9595
|
tagLine: string
|
|
@@ -10179,10 +10184,11 @@ export interface LolLeaverBusterLeaverBusterNotificationResource {
|
|
|
10179
10184
|
punishedGamesRemaining: number
|
|
10180
10185
|
/** @format uint64 */
|
|
10181
10186
|
queueLockoutTimerExpiryUtcMillisDiff: number
|
|
10187
|
+
isWinRequired: boolean
|
|
10182
10188
|
fromRms: boolean
|
|
10183
10189
|
}
|
|
10184
10190
|
|
|
10185
|
-
export type LolLeaverBusterLeaverBusterNotificationType = "RankedRestrictedGames" | "OnLockoutWarning" | "PreLockoutWarning" | "Reforming" | "PunishedGamesRemaining" | "PunishmentIncurred" | "TaintedWarning" | "Invalid"
|
|
10191
|
+
export type LolLeaverBusterLeaverBusterNotificationType = "WinBasedRankedRestrictionsEnabled" | "RankedRestrictedGames" | "OnLockoutWarning" | "PreLockoutWarning" | "Reforming" | "PunishedGamesRemaining" | "PunishmentIncurred" | "TaintedWarning" | "Invalid"
|
|
10186
10192
|
|
|
10187
10193
|
export interface LolLeaverBusterLeaverBusterPenaltyResponse {
|
|
10188
10194
|
puuid: string
|
|
@@ -10235,6 +10241,7 @@ export interface LolLeaverBusterPlayerNotificationResource {
|
|
|
10235
10241
|
export interface LolLeaverBusterRankedRestriction {
|
|
10236
10242
|
/** @format int32 */
|
|
10237
10243
|
punishedGamesRemaining: number
|
|
10244
|
+
isWinRequired: boolean
|
|
10238
10245
|
}
|
|
10239
10246
|
|
|
10240
10247
|
export interface LolLeaverBusterRankedRestrictionEntryDto {
|
|
@@ -10244,6 +10251,7 @@ export interface LolLeaverBusterRankedRestrictionEntryDto {
|
|
|
10244
10251
|
/** @format int32 */
|
|
10245
10252
|
restrictedGamesOriginal: number
|
|
10246
10253
|
rankedRestrictionAckNeeded: boolean
|
|
10254
|
+
winRequired: boolean
|
|
10247
10255
|
}
|
|
10248
10256
|
|
|
10249
10257
|
export interface LolLeaverBusterRankedRestrictionGamesUpdate {
|
|
@@ -10254,6 +10262,7 @@ export interface LolLeaverBusterRankedRestrictionGamesUpdate {
|
|
|
10254
10262
|
export interface LolLeaverBusterRankedRestrictionInfo {
|
|
10255
10263
|
/** @format int32 */
|
|
10256
10264
|
punishedGamesRemaining: number
|
|
10265
|
+
isWinRequired: boolean
|
|
10257
10266
|
needsAck: boolean
|
|
10258
10267
|
}
|
|
10259
10268
|
|
|
@@ -10597,7 +10606,15 @@ export interface LolLobbyEligibilityRestriction {
|
|
|
10597
10606
|
summonerIdsString: string
|
|
10598
10607
|
}
|
|
10599
10608
|
|
|
10600
|
-
export type LolLobbyEligibilityRestrictionCode = "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "LOLNewPlayerRestriction" | "UnknownRestriction" | "SeasonVersionLockout" | "TFTNewPlayerRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerRankSoloOnlyRestriction" | "PlayerTimePlayedRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerTimeBasedRankRestriction" | "PlayerGameBasedRankRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
10609
|
+
export type LolLobbyEligibilityRestrictionCode = "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "MinNormalGamesForRankedRestriction" | "LOLNewPlayerRestriction" | "UnknownRestriction" | "SeasonVersionLockout" | "TFTNewPlayerRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerRankSoloOnlyRestriction" | "PlayerTimePlayedRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerTimeBasedRankRestriction" | "PlayerGameBasedRankRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerReadyCheckFailRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
10610
|
+
|
|
10611
|
+
export interface LolLobbyEntitlementsTokenResource {
|
|
10612
|
+
accessToken: string
|
|
10613
|
+
token: string
|
|
10614
|
+
subject: string
|
|
10615
|
+
issuer: string
|
|
10616
|
+
entitlements: string[]
|
|
10617
|
+
}
|
|
10601
10618
|
|
|
10602
10619
|
export interface LolLobbyFriendAvailabilityAnalytics {
|
|
10603
10620
|
puuid: string
|
|
@@ -10800,6 +10817,7 @@ export interface LolLobbyLobbyBotParams {
|
|
|
10800
10817
|
botDifficulty: LolLobbyLobbyBotDifficulty
|
|
10801
10818
|
teamId: string
|
|
10802
10819
|
position: string
|
|
10820
|
+
botUuid: string
|
|
10803
10821
|
}
|
|
10804
10822
|
|
|
10805
10823
|
export interface LolLobbyLobbyChangeGameDto {
|
|
@@ -11020,6 +11038,7 @@ export interface LolLobbyLobbyMember {
|
|
|
11020
11038
|
/** @format int32 */
|
|
11021
11039
|
botChampionId: number
|
|
11022
11040
|
position: string
|
|
11041
|
+
botUuid: string
|
|
11023
11042
|
}
|
|
11024
11043
|
|
|
11025
11044
|
export interface LolLobbyLobbyNotification {
|
|
@@ -11057,6 +11076,7 @@ export interface LolLobbyLobbyParticipantDto {
|
|
|
11057
11076
|
intraSubteamPosition?: number
|
|
11058
11077
|
tftNPEQueueBypass?: boolean
|
|
11059
11078
|
quickplayPlayerState?: string
|
|
11079
|
+
strawberryMapId?: string
|
|
11060
11080
|
playerSlots: LolLobbyQuickPlayPresetSlotDto[]
|
|
11061
11081
|
ready: boolean
|
|
11062
11082
|
showGhostedBanner: boolean
|
|
@@ -11071,6 +11091,7 @@ export interface LolLobbyLobbyParticipantDto {
|
|
|
11071
11091
|
/** @format int32 */
|
|
11072
11092
|
botChampionId: number
|
|
11073
11093
|
botPosition: string
|
|
11094
|
+
botUuid: string
|
|
11074
11095
|
}
|
|
11075
11096
|
|
|
11076
11097
|
export type LolLobbyLobbyPartyRewardType = "None" | "Icon" | "Ip"
|
|
@@ -11369,6 +11390,10 @@ export interface LolLobbyPremadeRelationshipAnalytics {
|
|
|
11369
11390
|
friendPlayers: string[]
|
|
11370
11391
|
}
|
|
11371
11392
|
|
|
11393
|
+
export interface LolLobbyProductStateDto {
|
|
11394
|
+
isUpToDate: boolean
|
|
11395
|
+
}
|
|
11396
|
+
|
|
11372
11397
|
export interface LolLobbyQueue {
|
|
11373
11398
|
/** @format int32 */
|
|
11374
11399
|
id: number
|
|
@@ -11554,6 +11579,12 @@ export interface LolLobbyServiceProxyPayload {
|
|
|
11554
11579
|
body: string
|
|
11555
11580
|
}
|
|
11556
11581
|
|
|
11582
|
+
export interface LolLobbyStrawberryMapUpdateDto {
|
|
11583
|
+
contentId: string
|
|
11584
|
+
/** @format int32 */
|
|
11585
|
+
itemId: number
|
|
11586
|
+
}
|
|
11587
|
+
|
|
11557
11588
|
export interface LolLobbySubteamDataDto {
|
|
11558
11589
|
/** @format int8 */
|
|
11559
11590
|
subteamIndex: number
|
|
@@ -11868,12 +11899,22 @@ export interface LolLobbyTeamBuilderGameflowGameClient {
|
|
|
11868
11899
|
running: boolean
|
|
11869
11900
|
}
|
|
11870
11901
|
|
|
11902
|
+
export interface LolLobbyTeamBuilderGameflowGameData {
|
|
11903
|
+
queue: LolLobbyTeamBuilderGameflowQueue
|
|
11904
|
+
}
|
|
11905
|
+
|
|
11871
11906
|
export interface LolLobbyTeamBuilderGameflowGameMap {
|
|
11872
11907
|
perPositionRequiredSummonerSpells: Record<string, LolLobbyTeamBuilderGameModeSpellList>
|
|
11873
11908
|
perPositionDisallowedSummonerSpells: Record<string, LolLobbyTeamBuilderGameModeSpellList>
|
|
11874
11909
|
}
|
|
11875
11910
|
|
|
11911
|
+
export interface LolLobbyTeamBuilderGameflowQueue {
|
|
11912
|
+
/** @format int32 */
|
|
11913
|
+
id: number
|
|
11914
|
+
}
|
|
11915
|
+
|
|
11876
11916
|
export interface LolLobbyTeamBuilderGameflowSession {
|
|
11917
|
+
gameData: LolLobbyTeamBuilderGameflowGameData
|
|
11877
11918
|
gameClient: LolLobbyTeamBuilderGameflowGameClient
|
|
11878
11919
|
map: LolLobbyTeamBuilderGameflowGameMap
|
|
11879
11920
|
}
|
|
@@ -13029,6 +13070,7 @@ export interface LolLootRecipeWithMilestones {
|
|
|
13029
13070
|
outputs: LolLootRecipeOutput[]
|
|
13030
13071
|
metadata: LolLootRecipeMetadata
|
|
13031
13072
|
singleOpen: boolean
|
|
13073
|
+
hasVisibleLootOdds: boolean
|
|
13032
13074
|
lootMilestoneIds: string[]
|
|
13033
13075
|
}
|
|
13034
13076
|
|
|
@@ -13360,6 +13402,7 @@ export interface LolMapsMaps {
|
|
|
13360
13402
|
properties: unknown
|
|
13361
13403
|
perPositionRequiredSummonerSpells: Record<string, LolMapsGameModeSpellList>
|
|
13362
13404
|
perPositionDisallowedSummonerSpells: Record<string, LolMapsGameModeSpellList>
|
|
13405
|
+
tftSetOverride: string
|
|
13363
13406
|
}
|
|
13364
13407
|
|
|
13365
13408
|
export interface LolMapsTutorialCard {
|
|
@@ -13936,6 +13979,10 @@ export interface LolMatchHistoryMatchHistoryParticipantStatistics {
|
|
|
13936
13979
|
/** @format int32 */
|
|
13937
13980
|
"playerAugment4": number
|
|
13938
13981
|
/** @format int32 */
|
|
13982
|
+
"playerAugment5": number
|
|
13983
|
+
/** @format int32 */
|
|
13984
|
+
"playerAugment6": number
|
|
13985
|
+
/** @format int32 */
|
|
13939
13986
|
playerSubteamId: number
|
|
13940
13987
|
/** @format int32 */
|
|
13941
13988
|
subteamPlacement: number
|
|
@@ -17639,6 +17686,7 @@ export interface LolRegaliaRegaliaFrontendConfig {
|
|
|
17639
17686
|
export interface LolRegaliaRegaliaInventoryItem {
|
|
17640
17687
|
items: LolRegaliaGameDataRegalia[]
|
|
17641
17688
|
isOwned: boolean
|
|
17689
|
+
purchaseDate: string
|
|
17642
17690
|
}
|
|
17643
17691
|
|
|
17644
17692
|
export interface LolRegaliaRegaliaLoadout {
|
|
@@ -18069,6 +18117,10 @@ export interface LolReplaysGAMHSParticipantStatistics {
|
|
|
18069
18117
|
/** @format int32 */
|
|
18070
18118
|
"playerAugment4": number
|
|
18071
18119
|
/** @format int32 */
|
|
18120
|
+
"playerAugment5": number
|
|
18121
|
+
/** @format int32 */
|
|
18122
|
+
"playerAugment6": number
|
|
18123
|
+
/** @format int32 */
|
|
18072
18124
|
playerSubteamId: number
|
|
18073
18125
|
/** @format int32 */
|
|
18074
18126
|
subteamPlacement: number
|
|
@@ -18186,13 +18238,13 @@ export interface LolReplaysReplaysConfiguration {
|
|
|
18186
18238
|
isLoggedIn: boolean
|
|
18187
18239
|
gameVersion: string
|
|
18188
18240
|
minServerVersion: string
|
|
18189
|
-
/** @format
|
|
18241
|
+
/** @format int32 */
|
|
18190
18242
|
minutesUntilReplayConsideredLost: number
|
|
18191
18243
|
}
|
|
18192
18244
|
|
|
18193
18245
|
export interface LolReplaysReplaysDynamicConfig {
|
|
18194
18246
|
MinSupportedGameServerVersion: string
|
|
18195
|
-
/** @format
|
|
18247
|
+
/** @format int32 */
|
|
18196
18248
|
MinutesUntilReplayConsideredLost: number
|
|
18197
18249
|
}
|
|
18198
18250
|
|
|
@@ -18819,12 +18871,19 @@ export interface LolSpectatorSpectatorConfig {
|
|
|
18819
18871
|
isEnabled: boolean
|
|
18820
18872
|
isSpectatorDelayConfigurable: boolean
|
|
18821
18873
|
isBracketSpectatingEnabled: boolean
|
|
18874
|
+
isUsingClientConfigForSpectator: boolean
|
|
18822
18875
|
spectatableQueues: number[]
|
|
18823
18876
|
}
|
|
18824
18877
|
|
|
18825
18878
|
export interface LolSpectatorSpectatorDynamicConfiguration {
|
|
18826
18879
|
isEnabled: boolean
|
|
18827
18880
|
isSpectatorDelayConfigurable: boolean
|
|
18881
|
+
isUsingOperationalConfig: boolean
|
|
18882
|
+
}
|
|
18883
|
+
|
|
18884
|
+
export interface LolSpectatorSpectatorOperationalConfiguration {
|
|
18885
|
+
enabled: boolean
|
|
18886
|
+
enforceGridSpectating: boolean
|
|
18828
18887
|
}
|
|
18829
18888
|
|
|
18830
18889
|
export interface LolSpectatorSummonerIdAvailability {
|
|
@@ -20652,10 +20711,10 @@ export interface LolTftPassTFTPassAsset {
|
|
|
20652
20711
|
}
|
|
20653
20712
|
|
|
20654
20713
|
export interface LolTftPassTFTPassClientConfig {
|
|
20655
|
-
enabled: boolean
|
|
20656
20714
|
battlePassId: string
|
|
20657
20715
|
eventPassId: string
|
|
20658
20716
|
dailyLoginPassId: string
|
|
20717
|
+
skillTreePassId: string
|
|
20659
20718
|
}
|
|
20660
20719
|
|
|
20661
20720
|
export interface LolTftPassTFTPassDTO {
|
|
@@ -20869,15 +20928,23 @@ export interface LolTftTeamPlannerTFTMapSetData {
|
|
|
20869
20928
|
|
|
20870
20929
|
export interface LolTftTeamPlannerTFTModeData {
|
|
20871
20930
|
mDefaultSet: LolTftTeamPlannerTFTMapSetData
|
|
20931
|
+
mEventSet: LolTftTeamPlannerTFTMapSetData
|
|
20872
20932
|
}
|
|
20873
20933
|
|
|
20874
20934
|
export interface LolTftTeamPlannerTFTTeamPlannerConfig {
|
|
20875
20935
|
enabled: boolean
|
|
20876
20936
|
multipleSetsEnabled: boolean
|
|
20937
|
+
multipleTeamsEnabled: boolean
|
|
20877
20938
|
}
|
|
20878
20939
|
|
|
20879
20940
|
export interface LolTftTeamPlannerTeamPlan {
|
|
20880
20941
|
champions: LolTftTeamPlannerChampion[]
|
|
20942
|
+
id: string
|
|
20943
|
+
title: string
|
|
20944
|
+
/** @format uint64 */
|
|
20945
|
+
timeOfCreationInMs: number
|
|
20946
|
+
/** @format uint64 */
|
|
20947
|
+
timeOfLastViewInMs: number
|
|
20881
20948
|
setName: string
|
|
20882
20949
|
}
|
|
20883
20950
|
|
|
@@ -21972,6 +22039,10 @@ export interface LolYourshopXboxSubscriptionStatus {
|
|
|
21972
22039
|
|
|
21973
22040
|
export interface LolYourshopYourshopConfig {
|
|
21974
22041
|
Active: boolean
|
|
22042
|
+
/** @format double */
|
|
22043
|
+
activationSpreadSeconds: number
|
|
22044
|
+
/** @format double */
|
|
22045
|
+
firstActivationThresholdSeconds: number
|
|
21975
22046
|
ThemedBackground: boolean
|
|
21976
22047
|
PromotionName: string
|
|
21977
22048
|
PromotionStartDate: string
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasagi/types",
|
|
3
|
-
"version": "14.
|
|
4
|
-
"_clientVersion": "14.
|
|
5
|
-
"description": "This package contains
|
|
3
|
+
"version": "14.17.1",
|
|
4
|
+
"_clientVersion": "14.17.614.2229",
|
|
5
|
+
"description": "This package contains auto-generated LCU types and endpoints.",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"update": "node scripts/update-types.mjs"
|
|
7
|
+
"update": "node scripts/update-types.mjs",
|
|
8
|
+
"updateDeps": "npm install @hasagi/core@latest @hasagi/cli@latest",
|
|
9
|
+
"generate": "hasagi schema --swagger ./ --typescript ./"
|
|
8
10
|
},
|
|
9
11
|
"keywords": [
|
|
10
12
|
"hasagi"
|
|
@@ -13,7 +15,7 @@
|
|
|
13
15
|
"license": "MIT",
|
|
14
16
|
"devDependencies": {
|
|
15
17
|
"@hasagi/cli": "^0.9.0",
|
|
16
|
-
"@hasagi/core": "^0.5.
|
|
18
|
+
"@hasagi/core": "^0.5.7",
|
|
17
19
|
"axios": "^1.6.8"
|
|
18
20
|
},
|
|
19
21
|
"exports": {
|
|
@@ -22,6 +24,5 @@
|
|
|
22
24
|
"repository": {
|
|
23
25
|
"type": "git",
|
|
24
26
|
"url": "https://github.com/dysolix/hasagi-types.git"
|
|
25
|
-
}
|
|
26
|
-
"dependencies": {}
|
|
27
|
+
}
|
|
27
28
|
}
|