@hasagi/types 14.24.3 → 15.2.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 +34 -6
- package/dist/lcu-events.d.ts +48 -5
- package/dist/lcu-types.d.ts +398 -18
- package/package.json +3 -3
- package/CODEOWNERS +0 -2
package/dist/lcu-endpoints.d.ts
CHANGED
|
@@ -420,6 +420,12 @@ export interface LCUEndpoints {
|
|
|
420
420
|
"/lol-banners/v1/players/{puuid}/flags/equipped": {
|
|
421
421
|
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolBannersBannerFlag }
|
|
422
422
|
},
|
|
423
|
+
"/lol-cap-missions/v1/getmissions": {
|
|
424
|
+
get: { path: never, params: { "Ids": string[] }, body: never, response: LCUTypes.LolCapMissionsCapMissionsMeResponse }
|
|
425
|
+
},
|
|
426
|
+
"/lol-cap-missions/v1/ready": {
|
|
427
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
428
|
+
},
|
|
423
429
|
"/lol-catalog/v1/item-details": {
|
|
424
430
|
get: { path: never, params: { "inventoryType": string, "itemId": number }, body: never, response: LCUTypes.LolCatalogCatalogPluginItemWithDetails }
|
|
425
431
|
},
|
|
@@ -910,6 +916,9 @@ export interface LCUEndpoints {
|
|
|
910
916
|
"/lol-event-hub/v1/events": {
|
|
911
917
|
get: { path: never, params: never, body: never, response: LCUTypes.LolEventHubActiveEventUIData[] }
|
|
912
918
|
},
|
|
919
|
+
"/lol-event-hub/v1/events/{eventId}/chapters": {
|
|
920
|
+
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubChaptersUIData }
|
|
921
|
+
},
|
|
913
922
|
"/lol-event-hub/v1/events/{eventId}/event-details-data": {
|
|
914
923
|
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubEventDetailsUIData }
|
|
915
924
|
},
|
|
@@ -922,6 +931,9 @@ export interface LCUEndpoints {
|
|
|
922
931
|
"/lol-event-hub/v1/events/{eventId}/narrative": {
|
|
923
932
|
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubNarrativeElement[] }
|
|
924
933
|
},
|
|
934
|
+
"/lol-event-hub/v1/events/{eventId}/objectives-banner": {
|
|
935
|
+
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubObjectivesBanner }
|
|
936
|
+
},
|
|
925
937
|
"/lol-event-hub/v1/events/{eventId}/pass-background-data": {
|
|
926
938
|
get: { path: [eventId: string], params: never, body: never, response: LCUTypes.LolEventHubEventBackgroundUIData }
|
|
927
939
|
},
|
|
@@ -1003,6 +1015,9 @@ export interface LCUEndpoints {
|
|
|
1003
1015
|
"/lol-game-queues/v1/custom-non-default": {
|
|
1004
1016
|
get: { path: never, params: never, body: never, response: LCUTypes.LolGameQueuesQueueCustomGame }
|
|
1005
1017
|
},
|
|
1018
|
+
"/lol-game-queues/v1/customs-in-parties-enabled": {
|
|
1019
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
1020
|
+
},
|
|
1006
1021
|
"/lol-game-queues/v1/game-type-config/{gameTypeConfigId}": {
|
|
1007
1022
|
get: { path: [gameTypeConfigId: number], params: never, body: never, response: LCUTypes.LolGameQueuesQueueGameTypeConfig }
|
|
1008
1023
|
},
|
|
@@ -1169,6 +1184,9 @@ export interface LCUEndpoints {
|
|
|
1169
1184
|
"/lol-inventory/v1/champSelectInventory": {
|
|
1170
1185
|
get: { path: never, params: never, body: never, response: string }
|
|
1171
1186
|
},
|
|
1187
|
+
"/lol-inventory/v1/cherryInventory": {
|
|
1188
|
+
get: { path: never, params: never, body: never, response: string }
|
|
1189
|
+
},
|
|
1172
1190
|
"/lol-inventory/v1/initial-configuration-complete": {
|
|
1173
1191
|
get: { path: never, params: never, body: never, response: boolean }
|
|
1174
1192
|
},
|
|
@@ -1658,6 +1676,9 @@ export interface LCUEndpoints {
|
|
|
1658
1676
|
"/lol-nacho/v1/get-active-store-catalog": {
|
|
1659
1677
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoShoppeCatalogEntry[] }
|
|
1660
1678
|
},
|
|
1679
|
+
"/lol-nacho/v1/get-active-stores": {
|
|
1680
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoStoresResponse }
|
|
1681
|
+
},
|
|
1661
1682
|
"/lol-nacho/v1/get-current-catalog-item": {
|
|
1662
1683
|
get: { path: never, params: never, body: never, response: LCUTypes.LolNachoShoppeCatalogEntry }
|
|
1663
1684
|
},
|
|
@@ -2066,6 +2087,9 @@ export interface LCUEndpoints {
|
|
|
2066
2087
|
"/lol-seasons/v1/season/LOL/current-split-seasons": {
|
|
2067
2088
|
get: { path: never, params: never, body: never, response: number[] }
|
|
2068
2089
|
},
|
|
2090
|
+
"/lol-seasons/v1/season/name/{name}": {
|
|
2091
|
+
get: { path: [name: string], params: never, body: never, response: LCUTypes.LolSeasonsAllSeasonsProduct }
|
|
2092
|
+
},
|
|
2069
2093
|
"/lol-seasons/v1/season/product/{product}": {
|
|
2070
2094
|
get: { path: [product: string], params: never, body: never, response: LCUTypes.LolSeasonsAllSeasonsProduct }
|
|
2071
2095
|
},
|
|
@@ -2360,6 +2384,7 @@ export interface LCUEndpoints {
|
|
|
2360
2384
|
},
|
|
2361
2385
|
"/lol-tft-team-planner/v1/sets/dirty": {
|
|
2362
2386
|
get: { path: never, params: never, body: never, response: Record<string, LCUTypes.LolTftTeamPlannerTeamsForSet> }
|
|
2387
|
+
post: { path: never, params: never, body: never, response: Record<string, LCUTypes.LolTftTeamPlannerTeamsForSet> }
|
|
2363
2388
|
},
|
|
2364
2389
|
"/lol-tft-team-planner/v1/sort-option": {
|
|
2365
2390
|
get: { path: never, params: never, body: never, response: number }
|
|
@@ -2950,6 +2975,9 @@ export interface LCUEndpoints {
|
|
|
2950
2975
|
"/lol-gameflow/v1/early-exit": {
|
|
2951
2976
|
post: { path: never, params: never, body: never, response: unknown }
|
|
2952
2977
|
},
|
|
2978
|
+
"/lol-gameflow/v1/gameflow-monitor": {
|
|
2979
|
+
post: { path: never, params: never, body: unknown, response: void }
|
|
2980
|
+
},
|
|
2953
2981
|
"/lol-gameflow/v1/pre-end-game-transition": {
|
|
2954
2982
|
post: { path: never, params: never, body: boolean, response: void }
|
|
2955
2983
|
},
|
|
@@ -3037,9 +3065,6 @@ export interface LCUEndpoints {
|
|
|
3037
3065
|
"/lol-license-agreement/v1/agreements/{id}/decline": {
|
|
3038
3066
|
post: { path: [id: string], params: never, body: never, response: unknown }
|
|
3039
3067
|
},
|
|
3040
|
-
"/lol-loadouts/v4/loadouts": {
|
|
3041
|
-
post: { path: never, params: never, body: LCUTypes.LolLoadoutsCreateLoadoutDTO, response: LCUTypes.LolLoadoutsScopedLoadout }
|
|
3042
|
-
},
|
|
3043
3068
|
"/lol-lobby-team-builder/champ-select/v1/retrieve-latest-game-dto": {
|
|
3044
3069
|
post: { path: never, params: never, body: never, response: unknown }
|
|
3045
3070
|
},
|
|
@@ -3232,6 +3257,9 @@ export interface LCUEndpoints {
|
|
|
3232
3257
|
"/lol-nacho/v1/purchase/roll": {
|
|
3233
3258
|
post: { path: never, params: never, body: LCUTypes.LolNachoBlessingTokenPurchaseRequest, response: string }
|
|
3234
3259
|
},
|
|
3260
|
+
"/lol-nacho/v1/set-active-stores": {
|
|
3261
|
+
post: { path: never, params: never, body: LCUTypes.LolNachoSetActiveStoresRequest, response: void }
|
|
3262
|
+
},
|
|
3235
3263
|
"/lol-nacho/v1/set-current-catalog-item": {
|
|
3236
3264
|
post: { path: never, params: never, body: never, response: void }
|
|
3237
3265
|
},
|
|
@@ -3565,9 +3593,6 @@ export interface LCUEndpoints {
|
|
|
3565
3593
|
"/sanitizer/v1/sanitize": {
|
|
3566
3594
|
post: { path: never, params: never, body: LCUTypes.SanitizerSanitizeRequest, response: LCUTypes.SanitizerSanitizeResponse }
|
|
3567
3595
|
},
|
|
3568
|
-
"/services-api/config/v1/client-config": {
|
|
3569
|
-
post: { path: never, params: never, body: unknown, response: void }
|
|
3570
|
-
},
|
|
3571
3596
|
"/services-api/config/v2/client-config/{prefix}/{scope}": {
|
|
3572
3597
|
post: { path: [prefix: string, scope: string], params: never, body: unknown, response: void }
|
|
3573
3598
|
},
|
|
@@ -3658,6 +3683,9 @@ export interface LCUEndpoints {
|
|
|
3658
3683
|
"/lol-lobby/v1/parties/ready": {
|
|
3659
3684
|
put: { path: never, params: never, body: number, response: void }
|
|
3660
3685
|
},
|
|
3686
|
+
"/lol-lobby/v2/lobby/memberData": {
|
|
3687
|
+
put: { path: never, params: never, body: Record<string, string>, response: void }
|
|
3688
|
+
},
|
|
3661
3689
|
"/lol-lobby/v2/lobby/members/localMember/position-preferences": {
|
|
3662
3690
|
put: { path: never, params: never, body: LCUTypes.LolLobbyLobbyPositionPreferences, response: unknown }
|
|
3663
3691
|
},
|
package/dist/lcu-events.d.ts
CHANGED
|
@@ -28,8 +28,15 @@ export interface LCUWebSocketEvents {
|
|
|
28
28
|
"OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
|
|
29
29
|
"OnJsonApiEvent_lol-activity-center_v1_ready": LCUTypes.PluginResourceEvent,
|
|
30
30
|
"OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
31
|
+
"OnJsonApiEvent_lol-cap-missions_v1_ready": LCUTypes.PluginResourceEvent,
|
|
32
|
+
"OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
|
|
33
|
+
"OnJsonApiEvent_lol-challenges_v1_challenges": LCUTypes.PluginResourceEvent,
|
|
31
34
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
35
|
+
"OnJsonApiEvent_lol-challenges_v1_my-updated-challenges": LCUTypes.PluginResourceEvent,
|
|
36
|
+
"OnJsonApiEvent_lol-challenges_v1_penalty": LCUTypes.PluginResourceEvent,
|
|
32
37
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
38
|
+
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
39
|
+
"OnJsonApiEvent_lol-challenges_v1_updated-challenges": LCUTypes.PluginResourceEvent,
|
|
33
40
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
34
41
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
35
42
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -39,11 +46,21 @@ export interface LCUWebSocketEvents {
|
|
|
39
46
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_session": LCUTypes.PluginResourceEvent,
|
|
40
47
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
41
48
|
"OnJsonApiEvent_lol-champ-select_v1_all-grid-champions": LCUTypes.PluginResourceEvent,
|
|
49
|
+
"OnJsonApiEvent_lol-champ-select_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
50
|
+
"OnJsonApiEvent_lol-champ-select_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
51
|
+
"OnJsonApiEvent_lol-champ-select_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
42
52
|
"OnJsonApiEvent_lol-champ-select_v1_grid-champions": LCUTypes.PluginResourceEvent,
|
|
43
53
|
"OnJsonApiEvent_lol-champ-select_v1_muted-players": LCUTypes.PluginResourceEvent,
|
|
54
|
+
"OnJsonApiEvent_lol-champ-select_v1_pickable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
55
|
+
"OnJsonApiEvent_lol-champ-select_v1_pin-drop-notification": LCUTypes.PluginResourceEvent,
|
|
44
56
|
"OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
|
|
57
|
+
"OnJsonApiEvent_lol-champ-select_v1_sfx-notifications": LCUTypes.PluginResourceEvent,
|
|
58
|
+
"OnJsonApiEvent_lol-champ-select_v1_skin-carousel-skins": LCUTypes.PluginResourceEvent,
|
|
59
|
+
"OnJsonApiEvent_lol-champ-select_v1_skin-selector-info": LCUTypes.PluginResourceEvent,
|
|
60
|
+
"OnJsonApiEvent_lol-champ-select_v1_summoners": LCUTypes.PluginResourceEvent,
|
|
45
61
|
"OnJsonApiEvent_lol-champ-select_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
46
62
|
"OnJsonApiEvent_lol-champion-mastery_v1_local-player": LCUTypes.PluginResourceEvent,
|
|
63
|
+
"OnJsonApiEvent_lol-champion-mastery_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
47
64
|
"OnJsonApiEvent_lol-champion-mastery_v1_ready": LCUTypes.PluginResourceEvent,
|
|
48
65
|
"OnJsonApiEvent_lol-champions_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
49
66
|
"OnJsonApiEvent_lol-champions_v1_owned-champions-minimal": LCUTypes.PluginResourceEvent,
|
|
@@ -55,12 +72,12 @@ export interface LCUWebSocketEvents {
|
|
|
55
72
|
"OnJsonApiEvent_lol-chat_v1_friend-requests": LCUTypes.PluginResourceEvent,
|
|
56
73
|
"OnJsonApiEvent_lol-chat_v1_friends": LCUTypes.PluginResourceEvent,
|
|
57
74
|
"OnJsonApiEvent_lol-chat_v1_me": LCUTypes.PluginResourceEvent,
|
|
75
|
+
"OnJsonApiEvent_lol-chat_v1_obfuscated-summoner-ids": LCUTypes.PluginResourceEvent,
|
|
76
|
+
"OnJsonApiEvent_lol-chat_v1_player-mutes": LCUTypes.PluginResourceEvent,
|
|
58
77
|
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
59
78
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
60
79
|
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
61
|
-
"OnJsonApiEvent_lol-clash_v1_all-tournaments": LCUTypes.PluginResourceEvent,
|
|
62
80
|
"OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
|
|
63
|
-
"OnJsonApiEvent_lol-clash_v1_currentTournamentIds": LCUTypes.PluginResourceEvent,
|
|
64
81
|
"OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
|
|
65
82
|
"OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
66
83
|
"OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
|
|
@@ -70,9 +87,6 @@ export interface LCUWebSocketEvents {
|
|
|
70
87
|
"OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
|
|
71
88
|
"OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
|
|
72
89
|
"OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
|
|
73
|
-
"OnJsonApiEvent_lol-clash_v1_tournament": LCUTypes.PluginResourceEvent,
|
|
74
|
-
"OnJsonApiEvent_lol-clash_v1_tournament-state-info": LCUTypes.PluginResourceEvent,
|
|
75
|
-
"OnJsonApiEvent_lol-clash_v1_tournament-summary": LCUTypes.PluginResourceEvent,
|
|
76
90
|
"OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
|
|
77
91
|
"OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
|
|
78
92
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
@@ -83,6 +97,7 @@ export interface LCUWebSocketEvents {
|
|
|
83
97
|
"OnJsonApiEvent_lol-cosmetics_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
84
98
|
"OnJsonApiEvent_lol-drops_v1_ready": LCUTypes.PluginResourceEvent,
|
|
85
99
|
"OnJsonApiEvent_lol-dx9-deprecation_needs-hardware-upgrade": LCUTypes.PluginResourceEvent,
|
|
100
|
+
"OnJsonApiEvent_lol-end-of-game_v1_champion-mastery-updates": LCUTypes.PluginResourceEvent,
|
|
86
101
|
"OnJsonApiEvent_lol-end-of-game_v1_eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
87
102
|
"OnJsonApiEvent_lol-end-of-game_v1_gameclient-eog-stats-block": LCUTypes.PluginResourceEvent,
|
|
88
103
|
"OnJsonApiEvent_lol-end-of-game_v1_tft-eog-stats": LCUTypes.PluginResourceEvent,
|
|
@@ -101,6 +116,7 @@ export interface LCUWebSocketEvents {
|
|
|
101
116
|
"OnJsonApiEvent_lol-game-settings_v1_game-settings": LCUTypes.PluginResourceEvent,
|
|
102
117
|
"OnJsonApiEvent_lol-game-settings_v1_input-settings": LCUTypes.PluginResourceEvent,
|
|
103
118
|
"OnJsonApiEvent_lol-game-settings_v1_ready": LCUTypes.PluginResourceEvent,
|
|
119
|
+
"OnJsonApiEvent_lol-gameflow_v1_active-patcher-lock": LCUTypes.PluginResourceEvent,
|
|
104
120
|
"OnJsonApiEvent_lol-gameflow_v1_availability": LCUTypes.PluginResourceEvent,
|
|
105
121
|
"OnJsonApiEvent_lol-gameflow_v1_battle-training": LCUTypes.PluginResourceEvent,
|
|
106
122
|
"OnJsonApiEvent_lol-gameflow_v1_early-exit-notifications": LCUTypes.PluginResourceEvent,
|
|
@@ -110,20 +126,26 @@ export interface LCUWebSocketEvents {
|
|
|
110
126
|
"OnJsonApiEvent_lol-gameflow_v1_spectate": LCUTypes.PluginResourceEvent,
|
|
111
127
|
"OnJsonApiEvent_lol-gameflow_v1_watch": LCUTypes.PluginResourceEvent,
|
|
112
128
|
"OnJsonApiEvent_lol-highlights_v1_config": LCUTypes.PluginResourceEvent,
|
|
129
|
+
"OnJsonApiEvent_lol-highlights_v1_highlights": LCUTypes.PluginResourceEvent,
|
|
113
130
|
"OnJsonApiEvent_lol-highlights_v1_highlights-folder-path": LCUTypes.PluginResourceEvent,
|
|
114
131
|
"OnJsonApiEvent_lol-honeyfruit_v1_vng-publisher-settings": LCUTypes.PluginResourceEvent,
|
|
115
132
|
"OnJsonApiEvent_lol-honor-v2_v1_ballot": LCUTypes.PluginResourceEvent,
|
|
116
133
|
"OnJsonApiEvent_lol-honor-v2_v1_config": LCUTypes.PluginResourceEvent,
|
|
134
|
+
"OnJsonApiEvent_lol-honor-v2_v1_late-recognition": LCUTypes.PluginResourceEvent,
|
|
135
|
+
"OnJsonApiEvent_lol-honor-v2_v1_latest-eligible-game": LCUTypes.PluginResourceEvent,
|
|
117
136
|
"OnJsonApiEvent_lol-honor-v2_v1_level-change": LCUTypes.PluginResourceEvent,
|
|
137
|
+
"OnJsonApiEvent_lol-honor-v2_v1_mutual-honor": LCUTypes.PluginResourceEvent,
|
|
118
138
|
"OnJsonApiEvent_lol-honor-v2_v1_profile": LCUTypes.PluginResourceEvent,
|
|
119
139
|
"OnJsonApiEvent_lol-honor-v2_v1_recipients": LCUTypes.PluginResourceEvent,
|
|
120
140
|
"OnJsonApiEvent_lol-honor-v2_v1_recognition": LCUTypes.PluginResourceEvent,
|
|
121
141
|
"OnJsonApiEvent_lol-honor-v2_v1_recognition-history": LCUTypes.PluginResourceEvent,
|
|
122
142
|
"OnJsonApiEvent_lol-honor-v2_v1_team-choices": LCUTypes.PluginResourceEvent,
|
|
143
|
+
"OnJsonApiEvent_lol-honor-v2_v1_vote-completion": LCUTypes.PluginResourceEvent,
|
|
123
144
|
"OnJsonApiEvent_lol-hovercard_v1_friend-info": LCUTypes.PluginResourceEvent,
|
|
124
145
|
"OnJsonApiEvent_lol-hovercard_v1_friend-info-by-summoner": LCUTypes.PluginResourceEvent,
|
|
125
146
|
"OnJsonApiEvent_lol-inventory_v1_initial-configuration-complete": LCUTypes.PluginResourceEvent,
|
|
126
147
|
"OnJsonApiEvent_lol-inventory_v1_inventory": LCUTypes.PluginResourceEvent,
|
|
148
|
+
"OnJsonApiEvent_lol-inventory_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
127
149
|
"OnJsonApiEvent_lol-inventory_v1_signedInventory": LCUTypes.PluginResourceEvent,
|
|
128
150
|
"OnJsonApiEvent_lol-inventory_v1_wallet": LCUTypes.PluginResourceEvent,
|
|
129
151
|
"OnJsonApiEvent_lol-inventory_v2_inventory": LCUTypes.PluginResourceEvent,
|
|
@@ -140,10 +162,15 @@ export interface LCUWebSocketEvents {
|
|
|
140
162
|
"OnJsonApiEvent_lol-loadouts_v4_loadouts": LCUTypes.PluginResourceEvent,
|
|
141
163
|
"OnJsonApiEvent_lol-lobby-team-builder_champ-select_v1": LCUTypes.PluginResourceEvent,
|
|
142
164
|
"OnJsonApiEvent_lol-lobby-team-builder_v1_matchmaking": LCUTypes.PluginResourceEvent,
|
|
165
|
+
"OnJsonApiEvent_lol-lobby_v1_last-queued-lobby": LCUTypes.PluginResourceEvent,
|
|
143
166
|
"OnJsonApiEvent_lol-lobby_v1_lobby": LCUTypes.PluginResourceEvent,
|
|
167
|
+
"OnJsonApiEvent_lol-lobby_v1_parties": LCUTypes.PluginResourceEvent,
|
|
168
|
+
"OnJsonApiEvent_lol-lobby_v1_party-rewards": LCUTypes.PluginResourceEvent,
|
|
144
169
|
"OnJsonApiEvent_lol-lobby_v2_comms": LCUTypes.PluginResourceEvent,
|
|
145
170
|
"OnJsonApiEvent_lol-lobby_v2_eligibility": LCUTypes.PluginResourceEvent,
|
|
146
171
|
"OnJsonApiEvent_lol-lobby_v2_lobby": LCUTypes.PluginResourceEvent,
|
|
172
|
+
"OnJsonApiEvent_lol-lobby_v2_party": LCUTypes.PluginResourceEvent,
|
|
173
|
+
"OnJsonApiEvent_lol-lobby_v2_party-active": LCUTypes.PluginResourceEvent,
|
|
147
174
|
"OnJsonApiEvent_lol-lock-and-load_v1_home-hubs-waits": LCUTypes.PluginResourceEvent,
|
|
148
175
|
"OnJsonApiEvent_lol-lock-and-load_v1_should-show-progress-bar-text": LCUTypes.PluginResourceEvent,
|
|
149
176
|
"OnJsonApiEvent_lol-lock-and-load_v1_should-wait-for-home-hubs": LCUTypes.PluginResourceEvent,
|
|
@@ -156,6 +183,7 @@ export interface LCUWebSocketEvents {
|
|
|
156
183
|
"OnJsonApiEvent_lol-login_v2_league-session-init-token": LCUTypes.PluginResourceEvent,
|
|
157
184
|
"OnJsonApiEvent_lol-loot_v1_currency-configuration": LCUTypes.PluginResourceEvent,
|
|
158
185
|
"OnJsonApiEvent_lol-loot_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
186
|
+
"OnJsonApiEvent_lol-loot_v1_loot-grants": LCUTypes.PluginResourceEvent,
|
|
159
187
|
"OnJsonApiEvent_lol-loot_v1_milestones": LCUTypes.PluginResourceEvent,
|
|
160
188
|
"OnJsonApiEvent_lol-loot_v1_player-display-categories": LCUTypes.PluginResourceEvent,
|
|
161
189
|
"OnJsonApiEvent_lol-loot_v1_player-loot": LCUTypes.PluginResourceEvent,
|
|
@@ -168,21 +196,27 @@ export interface LCUWebSocketEvents {
|
|
|
168
196
|
"OnJsonApiEvent_lol-maps_v1_maps": LCUTypes.PluginResourceEvent,
|
|
169
197
|
"OnJsonApiEvent_lol-maps_v2_maps": LCUTypes.PluginResourceEvent,
|
|
170
198
|
"OnJsonApiEvent_lol-marketing-preferences_v1_ready": LCUTypes.PluginResourceEvent,
|
|
199
|
+
"OnJsonApiEvent_lol-matchmaking_v1_ready-check": LCUTypes.PluginResourceEvent,
|
|
171
200
|
"OnJsonApiEvent_lol-matchmaking_v1_search": LCUTypes.PluginResourceEvent,
|
|
172
201
|
"OnJsonApiEvent_lol-missions_v1_missions": LCUTypes.PluginResourceEvent,
|
|
173
202
|
"OnJsonApiEvent_lol-missions_v1_series": LCUTypes.PluginResourceEvent,
|
|
203
|
+
"OnJsonApiEvent_lol-nacho_v1_banners": LCUTypes.PluginResourceEvent,
|
|
204
|
+
"OnJsonApiEvent_lol-nacho_v1_get-store-digests": LCUTypes.PluginResourceEvent,
|
|
174
205
|
"OnJsonApiEvent_lol-npe-tutorial-path_v1_rewards": LCUTypes.PluginResourceEvent,
|
|
175
206
|
"OnJsonApiEvent_lol-npe-tutorial-path_v1_settings": LCUTypes.PluginResourceEvent,
|
|
176
207
|
"OnJsonApiEvent_lol-npe-tutorial-path_v1_tutorials": LCUTypes.PluginResourceEvent,
|
|
208
|
+
"OnJsonApiEvent_lol-objectives_v1_objectives": LCUTypes.PluginResourceEvent,
|
|
177
209
|
"OnJsonApiEvent_lol-patch_v1_checking-enabled": LCUTypes.PluginResourceEvent,
|
|
178
210
|
"OnJsonApiEvent_lol-patch_v1_environment": LCUTypes.PluginResourceEvent,
|
|
179
211
|
"OnJsonApiEvent_lol-patch_v1_game-version": LCUTypes.PluginResourceEvent,
|
|
180
212
|
"OnJsonApiEvent_lol-patch_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
181
213
|
"OnJsonApiEvent_lol-patch_v1_products": LCUTypes.PluginResourceEvent,
|
|
182
214
|
"OnJsonApiEvent_lol-patch_v1_status": LCUTypes.PluginResourceEvent,
|
|
215
|
+
"OnJsonApiEvent_lol-perks_v1_currentpage": LCUTypes.PluginResourceEvent,
|
|
183
216
|
"OnJsonApiEvent_lol-perks_v1_inventory": LCUTypes.PluginResourceEvent,
|
|
184
217
|
"OnJsonApiEvent_lol-perks_v1_pages": LCUTypes.PluginResourceEvent,
|
|
185
218
|
"OnJsonApiEvent_lol-perks_v1_perks": LCUTypes.PluginResourceEvent,
|
|
219
|
+
"OnJsonApiEvent_lol-perks_v1_rune-recommender-auto-select": LCUTypes.PluginResourceEvent,
|
|
186
220
|
"OnJsonApiEvent_lol-perks_v1_settings": LCUTypes.PluginResourceEvent,
|
|
187
221
|
"OnJsonApiEvent_lol-perks_v1_styles": LCUTypes.PluginResourceEvent,
|
|
188
222
|
"OnJsonApiEvent_lol-platform-config_v1_initial-configuration-complete": LCUTypes.PluginResourceEvent,
|
|
@@ -426,6 +460,7 @@ export interface LCUWebSocketEvents {
|
|
|
426
460
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SNOWURF": LCUTypes.PluginResourceEvent,
|
|
427
461
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SR_6x6": LCUTypes.PluginResourceEvent,
|
|
428
462
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_STRAWBERRY": LCUTypes.PluginResourceEvent,
|
|
463
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SWIFTPLAY": LCUTypes.PluginResourceEvent,
|
|
429
464
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_TFT": LCUTypes.PluginResourceEvent,
|
|
430
465
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_TUTORIAL": LCUTypes.PluginResourceEvent,
|
|
431
466
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_TUTORIAL_MODULE_1": LCUTypes.PluginResourceEvent,
|
|
@@ -1189,7 +1224,9 @@ export interface LCUWebSocketEvents {
|
|
|
1189
1224
|
"OnJsonApiEvent_lol-player-behavior_v1_config": LCUTypes.PluginResourceEvent,
|
|
1190
1225
|
"OnJsonApiEvent_lol-player-behavior_v2_reporter-feedback": LCUTypes.PluginResourceEvent,
|
|
1191
1226
|
"OnJsonApiEvent_lol-player-behavior_v3_reform-cards": LCUTypes.PluginResourceEvent,
|
|
1227
|
+
"OnJsonApiEvent_lol-player-level-up_v1_level-up": LCUTypes.PluginResourceEvent,
|
|
1192
1228
|
"OnJsonApiEvent_lol-player-preferences_v1_player-preferences-ready": LCUTypes.PluginResourceEvent,
|
|
1229
|
+
"OnJsonApiEvent_lol-player-report-sender_v1_in-game-reports": LCUTypes.PluginResourceEvent,
|
|
1193
1230
|
"OnJsonApiEvent_lol-pre-end-of-game_v1_currentSequenceEvent": LCUTypes.PluginResourceEvent,
|
|
1194
1231
|
"OnJsonApiEvent_lol-premade-voice_v1_availability": LCUTypes.PluginResourceEvent,
|
|
1195
1232
|
"OnJsonApiEvent_lol-premade-voice_v1_capturedevices": LCUTypes.PluginResourceEvent,
|
|
@@ -1204,6 +1241,7 @@ export interface LCUWebSocketEvents {
|
|
|
1204
1241
|
"OnJsonApiEvent_lol-purchase-widget_v1_configuration": LCUTypes.PluginResourceEvent,
|
|
1205
1242
|
"OnJsonApiEvent_lol-purchase-widget_v3_purchase-offer-order-statuses": LCUTypes.PluginResourceEvent,
|
|
1206
1243
|
"OnJsonApiEvent_lol-ranked_v1_challenger-ladders-enabled": LCUTypes.PluginResourceEvent,
|
|
1244
|
+
"OnJsonApiEvent_lol-ranked_v1_current-lp-change-notification": LCUTypes.PluginResourceEvent,
|
|
1207
1245
|
"OnJsonApiEvent_lol-ranked_v1_current-ranked-stats": LCUTypes.PluginResourceEvent,
|
|
1208
1246
|
"OnJsonApiEvent_lol-ranked_v1_eos-rewards": LCUTypes.PluginResourceEvent,
|
|
1209
1247
|
"OnJsonApiEvent_lol-ranked_v1_global-notifications": LCUTypes.PluginResourceEvent,
|
|
@@ -1220,6 +1258,7 @@ export interface LCUWebSocketEvents {
|
|
|
1220
1258
|
"OnJsonApiEvent_lol-replays_v1_rofls": LCUTypes.PluginResourceEvent,
|
|
1221
1259
|
"OnJsonApiEvent_lol-rewards_v1_grants": LCUTypes.PluginResourceEvent,
|
|
1222
1260
|
"OnJsonApiEvent_lol-rewards_v1_groups": LCUTypes.PluginResourceEvent,
|
|
1261
|
+
"OnJsonApiEvent_lol-rms_v1_champion-mastery-leaveup-update": LCUTypes.PluginResourceEvent,
|
|
1223
1262
|
"OnJsonApiEvent_lol-rso-auth_configuration_v3": LCUTypes.PluginResourceEvent,
|
|
1224
1263
|
"OnJsonApiEvent_lol-rso-auth_v1_authorization": LCUTypes.PluginResourceEvent,
|
|
1225
1264
|
"OnJsonApiEvent_lol-settings_v1_account": LCUTypes.PluginResourceEvent,
|
|
@@ -1229,7 +1268,10 @@ export interface LCUWebSocketEvents {
|
|
|
1229
1268
|
"OnJsonApiEvent_lol-settings_v2_local": LCUTypes.PluginResourceEvent,
|
|
1230
1269
|
"OnJsonApiEvent_lol-settings_v2_ready": LCUTypes.PluginResourceEvent,
|
|
1231
1270
|
"OnJsonApiEvent_lol-shutdown_v1_notification": LCUTypes.PluginResourceEvent,
|
|
1271
|
+
"OnJsonApiEvent_lol-simple-dialog-messages_v1_messages": LCUTypes.PluginResourceEvent,
|
|
1232
1272
|
"OnJsonApiEvent_lol-spectator_v1_spectate": LCUTypes.PluginResourceEvent,
|
|
1273
|
+
"OnJsonApiEvent_lol-statstones_v1_eog-notifications": LCUTypes.PluginResourceEvent,
|
|
1274
|
+
"OnJsonApiEvent_lol-statstones_v1_vignette-notifications": LCUTypes.PluginResourceEvent,
|
|
1233
1275
|
"OnJsonApiEvent_lol-statstones_v2_player-summary-self": LCUTypes.PluginResourceEvent,
|
|
1234
1276
|
"OnJsonApiEvent_lol-store_v1_getStoreUrl": LCUTypes.PluginResourceEvent,
|
|
1235
1277
|
"OnJsonApiEvent_lol-store_v1_store-ready": LCUTypes.PluginResourceEvent,
|
|
@@ -1239,6 +1281,7 @@ export interface LCUWebSocketEvents {
|
|
|
1239
1281
|
"OnJsonApiEvent_lol-summoner_v1_player-name-mode": LCUTypes.PluginResourceEvent,
|
|
1240
1282
|
"OnJsonApiEvent_lol-summoner_v1_status": LCUTypes.PluginResourceEvent,
|
|
1241
1283
|
"OnJsonApiEvent_lol-summoner_v1_summoner-requests-ready": LCUTypes.PluginResourceEvent,
|
|
1284
|
+
"OnJsonApiEvent_lol-summoner_v1_summoners": LCUTypes.PluginResourceEvent,
|
|
1242
1285
|
"OnJsonApiEvent_lol-tastes_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1243
1286
|
"OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
|
|
1244
1287
|
"OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
|
package/dist/lcu-types.d.ts
CHANGED
|
@@ -670,6 +670,8 @@ export interface EndOfGameLcdsEndOfGameStats {
|
|
|
670
670
|
gameId: number
|
|
671
671
|
/** @format uint32 */
|
|
672
672
|
gameLength: number
|
|
673
|
+
/** @format int64 */
|
|
674
|
+
endOfGameTimestamp: number
|
|
673
675
|
gameMode: string
|
|
674
676
|
gameMutators: string[]
|
|
675
677
|
gameType: string
|
|
@@ -867,6 +869,11 @@ export interface GameQueuesLcdsGameQueueConfig {
|
|
|
867
869
|
removalFromGameAllowed: boolean
|
|
868
870
|
/** @format int32 */
|
|
869
871
|
removalFromGameDelayMinutes: number
|
|
872
|
+
custom: boolean
|
|
873
|
+
/** @format uint32 */
|
|
874
|
+
numberOfTeamsInLobby: number
|
|
875
|
+
/** @format uint32 */
|
|
876
|
+
maxLobbySpectatorCount: number
|
|
870
877
|
}
|
|
871
878
|
|
|
872
879
|
export interface GameflowLcdsGameDTO {
|
|
@@ -1588,6 +1595,45 @@ export interface LolBannersTournamentFrameInventoryItem {
|
|
|
1588
1595
|
purchaseDate: string
|
|
1589
1596
|
}
|
|
1590
1597
|
|
|
1598
|
+
export interface LolCapMissionsCapMissionSeries {
|
|
1599
|
+
name: string
|
|
1600
|
+
configurationId: string
|
|
1601
|
+
missions: LolCapMissionsCapMissionSeriesMission[]
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
export interface LolCapMissionsCapMissionSeriesMission {
|
|
1605
|
+
name: string
|
|
1606
|
+
missionId: string
|
|
1607
|
+
missionCollectionId: string
|
|
1608
|
+
status: string
|
|
1609
|
+
objectives: LolCapMissionsCapMissionSeriesMissionObjective[]
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
export interface LolCapMissionsCapMissionSeriesMissionObjective {
|
|
1613
|
+
statId: string
|
|
1614
|
+
/** @format uint32 */
|
|
1615
|
+
goal: number
|
|
1616
|
+
/** @format uint32 */
|
|
1617
|
+
currentValue: number
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
export interface LolCapMissionsCapMissionsMeResponse {
|
|
1621
|
+
productId: string
|
|
1622
|
+
ownerId: string
|
|
1623
|
+
series: LolCapMissionsCapMissionSeries[]
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
export interface LolCapMissionsLoginSession {
|
|
1627
|
+
state: LolCapMissionsLoginSessionStates
|
|
1628
|
+
/** @format uint64 */
|
|
1629
|
+
summonerId: number
|
|
1630
|
+
/** @format uint64 */
|
|
1631
|
+
accountId: number
|
|
1632
|
+
idToken: string
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
export type LolCapMissionsLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
1636
|
+
|
|
1591
1637
|
export interface LolCatalogBundled {
|
|
1592
1638
|
flexible: boolean
|
|
1593
1639
|
items: LolCatalogBundledItem[]
|
|
@@ -1645,6 +1691,8 @@ export interface LolCatalogCatalogPluginItem {
|
|
|
1645
1691
|
description: string
|
|
1646
1692
|
imagePath: string
|
|
1647
1693
|
tilePath: string
|
|
1694
|
+
loadScreenPath: string
|
|
1695
|
+
rarity: string
|
|
1648
1696
|
/** @format uint64 */
|
|
1649
1697
|
purchaseDate: number
|
|
1650
1698
|
/** @format uint64 */
|
|
@@ -1664,6 +1712,7 @@ export interface LolCatalogCatalogPluginItemAssets {
|
|
|
1664
1712
|
splashPath: string
|
|
1665
1713
|
iconPath: string
|
|
1666
1714
|
tilePath: string
|
|
1715
|
+
loadScreenPath: string
|
|
1667
1716
|
emblems: LolCatalogChampionSkinEmblem[]
|
|
1668
1717
|
colors: string[]
|
|
1669
1718
|
}
|
|
@@ -1734,6 +1783,8 @@ export interface LolCatalogGameDataChampionSkin {
|
|
|
1734
1783
|
emblems: LolCatalogChampionSkinEmblem[]
|
|
1735
1784
|
uncenteredSplashPath: string
|
|
1736
1785
|
tilePath: string
|
|
1786
|
+
loadScreenPath: string
|
|
1787
|
+
rarity: string
|
|
1737
1788
|
chromaPath: string
|
|
1738
1789
|
questSkinInfo?: LolCatalogSkinLineInfo
|
|
1739
1790
|
colors: string[]
|
|
@@ -1901,6 +1952,7 @@ export interface LolCatalogSkinLineInfo {
|
|
|
1901
1952
|
uncenteredSplashPath: string
|
|
1902
1953
|
collectionDescription: string
|
|
1903
1954
|
tiers: LolCatalogSkinLineTier[]
|
|
1955
|
+
productType: string
|
|
1904
1956
|
}
|
|
1905
1957
|
|
|
1906
1958
|
export interface LolCatalogSkinLineTier {
|
|
@@ -1917,6 +1969,11 @@ export interface LolCatalogSkinLineTier {
|
|
|
1917
1969
|
shortName: string
|
|
1918
1970
|
splashVideoPath?: string
|
|
1919
1971
|
collectionSplashVideoPath?: string
|
|
1972
|
+
ownership: LolCatalogSkinLineTierOwnership
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1975
|
+
export interface LolCatalogSkinLineTierOwnership {
|
|
1976
|
+
owned: boolean
|
|
1920
1977
|
}
|
|
1921
1978
|
|
|
1922
1979
|
export interface LolChallengesChallengeData {
|
|
@@ -6091,6 +6148,46 @@ export interface LolCosmeticsCosmeticsTFTPlaybookViewModel {
|
|
|
6091
6148
|
isDisabledInDoubleUp: boolean
|
|
6092
6149
|
}
|
|
6093
6150
|
|
|
6151
|
+
export interface LolCosmeticsCosmeticsTFTZoomSkin {
|
|
6152
|
+
contentId: string
|
|
6153
|
+
/** @format int32 */
|
|
6154
|
+
itemId: number
|
|
6155
|
+
name: string
|
|
6156
|
+
description: string
|
|
6157
|
+
loadoutsIcon: string
|
|
6158
|
+
owned: boolean
|
|
6159
|
+
selected: boolean
|
|
6160
|
+
loyalty: boolean
|
|
6161
|
+
"f2p": boolean
|
|
6162
|
+
/** @format uint32 */
|
|
6163
|
+
rarityValue: number
|
|
6164
|
+
purchaseDate: string
|
|
6165
|
+
/** @format uint32 */
|
|
6166
|
+
groupId: number
|
|
6167
|
+
groupName: string
|
|
6168
|
+
}
|
|
6169
|
+
|
|
6170
|
+
export interface LolCosmeticsCosmeticsTFTZoomSkinViewModel {
|
|
6171
|
+
contentId: string
|
|
6172
|
+
/** @format int32 */
|
|
6173
|
+
itemId: number
|
|
6174
|
+
name: string
|
|
6175
|
+
description: string
|
|
6176
|
+
loadoutsIcon: string
|
|
6177
|
+
owned: boolean
|
|
6178
|
+
selected: boolean
|
|
6179
|
+
favorited: boolean
|
|
6180
|
+
loyalty: boolean
|
|
6181
|
+
"f2p": boolean
|
|
6182
|
+
/** @format uint32 */
|
|
6183
|
+
rarityValue: number
|
|
6184
|
+
purchaseDate: string
|
|
6185
|
+
isRecentItem: boolean
|
|
6186
|
+
/** @format uint32 */
|
|
6187
|
+
groupId: number
|
|
6188
|
+
groupName: string
|
|
6189
|
+
}
|
|
6190
|
+
|
|
6094
6191
|
export interface LolCosmeticsFavoriteCosmetics {
|
|
6095
6192
|
companions: string[]
|
|
6096
6193
|
tft_map_skins: string[]
|
|
@@ -6169,6 +6266,20 @@ export interface LolCosmeticsGameDataTFTPlaybook {
|
|
|
6169
6266
|
isDisabledInDoubleUp: boolean
|
|
6170
6267
|
}
|
|
6171
6268
|
|
|
6269
|
+
export interface LolCosmeticsGameDataTFTZoomSkin {
|
|
6270
|
+
contentId: string
|
|
6271
|
+
/** @format int32 */
|
|
6272
|
+
itemId: number
|
|
6273
|
+
name: string
|
|
6274
|
+
description: string
|
|
6275
|
+
loadoutsIcon: string
|
|
6276
|
+
/** @format uint32 */
|
|
6277
|
+
groupId: number
|
|
6278
|
+
groupName: string
|
|
6279
|
+
/** @format uint32 */
|
|
6280
|
+
rarityValue: number
|
|
6281
|
+
}
|
|
6282
|
+
|
|
6172
6283
|
export interface LolCosmeticsLoadout {
|
|
6173
6284
|
id: string
|
|
6174
6285
|
name: string
|
|
@@ -6271,6 +6382,30 @@ export interface LolCosmeticsTFTSettingsResource {
|
|
|
6271
6382
|
schemaVersion: number
|
|
6272
6383
|
}
|
|
6273
6384
|
|
|
6385
|
+
export interface LolCosmeticsTFTZoomSkinFavoritesViewModel {
|
|
6386
|
+
favoriteItems: LolCosmeticsCosmeticsTFTZoomSkinViewModel[]
|
|
6387
|
+
}
|
|
6388
|
+
|
|
6389
|
+
export interface LolCosmeticsTFTZoomSkinGroupViewModel {
|
|
6390
|
+
groupName: string
|
|
6391
|
+
/** @format uint32 */
|
|
6392
|
+
groupId: number
|
|
6393
|
+
/** @format uint32 */
|
|
6394
|
+
numOwned: number
|
|
6395
|
+
/** @format uint32 */
|
|
6396
|
+
numAvailable: number
|
|
6397
|
+
/** @format int64 */
|
|
6398
|
+
purchaseDate: number
|
|
6399
|
+
items: LolCosmeticsCosmeticsTFTZoomSkinViewModel[]
|
|
6400
|
+
}
|
|
6401
|
+
|
|
6402
|
+
export interface LolCosmeticsTFTZoomSkinGroupedViewModel {
|
|
6403
|
+
selectedLoadoutItem: LolCosmeticsCosmeticsTFTZoomSkinViewModel
|
|
6404
|
+
/** @format int32 */
|
|
6405
|
+
defaultItemId: number
|
|
6406
|
+
groups: LolCosmeticsTFTZoomSkinGroupViewModel[]
|
|
6407
|
+
}
|
|
6408
|
+
|
|
6274
6409
|
export interface LolCosmeticsUserResource {
|
|
6275
6410
|
/** @format uint64 */
|
|
6276
6411
|
summonerId: number
|
|
@@ -6523,6 +6658,8 @@ export interface LolEndOfGameEndOfGameStats {
|
|
|
6523
6658
|
gameId: number
|
|
6524
6659
|
/** @format int32 */
|
|
6525
6660
|
gameLength: number
|
|
6661
|
+
/** @format int64 */
|
|
6662
|
+
endOfGameTimestamp: number
|
|
6526
6663
|
gameMode: string
|
|
6527
6664
|
gameMutators: string[]
|
|
6528
6665
|
gameType: string
|
|
@@ -7287,6 +7424,29 @@ export interface LolEventHubChampionSkinEmblemPosition {
|
|
|
7287
7424
|
horizontal: string
|
|
7288
7425
|
}
|
|
7289
7426
|
|
|
7427
|
+
export interface LolEventHubChapter {
|
|
7428
|
+
localizedTitle: string
|
|
7429
|
+
localizedDescription: string
|
|
7430
|
+
cardImage: string
|
|
7431
|
+
backgroundImage: string
|
|
7432
|
+
backgroundVideo: string
|
|
7433
|
+
foregroundImage: string
|
|
7434
|
+
/** @format uint16 */
|
|
7435
|
+
chapterStart: number
|
|
7436
|
+
/** @format uint16 */
|
|
7437
|
+
chapterEnd: number
|
|
7438
|
+
/** @format uint16 */
|
|
7439
|
+
chapterNumber: number
|
|
7440
|
+
/** @format uint16 */
|
|
7441
|
+
levelFocus: number
|
|
7442
|
+
}
|
|
7443
|
+
|
|
7444
|
+
export interface LolEventHubChaptersUIData {
|
|
7445
|
+
/** @format uint16 */
|
|
7446
|
+
currentChapter: number
|
|
7447
|
+
chapters: LolEventHubChapter[]
|
|
7448
|
+
}
|
|
7449
|
+
|
|
7290
7450
|
export interface LolEventHubClientCacheClearMessageDTO {
|
|
7291
7451
|
regions: string[]
|
|
7292
7452
|
clearAll: boolean
|
|
@@ -7375,7 +7535,7 @@ export interface LolEventHubEventHubError {
|
|
|
7375
7535
|
errorId: string
|
|
7376
7536
|
}
|
|
7377
7537
|
|
|
7378
|
-
export type LolEventHubEventHubType = "HallOfLegends" | "EventShop"
|
|
7538
|
+
export type LolEventHubEventHubType = "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
7379
7539
|
|
|
7380
7540
|
export interface LolEventHubEventInfoUIData {
|
|
7381
7541
|
eventId: string
|
|
@@ -7556,6 +7716,8 @@ export interface LolEventHubFSCRewards {
|
|
|
7556
7716
|
imageOverlay: string
|
|
7557
7717
|
title: string
|
|
7558
7718
|
subtitle: string
|
|
7719
|
+
rarity: string
|
|
7720
|
+
questSkinInfo: LolEventHubRewardsSkinLineInfo
|
|
7559
7721
|
}
|
|
7560
7722
|
|
|
7561
7723
|
export type LolEventHubGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
@@ -7928,6 +8090,12 @@ export interface LolEventHubNextRewardUIData {
|
|
|
7928
8090
|
level: string
|
|
7929
8091
|
}
|
|
7930
8092
|
|
|
8093
|
+
export interface LolEventHubObjectivesBanner {
|
|
8094
|
+
eventName: string
|
|
8095
|
+
currentChapter: LolEventHubChapter
|
|
8096
|
+
trackProgress: LolEventHubTrackProgressNextReward
|
|
8097
|
+
}
|
|
8098
|
+
|
|
7931
8099
|
export interface LolEventHubOffer {
|
|
7932
8100
|
id: string
|
|
7933
8101
|
localizedTitle: string
|
|
@@ -8255,10 +8423,46 @@ export interface LolEventHubRewardTrackXP {
|
|
|
8255
8423
|
iteration: number
|
|
8256
8424
|
}
|
|
8257
8425
|
|
|
8426
|
+
export interface LolEventHubRewardsCatalogPluginItem {
|
|
8427
|
+
/** @format int32 */
|
|
8428
|
+
itemId: number
|
|
8429
|
+
name: string
|
|
8430
|
+
itemInstanceId: string
|
|
8431
|
+
owned: boolean
|
|
8432
|
+
rarity: string
|
|
8433
|
+
active: boolean
|
|
8434
|
+
questSkinInfo: LolEventHubRewardsSkinLineInfo
|
|
8435
|
+
}
|
|
8436
|
+
|
|
8437
|
+
export interface LolEventHubRewardsCatalogPluginItemAssets {
|
|
8438
|
+
splashPath: string
|
|
8439
|
+
loadScreenPath: string
|
|
8440
|
+
}
|
|
8441
|
+
|
|
8442
|
+
export interface LolEventHubRewardsCatalogPluginItemWithDetails {
|
|
8443
|
+
item: LolEventHubRewardsCatalogPluginItem
|
|
8444
|
+
assets: LolEventHubRewardsCatalogPluginItemAssets
|
|
8445
|
+
}
|
|
8446
|
+
|
|
8258
8447
|
export interface LolEventHubRewardsConfig {
|
|
8259
8448
|
GrantFiltering: boolean
|
|
8260
8449
|
}
|
|
8261
8450
|
|
|
8451
|
+
export interface LolEventHubRewardsSkinLineInfo {
|
|
8452
|
+
productType: string
|
|
8453
|
+
tiers: LolEventHubRewardsSkinLineTier[]
|
|
8454
|
+
}
|
|
8455
|
+
|
|
8456
|
+
export interface LolEventHubRewardsSkinLineTier {
|
|
8457
|
+
/** @format int64 */
|
|
8458
|
+
stage: number
|
|
8459
|
+
ownership: LolEventHubRewardsSkinLineTierOwnership
|
|
8460
|
+
}
|
|
8461
|
+
|
|
8462
|
+
export interface LolEventHubRewardsSkinLineTierOwnership {
|
|
8463
|
+
owned: boolean
|
|
8464
|
+
}
|
|
8465
|
+
|
|
8262
8466
|
export interface LolEventHubRiotMessagingServiceMessage {
|
|
8263
8467
|
resource: string
|
|
8264
8468
|
service: string
|
|
@@ -8302,6 +8506,29 @@ export interface LolEventHubSale {
|
|
|
8302
8506
|
prices: LolEventHubItemCost[]
|
|
8303
8507
|
}
|
|
8304
8508
|
|
|
8509
|
+
export interface LolEventHubSeasonPass {
|
|
8510
|
+
eventId: string
|
|
8511
|
+
eventHubType: string
|
|
8512
|
+
localizedName: string
|
|
8513
|
+
navbarIconImage: string
|
|
8514
|
+
headerIconImage: string
|
|
8515
|
+
headerTitleImage: string
|
|
8516
|
+
startDate: string
|
|
8517
|
+
progressEndDate: string
|
|
8518
|
+
endDate: string
|
|
8519
|
+
helpModalImage: string
|
|
8520
|
+
eventPassBundlesCatalogEntry: LolEventHubCatalogEntry[]
|
|
8521
|
+
progressionPurchaseCatalogEntry: LolEventHubCatalogEntry
|
|
8522
|
+
rewardTrack: LolEventHubRewardTrack
|
|
8523
|
+
localizedUpsellTitle: string
|
|
8524
|
+
localizedUpsellTooltipTitle: string
|
|
8525
|
+
localizedUpsellTooltipDescription: string
|
|
8526
|
+
localizedUpsellButtonText: string
|
|
8527
|
+
upsellBackgroundImageUrl: string
|
|
8528
|
+
upsellTooltipBackgroundImageUrl: string
|
|
8529
|
+
chapters: LolEventHubChapter[]
|
|
8530
|
+
}
|
|
8531
|
+
|
|
8305
8532
|
export type LolEventHubSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
8306
8533
|
|
|
8307
8534
|
export interface LolEventHubSelectionRequestDTO {
|
|
@@ -8839,6 +9066,11 @@ export interface LolGameQueuesQueue {
|
|
|
8839
9066
|
/** @format uint8 */
|
|
8840
9067
|
gameSelectPriority: number
|
|
8841
9068
|
isSkillTreeQueue: boolean
|
|
9069
|
+
isCustom: boolean
|
|
9070
|
+
/** @format uint32 */
|
|
9071
|
+
numberOfTeamsInLobby: number
|
|
9072
|
+
/** @format uint32 */
|
|
9073
|
+
maxLobbySpectatorCount: number
|
|
8842
9074
|
}
|
|
8843
9075
|
|
|
8844
9076
|
export type LolGameQueuesQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -11063,6 +11295,7 @@ export interface LolLobbyLobbyParticipantDto {
|
|
|
11063
11295
|
teamId: number
|
|
11064
11296
|
firstPositionPreference: string
|
|
11065
11297
|
secondPositionPreference: string
|
|
11298
|
+
memberData?: Record<string, string>
|
|
11066
11299
|
/** @format int8 */
|
|
11067
11300
|
subteamIndex?: number
|
|
11068
11301
|
/** @format int8 */
|
|
@@ -11258,6 +11491,7 @@ export interface LolLobbyPartyMemberDto {
|
|
|
11258
11491
|
export interface LolLobbyPartyMemberMetadataDto {
|
|
11259
11492
|
positionPref: string[]
|
|
11260
11493
|
properties?: unknown
|
|
11494
|
+
memberData?: unknown
|
|
11261
11495
|
playerSlots: LolLobbyQuickPlayPresetSlotDto[]
|
|
11262
11496
|
subteamData?: LolLobbySubteamDataDto
|
|
11263
11497
|
quickplayPlayerState?: string
|
|
@@ -12574,6 +12808,8 @@ export interface LolLootFSCRewards {
|
|
|
12574
12808
|
imageOverlay: string
|
|
12575
12809
|
title: string
|
|
12576
12810
|
subtitle: string
|
|
12811
|
+
rarity: string
|
|
12812
|
+
questSkinInfo: LolLootRewardsSkinLineInfo
|
|
12577
12813
|
}
|
|
12578
12814
|
|
|
12579
12815
|
export interface LolLootGameDataNexusFinisher {
|
|
@@ -13172,10 +13408,46 @@ export type LolLootRewardStatus = "FAILED" | "FULFILLED" | "PENDING"
|
|
|
13172
13408
|
|
|
13173
13409
|
export type LolLootRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
13174
13410
|
|
|
13411
|
+
export interface LolLootRewardsCatalogPluginItem {
|
|
13412
|
+
/** @format int32 */
|
|
13413
|
+
itemId: number
|
|
13414
|
+
name: string
|
|
13415
|
+
itemInstanceId: string
|
|
13416
|
+
owned: boolean
|
|
13417
|
+
rarity: string
|
|
13418
|
+
active: boolean
|
|
13419
|
+
questSkinInfo: LolLootRewardsSkinLineInfo
|
|
13420
|
+
}
|
|
13421
|
+
|
|
13422
|
+
export interface LolLootRewardsCatalogPluginItemAssets {
|
|
13423
|
+
splashPath: string
|
|
13424
|
+
loadScreenPath: string
|
|
13425
|
+
}
|
|
13426
|
+
|
|
13427
|
+
export interface LolLootRewardsCatalogPluginItemWithDetails {
|
|
13428
|
+
item: LolLootRewardsCatalogPluginItem
|
|
13429
|
+
assets: LolLootRewardsCatalogPluginItemAssets
|
|
13430
|
+
}
|
|
13431
|
+
|
|
13175
13432
|
export interface LolLootRewardsConfig {
|
|
13176
13433
|
GrantFiltering: boolean
|
|
13177
13434
|
}
|
|
13178
13435
|
|
|
13436
|
+
export interface LolLootRewardsSkinLineInfo {
|
|
13437
|
+
productType: string
|
|
13438
|
+
tiers: LolLootRewardsSkinLineTier[]
|
|
13439
|
+
}
|
|
13440
|
+
|
|
13441
|
+
export interface LolLootRewardsSkinLineTier {
|
|
13442
|
+
/** @format int64 */
|
|
13443
|
+
stage: number
|
|
13444
|
+
ownership: LolLootRewardsSkinLineTierOwnership
|
|
13445
|
+
}
|
|
13446
|
+
|
|
13447
|
+
export interface LolLootRewardsSkinLineTierOwnership {
|
|
13448
|
+
owned: boolean
|
|
13449
|
+
}
|
|
13450
|
+
|
|
13179
13451
|
export type LolLootSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
13180
13452
|
|
|
13181
13453
|
export interface LolLootSelectionRequestDTO {
|
|
@@ -13662,13 +13934,13 @@ export interface LolMatchHistoryMatchHistoryEvent {
|
|
|
13662
13934
|
type: string
|
|
13663
13935
|
/** @format uint64 */
|
|
13664
13936
|
timestamp: number
|
|
13937
|
+
/** @format uint32 */
|
|
13938
|
+
itemId: number
|
|
13665
13939
|
/** @format uint16 */
|
|
13666
13940
|
participantId: number
|
|
13667
13941
|
/** @format uint16 */
|
|
13668
13942
|
teamId: number
|
|
13669
13943
|
/** @format uint16 */
|
|
13670
|
-
itemId: number
|
|
13671
|
-
/** @format uint16 */
|
|
13672
13944
|
killerId: number
|
|
13673
13945
|
/** @format uint16 */
|
|
13674
13946
|
victimId: number
|
|
@@ -14484,6 +14756,7 @@ export interface LolNachoBannerOddsInfo {
|
|
|
14484
14756
|
name: string
|
|
14485
14757
|
productId: string
|
|
14486
14758
|
rewardTables: LolNachoNachoRollRewardsTable[]
|
|
14759
|
+
endDateMilis: string
|
|
14487
14760
|
}
|
|
14488
14761
|
|
|
14489
14762
|
export interface LolNachoBlessingTokenPurchaseRequest {
|
|
@@ -14504,6 +14777,7 @@ export interface LolNachoCapDropsDropTableDisplayMetadata {
|
|
|
14504
14777
|
/** @format uint8 */
|
|
14505
14778
|
version: number
|
|
14506
14779
|
oddsTree: LolNachoDropsOddsTreeNodeDTO
|
|
14780
|
+
endDateMilis: string
|
|
14507
14781
|
}
|
|
14508
14782
|
|
|
14509
14783
|
export interface LolNachoClientConfigNachoBanners {
|
|
@@ -14529,6 +14803,13 @@ export interface LolNachoFinalPurchaseUnitDto {
|
|
|
14529
14803
|
}
|
|
14530
14804
|
|
|
14531
14805
|
export interface LolNachoFulfillmentDto {
|
|
14806
|
+
name: string
|
|
14807
|
+
itemTypeId: string
|
|
14808
|
+
itemId: string
|
|
14809
|
+
/** @format int64 */
|
|
14810
|
+
finalDelta: number
|
|
14811
|
+
/** @format int64 */
|
|
14812
|
+
delta: number
|
|
14532
14813
|
results: unknown
|
|
14533
14814
|
}
|
|
14534
14815
|
|
|
@@ -14554,9 +14835,7 @@ export interface LolNachoGameDataNachoBanner {
|
|
|
14554
14835
|
chaseCelebrationVo: LolNachoGameDataNachoBannerVo
|
|
14555
14836
|
hubIntroVo: LolNachoGameDataNachoBannerVo
|
|
14556
14837
|
rollVignette: LolNachoNachoVignette
|
|
14557
|
-
|
|
14558
|
-
rollCardTierTwo: LolNachoNachoRollCard
|
|
14559
|
-
rollCardTierThree: LolNachoNachoRollCard
|
|
14838
|
+
capCatalogStoreId: string
|
|
14560
14839
|
}
|
|
14561
14840
|
|
|
14562
14841
|
export interface LolNachoGameDataNachoBannerTable {
|
|
@@ -14638,9 +14917,6 @@ export interface LolNachoNachoBannersResponse {
|
|
|
14638
14917
|
chaseCelebrationVo: LolNachoGameDataNachoBannerVo
|
|
14639
14918
|
hubIntroVo: LolNachoGameDataNachoBannerVo
|
|
14640
14919
|
rollVignette: LolNachoNachoVignette
|
|
14641
|
-
rollCardTierOne: LolNachoNachoRollCard
|
|
14642
|
-
rollCardTierTwo: LolNachoNachoRollCard
|
|
14643
|
-
rollCardTierThree: LolNachoNachoRollCard
|
|
14644
14920
|
}
|
|
14645
14921
|
|
|
14646
14922
|
export interface LolNachoNachoPurchaseResponse {
|
|
@@ -14668,15 +14944,6 @@ export interface LolNachoNachoRewardData {
|
|
|
14668
14944
|
quantity: number
|
|
14669
14945
|
}
|
|
14670
14946
|
|
|
14671
|
-
export interface LolNachoNachoRollCard {
|
|
14672
|
-
cardPath: string
|
|
14673
|
-
cardBackPath: string
|
|
14674
|
-
cardWebmTopPath: string
|
|
14675
|
-
cardWebmBotPath: string
|
|
14676
|
-
cardWebmHoverPath: string
|
|
14677
|
-
cardWebmLoopPath: string
|
|
14678
|
-
}
|
|
14679
|
-
|
|
14680
14947
|
export interface LolNachoNachoRollRewardsTable {
|
|
14681
14948
|
/** @format float */
|
|
14682
14949
|
odds: number
|
|
@@ -14718,24 +14985,42 @@ export interface LolNachoPurchaseUnitDto {
|
|
|
14718
14985
|
fulfillment: LolNachoFulfillmentDto
|
|
14719
14986
|
}
|
|
14720
14987
|
|
|
14988
|
+
export interface LolNachoSetActiveStoresRequest {
|
|
14989
|
+
storeIds: string[]
|
|
14990
|
+
}
|
|
14991
|
+
|
|
14721
14992
|
export interface LolNachoShoppeCatalogEntry {
|
|
14722
14993
|
id: string
|
|
14723
14994
|
name: string
|
|
14724
14995
|
productId: string
|
|
14725
14996
|
purchaseUnits: LolNachoPurchaseUnitDto[]
|
|
14997
|
+
endTime: string
|
|
14726
14998
|
purchaseVisibility: string
|
|
14727
14999
|
refundRule: string
|
|
14728
15000
|
purchaseLimits: LolNachoVelocityLimitDeltaDto[]
|
|
14729
15001
|
}
|
|
14730
15002
|
|
|
15003
|
+
export interface LolNachoStore {
|
|
15004
|
+
id: string
|
|
15005
|
+
productId: string
|
|
15006
|
+
name: string
|
|
15007
|
+
catalogEntries: LolNachoShoppeCatalogEntry[]
|
|
15008
|
+
displayMetadata: unknown
|
|
15009
|
+
}
|
|
15010
|
+
|
|
14731
15011
|
export interface LolNachoStoreDigest {
|
|
14732
15012
|
id: string
|
|
15013
|
+
displayMetadata: unknown
|
|
14733
15014
|
}
|
|
14734
15015
|
|
|
14735
15016
|
export interface LolNachoStoreDigests {
|
|
14736
15017
|
digests: LolNachoStoreDigest[]
|
|
14737
15018
|
}
|
|
14738
15019
|
|
|
15020
|
+
export interface LolNachoStoresResponse {
|
|
15021
|
+
data: LolNachoStore[]
|
|
15022
|
+
}
|
|
15023
|
+
|
|
14739
15024
|
export interface LolNachoVelocityLimitDeltaDto {
|
|
14740
15025
|
ruleId: string
|
|
14741
15026
|
/** @format int64 */
|
|
@@ -18938,6 +19223,8 @@ export interface LolRewardTrackFSCRewards {
|
|
|
18938
19223
|
imageOverlay: string
|
|
18939
19224
|
title: string
|
|
18940
19225
|
subtitle: string
|
|
19226
|
+
rarity: string
|
|
19227
|
+
questSkinInfo: LolRewardTrackRewardsSkinLineInfo
|
|
18941
19228
|
}
|
|
18942
19229
|
|
|
18943
19230
|
export type LolRewardTrackGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
@@ -19150,10 +19437,46 @@ export interface LolRewardTrackRewardTrackXP {
|
|
|
19150
19437
|
iteration: number
|
|
19151
19438
|
}
|
|
19152
19439
|
|
|
19440
|
+
export interface LolRewardTrackRewardsCatalogPluginItem {
|
|
19441
|
+
/** @format int32 */
|
|
19442
|
+
itemId: number
|
|
19443
|
+
name: string
|
|
19444
|
+
itemInstanceId: string
|
|
19445
|
+
owned: boolean
|
|
19446
|
+
rarity: string
|
|
19447
|
+
active: boolean
|
|
19448
|
+
questSkinInfo: LolRewardTrackRewardsSkinLineInfo
|
|
19449
|
+
}
|
|
19450
|
+
|
|
19451
|
+
export interface LolRewardTrackRewardsCatalogPluginItemAssets {
|
|
19452
|
+
splashPath: string
|
|
19453
|
+
loadScreenPath: string
|
|
19454
|
+
}
|
|
19455
|
+
|
|
19456
|
+
export interface LolRewardTrackRewardsCatalogPluginItemWithDetails {
|
|
19457
|
+
item: LolRewardTrackRewardsCatalogPluginItem
|
|
19458
|
+
assets: LolRewardTrackRewardsCatalogPluginItemAssets
|
|
19459
|
+
}
|
|
19460
|
+
|
|
19153
19461
|
export interface LolRewardTrackRewardsConfig {
|
|
19154
19462
|
GrantFiltering: boolean
|
|
19155
19463
|
}
|
|
19156
19464
|
|
|
19465
|
+
export interface LolRewardTrackRewardsSkinLineInfo {
|
|
19466
|
+
productType: string
|
|
19467
|
+
tiers: LolRewardTrackRewardsSkinLineTier[]
|
|
19468
|
+
}
|
|
19469
|
+
|
|
19470
|
+
export interface LolRewardTrackRewardsSkinLineTier {
|
|
19471
|
+
/** @format int64 */
|
|
19472
|
+
stage: number
|
|
19473
|
+
ownership: LolRewardTrackRewardsSkinLineTierOwnership
|
|
19474
|
+
}
|
|
19475
|
+
|
|
19476
|
+
export interface LolRewardTrackRewardsSkinLineTierOwnership {
|
|
19477
|
+
owned: boolean
|
|
19478
|
+
}
|
|
19479
|
+
|
|
19157
19480
|
export type LolRewardTrackSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
19158
19481
|
|
|
19159
19482
|
export interface LolRewardTrackSelectionRequestDTO {
|
|
@@ -19268,6 +19591,8 @@ export interface LolRewardsFSCRewards {
|
|
|
19268
19591
|
imageOverlay: string
|
|
19269
19592
|
title: string
|
|
19270
19593
|
subtitle: string
|
|
19594
|
+
rarity: string
|
|
19595
|
+
questSkinInfo: LolRewardsRewardsSkinLineInfo
|
|
19271
19596
|
}
|
|
19272
19597
|
|
|
19273
19598
|
export type LolRewardsGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
@@ -19350,10 +19675,46 @@ export type LolRewardsRewardStatus = "FAILED" | "FULFILLED" | "PENDING"
|
|
|
19350
19675
|
|
|
19351
19676
|
export type LolRewardsRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
19352
19677
|
|
|
19678
|
+
export interface LolRewardsRewardsCatalogPluginItem {
|
|
19679
|
+
/** @format int32 */
|
|
19680
|
+
itemId: number
|
|
19681
|
+
name: string
|
|
19682
|
+
itemInstanceId: string
|
|
19683
|
+
owned: boolean
|
|
19684
|
+
rarity: string
|
|
19685
|
+
active: boolean
|
|
19686
|
+
questSkinInfo: LolRewardsRewardsSkinLineInfo
|
|
19687
|
+
}
|
|
19688
|
+
|
|
19689
|
+
export interface LolRewardsRewardsCatalogPluginItemAssets {
|
|
19690
|
+
splashPath: string
|
|
19691
|
+
loadScreenPath: string
|
|
19692
|
+
}
|
|
19693
|
+
|
|
19694
|
+
export interface LolRewardsRewardsCatalogPluginItemWithDetails {
|
|
19695
|
+
item: LolRewardsRewardsCatalogPluginItem
|
|
19696
|
+
assets: LolRewardsRewardsCatalogPluginItemAssets
|
|
19697
|
+
}
|
|
19698
|
+
|
|
19353
19699
|
export interface LolRewardsRewardsConfig {
|
|
19354
19700
|
GrantFiltering: boolean
|
|
19355
19701
|
}
|
|
19356
19702
|
|
|
19703
|
+
export interface LolRewardsRewardsSkinLineInfo {
|
|
19704
|
+
productType: string
|
|
19705
|
+
tiers: LolRewardsRewardsSkinLineTier[]
|
|
19706
|
+
}
|
|
19707
|
+
|
|
19708
|
+
export interface LolRewardsRewardsSkinLineTier {
|
|
19709
|
+
/** @format int64 */
|
|
19710
|
+
stage: number
|
|
19711
|
+
ownership: LolRewardsRewardsSkinLineTierOwnership
|
|
19712
|
+
}
|
|
19713
|
+
|
|
19714
|
+
export interface LolRewardsRewardsSkinLineTierOwnership {
|
|
19715
|
+
owned: boolean
|
|
19716
|
+
}
|
|
19717
|
+
|
|
19357
19718
|
export type LolRewardsSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
19358
19719
|
|
|
19359
19720
|
export interface LolRewardsSelectionRequestDTO {
|
|
@@ -21066,6 +21427,14 @@ export interface LolTftEventLolTftEvent {
|
|
|
21066
21427
|
defaultLandingPage: boolean
|
|
21067
21428
|
eventHubTemplateType: string
|
|
21068
21429
|
eventFuture: boolean
|
|
21430
|
+
weblinkSubnavs: LolTftEventLolTftEventWebLinkSubnav[]
|
|
21431
|
+
}
|
|
21432
|
+
|
|
21433
|
+
export interface LolTftEventLolTftEventWebLinkSubnav {
|
|
21434
|
+
enabled: boolean
|
|
21435
|
+
key: string
|
|
21436
|
+
titleTranslationKey: string
|
|
21437
|
+
url: string
|
|
21069
21438
|
}
|
|
21070
21439
|
|
|
21071
21440
|
export interface LolTftEventLolTftEvents {
|
|
@@ -21311,6 +21680,14 @@ export interface LolTftLolTftEvent {
|
|
|
21311
21680
|
defaultLandingPage: boolean
|
|
21312
21681
|
eventHubTemplateType: string
|
|
21313
21682
|
eventFuture: boolean
|
|
21683
|
+
weblinkSubnavs: LolTftLolTftEventWebLinkSubnav[]
|
|
21684
|
+
}
|
|
21685
|
+
|
|
21686
|
+
export interface LolTftLolTftEventWebLinkSubnav {
|
|
21687
|
+
enabled: boolean
|
|
21688
|
+
key: string
|
|
21689
|
+
titleTranslationKey: string
|
|
21690
|
+
url: string
|
|
21314
21691
|
}
|
|
21315
21692
|
|
|
21316
21693
|
export interface LolTftLolTftEvents {
|
|
@@ -22278,6 +22655,8 @@ export interface LolTftTeamPlannerTFTChampionData {
|
|
|
22278
22655
|
squareIconPath: string
|
|
22279
22656
|
/** @format uint32 */
|
|
22280
22657
|
tier: number
|
|
22658
|
+
/** @format uint32 */
|
|
22659
|
+
team_planner_code: number
|
|
22281
22660
|
}
|
|
22282
22661
|
|
|
22283
22662
|
export interface LolTftTeamPlannerTFTMapSetData {
|
|
@@ -22312,6 +22691,7 @@ export interface LolTftTeamPlannerTeamPlan {
|
|
|
22312
22691
|
setName: string
|
|
22313
22692
|
teamIsImported: boolean
|
|
22314
22693
|
editedByPlayer: boolean
|
|
22694
|
+
shownNewTeamAnim: boolean
|
|
22315
22695
|
}
|
|
22316
22696
|
|
|
22317
22697
|
export interface LolTftTeamPlannerTeamSettings {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasagi/types",
|
|
3
|
-
"version": "
|
|
4
|
-
"_clientVersion": "
|
|
3
|
+
"version": "15.2.1",
|
|
4
|
+
"_clientVersion": "15.2.651.9931",
|
|
5
5
|
"description": "This package contains auto-generated LCU types and endpoints.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"update-types": "node scripts/update-types.mjs",
|
|
@@ -26,4 +26,4 @@
|
|
|
26
26
|
"type": "git",
|
|
27
27
|
"url": "https://github.com/dysolix/hasagi-types.git"
|
|
28
28
|
}
|
|
29
|
-
}
|
|
29
|
+
}
|
package/CODEOWNERS
DELETED