@hasagi/types 15.6.1 → 15.8.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 +132 -74
- package/dist/lcu-events.d.ts +11 -121
- package/dist/lcu-types.d.ts +1228 -312
- 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
|
|
@@ -1833,19 +1887,66 @@ export interface LolCapMissionsCapMissionSeries {
|
|
|
1833
1887
|
export interface LolCapMissionsCapMissionSeriesMission {
|
|
1834
1888
|
name: string
|
|
1835
1889
|
missionId: string
|
|
1890
|
+
expression: string
|
|
1836
1891
|
missionCollectionId: string
|
|
1837
1892
|
status: string
|
|
1893
|
+
completedTimeUtc: string
|
|
1894
|
+
missionInstanceId: string
|
|
1838
1895
|
objectives: LolCapMissionsCapMissionSeriesMissionObjective[]
|
|
1896
|
+
eligibility: LolCapMissionsCapMissionSeriesMissionEligibility[]
|
|
1897
|
+
rewardsStatus: LolCapMissionsCapMissionSeriesMissionRewardsStatus
|
|
1898
|
+
/** @format uint32 */
|
|
1899
|
+
repeatSequence: number
|
|
1900
|
+
properties: Record<string, string>
|
|
1901
|
+
metadata: Record<string, string>
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
export interface LolCapMissionsCapMissionSeriesMissionEligibility {
|
|
1905
|
+
type: string
|
|
1906
|
+
missionCollectionId: string
|
|
1907
|
+
missionId: string
|
|
1908
|
+
startTime: string
|
|
1839
1909
|
}
|
|
1840
1910
|
|
|
1841
1911
|
export interface LolCapMissionsCapMissionSeriesMissionObjective {
|
|
1842
1912
|
statId: string
|
|
1913
|
+
objectiveId: string
|
|
1843
1914
|
/** @format uint32 */
|
|
1844
1915
|
goal: number
|
|
1845
1916
|
/** @format uint32 */
|
|
1846
1917
|
currentValue: number
|
|
1847
1918
|
}
|
|
1848
1919
|
|
|
1920
|
+
export interface LolCapMissionsCapMissionSeriesMissionReward {
|
|
1921
|
+
type: string
|
|
1922
|
+
counterId: string
|
|
1923
|
+
itemId: string
|
|
1924
|
+
itemTypeId: string
|
|
1925
|
+
typeId: string
|
|
1926
|
+
/** @format uint32 */
|
|
1927
|
+
amount: number
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
export interface LolCapMissionsCapMissionSeriesMissionRewardsStatus {
|
|
1931
|
+
requiresClaim: boolean
|
|
1932
|
+
status: string
|
|
1933
|
+
rewards: LolCapMissionsCapMissionSeriesMissionReward[]
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
export interface LolCapMissionsCapMissionsMarkAsViewedPostBody {
|
|
1937
|
+
events: LolCapMissionsCapMissionsMarkAsViewedPostBodyEvent[]
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
export interface LolCapMissionsCapMissionsMarkAsViewedPostBodyEvent {
|
|
1941
|
+
configurationId: string
|
|
1942
|
+
missions: LolCapMissionsCapMissionsMarkAsViewedPostBodyMission[]
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
export interface LolCapMissionsCapMissionsMarkAsViewedPostBodyMission {
|
|
1946
|
+
missionInstanceId: string
|
|
1947
|
+
metadata: Record<string, string>
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1849
1950
|
export interface LolCapMissionsCapMissionsMeResponse {
|
|
1850
1951
|
productId: string
|
|
1851
1952
|
ownerId: string
|
|
@@ -1872,6 +1973,12 @@ export interface LolCapMissionsRiotMessagingServiceMessage {
|
|
|
1872
1973
|
payload: string
|
|
1873
1974
|
}
|
|
1874
1975
|
|
|
1976
|
+
export interface LolCapMissionsRiotMessagingServicePayload {
|
|
1977
|
+
deltaEventId: string
|
|
1978
|
+
ownerId: string
|
|
1979
|
+
updatedMissions: string[]
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1875
1982
|
export interface LolCatalogBundled {
|
|
1876
1983
|
flexible: boolean
|
|
1877
1984
|
items: LolCatalogBundledItem[]
|
|
@@ -1965,6 +2072,8 @@ export interface LolCatalogCatalogPluginItemWithDetails {
|
|
|
1965
2072
|
bundledDiscountPrices?: LolCatalogCatalogPluginPrice[]
|
|
1966
2073
|
assets: LolCatalogCatalogPluginItemAssets
|
|
1967
2074
|
metadata: LolCatalogItemMetadataEntry[]
|
|
2075
|
+
/** @format int64 */
|
|
2076
|
+
bundleFinalPrice: number
|
|
1968
2077
|
}
|
|
1969
2078
|
|
|
1970
2079
|
export interface LolCatalogCatalogPluginPrice {
|
|
@@ -2615,6 +2724,23 @@ export interface LolChampSelectChampSelectBannedChampions {
|
|
|
2615
2724
|
numBans: number
|
|
2616
2725
|
}
|
|
2617
2726
|
|
|
2727
|
+
export interface LolChampSelectChampSelectChampionSwapNotification {
|
|
2728
|
+
/** @format int64 */
|
|
2729
|
+
id: number
|
|
2730
|
+
/** @format int64 */
|
|
2731
|
+
responderIndex: number
|
|
2732
|
+
state: LolChampSelectChampSelectSwapState
|
|
2733
|
+
/** @format int64 */
|
|
2734
|
+
otherSummonerIndex: number
|
|
2735
|
+
responderChampionName: string
|
|
2736
|
+
requesterChampionName: string
|
|
2737
|
+
requesterChampionSplashPath: string
|
|
2738
|
+
initiatedByLocalPlayer: boolean
|
|
2739
|
+
type: LolChampSelectChampSelectSwapType
|
|
2740
|
+
/** @format int32 */
|
|
2741
|
+
requesterChampionId: number
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2618
2744
|
export interface LolChampSelectChampSelectChatRoomDetails {
|
|
2619
2745
|
multiUserChatId: string
|
|
2620
2746
|
multiUserChatPassword: string
|
|
@@ -2628,8 +2754,20 @@ export interface LolChampSelectChampSelectMySelection {
|
|
|
2628
2754
|
"spell1Id"?: number
|
|
2629
2755
|
/** @format uint64 */
|
|
2630
2756
|
"spell2Id"?: number
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
export interface LolChampSelectChampSelectPickOrderSwapNotification {
|
|
2760
|
+
/** @format int64 */
|
|
2761
|
+
id: number
|
|
2762
|
+
/** @format int64 */
|
|
2763
|
+
requestorIndex: number
|
|
2764
|
+
/** @format int64 */
|
|
2765
|
+
responderIndex: number
|
|
2766
|
+
state: LolChampSelectChampSelectSwapState
|
|
2631
2767
|
/** @format int64 */
|
|
2632
|
-
|
|
2768
|
+
otherSummonerIndex: number
|
|
2769
|
+
initiatedByLocalPlayer: boolean
|
|
2770
|
+
type: LolChampSelectChampSelectSwapType
|
|
2633
2771
|
}
|
|
2634
2772
|
|
|
2635
2773
|
export interface LolChampSelectChampSelectPinDropNotification {
|
|
@@ -2655,8 +2793,6 @@ export interface LolChampSelectChampSelectPlayerSelection {
|
|
|
2655
2793
|
championId: number
|
|
2656
2794
|
/** @format int32 */
|
|
2657
2795
|
selectedSkinId: number
|
|
2658
|
-
/** @format int64 */
|
|
2659
|
-
wardSkinId: number
|
|
2660
2796
|
/** @format uint64 */
|
|
2661
2797
|
"spell1Id": number
|
|
2662
2798
|
/** @format uint64 */
|
|
@@ -2668,13 +2804,32 @@ export interface LolChampSelectChampSelectPlayerSelection {
|
|
|
2668
2804
|
championPickIntent: number
|
|
2669
2805
|
/** @format uint64 */
|
|
2670
2806
|
summonerId: number
|
|
2807
|
+
gameName: string
|
|
2808
|
+
tagLine: string
|
|
2671
2809
|
puuid: string
|
|
2810
|
+
isHumanoid: boolean
|
|
2672
2811
|
nameVisibilityType: string
|
|
2673
2812
|
/** @format uint64 */
|
|
2674
2813
|
obfuscatedSummonerId: number
|
|
2675
2814
|
obfuscatedPuuid: string
|
|
2676
2815
|
}
|
|
2677
2816
|
|
|
2817
|
+
export interface LolChampSelectChampSelectPositionSwapNotification {
|
|
2818
|
+
/** @format int64 */
|
|
2819
|
+
id: number
|
|
2820
|
+
/** @format int64 */
|
|
2821
|
+
requestorIndex: number
|
|
2822
|
+
/** @format int64 */
|
|
2823
|
+
responderIndex: number
|
|
2824
|
+
requesterPosition: string
|
|
2825
|
+
responderPosition: string
|
|
2826
|
+
state: LolChampSelectChampSelectSwapState
|
|
2827
|
+
/** @format int64 */
|
|
2828
|
+
otherSummonerIndex: number
|
|
2829
|
+
initiatedByLocalPlayer: boolean
|
|
2830
|
+
type: LolChampSelectChampSelectSwapType
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2678
2833
|
export interface LolChampSelectChampSelectSession {
|
|
2679
2834
|
/** @format uint64 */
|
|
2680
2835
|
gameId: number
|
|
@@ -2682,14 +2837,16 @@ export interface LolChampSelectChampSelectSession {
|
|
|
2682
2837
|
chatDetails: LolChampSelectChampSelectChatRoomDetails
|
|
2683
2838
|
myTeam: LolChampSelectChampSelectPlayerSelection[]
|
|
2684
2839
|
theirTeam: LolChampSelectChampSelectPlayerSelection[]
|
|
2685
|
-
trades:
|
|
2840
|
+
trades: LolChampSelectChampSelectSwapContract[]
|
|
2686
2841
|
pickOrderSwaps: LolChampSelectChampSelectSwapContract[]
|
|
2842
|
+
positionSwaps: LolChampSelectChampSelectSwapContract[]
|
|
2687
2843
|
actions: unknown[]
|
|
2688
2844
|
bans: LolChampSelectChampSelectBannedChampions
|
|
2689
2845
|
/** @format int64 */
|
|
2690
2846
|
localPlayerCellId: number
|
|
2691
2847
|
isSpectating: boolean
|
|
2692
2848
|
allowSkinSelection: boolean
|
|
2849
|
+
allowSubsetChampionPicks: boolean
|
|
2693
2850
|
allowDuplicatePicks: boolean
|
|
2694
2851
|
allowBattleBoost: boolean
|
|
2695
2852
|
/** @format int32 */
|
|
@@ -2704,8 +2861,6 @@ export interface LolChampSelectChampSelectSession {
|
|
|
2704
2861
|
benchChampions: LolChampSelectBenchChampion[]
|
|
2705
2862
|
/** @format int64 */
|
|
2706
2863
|
counter: number
|
|
2707
|
-
/** @format int64 */
|
|
2708
|
-
recoveryCounter: number
|
|
2709
2864
|
skipChampionSelect: boolean
|
|
2710
2865
|
hasSimultaneousBans: boolean
|
|
2711
2866
|
hasSimultaneousPicks: boolean
|
|
@@ -2724,7 +2879,10 @@ export interface LolChampSelectChampSelectSummoner {
|
|
|
2724
2879
|
assignedPosition: string
|
|
2725
2880
|
/** @format uint64 */
|
|
2726
2881
|
summonerId: number
|
|
2882
|
+
gameName: string
|
|
2883
|
+
tagLine: string
|
|
2727
2884
|
puuid: string
|
|
2885
|
+
isHumanoid: boolean
|
|
2728
2886
|
nameVisibilityType: string
|
|
2729
2887
|
/** @format uint64 */
|
|
2730
2888
|
obfuscatedSummonerId: number
|
|
@@ -2761,8 +2919,11 @@ export interface LolChampSelectChampSelectSummoner {
|
|
|
2761
2919
|
tradeId: number
|
|
2762
2920
|
/** @format int64 */
|
|
2763
2921
|
swapId: number
|
|
2922
|
+
/** @format int64 */
|
|
2923
|
+
positionSwapId: number
|
|
2764
2924
|
showTrades: boolean
|
|
2765
2925
|
showSwaps: boolean
|
|
2926
|
+
showPositionSwaps: boolean
|
|
2766
2927
|
showMuted: boolean
|
|
2767
2928
|
}
|
|
2768
2929
|
|
|
@@ -2774,21 +2935,10 @@ export interface LolChampSelectChampSelectSwapContract {
|
|
|
2774
2935
|
state: LolChampSelectChampSelectSwapState
|
|
2775
2936
|
}
|
|
2776
2937
|
|
|
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
2938
|
export type LolChampSelectChampSelectSwapState = "ACCEPTED" | "CANCELLED" | "DECLINED" | "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
2791
2939
|
|
|
2940
|
+
export type LolChampSelectChampSelectSwapType = "POSITION" | "PICK_ORDER" | "CHAMPION"
|
|
2941
|
+
|
|
2792
2942
|
export interface LolChampSelectChampSelectTimer {
|
|
2793
2943
|
/** @format int64 */
|
|
2794
2944
|
adjustedTimeLeftInPhase: number
|
|
@@ -2800,30 +2950,6 @@ export interface LolChampSelectChampSelectTimer {
|
|
|
2800
2950
|
internalNowInEpochMs: number
|
|
2801
2951
|
}
|
|
2802
2952
|
|
|
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
2953
|
export interface LolChampSelectChampionMastery {
|
|
2828
2954
|
/** @format int32 */
|
|
2829
2955
|
championId: number
|
|
@@ -3021,8 +3147,6 @@ export interface LolChampSelectLegacyChampSelectMySelection {
|
|
|
3021
3147
|
"spell1Id"?: number
|
|
3022
3148
|
/** @format uint64 */
|
|
3023
3149
|
"spell2Id"?: number
|
|
3024
|
-
/** @format int64 */
|
|
3025
|
-
wardSkinId?: number
|
|
3026
3150
|
}
|
|
3027
3151
|
|
|
3028
3152
|
export interface LolChampSelectLegacyChampSelectPlayerSelection {
|
|
@@ -3032,8 +3156,6 @@ export interface LolChampSelectLegacyChampSelectPlayerSelection {
|
|
|
3032
3156
|
championId: number
|
|
3033
3157
|
/** @format int32 */
|
|
3034
3158
|
selectedSkinId: number
|
|
3035
|
-
/** @format int64 */
|
|
3036
|
-
wardSkinId: number
|
|
3037
3159
|
/** @format uint64 */
|
|
3038
3160
|
"spell1Id": number
|
|
3039
3161
|
/** @format uint64 */
|
|
@@ -3054,7 +3176,7 @@ export interface LolChampSelectLegacyChampSelectSession {
|
|
|
3054
3176
|
chatDetails: LolChampSelectLegacyChampSelectChatRoomDetails
|
|
3055
3177
|
myTeam: LolChampSelectLegacyChampSelectPlayerSelection[]
|
|
3056
3178
|
theirTeam: LolChampSelectLegacyChampSelectPlayerSelection[]
|
|
3057
|
-
trades:
|
|
3179
|
+
trades: LolChampSelectLegacyChampSelectSwapContract[]
|
|
3058
3180
|
actions: unknown[]
|
|
3059
3181
|
bans: LolChampSelectLegacyChampSelectBannedChampions
|
|
3060
3182
|
/** @format int64 */
|
|
@@ -3072,6 +3194,16 @@ export interface LolChampSelectLegacyChampSelectSession {
|
|
|
3072
3194
|
isCustomGame: boolean
|
|
3073
3195
|
}
|
|
3074
3196
|
|
|
3197
|
+
export interface LolChampSelectLegacyChampSelectSwapContract {
|
|
3198
|
+
/** @format int64 */
|
|
3199
|
+
id: number
|
|
3200
|
+
/** @format int64 */
|
|
3201
|
+
cellId: number
|
|
3202
|
+
state: LolChampSelectLegacyChampSelectSwapState
|
|
3203
|
+
}
|
|
3204
|
+
|
|
3205
|
+
export type LolChampSelectLegacyChampSelectSwapState = "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
3206
|
+
|
|
3075
3207
|
export interface LolChampSelectLegacyChampSelectTimer {
|
|
3076
3208
|
/** @format int64 */
|
|
3077
3209
|
adjustedTimeLeftInPhase: number
|
|
@@ -3083,16 +3215,6 @@ export interface LolChampSelectLegacyChampSelectTimer {
|
|
|
3083
3215
|
internalNowInEpochMs: number
|
|
3084
3216
|
}
|
|
3085
3217
|
|
|
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
3218
|
export interface LolChampSelectLegacyChampionSelectPreferences {
|
|
3097
3219
|
skins: Record<string, number>
|
|
3098
3220
|
spells: Record<string, unknown>
|
|
@@ -6008,6 +6130,20 @@ export interface LolCosmeticsCapOffer {
|
|
|
6008
6130
|
createdDate: string
|
|
6009
6131
|
}
|
|
6010
6132
|
|
|
6133
|
+
export interface LolCosmeticsCatalogEntryDto {
|
|
6134
|
+
id: string
|
|
6135
|
+
productId: string
|
|
6136
|
+
name: string
|
|
6137
|
+
description: string
|
|
6138
|
+
endTime: string
|
|
6139
|
+
purchaseUnits: LolCosmeticsPurchaseUnitDto[]
|
|
6140
|
+
displayMetadata: unknown
|
|
6141
|
+
refundRule: string
|
|
6142
|
+
giftRule: string
|
|
6143
|
+
prerequisites: LolCosmeticsPrerequisiteDto[]
|
|
6144
|
+
purchaseLimits: LolCosmeticsVelocityLimitDeltaDto[]
|
|
6145
|
+
}
|
|
6146
|
+
|
|
6011
6147
|
export interface LolCosmeticsCompanionsFavoritesViewModel {
|
|
6012
6148
|
favoriteItems: LolCosmeticsCosmeticsCompanionViewModel[]
|
|
6013
6149
|
}
|
|
@@ -6059,6 +6195,8 @@ export interface LolCosmeticsCosmeticsCompanion {
|
|
|
6059
6195
|
/** @format uint32 */
|
|
6060
6196
|
level: number
|
|
6061
6197
|
upgrades: string[]
|
|
6198
|
+
companionType: string
|
|
6199
|
+
TFTRarity: string
|
|
6062
6200
|
}
|
|
6063
6201
|
|
|
6064
6202
|
export interface LolCosmeticsCosmeticsCompanionViewModel {
|
|
@@ -6086,12 +6224,15 @@ export interface LolCosmeticsCosmeticsCompanionViewModel {
|
|
|
6086
6224
|
upgrades: LolCosmeticsCosmeticsCompanionViewModel[]
|
|
6087
6225
|
offerData?: LolCosmeticsCapOffer
|
|
6088
6226
|
starShardsPrice: LolCosmeticsCosmeticsOfferPrice
|
|
6227
|
+
companionType: string
|
|
6228
|
+
TFTRarity: string
|
|
6089
6229
|
}
|
|
6090
6230
|
|
|
6091
6231
|
export interface LolCosmeticsCosmeticsOfferPrice {
|
|
6092
6232
|
offerId: string
|
|
6093
6233
|
/** @format uint64 */
|
|
6094
6234
|
price: number
|
|
6235
|
+
chemtechUpgradeStoreId: string
|
|
6095
6236
|
}
|
|
6096
6237
|
|
|
6097
6238
|
export interface LolCosmeticsCosmeticsSettings {
|
|
@@ -6118,6 +6259,7 @@ export interface LolCosmeticsCosmeticsTFTDamageSkin {
|
|
|
6118
6259
|
groupId: number
|
|
6119
6260
|
groupName: string
|
|
6120
6261
|
upgrades: string[]
|
|
6262
|
+
TFTRarity: string
|
|
6121
6263
|
}
|
|
6122
6264
|
|
|
6123
6265
|
export interface LolCosmeticsCosmeticsTFTDamageSkinViewModel {
|
|
@@ -6142,6 +6284,7 @@ export interface LolCosmeticsCosmeticsTFTDamageSkinViewModel {
|
|
|
6142
6284
|
groupId: number
|
|
6143
6285
|
groupName: string
|
|
6144
6286
|
upgrades: LolCosmeticsCosmeticsTFTDamageSkinViewModel[]
|
|
6287
|
+
TFTRarity: string
|
|
6145
6288
|
}
|
|
6146
6289
|
|
|
6147
6290
|
export interface LolCosmeticsCosmeticsTFTMapSkin {
|
|
@@ -6161,6 +6304,7 @@ export interface LolCosmeticsCosmeticsTFTMapSkin {
|
|
|
6161
6304
|
/** @format uint32 */
|
|
6162
6305
|
groupId: number
|
|
6163
6306
|
groupName: string
|
|
6307
|
+
TFTRarity: string
|
|
6164
6308
|
}
|
|
6165
6309
|
|
|
6166
6310
|
export interface LolCosmeticsCosmeticsTFTMapSkinViewModel {
|
|
@@ -6182,6 +6326,7 @@ export interface LolCosmeticsCosmeticsTFTMapSkinViewModel {
|
|
|
6182
6326
|
/** @format uint32 */
|
|
6183
6327
|
groupId: number
|
|
6184
6328
|
groupName: string
|
|
6329
|
+
TFTRarity: string
|
|
6185
6330
|
}
|
|
6186
6331
|
|
|
6187
6332
|
export interface LolCosmeticsCosmeticsTFTPlaybook {
|
|
@@ -6262,6 +6407,7 @@ export interface LolCosmeticsCosmeticsTFTZoomSkin {
|
|
|
6262
6407
|
/** @format uint32 */
|
|
6263
6408
|
groupId: number
|
|
6264
6409
|
groupName: string
|
|
6410
|
+
TFTRarity: string
|
|
6265
6411
|
}
|
|
6266
6412
|
|
|
6267
6413
|
export interface LolCosmeticsCosmeticsTFTZoomSkinViewModel {
|
|
@@ -6283,6 +6429,30 @@ export interface LolCosmeticsCosmeticsTFTZoomSkinViewModel {
|
|
|
6283
6429
|
/** @format uint32 */
|
|
6284
6430
|
groupId: number
|
|
6285
6431
|
groupName: string
|
|
6432
|
+
TFTRarity: string
|
|
6433
|
+
}
|
|
6434
|
+
|
|
6435
|
+
export interface LolCosmeticsEntitlementDto {
|
|
6436
|
+
id: string
|
|
6437
|
+
label: string
|
|
6438
|
+
typeId: string
|
|
6439
|
+
productId: string
|
|
6440
|
+
active: boolean
|
|
6441
|
+
createdDate: string
|
|
6442
|
+
lastModifiedDate: string
|
|
6443
|
+
firstUsedDate: string
|
|
6444
|
+
recipient: unknown
|
|
6445
|
+
ownerId: string
|
|
6446
|
+
item: LolCosmeticsEntitlementItemDto
|
|
6447
|
+
}
|
|
6448
|
+
|
|
6449
|
+
export interface LolCosmeticsEntitlementItemDto {
|
|
6450
|
+
id: string
|
|
6451
|
+
typeId: string
|
|
6452
|
+
}
|
|
6453
|
+
|
|
6454
|
+
export interface LolCosmeticsEntitlementsResponse {
|
|
6455
|
+
data: LolCosmeticsEntitlementDto[]
|
|
6286
6456
|
}
|
|
6287
6457
|
|
|
6288
6458
|
export interface LolCosmeticsFavoriteCosmetics {
|
|
@@ -6291,6 +6461,28 @@ export interface LolCosmeticsFavoriteCosmetics {
|
|
|
6291
6461
|
tft_damage_skins: string[]
|
|
6292
6462
|
}
|
|
6293
6463
|
|
|
6464
|
+
export interface LolCosmeticsFinalPurchaseUnitDto {
|
|
6465
|
+
payments: LolCosmeticsPaymentDto[]
|
|
6466
|
+
fulfillment: LolCosmeticsFulfillmentDto
|
|
6467
|
+
}
|
|
6468
|
+
|
|
6469
|
+
export interface LolCosmeticsFulfillmentDto {
|
|
6470
|
+
/** @format int64 */
|
|
6471
|
+
delta: number
|
|
6472
|
+
/** @format int64 */
|
|
6473
|
+
finalDelta: number
|
|
6474
|
+
name: string
|
|
6475
|
+
/** @format int64 */
|
|
6476
|
+
maxQuantity: number
|
|
6477
|
+
/** @format uint64 */
|
|
6478
|
+
ownedQuantity: number
|
|
6479
|
+
ownershipCompensationMode: string
|
|
6480
|
+
itemTypeId: string
|
|
6481
|
+
itemId: string
|
|
6482
|
+
currencyId: string
|
|
6483
|
+
subCurrencyDeltas: Record<string, number>
|
|
6484
|
+
}
|
|
6485
|
+
|
|
6294
6486
|
export interface LolCosmeticsGameDataCompanion {
|
|
6295
6487
|
contentId: string
|
|
6296
6488
|
/** @format int32 */
|
|
@@ -6308,6 +6500,8 @@ export interface LolCosmeticsGameDataCompanion {
|
|
|
6308
6500
|
rarityValue: number
|
|
6309
6501
|
upgrades: string[]
|
|
6310
6502
|
TFTOnly: boolean
|
|
6503
|
+
companionType: string
|
|
6504
|
+
TFTRarity: string
|
|
6311
6505
|
}
|
|
6312
6506
|
|
|
6313
6507
|
export interface LolCosmeticsGameDataTFTCosmeticsDefaults {
|
|
@@ -6328,6 +6522,7 @@ export interface LolCosmeticsGameDataTFTDamageSkin {
|
|
|
6328
6522
|
rarityValue: number
|
|
6329
6523
|
/** @format uint32 */
|
|
6330
6524
|
level: number
|
|
6525
|
+
TFTRarity: string
|
|
6331
6526
|
}
|
|
6332
6527
|
|
|
6333
6528
|
export interface LolCosmeticsGameDataTFTMapSkin {
|
|
@@ -6342,6 +6537,7 @@ export interface LolCosmeticsGameDataTFTMapSkin {
|
|
|
6342
6537
|
groupName: string
|
|
6343
6538
|
/** @format uint32 */
|
|
6344
6539
|
rarityValue: number
|
|
6540
|
+
TFTRarity: string
|
|
6345
6541
|
}
|
|
6346
6542
|
|
|
6347
6543
|
export interface LolCosmeticsGameDataTFTPlaybook {
|
|
@@ -6375,6 +6571,7 @@ export interface LolCosmeticsGameDataTFTZoomSkin {
|
|
|
6375
6571
|
groupName: string
|
|
6376
6572
|
/** @format uint32 */
|
|
6377
6573
|
rarityValue: number
|
|
6574
|
+
TFTRarity: string
|
|
6378
6575
|
}
|
|
6379
6576
|
|
|
6380
6577
|
export interface LolCosmeticsLoadout {
|
|
@@ -6397,41 +6594,253 @@ export interface LolCosmeticsLoadoutUpdateDto {
|
|
|
6397
6594
|
loadout: Record<string, LolCosmeticsLoadoutItem>
|
|
6398
6595
|
}
|
|
6399
6596
|
|
|
6400
|
-
export interface
|
|
6401
|
-
data: LolCosmeticsCosmeticsSettings
|
|
6402
|
-
/** @format uint16 */
|
|
6403
|
-
schemaVersion: number
|
|
6404
|
-
}
|
|
6405
|
-
|
|
6406
|
-
export interface LolCosmeticsTFTDamageSkinFavoritesViewModel {
|
|
6407
|
-
favoriteItems: LolCosmeticsCosmeticsTFTDamageSkinViewModel[]
|
|
6408
|
-
}
|
|
6409
|
-
|
|
6410
|
-
export interface LolCosmeticsTFTDamageSkinGroupViewModel {
|
|
6411
|
-
groupName: string
|
|
6597
|
+
export interface LolCosmeticsPagination {
|
|
6412
6598
|
/** @format uint32 */
|
|
6413
|
-
|
|
6599
|
+
offset: number
|
|
6414
6600
|
/** @format uint32 */
|
|
6415
|
-
|
|
6601
|
+
limit: number
|
|
6416
6602
|
/** @format uint32 */
|
|
6417
|
-
|
|
6603
|
+
maxLimit: number
|
|
6604
|
+
/** @format uint32 */
|
|
6605
|
+
total: number
|
|
6606
|
+
previous: string
|
|
6607
|
+
next: string
|
|
6608
|
+
}
|
|
6609
|
+
|
|
6610
|
+
export interface LolCosmeticsPaymentDto {
|
|
6418
6611
|
/** @format int64 */
|
|
6419
|
-
|
|
6420
|
-
|
|
6612
|
+
delta: number
|
|
6613
|
+
/** @format int64 */
|
|
6614
|
+
finalDelta: number
|
|
6615
|
+
name: string
|
|
6616
|
+
/** @format int64 */
|
|
6617
|
+
discountedDelta: number
|
|
6618
|
+
/** @format double */
|
|
6619
|
+
discountPercent: number
|
|
6620
|
+
itemTypeId: string
|
|
6621
|
+
itemId: string
|
|
6622
|
+
currencyId: string
|
|
6421
6623
|
}
|
|
6422
6624
|
|
|
6423
|
-
export interface
|
|
6424
|
-
|
|
6425
|
-
|
|
6426
|
-
defaultItemId: number
|
|
6427
|
-
groups: LolCosmeticsTFTDamageSkinGroupViewModel[]
|
|
6625
|
+
export interface LolCosmeticsPaymentOptionDto {
|
|
6626
|
+
key: string
|
|
6627
|
+
payments: LolCosmeticsPaymentDto[]
|
|
6428
6628
|
}
|
|
6429
6629
|
|
|
6430
|
-
export interface
|
|
6431
|
-
|
|
6630
|
+
export interface LolCosmeticsPrerequisiteDto {
|
|
6631
|
+
status: string
|
|
6632
|
+
itemTypeId: string
|
|
6633
|
+
itemId: string
|
|
6634
|
+
/** @format uint16 */
|
|
6635
|
+
requiredQuantity: number
|
|
6432
6636
|
}
|
|
6433
6637
|
|
|
6434
|
-
export interface
|
|
6638
|
+
export interface LolCosmeticsPurchaseDto {
|
|
6639
|
+
id: string
|
|
6640
|
+
productId: string
|
|
6641
|
+
storeId: string
|
|
6642
|
+
storeName: string
|
|
6643
|
+
catalogEntryId: string
|
|
6644
|
+
catalogEntryName: string
|
|
6645
|
+
purchaserId: string
|
|
6646
|
+
recipientId: string
|
|
6647
|
+
purchaseUnits: LolCosmeticsFinalPurchaseUnitDto[]
|
|
6648
|
+
createdTime: string
|
|
6649
|
+
completedTime: string
|
|
6650
|
+
purchaseState: string
|
|
6651
|
+
purchaseVisibility: string
|
|
6652
|
+
refund: LolCosmeticsRefundDto
|
|
6653
|
+
refundRule: string
|
|
6654
|
+
refundable: boolean
|
|
6655
|
+
source: string
|
|
6656
|
+
}
|
|
6657
|
+
|
|
6658
|
+
export interface LolCosmeticsPurchaseErrorMessageDto {
|
|
6659
|
+
/** @format int32 */
|
|
6660
|
+
httpStatus: number
|
|
6661
|
+
errorCode: string
|
|
6662
|
+
message: string
|
|
6663
|
+
}
|
|
6664
|
+
|
|
6665
|
+
export interface LolCosmeticsPurchaseHistoryResponse {
|
|
6666
|
+
data: LolCosmeticsPurchaseDto[]
|
|
6667
|
+
paging: LolCosmeticsPagination
|
|
6668
|
+
stats: LolCosmeticsResponseStats
|
|
6669
|
+
notes: string[]
|
|
6670
|
+
errors: LolCosmeticsResponseError[]
|
|
6671
|
+
}
|
|
6672
|
+
|
|
6673
|
+
export interface LolCosmeticsPurchaseRequest {
|
|
6674
|
+
storeId: string
|
|
6675
|
+
catalogEntryId: string
|
|
6676
|
+
paymentOptionsKeys: string[]
|
|
6677
|
+
/** @format uint32 */
|
|
6678
|
+
quantity: number
|
|
6679
|
+
}
|
|
6680
|
+
|
|
6681
|
+
export interface LolCosmeticsPurchaseRequestDto {
|
|
6682
|
+
storeId: string
|
|
6683
|
+
catalogEntryId: string
|
|
6684
|
+
paymentOptionsKeys: string[]
|
|
6685
|
+
idempotencyId: string
|
|
6686
|
+
source: string
|
|
6687
|
+
/** @format uint32 */
|
|
6688
|
+
quantity: number
|
|
6689
|
+
}
|
|
6690
|
+
|
|
6691
|
+
export interface LolCosmeticsPurchaseResponse {
|
|
6692
|
+
data: LolCosmeticsPurchaseDto
|
|
6693
|
+
paging: LolCosmeticsPagination
|
|
6694
|
+
stats: LolCosmeticsResponseStats
|
|
6695
|
+
notes: string[]
|
|
6696
|
+
errors: LolCosmeticsResponseError[]
|
|
6697
|
+
}
|
|
6698
|
+
|
|
6699
|
+
export interface LolCosmeticsPurchaseTransaction {
|
|
6700
|
+
purchaseId: string
|
|
6701
|
+
productId: string
|
|
6702
|
+
storeId: string
|
|
6703
|
+
catalogEntryId: string
|
|
6704
|
+
purchaseState: string
|
|
6705
|
+
refundId: string
|
|
6706
|
+
refundState: string
|
|
6707
|
+
}
|
|
6708
|
+
|
|
6709
|
+
export interface LolCosmeticsPurchaseUnitDto {
|
|
6710
|
+
paymentOptions: LolCosmeticsPaymentOptionDto[]
|
|
6711
|
+
payment: LolCosmeticsPaymentDto[]
|
|
6712
|
+
fulfillment: LolCosmeticsFulfillmentDto
|
|
6713
|
+
}
|
|
6714
|
+
|
|
6715
|
+
export interface LolCosmeticsRefundDto {
|
|
6716
|
+
id: string
|
|
6717
|
+
purchaseId: string
|
|
6718
|
+
createdTime: string
|
|
6719
|
+
completedTime: string
|
|
6720
|
+
state: string
|
|
6721
|
+
source: string
|
|
6722
|
+
}
|
|
6723
|
+
|
|
6724
|
+
export interface LolCosmeticsRefundRequest {
|
|
6725
|
+
purchaseId: string
|
|
6726
|
+
}
|
|
6727
|
+
|
|
6728
|
+
export interface LolCosmeticsRefundRequestDto {
|
|
6729
|
+
purchaseId: string
|
|
6730
|
+
source: string
|
|
6731
|
+
}
|
|
6732
|
+
|
|
6733
|
+
export interface LolCosmeticsRefundResponse {
|
|
6734
|
+
data: LolCosmeticsRefundDto
|
|
6735
|
+
paging: LolCosmeticsPagination
|
|
6736
|
+
stats: LolCosmeticsResponseStats
|
|
6737
|
+
notes: string[]
|
|
6738
|
+
errors: LolCosmeticsResponseError[]
|
|
6739
|
+
}
|
|
6740
|
+
|
|
6741
|
+
export interface LolCosmeticsRegionLocale {
|
|
6742
|
+
region: string
|
|
6743
|
+
locale: string
|
|
6744
|
+
webRegion: string
|
|
6745
|
+
}
|
|
6746
|
+
|
|
6747
|
+
export interface LolCosmeticsResponseError {
|
|
6748
|
+
message: string
|
|
6749
|
+
type: string
|
|
6750
|
+
/** @format uint32 */
|
|
6751
|
+
code: number
|
|
6752
|
+
}
|
|
6753
|
+
|
|
6754
|
+
export interface LolCosmeticsResponseStats {
|
|
6755
|
+
/** @format uint32 */
|
|
6756
|
+
durationMs: number
|
|
6757
|
+
}
|
|
6758
|
+
|
|
6759
|
+
export interface LolCosmeticsRiotMessagingServiceMessage {
|
|
6760
|
+
resource: string
|
|
6761
|
+
service: string
|
|
6762
|
+
version: string
|
|
6763
|
+
/** @format int64 */
|
|
6764
|
+
timestamp: number
|
|
6765
|
+
payload: string
|
|
6766
|
+
}
|
|
6767
|
+
|
|
6768
|
+
export interface LolCosmeticsRotationalShopBundleData {
|
|
6769
|
+
asset: string
|
|
6770
|
+
description: string
|
|
6771
|
+
descriptionKey: string
|
|
6772
|
+
title: string
|
|
6773
|
+
titleKey: string
|
|
6774
|
+
}
|
|
6775
|
+
|
|
6776
|
+
export interface LolCosmeticsRotationalShopBundleListData {
|
|
6777
|
+
items: LolCosmeticsRotationalShopBundleData[]
|
|
6778
|
+
}
|
|
6779
|
+
|
|
6780
|
+
export interface LolCosmeticsRotationalShopItemData {
|
|
6781
|
+
backgroundTextureLCU: string
|
|
6782
|
+
contentID: string
|
|
6783
|
+
descriptionTraKey: string
|
|
6784
|
+
description: string
|
|
6785
|
+
name: string
|
|
6786
|
+
standaloneLoadoutsLargeIcon: string
|
|
6787
|
+
videoID: string
|
|
6788
|
+
redeemIconTexture: string
|
|
6789
|
+
rarity: string
|
|
6790
|
+
typeID: string
|
|
6791
|
+
}
|
|
6792
|
+
|
|
6793
|
+
export interface LolCosmeticsSettingsStorageContainer {
|
|
6794
|
+
data: LolCosmeticsCosmeticsSettings
|
|
6795
|
+
/** @format uint16 */
|
|
6796
|
+
schemaVersion: number
|
|
6797
|
+
}
|
|
6798
|
+
|
|
6799
|
+
export interface LolCosmeticsStoreDto {
|
|
6800
|
+
id: string
|
|
6801
|
+
productId: string
|
|
6802
|
+
name: string
|
|
6803
|
+
catalogEntries: LolCosmeticsCatalogEntryDto[]
|
|
6804
|
+
displayMetadata: unknown
|
|
6805
|
+
}
|
|
6806
|
+
|
|
6807
|
+
export interface LolCosmeticsStoresResponse {
|
|
6808
|
+
data: LolCosmeticsStoreDto[]
|
|
6809
|
+
paging: LolCosmeticsPagination
|
|
6810
|
+
stats: LolCosmeticsResponseStats
|
|
6811
|
+
notes: string[]
|
|
6812
|
+
errors: LolCosmeticsResponseError[]
|
|
6813
|
+
}
|
|
6814
|
+
|
|
6815
|
+
export interface LolCosmeticsTFTDamageSkinFavoritesViewModel {
|
|
6816
|
+
favoriteItems: LolCosmeticsCosmeticsTFTDamageSkinViewModel[]
|
|
6817
|
+
}
|
|
6818
|
+
|
|
6819
|
+
export interface LolCosmeticsTFTDamageSkinGroupViewModel {
|
|
6820
|
+
groupName: string
|
|
6821
|
+
/** @format uint32 */
|
|
6822
|
+
groupId: number
|
|
6823
|
+
/** @format uint32 */
|
|
6824
|
+
numOwned: number
|
|
6825
|
+
/** @format uint32 */
|
|
6826
|
+
numAvailable: number
|
|
6827
|
+
/** @format int64 */
|
|
6828
|
+
purchaseDate: number
|
|
6829
|
+
items: LolCosmeticsCosmeticsTFTDamageSkinViewModel[]
|
|
6830
|
+
}
|
|
6831
|
+
|
|
6832
|
+
export interface LolCosmeticsTFTDamageSkinGroupedViewModel {
|
|
6833
|
+
selectedLoadoutItem: LolCosmeticsCosmeticsTFTDamageSkinViewModel
|
|
6834
|
+
/** @format int32 */
|
|
6835
|
+
defaultItemId: number
|
|
6836
|
+
groups: LolCosmeticsTFTDamageSkinGroupViewModel[]
|
|
6837
|
+
}
|
|
6838
|
+
|
|
6839
|
+
export interface LolCosmeticsTFTMapSkinFavoritesViewModel {
|
|
6840
|
+
favoriteItems: LolCosmeticsCosmeticsTFTMapSkinViewModel[]
|
|
6841
|
+
}
|
|
6842
|
+
|
|
6843
|
+
export interface LolCosmeticsTFTMapSkinGroupViewModel {
|
|
6435
6844
|
groupName: string
|
|
6436
6845
|
/** @format uint32 */
|
|
6437
6846
|
groupId: number
|
|
@@ -6469,6 +6878,28 @@ export interface LolCosmeticsTFTPlaybookGroupedViewModel {
|
|
|
6469
6878
|
groups: LolCosmeticsTFTPlaybookGroupViewModel[]
|
|
6470
6879
|
}
|
|
6471
6880
|
|
|
6881
|
+
export interface LolCosmeticsTFTRotationalShopConfig {
|
|
6882
|
+
enabled: boolean
|
|
6883
|
+
contentPreviewConfig: unknown
|
|
6884
|
+
uiToggleEnabled: boolean
|
|
6885
|
+
navs: LolCosmeticsTFTRotationalShopNavConfig[]
|
|
6886
|
+
refund: LolCosmeticsTFTRotationalShopRefundConfig
|
|
6887
|
+
littleLegendsUpgradeEnabled: boolean
|
|
6888
|
+
}
|
|
6889
|
+
|
|
6890
|
+
export interface LolCosmeticsTFTRotationalShopNavConfig {
|
|
6891
|
+
name: string
|
|
6892
|
+
enabled: boolean
|
|
6893
|
+
supportedCurrencies: string[]
|
|
6894
|
+
}
|
|
6895
|
+
|
|
6896
|
+
export interface LolCosmeticsTFTRotationalShopRefundConfig {
|
|
6897
|
+
enabled: boolean
|
|
6898
|
+
allowedTypes: string[]
|
|
6899
|
+
/** @format uint8 */
|
|
6900
|
+
thresholdDays: number
|
|
6901
|
+
}
|
|
6902
|
+
|
|
6472
6903
|
export interface LolCosmeticsTFTSettingsDataResource {
|
|
6473
6904
|
iconOverride: string
|
|
6474
6905
|
}
|
|
@@ -6503,12 +6934,31 @@ export interface LolCosmeticsTFTZoomSkinGroupedViewModel {
|
|
|
6503
6934
|
groups: LolCosmeticsTFTZoomSkinGroupViewModel[]
|
|
6504
6935
|
}
|
|
6505
6936
|
|
|
6937
|
+
export interface LolCosmeticsTraKeyName {
|
|
6938
|
+
nameTraKey: string
|
|
6939
|
+
translatedName: string
|
|
6940
|
+
}
|
|
6941
|
+
|
|
6506
6942
|
export interface LolCosmeticsUserResource {
|
|
6507
6943
|
/** @format uint64 */
|
|
6508
6944
|
summonerId: number
|
|
6509
6945
|
lol: Record<string, string>
|
|
6510
6946
|
}
|
|
6511
6947
|
|
|
6948
|
+
export interface LolCosmeticsVelocityLimitDeltaDto {
|
|
6949
|
+
ruleId: string
|
|
6950
|
+
/** @format int64 */
|
|
6951
|
+
delta: number
|
|
6952
|
+
/** @format int64 */
|
|
6953
|
+
remaining: number
|
|
6954
|
+
}
|
|
6955
|
+
|
|
6956
|
+
export interface LolCosmeticsVelocityLimiterDto {
|
|
6957
|
+
/** @format int64 */
|
|
6958
|
+
availableTokens: number
|
|
6959
|
+
refill: string
|
|
6960
|
+
}
|
|
6961
|
+
|
|
6512
6962
|
export interface LolDiscordRpGameDataChampionSummary {
|
|
6513
6963
|
/** @format int32 */
|
|
6514
6964
|
id: number
|
|
@@ -6535,7 +6985,6 @@ export interface LolDropsCapDropsDropTableDisplayMetadata {
|
|
|
6535
6985
|
isCollectorsBounty: boolean
|
|
6536
6986
|
dataAssetId: string
|
|
6537
6987
|
nameTraKey: string
|
|
6538
|
-
mythicOfferId: string
|
|
6539
6988
|
progressionId: string
|
|
6540
6989
|
/** @format uint8 */
|
|
6541
6990
|
priority: number
|
|
@@ -7886,6 +8335,7 @@ export interface LolEventHubInventoryItem {
|
|
|
7886
8335
|
/** @format uint64 */
|
|
7887
8336
|
quantity: number
|
|
7888
8337
|
ownershipType: LolEventHubItemOwnershipType
|
|
8338
|
+
usedInGameDate: string
|
|
7889
8339
|
expirationDate: string
|
|
7890
8340
|
/** @format uint64 */
|
|
7891
8341
|
wins: number
|
|
@@ -7925,6 +8375,7 @@ export interface LolEventHubInventoryItemWithPayload {
|
|
|
7925
8375
|
/** @format uint64 */
|
|
7926
8376
|
quantity: number
|
|
7927
8377
|
ownershipType: LolEventHubItemOwnershipType
|
|
8378
|
+
usedInGameDate: string
|
|
7928
8379
|
expirationDate: string
|
|
7929
8380
|
"f2p": boolean
|
|
7930
8381
|
rental: boolean
|
|
@@ -8074,6 +8525,11 @@ export interface LolEventHubLoginSession {
|
|
|
8074
8525
|
|
|
8075
8526
|
export type LolEventHubLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
8076
8527
|
|
|
8528
|
+
export interface LolEventHubLolInventoryType {
|
|
8529
|
+
inventoryTypeId: string
|
|
8530
|
+
capInventoryTypeId: string
|
|
8531
|
+
}
|
|
8532
|
+
|
|
8077
8533
|
export interface LolEventHubLoyaltyRewards {
|
|
8078
8534
|
/** @format int32 */
|
|
8079
8535
|
freeRewardedChampionsCount: number
|
|
@@ -8159,7 +8615,10 @@ export interface LolEventHubNarrativeElement {
|
|
|
8159
8615
|
export interface LolEventHubNarrativeVideo {
|
|
8160
8616
|
localizedNarrativeVideoUrl: string
|
|
8161
8617
|
localizedPlayNarrativeButtonLabel: string
|
|
8618
|
+
localizedVideoTitle: string
|
|
8619
|
+
thumbnailImage: string
|
|
8162
8620
|
narrativeVideoIsLockedOnLevel?: boolean
|
|
8621
|
+
localizedNarrativeVideoDescription: string
|
|
8163
8622
|
}
|
|
8164
8623
|
|
|
8165
8624
|
export interface LolEventHubNavigationButtonUIData {
|
|
@@ -8238,6 +8697,10 @@ export interface LolEventHubPlayerSettingsData {
|
|
|
8238
8697
|
lastSeenTokenShopOffersVersion: number
|
|
8239
8698
|
}
|
|
8240
8699
|
|
|
8700
|
+
export interface LolEventHubPlayerSettingsDataMap {
|
|
8701
|
+
playerSettingsDataMap: Record<string, LolEventHubPlayerSettingsData>
|
|
8702
|
+
}
|
|
8703
|
+
|
|
8241
8704
|
export interface LolEventHubPriceDetail {
|
|
8242
8705
|
itemKey: LolEventHubItemKey
|
|
8243
8706
|
price: LolEventHubItemPrice
|
|
@@ -8637,7 +9100,7 @@ export interface LolEventHubSelectionStrategyConfig {
|
|
|
8637
9100
|
}
|
|
8638
9101
|
|
|
8639
9102
|
export interface LolEventHubSettingsResource {
|
|
8640
|
-
data:
|
|
9103
|
+
data: LolEventHubPlayerSettingsDataMap
|
|
8641
9104
|
/** @format int16 */
|
|
8642
9105
|
schemaVersion: number
|
|
8643
9106
|
}
|
|
@@ -9070,10 +9533,6 @@ export interface LolGameClientChatMutedPlayerInfo {
|
|
|
9070
9533
|
obfuscatedSummonerId: number
|
|
9071
9534
|
}
|
|
9072
9535
|
|
|
9073
|
-
export interface LolGameQueuesDoubleUpConfig {
|
|
9074
|
-
enabled: boolean
|
|
9075
|
-
}
|
|
9076
|
-
|
|
9077
9536
|
export interface LolGameQueuesLoginDataPacket {
|
|
9078
9537
|
gameTypeConfigs: LolGameQueuesQueueGameTypeConfig[]
|
|
9079
9538
|
}
|
|
@@ -10017,6 +10476,7 @@ export interface LolInventoryInventoryItem {
|
|
|
10017
10476
|
/** @format uint64 */
|
|
10018
10477
|
quantity: number
|
|
10019
10478
|
ownershipType: LolInventoryItemOwnershipType
|
|
10479
|
+
usedInGameDate: string
|
|
10020
10480
|
expirationDate: string
|
|
10021
10481
|
/** @format uint64 */
|
|
10022
10482
|
wins: number
|
|
@@ -10056,6 +10516,7 @@ export interface LolInventoryInventoryItemWithPayload {
|
|
|
10056
10516
|
/** @format uint64 */
|
|
10057
10517
|
quantity: number
|
|
10058
10518
|
ownershipType: LolInventoryItemOwnershipType
|
|
10519
|
+
usedInGameDate: string
|
|
10059
10520
|
expirationDate: string
|
|
10060
10521
|
"f2p": boolean
|
|
10061
10522
|
rental: boolean
|
|
@@ -10101,6 +10562,11 @@ export interface LolInventoryLoginSession {
|
|
|
10101
10562
|
|
|
10102
10563
|
export type LolInventoryLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
10103
10564
|
|
|
10565
|
+
export interface LolInventoryLolInventoryType {
|
|
10566
|
+
inventoryTypeId: string
|
|
10567
|
+
capInventoryTypeId: string
|
|
10568
|
+
}
|
|
10569
|
+
|
|
10104
10570
|
export interface LolInventoryLoyaltyRewards {
|
|
10105
10571
|
/** @format int32 */
|
|
10106
10572
|
freeRewardedChampionsCount: number
|
|
@@ -11911,7 +12377,6 @@ export interface LolLobbyTeamBuilderAfkCheckStateV1 {
|
|
|
11911
12377
|
remainingAfkMillis: number
|
|
11912
12378
|
afkReady: boolean
|
|
11913
12379
|
inventoryDraft: LolLobbyTeamBuilderTbdInventory
|
|
11914
|
-
additionalInventoryTypes: string[]
|
|
11915
12380
|
compressAfkCheckPayload: boolean
|
|
11916
12381
|
autoAccept: boolean
|
|
11917
12382
|
mucJwtDto: LolLobbyTeamBuilderMucJwtDto
|
|
@@ -11946,7 +12411,10 @@ export interface LolLobbyTeamBuilderCellV1 {
|
|
|
11946
12411
|
"spell2Id": number
|
|
11947
12412
|
/** @format uint64 */
|
|
11948
12413
|
summonerId: number
|
|
12414
|
+
gameName: string
|
|
12415
|
+
tagLine: string
|
|
11949
12416
|
puuid: string
|
|
12417
|
+
isHumanoid: boolean
|
|
11950
12418
|
nameVisibilityType: string
|
|
11951
12419
|
/** @format uint64 */
|
|
11952
12420
|
obfuscatedSummonerId: number
|
|
@@ -12001,8 +12469,6 @@ export interface LolLobbyTeamBuilderChampSelectMySelection {
|
|
|
12001
12469
|
"spell1Id"?: number
|
|
12002
12470
|
/** @format uint64 */
|
|
12003
12471
|
"spell2Id"?: number
|
|
12004
|
-
/** @format int64 */
|
|
12005
|
-
wardSkinId?: number
|
|
12006
12472
|
}
|
|
12007
12473
|
|
|
12008
12474
|
export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
@@ -12012,8 +12478,6 @@ export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
|
12012
12478
|
championId: number
|
|
12013
12479
|
/** @format int32 */
|
|
12014
12480
|
selectedSkinId: number
|
|
12015
|
-
/** @format int64 */
|
|
12016
|
-
wardSkinId: number
|
|
12017
12481
|
/** @format uint64 */
|
|
12018
12482
|
"spell1Id": number
|
|
12019
12483
|
/** @format uint64 */
|
|
@@ -12026,7 +12490,10 @@ export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
|
12026
12490
|
playerType: string
|
|
12027
12491
|
/** @format uint64 */
|
|
12028
12492
|
summonerId: number
|
|
12493
|
+
gameName: string
|
|
12494
|
+
tagLine: string
|
|
12029
12495
|
puuid: string
|
|
12496
|
+
isHumanoid: boolean
|
|
12030
12497
|
nameVisibilityType: string
|
|
12031
12498
|
/** @format uint64 */
|
|
12032
12499
|
obfuscatedSummonerId: number
|
|
@@ -12040,12 +12507,14 @@ export interface LolLobbyTeamBuilderChampSelectSession {
|
|
|
12040
12507
|
chatDetails: LolLobbyTeamBuilderChampSelectChatRoomDetails
|
|
12041
12508
|
myTeam: LolLobbyTeamBuilderChampSelectPlayerSelection[]
|
|
12042
12509
|
theirTeam: LolLobbyTeamBuilderChampSelectPlayerSelection[]
|
|
12043
|
-
trades:
|
|
12510
|
+
trades: LolLobbyTeamBuilderChampSelectSwapContract[]
|
|
12044
12511
|
pickOrderSwaps: LolLobbyTeamBuilderChampSelectSwapContract[]
|
|
12512
|
+
positionSwaps: LolLobbyTeamBuilderChampSelectSwapContract[]
|
|
12045
12513
|
actions: unknown[]
|
|
12046
12514
|
/** @format int64 */
|
|
12047
12515
|
localPlayerCellId: number
|
|
12048
12516
|
allowSkinSelection: boolean
|
|
12517
|
+
allowSubsetChampionPicks: boolean
|
|
12049
12518
|
allowDuplicatePicks: boolean
|
|
12050
12519
|
allowBattleBoost: boolean
|
|
12051
12520
|
/** @format int32 */
|
|
@@ -12060,8 +12529,6 @@ export interface LolLobbyTeamBuilderChampSelectSession {
|
|
|
12060
12529
|
benchChampions: LolLobbyTeamBuilderBenchChampion[]
|
|
12061
12530
|
/** @format int64 */
|
|
12062
12531
|
counter: number
|
|
12063
|
-
/** @format int64 */
|
|
12064
|
-
recoveryCounter: number
|
|
12065
12532
|
skipChampionSelect: boolean
|
|
12066
12533
|
isSpectating: boolean
|
|
12067
12534
|
hasSimultaneousBans: boolean
|
|
@@ -12091,16 +12558,6 @@ export interface LolLobbyTeamBuilderChampSelectTimer {
|
|
|
12091
12558
|
internalNowInEpochMs: number
|
|
12092
12559
|
}
|
|
12093
12560
|
|
|
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
12561
|
export interface LolLobbyTeamBuilderChampionBenchChampionV1 {
|
|
12105
12562
|
/** @format int32 */
|
|
12106
12563
|
championId: number
|
|
@@ -12133,13 +12590,14 @@ export interface LolLobbyTeamBuilderChampionSelectStateV1 {
|
|
|
12133
12590
|
currentTotalTimeMillis: number
|
|
12134
12591
|
/** @format int64 */
|
|
12135
12592
|
currentTimeRemainingMillis: number
|
|
12136
|
-
trades:
|
|
12137
|
-
pickOrderSwaps:
|
|
12593
|
+
trades: LolLobbyTeamBuilderSwapV1[]
|
|
12594
|
+
pickOrderSwaps: LolLobbyTeamBuilderSwapV1[]
|
|
12595
|
+
positionSwaps: LolLobbyTeamBuilderSwapV1[]
|
|
12138
12596
|
pickIntentClearedReason: string
|
|
12139
12597
|
allowOptingOutOfBanning: boolean
|
|
12140
12598
|
allowSkinSelection: boolean
|
|
12599
|
+
allowSubsetChampionPicks: boolean
|
|
12141
12600
|
allowDuplicatePicks: boolean
|
|
12142
|
-
lcuSkipsSendingLoadoutsGco: boolean
|
|
12143
12601
|
rerollState: LolLobbyTeamBuilderRerollStateV1
|
|
12144
12602
|
lockedEventsState: LolLobbyTeamBuilderLockedEventsStateV1
|
|
12145
12603
|
battleBoostState: LolLobbyTeamBuilderTeamBuilderBoostInfo
|
|
@@ -12360,14 +12818,6 @@ export interface LolLobbyTeamBuilderMucJwtDto {
|
|
|
12360
12818
|
targetRegion: string
|
|
12361
12819
|
}
|
|
12362
12820
|
|
|
12363
|
-
export interface LolLobbyTeamBuilderPickOrderSwapV1 {
|
|
12364
|
-
/** @format int32 */
|
|
12365
|
-
id: number
|
|
12366
|
-
/** @format int32 */
|
|
12367
|
-
cellId: number
|
|
12368
|
-
state: string
|
|
12369
|
-
}
|
|
12370
|
-
|
|
12371
12821
|
export interface LolLobbyTeamBuilderQueue {
|
|
12372
12822
|
/** @format int32 */
|
|
12373
12823
|
id: number
|
|
@@ -12462,6 +12912,14 @@ export interface LolLobbyTeamBuilderSettingCategoryResource {
|
|
|
12462
12912
|
data: LolLobbyTeamBuilderChampionSelectPreferences
|
|
12463
12913
|
}
|
|
12464
12914
|
|
|
12915
|
+
export interface LolLobbyTeamBuilderSwapV1 {
|
|
12916
|
+
/** @format int32 */
|
|
12917
|
+
id: number
|
|
12918
|
+
/** @format int32 */
|
|
12919
|
+
cellId: number
|
|
12920
|
+
state: string
|
|
12921
|
+
}
|
|
12922
|
+
|
|
12465
12923
|
export interface LolLobbyTeamBuilderTBDMatchmakingState {
|
|
12466
12924
|
/** @format int64 */
|
|
12467
12925
|
estimatedMatchmakingTimeMillis: number
|
|
@@ -12473,8 +12931,6 @@ export interface LolLobbyTeamBuilderTBDMatchmakingState {
|
|
|
12473
12931
|
export interface LolLobbyTeamBuilderTbLobbyStateResource {
|
|
12474
12932
|
/** @format int32 */
|
|
12475
12933
|
counter: number
|
|
12476
|
-
/** @format int32 */
|
|
12477
|
-
recoveryCounter: number
|
|
12478
12934
|
phaseName: string
|
|
12479
12935
|
/** @format int32 */
|
|
12480
12936
|
queueId: number
|
|
@@ -12498,6 +12954,7 @@ export interface LolLobbyTeamBuilderTbdInventory {
|
|
|
12498
12954
|
allChampionIds: number[]
|
|
12499
12955
|
disabledChampionIds: number[]
|
|
12500
12956
|
crowdFavoriteChampionIds: number[]
|
|
12957
|
+
subsetChampionIds: number[]
|
|
12501
12958
|
}
|
|
12502
12959
|
|
|
12503
12960
|
export interface LolLobbyTeamBuilderTeamBoost {
|
|
@@ -12532,14 +12989,6 @@ export interface LolLobbyTeamBuilderTeambuilderLeagueEdgeResponse {
|
|
|
12532
12989
|
status: string
|
|
12533
12990
|
}
|
|
12534
12991
|
|
|
12535
|
-
export interface LolLobbyTeamBuilderTradeV1 {
|
|
12536
|
-
/** @format int32 */
|
|
12537
|
-
id: number
|
|
12538
|
-
/** @format int32 */
|
|
12539
|
-
cellId: number
|
|
12540
|
-
state: string
|
|
12541
|
-
}
|
|
12542
|
-
|
|
12543
12992
|
export interface LolLobbyUserInfoToken {
|
|
12544
12993
|
userInfo: string
|
|
12545
12994
|
}
|
|
@@ -13795,6 +14244,29 @@ export interface LolMarketplaceCatalogEntryDto {
|
|
|
13795
14244
|
purchaseLimits: LolMarketplaceVelocityLimitDeltaDto[]
|
|
13796
14245
|
}
|
|
13797
14246
|
|
|
14247
|
+
export interface LolMarketplaceEntitlementDto {
|
|
14248
|
+
id: string
|
|
14249
|
+
label: string
|
|
14250
|
+
typeId: string
|
|
14251
|
+
productId: string
|
|
14252
|
+
active: boolean
|
|
14253
|
+
createdDate: string
|
|
14254
|
+
lastModifiedDate: string
|
|
14255
|
+
firstUsedDate: string
|
|
14256
|
+
recipient: unknown
|
|
14257
|
+
ownerId: string
|
|
14258
|
+
item: LolMarketplaceEntitlementItemDto
|
|
14259
|
+
}
|
|
14260
|
+
|
|
14261
|
+
export interface LolMarketplaceEntitlementItemDto {
|
|
14262
|
+
id: string
|
|
14263
|
+
typeId: string
|
|
14264
|
+
}
|
|
14265
|
+
|
|
14266
|
+
export interface LolMarketplaceEntitlementsResponse {
|
|
14267
|
+
data: LolMarketplaceEntitlementDto[]
|
|
14268
|
+
}
|
|
14269
|
+
|
|
13798
14270
|
export interface LolMarketplaceFinalPurchaseUnitDto {
|
|
13799
14271
|
payments: LolMarketplacePaymentDto[]
|
|
13800
14272
|
fulfillment: LolMarketplaceFulfillmentDto
|
|
@@ -13874,6 +14346,7 @@ export interface LolMarketplacePurchaseDto {
|
|
|
13874
14346
|
purchaseVisibility: string
|
|
13875
14347
|
refund: LolMarketplaceRefundDto
|
|
13876
14348
|
refundRule: string
|
|
14349
|
+
refundable: boolean
|
|
13877
14350
|
source: string
|
|
13878
14351
|
}
|
|
13879
14352
|
|
|
@@ -14028,9 +14501,31 @@ export interface LolMarketplaceStoresResponse {
|
|
|
14028
14501
|
errors: LolMarketplaceResponseError[]
|
|
14029
14502
|
}
|
|
14030
14503
|
|
|
14031
|
-
export interface
|
|
14032
|
-
|
|
14033
|
-
|
|
14504
|
+
export interface LolMarketplaceTFTRotationalShopConfig {
|
|
14505
|
+
enabled: boolean
|
|
14506
|
+
contentPreviewConfig: unknown
|
|
14507
|
+
uiToggleEnabled: boolean
|
|
14508
|
+
navs: LolMarketplaceTFTRotationalShopNavConfig[]
|
|
14509
|
+
refund: LolMarketplaceTFTRotationalShopRefundConfig
|
|
14510
|
+
littleLegendsUpgradeEnabled: boolean
|
|
14511
|
+
}
|
|
14512
|
+
|
|
14513
|
+
export interface LolMarketplaceTFTRotationalShopNavConfig {
|
|
14514
|
+
name: string
|
|
14515
|
+
enabled: boolean
|
|
14516
|
+
supportedCurrencies: string[]
|
|
14517
|
+
}
|
|
14518
|
+
|
|
14519
|
+
export interface LolMarketplaceTFTRotationalShopRefundConfig {
|
|
14520
|
+
enabled: boolean
|
|
14521
|
+
allowedTypes: string[]
|
|
14522
|
+
/** @format uint8 */
|
|
14523
|
+
thresholdDays: number
|
|
14524
|
+
}
|
|
14525
|
+
|
|
14526
|
+
export interface LolMarketplaceTraKeyName {
|
|
14527
|
+
nameTraKey: string
|
|
14528
|
+
translatedName: string
|
|
14034
14529
|
}
|
|
14035
14530
|
|
|
14036
14531
|
export interface LolMarketplaceVelocityLimitDeltaDto {
|
|
@@ -14711,6 +15206,123 @@ export interface LolMatchmakingQueue {
|
|
|
14711
15206
|
|
|
14712
15207
|
export type LolMatchmakingQueueCustomGameSpectatorPolicy = "AllAllowed" | "FriendsAllowed" | "LobbyAllowed" | "NotAllowed"
|
|
14713
15208
|
|
|
15209
|
+
export interface LolMissionsCAPMission {
|
|
15210
|
+
missionId: string
|
|
15211
|
+
title: string
|
|
15212
|
+
description: string
|
|
15213
|
+
missionIconAsset: LolMissionsMissionAsset
|
|
15214
|
+
rewards: LolMissionsCAPMissionReward[]
|
|
15215
|
+
objectives: LolMissionsCAPMissionObjective[]
|
|
15216
|
+
}
|
|
15217
|
+
|
|
15218
|
+
export interface LolMissionsCAPMissionCollection {
|
|
15219
|
+
missionCollectionId: string
|
|
15220
|
+
dates: LolMissionsCAPMissionCollectionDates
|
|
15221
|
+
seriesList: LolMissionsCAPMissionSeries[]
|
|
15222
|
+
}
|
|
15223
|
+
|
|
15224
|
+
export interface LolMissionsCAPMissionCollectionDateRange {
|
|
15225
|
+
/** @format uint64 */
|
|
15226
|
+
activationTimeEpoch: number
|
|
15227
|
+
/** @format uint64 */
|
|
15228
|
+
deactivationTimeEpoch: number
|
|
15229
|
+
}
|
|
15230
|
+
|
|
15231
|
+
export interface LolMissionsCAPMissionCollectionDates {
|
|
15232
|
+
live: LolMissionsCAPMissionCollectionDateRange
|
|
15233
|
+
pbe: LolMissionsCAPMissionCollectionDateRange
|
|
15234
|
+
internal: LolMissionsCAPMissionCollectionDateRange
|
|
15235
|
+
}
|
|
15236
|
+
|
|
15237
|
+
export interface LolMissionsCAPMissionObjective {
|
|
15238
|
+
statId: string
|
|
15239
|
+
description: string
|
|
15240
|
+
}
|
|
15241
|
+
|
|
15242
|
+
export interface LolMissionsCAPMissionReward {
|
|
15243
|
+
itemId: string
|
|
15244
|
+
rewardName: string
|
|
15245
|
+
/** @format uint32 */
|
|
15246
|
+
quantity: number
|
|
15247
|
+
rewardAsset: LolMissionsMissionAsset
|
|
15248
|
+
}
|
|
15249
|
+
|
|
15250
|
+
export interface LolMissionsCAPMissionSeries {
|
|
15251
|
+
seriesId: string
|
|
15252
|
+
seriesTitle: string
|
|
15253
|
+
seriesIconAsset: LolMissionsMissionAsset
|
|
15254
|
+
missions: LolMissionsCAPMission[]
|
|
15255
|
+
}
|
|
15256
|
+
|
|
15257
|
+
export interface LolMissionsCapMissionSeriesMission {
|
|
15258
|
+
name: string
|
|
15259
|
+
missionId: string
|
|
15260
|
+
expression: string
|
|
15261
|
+
missionCollectionId: string
|
|
15262
|
+
status: string
|
|
15263
|
+
completedTimeUtc: string
|
|
15264
|
+
missionInstanceId: string
|
|
15265
|
+
objectives: LolMissionsCapMissionSeriesMissionObjective[]
|
|
15266
|
+
eligibility: LolMissionsCapMissionSeriesMissionEligibility[]
|
|
15267
|
+
rewardsStatus: LolMissionsCapMissionSeriesMissionRewardsStatus
|
|
15268
|
+
/** @format uint32 */
|
|
15269
|
+
repeatSequence: number
|
|
15270
|
+
properties: Record<string, string>
|
|
15271
|
+
metadata: Record<string, string>
|
|
15272
|
+
}
|
|
15273
|
+
|
|
15274
|
+
export interface LolMissionsCapMissionSeriesMissionEligibility {
|
|
15275
|
+
type: string
|
|
15276
|
+
missionCollectionId: string
|
|
15277
|
+
missionId: string
|
|
15278
|
+
startTime: string
|
|
15279
|
+
}
|
|
15280
|
+
|
|
15281
|
+
export interface LolMissionsCapMissionSeriesMissionObjective {
|
|
15282
|
+
statId: string
|
|
15283
|
+
objectiveId: string
|
|
15284
|
+
/** @format uint32 */
|
|
15285
|
+
goal: number
|
|
15286
|
+
/** @format uint32 */
|
|
15287
|
+
currentValue: number
|
|
15288
|
+
}
|
|
15289
|
+
|
|
15290
|
+
export interface LolMissionsCapMissionSeriesMissionReward {
|
|
15291
|
+
type: string
|
|
15292
|
+
counterId: string
|
|
15293
|
+
itemId: string
|
|
15294
|
+
itemTypeId: string
|
|
15295
|
+
typeId: string
|
|
15296
|
+
/** @format uint32 */
|
|
15297
|
+
amount: number
|
|
15298
|
+
}
|
|
15299
|
+
|
|
15300
|
+
export interface LolMissionsCapMissionSeriesMissionRewardsStatus {
|
|
15301
|
+
requiresClaim: boolean
|
|
15302
|
+
status: string
|
|
15303
|
+
rewards: LolMissionsCapMissionSeriesMissionReward[]
|
|
15304
|
+
}
|
|
15305
|
+
|
|
15306
|
+
export interface LolMissionsCapMissionsMarkAsViewedPostBody {
|
|
15307
|
+
events: LolMissionsCapMissionsMarkAsViewedPostBodyEvent[]
|
|
15308
|
+
}
|
|
15309
|
+
|
|
15310
|
+
export interface LolMissionsCapMissionsMarkAsViewedPostBodyEvent {
|
|
15311
|
+
configurationId: string
|
|
15312
|
+
missions: LolMissionsCapMissionsMarkAsViewedPostBodyMission[]
|
|
15313
|
+
}
|
|
15314
|
+
|
|
15315
|
+
export interface LolMissionsCapMissionsMarkAsViewedPostBodyMission {
|
|
15316
|
+
missionInstanceId: string
|
|
15317
|
+
metadata: Record<string, string>
|
|
15318
|
+
}
|
|
15319
|
+
|
|
15320
|
+
export interface LolMissionsCapMissionsMeResponse {
|
|
15321
|
+
productId: string
|
|
15322
|
+
ownerId: string
|
|
15323
|
+
series: LolMissionsCapMissionSeries[]
|
|
15324
|
+
}
|
|
15325
|
+
|
|
14714
15326
|
export interface LolMissionsCollectionsChampion {
|
|
14715
15327
|
/** @format int32 */
|
|
14716
15328
|
id: number
|
|
@@ -14775,6 +15387,8 @@ export interface LolMissionsLoginSession {
|
|
|
14775
15387
|
platformId: string
|
|
14776
15388
|
}
|
|
14777
15389
|
|
|
15390
|
+
export type LolMissionsLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
15391
|
+
|
|
14778
15392
|
export type LolMissionsLoyaltyStatus = "DISABLED" | "REVOKE" | "CHANGE" | "EXPIRY" | "REWARDS_GRANT" | "LEGACY"
|
|
14779
15393
|
|
|
14780
15394
|
export interface LolMissionsLoyaltyStatusNotification {
|
|
@@ -14870,6 +15484,21 @@ export interface LolMissionsRewardsProductConfig {
|
|
|
14870
15484
|
serviceUrl: string
|
|
14871
15485
|
}
|
|
14872
15486
|
|
|
15487
|
+
export interface LolMissionsRiotMessagingServiceMessage {
|
|
15488
|
+
resource: string
|
|
15489
|
+
service: string
|
|
15490
|
+
version: string
|
|
15491
|
+
/** @format int64 */
|
|
15492
|
+
timestamp: number
|
|
15493
|
+
payload: string
|
|
15494
|
+
}
|
|
15495
|
+
|
|
15496
|
+
export interface LolMissionsRiotMessagingServicePayload {
|
|
15497
|
+
deltaEventId: string
|
|
15498
|
+
ownerId: string
|
|
15499
|
+
updatedMissions: string[]
|
|
15500
|
+
}
|
|
15501
|
+
|
|
14873
15502
|
export interface LolMissionsSelectionStrategyConfig {
|
|
14874
15503
|
/** @format uint32 */
|
|
14875
15504
|
minSelectionsAllowed: number
|
|
@@ -15511,6 +16140,136 @@ export type LolNpeTutorialPathTutorialStatus = "COMPLETED" | "UNLOCKED" | "LOCKE
|
|
|
15511
16140
|
|
|
15512
16141
|
export type LolNpeTutorialPathTutorialType = "REWARD" | "CARD"
|
|
15513
16142
|
|
|
16143
|
+
export interface LolObjectivesActiveEventUIData {
|
|
16144
|
+
eventId: string
|
|
16145
|
+
eventInfo: LolObjectivesEventInfoUIData
|
|
16146
|
+
}
|
|
16147
|
+
|
|
16148
|
+
export interface LolObjectivesCAPMission {
|
|
16149
|
+
missionId: string
|
|
16150
|
+
title: string
|
|
16151
|
+
description: string
|
|
16152
|
+
missionIconAsset: LolObjectivesMissionAsset
|
|
16153
|
+
rewards: LolObjectivesCAPMissionReward[]
|
|
16154
|
+
objectives: LolObjectivesCAPMissionObjective[]
|
|
16155
|
+
}
|
|
16156
|
+
|
|
16157
|
+
export interface LolObjectivesCAPMissionCollection {
|
|
16158
|
+
missionCollectionId: string
|
|
16159
|
+
dates: LolObjectivesCAPMissionCollectionDates
|
|
16160
|
+
seriesList: LolObjectivesCAPMissionSeries[]
|
|
16161
|
+
}
|
|
16162
|
+
|
|
16163
|
+
export interface LolObjectivesCAPMissionCollectionDateRange {
|
|
16164
|
+
/** @format uint64 */
|
|
16165
|
+
activationTimeEpoch: number
|
|
16166
|
+
/** @format uint64 */
|
|
16167
|
+
deactivationTimeEpoch: number
|
|
16168
|
+
}
|
|
16169
|
+
|
|
16170
|
+
export interface LolObjectivesCAPMissionCollectionDates {
|
|
16171
|
+
live: LolObjectivesCAPMissionCollectionDateRange
|
|
16172
|
+
pbe: LolObjectivesCAPMissionCollectionDateRange
|
|
16173
|
+
internal: LolObjectivesCAPMissionCollectionDateRange
|
|
16174
|
+
}
|
|
16175
|
+
|
|
16176
|
+
export interface LolObjectivesCAPMissionObjective {
|
|
16177
|
+
statId: string
|
|
16178
|
+
description: string
|
|
16179
|
+
}
|
|
16180
|
+
|
|
16181
|
+
export interface LolObjectivesCAPMissionReward {
|
|
16182
|
+
itemId: string
|
|
16183
|
+
rewardName: string
|
|
16184
|
+
/** @format uint32 */
|
|
16185
|
+
quantity: number
|
|
16186
|
+
rewardAsset: LolObjectivesMissionAsset
|
|
16187
|
+
}
|
|
16188
|
+
|
|
16189
|
+
export interface LolObjectivesCAPMissionSeries {
|
|
16190
|
+
seriesId: string
|
|
16191
|
+
seriesTitle: string
|
|
16192
|
+
seriesIconAsset: LolObjectivesMissionAsset
|
|
16193
|
+
missions: LolObjectivesCAPMission[]
|
|
16194
|
+
}
|
|
16195
|
+
|
|
16196
|
+
export interface LolObjectivesCapMissionSeriesMission {
|
|
16197
|
+
name: string
|
|
16198
|
+
missionId: string
|
|
16199
|
+
expression: string
|
|
16200
|
+
missionCollectionId: string
|
|
16201
|
+
status: string
|
|
16202
|
+
completedTimeUtc: string
|
|
16203
|
+
missionInstanceId: string
|
|
16204
|
+
objectives: LolObjectivesCapMissionSeriesMissionObjective[]
|
|
16205
|
+
eligibility: LolObjectivesCapMissionSeriesMissionEligibility[]
|
|
16206
|
+
rewardsStatus: LolObjectivesCapMissionSeriesMissionRewardsStatus
|
|
16207
|
+
/** @format uint32 */
|
|
16208
|
+
repeatSequence: number
|
|
16209
|
+
properties: Record<string, string>
|
|
16210
|
+
metadata: Record<string, string>
|
|
16211
|
+
}
|
|
16212
|
+
|
|
16213
|
+
export interface LolObjectivesCapMissionSeriesMissionEligibility {
|
|
16214
|
+
type: string
|
|
16215
|
+
missionCollectionId: string
|
|
16216
|
+
missionId: string
|
|
16217
|
+
startTime: string
|
|
16218
|
+
}
|
|
16219
|
+
|
|
16220
|
+
export interface LolObjectivesCapMissionSeriesMissionObjective {
|
|
16221
|
+
statId: string
|
|
16222
|
+
objectiveId: string
|
|
16223
|
+
/** @format uint32 */
|
|
16224
|
+
goal: number
|
|
16225
|
+
/** @format uint32 */
|
|
16226
|
+
currentValue: number
|
|
16227
|
+
}
|
|
16228
|
+
|
|
16229
|
+
export interface LolObjectivesCapMissionSeriesMissionReward {
|
|
16230
|
+
type: string
|
|
16231
|
+
counterId: string
|
|
16232
|
+
itemId: string
|
|
16233
|
+
itemTypeId: string
|
|
16234
|
+
typeId: string
|
|
16235
|
+
/** @format uint32 */
|
|
16236
|
+
amount: number
|
|
16237
|
+
}
|
|
16238
|
+
|
|
16239
|
+
export interface LolObjectivesCapMissionSeriesMissionRewardsStatus {
|
|
16240
|
+
requiresClaim: boolean
|
|
16241
|
+
status: string
|
|
16242
|
+
rewards: LolObjectivesCapMissionSeriesMissionReward[]
|
|
16243
|
+
}
|
|
16244
|
+
|
|
16245
|
+
export interface LolObjectivesCapMissionsMarkAsViewedPostBody {
|
|
16246
|
+
events: LolObjectivesCapMissionsMarkAsViewedPostBodyEvent[]
|
|
16247
|
+
}
|
|
16248
|
+
|
|
16249
|
+
export interface LolObjectivesCapMissionsMarkAsViewedPostBodyEvent {
|
|
16250
|
+
configurationId: string
|
|
16251
|
+
missions: LolObjectivesCapMissionsMarkAsViewedPostBodyMission[]
|
|
16252
|
+
}
|
|
16253
|
+
|
|
16254
|
+
export interface LolObjectivesCapMissionsMarkAsViewedPostBodyMission {
|
|
16255
|
+
missionInstanceId: string
|
|
16256
|
+
metadata: Record<string, string>
|
|
16257
|
+
}
|
|
16258
|
+
|
|
16259
|
+
export interface LolObjectivesCapMissionsMeResponse {
|
|
16260
|
+
productId: string
|
|
16261
|
+
ownerId: string
|
|
16262
|
+
series: LolObjectivesCapMissionSeries[]
|
|
16263
|
+
}
|
|
16264
|
+
|
|
16265
|
+
export interface LolObjectivesCatalogEntry {
|
|
16266
|
+
contentId: string
|
|
16267
|
+
/** @format int32 */
|
|
16268
|
+
itemId: number
|
|
16269
|
+
offerId: string
|
|
16270
|
+
typeId: string
|
|
16271
|
+
}
|
|
16272
|
+
|
|
15514
16273
|
export interface LolObjectivesCollectionsChampion {
|
|
15515
16274
|
/** @format int32 */
|
|
15516
16275
|
id: number
|
|
@@ -15553,6 +16312,29 @@ export interface LolObjectivesCollectionsWardSkin {
|
|
|
15553
16312
|
ownership: LolObjectivesCollectionsOwnership
|
|
15554
16313
|
}
|
|
15555
16314
|
|
|
16315
|
+
export interface LolObjectivesEventInfoUIData {
|
|
16316
|
+
eventId: string
|
|
16317
|
+
eventName: string
|
|
16318
|
+
eventType: string
|
|
16319
|
+
eventIcon: string
|
|
16320
|
+
navBarIcon: string
|
|
16321
|
+
eventTokenImage: string
|
|
16322
|
+
startDate: string
|
|
16323
|
+
progressEndDate: string
|
|
16324
|
+
endDate: string
|
|
16325
|
+
/** @format int32 */
|
|
16326
|
+
currentTokenBalance: number
|
|
16327
|
+
/** @format int32 */
|
|
16328
|
+
lockedTokenCount: number
|
|
16329
|
+
/** @format int32 */
|
|
16330
|
+
unclaimedRewardCount: number
|
|
16331
|
+
/** @format int64 */
|
|
16332
|
+
timeOfLastUnclaimedReward: number
|
|
16333
|
+
isPassPurchased: boolean
|
|
16334
|
+
eventPassBundles: LolObjectivesCatalogEntry[]
|
|
16335
|
+
tokenBundles: LolObjectivesCatalogEntry[]
|
|
16336
|
+
}
|
|
16337
|
+
|
|
15556
16338
|
export type LolObjectivesGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
15557
16339
|
|
|
15558
16340
|
export interface LolObjectivesGameflowSession {
|
|
@@ -15575,6 +16357,8 @@ export interface LolObjectivesLoginSession {
|
|
|
15575
16357
|
platformId: string
|
|
15576
16358
|
}
|
|
15577
16359
|
|
|
16360
|
+
export type LolObjectivesLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
16361
|
+
|
|
15578
16362
|
export type LolObjectivesLoyaltyStatus = "DISABLED" | "REVOKE" | "CHANGE" | "EXPIRY" | "REWARDS_GRANT" | "LEGACY"
|
|
15579
16363
|
|
|
15580
16364
|
export interface LolObjectivesLoyaltyStatusNotification {
|
|
@@ -15624,12 +16408,15 @@ export interface LolObjectivesNonPooledObjectives {
|
|
|
15624
16408
|
localizedDescription: string
|
|
15625
16409
|
}
|
|
15626
16410
|
|
|
16411
|
+
export type LolObjectivesObjectiveCategoryType = "kTFTPassData" | "kEventHubConfiguration" | "kNonPass"
|
|
16412
|
+
|
|
15627
16413
|
export interface LolObjectivesObjectivesContainer {
|
|
15628
16414
|
pooledObjectives: LolObjectivesPooledObjectives[]
|
|
15629
16415
|
nonPooledObjectives: LolObjectivesNonPooledObjectives[]
|
|
15630
16416
|
}
|
|
15631
16417
|
|
|
15632
16418
|
export interface LolObjectivesObjectivesGroup {
|
|
16419
|
+
id: string
|
|
15633
16420
|
backgroundImage: string
|
|
15634
16421
|
/** @format uint64 */
|
|
15635
16422
|
startDate: number
|
|
@@ -15732,6 +16519,21 @@ export interface LolObjectivesRewardsProductConfig {
|
|
|
15732
16519
|
serviceUrl: string
|
|
15733
16520
|
}
|
|
15734
16521
|
|
|
16522
|
+
export interface LolObjectivesRiotMessagingServiceMessage {
|
|
16523
|
+
resource: string
|
|
16524
|
+
service: string
|
|
16525
|
+
version: string
|
|
16526
|
+
/** @format int64 */
|
|
16527
|
+
timestamp: number
|
|
16528
|
+
payload: string
|
|
16529
|
+
}
|
|
16530
|
+
|
|
16531
|
+
export interface LolObjectivesRiotMessagingServicePayload {
|
|
16532
|
+
deltaEventId: string
|
|
16533
|
+
ownerId: string
|
|
16534
|
+
updatedMissions: string[]
|
|
16535
|
+
}
|
|
16536
|
+
|
|
15735
16537
|
export interface LolObjectivesSelectionStrategyConfig {
|
|
15736
16538
|
/** @format uint32 */
|
|
15737
16539
|
minSelectionsAllowed: number
|
|
@@ -15754,6 +16556,67 @@ export interface LolObjectivesSvcReward {
|
|
|
15754
16556
|
localizations: Record<string, string>
|
|
15755
16557
|
}
|
|
15756
16558
|
|
|
16559
|
+
export interface LolObjectivesTftBattlepass {
|
|
16560
|
+
/** @format int32 */
|
|
16561
|
+
totalPointsEarned: number
|
|
16562
|
+
milestones: LolObjectivesTftBattlepassMilestone[]
|
|
16563
|
+
bonuses: LolObjectivesTftBattlepassMilestone[]
|
|
16564
|
+
activeMilestone: LolObjectivesTftBattlepassMilestone
|
|
16565
|
+
info: LolObjectivesTftBattlepassInfo
|
|
16566
|
+
/** @format int32 */
|
|
16567
|
+
lastViewedProgress: number
|
|
16568
|
+
lastViewedMilestone: LolObjectivesTftBattlepassMilestone
|
|
16569
|
+
/** @format int32 */
|
|
16570
|
+
currentLevel: number
|
|
16571
|
+
}
|
|
16572
|
+
|
|
16573
|
+
export interface LolObjectivesTftBattlepassInfo {
|
|
16574
|
+
title: string
|
|
16575
|
+
description: string
|
|
16576
|
+
/** @format uint64 */
|
|
16577
|
+
startDate: number
|
|
16578
|
+
/** @format uint64 */
|
|
16579
|
+
endDate: number
|
|
16580
|
+
premium: boolean
|
|
16581
|
+
premiumTitle: string
|
|
16582
|
+
premiumEntitlementId: string
|
|
16583
|
+
pcPurchaseRequirement: string
|
|
16584
|
+
passId: string
|
|
16585
|
+
media: Record<string, string>
|
|
16586
|
+
}
|
|
16587
|
+
|
|
16588
|
+
export interface LolObjectivesTftBattlepassMilestone {
|
|
16589
|
+
milestoneId: string
|
|
16590
|
+
title: string
|
|
16591
|
+
description: string
|
|
16592
|
+
status: string
|
|
16593
|
+
/** @format int32 */
|
|
16594
|
+
pointsNeededForMilestone: number
|
|
16595
|
+
/** @format int32 */
|
|
16596
|
+
pointsEarnedForMilestone: number
|
|
16597
|
+
/** @format int32 */
|
|
16598
|
+
totalPointsForMilestone: number
|
|
16599
|
+
/** @format int32 */
|
|
16600
|
+
level: number
|
|
16601
|
+
iconImageUrl: string
|
|
16602
|
+
iconNeedsFrame: boolean
|
|
16603
|
+
rewards: LolObjectivesTftBattlepassReward[]
|
|
16604
|
+
isPaid: boolean
|
|
16605
|
+
isLocked: boolean
|
|
16606
|
+
isKeystone: boolean
|
|
16607
|
+
isBonus: boolean
|
|
16608
|
+
isClaimRequestPending: boolean
|
|
16609
|
+
}
|
|
16610
|
+
|
|
16611
|
+
export interface LolObjectivesTftBattlepassReward {
|
|
16612
|
+
name: string
|
|
16613
|
+
description: string
|
|
16614
|
+
itemId: string
|
|
16615
|
+
itemTypeId: string
|
|
16616
|
+
iconUrl: string
|
|
16617
|
+
iconNeedsFrame: boolean
|
|
16618
|
+
}
|
|
16619
|
+
|
|
15757
16620
|
export interface LolObjectivesTftOrb {
|
|
15758
16621
|
missionId: string
|
|
15759
16622
|
status: string
|
|
@@ -15794,7 +16657,23 @@ export interface LolObjectivesUIObjectives {
|
|
|
15794
16657
|
isPooledMission: boolean
|
|
15795
16658
|
}
|
|
15796
16659
|
|
|
16660
|
+
export interface LolObjectivesUIObjectivesCategory {
|
|
16661
|
+
id: string
|
|
16662
|
+
/** @format uint64 */
|
|
16663
|
+
startDate: number
|
|
16664
|
+
/** @format uint64 */
|
|
16665
|
+
progressEndDate: number
|
|
16666
|
+
/** @format uint64 */
|
|
16667
|
+
endDate: number
|
|
16668
|
+
categorySectionImage: string
|
|
16669
|
+
categoryName: string
|
|
16670
|
+
overrideBackgroundImage: string
|
|
16671
|
+
objectives: LolObjectivesUIObjectives[]
|
|
16672
|
+
categoryType: LolObjectivesObjectiveCategoryType
|
|
16673
|
+
}
|
|
16674
|
+
|
|
15797
16675
|
export interface LolObjectivesUIObjectivesGroup {
|
|
16676
|
+
uuid: string
|
|
15798
16677
|
backgroundImage: string
|
|
15799
16678
|
gameType: string
|
|
15800
16679
|
/** @format uint64 */
|
|
@@ -15803,6 +16682,7 @@ export interface LolObjectivesUIObjectivesGroup {
|
|
|
15803
16682
|
endDate: number
|
|
15804
16683
|
isActive: boolean
|
|
15805
16684
|
objectives: LolObjectivesUIObjectives[]
|
|
16685
|
+
objectivesCategories: LolObjectivesUIObjectivesCategory[]
|
|
15806
16686
|
}
|
|
15807
16687
|
|
|
15808
16688
|
export interface LolObjectivesUserInfo {
|
|
@@ -15967,30 +16847,6 @@ export interface LolPatchUxResource {
|
|
|
15967
16847
|
visible: boolean
|
|
15968
16848
|
}
|
|
15969
16849
|
|
|
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
16850
|
export interface LolPerksChampSelectMySelection {
|
|
15995
16851
|
/** @format int32 */
|
|
15996
16852
|
selectedSkinId?: number
|
|
@@ -15998,8 +16854,6 @@ export interface LolPerksChampSelectMySelection {
|
|
|
15998
16854
|
"spell1Id"?: number
|
|
15999
16855
|
/** @format uint64 */
|
|
16000
16856
|
"spell2Id"?: number
|
|
16001
|
-
/** @format int64 */
|
|
16002
|
-
wardSkinId?: number
|
|
16003
16857
|
}
|
|
16004
16858
|
|
|
16005
16859
|
export interface LolPerksChampSelectPlayerSelection {
|
|
@@ -16009,8 +16863,6 @@ export interface LolPerksChampSelectPlayerSelection {
|
|
|
16009
16863
|
championId: number
|
|
16010
16864
|
/** @format int32 */
|
|
16011
16865
|
selectedSkinId: number
|
|
16012
|
-
/** @format int64 */
|
|
16013
|
-
wardSkinId: number
|
|
16014
16866
|
/** @format uint64 */
|
|
16015
16867
|
"spell1Id": number
|
|
16016
16868
|
/** @format uint64 */
|
|
@@ -16026,15 +16878,9 @@ export interface LolPerksChampSelectPlayerSelection {
|
|
|
16026
16878
|
|
|
16027
16879
|
export interface LolPerksChampSelectSession {
|
|
16028
16880
|
timer: LolPerksChampSelectTimer
|
|
16029
|
-
chatDetails: LolPerksChampSelectChatRoomDetails
|
|
16030
16881
|
myTeam: LolPerksChampSelectPlayerSelection[]
|
|
16031
|
-
theirTeam: LolPerksChampSelectPlayerSelection[]
|
|
16032
|
-
trades: LolPerksChampSelectTradeContract[]
|
|
16033
|
-
actions: unknown[]
|
|
16034
|
-
bans: LolPerksChampSelectBannedChampions
|
|
16035
16882
|
/** @format int64 */
|
|
16036
16883
|
localPlayerCellId: number
|
|
16037
|
-
isSpectating: boolean
|
|
16038
16884
|
}
|
|
16039
16885
|
|
|
16040
16886
|
export interface LolPerksChampSelectTimer {
|
|
@@ -16048,16 +16894,6 @@ export interface LolPerksChampSelectTimer {
|
|
|
16048
16894
|
internalNowInEpochMs: number
|
|
16049
16895
|
}
|
|
16050
16896
|
|
|
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
16897
|
export interface LolPerksChampionPreferredStyle {
|
|
16062
16898
|
championName: string
|
|
16063
16899
|
/** @format int32 */
|
|
@@ -16134,13 +16970,6 @@ export interface LolPerksLoginSession {
|
|
|
16134
16970
|
|
|
16135
16971
|
export type LolPerksLoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
16136
16972
|
|
|
16137
|
-
export interface LolPerksMucJwtDto {
|
|
16138
|
-
jwt: string
|
|
16139
|
-
channelClaim: string
|
|
16140
|
-
domain: string
|
|
16141
|
-
targetRegion: string
|
|
16142
|
-
}
|
|
16143
|
-
|
|
16144
16973
|
export interface LolPerksNamecheckAuthorization {
|
|
16145
16974
|
subject: string
|
|
16146
16975
|
}
|
|
@@ -17885,28 +18714,6 @@ export interface LolRankedEosNotificationsConfigEntry {
|
|
|
17885
18714
|
"offsetTime3": number
|
|
17886
18715
|
}
|
|
17887
18716
|
|
|
17888
|
-
export interface LolRankedEosRewardData {
|
|
17889
|
-
id: string
|
|
17890
|
-
type: string
|
|
17891
|
-
overrideImagePath: string
|
|
17892
|
-
}
|
|
17893
|
-
|
|
17894
|
-
export interface LolRankedEosRewardGroupsConfig {
|
|
17895
|
-
rewardGroups: Record<string, LolRankedEosRewardGroupsRewardsList>
|
|
17896
|
-
}
|
|
17897
|
-
|
|
17898
|
-
export interface LolRankedEosRewardGroupsRewardsList {
|
|
17899
|
-
rewards: string[]
|
|
17900
|
-
}
|
|
17901
|
-
|
|
17902
|
-
export interface LolRankedEosRewardsConfig {
|
|
17903
|
-
seasons: Record<string, LolRankedEosRewardsConfigEntry>
|
|
17904
|
-
}
|
|
17905
|
-
|
|
17906
|
-
export interface LolRankedEosRewardsConfigEntry {
|
|
17907
|
-
rewards: Record<string, LolRankedEosRewardData>
|
|
17908
|
-
}
|
|
17909
|
-
|
|
17910
18717
|
export interface LolRankedEosSettingsData {
|
|
17911
18718
|
notificationShown: boolean
|
|
17912
18719
|
}
|
|
@@ -17970,8 +18777,10 @@ export interface LolRankedLcuLeagueNotification {
|
|
|
17970
18777
|
timeUntilInactivityStatusChanges: number
|
|
17971
18778
|
rewardEarnedId: string
|
|
17972
18779
|
rewardEarnedType: string
|
|
18780
|
+
rewardEarnedTitle: string
|
|
18781
|
+
rewardEarnedDescription: string
|
|
18782
|
+
rewardEarnedTier: string
|
|
17973
18783
|
rewardOverrideImagePath: string
|
|
17974
|
-
splitPointsNotification?: LolRankedSplitPointsNotification
|
|
17975
18784
|
promoSeriesForRanksEnabled: boolean
|
|
17976
18785
|
/** @format int32 */
|
|
17977
18786
|
consolationLpUsed: number
|
|
@@ -18160,6 +18969,32 @@ export interface LolRankedLoginSession {
|
|
|
18160
18969
|
|
|
18161
18970
|
export type LolRankedLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
18162
18971
|
|
|
18972
|
+
export interface LolRankedLolEosRewardGameData {
|
|
18973
|
+
id: string
|
|
18974
|
+
name: string
|
|
18975
|
+
title: string
|
|
18976
|
+
description: string
|
|
18977
|
+
tier: LolRankedLolEosRewardTier
|
|
18978
|
+
type: LolRankedLolEosRewardType
|
|
18979
|
+
overrideImagePath: string
|
|
18980
|
+
}
|
|
18981
|
+
|
|
18982
|
+
export interface LolRankedLolEosRewardGroupGameData {
|
|
18983
|
+
id: string
|
|
18984
|
+
rewardNames: string[]
|
|
18985
|
+
}
|
|
18986
|
+
|
|
18987
|
+
export type LolRankedLolEosRewardTier = "kChallenger" | "kGrandmaster" | "kMaster" | "kDiamond" | "kEmerald" | "kPlatinum" | "kGold" | "kSilver" | "kBronze" | "kIron" | "kNone"
|
|
18988
|
+
|
|
18989
|
+
export type LolRankedLolEosRewardType = "kEmote" | "kSummonerIcon" | "kVictoriousSkinBorder" | "kVictoriousChroma" | "kVictoriousSkin" | "kChampion" | "kEternalsCapsule" | "kNone"
|
|
18990
|
+
|
|
18991
|
+
export interface LolRankedLolEosRewardsConfigGameData {
|
|
18992
|
+
/** @format int64 */
|
|
18993
|
+
seasonId: number
|
|
18994
|
+
rewards: LolRankedLolEosRewardGameData[]
|
|
18995
|
+
rewardGroups: LolRankedLolEosRewardGroupGameData[]
|
|
18996
|
+
}
|
|
18997
|
+
|
|
18163
18998
|
export type LolRankedMiniseries = "N" | "L" | "W"
|
|
18164
18999
|
|
|
18165
19000
|
export type LolRankedNotificationDisplayType = "VIGNETTE" | "MODAL" | "TOAST" | "NONE"
|
|
@@ -18329,20 +19164,10 @@ export type LolRankedRatedTier = "ORANGE" | "PURPLE" | "BLUE" | "GREEN" | "GRAY"
|
|
|
18329
19164
|
|
|
18330
19165
|
export interface LolRankedRewardNotification {
|
|
18331
19166
|
rewardGroupId: string
|
|
18332
|
-
/** @format
|
|
19167
|
+
/** @format int64 */
|
|
18333
19168
|
seasonId: number
|
|
18334
19169
|
}
|
|
18335
19170
|
|
|
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
19171
|
export interface LolRankedSeasonDTO {
|
|
18347
19172
|
/** @format int32 */
|
|
18348
19173
|
currentSeasonId: number
|
|
@@ -18352,32 +19177,6 @@ export interface LolRankedSeasonDTO {
|
|
|
18352
19177
|
nextSeasonStart: number
|
|
18353
19178
|
}
|
|
18354
19179
|
|
|
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
19180
|
export interface LolRankedSequenceEvent {
|
|
18382
19181
|
name: string
|
|
18383
19182
|
/** @format int32 */
|
|
@@ -18441,65 +19240,6 @@ export interface LolRankedSocialLeaderboardRankedQueueStatsDTO {
|
|
|
18441
19240
|
losses: number
|
|
18442
19241
|
}
|
|
18443
19242
|
|
|
18444
|
-
export interface LolRankedSplitPointsNotification {
|
|
18445
|
-
/** @format int32 */
|
|
18446
|
-
splitPointsDelta: number
|
|
18447
|
-
/** @format int32 */
|
|
18448
|
-
splitPointsBeforeGame: number
|
|
18449
|
-
/** @format int32 */
|
|
18450
|
-
splitPointsAfterGame: number
|
|
18451
|
-
/** @format int32 */
|
|
18452
|
-
previousSplitPointsRequired: number
|
|
18453
|
-
/** @format int32 */
|
|
18454
|
-
splitPointsRequired: number
|
|
18455
|
-
nextRewardId: string
|
|
18456
|
-
nextRewardType: string
|
|
18457
|
-
splitPointsBreakdown: Record<string, number>
|
|
18458
|
-
}
|
|
18459
|
-
|
|
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
19243
|
export interface LolRankedSummoner {
|
|
18504
19244
|
/** @format uint64 */
|
|
18505
19245
|
summonerId: number
|
|
@@ -18511,11 +19251,6 @@ export interface LolRankedVictoriousSkin {
|
|
|
18511
19251
|
itemInstanceId: string
|
|
18512
19252
|
}
|
|
18513
19253
|
|
|
18514
|
-
export interface LolRankedVictoriousSkinDTO {
|
|
18515
|
-
splitPointsByHighestSeasonEndTier: Record<string, number>
|
|
18516
|
-
itemInstanceId: string
|
|
18517
|
-
}
|
|
18518
|
-
|
|
18519
19254
|
export interface LolRegaliaAccountIdAndSummonerId {
|
|
18520
19255
|
/** @format uint64 */
|
|
18521
19256
|
summonerId?: number
|
|
@@ -21379,6 +22114,123 @@ export interface LolTftDataModelResponse {
|
|
|
21379
22114
|
modelData: unknown
|
|
21380
22115
|
}
|
|
21381
22116
|
|
|
22117
|
+
export interface LolTftEventCAPMission {
|
|
22118
|
+
missionId: string
|
|
22119
|
+
title: string
|
|
22120
|
+
description: string
|
|
22121
|
+
missionIconAsset: LolTftEventMissionAsset
|
|
22122
|
+
rewards: LolTftEventCAPMissionReward[]
|
|
22123
|
+
objectives: LolTftEventCAPMissionObjective[]
|
|
22124
|
+
}
|
|
22125
|
+
|
|
22126
|
+
export interface LolTftEventCAPMissionCollection {
|
|
22127
|
+
missionCollectionId: string
|
|
22128
|
+
dates: LolTftEventCAPMissionCollectionDates
|
|
22129
|
+
seriesList: LolTftEventCAPMissionSeries[]
|
|
22130
|
+
}
|
|
22131
|
+
|
|
22132
|
+
export interface LolTftEventCAPMissionCollectionDateRange {
|
|
22133
|
+
/** @format uint64 */
|
|
22134
|
+
activationTimeEpoch: number
|
|
22135
|
+
/** @format uint64 */
|
|
22136
|
+
deactivationTimeEpoch: number
|
|
22137
|
+
}
|
|
22138
|
+
|
|
22139
|
+
export interface LolTftEventCAPMissionCollectionDates {
|
|
22140
|
+
live: LolTftEventCAPMissionCollectionDateRange
|
|
22141
|
+
pbe: LolTftEventCAPMissionCollectionDateRange
|
|
22142
|
+
internal: LolTftEventCAPMissionCollectionDateRange
|
|
22143
|
+
}
|
|
22144
|
+
|
|
22145
|
+
export interface LolTftEventCAPMissionObjective {
|
|
22146
|
+
statId: string
|
|
22147
|
+
description: string
|
|
22148
|
+
}
|
|
22149
|
+
|
|
22150
|
+
export interface LolTftEventCAPMissionReward {
|
|
22151
|
+
itemId: string
|
|
22152
|
+
rewardName: string
|
|
22153
|
+
/** @format uint32 */
|
|
22154
|
+
quantity: number
|
|
22155
|
+
rewardAsset: LolTftEventMissionAsset
|
|
22156
|
+
}
|
|
22157
|
+
|
|
22158
|
+
export interface LolTftEventCAPMissionSeries {
|
|
22159
|
+
seriesId: string
|
|
22160
|
+
seriesTitle: string
|
|
22161
|
+
seriesIconAsset: LolTftEventMissionAsset
|
|
22162
|
+
missions: LolTftEventCAPMission[]
|
|
22163
|
+
}
|
|
22164
|
+
|
|
22165
|
+
export interface LolTftEventCapMissionSeriesMission {
|
|
22166
|
+
name: string
|
|
22167
|
+
missionId: string
|
|
22168
|
+
expression: string
|
|
22169
|
+
missionCollectionId: string
|
|
22170
|
+
status: string
|
|
22171
|
+
completedTimeUtc: string
|
|
22172
|
+
missionInstanceId: string
|
|
22173
|
+
objectives: LolTftEventCapMissionSeriesMissionObjective[]
|
|
22174
|
+
eligibility: LolTftEventCapMissionSeriesMissionEligibility[]
|
|
22175
|
+
rewardsStatus: LolTftEventCapMissionSeriesMissionRewardsStatus
|
|
22176
|
+
/** @format uint32 */
|
|
22177
|
+
repeatSequence: number
|
|
22178
|
+
properties: Record<string, string>
|
|
22179
|
+
metadata: Record<string, string>
|
|
22180
|
+
}
|
|
22181
|
+
|
|
22182
|
+
export interface LolTftEventCapMissionSeriesMissionEligibility {
|
|
22183
|
+
type: string
|
|
22184
|
+
missionCollectionId: string
|
|
22185
|
+
missionId: string
|
|
22186
|
+
startTime: string
|
|
22187
|
+
}
|
|
22188
|
+
|
|
22189
|
+
export interface LolTftEventCapMissionSeriesMissionObjective {
|
|
22190
|
+
statId: string
|
|
22191
|
+
objectiveId: string
|
|
22192
|
+
/** @format uint32 */
|
|
22193
|
+
goal: number
|
|
22194
|
+
/** @format uint32 */
|
|
22195
|
+
currentValue: number
|
|
22196
|
+
}
|
|
22197
|
+
|
|
22198
|
+
export interface LolTftEventCapMissionSeriesMissionReward {
|
|
22199
|
+
type: string
|
|
22200
|
+
counterId: string
|
|
22201
|
+
itemId: string
|
|
22202
|
+
itemTypeId: string
|
|
22203
|
+
typeId: string
|
|
22204
|
+
/** @format uint32 */
|
|
22205
|
+
amount: number
|
|
22206
|
+
}
|
|
22207
|
+
|
|
22208
|
+
export interface LolTftEventCapMissionSeriesMissionRewardsStatus {
|
|
22209
|
+
requiresClaim: boolean
|
|
22210
|
+
status: string
|
|
22211
|
+
rewards: LolTftEventCapMissionSeriesMissionReward[]
|
|
22212
|
+
}
|
|
22213
|
+
|
|
22214
|
+
export interface LolTftEventCapMissionsMarkAsViewedPostBody {
|
|
22215
|
+
events: LolTftEventCapMissionsMarkAsViewedPostBodyEvent[]
|
|
22216
|
+
}
|
|
22217
|
+
|
|
22218
|
+
export interface LolTftEventCapMissionsMarkAsViewedPostBodyEvent {
|
|
22219
|
+
configurationId: string
|
|
22220
|
+
missions: LolTftEventCapMissionsMarkAsViewedPostBodyMission[]
|
|
22221
|
+
}
|
|
22222
|
+
|
|
22223
|
+
export interface LolTftEventCapMissionsMarkAsViewedPostBodyMission {
|
|
22224
|
+
missionInstanceId: string
|
|
22225
|
+
metadata: Record<string, string>
|
|
22226
|
+
}
|
|
22227
|
+
|
|
22228
|
+
export interface LolTftEventCapMissionsMeResponse {
|
|
22229
|
+
productId: string
|
|
22230
|
+
ownerId: string
|
|
22231
|
+
series: LolTftEventCapMissionSeries[]
|
|
22232
|
+
}
|
|
22233
|
+
|
|
21382
22234
|
export interface LolTftEventCollectionsChampion {
|
|
21383
22235
|
/** @format int32 */
|
|
21384
22236
|
id: number
|
|
@@ -21455,6 +22307,8 @@ export interface LolTftEventLoginSession {
|
|
|
21455
22307
|
platformId: string
|
|
21456
22308
|
}
|
|
21457
22309
|
|
|
22310
|
+
export type LolTftEventLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
22311
|
+
|
|
21458
22312
|
export interface LolTftEventLolTftBackgrounds {
|
|
21459
22313
|
backgrounds: Record<string, string>
|
|
21460
22314
|
}
|
|
@@ -21465,6 +22319,7 @@ export interface LolTftEventLolTftBattlePassHub {
|
|
|
21465
22319
|
|
|
21466
22320
|
export interface LolTftEventLolTftEvent {
|
|
21467
22321
|
titleTranslationKey: string
|
|
22322
|
+
eventId: string
|
|
21468
22323
|
enabled: boolean
|
|
21469
22324
|
url: string
|
|
21470
22325
|
urlFaq: string
|
|
@@ -21476,6 +22331,8 @@ export interface LolTftEventLolTftEvent {
|
|
|
21476
22331
|
defaultLandingPage: boolean
|
|
21477
22332
|
eventHubAssetKey: string
|
|
21478
22333
|
eventHubTemplateType: string
|
|
22334
|
+
eventPassId: string
|
|
22335
|
+
skillTreePassId: string
|
|
21479
22336
|
eventFuture: boolean
|
|
21480
22337
|
weblinkSubnavs: LolTftEventLolTftEventWebLinkSubnav[]
|
|
21481
22338
|
}
|
|
@@ -21500,6 +22357,7 @@ export interface LolTftEventLolTftHomeHub {
|
|
|
21500
22357
|
primeGamingPromoOffer?: LolTftEventLolTftPrimeGaming
|
|
21501
22358
|
overrideUrl: string
|
|
21502
22359
|
headerButtonsOverrideUrl: string
|
|
22360
|
+
rotatingShopPromos: LolTftEventTFTRotatingShopPromos
|
|
21503
22361
|
}
|
|
21504
22362
|
|
|
21505
22363
|
export interface LolTftEventLolTftNewsHub {
|
|
@@ -21644,6 +22502,21 @@ export interface LolTftEventRewardsProductConfig {
|
|
|
21644
22502
|
serviceUrl: string
|
|
21645
22503
|
}
|
|
21646
22504
|
|
|
22505
|
+
export interface LolTftEventRiotMessagingServiceMessage {
|
|
22506
|
+
resource: string
|
|
22507
|
+
service: string
|
|
22508
|
+
version: string
|
|
22509
|
+
/** @format int64 */
|
|
22510
|
+
timestamp: number
|
|
22511
|
+
payload: string
|
|
22512
|
+
}
|
|
22513
|
+
|
|
22514
|
+
export interface LolTftEventRiotMessagingServicePayload {
|
|
22515
|
+
deltaEventId: string
|
|
22516
|
+
ownerId: string
|
|
22517
|
+
updatedMissions: string[]
|
|
22518
|
+
}
|
|
22519
|
+
|
|
21647
22520
|
export interface LolTftEventSelectionStrategyConfig {
|
|
21648
22521
|
/** @format uint32 */
|
|
21649
22522
|
minSelectionsAllowed: number
|
|
@@ -21678,6 +22551,23 @@ export interface LolTftEventTFTEventMissionChain {
|
|
|
21678
22551
|
missions: PlayerMissionDTO[]
|
|
21679
22552
|
}
|
|
21680
22553
|
|
|
22554
|
+
export interface LolTftEventTFTEventMissionChains {
|
|
22555
|
+
missionChains: LolTftEventTFTEventMissionChain[]
|
|
22556
|
+
seriesId: string
|
|
22557
|
+
}
|
|
22558
|
+
|
|
22559
|
+
export interface LolTftEventTFTRotatingShopPromo {
|
|
22560
|
+
id: string
|
|
22561
|
+
bundleId: string
|
|
22562
|
+
storeType: string
|
|
22563
|
+
}
|
|
22564
|
+
|
|
22565
|
+
export interface LolTftEventTFTRotatingShopPromos {
|
|
22566
|
+
firstPromos: LolTftEventTFTRotatingShopPromo[]
|
|
22567
|
+
secondPromos: LolTftEventTFTRotatingShopPromo[]
|
|
22568
|
+
fallbackPromo: LolTftEventTFTRotatingShopPromo
|
|
22569
|
+
}
|
|
22570
|
+
|
|
21681
22571
|
export interface LolTftEventTftOrb {
|
|
21682
22572
|
missionId: string
|
|
21683
22573
|
status: string
|
|
@@ -21719,6 +22609,7 @@ export interface LolTftLolTftBattlePassHub {
|
|
|
21719
22609
|
|
|
21720
22610
|
export interface LolTftLolTftEvent {
|
|
21721
22611
|
titleTranslationKey: string
|
|
22612
|
+
eventId: string
|
|
21722
22613
|
enabled: boolean
|
|
21723
22614
|
url: string
|
|
21724
22615
|
urlFaq: string
|
|
@@ -21730,6 +22621,8 @@ export interface LolTftLolTftEvent {
|
|
|
21730
22621
|
defaultLandingPage: boolean
|
|
21731
22622
|
eventHubAssetKey: string
|
|
21732
22623
|
eventHubTemplateType: string
|
|
22624
|
+
eventPassId: string
|
|
22625
|
+
skillTreePassId: string
|
|
21733
22626
|
eventFuture: boolean
|
|
21734
22627
|
weblinkSubnavs: LolTftLolTftEventWebLinkSubnav[]
|
|
21735
22628
|
}
|
|
@@ -21754,6 +22647,7 @@ export interface LolTftLolTftHomeHub {
|
|
|
21754
22647
|
primeGamingPromoOffer?: LolTftLolTftPrimeGaming
|
|
21755
22648
|
overrideUrl: string
|
|
21756
22649
|
headerButtonsOverrideUrl: string
|
|
22650
|
+
rotatingShopPromos: LolTftTFTRotatingShopPromos
|
|
21757
22651
|
}
|
|
21758
22652
|
|
|
21759
22653
|
export interface LolTftLolTftNewsHub {
|
|
@@ -21887,6 +22781,7 @@ export interface LolTftPassInventoryItem {
|
|
|
21887
22781
|
/** @format uint64 */
|
|
21888
22782
|
quantity: number
|
|
21889
22783
|
ownershipType: LolTftPassItemOwnershipType
|
|
22784
|
+
usedInGameDate: string
|
|
21890
22785
|
expirationDate: string
|
|
21891
22786
|
/** @format uint64 */
|
|
21892
22787
|
wins: number
|
|
@@ -21926,6 +22821,7 @@ export interface LolTftPassInventoryItemWithPayload {
|
|
|
21926
22821
|
/** @format uint64 */
|
|
21927
22822
|
quantity: number
|
|
21928
22823
|
ownershipType: LolTftPassItemOwnershipType
|
|
22824
|
+
usedInGameDate: string
|
|
21929
22825
|
expirationDate: string
|
|
21930
22826
|
"f2p": boolean
|
|
21931
22827
|
rental: boolean
|
|
@@ -21971,6 +22867,11 @@ export interface LolTftPassLoginSession {
|
|
|
21971
22867
|
|
|
21972
22868
|
export type LolTftPassLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
21973
22869
|
|
|
22870
|
+
export interface LolTftPassLolInventoryType {
|
|
22871
|
+
inventoryTypeId: string
|
|
22872
|
+
capInventoryTypeId: string
|
|
22873
|
+
}
|
|
22874
|
+
|
|
21974
22875
|
export interface LolTftPassLoyaltyRewards {
|
|
21975
22876
|
/** @format int32 */
|
|
21976
22877
|
freeRewardedChampionsCount: number
|
|
@@ -22168,7 +23069,7 @@ export interface LolTftPassTFTPassDTO {
|
|
|
22168
23069
|
premiumTitle: string
|
|
22169
23070
|
description: string
|
|
22170
23071
|
/** @format int64 */
|
|
22171
|
-
|
|
23072
|
+
activationTimeMS: number
|
|
22172
23073
|
/** @format int64 */
|
|
22173
23074
|
deactivationTimeMS: number
|
|
22174
23075
|
assetID: string
|
|
@@ -22624,6 +23525,18 @@ export interface LolTftSkillTreeUpdateLoadoutRequestDTO {
|
|
|
22624
23525
|
loadout: LolTftSkillTreeUpdateLoadoutDTO
|
|
22625
23526
|
}
|
|
22626
23527
|
|
|
23528
|
+
export interface LolTftTFTRotatingShopPromo {
|
|
23529
|
+
id: string
|
|
23530
|
+
bundleId: string
|
|
23531
|
+
storeType: string
|
|
23532
|
+
}
|
|
23533
|
+
|
|
23534
|
+
export interface LolTftTFTRotatingShopPromos {
|
|
23535
|
+
firstPromos: LolTftTFTRotatingShopPromo[]
|
|
23536
|
+
secondPromos: LolTftTFTRotatingShopPromo[]
|
|
23537
|
+
fallbackPromo: LolTftTFTRotatingShopPromo
|
|
23538
|
+
}
|
|
23539
|
+
|
|
22627
23540
|
export interface LolTftTeamPlannerChampion {
|
|
22628
23541
|
championId: string
|
|
22629
23542
|
}
|
|
@@ -22781,7 +23694,6 @@ export interface LolTftTrovesCapDropsDropTableDisplayMetadata {
|
|
|
22781
23694
|
isCollectorsBounty: boolean
|
|
22782
23695
|
dataAssetId: string
|
|
22783
23696
|
nameTraKey: string
|
|
22784
|
-
mythicOfferId: string
|
|
22785
23697
|
progressionId: string
|
|
22786
23698
|
/** @format uint8 */
|
|
22787
23699
|
priority: number
|
|
@@ -22900,7 +23812,6 @@ export interface LolTftTrovesGameDataTrovesBanner {
|
|
|
22900
23812
|
id: string
|
|
22901
23813
|
activationTime: string
|
|
22902
23814
|
deactivationTime: string
|
|
22903
|
-
mythicTokenOfferId: string
|
|
22904
23815
|
/** @format uint32 */
|
|
22905
23816
|
pityThreshold: number
|
|
22906
23817
|
bannerTexture: string
|
|
@@ -23122,7 +24033,6 @@ export interface LolTftTrovesTrovesBanner {
|
|
|
23122
24033
|
/** @format uint32 */
|
|
23123
24034
|
pityLimit: number
|
|
23124
24035
|
rollOffer: string
|
|
23125
|
-
mythicOffer: string
|
|
23126
24036
|
bannerTexture: string
|
|
23127
24037
|
thumbnailTexture: string
|
|
23128
24038
|
backgroundTexture: string
|
|
@@ -23154,8 +24064,6 @@ export interface LolTftTrovesTrovesCelebrationHighlightSegmentData {
|
|
|
23154
24064
|
lottieJsonPath: string
|
|
23155
24065
|
revealSoundPath: string
|
|
23156
24066
|
transitionWipeSoundPath: string
|
|
23157
|
-
promiseTokenTitle: string
|
|
23158
|
-
promiseTokenDescription: string
|
|
23159
24067
|
}
|
|
23160
24068
|
|
|
23161
24069
|
export interface LolTftTrovesTrovesCelebrationPortalSegmentData {
|
|
@@ -23533,6 +24441,7 @@ export interface LolYourshopInventoryItem {
|
|
|
23533
24441
|
/** @format uint64 */
|
|
23534
24442
|
quantity: number
|
|
23535
24443
|
ownershipType: LolYourshopItemOwnershipType
|
|
24444
|
+
usedInGameDate: string
|
|
23536
24445
|
expirationDate: string
|
|
23537
24446
|
/** @format uint64 */
|
|
23538
24447
|
wins: number
|
|
@@ -23572,6 +24481,7 @@ export interface LolYourshopInventoryItemWithPayload {
|
|
|
23572
24481
|
/** @format uint64 */
|
|
23573
24482
|
quantity: number
|
|
23574
24483
|
ownershipType: LolYourshopItemOwnershipType
|
|
24484
|
+
usedInGameDate: string
|
|
23575
24485
|
expirationDate: string
|
|
23576
24486
|
"f2p": boolean
|
|
23577
24487
|
rental: boolean
|
|
@@ -23617,6 +24527,11 @@ export interface LolYourshopLoginSession {
|
|
|
23617
24527
|
|
|
23618
24528
|
export type LolYourshopLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
23619
24529
|
|
|
24530
|
+
export interface LolYourshopLolInventoryType {
|
|
24531
|
+
inventoryTypeId: string
|
|
24532
|
+
capInventoryTypeId: string
|
|
24533
|
+
}
|
|
24534
|
+
|
|
23620
24535
|
export interface LolYourshopLoyaltyRewards {
|
|
23621
24536
|
/** @format int32 */
|
|
23622
24537
|
freeRewardedChampionsCount: number
|
|
@@ -24400,6 +25315,7 @@ export interface PaymentsPMCStartUrlRequest {
|
|
|
24400
25315
|
/** @format int16 */
|
|
24401
25316
|
minVirtualAmount: number
|
|
24402
25317
|
orderDetailsJSON: string
|
|
25318
|
+
machineId: string
|
|
24403
25319
|
}
|
|
24404
25320
|
|
|
24405
25321
|
export interface PaymentsPMCStartUrlResult {
|