@hasagi/types 15.6.1 → 15.7.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 +121 -72
- package/dist/lcu-events.d.ts +46 -147
- package/dist/lcu-types.d.ts +260 -242
- package/package.json +3 -3
package/dist/lcu-types.d.ts
CHANGED
|
@@ -508,6 +508,60 @@ export interface ChemtechShoppe_RefundResponseDto {
|
|
|
508
508
|
notes: string[]
|
|
509
509
|
}
|
|
510
510
|
|
|
511
|
+
export interface ChemtechShoppe_RotatingStoreDigestDto {
|
|
512
|
+
id: string
|
|
513
|
+
productId: string
|
|
514
|
+
name: string
|
|
515
|
+
type: string
|
|
516
|
+
rotationCadence: string
|
|
517
|
+
displayMetadata: unknown
|
|
518
|
+
currRotationStartTime: string
|
|
519
|
+
nextRotationStartTime: string
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
export interface ChemtechShoppe_RotatingStoreDigestResponseDto {
|
|
523
|
+
data: ChemtechShoppe_RotatingStoreDigestsDto
|
|
524
|
+
paging: ChemtechShoppe_PagingDto
|
|
525
|
+
stats: ChemtechShoppe_StatsDto
|
|
526
|
+
notes: string[]
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
export interface ChemtechShoppe_RotatingStoreDigestsDto {
|
|
530
|
+
digests: ChemtechShoppe_RotatingStoreDigestDto[]
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
export interface ChemtechShoppe_RotatingStoreDto {
|
|
534
|
+
id: string
|
|
535
|
+
productId: string
|
|
536
|
+
name: string
|
|
537
|
+
type: string
|
|
538
|
+
slots: ChemtechShoppe_RotatingStoreSlotDto[]
|
|
539
|
+
rotationCadence: string
|
|
540
|
+
displayMetadata: unknown
|
|
541
|
+
currRotationStartTime: string
|
|
542
|
+
nextRotationStartTime: string
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
export interface ChemtechShoppe_RotatingStoreResponseDto {
|
|
546
|
+
data: ChemtechShoppe_RotatingStoreDto
|
|
547
|
+
paging: ChemtechShoppe_PagingDto
|
|
548
|
+
stats: ChemtechShoppe_StatsDto
|
|
549
|
+
notes: string[]
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
export interface ChemtechShoppe_RotatingStoreSlotDto {
|
|
553
|
+
/** @format int32 */
|
|
554
|
+
selectionCount: number
|
|
555
|
+
catalogEntries: ChemtechShoppe_CatalogEntryDto[]
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
export interface ChemtechShoppe_RotatingStoresResponseDto {
|
|
559
|
+
data: ChemtechShoppe_RotatingStoreDto[]
|
|
560
|
+
paging: ChemtechShoppe_PagingDto
|
|
561
|
+
stats: ChemtechShoppe_StatsDto
|
|
562
|
+
notes: string[]
|
|
563
|
+
}
|
|
564
|
+
|
|
511
565
|
export interface ChemtechShoppe_StatsDto {
|
|
512
566
|
/** @format int64 */
|
|
513
567
|
durationMs: number
|
|
@@ -2615,6 +2669,23 @@ export interface LolChampSelectChampSelectBannedChampions {
|
|
|
2615
2669
|
numBans: number
|
|
2616
2670
|
}
|
|
2617
2671
|
|
|
2672
|
+
export interface LolChampSelectChampSelectChampionSwapNotification {
|
|
2673
|
+
/** @format int64 */
|
|
2674
|
+
id: number
|
|
2675
|
+
/** @format int64 */
|
|
2676
|
+
responderIndex: number
|
|
2677
|
+
state: LolChampSelectChampSelectSwapState
|
|
2678
|
+
/** @format int64 */
|
|
2679
|
+
otherSummonerIndex: number
|
|
2680
|
+
responderChampionName: string
|
|
2681
|
+
requesterChampionName: string
|
|
2682
|
+
requesterChampionSplashPath: string
|
|
2683
|
+
initiatedByLocalPlayer: boolean
|
|
2684
|
+
type: LolChampSelectChampSelectSwapType
|
|
2685
|
+
/** @format int32 */
|
|
2686
|
+
requesterChampionId: number
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2618
2689
|
export interface LolChampSelectChampSelectChatRoomDetails {
|
|
2619
2690
|
multiUserChatId: string
|
|
2620
2691
|
multiUserChatPassword: string
|
|
@@ -2628,8 +2699,20 @@ export interface LolChampSelectChampSelectMySelection {
|
|
|
2628
2699
|
"spell1Id"?: number
|
|
2629
2700
|
/** @format uint64 */
|
|
2630
2701
|
"spell2Id"?: number
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2704
|
+
export interface LolChampSelectChampSelectPickOrderSwapNotification {
|
|
2631
2705
|
/** @format int64 */
|
|
2632
|
-
|
|
2706
|
+
id: number
|
|
2707
|
+
/** @format int64 */
|
|
2708
|
+
requestorIndex: number
|
|
2709
|
+
/** @format int64 */
|
|
2710
|
+
responderIndex: number
|
|
2711
|
+
state: LolChampSelectChampSelectSwapState
|
|
2712
|
+
/** @format int64 */
|
|
2713
|
+
otherSummonerIndex: number
|
|
2714
|
+
initiatedByLocalPlayer: boolean
|
|
2715
|
+
type: LolChampSelectChampSelectSwapType
|
|
2633
2716
|
}
|
|
2634
2717
|
|
|
2635
2718
|
export interface LolChampSelectChampSelectPinDropNotification {
|
|
@@ -2655,8 +2738,6 @@ export interface LolChampSelectChampSelectPlayerSelection {
|
|
|
2655
2738
|
championId: number
|
|
2656
2739
|
/** @format int32 */
|
|
2657
2740
|
selectedSkinId: number
|
|
2658
|
-
/** @format int64 */
|
|
2659
|
-
wardSkinId: number
|
|
2660
2741
|
/** @format uint64 */
|
|
2661
2742
|
"spell1Id": number
|
|
2662
2743
|
/** @format uint64 */
|
|
@@ -2668,6 +2749,7 @@ export interface LolChampSelectChampSelectPlayerSelection {
|
|
|
2668
2749
|
championPickIntent: number
|
|
2669
2750
|
/** @format uint64 */
|
|
2670
2751
|
summonerId: number
|
|
2752
|
+
playerAlias: string
|
|
2671
2753
|
puuid: string
|
|
2672
2754
|
nameVisibilityType: string
|
|
2673
2755
|
/** @format uint64 */
|
|
@@ -2675,6 +2757,22 @@ export interface LolChampSelectChampSelectPlayerSelection {
|
|
|
2675
2757
|
obfuscatedPuuid: string
|
|
2676
2758
|
}
|
|
2677
2759
|
|
|
2760
|
+
export interface LolChampSelectChampSelectPositionSwapNotification {
|
|
2761
|
+
/** @format int64 */
|
|
2762
|
+
id: number
|
|
2763
|
+
/** @format int64 */
|
|
2764
|
+
requestorIndex: number
|
|
2765
|
+
/** @format int64 */
|
|
2766
|
+
responderIndex: number
|
|
2767
|
+
requesterPosition: string
|
|
2768
|
+
responderPosition: string
|
|
2769
|
+
state: LolChampSelectChampSelectSwapState
|
|
2770
|
+
/** @format int64 */
|
|
2771
|
+
otherSummonerIndex: number
|
|
2772
|
+
initiatedByLocalPlayer: boolean
|
|
2773
|
+
type: LolChampSelectChampSelectSwapType
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2678
2776
|
export interface LolChampSelectChampSelectSession {
|
|
2679
2777
|
/** @format uint64 */
|
|
2680
2778
|
gameId: number
|
|
@@ -2682,8 +2780,9 @@ export interface LolChampSelectChampSelectSession {
|
|
|
2682
2780
|
chatDetails: LolChampSelectChampSelectChatRoomDetails
|
|
2683
2781
|
myTeam: LolChampSelectChampSelectPlayerSelection[]
|
|
2684
2782
|
theirTeam: LolChampSelectChampSelectPlayerSelection[]
|
|
2685
|
-
trades:
|
|
2783
|
+
trades: LolChampSelectChampSelectSwapContract[]
|
|
2686
2784
|
pickOrderSwaps: LolChampSelectChampSelectSwapContract[]
|
|
2785
|
+
positionSwaps: LolChampSelectChampSelectSwapContract[]
|
|
2687
2786
|
actions: unknown[]
|
|
2688
2787
|
bans: LolChampSelectChampSelectBannedChampions
|
|
2689
2788
|
/** @format int64 */
|
|
@@ -2704,8 +2803,6 @@ export interface LolChampSelectChampSelectSession {
|
|
|
2704
2803
|
benchChampions: LolChampSelectBenchChampion[]
|
|
2705
2804
|
/** @format int64 */
|
|
2706
2805
|
counter: number
|
|
2707
|
-
/** @format int64 */
|
|
2708
|
-
recoveryCounter: number
|
|
2709
2806
|
skipChampionSelect: boolean
|
|
2710
2807
|
hasSimultaneousBans: boolean
|
|
2711
2808
|
hasSimultaneousPicks: boolean
|
|
@@ -2724,6 +2821,7 @@ export interface LolChampSelectChampSelectSummoner {
|
|
|
2724
2821
|
assignedPosition: string
|
|
2725
2822
|
/** @format uint64 */
|
|
2726
2823
|
summonerId: number
|
|
2824
|
+
playerAlias: string
|
|
2727
2825
|
puuid: string
|
|
2728
2826
|
nameVisibilityType: string
|
|
2729
2827
|
/** @format uint64 */
|
|
@@ -2761,8 +2859,11 @@ export interface LolChampSelectChampSelectSummoner {
|
|
|
2761
2859
|
tradeId: number
|
|
2762
2860
|
/** @format int64 */
|
|
2763
2861
|
swapId: number
|
|
2862
|
+
/** @format int64 */
|
|
2863
|
+
positionSwapId: number
|
|
2764
2864
|
showTrades: boolean
|
|
2765
2865
|
showSwaps: boolean
|
|
2866
|
+
showPositionSwaps: boolean
|
|
2766
2867
|
showMuted: boolean
|
|
2767
2868
|
}
|
|
2768
2869
|
|
|
@@ -2774,21 +2875,10 @@ export interface LolChampSelectChampSelectSwapContract {
|
|
|
2774
2875
|
state: LolChampSelectChampSelectSwapState
|
|
2775
2876
|
}
|
|
2776
2877
|
|
|
2777
|
-
export interface LolChampSelectChampSelectSwapNotification {
|
|
2778
|
-
/** @format int64 */
|
|
2779
|
-
id: number
|
|
2780
|
-
/** @format int64 */
|
|
2781
|
-
requestorIndex: number
|
|
2782
|
-
/** @format int64 */
|
|
2783
|
-
responderIndex: number
|
|
2784
|
-
state: LolChampSelectChampSelectSwapState
|
|
2785
|
-
/** @format int64 */
|
|
2786
|
-
otherSummonerIndex: number
|
|
2787
|
-
initiatedByLocalPlayer: boolean
|
|
2788
|
-
}
|
|
2789
|
-
|
|
2790
2878
|
export type LolChampSelectChampSelectSwapState = "ACCEPTED" | "CANCELLED" | "DECLINED" | "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
2791
2879
|
|
|
2880
|
+
export type LolChampSelectChampSelectSwapType = "POSITION" | "PICK_ORDER" | "CHAMPION"
|
|
2881
|
+
|
|
2792
2882
|
export interface LolChampSelectChampSelectTimer {
|
|
2793
2883
|
/** @format int64 */
|
|
2794
2884
|
adjustedTimeLeftInPhase: number
|
|
@@ -2800,30 +2890,6 @@ export interface LolChampSelectChampSelectTimer {
|
|
|
2800
2890
|
internalNowInEpochMs: number
|
|
2801
2891
|
}
|
|
2802
2892
|
|
|
2803
|
-
export interface LolChampSelectChampSelectTradeContract {
|
|
2804
|
-
/** @format int64 */
|
|
2805
|
-
id: number
|
|
2806
|
-
/** @format int64 */
|
|
2807
|
-
cellId: number
|
|
2808
|
-
state: LolChampSelectChampSelectTradeState
|
|
2809
|
-
}
|
|
2810
|
-
|
|
2811
|
-
export interface LolChampSelectChampSelectTradeNotification {
|
|
2812
|
-
/** @format int64 */
|
|
2813
|
-
id: number
|
|
2814
|
-
/** @format int64 */
|
|
2815
|
-
responderIndex: number
|
|
2816
|
-
state: LolChampSelectChampSelectTradeState
|
|
2817
|
-
/** @format int64 */
|
|
2818
|
-
otherSummonerIndex: number
|
|
2819
|
-
responderChampionName: string
|
|
2820
|
-
requesterChampionName: string
|
|
2821
|
-
requesterChampionSplashPath: string
|
|
2822
|
-
initiatedByLocalPlayer: boolean
|
|
2823
|
-
}
|
|
2824
|
-
|
|
2825
|
-
export type LolChampSelectChampSelectTradeState = "ACCEPTED" | "CANCELLED" | "DECLINED" | "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
2826
|
-
|
|
2827
2893
|
export interface LolChampSelectChampionMastery {
|
|
2828
2894
|
/** @format int32 */
|
|
2829
2895
|
championId: number
|
|
@@ -3021,8 +3087,6 @@ export interface LolChampSelectLegacyChampSelectMySelection {
|
|
|
3021
3087
|
"spell1Id"?: number
|
|
3022
3088
|
/** @format uint64 */
|
|
3023
3089
|
"spell2Id"?: number
|
|
3024
|
-
/** @format int64 */
|
|
3025
|
-
wardSkinId?: number
|
|
3026
3090
|
}
|
|
3027
3091
|
|
|
3028
3092
|
export interface LolChampSelectLegacyChampSelectPlayerSelection {
|
|
@@ -3032,8 +3096,6 @@ export interface LolChampSelectLegacyChampSelectPlayerSelection {
|
|
|
3032
3096
|
championId: number
|
|
3033
3097
|
/** @format int32 */
|
|
3034
3098
|
selectedSkinId: number
|
|
3035
|
-
/** @format int64 */
|
|
3036
|
-
wardSkinId: number
|
|
3037
3099
|
/** @format uint64 */
|
|
3038
3100
|
"spell1Id": number
|
|
3039
3101
|
/** @format uint64 */
|
|
@@ -3054,7 +3116,7 @@ export interface LolChampSelectLegacyChampSelectSession {
|
|
|
3054
3116
|
chatDetails: LolChampSelectLegacyChampSelectChatRoomDetails
|
|
3055
3117
|
myTeam: LolChampSelectLegacyChampSelectPlayerSelection[]
|
|
3056
3118
|
theirTeam: LolChampSelectLegacyChampSelectPlayerSelection[]
|
|
3057
|
-
trades:
|
|
3119
|
+
trades: LolChampSelectLegacyChampSelectSwapContract[]
|
|
3058
3120
|
actions: unknown[]
|
|
3059
3121
|
bans: LolChampSelectLegacyChampSelectBannedChampions
|
|
3060
3122
|
/** @format int64 */
|
|
@@ -3072,6 +3134,16 @@ export interface LolChampSelectLegacyChampSelectSession {
|
|
|
3072
3134
|
isCustomGame: boolean
|
|
3073
3135
|
}
|
|
3074
3136
|
|
|
3137
|
+
export interface LolChampSelectLegacyChampSelectSwapContract {
|
|
3138
|
+
/** @format int64 */
|
|
3139
|
+
id: number
|
|
3140
|
+
/** @format int64 */
|
|
3141
|
+
cellId: number
|
|
3142
|
+
state: LolChampSelectLegacyChampSelectSwapState
|
|
3143
|
+
}
|
|
3144
|
+
|
|
3145
|
+
export type LolChampSelectLegacyChampSelectSwapState = "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
3146
|
+
|
|
3075
3147
|
export interface LolChampSelectLegacyChampSelectTimer {
|
|
3076
3148
|
/** @format int64 */
|
|
3077
3149
|
adjustedTimeLeftInPhase: number
|
|
@@ -3083,16 +3155,6 @@ export interface LolChampSelectLegacyChampSelectTimer {
|
|
|
3083
3155
|
internalNowInEpochMs: number
|
|
3084
3156
|
}
|
|
3085
3157
|
|
|
3086
|
-
export interface LolChampSelectLegacyChampSelectTradeContract {
|
|
3087
|
-
/** @format int64 */
|
|
3088
|
-
id: number
|
|
3089
|
-
/** @format int64 */
|
|
3090
|
-
cellId: number
|
|
3091
|
-
state: LolChampSelectLegacyChampSelectTradeState
|
|
3092
|
-
}
|
|
3093
|
-
|
|
3094
|
-
export type LolChampSelectLegacyChampSelectTradeState = "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
3095
|
-
|
|
3096
3158
|
export interface LolChampSelectLegacyChampionSelectPreferences {
|
|
3097
3159
|
skins: Record<string, number>
|
|
3098
3160
|
spells: Record<string, unknown>
|
|
@@ -6535,7 +6597,6 @@ export interface LolDropsCapDropsDropTableDisplayMetadata {
|
|
|
6535
6597
|
isCollectorsBounty: boolean
|
|
6536
6598
|
dataAssetId: string
|
|
6537
6599
|
nameTraKey: string
|
|
6538
|
-
mythicOfferId: string
|
|
6539
6600
|
progressionId: string
|
|
6540
6601
|
/** @format uint8 */
|
|
6541
6602
|
priority: number
|
|
@@ -8074,6 +8135,11 @@ export interface LolEventHubLoginSession {
|
|
|
8074
8135
|
|
|
8075
8136
|
export type LolEventHubLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
8076
8137
|
|
|
8138
|
+
export interface LolEventHubLolInventoryType {
|
|
8139
|
+
inventoryTypeId: string
|
|
8140
|
+
capInventoryTypeId: string
|
|
8141
|
+
}
|
|
8142
|
+
|
|
8077
8143
|
export interface LolEventHubLoyaltyRewards {
|
|
8078
8144
|
/** @format int32 */
|
|
8079
8145
|
freeRewardedChampionsCount: number
|
|
@@ -9070,10 +9136,6 @@ export interface LolGameClientChatMutedPlayerInfo {
|
|
|
9070
9136
|
obfuscatedSummonerId: number
|
|
9071
9137
|
}
|
|
9072
9138
|
|
|
9073
|
-
export interface LolGameQueuesDoubleUpConfig {
|
|
9074
|
-
enabled: boolean
|
|
9075
|
-
}
|
|
9076
|
-
|
|
9077
9139
|
export interface LolGameQueuesLoginDataPacket {
|
|
9078
9140
|
gameTypeConfigs: LolGameQueuesQueueGameTypeConfig[]
|
|
9079
9141
|
}
|
|
@@ -10101,6 +10163,11 @@ export interface LolInventoryLoginSession {
|
|
|
10101
10163
|
|
|
10102
10164
|
export type LolInventoryLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
10103
10165
|
|
|
10166
|
+
export interface LolInventoryLolInventoryType {
|
|
10167
|
+
inventoryTypeId: string
|
|
10168
|
+
capInventoryTypeId: string
|
|
10169
|
+
}
|
|
10170
|
+
|
|
10104
10171
|
export interface LolInventoryLoyaltyRewards {
|
|
10105
10172
|
/** @format int32 */
|
|
10106
10173
|
freeRewardedChampionsCount: number
|
|
@@ -11911,7 +11978,6 @@ export interface LolLobbyTeamBuilderAfkCheckStateV1 {
|
|
|
11911
11978
|
remainingAfkMillis: number
|
|
11912
11979
|
afkReady: boolean
|
|
11913
11980
|
inventoryDraft: LolLobbyTeamBuilderTbdInventory
|
|
11914
|
-
additionalInventoryTypes: string[]
|
|
11915
11981
|
compressAfkCheckPayload: boolean
|
|
11916
11982
|
autoAccept: boolean
|
|
11917
11983
|
mucJwtDto: LolLobbyTeamBuilderMucJwtDto
|
|
@@ -11946,6 +12012,7 @@ export interface LolLobbyTeamBuilderCellV1 {
|
|
|
11946
12012
|
"spell2Id": number
|
|
11947
12013
|
/** @format uint64 */
|
|
11948
12014
|
summonerId: number
|
|
12015
|
+
playerAlias: string
|
|
11949
12016
|
puuid: string
|
|
11950
12017
|
nameVisibilityType: string
|
|
11951
12018
|
/** @format uint64 */
|
|
@@ -12001,8 +12068,6 @@ export interface LolLobbyTeamBuilderChampSelectMySelection {
|
|
|
12001
12068
|
"spell1Id"?: number
|
|
12002
12069
|
/** @format uint64 */
|
|
12003
12070
|
"spell2Id"?: number
|
|
12004
|
-
/** @format int64 */
|
|
12005
|
-
wardSkinId?: number
|
|
12006
12071
|
}
|
|
12007
12072
|
|
|
12008
12073
|
export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
@@ -12012,8 +12077,6 @@ export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
|
12012
12077
|
championId: number
|
|
12013
12078
|
/** @format int32 */
|
|
12014
12079
|
selectedSkinId: number
|
|
12015
|
-
/** @format int64 */
|
|
12016
|
-
wardSkinId: number
|
|
12017
12080
|
/** @format uint64 */
|
|
12018
12081
|
"spell1Id": number
|
|
12019
12082
|
/** @format uint64 */
|
|
@@ -12026,6 +12089,7 @@ export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
|
12026
12089
|
playerType: string
|
|
12027
12090
|
/** @format uint64 */
|
|
12028
12091
|
summonerId: number
|
|
12092
|
+
playerAlias: string
|
|
12029
12093
|
puuid: string
|
|
12030
12094
|
nameVisibilityType: string
|
|
12031
12095
|
/** @format uint64 */
|
|
@@ -12040,8 +12104,9 @@ export interface LolLobbyTeamBuilderChampSelectSession {
|
|
|
12040
12104
|
chatDetails: LolLobbyTeamBuilderChampSelectChatRoomDetails
|
|
12041
12105
|
myTeam: LolLobbyTeamBuilderChampSelectPlayerSelection[]
|
|
12042
12106
|
theirTeam: LolLobbyTeamBuilderChampSelectPlayerSelection[]
|
|
12043
|
-
trades:
|
|
12107
|
+
trades: LolLobbyTeamBuilderChampSelectSwapContract[]
|
|
12044
12108
|
pickOrderSwaps: LolLobbyTeamBuilderChampSelectSwapContract[]
|
|
12109
|
+
positionSwaps: LolLobbyTeamBuilderChampSelectSwapContract[]
|
|
12045
12110
|
actions: unknown[]
|
|
12046
12111
|
/** @format int64 */
|
|
12047
12112
|
localPlayerCellId: number
|
|
@@ -12060,8 +12125,6 @@ export interface LolLobbyTeamBuilderChampSelectSession {
|
|
|
12060
12125
|
benchChampions: LolLobbyTeamBuilderBenchChampion[]
|
|
12061
12126
|
/** @format int64 */
|
|
12062
12127
|
counter: number
|
|
12063
|
-
/** @format int64 */
|
|
12064
|
-
recoveryCounter: number
|
|
12065
12128
|
skipChampionSelect: boolean
|
|
12066
12129
|
isSpectating: boolean
|
|
12067
12130
|
hasSimultaneousBans: boolean
|
|
@@ -12091,16 +12154,6 @@ export interface LolLobbyTeamBuilderChampSelectTimer {
|
|
|
12091
12154
|
internalNowInEpochMs: number
|
|
12092
12155
|
}
|
|
12093
12156
|
|
|
12094
|
-
export interface LolLobbyTeamBuilderChampSelectTradeContract {
|
|
12095
|
-
/** @format int64 */
|
|
12096
|
-
id: number
|
|
12097
|
-
/** @format int64 */
|
|
12098
|
-
cellId: number
|
|
12099
|
-
state: LolLobbyTeamBuilderChampSelectTradeState
|
|
12100
|
-
}
|
|
12101
|
-
|
|
12102
|
-
export type LolLobbyTeamBuilderChampSelectTradeState = "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
12103
|
-
|
|
12104
12157
|
export interface LolLobbyTeamBuilderChampionBenchChampionV1 {
|
|
12105
12158
|
/** @format int32 */
|
|
12106
12159
|
championId: number
|
|
@@ -12133,13 +12186,13 @@ export interface LolLobbyTeamBuilderChampionSelectStateV1 {
|
|
|
12133
12186
|
currentTotalTimeMillis: number
|
|
12134
12187
|
/** @format int64 */
|
|
12135
12188
|
currentTimeRemainingMillis: number
|
|
12136
|
-
trades:
|
|
12137
|
-
pickOrderSwaps:
|
|
12189
|
+
trades: LolLobbyTeamBuilderSwapV1[]
|
|
12190
|
+
pickOrderSwaps: LolLobbyTeamBuilderSwapV1[]
|
|
12191
|
+
positionSwaps: LolLobbyTeamBuilderSwapV1[]
|
|
12138
12192
|
pickIntentClearedReason: string
|
|
12139
12193
|
allowOptingOutOfBanning: boolean
|
|
12140
12194
|
allowSkinSelection: boolean
|
|
12141
12195
|
allowDuplicatePicks: boolean
|
|
12142
|
-
lcuSkipsSendingLoadoutsGco: boolean
|
|
12143
12196
|
rerollState: LolLobbyTeamBuilderRerollStateV1
|
|
12144
12197
|
lockedEventsState: LolLobbyTeamBuilderLockedEventsStateV1
|
|
12145
12198
|
battleBoostState: LolLobbyTeamBuilderTeamBuilderBoostInfo
|
|
@@ -12360,14 +12413,6 @@ export interface LolLobbyTeamBuilderMucJwtDto {
|
|
|
12360
12413
|
targetRegion: string
|
|
12361
12414
|
}
|
|
12362
12415
|
|
|
12363
|
-
export interface LolLobbyTeamBuilderPickOrderSwapV1 {
|
|
12364
|
-
/** @format int32 */
|
|
12365
|
-
id: number
|
|
12366
|
-
/** @format int32 */
|
|
12367
|
-
cellId: number
|
|
12368
|
-
state: string
|
|
12369
|
-
}
|
|
12370
|
-
|
|
12371
12416
|
export interface LolLobbyTeamBuilderQueue {
|
|
12372
12417
|
/** @format int32 */
|
|
12373
12418
|
id: number
|
|
@@ -12462,6 +12507,14 @@ export interface LolLobbyTeamBuilderSettingCategoryResource {
|
|
|
12462
12507
|
data: LolLobbyTeamBuilderChampionSelectPreferences
|
|
12463
12508
|
}
|
|
12464
12509
|
|
|
12510
|
+
export interface LolLobbyTeamBuilderSwapV1 {
|
|
12511
|
+
/** @format int32 */
|
|
12512
|
+
id: number
|
|
12513
|
+
/** @format int32 */
|
|
12514
|
+
cellId: number
|
|
12515
|
+
state: string
|
|
12516
|
+
}
|
|
12517
|
+
|
|
12465
12518
|
export interface LolLobbyTeamBuilderTBDMatchmakingState {
|
|
12466
12519
|
/** @format int64 */
|
|
12467
12520
|
estimatedMatchmakingTimeMillis: number
|
|
@@ -12473,8 +12526,6 @@ export interface LolLobbyTeamBuilderTBDMatchmakingState {
|
|
|
12473
12526
|
export interface LolLobbyTeamBuilderTbLobbyStateResource {
|
|
12474
12527
|
/** @format int32 */
|
|
12475
12528
|
counter: number
|
|
12476
|
-
/** @format int32 */
|
|
12477
|
-
recoveryCounter: number
|
|
12478
12529
|
phaseName: string
|
|
12479
12530
|
/** @format int32 */
|
|
12480
12531
|
queueId: number
|
|
@@ -12532,14 +12583,6 @@ export interface LolLobbyTeamBuilderTeambuilderLeagueEdgeResponse {
|
|
|
12532
12583
|
status: string
|
|
12533
12584
|
}
|
|
12534
12585
|
|
|
12535
|
-
export interface LolLobbyTeamBuilderTradeV1 {
|
|
12536
|
-
/** @format int32 */
|
|
12537
|
-
id: number
|
|
12538
|
-
/** @format int32 */
|
|
12539
|
-
cellId: number
|
|
12540
|
-
state: string
|
|
12541
|
-
}
|
|
12542
|
-
|
|
12543
12586
|
export interface LolLobbyUserInfoToken {
|
|
12544
12587
|
userInfo: string
|
|
12545
12588
|
}
|
|
@@ -13795,6 +13838,29 @@ export interface LolMarketplaceCatalogEntryDto {
|
|
|
13795
13838
|
purchaseLimits: LolMarketplaceVelocityLimitDeltaDto[]
|
|
13796
13839
|
}
|
|
13797
13840
|
|
|
13841
|
+
export interface LolMarketplaceEntitlementDto {
|
|
13842
|
+
id: string
|
|
13843
|
+
label: string
|
|
13844
|
+
typeId: string
|
|
13845
|
+
productId: string
|
|
13846
|
+
active: boolean
|
|
13847
|
+
createdDate: string
|
|
13848
|
+
lastModifiedDate: string
|
|
13849
|
+
firstUsedDate: string
|
|
13850
|
+
recipient: unknown
|
|
13851
|
+
ownerId: string
|
|
13852
|
+
item: LolMarketplaceEntitlementItemDto
|
|
13853
|
+
}
|
|
13854
|
+
|
|
13855
|
+
export interface LolMarketplaceEntitlementItemDto {
|
|
13856
|
+
id: string
|
|
13857
|
+
typeId: string
|
|
13858
|
+
}
|
|
13859
|
+
|
|
13860
|
+
export interface LolMarketplaceEntitlementsResponse {
|
|
13861
|
+
data: LolMarketplaceEntitlementDto[]
|
|
13862
|
+
}
|
|
13863
|
+
|
|
13798
13864
|
export interface LolMarketplaceFinalPurchaseUnitDto {
|
|
13799
13865
|
payments: LolMarketplacePaymentDto[]
|
|
13800
13866
|
fulfillment: LolMarketplaceFulfillmentDto
|
|
@@ -13874,6 +13940,7 @@ export interface LolMarketplacePurchaseDto {
|
|
|
13874
13940
|
purchaseVisibility: string
|
|
13875
13941
|
refund: LolMarketplaceRefundDto
|
|
13876
13942
|
refundRule: string
|
|
13943
|
+
refundable: boolean
|
|
13877
13944
|
source: string
|
|
13878
13945
|
}
|
|
13879
13946
|
|
|
@@ -14028,6 +14095,28 @@ export interface LolMarketplaceStoresResponse {
|
|
|
14028
14095
|
errors: LolMarketplaceResponseError[]
|
|
14029
14096
|
}
|
|
14030
14097
|
|
|
14098
|
+
export interface LolMarketplaceTFTRotationalShopConfig {
|
|
14099
|
+
enabled: boolean
|
|
14100
|
+
contentPreviewConfig: unknown
|
|
14101
|
+
uiToggleEnabled: boolean
|
|
14102
|
+
navs: LolMarketplaceTFTRotationalShopNavConfig[]
|
|
14103
|
+
refund: LolMarketplaceTFTRotationalShopRefundConfig
|
|
14104
|
+
littleLegendsUpgradeEnabled: boolean
|
|
14105
|
+
}
|
|
14106
|
+
|
|
14107
|
+
export interface LolMarketplaceTFTRotationalShopNavConfig {
|
|
14108
|
+
name: string
|
|
14109
|
+
enabled: boolean
|
|
14110
|
+
supportedCurrencies: string[]
|
|
14111
|
+
}
|
|
14112
|
+
|
|
14113
|
+
export interface LolMarketplaceTFTRotationalShopRefundConfig {
|
|
14114
|
+
enabled: boolean
|
|
14115
|
+
allowedTypes: string[]
|
|
14116
|
+
/** @format uint8 */
|
|
14117
|
+
thresholdDays: number
|
|
14118
|
+
}
|
|
14119
|
+
|
|
14031
14120
|
export interface LolMarketplaceTraKeyName {
|
|
14032
14121
|
nameTraKey: string
|
|
14033
14122
|
translatedName: string
|
|
@@ -15511,6 +15600,19 @@ export type LolNpeTutorialPathTutorialStatus = "COMPLETED" | "UNLOCKED" | "LOCKE
|
|
|
15511
15600
|
|
|
15512
15601
|
export type LolNpeTutorialPathTutorialType = "REWARD" | "CARD"
|
|
15513
15602
|
|
|
15603
|
+
export interface LolObjectivesActiveEventUIData {
|
|
15604
|
+
eventId: string
|
|
15605
|
+
eventInfo: LolObjectivesEventInfoUIData
|
|
15606
|
+
}
|
|
15607
|
+
|
|
15608
|
+
export interface LolObjectivesCatalogEntry {
|
|
15609
|
+
contentId: string
|
|
15610
|
+
/** @format int32 */
|
|
15611
|
+
itemId: number
|
|
15612
|
+
offerId: string
|
|
15613
|
+
typeId: string
|
|
15614
|
+
}
|
|
15615
|
+
|
|
15514
15616
|
export interface LolObjectivesCollectionsChampion {
|
|
15515
15617
|
/** @format int32 */
|
|
15516
15618
|
id: number
|
|
@@ -15553,6 +15655,26 @@ export interface LolObjectivesCollectionsWardSkin {
|
|
|
15553
15655
|
ownership: LolObjectivesCollectionsOwnership
|
|
15554
15656
|
}
|
|
15555
15657
|
|
|
15658
|
+
export interface LolObjectivesEventInfoUIData {
|
|
15659
|
+
eventId: string
|
|
15660
|
+
eventName: string
|
|
15661
|
+
eventType: string
|
|
15662
|
+
eventIcon: string
|
|
15663
|
+
navBarIcon: string
|
|
15664
|
+
eventTokenImage: string
|
|
15665
|
+
/** @format int32 */
|
|
15666
|
+
currentTokenBalance: number
|
|
15667
|
+
/** @format int32 */
|
|
15668
|
+
lockedTokenCount: number
|
|
15669
|
+
/** @format int32 */
|
|
15670
|
+
unclaimedRewardCount: number
|
|
15671
|
+
/** @format int64 */
|
|
15672
|
+
timeOfLastUnclaimedReward: number
|
|
15673
|
+
isPassPurchased: boolean
|
|
15674
|
+
eventPassBundles: LolObjectivesCatalogEntry[]
|
|
15675
|
+
tokenBundles: LolObjectivesCatalogEntry[]
|
|
15676
|
+
}
|
|
15677
|
+
|
|
15556
15678
|
export type LolObjectivesGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
15557
15679
|
|
|
15558
15680
|
export interface LolObjectivesGameflowSession {
|
|
@@ -15624,12 +15746,15 @@ export interface LolObjectivesNonPooledObjectives {
|
|
|
15624
15746
|
localizedDescription: string
|
|
15625
15747
|
}
|
|
15626
15748
|
|
|
15749
|
+
export type LolObjectivesObjectiveCategoryType = "kTFTPassData" | "kEventHubConfiguration" | "kNonPass"
|
|
15750
|
+
|
|
15627
15751
|
export interface LolObjectivesObjectivesContainer {
|
|
15628
15752
|
pooledObjectives: LolObjectivesPooledObjectives[]
|
|
15629
15753
|
nonPooledObjectives: LolObjectivesNonPooledObjectives[]
|
|
15630
15754
|
}
|
|
15631
15755
|
|
|
15632
15756
|
export interface LolObjectivesObjectivesGroup {
|
|
15757
|
+
uuid: string
|
|
15633
15758
|
backgroundImage: string
|
|
15634
15759
|
/** @format uint64 */
|
|
15635
15760
|
startDate: number
|
|
@@ -15794,7 +15919,22 @@ export interface LolObjectivesUIObjectives {
|
|
|
15794
15919
|
isPooledMission: boolean
|
|
15795
15920
|
}
|
|
15796
15921
|
|
|
15922
|
+
export interface LolObjectivesUIObjectivesCategory {
|
|
15923
|
+
id: string
|
|
15924
|
+
/** @format uint64 */
|
|
15925
|
+
startDate: number
|
|
15926
|
+
/** @format uint64 */
|
|
15927
|
+
progressEndDate: number
|
|
15928
|
+
/** @format uint64 */
|
|
15929
|
+
endDate: number
|
|
15930
|
+
categorySectionImage: string
|
|
15931
|
+
categoryName: string
|
|
15932
|
+
objectives: LolObjectivesUIObjectives[]
|
|
15933
|
+
categoryType: LolObjectivesObjectiveCategoryType
|
|
15934
|
+
}
|
|
15935
|
+
|
|
15797
15936
|
export interface LolObjectivesUIObjectivesGroup {
|
|
15937
|
+
uuid: string
|
|
15798
15938
|
backgroundImage: string
|
|
15799
15939
|
gameType: string
|
|
15800
15940
|
/** @format uint64 */
|
|
@@ -15803,6 +15943,7 @@ export interface LolObjectivesUIObjectivesGroup {
|
|
|
15803
15943
|
endDate: number
|
|
15804
15944
|
isActive: boolean
|
|
15805
15945
|
objectives: LolObjectivesUIObjectives[]
|
|
15946
|
+
objectivesCategories: LolObjectivesUIObjectivesCategory[]
|
|
15806
15947
|
}
|
|
15807
15948
|
|
|
15808
15949
|
export interface LolObjectivesUserInfo {
|
|
@@ -15967,30 +16108,6 @@ export interface LolPatchUxResource {
|
|
|
15967
16108
|
visible: boolean
|
|
15968
16109
|
}
|
|
15969
16110
|
|
|
15970
|
-
export interface LolPerksChampSelectAction {
|
|
15971
|
-
/** @format int64 */
|
|
15972
|
-
id: number
|
|
15973
|
-
/** @format int64 */
|
|
15974
|
-
actorCellId: number
|
|
15975
|
-
/** @format int32 */
|
|
15976
|
-
championId: number
|
|
15977
|
-
type: string
|
|
15978
|
-
completed: boolean
|
|
15979
|
-
}
|
|
15980
|
-
|
|
15981
|
-
export interface LolPerksChampSelectBannedChampions {
|
|
15982
|
-
myTeamBans: number[]
|
|
15983
|
-
theirTeamBans: number[]
|
|
15984
|
-
/** @format int32 */
|
|
15985
|
-
numBans: number
|
|
15986
|
-
}
|
|
15987
|
-
|
|
15988
|
-
export interface LolPerksChampSelectChatRoomDetails {
|
|
15989
|
-
multiUserChatId: string
|
|
15990
|
-
multiUserChatPassword: string
|
|
15991
|
-
mucJwtDto: LolPerksMucJwtDto
|
|
15992
|
-
}
|
|
15993
|
-
|
|
15994
16111
|
export interface LolPerksChampSelectMySelection {
|
|
15995
16112
|
/** @format int32 */
|
|
15996
16113
|
selectedSkinId?: number
|
|
@@ -15998,8 +16115,6 @@ export interface LolPerksChampSelectMySelection {
|
|
|
15998
16115
|
"spell1Id"?: number
|
|
15999
16116
|
/** @format uint64 */
|
|
16000
16117
|
"spell2Id"?: number
|
|
16001
|
-
/** @format int64 */
|
|
16002
|
-
wardSkinId?: number
|
|
16003
16118
|
}
|
|
16004
16119
|
|
|
16005
16120
|
export interface LolPerksChampSelectPlayerSelection {
|
|
@@ -16009,8 +16124,6 @@ export interface LolPerksChampSelectPlayerSelection {
|
|
|
16009
16124
|
championId: number
|
|
16010
16125
|
/** @format int32 */
|
|
16011
16126
|
selectedSkinId: number
|
|
16012
|
-
/** @format int64 */
|
|
16013
|
-
wardSkinId: number
|
|
16014
16127
|
/** @format uint64 */
|
|
16015
16128
|
"spell1Id": number
|
|
16016
16129
|
/** @format uint64 */
|
|
@@ -16026,15 +16139,9 @@ export interface LolPerksChampSelectPlayerSelection {
|
|
|
16026
16139
|
|
|
16027
16140
|
export interface LolPerksChampSelectSession {
|
|
16028
16141
|
timer: LolPerksChampSelectTimer
|
|
16029
|
-
chatDetails: LolPerksChampSelectChatRoomDetails
|
|
16030
16142
|
myTeam: LolPerksChampSelectPlayerSelection[]
|
|
16031
|
-
theirTeam: LolPerksChampSelectPlayerSelection[]
|
|
16032
|
-
trades: LolPerksChampSelectTradeContract[]
|
|
16033
|
-
actions: unknown[]
|
|
16034
|
-
bans: LolPerksChampSelectBannedChampions
|
|
16035
16143
|
/** @format int64 */
|
|
16036
16144
|
localPlayerCellId: number
|
|
16037
|
-
isSpectating: boolean
|
|
16038
16145
|
}
|
|
16039
16146
|
|
|
16040
16147
|
export interface LolPerksChampSelectTimer {
|
|
@@ -16048,16 +16155,6 @@ export interface LolPerksChampSelectTimer {
|
|
|
16048
16155
|
internalNowInEpochMs: number
|
|
16049
16156
|
}
|
|
16050
16157
|
|
|
16051
|
-
export interface LolPerksChampSelectTradeContract {
|
|
16052
|
-
/** @format int64 */
|
|
16053
|
-
id: number
|
|
16054
|
-
/** @format int64 */
|
|
16055
|
-
cellId: number
|
|
16056
|
-
state: LolPerksChampSelectTradeState
|
|
16057
|
-
}
|
|
16058
|
-
|
|
16059
|
-
export type LolPerksChampSelectTradeState = "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
16060
|
-
|
|
16061
16158
|
export interface LolPerksChampionPreferredStyle {
|
|
16062
16159
|
championName: string
|
|
16063
16160
|
/** @format int32 */
|
|
@@ -16134,13 +16231,6 @@ export interface LolPerksLoginSession {
|
|
|
16134
16231
|
|
|
16135
16232
|
export type LolPerksLoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
16136
16233
|
|
|
16137
|
-
export interface LolPerksMucJwtDto {
|
|
16138
|
-
jwt: string
|
|
16139
|
-
channelClaim: string
|
|
16140
|
-
domain: string
|
|
16141
|
-
targetRegion: string
|
|
16142
|
-
}
|
|
16143
|
-
|
|
16144
16234
|
export interface LolPerksNamecheckAuthorization {
|
|
16145
16235
|
subject: string
|
|
16146
16236
|
}
|
|
@@ -18333,16 +18423,6 @@ export interface LolRankedRewardNotification {
|
|
|
18333
18423
|
seasonId: number
|
|
18334
18424
|
}
|
|
18335
18425
|
|
|
18336
|
-
export interface LolRankedRewardsInfo {
|
|
18337
|
-
splits: LolRankedSeasonSplit[]
|
|
18338
|
-
currentSplit?: LolRankedSeasonSplit
|
|
18339
|
-
rewardInfoByRewardId: Record<string, LolRankedSplitReward>
|
|
18340
|
-
/** @format int32 */
|
|
18341
|
-
currentSplitId: number
|
|
18342
|
-
/** @format int32 */
|
|
18343
|
-
currentSeasonId: number
|
|
18344
|
-
}
|
|
18345
|
-
|
|
18346
18426
|
export interface LolRankedSeasonDTO {
|
|
18347
18427
|
/** @format int32 */
|
|
18348
18428
|
currentSeasonId: number
|
|
@@ -18352,32 +18432,6 @@ export interface LolRankedSeasonDTO {
|
|
|
18352
18432
|
nextSeasonStart: number
|
|
18353
18433
|
}
|
|
18354
18434
|
|
|
18355
|
-
export interface LolRankedSeasonSplit {
|
|
18356
|
-
/** @format int32 */
|
|
18357
|
-
splitId: number
|
|
18358
|
-
/** @format int32 */
|
|
18359
|
-
seasonId: number
|
|
18360
|
-
/** @format uint64 */
|
|
18361
|
-
startTimeMillis: number
|
|
18362
|
-
/** @format uint64 */
|
|
18363
|
-
endTimeMillis: number
|
|
18364
|
-
rewardTrack: LolRankedSplitRewardGroup[]
|
|
18365
|
-
victoriousSkinRewardGroup: LolRankedVictoriousSkin
|
|
18366
|
-
}
|
|
18367
|
-
|
|
18368
|
-
export interface LolRankedSeasonSplitDTO {
|
|
18369
|
-
/** @format int32 */
|
|
18370
|
-
splitId: number
|
|
18371
|
-
/** @format int32 */
|
|
18372
|
-
seasonId: number
|
|
18373
|
-
/** @format uint64 */
|
|
18374
|
-
startTime: number
|
|
18375
|
-
/** @format uint64 */
|
|
18376
|
-
endTime: number
|
|
18377
|
-
rewardTrack: LolRankedSplitRewardGroupDTO[]
|
|
18378
|
-
victoriousSkinRewardGroup: LolRankedVictoriousSkinDTO
|
|
18379
|
-
}
|
|
18380
|
-
|
|
18381
18435
|
export interface LolRankedSequenceEvent {
|
|
18382
18436
|
name: string
|
|
18383
18437
|
/** @format int32 */
|
|
@@ -18457,49 +18511,6 @@ export interface LolRankedSplitPointsNotification {
|
|
|
18457
18511
|
splitPointsBreakdown: Record<string, number>
|
|
18458
18512
|
}
|
|
18459
18513
|
|
|
18460
|
-
export interface LolRankedSplitReward {
|
|
18461
|
-
rewardType: string
|
|
18462
|
-
/** @format int32 */
|
|
18463
|
-
quantity: number
|
|
18464
|
-
description: string
|
|
18465
|
-
id: string
|
|
18466
|
-
/** @format int32 */
|
|
18467
|
-
regaliaLevel?: number
|
|
18468
|
-
/** @format int32 */
|
|
18469
|
-
pointsRequired: number
|
|
18470
|
-
/** @format int32 */
|
|
18471
|
-
splitId: number
|
|
18472
|
-
/** @format int32 */
|
|
18473
|
-
championId: number
|
|
18474
|
-
}
|
|
18475
|
-
|
|
18476
|
-
export interface LolRankedSplitRewardDTO {
|
|
18477
|
-
rewardType: string
|
|
18478
|
-
metadata: LolRankedSplitRewardsMetaData
|
|
18479
|
-
defaultRewardId: string
|
|
18480
|
-
tieredRewardIds: Record<string, string>
|
|
18481
|
-
}
|
|
18482
|
-
|
|
18483
|
-
export interface LolRankedSplitRewardGroup {
|
|
18484
|
-
/** @format int32 */
|
|
18485
|
-
splitPoints: number
|
|
18486
|
-
rewards: LolRankedSplitReward[]
|
|
18487
|
-
}
|
|
18488
|
-
|
|
18489
|
-
export interface LolRankedSplitRewardGroupDTO {
|
|
18490
|
-
/** @format int32 */
|
|
18491
|
-
splitPoints: number
|
|
18492
|
-
rewards: LolRankedSplitRewardDTO[]
|
|
18493
|
-
}
|
|
18494
|
-
|
|
18495
|
-
export interface LolRankedSplitRewardsMetaData {
|
|
18496
|
-
/** @format int32 */
|
|
18497
|
-
quantity: number
|
|
18498
|
-
description: string
|
|
18499
|
-
/** @format int32 */
|
|
18500
|
-
championId: number
|
|
18501
|
-
}
|
|
18502
|
-
|
|
18503
18514
|
export interface LolRankedSummoner {
|
|
18504
18515
|
/** @format uint64 */
|
|
18505
18516
|
summonerId: number
|
|
@@ -18511,11 +18522,6 @@ export interface LolRankedVictoriousSkin {
|
|
|
18511
18522
|
itemInstanceId: string
|
|
18512
18523
|
}
|
|
18513
18524
|
|
|
18514
|
-
export interface LolRankedVictoriousSkinDTO {
|
|
18515
|
-
splitPointsByHighestSeasonEndTier: Record<string, number>
|
|
18516
|
-
itemInstanceId: string
|
|
18517
|
-
}
|
|
18518
|
-
|
|
18519
18525
|
export interface LolRegaliaAccountIdAndSummonerId {
|
|
18520
18526
|
/** @format uint64 */
|
|
18521
18527
|
summonerId?: number
|
|
@@ -21465,6 +21471,7 @@ export interface LolTftEventLolTftBattlePassHub {
|
|
|
21465
21471
|
|
|
21466
21472
|
export interface LolTftEventLolTftEvent {
|
|
21467
21473
|
titleTranslationKey: string
|
|
21474
|
+
eventId: string
|
|
21468
21475
|
enabled: boolean
|
|
21469
21476
|
url: string
|
|
21470
21477
|
urlFaq: string
|
|
@@ -21476,6 +21483,8 @@ export interface LolTftEventLolTftEvent {
|
|
|
21476
21483
|
defaultLandingPage: boolean
|
|
21477
21484
|
eventHubAssetKey: string
|
|
21478
21485
|
eventHubTemplateType: string
|
|
21486
|
+
eventPassId: string
|
|
21487
|
+
skillTreePassId: string
|
|
21479
21488
|
eventFuture: boolean
|
|
21480
21489
|
weblinkSubnavs: LolTftEventLolTftEventWebLinkSubnav[]
|
|
21481
21490
|
}
|
|
@@ -21719,6 +21728,7 @@ export interface LolTftLolTftBattlePassHub {
|
|
|
21719
21728
|
|
|
21720
21729
|
export interface LolTftLolTftEvent {
|
|
21721
21730
|
titleTranslationKey: string
|
|
21731
|
+
eventId: string
|
|
21722
21732
|
enabled: boolean
|
|
21723
21733
|
url: string
|
|
21724
21734
|
urlFaq: string
|
|
@@ -21730,6 +21740,8 @@ export interface LolTftLolTftEvent {
|
|
|
21730
21740
|
defaultLandingPage: boolean
|
|
21731
21741
|
eventHubAssetKey: string
|
|
21732
21742
|
eventHubTemplateType: string
|
|
21743
|
+
eventPassId: string
|
|
21744
|
+
skillTreePassId: string
|
|
21733
21745
|
eventFuture: boolean
|
|
21734
21746
|
weblinkSubnavs: LolTftLolTftEventWebLinkSubnav[]
|
|
21735
21747
|
}
|
|
@@ -21971,6 +21983,11 @@ export interface LolTftPassLoginSession {
|
|
|
21971
21983
|
|
|
21972
21984
|
export type LolTftPassLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
21973
21985
|
|
|
21986
|
+
export interface LolTftPassLolInventoryType {
|
|
21987
|
+
inventoryTypeId: string
|
|
21988
|
+
capInventoryTypeId: string
|
|
21989
|
+
}
|
|
21990
|
+
|
|
21974
21991
|
export interface LolTftPassLoyaltyRewards {
|
|
21975
21992
|
/** @format int32 */
|
|
21976
21993
|
freeRewardedChampionsCount: number
|
|
@@ -22781,7 +22798,6 @@ export interface LolTftTrovesCapDropsDropTableDisplayMetadata {
|
|
|
22781
22798
|
isCollectorsBounty: boolean
|
|
22782
22799
|
dataAssetId: string
|
|
22783
22800
|
nameTraKey: string
|
|
22784
|
-
mythicOfferId: string
|
|
22785
22801
|
progressionId: string
|
|
22786
22802
|
/** @format uint8 */
|
|
22787
22803
|
priority: number
|
|
@@ -22900,7 +22916,6 @@ export interface LolTftTrovesGameDataTrovesBanner {
|
|
|
22900
22916
|
id: string
|
|
22901
22917
|
activationTime: string
|
|
22902
22918
|
deactivationTime: string
|
|
22903
|
-
mythicTokenOfferId: string
|
|
22904
22919
|
/** @format uint32 */
|
|
22905
22920
|
pityThreshold: number
|
|
22906
22921
|
bannerTexture: string
|
|
@@ -23122,7 +23137,6 @@ export interface LolTftTrovesTrovesBanner {
|
|
|
23122
23137
|
/** @format uint32 */
|
|
23123
23138
|
pityLimit: number
|
|
23124
23139
|
rollOffer: string
|
|
23125
|
-
mythicOffer: string
|
|
23126
23140
|
bannerTexture: string
|
|
23127
23141
|
thumbnailTexture: string
|
|
23128
23142
|
backgroundTexture: string
|
|
@@ -23154,8 +23168,6 @@ export interface LolTftTrovesTrovesCelebrationHighlightSegmentData {
|
|
|
23154
23168
|
lottieJsonPath: string
|
|
23155
23169
|
revealSoundPath: string
|
|
23156
23170
|
transitionWipeSoundPath: string
|
|
23157
|
-
promiseTokenTitle: string
|
|
23158
|
-
promiseTokenDescription: string
|
|
23159
23171
|
}
|
|
23160
23172
|
|
|
23161
23173
|
export interface LolTftTrovesTrovesCelebrationPortalSegmentData {
|
|
@@ -23617,6 +23629,11 @@ export interface LolYourshopLoginSession {
|
|
|
23617
23629
|
|
|
23618
23630
|
export type LolYourshopLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
23619
23631
|
|
|
23632
|
+
export interface LolYourshopLolInventoryType {
|
|
23633
|
+
inventoryTypeId: string
|
|
23634
|
+
capInventoryTypeId: string
|
|
23635
|
+
}
|
|
23636
|
+
|
|
23620
23637
|
export interface LolYourshopLoyaltyRewards {
|
|
23621
23638
|
/** @format int32 */
|
|
23622
23639
|
freeRewardedChampionsCount: number
|
|
@@ -24400,6 +24417,7 @@ export interface PaymentsPMCStartUrlRequest {
|
|
|
24400
24417
|
/** @format int16 */
|
|
24401
24418
|
minVirtualAmount: number
|
|
24402
24419
|
orderDetailsJSON: string
|
|
24420
|
+
machineId: string
|
|
24403
24421
|
}
|
|
24404
24422
|
|
|
24405
24423
|
export interface PaymentsPMCStartUrlResult {
|