@hasagi/types 15.3.1 → 15.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lcu-endpoints.d.ts +17 -38
- package/dist/lcu-events.d.ts +6 -51
- package/dist/lcu-types.d.ts +77 -32
- package/package.json +2 -2
package/dist/lcu-endpoints.d.ts
CHANGED
|
@@ -242,6 +242,7 @@ export interface LCUEndpoints {
|
|
|
242
242
|
delete: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
243
243
|
},
|
|
244
244
|
"/lol-tft-team-planner/v1/sets/{set}/teams/{team}/champions": {
|
|
245
|
+
post: { path: [set: string, team: string], params: never, body: string[], response: unknown }
|
|
245
246
|
patch: { path: [set: string, team: string], params: never, body: number[], response: unknown }
|
|
246
247
|
delete: { path: [set: string, team: string], params: never, body: never, response: unknown }
|
|
247
248
|
},
|
|
@@ -253,22 +254,6 @@ export interface LCUEndpoints {
|
|
|
253
254
|
post: { path: [set: string, team: string, championId: string, index: number], params: never, body: never, response: unknown }
|
|
254
255
|
delete: { path: [set: string, team: string, championId: string, index: number], params: never, body: never, response: unknown }
|
|
255
256
|
},
|
|
256
|
-
"/lol-tft-team-planner/v1/team/champions": {
|
|
257
|
-
patch: { path: never, params: never, body: number[], response: unknown }
|
|
258
|
-
delete: { path: never, params: never, body: never, response: unknown }
|
|
259
|
-
},
|
|
260
|
-
"/lol-tft-team-planner/v1/team/championsById/{championName}": {
|
|
261
|
-
post: { path: [championName: string], params: never, body: never, response: unknown }
|
|
262
|
-
delete: { path: [championName: string], params: never, body: never, response: unknown }
|
|
263
|
-
},
|
|
264
|
-
"/lol-tft-team-planner/v1/team/champions/{index}": {
|
|
265
|
-
post: { path: [index: number], params: never, body: string, response: unknown }
|
|
266
|
-
delete: { path: [index: number], params: never, body: never, response: unknown }
|
|
267
|
-
},
|
|
268
|
-
"/lol-tft-team-planner/v1/team/dirty": {
|
|
269
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTeamPlannerTeamPlan }
|
|
270
|
-
delete: { path: never, params: never, body: never, response: unknown }
|
|
271
|
-
},
|
|
272
257
|
"/lol-tft-troves/v1/roll-rewards": {
|
|
273
258
|
get: { path: never, params: never, body: never, response: unknown }
|
|
274
259
|
delete: { path: never, params: never, body: never, response: unknown }
|
|
@@ -1671,6 +1656,10 @@ export interface LCUEndpoints {
|
|
|
1671
1656
|
"/lol-missions/v1/series": {
|
|
1672
1657
|
get: { path: never, params: never, body: never, response: LCUTypes.SeriesDTO[] }
|
|
1673
1658
|
},
|
|
1659
|
+
"/lol-nacho/v1/banner/active": {
|
|
1660
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoNachoBannersResponse }
|
|
1661
|
+
post: { path: never, params: never, body: LCUTypes.LolNachoNachoBannersResponse, response: LCUTypes.LolNachoNachoBannersResponse }
|
|
1662
|
+
},
|
|
1674
1663
|
"/lol-nacho/v1/banner-odds": {
|
|
1675
1664
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoBannerOddsInfo }
|
|
1676
1665
|
},
|
|
@@ -1693,12 +1682,12 @@ export interface LCUEndpoints {
|
|
|
1693
1682
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoNachoPurchaseResponse }
|
|
1694
1683
|
post: { path: never, params: never, body: LCUTypes.LolNachoFinalPurchaseUnitDto[], response: unknown }
|
|
1695
1684
|
},
|
|
1696
|
-
"/lol-nacho/v1/pity-counter": {
|
|
1697
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoCapCounterData }
|
|
1698
|
-
},
|
|
1699
1685
|
"/lol-nacho/v1/purchases/{purchaseId}": {
|
|
1700
1686
|
get: { path: [purchaseId: string], params: never, body: never, response: LCUTypes.LolNachoNachoPurchaseResponse }
|
|
1701
1687
|
},
|
|
1688
|
+
"/lol-nacho/v1/ready": {
|
|
1689
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1690
|
+
},
|
|
1702
1691
|
"/lol-nacho/v1/roll-purchase-enabled": {
|
|
1703
1692
|
get: { path: never, params: never, body: never, response: boolean }
|
|
1704
1693
|
},
|
|
@@ -2394,13 +2383,6 @@ export interface LCUEndpoints {
|
|
|
2394
2383
|
get: { path: never, params: never, body: never, response: number }
|
|
2395
2384
|
patch: { path: never, params: never, body: number, response: unknown }
|
|
2396
2385
|
},
|
|
2397
|
-
"/lol-tft-team-planner/v1/team/local": {
|
|
2398
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolTftTeamPlannerTeamSettings }
|
|
2399
|
-
},
|
|
2400
|
-
"/lol-tft-team-planner/v1/team/reminders": {
|
|
2401
|
-
get: { path: never, params: never, body: never, response: boolean }
|
|
2402
|
-
patch: { path: never, params: never, body: boolean, response: unknown }
|
|
2403
|
-
},
|
|
2404
2386
|
"/lol-tft-team-planner/v2/reminders": {
|
|
2405
2387
|
get: { path: never, params: never, body: never, response: string[] }
|
|
2406
2388
|
},
|
|
@@ -2624,6 +2606,9 @@ export interface LCUEndpoints {
|
|
|
2624
2606
|
"/telemetry/v1/application-start-time": {
|
|
2625
2607
|
get: { path: never, params: never, body: never, response: number }
|
|
2626
2608
|
},
|
|
2609
|
+
"/telemetry/v1/common-data": {
|
|
2610
|
+
get: { path: never, params: never, body: never, response: Record<string, string> }
|
|
2611
|
+
},
|
|
2627
2612
|
"/Help": {
|
|
2628
2613
|
post: { path: never, params: { "target"?: string, "format"?: LCUTypes.RemotingHelpFormat }, body: never, response: unknown }
|
|
2629
2614
|
},
|
|
@@ -3030,6 +3015,9 @@ export interface LCUEndpoints {
|
|
|
3030
3015
|
"/lol-gameflow/v2/spectate/launch": {
|
|
3031
3016
|
post: { path: never, params: never, body: LCUTypes.LolGameflowSpectateGameInfoResource, response: unknown }
|
|
3032
3017
|
},
|
|
3018
|
+
"/lol-heartbeat/v1/connection-status": {
|
|
3019
|
+
post: { path: never, params: never, body: never, response: LCUTypes.LolHeartbeatLcdsConnection }
|
|
3020
|
+
},
|
|
3033
3021
|
"/lol-highlights/v1/file-browser/{highlightId}": {
|
|
3034
3022
|
post: { path: [highlightId: number], params: never, body: never, response: unknown }
|
|
3035
3023
|
},
|
|
@@ -3270,15 +3258,9 @@ export interface LCUEndpoints {
|
|
|
3270
3258
|
"/lol-nacho/v1/set-active-stores": {
|
|
3271
3259
|
post: { path: never, params: never, body: LCUTypes.LolNachoSetActiveStoresRequest, response: unknown }
|
|
3272
3260
|
},
|
|
3273
|
-
"/lol-nacho/v1/set-current-catalog-item": {
|
|
3274
|
-
post: { path: never, params: never, body: never, response: unknown }
|
|
3275
|
-
},
|
|
3276
3261
|
"/lol-nacho/v1/set-product-id": {
|
|
3277
3262
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3278
3263
|
},
|
|
3279
|
-
"/lol-nacho/v1/set-store-id": {
|
|
3280
|
-
post: { path: never, params: never, body: never, response: unknown }
|
|
3281
|
-
},
|
|
3282
3264
|
"/lol-npe-rewards/v1/challenges/opt": {
|
|
3283
3265
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3284
3266
|
},
|
|
@@ -3675,9 +3657,6 @@ export interface LCUEndpoints {
|
|
|
3675
3657
|
"/lol-lobby/v1/lobby/members/localMember/position-preferences": {
|
|
3676
3658
|
put: { path: never, params: never, body: LCUTypes.LolLobbyLobbyPositionPreferences, response: unknown }
|
|
3677
3659
|
},
|
|
3678
|
-
"/lol-lobby/v1/lobby/members/localMember/quickplayPlayerState": {
|
|
3679
|
-
put: { path: never, params: never, body: string, response: unknown }
|
|
3680
|
-
},
|
|
3681
3660
|
"/lol-lobby/v1/parties/active": {
|
|
3682
3661
|
put: { path: never, params: never, body: number, response: unknown }
|
|
3683
3662
|
},
|
|
@@ -3702,6 +3681,9 @@ export interface LCUEndpoints {
|
|
|
3702
3681
|
"/lol-lobby/v2/lobby/partyType": {
|
|
3703
3682
|
put: { path: never, params: never, body: string, response: unknown }
|
|
3704
3683
|
},
|
|
3684
|
+
"/lol-lobby/v2/lobby/quickplayMemberData": {
|
|
3685
|
+
put: { path: never, params: never, body: Record<string, string>, response: unknown }
|
|
3686
|
+
},
|
|
3705
3687
|
"/lol-lobby/v2/lobby/strawberryMapId": {
|
|
3706
3688
|
put: { path: never, params: never, body: LCUTypes.LolLobbyStrawberryMapUpdateDto, response: unknown }
|
|
3707
3689
|
},
|
|
@@ -3783,9 +3765,6 @@ export interface LCUEndpoints {
|
|
|
3783
3765
|
"/lol-tft-team-planner/v1/sets/save-all": {
|
|
3784
3766
|
put: { path: never, params: never, body: never, response: unknown }
|
|
3785
3767
|
},
|
|
3786
|
-
"/lol-tft-team-planner/v1/team": {
|
|
3787
|
-
put: { path: never, params: never, body: never, response: unknown }
|
|
3788
|
-
},
|
|
3789
3768
|
"/lol-tft/v1/tft_experiment_bucket": {
|
|
3790
3769
|
put: { path: never, params: never, body: number, response: unknown }
|
|
3791
3770
|
},
|
package/dist/lcu-events.d.ts
CHANGED
|
@@ -4,16 +4,9 @@ export interface LCUWebSocketEvents {
|
|
|
4
4
|
[key: string]: LCUTypes.PluginResourceEvent | LCUTypes.BindingCallbackEvent | LCUTypes.PluginLcdsEvent | LCUTypes.PluginRegionLocaleChangedEvent | LCUTypes.LogEvent | LCUTypes.PluginServiceProxyResponse
|
|
5
5
|
"OnCallback": LCUTypes.BindingCallbackEvent,
|
|
6
6
|
"OnJsonApiEvent": LCUTypes.PluginResourceEvent,
|
|
7
|
-
"OnJsonApiEvent_chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
8
|
-
"OnJsonApiEvent_chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
9
7
|
"OnJsonApiEvent_chat_v3_blocked": LCUTypes.PluginResourceEvent,
|
|
10
|
-
"OnJsonApiEvent_chat_v3_errors": LCUTypes.PluginResourceEvent,
|
|
11
8
|
"OnJsonApiEvent_chat_v3_friends": LCUTypes.PluginResourceEvent,
|
|
12
9
|
"OnJsonApiEvent_chat_v3_groups": LCUTypes.PluginResourceEvent,
|
|
13
|
-
"OnJsonApiEvent_chat_v4_presences": LCUTypes.PluginResourceEvent,
|
|
14
|
-
"OnJsonApiEvent_chat_v5_messages": LCUTypes.PluginResourceEvent,
|
|
15
|
-
"OnJsonApiEvent_chat_v5_participants": LCUTypes.PluginResourceEvent,
|
|
16
|
-
"OnJsonApiEvent_chat_v6_conversations": LCUTypes.PluginResourceEvent,
|
|
17
10
|
"OnJsonApiEvent_chat_v6_friendrequests": LCUTypes.PluginResourceEvent,
|
|
18
11
|
"OnJsonApiEvent_client-config_v1_status": LCUTypes.PluginResourceEvent,
|
|
19
12
|
"OnJsonApiEvent_client-config_v2_config": LCUTypes.PluginResourceEvent,
|
|
@@ -25,14 +18,11 @@ export interface LCUWebSocketEvents {
|
|
|
25
18
|
"OnJsonApiEvent_entitlements_v2_token": LCUTypes.PluginResourceEvent,
|
|
26
19
|
"OnJsonApiEvent_ga-restriction_v1_penalty-notifications": LCUTypes.PluginResourceEvent,
|
|
27
20
|
"OnJsonApiEvent_lol-account-verification_v1_is-verified": LCUTypes.PluginResourceEvent,
|
|
28
|
-
"OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
|
|
29
21
|
"OnJsonApiEvent_lol-activity-center_v1_ready": LCUTypes.PluginResourceEvent,
|
|
30
22
|
"OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
31
23
|
"OnJsonApiEvent_lol-cap-missions_v1_ready": LCUTypes.PluginResourceEvent,
|
|
32
|
-
"OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
|
|
33
24
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
34
25
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
35
|
-
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
36
26
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
37
27
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
38
28
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -58,27 +48,19 @@ export interface LCUWebSocketEvents {
|
|
|
58
48
|
"OnJsonApiEvent_lol-chat_v1_friend-requests": LCUTypes.PluginResourceEvent,
|
|
59
49
|
"OnJsonApiEvent_lol-chat_v1_friends": LCUTypes.PluginResourceEvent,
|
|
60
50
|
"OnJsonApiEvent_lol-chat_v1_me": LCUTypes.PluginResourceEvent,
|
|
61
|
-
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
62
51
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
63
|
-
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
64
52
|
"OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
|
|
65
53
|
"OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
|
|
66
54
|
"OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
67
55
|
"OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
|
|
68
|
-
"OnJsonApiEvent_lol-clash_v1_invited-roster-ids": LCUTypes.PluginResourceEvent,
|
|
69
56
|
"OnJsonApiEvent_lol-clash_v1_player": LCUTypes.PluginResourceEvent,
|
|
70
57
|
"OnJsonApiEvent_lol-clash_v1_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
71
58
|
"OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
|
|
72
|
-
"OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
|
|
73
59
|
"OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
|
|
74
60
|
"OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
|
|
75
61
|
"OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
|
|
76
62
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
77
63
|
"OnJsonApiEvent_lol-client-config_v3_client-config": LCUTypes.PluginResourceEvent,
|
|
78
|
-
"OnJsonApiEvent_lol-collections_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
79
|
-
"OnJsonApiEvent_lol-content-targeting_v1_filters": LCUTypes.PluginResourceEvent,
|
|
80
|
-
"OnJsonApiEvent_lol-cosmetics_v1_favorites": LCUTypes.PluginResourceEvent,
|
|
81
|
-
"OnJsonApiEvent_lol-cosmetics_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
82
64
|
"OnJsonApiEvent_lol-drops_v1_ready": LCUTypes.PluginResourceEvent,
|
|
83
65
|
"OnJsonApiEvent_lol-dx9-deprecation_needs-hardware-upgrade": LCUTypes.PluginResourceEvent,
|
|
84
66
|
"OnJsonApiEvent_lol-end-of-game_v1_eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
@@ -98,7 +80,6 @@ export interface LCUWebSocketEvents {
|
|
|
98
80
|
"OnJsonApiEvent_lol-game-queues_v1_queues": LCUTypes.PluginResourceEvent,
|
|
99
81
|
"OnJsonApiEvent_lol-game-settings_v1_game-settings": LCUTypes.PluginResourceEvent,
|
|
100
82
|
"OnJsonApiEvent_lol-game-settings_v1_input-settings": LCUTypes.PluginResourceEvent,
|
|
101
|
-
"OnJsonApiEvent_lol-game-settings_v1_ready": LCUTypes.PluginResourceEvent,
|
|
102
83
|
"OnJsonApiEvent_lol-gameflow_v1_availability": LCUTypes.PluginResourceEvent,
|
|
103
84
|
"OnJsonApiEvent_lol-gameflow_v1_battle-training": LCUTypes.PluginResourceEvent,
|
|
104
85
|
"OnJsonApiEvent_lol-gameflow_v1_early-exit-notifications": LCUTypes.PluginResourceEvent,
|
|
@@ -121,7 +102,6 @@ export interface LCUWebSocketEvents {
|
|
|
121
102
|
"OnJsonApiEvent_lol-hovercard_v1_friend-info": LCUTypes.PluginResourceEvent,
|
|
122
103
|
"OnJsonApiEvent_lol-hovercard_v1_friend-info-by-summoner": LCUTypes.PluginResourceEvent,
|
|
123
104
|
"OnJsonApiEvent_lol-inventory_v1_initial-configuration-complete": LCUTypes.PluginResourceEvent,
|
|
124
|
-
"OnJsonApiEvent_lol-inventory_v1_inventory": LCUTypes.PluginResourceEvent,
|
|
125
105
|
"OnJsonApiEvent_lol-inventory_v1_signedInventory": LCUTypes.PluginResourceEvent,
|
|
126
106
|
"OnJsonApiEvent_lol-inventory_v1_wallet": LCUTypes.PluginResourceEvent,
|
|
127
107
|
"OnJsonApiEvent_lol-inventory_v2_inventory": LCUTypes.PluginResourceEvent,
|
|
@@ -134,11 +114,9 @@ export interface LCUWebSocketEvents {
|
|
|
134
114
|
"OnJsonApiEvent_lol-license-agreement_v1_serve-location": LCUTypes.PluginResourceEvent,
|
|
135
115
|
"OnJsonApiEvent_lol-loadouts_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
136
116
|
"OnJsonApiEvent_lol-loadouts_v1_loadouts-ready": LCUTypes.PluginResourceEvent,
|
|
137
|
-
"OnJsonApiEvent_lol-loadouts_v4_loadout": LCUTypes.PluginResourceEvent,
|
|
138
117
|
"OnJsonApiEvent_lol-loadouts_v4_loadouts": LCUTypes.PluginResourceEvent,
|
|
139
118
|
"OnJsonApiEvent_lol-lobby-team-builder_champ-select_v1": LCUTypes.PluginResourceEvent,
|
|
140
119
|
"OnJsonApiEvent_lol-lobby-team-builder_v1_matchmaking": LCUTypes.PluginResourceEvent,
|
|
141
|
-
"OnJsonApiEvent_lol-lobby_v1_lobby": LCUTypes.PluginResourceEvent,
|
|
142
120
|
"OnJsonApiEvent_lol-lobby_v2_comms": LCUTypes.PluginResourceEvent,
|
|
143
121
|
"OnJsonApiEvent_lol-lobby_v2_eligibility": LCUTypes.PluginResourceEvent,
|
|
144
122
|
"OnJsonApiEvent_lol-lobby_v2_lobby": LCUTypes.PluginResourceEvent,
|
|
@@ -152,41 +130,29 @@ export interface LCUWebSocketEvents {
|
|
|
152
130
|
"OnJsonApiEvent_lol-login_v1_session": LCUTypes.PluginResourceEvent,
|
|
153
131
|
"OnJsonApiEvent_lol-login_v1_wallet": LCUTypes.PluginResourceEvent,
|
|
154
132
|
"OnJsonApiEvent_lol-login_v2_league-session-init-token": LCUTypes.PluginResourceEvent,
|
|
155
|
-
"OnJsonApiEvent_lol-loot_v1_currency-configuration": LCUTypes.PluginResourceEvent,
|
|
156
133
|
"OnJsonApiEvent_lol-loot_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
157
|
-
"OnJsonApiEvent_lol-loot_v1_milestones": LCUTypes.PluginResourceEvent,
|
|
158
|
-
"OnJsonApiEvent_lol-loot_v1_player-display-categories": LCUTypes.PluginResourceEvent,
|
|
159
|
-
"OnJsonApiEvent_lol-loot_v1_player-loot": LCUTypes.PluginResourceEvent,
|
|
160
|
-
"OnJsonApiEvent_lol-loot_v1_player-loot-map": LCUTypes.PluginResourceEvent,
|
|
161
134
|
"OnJsonApiEvent_lol-loot_v1_ready": LCUTypes.PluginResourceEvent,
|
|
162
|
-
"OnJsonApiEvent_lol-loot_v1_recipes": LCUTypes.PluginResourceEvent,
|
|
163
|
-
"OnJsonApiEvent_lol-loot_v2_player-loot-map": LCUTypes.PluginResourceEvent,
|
|
164
135
|
"OnJsonApiEvent_lol-loyalty_v1_status-notification": LCUTypes.PluginResourceEvent,
|
|
165
|
-
"OnJsonApiEvent_lol-mac-graphics-upgrade_notification-type": LCUTypes.PluginResourceEvent,
|
|
166
136
|
"OnJsonApiEvent_lol-maps_v1_maps": LCUTypes.PluginResourceEvent,
|
|
167
137
|
"OnJsonApiEvent_lol-maps_v2_maps": LCUTypes.PluginResourceEvent,
|
|
168
138
|
"OnJsonApiEvent_lol-marketing-preferences_v1_ready": LCUTypes.PluginResourceEvent,
|
|
169
139
|
"OnJsonApiEvent_lol-matchmaking_v1_search": LCUTypes.PluginResourceEvent,
|
|
170
140
|
"OnJsonApiEvent_lol-missions_v1_missions": LCUTypes.PluginResourceEvent,
|
|
171
|
-
"OnJsonApiEvent_lol-
|
|
141
|
+
"OnJsonApiEvent_lol-nacho_v1_banner": LCUTypes.PluginResourceEvent,
|
|
142
|
+
"OnJsonApiEvent_lol-nacho_v1_banner-odds": LCUTypes.PluginResourceEvent,
|
|
172
143
|
"OnJsonApiEvent_lol-nacho_v1_banners": LCUTypes.PluginResourceEvent,
|
|
144
|
+
"OnJsonApiEvent_lol-nacho_v1_get-active-store-catalog": LCUTypes.PluginResourceEvent,
|
|
145
|
+
"OnJsonApiEvent_lol-nacho_v1_get-current-catalog-item": LCUTypes.PluginResourceEvent,
|
|
173
146
|
"OnJsonApiEvent_lol-nacho_v1_get-store-digests": LCUTypes.PluginResourceEvent,
|
|
174
|
-
"OnJsonApiEvent_lol-
|
|
175
|
-
"OnJsonApiEvent_lol-
|
|
176
|
-
"OnJsonApiEvent_lol-npe-tutorial-path_v1_tutorials": LCUTypes.PluginResourceEvent,
|
|
177
|
-
"OnJsonApiEvent_lol-objectives_v1_objectives": LCUTypes.PluginResourceEvent,
|
|
147
|
+
"OnJsonApiEvent_lol-nacho_v1_ready": LCUTypes.PluginResourceEvent,
|
|
148
|
+
"OnJsonApiEvent_lol-nacho_v1_roll-purchase-enabled": LCUTypes.PluginResourceEvent,
|
|
178
149
|
"OnJsonApiEvent_lol-patch_v1_checking-enabled": LCUTypes.PluginResourceEvent,
|
|
179
150
|
"OnJsonApiEvent_lol-patch_v1_environment": LCUTypes.PluginResourceEvent,
|
|
180
151
|
"OnJsonApiEvent_lol-patch_v1_game-version": LCUTypes.PluginResourceEvent,
|
|
181
152
|
"OnJsonApiEvent_lol-patch_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
182
153
|
"OnJsonApiEvent_lol-patch_v1_products": LCUTypes.PluginResourceEvent,
|
|
183
154
|
"OnJsonApiEvent_lol-patch_v1_status": LCUTypes.PluginResourceEvent,
|
|
184
|
-
"OnJsonApiEvent_lol-perks_v1_currentpage": LCUTypes.PluginResourceEvent,
|
|
185
|
-
"OnJsonApiEvent_lol-perks_v1_inventory": LCUTypes.PluginResourceEvent,
|
|
186
|
-
"OnJsonApiEvent_lol-perks_v1_pages": LCUTypes.PluginResourceEvent,
|
|
187
155
|
"OnJsonApiEvent_lol-perks_v1_perks": LCUTypes.PluginResourceEvent,
|
|
188
|
-
"OnJsonApiEvent_lol-perks_v1_rune-recommender-auto-select": LCUTypes.PluginResourceEvent,
|
|
189
|
-
"OnJsonApiEvent_lol-perks_v1_settings": LCUTypes.PluginResourceEvent,
|
|
190
156
|
"OnJsonApiEvent_lol-perks_v1_styles": LCUTypes.PluginResourceEvent,
|
|
191
157
|
"OnJsonApiEvent_lol-platform-config_v1_initial-configuration-complete": LCUTypes.PluginResourceEvent,
|
|
192
158
|
"OnJsonApiEvent_lol-platform-config_v1_namespace_Parties_PublishPresenceDelay": LCUTypes.PluginResourceEvent,
|
|
@@ -363,7 +329,6 @@ export interface LCUWebSocketEvents {
|
|
|
363
329
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ContextualEducation_TargetMinionsPerWave": LCUTypes.PluginResourceEvent,
|
|
364
330
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame": LCUTypes.PluginResourceEvent,
|
|
365
331
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_BotsAvailableInAram": LCUTypes.PluginResourceEvent,
|
|
366
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_MinorRestrictionsEnabled": LCUTypes.PluginResourceEvent,
|
|
367
332
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampion": LCUTypes.PluginResourceEvent,
|
|
368
333
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
|
|
369
334
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
|
|
@@ -1198,7 +1163,6 @@ export interface LCUWebSocketEvents {
|
|
|
1198
1163
|
"OnJsonApiEvent_lol-pre-end-of-game_v1_currentSequenceEvent": LCUTypes.PluginResourceEvent,
|
|
1199
1164
|
"OnJsonApiEvent_lol-premade-voice_v1_availability": LCUTypes.PluginResourceEvent,
|
|
1200
1165
|
"OnJsonApiEvent_lol-premade-voice_v1_capturedevices": LCUTypes.PluginResourceEvent,
|
|
1201
|
-
"OnJsonApiEvent_lol-premade-voice_v1_first-experience": LCUTypes.PluginResourceEvent,
|
|
1202
1166
|
"OnJsonApiEvent_lol-premade-voice_v1_participant-records": LCUTypes.PluginResourceEvent,
|
|
1203
1167
|
"OnJsonApiEvent_lol-premade-voice_v1_settings": LCUTypes.PluginResourceEvent,
|
|
1204
1168
|
"OnJsonApiEvent_lol-progression_v1_groups": LCUTypes.PluginResourceEvent,
|
|
@@ -1235,8 +1199,6 @@ export interface LCUWebSocketEvents {
|
|
|
1235
1199
|
"OnJsonApiEvent_lol-settings_v2_ready": LCUTypes.PluginResourceEvent,
|
|
1236
1200
|
"OnJsonApiEvent_lol-shutdown_v1_notification": LCUTypes.PluginResourceEvent,
|
|
1237
1201
|
"OnJsonApiEvent_lol-spectator_v1_spectate": LCUTypes.PluginResourceEvent,
|
|
1238
|
-
"OnJsonApiEvent_lol-statstones_v2_player-summary-self": LCUTypes.PluginResourceEvent,
|
|
1239
|
-
"OnJsonApiEvent_lol-store_v1_getStoreUrl": LCUTypes.PluginResourceEvent,
|
|
1240
1202
|
"OnJsonApiEvent_lol-store_v1_store-ready": LCUTypes.PluginResourceEvent,
|
|
1241
1203
|
"OnJsonApiEvent_lol-suggested-players_v1_suggested-players": LCUTypes.PluginResourceEvent,
|
|
1242
1204
|
"OnJsonApiEvent_lol-summoner_v1_current-summoner": LCUTypes.PluginResourceEvent,
|
|
@@ -1249,17 +1211,11 @@ export interface LCUWebSocketEvents {
|
|
|
1249
1211
|
"OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1250
1212
|
"OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,
|
|
1251
1213
|
"OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
|
|
1252
|
-
"OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
|
|
1253
|
-
"OnJsonApiEvent_lol-tft-team-planner_v1_previous-context": LCUTypes.PluginResourceEvent,
|
|
1254
|
-
"OnJsonApiEvent_lol-tft-team-planner_v1_set": LCUTypes.PluginResourceEvent,
|
|
1255
|
-
"OnJsonApiEvent_lol-tft-team-planner_v1_team": LCUTypes.PluginResourceEvent,
|
|
1256
|
-
"OnJsonApiEvent_lol-tft-team-planner_v2_reminders": LCUTypes.PluginResourceEvent,
|
|
1257
1214
|
"OnJsonApiEvent_lol-tft-troves_v1_config": LCUTypes.PluginResourceEvent,
|
|
1258
1215
|
"OnJsonApiEvent_lol-tft-troves_v1_milestones-group-id": LCUTypes.PluginResourceEvent,
|
|
1259
1216
|
"OnJsonApiEvent_lol-tft_v1_tft": LCUTypes.PluginResourceEvent,
|
|
1260
1217
|
"OnJsonApiEvent_lol-vanguard_v1_notification": LCUTypes.PluginResourceEvent,
|
|
1261
1218
|
"OnJsonApiEvent_lol-vanguard_v1_service-session-check-failure": LCUTypes.PluginResourceEvent,
|
|
1262
|
-
"OnJsonApiEvent_lol-vanguard_v1_session": LCUTypes.PluginResourceEvent,
|
|
1263
1219
|
"OnJsonApiEvent_lol-yourshop_v1_modal": LCUTypes.PluginResourceEvent,
|
|
1264
1220
|
"OnJsonApiEvent_lol-yourshop_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1265
1221
|
"OnJsonApiEvent_lol-yourshop_v1_status": LCUTypes.PluginResourceEvent,
|
|
@@ -1275,7 +1231,6 @@ export interface LCUWebSocketEvents {
|
|
|
1275
1231
|
"OnJsonApiEvent_plugin-manager_v1_external-plugins": LCUTypes.PluginResourceEvent,
|
|
1276
1232
|
"OnJsonApiEvent_plugin-manager_v1_status": LCUTypes.PluginResourceEvent,
|
|
1277
1233
|
"OnJsonApiEvent_process-control_v1_process": LCUTypes.PluginResourceEvent,
|
|
1278
|
-
"OnJsonApiEvent_product-metadata_v2_products": LCUTypes.PluginResourceEvent,
|
|
1279
1234
|
"OnJsonApiEvent_product-session_v1_external-sessions": LCUTypes.PluginResourceEvent,
|
|
1280
1235
|
"OnJsonApiEvent_riot-messaging-service_v1_message": LCUTypes.PluginResourceEvent,
|
|
1281
1236
|
"OnJsonApiEvent_riot-messaging-service_v1_out-of-sync": LCUTypes.PluginResourceEvent,
|
package/dist/lcu-types.d.ts
CHANGED
|
@@ -1153,7 +1153,6 @@ export interface LcdsPlayer {
|
|
|
1153
1153
|
}
|
|
1154
1154
|
|
|
1155
1155
|
export interface LcdsPlayerGcoTokens {
|
|
1156
|
-
idToken: string
|
|
1157
1156
|
summonerToken: string
|
|
1158
1157
|
userInfoJwt: string
|
|
1159
1158
|
entitlementsToken: string
|
|
@@ -4715,7 +4714,7 @@ export interface LolClashMatchmakingDodgeData {
|
|
|
4715
4714
|
|
|
4716
4715
|
export type LolClashMatchmakingDodgeState = "TournamentDodged" | "StrangerDodged" | "PartyDodged" | "Invalid"
|
|
4717
4716
|
|
|
4718
|
-
export type LolClashMatchmakingDodgeWarning = "Penalty" | "Warning" | "None"
|
|
4717
|
+
export type LolClashMatchmakingDodgeWarning = "ConnectionWarning" | "Penalty" | "Warning" | "None"
|
|
4719
4718
|
|
|
4720
4719
|
export interface LolClashMatchmakingReadyCheckResource {
|
|
4721
4720
|
state: LolClashMatchmakingReadyCheckState
|
|
@@ -7440,6 +7439,7 @@ export interface LolEventHubChapter {
|
|
|
7440
7439
|
backgroundImage: string
|
|
7441
7440
|
backgroundVideo: string
|
|
7442
7441
|
foregroundImage: string
|
|
7442
|
+
objectiveBannerImage: string
|
|
7443
7443
|
/** @format uint16 */
|
|
7444
7444
|
chapterStart: number
|
|
7445
7445
|
/** @format uint16 */
|
|
@@ -8483,6 +8483,7 @@ export interface LolEventHubRiotMessagingServiceMessage {
|
|
|
8483
8483
|
export interface LolEventHubRmsEntitlementPayload {
|
|
8484
8484
|
itemId: string
|
|
8485
8485
|
itemTypeId: string
|
|
8486
|
+
tiers: string
|
|
8486
8487
|
entitlementTypeId: string
|
|
8487
8488
|
resourceOperation: string
|
|
8488
8489
|
}
|
|
@@ -9472,6 +9473,10 @@ export interface LolGeoinfoWhereAmIResponse {
|
|
|
9472
9473
|
region: string
|
|
9473
9474
|
}
|
|
9474
9475
|
|
|
9476
|
+
export interface LolHeartbeatLcdsConnection {
|
|
9477
|
+
stableConnection: boolean
|
|
9478
|
+
}
|
|
9479
|
+
|
|
9475
9480
|
export interface LolHeartbeatLoginSession {
|
|
9476
9481
|
state: LolHeartbeatLoginSessionStates
|
|
9477
9482
|
/** @format uint64 */
|
|
@@ -10118,6 +10123,7 @@ export interface LolInventoryRiotMessagingServiceMessage {
|
|
|
10118
10123
|
export interface LolInventoryRmsEntitlementPayload {
|
|
10119
10124
|
itemId: string
|
|
10120
10125
|
itemTypeId: string
|
|
10126
|
+
tiers: string
|
|
10121
10127
|
entitlementTypeId: string
|
|
10122
10128
|
resourceOperation: string
|
|
10123
10129
|
}
|
|
@@ -10324,7 +10330,7 @@ export interface LolLeaderboardLeaderboardConfiguration {
|
|
|
10324
10330
|
/** @format uint8 */
|
|
10325
10331
|
pageSize: number
|
|
10326
10332
|
/** @format uint32 */
|
|
10327
|
-
|
|
10333
|
+
refreshTimeMs: number
|
|
10328
10334
|
season: string
|
|
10329
10335
|
}
|
|
10330
10336
|
|
|
@@ -10810,13 +10816,6 @@ export interface LolLobbyCustomGameDto {
|
|
|
10810
10816
|
privateGame: boolean
|
|
10811
10817
|
}
|
|
10812
10818
|
|
|
10813
|
-
export interface LolLobbyCustomGameSettingsDto {
|
|
10814
|
-
lobbyName: string
|
|
10815
|
-
lobbyPassword: string
|
|
10816
|
-
/** @format uint64 */
|
|
10817
|
-
gameId: number
|
|
10818
|
-
}
|
|
10819
|
-
|
|
10820
10819
|
export interface LolLobbyCustomJoinOptionsDto {
|
|
10821
10820
|
lobbyPassword: string
|
|
10822
10821
|
team?: string
|
|
@@ -10885,22 +10884,20 @@ export interface LolLobbyGameDataChampionSummary {
|
|
|
10885
10884
|
export interface LolLobbyGameModeDto {
|
|
10886
10885
|
gameType: string
|
|
10887
10886
|
/** @format int32 */
|
|
10888
|
-
|
|
10887
|
+
queueId?: number
|
|
10889
10888
|
/** @format int32 */
|
|
10890
10889
|
maxPartySize: number
|
|
10891
|
-
botDifficulty?: string
|
|
10892
10890
|
/** @format int32 */
|
|
10893
|
-
|
|
10894
|
-
|
|
10895
|
-
customsSettings?: LolLobbyCustomGameSettingsDto
|
|
10896
|
-
/** @format int64 */
|
|
10897
|
-
gameTypeConfigId?: number
|
|
10891
|
+
maxTeamSize: number
|
|
10892
|
+
allowSpectators?: string
|
|
10898
10893
|
/** @format int32 */
|
|
10899
10894
|
mapId?: number
|
|
10900
|
-
|
|
10901
|
-
|
|
10902
|
-
|
|
10903
|
-
|
|
10895
|
+
/** @format int64 */
|
|
10896
|
+
gameTypeConfigId?: number
|
|
10897
|
+
gameCustomization?: Record<string, string>
|
|
10898
|
+
lobbyName?: string
|
|
10899
|
+
lobbyPassword?: string
|
|
10900
|
+
customGameMode?: string
|
|
10904
10901
|
}
|
|
10905
10902
|
|
|
10906
10903
|
export interface LolLobbyGameflowGameClient {
|
|
@@ -11312,7 +11309,6 @@ export interface LolLobbyLobbyParticipantDto {
|
|
|
11312
11309
|
subteamIndex?: number
|
|
11313
11310
|
/** @format int8 */
|
|
11314
11311
|
intraSubteamPosition?: number
|
|
11315
|
-
quickplayPlayerState?: string
|
|
11316
11312
|
strawberryMapId?: string
|
|
11317
11313
|
playerSlots: LolLobbyQuickPlayPresetSlotDto[]
|
|
11318
11314
|
ready: boolean
|
|
@@ -11506,7 +11502,6 @@ export interface LolLobbyPartyMemberMetadataDto {
|
|
|
11506
11502
|
memberData?: unknown
|
|
11507
11503
|
playerSlots: LolLobbyQuickPlayPresetSlotDto[]
|
|
11508
11504
|
subteamData?: LolLobbySubteamDataDto
|
|
11509
|
-
quickplayPlayerState?: string
|
|
11510
11505
|
}
|
|
11511
11506
|
|
|
11512
11507
|
export type LolLobbyPartyMemberRoleEnum = "NONE" | "DECLINED" | "KICKED" | "HOLD" | "INVITED" | "MEMBER" | "LEADER"
|
|
@@ -11639,6 +11634,7 @@ export interface LolLobbyQueue {
|
|
|
11639
11634
|
areFreeChampionsAllowed: boolean
|
|
11640
11635
|
isTeamBuilderManaged: boolean
|
|
11641
11636
|
queueAvailability: LolLobbyQueueAvailability
|
|
11637
|
+
isVisible: boolean
|
|
11642
11638
|
queueRewards: LolLobbyQueueReward
|
|
11643
11639
|
spectatorEnabled: boolean
|
|
11644
11640
|
/** @format uint32 */
|
|
@@ -11653,6 +11649,16 @@ export interface LolLobbyQueue {
|
|
|
11653
11649
|
removalFromGameAllowed: boolean
|
|
11654
11650
|
/** @format int32 */
|
|
11655
11651
|
removalFromGameDelayMinutes: number
|
|
11652
|
+
gameSelectModeGroup: string
|
|
11653
|
+
gameSelectCategory: string
|
|
11654
|
+
/** @format uint8 */
|
|
11655
|
+
gameSelectPriority: number
|
|
11656
|
+
isSkillTreeQueue: boolean
|
|
11657
|
+
isCustom: boolean
|
|
11658
|
+
/** @format uint32 */
|
|
11659
|
+
numberOfTeamsInLobby: number
|
|
11660
|
+
/** @format uint32 */
|
|
11661
|
+
maxLobbySpectatorCount: number
|
|
11656
11662
|
}
|
|
11657
11663
|
|
|
11658
11664
|
export type LolLobbyQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -11796,6 +11802,18 @@ export interface LolLobbyServiceProxyPayload {
|
|
|
11796
11802
|
body: string
|
|
11797
11803
|
}
|
|
11798
11804
|
|
|
11805
|
+
export interface LolLobbySetGameModeRequestDto {
|
|
11806
|
+
/** @format int32 */
|
|
11807
|
+
queueId?: number
|
|
11808
|
+
gameCustomization?: Record<string, string>
|
|
11809
|
+
lobbyName?: string
|
|
11810
|
+
lobbyPassword?: string
|
|
11811
|
+
/** @format int32 */
|
|
11812
|
+
maxTeamSize?: number
|
|
11813
|
+
allowSpectators?: string
|
|
11814
|
+
displayLobbyInCustomGameBrowser?: boolean
|
|
11815
|
+
}
|
|
11816
|
+
|
|
11799
11817
|
export interface LolLobbyStrawberryMapUpdateDto {
|
|
11800
11818
|
contentId: string
|
|
11801
11819
|
/** @format int32 */
|
|
@@ -14486,6 +14504,10 @@ export interface LolMatchmakingGameflowSession {
|
|
|
14486
14504
|
gameDodge: LolMatchmakingGameflowGameDodge
|
|
14487
14505
|
}
|
|
14488
14506
|
|
|
14507
|
+
export interface LolMatchmakingLcdsConnection {
|
|
14508
|
+
stableConnection: boolean
|
|
14509
|
+
}
|
|
14510
|
+
|
|
14489
14511
|
export interface LolMatchmakingLobbyStatus {
|
|
14490
14512
|
/** @format int32 */
|
|
14491
14513
|
queueId: number
|
|
@@ -14517,7 +14539,7 @@ export interface LolMatchmakingMatchmakingDodgeData {
|
|
|
14517
14539
|
|
|
14518
14540
|
export type LolMatchmakingMatchmakingDodgeState = "TournamentDodged" | "StrangerDodged" | "PartyDodged" | "Invalid"
|
|
14519
14541
|
|
|
14520
|
-
export type LolMatchmakingMatchmakingDodgeWarning = "Penalty" | "Warning" | "None"
|
|
14542
|
+
export type LolMatchmakingMatchmakingDodgeWarning = "ConnectionWarning" | "Penalty" | "Warning" | "None"
|
|
14521
14543
|
|
|
14522
14544
|
export interface LolMatchmakingMatchmakingLowPriorityData {
|
|
14523
14545
|
penalizedSummonerIds: number[]
|
|
@@ -14855,8 +14877,11 @@ export interface LolNachoDropsOddsTreeNodeDTO {
|
|
|
14855
14877
|
itemInstanceId: string
|
|
14856
14878
|
type: string
|
|
14857
14879
|
parentItemInstanceId: string
|
|
14880
|
+
capWalletCurrencyId: string
|
|
14858
14881
|
/** @format uint32 */
|
|
14859
14882
|
priority: number
|
|
14883
|
+
/** @format uint32 */
|
|
14884
|
+
quantity: number
|
|
14860
14885
|
}
|
|
14861
14886
|
|
|
14862
14887
|
export interface LolNachoFinalPurchaseUnitDto {
|
|
@@ -14885,9 +14910,6 @@ export interface LolNachoGameDataBannerSkin {
|
|
|
14885
14910
|
|
|
14886
14911
|
export interface LolNachoGameDataNachoBanner {
|
|
14887
14912
|
id: string
|
|
14888
|
-
bannerCurrencyId: string
|
|
14889
|
-
activationTime: string
|
|
14890
|
-
deactivationTime: string
|
|
14891
14913
|
chasePityCounter: LolNachoGameDataPityCounter
|
|
14892
14914
|
/** @format uint32 */
|
|
14893
14915
|
chasePityThreshold: number
|
|
@@ -14905,9 +14927,8 @@ export interface LolNachoGameDataNachoBanner {
|
|
|
14905
14927
|
chaseCelebrationVo: LolNachoGameDataNachoBannerVo
|
|
14906
14928
|
hubIntroVo: LolNachoGameDataNachoBannerVo
|
|
14907
14929
|
rollVignette: LolNachoNachoVignette
|
|
14908
|
-
capCatalogStoreId: string
|
|
14909
|
-
capCatalogEntryId: string
|
|
14910
14930
|
bannerSkin: LolNachoGameDataBannerSkin
|
|
14931
|
+
bannerCurrency: LolNachoGameDataNachoCurrency
|
|
14911
14932
|
}
|
|
14912
14933
|
|
|
14913
14934
|
export interface LolNachoGameDataNachoBannerTable {
|
|
@@ -14936,6 +14957,13 @@ export interface LolNachoGameDataNachoBannerVoOverrideOptions {
|
|
|
14936
14957
|
delayMillis: number
|
|
14937
14958
|
}
|
|
14938
14959
|
|
|
14960
|
+
export interface LolNachoGameDataNachoCurrency {
|
|
14961
|
+
id: string
|
|
14962
|
+
name: string
|
|
14963
|
+
currencyId: string
|
|
14964
|
+
capCatalogEntryId: string
|
|
14965
|
+
}
|
|
14966
|
+
|
|
14939
14967
|
export interface LolNachoGameDataNachoReward {
|
|
14940
14968
|
itemInstanceId: string
|
|
14941
14969
|
translatedName: string
|
|
@@ -14962,6 +14990,7 @@ export interface LolNachoLoginSession {
|
|
|
14962
14990
|
export type LolNachoLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
14963
14991
|
|
|
14964
14992
|
export interface LolNachoNachoActiveBanner {
|
|
14993
|
+
bannerId: string
|
|
14965
14994
|
storeId: string
|
|
14966
14995
|
catalogEntryId: string
|
|
14967
14996
|
tokenCatalogEntryId: string
|
|
@@ -14978,7 +15007,6 @@ export interface LolNachoNachoBannersResponse {
|
|
|
14978
15007
|
bannerChaseAnimationWebmPath: string
|
|
14979
15008
|
bannerChaseAnimationParallax: string
|
|
14980
15009
|
chasePityCounter: LolNachoGameDataPityCounter
|
|
14981
|
-
bannerDeactivationDateTime: string
|
|
14982
15010
|
/** @format uint32 */
|
|
14983
15011
|
chasePityThreshold: number
|
|
14984
15012
|
/** @format uint32 */
|
|
@@ -14989,9 +15017,15 @@ export interface LolNachoNachoBannersResponse {
|
|
|
14989
15017
|
chaseCelebrationVo: LolNachoGameDataNachoBannerVo
|
|
14990
15018
|
hubIntroVo: LolNachoGameDataNachoBannerVo
|
|
14991
15019
|
rollVignette: LolNachoNachoVignette
|
|
15020
|
+
bannerSkin: LolNachoGameDataBannerSkin
|
|
15021
|
+
bannerCurrency: LolNachoGameDataNachoCurrency
|
|
14992
15022
|
capCatalogStoreId: string
|
|
14993
15023
|
capCatalogEntryId: string
|
|
14994
|
-
|
|
15024
|
+
pityCounter: LolNachoCapCounterData
|
|
15025
|
+
/** @format int64 */
|
|
15026
|
+
startDate: number
|
|
15027
|
+
/** @format int64 */
|
|
15028
|
+
endDate: number
|
|
14995
15029
|
}
|
|
14996
15030
|
|
|
14997
15031
|
export interface LolNachoNachoPurchaseResponse {
|
|
@@ -15060,6 +15094,10 @@ export interface LolNachoPurchaseUnitDto {
|
|
|
15060
15094
|
fulfillment: LolNachoFulfillmentDto
|
|
15061
15095
|
}
|
|
15062
15096
|
|
|
15097
|
+
export interface LolNachoSanctumDisplayMetaData {
|
|
15098
|
+
bannerId: string
|
|
15099
|
+
}
|
|
15100
|
+
|
|
15063
15101
|
export interface LolNachoSetActiveStoresRequest {
|
|
15064
15102
|
storeIds: string[]
|
|
15065
15103
|
}
|
|
@@ -15092,6 +15130,12 @@ export interface LolNachoStoreDigests {
|
|
|
15092
15130
|
digests: LolNachoStoreDigest[]
|
|
15093
15131
|
}
|
|
15094
15132
|
|
|
15133
|
+
export interface LolNachoStoreSanctumDisplayMetaData {
|
|
15134
|
+
startDate: string
|
|
15135
|
+
endDate: string
|
|
15136
|
+
sanctum: LolNachoSanctumDisplayMetaData
|
|
15137
|
+
}
|
|
15138
|
+
|
|
15095
15139
|
export interface LolNachoStoresResponse {
|
|
15096
15140
|
data: LolNachoStore[]
|
|
15097
15141
|
}
|
|
@@ -22127,6 +22171,7 @@ export interface LolTftPassRiotMessagingServiceMessage {
|
|
|
22127
22171
|
export interface LolTftPassRmsEntitlementPayload {
|
|
22128
22172
|
itemId: string
|
|
22129
22173
|
itemTypeId: string
|
|
22174
|
+
tiers: string
|
|
22130
22175
|
entitlementTypeId: string
|
|
22131
22176
|
resourceOperation: string
|
|
22132
22177
|
}
|
|
@@ -22747,7 +22792,6 @@ export interface LolTftTeamPlannerTFTModeData {
|
|
|
22747
22792
|
export interface LolTftTeamPlannerTFTTeamPlannerConfig {
|
|
22748
22793
|
enabled: boolean
|
|
22749
22794
|
multipleSetsEnabled: boolean
|
|
22750
|
-
multipleTeamsEnabled: boolean
|
|
22751
22795
|
tencentNameCheckEnabled: boolean
|
|
22752
22796
|
globalNameSanitizationEnabled: boolean
|
|
22753
22797
|
}
|
|
@@ -23794,6 +23838,7 @@ export interface LolYourshopRiotMessagingServiceMessage {
|
|
|
23794
23838
|
export interface LolYourshopRmsEntitlementPayload {
|
|
23795
23839
|
itemId: string
|
|
23796
23840
|
itemTypeId: string
|
|
23841
|
+
tiers: string
|
|
23797
23842
|
entitlementTypeId: string
|
|
23798
23843
|
resourceOperation: string
|
|
23799
23844
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasagi/types",
|
|
3
|
-
"version": "15.
|
|
4
|
-
"_clientVersion": "15.
|
|
3
|
+
"version": "15.4.1",
|
|
4
|
+
"_clientVersion": "15.4.658.5898",
|
|
5
5
|
"description": "This package contains auto-generated LCU types and endpoints.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"update-types": "node scripts/update-types.mjs",
|