@hasagi/types 16.1.1 → 16.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 +8 -5
- package/dist/lcu-events.d.ts +8 -6
- package/dist/lcu-types.d.ts +19 -57
- package/package.json +3 -3
package/dist/lcu-endpoints.d.ts
CHANGED
|
@@ -599,9 +599,6 @@ export interface LCUEndpoints {
|
|
|
599
599
|
"/lol-champion-mastery/v1/{puuid}/champion-mastery": {
|
|
600
600
|
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMastery[] }
|
|
601
601
|
},
|
|
602
|
-
"/lol-champion-mastery/v1/champion-mastery-view-enabled": {
|
|
603
|
-
get: { path: never, params: never, body: never, response: boolean }
|
|
604
|
-
},
|
|
605
602
|
"/lol-champion-mastery/v1/local-player/champion-mastery": {
|
|
606
603
|
get: { path: never, params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMastery[] }
|
|
607
604
|
},
|
|
@@ -2447,9 +2444,15 @@ export interface LCUEndpoints {
|
|
|
2447
2444
|
"/lol-summoner/v2/summoner-icons": {
|
|
2448
2445
|
get: { path: never, params: { "ids": number[] }, body: never, response: LCUTypes.LolSummonerSummonerIdAndIcon[] }
|
|
2449
2446
|
},
|
|
2447
|
+
"/lol-summoner/v2/summoner-icons-by-puuids": {
|
|
2448
|
+
get: { path: never, params: { "puuids": string[] }, body: never, response: LCUTypes.LolSummonerSummonerIdAndIcon[] }
|
|
2449
|
+
},
|
|
2450
2450
|
"/lol-summoner/v2/summoner-names": {
|
|
2451
2451
|
get: { path: never, params: { "ids": number[] }, body: never, response: LCUTypes.LolSummonerSummonerIdAndName[] }
|
|
2452
2452
|
},
|
|
2453
|
+
"/lol-summoner/v2/summoner-names-by-puuids": {
|
|
2454
|
+
get: { path: never, params: { "puuids": string[] }, body: never, response: LCUTypes.LolSummonerSummonerIdAndName[] }
|
|
2455
|
+
},
|
|
2453
2456
|
"/lol-summoner/v2/summoners": {
|
|
2454
2457
|
get: { path: never, params: { "ids"?: number[] }, body: never, response: LCUTypes.LolSummonerSummoner[] }
|
|
2455
2458
|
},
|
|
@@ -3620,10 +3623,10 @@ export interface LCUEndpoints {
|
|
|
3620
3623
|
"/lol-rso-auth/v1/external-session-config": {
|
|
3621
3624
|
post: { path: never, params: never, body: unknown, response: unknown }
|
|
3622
3625
|
},
|
|
3623
|
-
"/lol-sanctum/v1/purchase/
|
|
3626
|
+
"/lol-sanctum/v1/purchase/roll": {
|
|
3624
3627
|
post: { path: never, params: never, body: LCUTypes.LolSanctumSanctumPurchaseRequest, response: string }
|
|
3625
3628
|
},
|
|
3626
|
-
"/lol-sanctum/v1/purchase/
|
|
3629
|
+
"/lol-sanctum/v1/purchase/token": {
|
|
3627
3630
|
post: { path: never, params: never, body: LCUTypes.LolSanctumSanctumPurchaseRequest, response: string }
|
|
3628
3631
|
},
|
|
3629
3632
|
"/lol-seasons/v1/allSeasons/product/{product}": {
|
package/dist/lcu-events.d.ts
CHANGED
|
@@ -34,7 +34,6 @@ export interface LCUWebSocketEvents {
|
|
|
34
34
|
"OnJsonApiEvent_lol-catalog_v1_ready": LCUTypes.PluginResourceEvent,
|
|
35
35
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
36
36
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
37
|
-
"OnJsonApiEvent_lol-challenges_v1_summary-player-data": LCUTypes.PluginResourceEvent,
|
|
38
37
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
39
38
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_current-champion": LCUTypes.PluginResourceEvent,
|
|
40
39
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_disabled-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -49,7 +48,6 @@ export interface LCUWebSocketEvents {
|
|
|
49
48
|
"OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
|
|
50
49
|
"OnJsonApiEvent_lol-champ-select_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
51
50
|
"OnJsonApiEvent_lol-champion-mastery_v1_champion-mastery-view": LCUTypes.PluginResourceEvent,
|
|
52
|
-
"OnJsonApiEvent_lol-champion-mastery_v1_champion-mastery-view-enabled": LCUTypes.PluginResourceEvent,
|
|
53
51
|
"OnJsonApiEvent_lol-champion-mastery_v1_local-player": LCUTypes.PluginResourceEvent,
|
|
54
52
|
"OnJsonApiEvent_lol-champion-mastery_v1_ready": LCUTypes.PluginResourceEvent,
|
|
55
53
|
"OnJsonApiEvent_lol-champions_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
@@ -65,7 +63,9 @@ export interface LCUWebSocketEvents {
|
|
|
65
63
|
"OnJsonApiEvent_lol-chat_v1_resources": LCUTypes.PluginResourceEvent,
|
|
66
64
|
"OnJsonApiEvent_lol-chat_v1_session": LCUTypes.PluginResourceEvent,
|
|
67
65
|
"OnJsonApiEvent_lol-chat_v1_settings": LCUTypes.PluginResourceEvent,
|
|
66
|
+
"OnJsonApiEvent_lol-clash_v1_all-tournaments": LCUTypes.PluginResourceEvent,
|
|
68
67
|
"OnJsonApiEvent_lol-clash_v1_checkin-allowed": LCUTypes.PluginResourceEvent,
|
|
68
|
+
"OnJsonApiEvent_lol-clash_v1_currentTournamentIds": LCUTypes.PluginResourceEvent,
|
|
69
69
|
"OnJsonApiEvent_lol-clash_v1_disabled-config": LCUTypes.PluginResourceEvent,
|
|
70
70
|
"OnJsonApiEvent_lol-clash_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
71
71
|
"OnJsonApiEvent_lol-clash_v1_iconconfig": LCUTypes.PluginResourceEvent,
|
|
@@ -75,6 +75,9 @@ export interface LCUWebSocketEvents {
|
|
|
75
75
|
"OnJsonApiEvent_lol-clash_v1_ready": LCUTypes.PluginResourceEvent,
|
|
76
76
|
"OnJsonApiEvent_lol-clash_v1_simple-state-flags": LCUTypes.PluginResourceEvent,
|
|
77
77
|
"OnJsonApiEvent_lol-clash_v1_time": LCUTypes.PluginResourceEvent,
|
|
78
|
+
"OnJsonApiEvent_lol-clash_v1_tournament": LCUTypes.PluginResourceEvent,
|
|
79
|
+
"OnJsonApiEvent_lol-clash_v1_tournament-state-info": LCUTypes.PluginResourceEvent,
|
|
80
|
+
"OnJsonApiEvent_lol-clash_v1_tournament-summary": LCUTypes.PluginResourceEvent,
|
|
78
81
|
"OnJsonApiEvent_lol-clash_v1_visible": LCUTypes.PluginResourceEvent,
|
|
79
82
|
"OnJsonApiEvent_lol-clash_v1_voice-enabled": LCUTypes.PluginResourceEvent,
|
|
80
83
|
"OnJsonApiEvent_lol-clash_v2_playmode-restricted": LCUTypes.PluginResourceEvent,
|
|
@@ -552,6 +555,7 @@ export interface LCUWebSocketEvents {
|
|
|
552
555
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LoginDataPacket_platformGameLifecycle": LCUTypes.PluginResourceEvent,
|
|
553
556
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LoginDataPacket_platformId": LCUTypes.PluginResourceEvent,
|
|
554
557
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LoginDataPacket_playerStatSummaries": LCUTypes.PluginResourceEvent,
|
|
558
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LoginDataPacket_reconnectInfo": LCUTypes.PluginResourceEvent,
|
|
555
559
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LoginDataPacket_restrictedChatGamesRemaining": LCUTypes.PluginResourceEvent,
|
|
556
560
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LoginDataPacket_restrictedGamesRemainingForRanked": LCUTypes.PluginResourceEvent,
|
|
557
561
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LoginDataPacket_showEmailVerificationPopup": LCUTypes.PluginResourceEvent,
|
|
@@ -829,7 +833,6 @@ export interface LCUWebSocketEvents {
|
|
|
829
833
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_WardSkinConfig": LCUTypes.PluginResourceEvent,
|
|
830
834
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_WardSkinConfig_UseLoadouts": LCUTypes.PluginResourceEvent,
|
|
831
835
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_WardSkinConfig_WardSkinSelection": LCUTypes.PluginResourceEvent,
|
|
832
|
-
"OnJsonApiEvent_lol-player-behavior_v1_code-of-conduct-notification": LCUTypes.PluginResourceEvent,
|
|
833
836
|
"OnJsonApiEvent_lol-player-behavior_v1_config": LCUTypes.PluginResourceEvent,
|
|
834
837
|
"OnJsonApiEvent_lol-player-behavior_v2_reporter-feedback": LCUTypes.PluginResourceEvent,
|
|
835
838
|
"OnJsonApiEvent_lol-player-behavior_v3_reform-cards": LCUTypes.PluginResourceEvent,
|
|
@@ -847,7 +850,6 @@ export interface LCUWebSocketEvents {
|
|
|
847
850
|
"OnJsonApiEvent_lol-publishing-content_v1_settings": LCUTypes.PluginResourceEvent,
|
|
848
851
|
"OnJsonApiEvent_lol-purchase-widget_v1_configuration": LCUTypes.PluginResourceEvent,
|
|
849
852
|
"OnJsonApiEvent_lol-purchase-widget_v3_purchase-offer-order-statuses": LCUTypes.PluginResourceEvent,
|
|
850
|
-
"OnJsonApiEvent_lol-ranked_v1_cached-ranked-stats": LCUTypes.PluginResourceEvent,
|
|
851
853
|
"OnJsonApiEvent_lol-ranked_v1_challenger-ladders-enabled": LCUTypes.PluginResourceEvent,
|
|
852
854
|
"OnJsonApiEvent_lol-ranked_v1_current-ranked-stats": LCUTypes.PluginResourceEvent,
|
|
853
855
|
"OnJsonApiEvent_lol-ranked_v1_global-notifications": LCUTypes.PluginResourceEvent,
|
|
@@ -867,7 +869,6 @@ export interface LCUWebSocketEvents {
|
|
|
867
869
|
"OnJsonApiEvent_lol-rso-auth_v1_authorization": LCUTypes.PluginResourceEvent,
|
|
868
870
|
"OnJsonApiEvent_lol-sanctum_v1_banners": LCUTypes.PluginResourceEvent,
|
|
869
871
|
"OnJsonApiEvent_lol-sanctum_v1_ready": LCUTypes.PluginResourceEvent,
|
|
870
|
-
"OnJsonApiEvent_lol-service-status_v1_ticker-messages": LCUTypes.PluginResourceEvent,
|
|
871
872
|
"OnJsonApiEvent_lol-settings_v1_account": LCUTypes.PluginResourceEvent,
|
|
872
873
|
"OnJsonApiEvent_lol-settings_v1_local": LCUTypes.PluginResourceEvent,
|
|
873
874
|
"OnJsonApiEvent_lol-settings_v2_account": LCUTypes.PluginResourceEvent,
|
|
@@ -896,9 +897,11 @@ export interface LCUWebSocketEvents {
|
|
|
896
897
|
"OnJsonApiEvent_lol-tft-pass_v1_active-passes": LCUTypes.PluginResourceEvent,
|
|
897
898
|
"OnJsonApiEvent_lol-tft-pass_v1_battle-pass": LCUTypes.PluginResourceEvent,
|
|
898
899
|
"OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
|
|
900
|
+
"OnJsonApiEvent_lol-tft-pass_v1_event-pass": LCUTypes.PluginResourceEvent,
|
|
899
901
|
"OnJsonApiEvent_lol-tft-pass_v1_pm-ultimate-victory-pass": LCUTypes.PluginResourceEvent,
|
|
900
902
|
"OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
|
|
901
903
|
"OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,
|
|
904
|
+
"OnJsonApiEvent_lol-tft-skill-tree_v1_skill-tree": LCUTypes.PluginResourceEvent,
|
|
902
905
|
"OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
|
|
903
906
|
"OnJsonApiEvent_lol-tft-team-planner_v1_ftue": LCUTypes.PluginResourceEvent,
|
|
904
907
|
"OnJsonApiEvent_lol-tft-team-planner_v1_previous-context": LCUTypes.PluginResourceEvent,
|
|
@@ -957,7 +960,6 @@ export interface LCUWebSocketEvents {
|
|
|
957
960
|
"OnLcdsEvent_com_riotgames_platform_broadcast_BroadcastNotification": LCUTypes.PluginLcdsEvent,
|
|
958
961
|
"OnLcdsEvent_com_riotgames_platform_client_dynamic_configuration_ClientDynamicConfigurationNotification": LCUTypes.PluginLcdsEvent,
|
|
959
962
|
"OnLcdsEvent_com_riotgames_platform_game_GameDTO": LCUTypes.PluginLcdsEvent,
|
|
960
|
-
"OnLcdsEvent_com_riotgames_platform_game_PlayerCredentialsDto": LCUTypes.PluginLcdsEvent,
|
|
961
963
|
"OnLcdsEvent_com_riotgames_platform_game_TeamSkinRentalDTO": LCUTypes.PluginLcdsEvent,
|
|
962
964
|
"OnLcdsEvent_com_riotgames_platform_game_message_GameNotification": LCUTypes.PluginLcdsEvent,
|
|
963
965
|
"OnLcdsEvent_com_riotgames_platform_leaverbuster_event_messaging_LeaverBusterLowPriorityQueueAbandoned": LCUTypes.PluginLcdsEvent,
|
package/dist/lcu-types.d.ts
CHANGED
|
@@ -7155,6 +7155,7 @@ export interface LolCosmeticsTFTRotationalShopConfig {
|
|
|
7155
7155
|
littleLegendsUpgradeEnabled: boolean
|
|
7156
7156
|
eventsStoreEnabled: boolean
|
|
7157
7157
|
eventsStoreData: unknown
|
|
7158
|
+
eventsMusicDisabled: boolean
|
|
7158
7159
|
}
|
|
7159
7160
|
|
|
7160
7161
|
export interface LolCosmeticsTFTRotationalShopNavConfig {
|
|
@@ -8358,6 +8359,7 @@ export interface LolEventHubEndOfGameXpNotification {
|
|
|
8358
8359
|
}
|
|
8359
8360
|
|
|
8360
8361
|
export interface LolEventHubEntityInstance {
|
|
8362
|
+
schemaVersion: string
|
|
8361
8363
|
groupId: string
|
|
8362
8364
|
counters: LolEventHubCounterInstance[]
|
|
8363
8365
|
milestones: LolEventHubMilestoneInstance[]
|
|
@@ -8403,6 +8405,7 @@ export interface LolEventHubEventInfoUIData {
|
|
|
8403
8405
|
startDate: string
|
|
8404
8406
|
progressEndDate: string
|
|
8405
8407
|
endDate: string
|
|
8408
|
+
seasonPassSubType: LolEventHubSeasonPassSubType
|
|
8406
8409
|
localizedLogo: string
|
|
8407
8410
|
localizedEventSubtitle: string
|
|
8408
8411
|
localizedHelpUrl: string
|
|
@@ -9435,12 +9438,15 @@ export interface LolEventHubSeasonPass {
|
|
|
9435
9438
|
upsellBackgroundImageUrl: string
|
|
9436
9439
|
upsellTooltipBackgroundImageUrl: string
|
|
9437
9440
|
objectiveBannerImage: string
|
|
9441
|
+
seasonPassSubType: string
|
|
9438
9442
|
localizedSeasonLogo: string
|
|
9439
9443
|
localizedShortName: string
|
|
9440
9444
|
chapters: LolEventHubChapter[]
|
|
9441
9445
|
actBackgroundImage: string
|
|
9442
9446
|
}
|
|
9443
9447
|
|
|
9448
|
+
export type LolEventHubSeasonPassSubType = "Mayhem" | "Default"
|
|
9449
|
+
|
|
9444
9450
|
export type LolEventHubSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
9445
9451
|
|
|
9446
9452
|
export interface LolEventHubSelectionRequestDTO {
|
|
@@ -10759,6 +10765,7 @@ export interface LolHovercardHovercardUserInfo {
|
|
|
10759
10765
|
|
|
10760
10766
|
export interface LolHovercardPartyInfo {
|
|
10761
10767
|
summoners?: number[]
|
|
10768
|
+
summonerPuuids?: string[]
|
|
10762
10769
|
}
|
|
10763
10770
|
|
|
10764
10771
|
export interface LolHovercardPatchlineMetadata {
|
|
@@ -10800,6 +10807,7 @@ export interface LolHovercardSummonerIdAndName {
|
|
|
10800
10807
|
/** @format uint64 */
|
|
10801
10808
|
summonerId: number
|
|
10802
10809
|
displayName: string
|
|
10810
|
+
puuid: string
|
|
10803
10811
|
}
|
|
10804
10812
|
|
|
10805
10813
|
export interface LolHovercardTopChampionMastery {
|
|
@@ -13124,6 +13132,7 @@ export interface LolLootCurrencyConfiguration {
|
|
|
13124
13132
|
}
|
|
13125
13133
|
|
|
13126
13134
|
export interface LolLootEntityInstance {
|
|
13135
|
+
schemaVersion: string
|
|
13127
13136
|
groupId: string
|
|
13128
13137
|
counters: LolLootCounterInstance[]
|
|
13129
13138
|
milestones: LolLootMilestoneInstance[]
|
|
@@ -14369,6 +14378,7 @@ export interface LolMarketplaceTFTRotationalShopConfig {
|
|
|
14369
14378
|
littleLegendsUpgradeEnabled: boolean
|
|
14370
14379
|
eventsStoreEnabled: boolean
|
|
14371
14380
|
eventsStoreData: unknown
|
|
14381
|
+
eventsMusicDisabled: boolean
|
|
14372
14382
|
}
|
|
14373
14383
|
|
|
14374
14384
|
export interface LolMarketplaceTFTRotationalShopNavConfig {
|
|
@@ -18029,8 +18039,6 @@ export interface LolPlayerReportSenderPlayerReport {
|
|
|
18029
18039
|
categories: string[]
|
|
18030
18040
|
/** @format uint64 */
|
|
18031
18041
|
gameId: number
|
|
18032
|
-
/** @format uint64 */
|
|
18033
|
-
offenderSummonerId: number
|
|
18034
18042
|
comment: string
|
|
18035
18043
|
}
|
|
18036
18044
|
|
|
@@ -18282,6 +18290,7 @@ export interface LolProgressionCounterInstance {
|
|
|
18282
18290
|
}
|
|
18283
18291
|
|
|
18284
18292
|
export interface LolProgressionEntityInstance {
|
|
18293
|
+
schemaVersion: string
|
|
18285
18294
|
groupId: string
|
|
18286
18295
|
counters: LolProgressionCounterInstance[]
|
|
18287
18296
|
milestones: LolProgressionMilestoneInstance[]
|
|
@@ -20284,6 +20293,7 @@ export interface LolRewardTrackCounterInstance {
|
|
|
20284
20293
|
}
|
|
20285
20294
|
|
|
20286
20295
|
export interface LolRewardTrackEntityInstance {
|
|
20296
|
+
schemaVersion: string
|
|
20287
20297
|
groupId: string
|
|
20288
20298
|
counters: LolRewardTrackCounterInstance[]
|
|
20289
20299
|
milestones: LolRewardTrackMilestoneInstance[]
|
|
@@ -24153,6 +24163,7 @@ export interface LolTftPassEndOfGameXpNotification {
|
|
|
24153
24163
|
}
|
|
24154
24164
|
|
|
24155
24165
|
export interface LolTftPassEntityInstance {
|
|
24166
|
+
schemaVersion: string
|
|
24156
24167
|
groupId: string
|
|
24157
24168
|
counters: LolTftPassCounterInstance[]
|
|
24158
24169
|
milestones: LolTftPassMilestoneInstance[]
|
|
@@ -24193,6 +24204,7 @@ export interface LolTftPassEventInfoUIData {
|
|
|
24193
24204
|
startDate: string
|
|
24194
24205
|
progressEndDate: string
|
|
24195
24206
|
endDate: string
|
|
24207
|
+
seasonPassSubType: LolTftPassSeasonPassSubType
|
|
24196
24208
|
localizedLogo: string
|
|
24197
24209
|
localizedEventSubtitle: string
|
|
24198
24210
|
localizedHelpUrl: string
|
|
@@ -24923,12 +24935,15 @@ export interface LolTftPassSeasonPass {
|
|
|
24923
24935
|
upsellBackgroundImageUrl: string
|
|
24924
24936
|
upsellTooltipBackgroundImageUrl: string
|
|
24925
24937
|
objectiveBannerImage: string
|
|
24938
|
+
seasonPassSubType: string
|
|
24926
24939
|
localizedSeasonLogo: string
|
|
24927
24940
|
localizedShortName: string
|
|
24928
24941
|
chapters: LolTftPassChapter[]
|
|
24929
24942
|
actBackgroundImage: string
|
|
24930
24943
|
}
|
|
24931
24944
|
|
|
24945
|
+
export type LolTftPassSeasonPassSubType = "Mayhem" | "Default"
|
|
24946
|
+
|
|
24932
24947
|
export type LolTftPassSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
24933
24948
|
|
|
24934
24949
|
export interface LolTftPassSelectionRequestDTO {
|
|
@@ -25906,6 +25921,7 @@ export interface LolTftTrovesEntitlementsResponse {
|
|
|
25906
25921
|
}
|
|
25907
25922
|
|
|
25908
25923
|
export interface LolTftTrovesEntityInstance {
|
|
25924
|
+
schemaVersion: string
|
|
25909
25925
|
groupId: string
|
|
25910
25926
|
counters: LolTftTrovesCounterInstance[]
|
|
25911
25927
|
milestones: LolTftTrovesMilestoneInstance[]
|
|
@@ -26351,6 +26367,7 @@ export interface LolTftTrovesTFTRotationalShopConfig {
|
|
|
26351
26367
|
littleLegendsUpgradeEnabled: boolean
|
|
26352
26368
|
eventsStoreEnabled: boolean
|
|
26353
26369
|
eventsStoreData: unknown
|
|
26370
|
+
eventsMusicDisabled: boolean
|
|
26354
26371
|
}
|
|
26355
26372
|
|
|
26356
26373
|
export interface LolTftTrovesTFTRotationalShopNavConfig {
|
|
@@ -28586,45 +28603,6 @@ export interface SimpleDialogMessageResponse {
|
|
|
28586
28603
|
command: string
|
|
28587
28604
|
}
|
|
28588
28605
|
|
|
28589
|
-
export interface StoreLcdsChampionDTO {
|
|
28590
|
-
/** @format uint64 */
|
|
28591
|
-
endDate: number
|
|
28592
|
-
/** @format uint64 */
|
|
28593
|
-
purchaseDate: number
|
|
28594
|
-
/** @format uint32 */
|
|
28595
|
-
winCountRemaining: number
|
|
28596
|
-
sources: string[]
|
|
28597
|
-
active: boolean
|
|
28598
|
-
botEnabled: boolean
|
|
28599
|
-
/** @format int32 */
|
|
28600
|
-
championId: number
|
|
28601
|
-
championSkins: StoreLcdsChampionSkinDTO[]
|
|
28602
|
-
freeToPlay: boolean
|
|
28603
|
-
freeToPlayReward: boolean
|
|
28604
|
-
"f2pRewardSources": string[]
|
|
28605
|
-
owned: boolean
|
|
28606
|
-
rankedPlayEnabled: boolean
|
|
28607
|
-
}
|
|
28608
|
-
|
|
28609
|
-
export interface StoreLcdsChampionSkinDTO {
|
|
28610
|
-
/** @format uint64 */
|
|
28611
|
-
endDate: number
|
|
28612
|
-
/** @format uint64 */
|
|
28613
|
-
purchaseDate: number
|
|
28614
|
-
/** @format int32 */
|
|
28615
|
-
winCountRemaining: number
|
|
28616
|
-
sources: string[]
|
|
28617
|
-
/** @format int32 */
|
|
28618
|
-
championId: number
|
|
28619
|
-
freeToPlayReward: boolean
|
|
28620
|
-
"f2pRewardSources": string[]
|
|
28621
|
-
lastSelected: boolean
|
|
28622
|
-
owned: boolean
|
|
28623
|
-
/** @format int32 */
|
|
28624
|
-
skinId: number
|
|
28625
|
-
stillObtainable: boolean
|
|
28626
|
-
}
|
|
28627
|
-
|
|
28628
28606
|
export interface StoreLcdsSimpleDialogMessage {
|
|
28629
28607
|
/** @format uint64 */
|
|
28630
28608
|
accountId: number
|
|
@@ -28640,22 +28618,6 @@ export interface StoreLcdsSimpleDialogMessageResponse {
|
|
|
28640
28618
|
command: string
|
|
28641
28619
|
}
|
|
28642
28620
|
|
|
28643
|
-
export interface StoreLcdsStoreAccountBalanceNotification {
|
|
28644
|
-
/** @format int64 */
|
|
28645
|
-
ip: number
|
|
28646
|
-
/** @format int64 */
|
|
28647
|
-
rp: number
|
|
28648
|
-
}
|
|
28649
|
-
|
|
28650
|
-
export interface StoreLcdsStoreFulfillmentNotification {
|
|
28651
|
-
inventoryType: string
|
|
28652
|
-
/** @format int64 */
|
|
28653
|
-
rp: number
|
|
28654
|
-
/** @format int64 */
|
|
28655
|
-
ip: number
|
|
28656
|
-
data: unknown
|
|
28657
|
-
}
|
|
28658
|
-
|
|
28659
28621
|
export interface TeamBuilderDirect_Action {
|
|
28660
28622
|
/** @format int32 */
|
|
28661
28623
|
actionId: number
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasagi/types",
|
|
3
|
-
"version": "16.
|
|
4
|
-
"_clientVersion": "16.
|
|
3
|
+
"version": "16.2.1",
|
|
4
|
+
"_clientVersion": "16.2.739.8242",
|
|
5
5
|
"description": "This package contains auto-generated LCU types and endpoints.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"update-deps": "npm i @hasagi/core@latest @hasagi/schema@latest @hasagi/cli@latest axios@latest -d",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@hasagi/cli": "^0.9.9",
|
|
18
|
-
"@hasagi/core": "^0.6.
|
|
18
|
+
"@hasagi/core": "^0.6.9",
|
|
19
19
|
"@hasagi/schema": "^0.7.0",
|
|
20
20
|
"axios": "^1.13.2"
|
|
21
21
|
},
|