@hasagi/types 14.7.1 → 14.11.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/lcu-endpoints.d.ts +84 -92
- package/lcu-events.d.ts +18 -11
- package/lcu-types.d.ts +678 -1643
- package/package.json +4 -4
package/lcu-types.d.ts
CHANGED
|
@@ -985,6 +985,7 @@ export interface LcdsBotParticipant {
|
|
|
985
985
|
summonerInternalName: string
|
|
986
986
|
/** @format int32 */
|
|
987
987
|
botSkillLevel: number
|
|
988
|
+
position: string
|
|
988
989
|
teamId: string
|
|
989
990
|
}
|
|
990
991
|
|
|
@@ -1155,6 +1156,7 @@ export interface LcdsPlayerParticipant {
|
|
|
1155
1156
|
summonerInternalName: string
|
|
1156
1157
|
/** @format int32 */
|
|
1157
1158
|
botSkillLevel: number
|
|
1159
|
+
position: string
|
|
1158
1160
|
}
|
|
1159
1161
|
|
|
1160
1162
|
export interface LcdsPracticeGameConfig {
|
|
@@ -2578,8 +2580,8 @@ export interface LolChampSelectChampionSkinAugment {
|
|
|
2578
2580
|
|
|
2579
2581
|
export interface LolChampSelectChampionSkinAugmentOverlays {
|
|
2580
2582
|
centeredLCOverlayPath: string
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
+
socialCardLCOverlayPath: string
|
|
2584
|
+
tileLCOverlayPath: string
|
|
2583
2585
|
uncenteredLCOverlayPath: string
|
|
2584
2586
|
}
|
|
2585
2587
|
|
|
@@ -3059,6 +3061,186 @@ export interface LolChampSelectTeamBoost {
|
|
|
3059
3061
|
unlocked: boolean
|
|
3060
3062
|
}
|
|
3061
3063
|
|
|
3064
|
+
export interface LolChampionMasteryAllChampionMasterySetReward {
|
|
3065
|
+
championMasteries: LolChampionMasteryChampionMastery[]
|
|
3066
|
+
championSet: LolChampionMasteryChampionSet
|
|
3067
|
+
championSetRewards: Record<string, LolChampionMasterySetRewardEntry>
|
|
3068
|
+
seasonMilestoneRequireAndRewards: Record<string, LolChampionMasterySeasonMilestoneRequireAndRewards>
|
|
3069
|
+
newChampionNextLevel: LolChampionMasteryLevelMark
|
|
3070
|
+
/** @format int32 */
|
|
3071
|
+
totalScore: number
|
|
3072
|
+
}
|
|
3073
|
+
|
|
3074
|
+
export interface LolChampionMasteryChampionMastery {
|
|
3075
|
+
puuid: string
|
|
3076
|
+
/** @format int32 */
|
|
3077
|
+
championId: number
|
|
3078
|
+
/** @format int32 */
|
|
3079
|
+
championLevel: number
|
|
3080
|
+
/** @format int32 */
|
|
3081
|
+
championPoints: number
|
|
3082
|
+
/** @format uint64 */
|
|
3083
|
+
lastPlayTime: number
|
|
3084
|
+
/** @format int32 */
|
|
3085
|
+
championPointsSinceLastLevel: number
|
|
3086
|
+
/** @format int32 */
|
|
3087
|
+
championPointsUntilNextLevel: number
|
|
3088
|
+
/** @format int32 */
|
|
3089
|
+
markRequiredForNextLevel: number
|
|
3090
|
+
chestGranted: boolean
|
|
3091
|
+
/** @format int32 */
|
|
3092
|
+
tokensEarned: number
|
|
3093
|
+
/** @format int32 */
|
|
3094
|
+
championSeasonMilestone: number
|
|
3095
|
+
milestoneGrades: string[]
|
|
3096
|
+
nextSeasonMilestone: LolChampionMasterySeasonMilestoneRequireAndRewards
|
|
3097
|
+
highestGrade: string
|
|
3098
|
+
}
|
|
3099
|
+
|
|
3100
|
+
export interface LolChampionMasteryChampionMasteryChangeNotification {
|
|
3101
|
+
/** @format int64 */
|
|
3102
|
+
gameId: number
|
|
3103
|
+
puuid: string
|
|
3104
|
+
/** @format int32 */
|
|
3105
|
+
championId: number
|
|
3106
|
+
/** @format int32 */
|
|
3107
|
+
championLevel: number
|
|
3108
|
+
/** @format int32 */
|
|
3109
|
+
championPointsBeforeGame: number
|
|
3110
|
+
/** @format int32 */
|
|
3111
|
+
championPointsGained: number
|
|
3112
|
+
/** @format int32 */
|
|
3113
|
+
championPointsGainedIndividualContribution: number
|
|
3114
|
+
/** @format int32 */
|
|
3115
|
+
bonusChampionPointsGained: number
|
|
3116
|
+
playerGrade: string
|
|
3117
|
+
/** @format int32 */
|
|
3118
|
+
championPointsSinceLastLevelBeforeGame: number
|
|
3119
|
+
/** @format int32 */
|
|
3120
|
+
championPointsUntilNextLevelBeforeGame: number
|
|
3121
|
+
/** @format int32 */
|
|
3122
|
+
championPointsUntilNextLevelAfterGame: number
|
|
3123
|
+
championLevelUp: boolean
|
|
3124
|
+
/** @format int32 */
|
|
3125
|
+
score: number
|
|
3126
|
+
levelUpList: LolChampionMasteryChampionMasteryMini[]
|
|
3127
|
+
memberGrades: LolChampionMasteryChampionMasteryGrade[]
|
|
3128
|
+
win: boolean
|
|
3129
|
+
/** @format int32 */
|
|
3130
|
+
mapId: number
|
|
3131
|
+
/** @format int32 */
|
|
3132
|
+
tokensEarned: number
|
|
3133
|
+
tokenEarnedAfterGame: boolean
|
|
3134
|
+
/** @format int32 */
|
|
3135
|
+
markRequiredForNextLevel: number
|
|
3136
|
+
/** @format int32 */
|
|
3137
|
+
championSeasonMilestone: number
|
|
3138
|
+
championSeasonMilestoneUp: boolean
|
|
3139
|
+
milestoneGrades: string[]
|
|
3140
|
+
seasonMilestone: LolChampionMasterySeasonMilestoneRequireAndRewards
|
|
3141
|
+
}
|
|
3142
|
+
|
|
3143
|
+
export interface LolChampionMasteryChampionMasteryGrade {
|
|
3144
|
+
puuid: string
|
|
3145
|
+
/** @format int32 */
|
|
3146
|
+
championId: number
|
|
3147
|
+
grade: string
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
export interface LolChampionMasteryChampionMasteryMini {
|
|
3151
|
+
puuid: string
|
|
3152
|
+
/** @format int32 */
|
|
3153
|
+
championId: number
|
|
3154
|
+
/** @format int32 */
|
|
3155
|
+
championLevel: number
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3158
|
+
export interface LolChampionMasteryChampionMasteryRewardGrantNotification {
|
|
3159
|
+
id: string
|
|
3160
|
+
/** @format int64 */
|
|
3161
|
+
gameId: number
|
|
3162
|
+
puuid: string
|
|
3163
|
+
/** @format int32 */
|
|
3164
|
+
championId: number
|
|
3165
|
+
playerGrade: string
|
|
3166
|
+
messageKey: string
|
|
3167
|
+
}
|
|
3168
|
+
|
|
3169
|
+
export interface LolChampionMasteryChampionSet {
|
|
3170
|
+
champions: number[]
|
|
3171
|
+
/** @format int32 */
|
|
3172
|
+
totalMilestone: number
|
|
3173
|
+
completed: boolean
|
|
3174
|
+
}
|
|
3175
|
+
|
|
3176
|
+
export interface LolChampionMasteryLevelMark {
|
|
3177
|
+
/** @format int32 */
|
|
3178
|
+
level: number
|
|
3179
|
+
/** @format int32 */
|
|
3180
|
+
championPoints: number
|
|
3181
|
+
/** @format int32 */
|
|
3182
|
+
marks: number
|
|
3183
|
+
}
|
|
3184
|
+
|
|
3185
|
+
export interface LolChampionMasteryLoginSession {
|
|
3186
|
+
state: LolChampionMasteryLoginSessionStates
|
|
3187
|
+
/** @format uint64 */
|
|
3188
|
+
summonerId: number
|
|
3189
|
+
puuid: string
|
|
3190
|
+
connected: boolean
|
|
3191
|
+
}
|
|
3192
|
+
|
|
3193
|
+
export type LolChampionMasteryLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
3194
|
+
|
|
3195
|
+
export interface LolChampionMasteryRewardConfigurationEntry {
|
|
3196
|
+
rewardValue: string
|
|
3197
|
+
/** @format int32 */
|
|
3198
|
+
maximumReward: number
|
|
3199
|
+
}
|
|
3200
|
+
|
|
3201
|
+
export interface LolChampionMasterySeasonMilestoneRequireAndRewards {
|
|
3202
|
+
requireGradeCounts: Record<string, number>
|
|
3203
|
+
/** @format uint16 */
|
|
3204
|
+
rewardMarks: number
|
|
3205
|
+
bonus: boolean
|
|
3206
|
+
rewardConfig: LolChampionMasteryRewardConfigurationEntry
|
|
3207
|
+
}
|
|
3208
|
+
|
|
3209
|
+
export interface LolChampionMasterySetRewardEntry {
|
|
3210
|
+
id: string
|
|
3211
|
+
type: string
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
export interface LolChampionMasteryTopChampionMasteries {
|
|
3215
|
+
puuid: string
|
|
3216
|
+
/** @format uint64 */
|
|
3217
|
+
summonerId: number
|
|
3218
|
+
/** @format uint64 */
|
|
3219
|
+
score: number
|
|
3220
|
+
masteries: LolChampionMasteryChampionMastery[]
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
export interface LolChampionMasteryUIAllChampionMasteryWithSets {
|
|
3224
|
+
championMasteries: LolChampionMasteryChampionMastery[]
|
|
3225
|
+
championSet: LolChampionMasteryChampionSet
|
|
3226
|
+
championSetRewards: Record<string, LolChampionMasterySetRewardEntry>
|
|
3227
|
+
seasonMilestoneRequireAndRewards: Record<string, LolChampionMasterySeasonMilestoneRequireAndRewards>
|
|
3228
|
+
defaultChampionMastery: LolChampionMasteryChampionMastery
|
|
3229
|
+
customRewards: LolChampionMasteryUIChampionMasteryCustomReward[]
|
|
3230
|
+
/** @format int32 */
|
|
3231
|
+
totalScore: number
|
|
3232
|
+
championCountByMilestone: Record<string, number>
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
export interface LolChampionMasteryUIChampionMasteryCustomReward {
|
|
3236
|
+
type: string
|
|
3237
|
+
/** @format int32 */
|
|
3238
|
+
level: number
|
|
3239
|
+
rewardValue: string
|
|
3240
|
+
/** @format int32 */
|
|
3241
|
+
quantity: number
|
|
3242
|
+
}
|
|
3243
|
+
|
|
3062
3244
|
export interface LolChampionsChampionQuestSkinInfo {
|
|
3063
3245
|
name: string
|
|
3064
3246
|
descriptionInfo: LolChampionsQuestSkinDescriptionInfo[]
|
|
@@ -3207,8 +3389,8 @@ export interface LolChampionsCollectionsChampionSkinAugment {
|
|
|
3207
3389
|
|
|
3208
3390
|
export interface LolChampionsCollectionsChampionSkinAugmentOverlays {
|
|
3209
3391
|
centeredLCOverlayPath: string
|
|
3210
|
-
|
|
3211
|
-
|
|
3392
|
+
socialCardLCOverlayPath: string
|
|
3393
|
+
tileLCOverlayPath: string
|
|
3212
3394
|
uncenteredLCOverlayPath: string
|
|
3213
3395
|
}
|
|
3214
3396
|
|
|
@@ -5259,15 +5441,6 @@ export interface LolCollectionsCollectionsChampionMastery {
|
|
|
5259
5441
|
formattedMasteryGoal: string
|
|
5260
5442
|
}
|
|
5261
5443
|
|
|
5262
|
-
export interface LolCollectionsCollectionsChestEligibility {
|
|
5263
|
-
/** @format uint32 */
|
|
5264
|
-
earnableChests: number
|
|
5265
|
-
/** @format uint32 */
|
|
5266
|
-
maximumChests: number
|
|
5267
|
-
/** @format uint64 */
|
|
5268
|
-
nextChestRechargeTime: number
|
|
5269
|
-
}
|
|
5270
|
-
|
|
5271
5444
|
export interface LolCollectionsCollectionsOwnership {
|
|
5272
5445
|
loyaltyReward: boolean
|
|
5273
5446
|
xboxGPReward: boolean
|
|
@@ -5304,7 +5477,7 @@ export interface LolCollectionsCollectionsSummonerBackdrop {
|
|
|
5304
5477
|
|
|
5305
5478
|
export interface LolCollectionsCollectionsSummonerBackdropAugments {
|
|
5306
5479
|
centeredLCOverlayPath: string
|
|
5307
|
-
|
|
5480
|
+
socialCardLCOverlayPath: string
|
|
5308
5481
|
}
|
|
5309
5482
|
|
|
5310
5483
|
export type LolCollectionsCollectionsSummonerBackdropType = "specified-skin" | "highest-mastery" | "summoner-icon" | "default"
|
|
@@ -5383,8 +5556,8 @@ export interface LolCollectionsGameDataChampionSkinAugment {
|
|
|
5383
5556
|
|
|
5384
5557
|
export interface LolCollectionsGameDataChampionSkinAugmentOverlays {
|
|
5385
5558
|
centeredLCOverlayPath: string
|
|
5386
|
-
|
|
5387
|
-
|
|
5559
|
+
socialCardLCOverlayPath: string
|
|
5560
|
+
tileLCOverlayPath: string
|
|
5388
5561
|
uncenteredLCOverlayPath: string
|
|
5389
5562
|
}
|
|
5390
5563
|
|
|
@@ -5718,6 +5891,8 @@ export interface LolCosmeticsCompanionsGroupViewModel {
|
|
|
5718
5891
|
numOwned: number
|
|
5719
5892
|
/** @format uint32 */
|
|
5720
5893
|
numAvailable: number
|
|
5894
|
+
/** @format int64 */
|
|
5895
|
+
purchaseDate: number
|
|
5721
5896
|
items: LolCosmeticsCosmeticsCompanionViewModel[]
|
|
5722
5897
|
}
|
|
5723
5898
|
|
|
@@ -6057,6 +6232,8 @@ export interface LolCosmeticsTFTDamageSkinGroupViewModel {
|
|
|
6057
6232
|
numOwned: number
|
|
6058
6233
|
/** @format uint32 */
|
|
6059
6234
|
numAvailable: number
|
|
6235
|
+
/** @format int64 */
|
|
6236
|
+
purchaseDate: number
|
|
6060
6237
|
items: LolCosmeticsCosmeticsTFTDamageSkinViewModel[]
|
|
6061
6238
|
}
|
|
6062
6239
|
|
|
@@ -6079,6 +6256,8 @@ export interface LolCosmeticsTFTMapSkinGroupViewModel {
|
|
|
6079
6256
|
numOwned: number
|
|
6080
6257
|
/** @format uint32 */
|
|
6081
6258
|
numAvailable: number
|
|
6259
|
+
/** @format int64 */
|
|
6260
|
+
purchaseDate: number
|
|
6082
6261
|
items: LolCosmeticsCosmeticsTFTMapSkinViewModel[]
|
|
6083
6262
|
}
|
|
6084
6263
|
|
|
@@ -6147,6 +6326,7 @@ export interface LolDropsCapDropTableCounterDTO {
|
|
|
6147
6326
|
|
|
6148
6327
|
export interface LolDropsCapDropsDropTableDisplayMetadata {
|
|
6149
6328
|
isCollectorsBounty: boolean
|
|
6329
|
+
dataAssetId: string
|
|
6150
6330
|
nameTraKey: string
|
|
6151
6331
|
mythicOfferId: string
|
|
6152
6332
|
progressionId: string
|
|
@@ -6194,6 +6374,9 @@ export interface LolDropsCapDropsOddsTreeNodeDTO {
|
|
|
6194
6374
|
children: LolDropsCapDropsOddsTreeNodeDTO[]
|
|
6195
6375
|
/** @format uint16 */
|
|
6196
6376
|
quantity: number
|
|
6377
|
+
nameTraKey: string
|
|
6378
|
+
/** @format uint8 */
|
|
6379
|
+
priority: number
|
|
6197
6380
|
}
|
|
6198
6381
|
|
|
6199
6382
|
export interface LolDropsOddsTableDisplayMetadata {
|
|
@@ -6208,6 +6391,14 @@ export interface LolDropsTotalRollsInfoDTO {
|
|
|
6208
6391
|
maxTotalRolls: number
|
|
6209
6392
|
}
|
|
6210
6393
|
|
|
6394
|
+
export type LolDx9DeprecationDx9DeprecationNotificationType = "TURN_OFF_DX9_LEGACY_MODE" | "HARDWARE_UPGRADE" | "NONE"
|
|
6395
|
+
|
|
6396
|
+
export interface LolDx9DeprecationLocalSettingsCategory {
|
|
6397
|
+
data: unknown
|
|
6398
|
+
/** @format int32 */
|
|
6399
|
+
schemaVersion: number
|
|
6400
|
+
}
|
|
6401
|
+
|
|
6211
6402
|
export interface LolEmailVerificationAccessToken {
|
|
6212
6403
|
token: string
|
|
6213
6404
|
/** @format uint64 */
|
|
@@ -6525,7 +6716,7 @@ export interface LolEndOfGameGameDataTftItem {
|
|
|
6525
6716
|
name: string
|
|
6526
6717
|
/** @format int32 */
|
|
6527
6718
|
id: number
|
|
6528
|
-
|
|
6719
|
+
squareIconPath: string
|
|
6529
6720
|
nameId: string
|
|
6530
6721
|
}
|
|
6531
6722
|
|
|
@@ -6940,6 +7131,7 @@ export interface LolEventHubBundledItemUIData {
|
|
|
6940
7131
|
owned: boolean
|
|
6941
7132
|
/** @format uint32 */
|
|
6942
7133
|
quantity: number
|
|
7134
|
+
decoratorBadgeURL: string
|
|
6943
7135
|
}
|
|
6944
7136
|
|
|
6945
7137
|
export interface LolEventHubCapOffer {
|
|
@@ -7144,6 +7336,8 @@ export interface LolEventHubCurrencyDTO {
|
|
|
7144
7336
|
export interface LolEventHubDiscountPricingInfo {
|
|
7145
7337
|
/** @format int32 */
|
|
7146
7338
|
cost: number
|
|
7339
|
+
/** @format int32 */
|
|
7340
|
+
originalCost: number
|
|
7147
7341
|
costType: string
|
|
7148
7342
|
currency: string
|
|
7149
7343
|
/** @format float */
|
|
@@ -7172,6 +7366,7 @@ export interface LolEventHubEventBackgroundUIData {
|
|
|
7172
7366
|
export interface LolEventHubEventDetailsUIData {
|
|
7173
7367
|
eventIconPath: string
|
|
7174
7368
|
eventName: string
|
|
7369
|
+
headerTitleImagePath: string
|
|
7175
7370
|
progressEndDate: string
|
|
7176
7371
|
shopEndDate: string
|
|
7177
7372
|
eventStartDate: string
|
|
@@ -7185,7 +7380,7 @@ export interface LolEventHubEventHubError {
|
|
|
7185
7380
|
errorId: string
|
|
7186
7381
|
}
|
|
7187
7382
|
|
|
7188
|
-
export type LolEventHubEventHubType = "HallOfLegends" | "EventShop"
|
|
7383
|
+
export type LolEventHubEventHubType = "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
7189
7384
|
|
|
7190
7385
|
export interface LolEventHubEventInfoUIData {
|
|
7191
7386
|
eventId: string
|
|
@@ -7347,6 +7542,7 @@ export interface LolEventHubHallOfLegends {
|
|
|
7347
7542
|
localizedName: string
|
|
7348
7543
|
navbarIconImage: string
|
|
7349
7544
|
headerIconImage: string
|
|
7545
|
+
headerTitleImage: string
|
|
7350
7546
|
startDate: string
|
|
7351
7547
|
progressEndDate: string
|
|
7352
7548
|
endDate: string
|
|
@@ -7509,12 +7705,14 @@ export interface LolEventHubItemDefinition {
|
|
|
7509
7705
|
name: string
|
|
7510
7706
|
description: string
|
|
7511
7707
|
subTitle: string
|
|
7708
|
+
imagePath: string
|
|
7512
7709
|
owned: boolean
|
|
7513
7710
|
assets: LolEventHubCatalogPluginItemAssets
|
|
7514
7711
|
tags: string[]
|
|
7515
7712
|
metadata: LolEventHubItemMetadataEntry[]
|
|
7516
7713
|
bundledItemPrice?: LolEventHubBundledItemPricingInfo
|
|
7517
7714
|
loyaltyUnlocked: boolean
|
|
7715
|
+
hasVisibleLootOdds: boolean
|
|
7518
7716
|
}
|
|
7519
7717
|
|
|
7520
7718
|
export interface LolEventHubItemDetails {
|
|
@@ -7959,7 +8157,7 @@ export type LolEventHubRewardTrackItemHeaderType = "NONE" | "FREE" | "PREMIUM"
|
|
|
7959
8157
|
export interface LolEventHubRewardTrackItemOption {
|
|
7960
8158
|
state: LolEventHubRewardTrackItemStates
|
|
7961
8159
|
thumbIconPath: string
|
|
7962
|
-
|
|
8160
|
+
splashImagePath: string
|
|
7963
8161
|
selected: boolean
|
|
7964
8162
|
overrideFooter: string
|
|
7965
8163
|
headerType: LolEventHubRewardTrackItemHeaderType
|
|
@@ -8333,1491 +8531,73 @@ export interface LolEventHubXboxSubscriptionStatus {
|
|
|
8333
8531
|
subscriptionId: string
|
|
8334
8532
|
}
|
|
8335
8533
|
|
|
8336
|
-
export interface
|
|
8337
|
-
token: string
|
|
8338
|
-
scopes: string[]
|
|
8534
|
+
export interface LolFeaturedModesAccountIdAndSummonerId {
|
|
8339
8535
|
/** @format uint64 */
|
|
8340
|
-
|
|
8341
|
-
}
|
|
8342
|
-
|
|
8343
|
-
export interface LolEventShopBalance {
|
|
8344
|
-
currencyType: string
|
|
8345
|
-
/** @format int32 */
|
|
8346
|
-
amount: number
|
|
8347
|
-
}
|
|
8348
|
-
|
|
8349
|
-
export interface LolEventShopBaseSkinLineDto {
|
|
8350
|
-
items: LolEventShopSkinLineItemDto[]
|
|
8351
|
-
localizedName: string
|
|
8352
|
-
skinLineDescriptions: LolEventShopSkinLineDescriptionDto[]
|
|
8353
|
-
pricingOptions: LolEventShopPriceOptionDto[]
|
|
8354
|
-
splashPath: string
|
|
8355
|
-
uncenteredSplashPath: string
|
|
8356
|
-
collectionCardPath: string
|
|
8357
|
-
collectionDescription: string
|
|
8358
|
-
tilePath: string
|
|
8536
|
+
summonerId: number
|
|
8359
8537
|
}
|
|
8360
8538
|
|
|
8361
|
-
export interface
|
|
8362
|
-
|
|
8363
|
-
|
|
8364
|
-
|
|
8365
|
-
/** @format int64 */
|
|
8366
|
-
finalPrice: number
|
|
8367
|
-
/** @format int64 */
|
|
8368
|
-
futureBalance: number
|
|
8369
|
-
isPurchasable: boolean
|
|
8370
|
-
/** @format double */
|
|
8371
|
-
discountPercentage: number
|
|
8372
|
-
bundledItems: LolEventShopBundledItemUIData[]
|
|
8539
|
+
export interface LolFeaturedModesCollectionsOwnership {
|
|
8540
|
+
loyaltyReward: boolean
|
|
8541
|
+
xboxGPReward: boolean
|
|
8542
|
+
owned: boolean
|
|
8373
8543
|
}
|
|
8374
8544
|
|
|
8375
|
-
export interface
|
|
8376
|
-
discountPrices: LolEventShopDiscountPricingInfo[]
|
|
8377
|
-
inventoryType: string
|
|
8378
|
-
/** @format int32 */
|
|
8379
|
-
itemId: number
|
|
8545
|
+
export interface LolFeaturedModesCollectionsSummonerIcon {
|
|
8380
8546
|
/** @format int32 */
|
|
8381
|
-
|
|
8547
|
+
iconId: number
|
|
8548
|
+
ownership: LolFeaturedModesCollectionsOwnership
|
|
8382
8549
|
}
|
|
8383
8550
|
|
|
8384
|
-
export interface
|
|
8385
|
-
name: string
|
|
8551
|
+
export interface LolFeaturedModesEligibility {
|
|
8386
8552
|
/** @format int32 */
|
|
8387
|
-
|
|
8388
|
-
|
|
8389
|
-
|
|
8390
|
-
subInventoryType: string
|
|
8391
|
-
splashImage: string
|
|
8392
|
-
owned: boolean
|
|
8553
|
+
queueId: number
|
|
8554
|
+
eligible: boolean
|
|
8555
|
+
restrictions: LolFeaturedModesEligibilityRestriction[]
|
|
8393
8556
|
}
|
|
8394
8557
|
|
|
8395
|
-
export interface
|
|
8396
|
-
|
|
8397
|
-
|
|
8398
|
-
|
|
8399
|
-
|
|
8400
|
-
|
|
8401
|
-
payload: LolEventShopCapOfferPayloadEntry[]
|
|
8402
|
-
active: boolean
|
|
8403
|
-
startDate: string
|
|
8404
|
-
createdDate: string
|
|
8558
|
+
export interface LolFeaturedModesEligibilityRestriction {
|
|
8559
|
+
restrictionCode: LolFeaturedModesEligibilityRestrictionCode
|
|
8560
|
+
restrictionArgs: Record<string, string>
|
|
8561
|
+
/** @format uint64 */
|
|
8562
|
+
expiredTimestamp: number
|
|
8563
|
+
summonerIds: number[]
|
|
8405
8564
|
}
|
|
8406
8565
|
|
|
8407
|
-
export
|
|
8408
|
-
itemPriceMap: Record<string, number>
|
|
8409
|
-
itemInstanceId: string
|
|
8410
|
-
fulfillmentTypeId: string
|
|
8411
|
-
inventoryTypeUUID: string
|
|
8412
|
-
}
|
|
8566
|
+
export type LolFeaturedModesEligibilityRestrictionCode = "UnknownRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
8413
8567
|
|
|
8414
|
-
export interface
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8568
|
+
export interface LolFeaturedModesFeaturedModesConfig {
|
|
8569
|
+
NotificationsEnabled: boolean
|
|
8570
|
+
/** @format uint32 */
|
|
8571
|
+
QueueToggleNotificationMinutesThreshold: number
|
|
8572
|
+
/** @format uint32 */
|
|
8573
|
+
MaxNotificationSaveDelayMinutes: number
|
|
8420
8574
|
}
|
|
8421
8575
|
|
|
8422
|
-
export interface
|
|
8423
|
-
|
|
8576
|
+
export interface LolFeaturedModesGameflowAvailability {
|
|
8577
|
+
isAvailable: boolean
|
|
8578
|
+
state: LolFeaturedModesGameflowAvailabilityState
|
|
8424
8579
|
}
|
|
8425
8580
|
|
|
8426
|
-
export
|
|
8427
|
-
/** @format uint32 */
|
|
8428
|
-
quantity: number
|
|
8429
|
-
paymentOption: string
|
|
8430
|
-
}
|
|
8581
|
+
export type LolFeaturedModesGameflowAvailabilityState = "Configuration" | "InGameFlow" | "PlayerBanned" | "EligibilityInfoMissing" | "Patching" | "Initializing" | "Available"
|
|
8431
8582
|
|
|
8432
|
-
export
|
|
8433
|
-
id: string
|
|
8434
|
-
productId: string
|
|
8435
|
-
}
|
|
8583
|
+
export type LolFeaturedModesGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
8436
8584
|
|
|
8437
|
-
export interface
|
|
8438
|
-
|
|
8439
|
-
meta: LolEventShopCapOrdersMetaDto
|
|
8585
|
+
export interface LolFeaturedModesGameflowSession {
|
|
8586
|
+
phase: LolFeaturedModesGameflowPhase
|
|
8440
8587
|
}
|
|
8441
8588
|
|
|
8442
|
-
export interface
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8589
|
+
export interface LolFeaturedModesLoginSession {
|
|
8590
|
+
state: LolFeaturedModesLoginSessionStates
|
|
8591
|
+
/** @format uint64 */
|
|
8592
|
+
summonerId: number
|
|
8446
8593
|
}
|
|
8447
8594
|
|
|
8448
|
-
export
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8454
|
-
contentId: string
|
|
8455
|
-
/** @format int32 */
|
|
8456
|
-
itemId: number
|
|
8457
|
-
offerId: string
|
|
8458
|
-
typeId: string
|
|
8459
|
-
}
|
|
8460
|
-
|
|
8461
|
-
export interface LolEventShopCatalogItem {
|
|
8462
|
-
/** @format int32 */
|
|
8463
|
-
itemId: number
|
|
8464
|
-
inventoryType: string
|
|
8465
|
-
itemInstanceId?: string
|
|
8466
|
-
}
|
|
8467
|
-
|
|
8468
|
-
export interface LolEventShopCatalogPluginItem {
|
|
8469
|
-
/** @format int32 */
|
|
8470
|
-
itemId: number
|
|
8471
|
-
itemInstanceId: string
|
|
8472
|
-
owned: boolean
|
|
8473
|
-
inventoryType: string
|
|
8474
|
-
subInventoryType: string
|
|
8475
|
-
name: string
|
|
8476
|
-
subTitle: string
|
|
8477
|
-
description: string
|
|
8478
|
-
imagePath: string
|
|
8479
|
-
/** @format uint64 */
|
|
8480
|
-
purchaseDate: number
|
|
8481
|
-
/** @format uint64 */
|
|
8482
|
-
releaseDate: number
|
|
8483
|
-
/** @format uint64 */
|
|
8484
|
-
inactiveDate: number
|
|
8485
|
-
prices: LolEventShopCatalogPluginPrice[]
|
|
8486
|
-
tags?: string[]
|
|
8487
|
-
metadata?: LolEventShopItemMetadataEntry[]
|
|
8488
|
-
questSkinInfo?: LolEventShopSkinLineInfo
|
|
8489
|
-
active: boolean
|
|
8490
|
-
ownershipType?: LolEventShopInventoryOwnership
|
|
8491
|
-
}
|
|
8492
|
-
|
|
8493
|
-
export interface LolEventShopCatalogPluginItemAssets {
|
|
8494
|
-
splashPath: string
|
|
8495
|
-
iconPath: string
|
|
8496
|
-
tilePath: string
|
|
8497
|
-
emblems: LolEventShopChampionSkinEmblem[]
|
|
8498
|
-
colors: string[]
|
|
8499
|
-
}
|
|
8500
|
-
|
|
8501
|
-
export interface LolEventShopCatalogPluginItemWithDetails {
|
|
8502
|
-
item: LolEventShopCatalogPluginItem
|
|
8503
|
-
/** @format uint32 */
|
|
8504
|
-
quantity: number
|
|
8505
|
-
requiredItems?: LolEventShopCatalogPluginItemWithDetails[]
|
|
8506
|
-
bundledItems?: LolEventShopCatalogPluginItemWithDetails[]
|
|
8507
|
-
minimumBundlePrices?: LolEventShopCatalogPluginPrice[]
|
|
8508
|
-
bundledDiscountPrices?: LolEventShopCatalogPluginPrice[]
|
|
8509
|
-
assets: LolEventShopCatalogPluginItemAssets
|
|
8510
|
-
}
|
|
8511
|
-
|
|
8512
|
-
export interface LolEventShopCatalogPluginPrice {
|
|
8513
|
-
currency: string
|
|
8514
|
-
/** @format int64 */
|
|
8515
|
-
cost: number
|
|
8516
|
-
costType?: string
|
|
8517
|
-
sale?: LolEventShopCatalogPluginSale
|
|
8518
|
-
}
|
|
8519
|
-
|
|
8520
|
-
export interface LolEventShopCatalogPluginSale {
|
|
8521
|
-
startDate: string
|
|
8522
|
-
endDate: string
|
|
8523
|
-
/** @format float */
|
|
8524
|
-
discount?: number
|
|
8525
|
-
/** @format int64 */
|
|
8526
|
-
cost: number
|
|
8527
|
-
}
|
|
8528
|
-
|
|
8529
|
-
export interface LolEventShopCategoryOffersUIData {
|
|
8530
|
-
category: LolEventShopOfferCategory
|
|
8531
|
-
categoryIconPath: string
|
|
8532
|
-
offers: LolEventShopOfferUIData[]
|
|
8533
|
-
}
|
|
8534
|
-
|
|
8535
|
-
export type LolEventShopCelebrationType = "FULLSCREEN" | "TOAST" | "NONE"
|
|
8536
|
-
|
|
8537
|
-
export interface LolEventShopCelebrationUIData {
|
|
8538
|
-
rewardTrackItems: LolEventShopRewardTrackItem[]
|
|
8539
|
-
}
|
|
8540
|
-
|
|
8541
|
-
export interface LolEventShopChampionSkinEmblem {
|
|
8542
|
-
name: string
|
|
8543
|
-
emblemPath: LolEventShopChampionSkinEmblemPath
|
|
8544
|
-
emblemPosition: LolEventShopChampionSkinEmblemPosition
|
|
8545
|
-
}
|
|
8546
|
-
|
|
8547
|
-
export interface LolEventShopChampionSkinEmblemPath {
|
|
8548
|
-
large: string
|
|
8549
|
-
small: string
|
|
8550
|
-
}
|
|
8551
|
-
|
|
8552
|
-
export interface LolEventShopChampionSkinEmblemPosition {
|
|
8553
|
-
vertical: string
|
|
8554
|
-
horizontal: string
|
|
8555
|
-
}
|
|
8556
|
-
|
|
8557
|
-
export interface LolEventShopClaimSelectUIData {
|
|
8558
|
-
selectedRewardTrackItem: LolEventShopRewardTrackItem
|
|
8559
|
-
/** @format uint16 */
|
|
8560
|
-
unclaimedRewardCount: number
|
|
8561
|
-
}
|
|
8562
|
-
|
|
8563
|
-
export interface LolEventShopClientCacheClearMessageDTO {
|
|
8564
|
-
regions: string[]
|
|
8565
|
-
clearAll: boolean
|
|
8566
|
-
inventoryTypes: string[]
|
|
8567
|
-
}
|
|
8568
|
-
|
|
8569
|
-
export interface LolEventShopClientConfigContentDrop {
|
|
8570
|
-
Patch: string
|
|
8571
|
-
ActivationDate: string
|
|
8572
|
-
}
|
|
8573
|
-
|
|
8574
|
-
export interface LolEventShopContentDrop {
|
|
8575
|
-
patch: string
|
|
8576
|
-
activationDate: string
|
|
8577
|
-
offers: LolEventShopOffer[]
|
|
8578
|
-
}
|
|
8579
|
-
|
|
8580
|
-
export interface LolEventShopCounter {
|
|
8581
|
-
id: string
|
|
8582
|
-
name: string
|
|
8583
|
-
groupId: string
|
|
8584
|
-
direction: string
|
|
8585
|
-
/** @format int64 */
|
|
8586
|
-
startValue: number
|
|
8587
|
-
}
|
|
8588
|
-
|
|
8589
|
-
export interface LolEventShopCounterInstance {
|
|
8590
|
-
ownerId: string
|
|
8591
|
-
productId: string
|
|
8592
|
-
groupId: string
|
|
8593
|
-
counterId: string
|
|
8594
|
-
/** @format int64 */
|
|
8595
|
-
counterValue: number
|
|
8596
|
-
}
|
|
8597
|
-
|
|
8598
|
-
export interface LolEventShopCurrencyDTO {
|
|
8599
|
-
/** @format int32 */
|
|
8600
|
-
amount: number
|
|
8601
|
-
subCurrencies: Record<string, number>
|
|
8602
|
-
}
|
|
8603
|
-
|
|
8604
|
-
export interface LolEventShopDiscountPricingInfo {
|
|
8605
|
-
/** @format int32 */
|
|
8606
|
-
cost: number
|
|
8607
|
-
costType: string
|
|
8608
|
-
currency: string
|
|
8609
|
-
/** @format float */
|
|
8610
|
-
discount: number
|
|
8611
|
-
}
|
|
8612
|
-
|
|
8613
|
-
export interface LolEventShopEndOfGameXp {
|
|
8614
|
-
/** @format uint32 */
|
|
8615
|
-
PER_WIN: number
|
|
8616
|
-
}
|
|
8617
|
-
|
|
8618
|
-
export interface LolEventShopEndOfGameXpNotification {
|
|
8619
|
-
xp: LolEventShopEndOfGameXp
|
|
8620
|
-
}
|
|
8621
|
-
|
|
8622
|
-
export interface LolEventShopEntityInstance {
|
|
8623
|
-
groupId: string
|
|
8624
|
-
counters: LolEventShopCounterInstance[]
|
|
8625
|
-
milestones: LolEventShopMilestoneInstance[]
|
|
8626
|
-
}
|
|
8627
|
-
|
|
8628
|
-
export interface LolEventShopEventBackgroundUIData {
|
|
8629
|
-
backgroundImagePath: string
|
|
8630
|
-
}
|
|
8631
|
-
|
|
8632
|
-
export interface LolEventShopEventDetailsUIData {
|
|
8633
|
-
eventIconPath: string
|
|
8634
|
-
eventName: string
|
|
8635
|
-
progressEndDate: string
|
|
8636
|
-
shopEndDate: string
|
|
8637
|
-
eventStartDate: string
|
|
8638
|
-
helpModalImagePath: string
|
|
8639
|
-
}
|
|
8640
|
-
|
|
8641
|
-
export interface LolEventShopEventShop {
|
|
8642
|
-
eventId: string
|
|
8643
|
-
localizedName: string
|
|
8644
|
-
backgroundImage: string
|
|
8645
|
-
navbarIconImage: string
|
|
8646
|
-
headerIconImage: string
|
|
8647
|
-
startDate: string
|
|
8648
|
-
progressEndDate: string
|
|
8649
|
-
shopEndDate: string
|
|
8650
|
-
localizedUpsellTitle: string
|
|
8651
|
-
localizedUpsellTooltipTitle: string
|
|
8652
|
-
localizedUpsellTooltipDescription: string
|
|
8653
|
-
localizedUpsellButtonText: string
|
|
8654
|
-
upsellBackgroundImageUrl: string
|
|
8655
|
-
upsellTooltipBackgroundImageUrl: string
|
|
8656
|
-
helpModalImage: string
|
|
8657
|
-
eventPassBundlesCatalogEntry: LolEventShopCatalogEntry[]
|
|
8658
|
-
tokenShop: LolEventShopTokenShop
|
|
8659
|
-
rewardTrack: LolEventShopRewardTrack
|
|
8660
|
-
}
|
|
8661
|
-
|
|
8662
|
-
export interface LolEventShopEventShopClientConfig {
|
|
8663
|
-
Enabled: boolean
|
|
8664
|
-
ActiveEventId: string
|
|
8665
|
-
StartDate: string
|
|
8666
|
-
ProgressEndDate: string
|
|
8667
|
-
ShopEndDate: string
|
|
8668
|
-
DisabledOfferIds: string[]
|
|
8669
|
-
ContentDrops: LolEventShopClientConfigContentDrop[]
|
|
8670
|
-
/** @format double */
|
|
8671
|
-
ActivationSpreadSeconds: number
|
|
8672
|
-
/** @format double */
|
|
8673
|
-
FirstActivationThresholdSeconds: number
|
|
8674
|
-
}
|
|
8675
|
-
|
|
8676
|
-
export interface LolEventShopEventShopError {
|
|
8677
|
-
errorMessage: string
|
|
8678
|
-
errorId: string
|
|
8679
|
-
}
|
|
8680
|
-
|
|
8681
|
-
export interface LolEventShopEventShopInfoUIData {
|
|
8682
|
-
eventId: string
|
|
8683
|
-
eventName: string
|
|
8684
|
-
eventIcon: string
|
|
8685
|
-
eventTokenImage: string
|
|
8686
|
-
/** @format int64 */
|
|
8687
|
-
currentTokenBalance?: number
|
|
8688
|
-
/** @format int64 */
|
|
8689
|
-
lockedTokenCount?: number
|
|
8690
|
-
/** @format int32 */
|
|
8691
|
-
unclaimedRewardCount?: number
|
|
8692
|
-
isPassPurchased: boolean
|
|
8693
|
-
isEventActive: boolean
|
|
8694
|
-
showPip: boolean
|
|
8695
|
-
eventPassBundles: LolEventShopCatalogEntry[]
|
|
8696
|
-
tokenBundles: LolEventShopCatalogEntry[]
|
|
8697
|
-
}
|
|
8698
|
-
|
|
8699
|
-
export type LolEventShopExternalCatalogInventoryOwnership = "F2P" | "LOYALTY" | "RENTED" | "OWNED"
|
|
8700
|
-
|
|
8701
|
-
export interface LolEventShopExternalCatalogItemCost {
|
|
8702
|
-
currency: string
|
|
8703
|
-
/** @format int64 */
|
|
8704
|
-
cost: number
|
|
8705
|
-
/** @format float */
|
|
8706
|
-
discount?: number
|
|
8707
|
-
}
|
|
8708
|
-
|
|
8709
|
-
export interface LolEventShopExternalCatalogItemKey {
|
|
8710
|
-
inventoryType: string
|
|
8711
|
-
/** @format int32 */
|
|
8712
|
-
itemId: number
|
|
8713
|
-
}
|
|
8714
|
-
|
|
8715
|
-
export interface LolEventShopExternalCatalogPluginItem {
|
|
8716
|
-
/** @format int32 */
|
|
8717
|
-
itemId: number
|
|
8718
|
-
itemInstanceId: string
|
|
8719
|
-
owned: boolean
|
|
8720
|
-
ownershipType?: LolEventShopExternalCatalogInventoryOwnership
|
|
8721
|
-
inventoryType: string
|
|
8722
|
-
subInventoryType: string
|
|
8723
|
-
name: string
|
|
8724
|
-
subTitle: string
|
|
8725
|
-
description: string
|
|
8726
|
-
imagePath: string
|
|
8727
|
-
/** @format uint64 */
|
|
8728
|
-
purchaseDate: number
|
|
8729
|
-
/** @format uint64 */
|
|
8730
|
-
releaseDate: number
|
|
8731
|
-
/** @format uint64 */
|
|
8732
|
-
inactiveDate: number
|
|
8733
|
-
prices: LolEventShopExternalCatalogPluginPrice[]
|
|
8734
|
-
tags?: string[]
|
|
8735
|
-
active: boolean
|
|
8736
|
-
sale?: LolEventShopExternalCatalogSale
|
|
8737
|
-
offerId?: string
|
|
8738
|
-
}
|
|
8739
|
-
|
|
8740
|
-
export interface LolEventShopExternalCatalogPluginItemAssets {
|
|
8741
|
-
splashPath: string
|
|
8742
|
-
iconPath: string
|
|
8743
|
-
tilePath: string
|
|
8744
|
-
colors: string[]
|
|
8745
|
-
}
|
|
8746
|
-
|
|
8747
|
-
export interface LolEventShopExternalCatalogPluginItemWithDetails {
|
|
8748
|
-
item: LolEventShopExternalCatalogPluginItem
|
|
8749
|
-
/** @format uint32 */
|
|
8750
|
-
quantity: number
|
|
8751
|
-
requiredItems?: LolEventShopExternalCatalogPluginItemWithDetails[]
|
|
8752
|
-
bundledItems?: LolEventShopExternalCatalogPluginItemWithDetails[]
|
|
8753
|
-
minimumBundlePrices?: LolEventShopExternalCatalogPluginPrice[]
|
|
8754
|
-
bundledDiscountPrices?: LolEventShopExternalCatalogPluginPrice[]
|
|
8755
|
-
metadata: LolEventShopExternalItemMetadataEntry[]
|
|
8756
|
-
}
|
|
8757
|
-
|
|
8758
|
-
export interface LolEventShopExternalCatalogPluginPrice {
|
|
8759
|
-
currency: string
|
|
8760
|
-
/** @format int64 */
|
|
8761
|
-
cost: number
|
|
8762
|
-
costType?: string
|
|
8763
|
-
}
|
|
8764
|
-
|
|
8765
|
-
export interface LolEventShopExternalCatalogPluginRetailDiscount {
|
|
8766
|
-
startDate: string
|
|
8767
|
-
endDate: string
|
|
8768
|
-
/** @format float */
|
|
8769
|
-
discount?: number
|
|
8770
|
-
/** @format int64 */
|
|
8771
|
-
cost: number
|
|
8772
|
-
}
|
|
8773
|
-
|
|
8774
|
-
export interface LolEventShopExternalCatalogSale {
|
|
8775
|
-
startDate: string
|
|
8776
|
-
endDate: string
|
|
8777
|
-
prices: LolEventShopExternalCatalogItemCost[]
|
|
8778
|
-
}
|
|
8779
|
-
|
|
8780
|
-
export interface LolEventShopExternalItemMetadataEntry {
|
|
8781
|
-
type: string
|
|
8782
|
-
value: string
|
|
8783
|
-
}
|
|
8784
|
-
|
|
8785
|
-
export type LolEventShopGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
8786
|
-
|
|
8787
|
-
export interface LolEventShopGrantorDescription {
|
|
8788
|
-
appName: string
|
|
8789
|
-
entityId: string
|
|
8790
|
-
}
|
|
8791
|
-
|
|
8792
|
-
export interface LolEventShopGroup {
|
|
8793
|
-
id: string
|
|
8794
|
-
productId: string
|
|
8795
|
-
name: string
|
|
8796
|
-
repeat: LolEventShopRepeat
|
|
8797
|
-
counters: LolEventShopCounter[]
|
|
8798
|
-
milestones: LolEventShopMilestone[]
|
|
8799
|
-
}
|
|
8800
|
-
|
|
8801
|
-
export interface LolEventShopInventoryCacheEntry {
|
|
8802
|
-
signedInventoryJwt: string
|
|
8803
|
-
/** @format uint64 */
|
|
8804
|
-
expirationMS: number
|
|
8805
|
-
/** @format uint64 */
|
|
8806
|
-
issuedAtMS: number
|
|
8807
|
-
/** @format uint64 */
|
|
8808
|
-
receivedAtMS: number
|
|
8809
|
-
valid: boolean
|
|
8810
|
-
}
|
|
8811
|
-
|
|
8812
|
-
export interface LolEventShopInventoryDTO {
|
|
8813
|
-
puuid: string
|
|
8814
|
-
/** @format uint64 */
|
|
8815
|
-
accountId: number
|
|
8816
|
-
/** @format uint64 */
|
|
8817
|
-
summonerId: number
|
|
8818
|
-
items: Record<string, unknown>
|
|
8819
|
-
expires: string
|
|
8820
|
-
itemsJwt: string
|
|
8821
|
-
}
|
|
8822
|
-
|
|
8823
|
-
export interface LolEventShopInventoryItem {
|
|
8824
|
-
uuid: string
|
|
8825
|
-
/** @format int32 */
|
|
8826
|
-
itemId: number
|
|
8827
|
-
inventoryType: string
|
|
8828
|
-
purchaseDate: string
|
|
8829
|
-
/** @format uint64 */
|
|
8830
|
-
quantity: number
|
|
8831
|
-
ownershipType: LolEventShopItemOwnershipType
|
|
8832
|
-
expirationDate: string
|
|
8833
|
-
/** @format uint64 */
|
|
8834
|
-
wins: number
|
|
8835
|
-
}
|
|
8836
|
-
|
|
8837
|
-
export interface LolEventShopInventoryItemDTO {
|
|
8838
|
-
/** @format int32 */
|
|
8839
|
-
itemId: number
|
|
8840
|
-
inventoryType: string
|
|
8841
|
-
expirationDate: string
|
|
8842
|
-
purchaseDate: string
|
|
8843
|
-
/** @format uint64 */
|
|
8844
|
-
quantity: number
|
|
8845
|
-
/** @format uint64 */
|
|
8846
|
-
ownedQuantity: number
|
|
8847
|
-
usedInGameDate: string
|
|
8848
|
-
entitlementId: string
|
|
8849
|
-
entitlementTypeId: string
|
|
8850
|
-
instanceId: string
|
|
8851
|
-
instanceTypeId: string
|
|
8852
|
-
payload: unknown
|
|
8853
|
-
"f2p": boolean
|
|
8854
|
-
rental: boolean
|
|
8855
|
-
loyalty: boolean
|
|
8856
|
-
loyaltySources: string[]
|
|
8857
|
-
lsb: boolean
|
|
8858
|
-
/** @format uint64 */
|
|
8859
|
-
wins: number
|
|
8860
|
-
}
|
|
8861
|
-
|
|
8862
|
-
export interface LolEventShopInventoryItemWithPayload {
|
|
8863
|
-
uuid: string
|
|
8864
|
-
/** @format int32 */
|
|
8865
|
-
itemId: number
|
|
8866
|
-
inventoryType: string
|
|
8867
|
-
purchaseDate: string
|
|
8868
|
-
/** @format uint64 */
|
|
8869
|
-
quantity: number
|
|
8870
|
-
ownershipType: LolEventShopItemOwnershipType
|
|
8871
|
-
expirationDate: string
|
|
8872
|
-
"f2p": boolean
|
|
8873
|
-
rental: boolean
|
|
8874
|
-
loyalty: boolean
|
|
8875
|
-
loyaltySources: string[]
|
|
8876
|
-
owned: boolean
|
|
8877
|
-
/** @format uint64 */
|
|
8878
|
-
wins: number
|
|
8879
|
-
payload: unknown
|
|
8880
|
-
}
|
|
8881
|
-
|
|
8882
|
-
export interface LolEventShopInventoryNotification {
|
|
8883
|
-
/** @format int64 */
|
|
8884
|
-
id: number
|
|
8885
|
-
/** @format int32 */
|
|
8886
|
-
itemId: number
|
|
8887
|
-
inventoryType: string
|
|
8888
|
-
type: string
|
|
8889
|
-
acknowledged: boolean
|
|
8890
|
-
}
|
|
8891
|
-
|
|
8892
|
-
export type LolEventShopInventoryOwnership = "F2P" | "LOYALTY" | "RENTED" | "OWNED"
|
|
8893
|
-
|
|
8894
|
-
export interface LolEventShopInventoryResponseDTO {
|
|
8895
|
-
data: LolEventShopInventoryDTO
|
|
8896
|
-
}
|
|
8897
|
-
|
|
8898
|
-
export interface LolEventShopItem {
|
|
8899
|
-
itemId: string
|
|
8900
|
-
inventoryType: string
|
|
8901
|
-
/** @format uint32 */
|
|
8902
|
-
price: number
|
|
8903
|
-
/** @format uint32 */
|
|
8904
|
-
quantity: number
|
|
8905
|
-
}
|
|
8906
|
-
|
|
8907
|
-
export interface LolEventShopItemChoiceDetails {
|
|
8908
|
-
item: LolEventShopCatalogPluginItem
|
|
8909
|
-
backgroundImage: string
|
|
8910
|
-
contents: LolEventShopItemDetails[]
|
|
8911
|
-
discount: string
|
|
8912
|
-
/** @format uint32 */
|
|
8913
|
-
fullPrice: number
|
|
8914
|
-
displayType: string
|
|
8915
|
-
purchaseOptions: LolEventShopPurchaseOption[]
|
|
8916
|
-
}
|
|
8917
|
-
|
|
8918
|
-
export interface LolEventShopItemChoices {
|
|
8919
|
-
choices: LolEventShopItemChoiceDetails[]
|
|
8920
|
-
validationErrors: LolEventShopValidationErrorEntry[]
|
|
8921
|
-
}
|
|
8922
|
-
|
|
8923
|
-
export interface LolEventShopItemCost {
|
|
8924
|
-
currency: string
|
|
8925
|
-
/** @format int64 */
|
|
8926
|
-
cost: number
|
|
8927
|
-
/** @format float */
|
|
8928
|
-
discount?: number
|
|
8929
|
-
}
|
|
8930
|
-
|
|
8931
|
-
export interface LolEventShopItemDefinition {
|
|
8932
|
-
/** @format int32 */
|
|
8933
|
-
itemId: number
|
|
8934
|
-
inventoryType: string
|
|
8935
|
-
subInventoryType: string
|
|
8936
|
-
name: string
|
|
8937
|
-
description: string
|
|
8938
|
-
subTitle: string
|
|
8939
|
-
owned: boolean
|
|
8940
|
-
assets: LolEventShopCatalogPluginItemAssets
|
|
8941
|
-
tags: string[]
|
|
8942
|
-
metadata: LolEventShopItemMetadataEntry[]
|
|
8943
|
-
bundledItemPrice?: LolEventShopBundledItemPricingInfo
|
|
8944
|
-
loyaltyUnlocked: boolean
|
|
8945
|
-
}
|
|
8946
|
-
|
|
8947
|
-
export interface LolEventShopItemDetails {
|
|
8948
|
-
title: string
|
|
8949
|
-
subTitle: string
|
|
8950
|
-
description: string
|
|
8951
|
-
iconUrl: string
|
|
8952
|
-
}
|
|
8953
|
-
|
|
8954
|
-
export interface LolEventShopItemKey {
|
|
8955
|
-
inventoryType: string
|
|
8956
|
-
/** @format int32 */
|
|
8957
|
-
itemId: number
|
|
8958
|
-
}
|
|
8959
|
-
|
|
8960
|
-
export interface LolEventShopItemMetadataEntry {
|
|
8961
|
-
type: string
|
|
8962
|
-
value: string
|
|
8963
|
-
}
|
|
8964
|
-
|
|
8965
|
-
export interface LolEventShopItemOrderDTO {
|
|
8966
|
-
inventoryType: string
|
|
8967
|
-
/** @format int32 */
|
|
8968
|
-
itemId: number
|
|
8969
|
-
/** @format uint32 */
|
|
8970
|
-
quantity: number
|
|
8971
|
-
/** @format uint32 */
|
|
8972
|
-
rpCost: number
|
|
8973
|
-
}
|
|
8974
|
-
|
|
8975
|
-
export interface LolEventShopItemOwnership {
|
|
8976
|
-
itemKey: LolEventShopItemKey
|
|
8977
|
-
/** @format int32 */
|
|
8978
|
-
quantity: number
|
|
8979
|
-
}
|
|
8980
|
-
|
|
8981
|
-
export type LolEventShopItemOwnershipType = "F2P" | "LOYALTY" | "RENTED" | "OWNED"
|
|
8982
|
-
|
|
8983
|
-
export interface LolEventShopItemPrice {
|
|
8984
|
-
currencyType: string
|
|
8985
|
-
/** @format int64 */
|
|
8986
|
-
price: number
|
|
8987
|
-
purchasable: boolean
|
|
8988
|
-
}
|
|
8989
|
-
|
|
8990
|
-
export interface LolEventShopItemSale {
|
|
8991
|
-
startDate: string
|
|
8992
|
-
endDate: string
|
|
8993
|
-
/** @format float */
|
|
8994
|
-
discount?: number
|
|
8995
|
-
}
|
|
8996
|
-
|
|
8997
|
-
export interface LolEventShopItemUIData {
|
|
8998
|
-
itemId: string
|
|
8999
|
-
inventoryType: string
|
|
9000
|
-
/** @format uint32 */
|
|
9001
|
-
price: number
|
|
9002
|
-
/** @format uint32 */
|
|
9003
|
-
quantity: number
|
|
9004
|
-
}
|
|
9005
|
-
|
|
9006
|
-
export interface LolEventShopLargeSelectionDisplayUIData {
|
|
9007
|
-
selectedRewardTrackItem: LolEventShopRewardTrackItem
|
|
9008
|
-
}
|
|
9009
|
-
|
|
9010
|
-
export interface LolEventShopLevelBoostPurchaseUIData {
|
|
9011
|
-
offerId: string
|
|
9012
|
-
rewardTrackItems: LolEventShopRewardTrackItem[]
|
|
9013
|
-
}
|
|
9014
|
-
|
|
9015
|
-
export interface LolEventShopLoginSession {
|
|
9016
|
-
puuid?: string
|
|
9017
|
-
state: LolEventShopLoginSessionStates
|
|
9018
|
-
/** @format uint64 */
|
|
9019
|
-
summonerId: number
|
|
9020
|
-
/** @format uint64 */
|
|
9021
|
-
accountId: number
|
|
9022
|
-
idToken: string
|
|
9023
|
-
}
|
|
9024
|
-
|
|
9025
|
-
export type LolEventShopLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
9026
|
-
|
|
9027
|
-
export interface LolEventShopLoyaltyRewards {
|
|
9028
|
-
/** @format int32 */
|
|
9029
|
-
freeRewardedChampionsCount: number
|
|
9030
|
-
championIds: number[]
|
|
9031
|
-
/** @format int32 */
|
|
9032
|
-
freeRewardedSkinsCount: number
|
|
9033
|
-
skinIds: number[]
|
|
9034
|
-
/** @format int32 */
|
|
9035
|
-
ipBoost: number
|
|
9036
|
-
xpBoost: Record<string, number>
|
|
9037
|
-
/** @format int32 */
|
|
9038
|
-
loyaltyTFTMapSkinCount: number
|
|
9039
|
-
/** @format int32 */
|
|
9040
|
-
loyaltyTFTCompanionCount: number
|
|
9041
|
-
/** @format int32 */
|
|
9042
|
-
loyaltyTFTDamageSkinCount: number
|
|
9043
|
-
loyaltySources: Record<string, boolean>
|
|
9044
|
-
}
|
|
9045
|
-
|
|
9046
|
-
export interface LolEventShopLoyaltyRewardsSimplified {
|
|
9047
|
-
/** @format int32 */
|
|
9048
|
-
freeRewardedChampionsCount: number
|
|
9049
|
-
championIds: number[]
|
|
9050
|
-
/** @format int32 */
|
|
9051
|
-
freeRewardedSkinsCount: number
|
|
9052
|
-
skinIds: number[]
|
|
9053
|
-
/** @format int32 */
|
|
9054
|
-
ipBoost: number
|
|
9055
|
-
/** @format int32 */
|
|
9056
|
-
xpBoost: number
|
|
9057
|
-
/** @format int32 */
|
|
9058
|
-
loyaltyTFTMapSkinCount: number
|
|
9059
|
-
/** @format int32 */
|
|
9060
|
-
loyaltyTFTCompanionCount: number
|
|
9061
|
-
/** @format int32 */
|
|
9062
|
-
loyaltyTFTDamageSkinCount: number
|
|
9063
|
-
loyaltySources: Record<string, boolean>
|
|
9064
|
-
}
|
|
9065
|
-
|
|
9066
|
-
export type LolEventShopLoyaltyStatus = "DISABLED" | "REVOKE" | "CHANGE" | "EXPIRY" | "REWARDS_GRANT" | "LEGACY"
|
|
9067
|
-
|
|
9068
|
-
export interface LolEventShopLoyaltyStatusNotification {
|
|
9069
|
-
status: LolEventShopLoyaltyStatus
|
|
9070
|
-
rewards: LolEventShopLoyaltyRewardsSimplified
|
|
9071
|
-
reloadInventory: boolean
|
|
9072
|
-
}
|
|
9073
|
-
|
|
9074
|
-
export interface LolEventShopMilestone {
|
|
9075
|
-
id: string
|
|
9076
|
-
name: string
|
|
9077
|
-
groupId: string
|
|
9078
|
-
counterId: string
|
|
9079
|
-
/** @format int64 */
|
|
9080
|
-
triggerValue: number
|
|
9081
|
-
properties: Record<string, string>
|
|
9082
|
-
}
|
|
9083
|
-
|
|
9084
|
-
export interface LolEventShopMilestoneInstance {
|
|
9085
|
-
milestoneId: string
|
|
9086
|
-
instanceId: string
|
|
9087
|
-
ownerId: string
|
|
9088
|
-
productId: string
|
|
9089
|
-
groupId: string
|
|
9090
|
-
counterId: string
|
|
9091
|
-
/** @format int64 */
|
|
9092
|
-
triggerValue: number
|
|
9093
|
-
/** @format uint32 */
|
|
9094
|
-
repeatSequence: number
|
|
9095
|
-
triggered: boolean
|
|
9096
|
-
triggeredTimestamp: string
|
|
9097
|
-
triggers: LolEventShopTrigger[]
|
|
9098
|
-
}
|
|
9099
|
-
|
|
9100
|
-
export interface LolEventShopNavigationButtonUIData {
|
|
9101
|
-
activeEventId: string
|
|
9102
|
-
showPip: boolean
|
|
9103
|
-
showGlow: boolean
|
|
9104
|
-
iconPath: string
|
|
9105
|
-
}
|
|
9106
|
-
|
|
9107
|
-
export interface LolEventShopOffer {
|
|
9108
|
-
id: string
|
|
9109
|
-
localizedTitle: string
|
|
9110
|
-
localizedDescription: string
|
|
9111
|
-
image: string
|
|
9112
|
-
promotionType: LolEventShopOfferPromotionType
|
|
9113
|
-
offerCategory: LolEventShopOfferCategory
|
|
9114
|
-
items: LolEventShopItem[]
|
|
9115
|
-
}
|
|
9116
|
-
|
|
9117
|
-
export type LolEventShopOfferCategory = "Currencies" | "Tft" | "Loot" | "Borders" | "Skins" | "Chromas" | "Featured"
|
|
9118
|
-
|
|
9119
|
-
export type LolEventShopOfferPromotionType = "kFeaturedHighlighted" | "kFeatured" | "kNone"
|
|
9120
|
-
|
|
9121
|
-
export type LolEventShopOfferStates = "kPurchasing" | "kUnrevealed" | "kUnavailable" | "kAvailable" | "kOwned"
|
|
9122
|
-
|
|
9123
|
-
export interface LolEventShopOfferUIData {
|
|
9124
|
-
id: string
|
|
9125
|
-
localizedTitle: string
|
|
9126
|
-
localizedDescription: string
|
|
9127
|
-
image: string
|
|
9128
|
-
highlighted: boolean
|
|
9129
|
-
offerState: LolEventShopOfferStates
|
|
9130
|
-
/** @format uint32 */
|
|
9131
|
-
price: number
|
|
9132
|
-
/** @format uint32 */
|
|
9133
|
-
maxQuantity: number
|
|
9134
|
-
items: LolEventShopItemUIData[]
|
|
9135
|
-
}
|
|
9136
|
-
|
|
9137
|
-
export interface LolEventShopOrderNotificationResource {
|
|
9138
|
-
eventTypeId: string
|
|
9139
|
-
eventType: string
|
|
9140
|
-
status: string
|
|
9141
|
-
}
|
|
9142
|
-
|
|
9143
|
-
export type LolEventShopPassOwnershipTypes = "Purchased" | "Unowned"
|
|
9144
|
-
|
|
9145
|
-
export interface LolEventShopPlayerNotification {
|
|
9146
|
-
critical: boolean
|
|
9147
|
-
detailKey: string
|
|
9148
|
-
source: string
|
|
9149
|
-
state: string
|
|
9150
|
-
titleKey: string
|
|
9151
|
-
type: string
|
|
9152
|
-
iconUrl: string
|
|
9153
|
-
}
|
|
9154
|
-
|
|
9155
|
-
export interface LolEventShopPlayerSettingsData {
|
|
9156
|
-
lastTimeSeen: string
|
|
9157
|
-
/** @format int64 */
|
|
9158
|
-
lastSeenTokenBalance: number
|
|
9159
|
-
/** @format uint32 */
|
|
9160
|
-
lastSeenTokenShopOffersVersion: number
|
|
9161
|
-
}
|
|
9162
|
-
|
|
9163
|
-
export interface LolEventShopPriceDetail {
|
|
9164
|
-
itemKey: LolEventShopItemKey
|
|
9165
|
-
price: LolEventShopItemPrice
|
|
9166
|
-
}
|
|
9167
|
-
|
|
9168
|
-
export interface LolEventShopPriceOptionDto {
|
|
9169
|
-
/** @format int64 */
|
|
9170
|
-
price: number
|
|
9171
|
-
currencyType: string
|
|
9172
|
-
currencyPaymentOption?: string
|
|
9173
|
-
currencyName?: string
|
|
9174
|
-
currencyImagePath?: string
|
|
9175
|
-
}
|
|
9176
|
-
|
|
9177
|
-
export interface LolEventShopProgressInfoUIData {
|
|
9178
|
-
tokenImage: string
|
|
9179
|
-
passPurchased: boolean
|
|
9180
|
-
eventPassBundlesCatalogEntry: LolEventShopCatalogEntry[]
|
|
9181
|
-
}
|
|
9182
|
-
|
|
9183
|
-
export interface LolEventShopPurchasableItem {
|
|
9184
|
-
item: LolEventShopItemDefinition
|
|
9185
|
-
dependencies: LolEventShopItemDefinition[]
|
|
9186
|
-
bundledItems: LolEventShopItemDefinition[]
|
|
9187
|
-
sale?: LolEventShopItemSale
|
|
9188
|
-
purchaseOptions: LolEventShopPurchaseOption[]
|
|
9189
|
-
validationErrors: LolEventShopValidationErrorEntry[]
|
|
9190
|
-
}
|
|
9191
|
-
|
|
9192
|
-
export interface LolEventShopPurchaseItem {
|
|
9193
|
-
itemKey: LolEventShopItemKey
|
|
9194
|
-
/** @format int32 */
|
|
9195
|
-
quantity: number
|
|
9196
|
-
source: string
|
|
9197
|
-
purchaseCurrencyInfo: LolEventShopItemPrice
|
|
9198
|
-
}
|
|
9199
|
-
|
|
9200
|
-
export type LolEventShopPurchaseOfferOrderStates = "SUCCESS" | "FAIL" | "IN_PROGRESS" | "NOT_STARTED"
|
|
9201
|
-
|
|
9202
|
-
export interface LolEventShopPurchaseOfferOrderStatus {
|
|
9203
|
-
orderState: LolEventShopPurchaseOfferOrderStates
|
|
9204
|
-
message: string
|
|
9205
|
-
}
|
|
9206
|
-
|
|
9207
|
-
export interface LolEventShopPurchaseOfferOrderStatuses {
|
|
9208
|
-
statuses: Record<string, LolEventShopPurchaseOfferOrderStatus>
|
|
9209
|
-
}
|
|
9210
|
-
|
|
9211
|
-
export interface LolEventShopPurchaseOfferRequest {
|
|
9212
|
-
offerId: string
|
|
9213
|
-
/** @format uint32 */
|
|
9214
|
-
purchaseQuantity: number
|
|
9215
|
-
}
|
|
9216
|
-
|
|
9217
|
-
export interface LolEventShopPurchaseOfferRequestV3 {
|
|
9218
|
-
offerId: string
|
|
9219
|
-
currencyType: string
|
|
9220
|
-
/** @format uint32 */
|
|
9221
|
-
quantity: number
|
|
9222
|
-
/** @format uint32 */
|
|
9223
|
-
price: number
|
|
9224
|
-
}
|
|
9225
|
-
|
|
9226
|
-
export interface LolEventShopPurchaseOfferResponseV3 {
|
|
9227
|
-
legacy: boolean
|
|
9228
|
-
orderDto?: LolEventShopCapOrdersOrderDto
|
|
9229
|
-
}
|
|
9230
|
-
|
|
9231
|
-
export interface LolEventShopPurchaseOption {
|
|
9232
|
-
priceDetails: LolEventShopPriceDetail[]
|
|
9233
|
-
}
|
|
9234
|
-
|
|
9235
|
-
export interface LolEventShopPurchaseOrderRequestDTO {
|
|
9236
|
-
/** @format uint64 */
|
|
9237
|
-
accountId: number
|
|
9238
|
-
items: LolEventShopItemOrderDTO[]
|
|
9239
|
-
}
|
|
9240
|
-
|
|
9241
|
-
export interface LolEventShopPurchaseOrderResponseDTO {
|
|
9242
|
-
/** @format int64 */
|
|
9243
|
-
rpBalance: number
|
|
9244
|
-
/** @format int64 */
|
|
9245
|
-
ipBalance: number
|
|
9246
|
-
transactions: LolEventShopTransactionResponseDTO[]
|
|
9247
|
-
}
|
|
9248
|
-
|
|
9249
|
-
export interface LolEventShopPurchaseRequest {
|
|
9250
|
-
items: LolEventShopPurchaseItem[]
|
|
9251
|
-
}
|
|
9252
|
-
|
|
9253
|
-
export interface LolEventShopPurchaseResponse {
|
|
9254
|
-
items: LolEventShopPurchaseItem[]
|
|
9255
|
-
transactions: LolEventShopTransaction[]
|
|
9256
|
-
useRMSConfirmation: boolean
|
|
9257
|
-
}
|
|
9258
|
-
|
|
9259
|
-
export interface LolEventShopPurchaseWidgetConfig {
|
|
9260
|
-
enabled: boolean
|
|
9261
|
-
nonRefundableDisclaimerEnabled: boolean
|
|
9262
|
-
alwaysShowPurchaseDisclaimer: boolean
|
|
9263
|
-
}
|
|
9264
|
-
|
|
9265
|
-
export interface LolEventShopRMSPayload {
|
|
9266
|
-
productId: string
|
|
9267
|
-
affinities: string[]
|
|
9268
|
-
}
|
|
9269
|
-
|
|
9270
|
-
export interface LolEventShopRegionLocale {
|
|
9271
|
-
region: string
|
|
9272
|
-
locale: string
|
|
9273
|
-
}
|
|
9274
|
-
|
|
9275
|
-
export interface LolEventShopRepeat {
|
|
9276
|
-
/** @format int32 */
|
|
9277
|
-
count: number
|
|
9278
|
-
/** @format uint32 */
|
|
9279
|
-
scope: number
|
|
9280
|
-
/** @format float */
|
|
9281
|
-
multiplier: number
|
|
9282
|
-
milestones: LolEventShopMilestone[]
|
|
9283
|
-
repeatTriggers: LolEventShopRepeatGroupTrigger[]
|
|
9284
|
-
}
|
|
9285
|
-
|
|
9286
|
-
export interface LolEventShopRepeatGroupTrigger {
|
|
9287
|
-
type: string
|
|
9288
|
-
counterId: string
|
|
9289
|
-
/** @format uint16 */
|
|
9290
|
-
startTriggerValue: number
|
|
9291
|
-
/** @format uint16 */
|
|
9292
|
-
increaseBy: number
|
|
9293
|
-
/** @format float */
|
|
9294
|
-
multiplier: number
|
|
9295
|
-
}
|
|
9296
|
-
|
|
9297
|
-
export interface LolEventShopRequestDTO_SelectionRequestDTO {
|
|
9298
|
-
data: LolEventShopSelectionRequestDTO
|
|
9299
|
-
metadata: LolEventShopRequestMetadataDTO
|
|
9300
|
-
}
|
|
9301
|
-
|
|
9302
|
-
export interface LolEventShopRequestDTO_vector_SelectionRequestDTO {
|
|
9303
|
-
data: LolEventShopSelectionRequestDTO[]
|
|
9304
|
-
metadata: LolEventShopRequestMetadataDTO
|
|
9305
|
-
}
|
|
9306
|
-
|
|
9307
|
-
export interface LolEventShopRequestDTO_vector_string {
|
|
9308
|
-
data: string[]
|
|
9309
|
-
metadata: LolEventShopRequestMetadataDTO
|
|
9310
|
-
}
|
|
9311
|
-
|
|
9312
|
-
export interface LolEventShopRequestMetadataDTO {
|
|
9313
|
-
transactionId?: string
|
|
9314
|
-
}
|
|
9315
|
-
|
|
9316
|
-
export interface LolEventShopResponseDTO_SvcRewardGrant {
|
|
9317
|
-
data: LolEventShopSvcRewardGrant
|
|
9318
|
-
metadata: LolEventShopResponseMetadataDTO
|
|
9319
|
-
}
|
|
9320
|
-
|
|
9321
|
-
export interface LolEventShopResponseDTO_map_RewardGroupId_SelectGrantStatus {
|
|
9322
|
-
data: Record<string, LolEventShopSelectGrantStatusResponse>
|
|
9323
|
-
metadata: LolEventShopResponseMetadataDTO
|
|
9324
|
-
}
|
|
9325
|
-
|
|
9326
|
-
export interface LolEventShopResponseDTO_vector_SvcRewardGrant {
|
|
9327
|
-
data: LolEventShopSvcRewardGrant[]
|
|
9328
|
-
metadata: LolEventShopResponseMetadataDTO
|
|
9329
|
-
}
|
|
9330
|
-
|
|
9331
|
-
export interface LolEventShopResponseDTO_vector_SvcRewardGroup {
|
|
9332
|
-
data: LolEventShopSvcRewardGroup[]
|
|
9333
|
-
metadata: LolEventShopResponseMetadataDTO
|
|
9334
|
-
}
|
|
9335
|
-
|
|
9336
|
-
export interface LolEventShopResponseMetadataDTO {
|
|
9337
|
-
[key: string | number]: any
|
|
9338
|
-
}
|
|
9339
|
-
|
|
9340
|
-
export interface LolEventShopReward {
|
|
9341
|
-
id: string
|
|
9342
|
-
itemId: string
|
|
9343
|
-
itemType: string
|
|
9344
|
-
/** @format int32 */
|
|
9345
|
-
quantity: number
|
|
9346
|
-
fulfillmentSource: string
|
|
9347
|
-
media: Record<string, string>
|
|
9348
|
-
localizations: Record<string, string>
|
|
9349
|
-
}
|
|
9350
|
-
|
|
9351
|
-
export interface LolEventShopRewardChoiceUIData {
|
|
9352
|
-
rewardTrackItems: LolEventShopRewardTrackItem[]
|
|
9353
|
-
}
|
|
9354
|
-
|
|
9355
|
-
export interface LolEventShopRewardGrant {
|
|
9356
|
-
info: LolEventShopSvcRewardGrant
|
|
9357
|
-
rewardGroup: LolEventShopSvcRewardGroup
|
|
9358
|
-
}
|
|
9359
|
-
|
|
9360
|
-
export type LolEventShopRewardStatus = "FAILED" | "FULFILLED" | "PENDING"
|
|
9361
|
-
|
|
9362
|
-
export type LolEventShopRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
9363
|
-
|
|
9364
|
-
export interface LolEventShopRewardTrack {
|
|
9365
|
-
trackConfig: LolEventShopRewardTrackConfiguration
|
|
9366
|
-
}
|
|
9367
|
-
|
|
9368
|
-
export interface LolEventShopRewardTrackConfiguration {
|
|
9369
|
-
id: string
|
|
9370
|
-
premiumEntitlementId: string
|
|
9371
|
-
}
|
|
9372
|
-
|
|
9373
|
-
export interface LolEventShopRewardTrackItem {
|
|
9374
|
-
state: LolEventShopRewardTrackItemStates
|
|
9375
|
-
rewardOptions: LolEventShopRewardTrackItemOption[]
|
|
9376
|
-
rewardTags: LolEventShopRewardTrackItemTag[]
|
|
9377
|
-
/** @format int64 */
|
|
9378
|
-
progressRequired: number
|
|
9379
|
-
threshold: string
|
|
9380
|
-
}
|
|
9381
|
-
|
|
9382
|
-
export type LolEventShopRewardTrackItemHeaderType = "NONE" | "FREE" | "PREMIUM"
|
|
9383
|
-
|
|
9384
|
-
export interface LolEventShopRewardTrackItemOption {
|
|
9385
|
-
state: LolEventShopRewardTrackItemStates
|
|
9386
|
-
thumbIconPath: string
|
|
9387
|
-
largeDisplayImagePath: string
|
|
9388
|
-
selected: boolean
|
|
9389
|
-
overrideFooter: string
|
|
9390
|
-
headerType: LolEventShopRewardTrackItemHeaderType
|
|
9391
|
-
rewardName: string
|
|
9392
|
-
rewardDescription: string
|
|
9393
|
-
}
|
|
9394
|
-
|
|
9395
|
-
export type LolEventShopRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
|
|
9396
|
-
|
|
9397
|
-
export type LolEventShopRewardTrackItemTag = "Multiple" | "Choice" | "Instant" | "Free" | "Rare"
|
|
9398
|
-
|
|
9399
|
-
export interface LolEventShopRewardTrackProgress {
|
|
9400
|
-
/** @format int16 */
|
|
9401
|
-
level: number
|
|
9402
|
-
/** @format uint16 */
|
|
9403
|
-
levelProgress: number
|
|
9404
|
-
/** @format uint16 */
|
|
9405
|
-
futureLevelProgress: number
|
|
9406
|
-
/** @format int64 */
|
|
9407
|
-
passProgress: number
|
|
9408
|
-
/** @format int64 */
|
|
9409
|
-
currentLevelXP: number
|
|
9410
|
-
/** @format int64 */
|
|
9411
|
-
totalLevelXP: number
|
|
9412
|
-
/** @format uint32 */
|
|
9413
|
-
iteration: number
|
|
9414
|
-
}
|
|
9415
|
-
|
|
9416
|
-
export interface LolEventShopRewardTrackXP {
|
|
9417
|
-
/** @format int64 */
|
|
9418
|
-
currentLevel: number
|
|
9419
|
-
/** @format int64 */
|
|
9420
|
-
currentLevelXP: number
|
|
9421
|
-
/** @format int64 */
|
|
9422
|
-
totalLevelXP: number
|
|
9423
|
-
isBonusPhase: boolean
|
|
9424
|
-
/** @format uint32 */
|
|
9425
|
-
iteration: number
|
|
9426
|
-
}
|
|
9427
|
-
|
|
9428
|
-
export interface LolEventShopRewardsConfig {
|
|
9429
|
-
GrantFiltering: boolean
|
|
9430
|
-
}
|
|
9431
|
-
|
|
9432
|
-
export interface LolEventShopRiotMessagingServiceMessage {
|
|
9433
|
-
resource: string
|
|
9434
|
-
service: string
|
|
9435
|
-
version: string
|
|
9436
|
-
/** @format int64 */
|
|
9437
|
-
timestamp: number
|
|
9438
|
-
payload: string
|
|
9439
|
-
}
|
|
9440
|
-
|
|
9441
|
-
export interface LolEventShopRmsEntitlementPayload {
|
|
9442
|
-
itemId: string
|
|
9443
|
-
itemTypeId: string
|
|
9444
|
-
entitlementTypeId: string
|
|
9445
|
-
resourceOperation: string
|
|
9446
|
-
}
|
|
9447
|
-
|
|
9448
|
-
export interface LolEventShopRmsStoreEntitlementItem {
|
|
9449
|
-
inventoryType: string
|
|
9450
|
-
itemId: string
|
|
9451
|
-
}
|
|
9452
|
-
|
|
9453
|
-
export interface LolEventShopRmsStoreEntitlementPayload {
|
|
9454
|
-
transactionId: string
|
|
9455
|
-
items: LolEventShopRmsStoreEntitlementItem[]
|
|
9456
|
-
}
|
|
9457
|
-
|
|
9458
|
-
export interface LolEventShopRmsWalletPayload {
|
|
9459
|
-
[key: string | number]: any
|
|
9460
|
-
}
|
|
9461
|
-
|
|
9462
|
-
export interface LolEventShopRmsXboxSubscriptionChange {
|
|
9463
|
-
puuid: string
|
|
9464
|
-
subscriptionId: string
|
|
9465
|
-
active: string
|
|
9466
|
-
identityProvider: string[]
|
|
9467
|
-
}
|
|
9468
|
-
|
|
9469
|
-
export interface LolEventShopSale {
|
|
9470
|
-
startDate: string
|
|
9471
|
-
endDate: string
|
|
9472
|
-
prices: LolEventShopItemCost[]
|
|
9473
|
-
}
|
|
9474
|
-
|
|
9475
|
-
export type LolEventShopSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
9476
|
-
|
|
9477
|
-
export interface LolEventShopSelectionRequestDTO {
|
|
9478
|
-
grantId: string
|
|
9479
|
-
rewardGroupId: string
|
|
9480
|
-
selections: string[]
|
|
9481
|
-
}
|
|
9482
|
-
|
|
9483
|
-
export interface LolEventShopSelectionStrategyConfig {
|
|
9484
|
-
/** @format uint32 */
|
|
9485
|
-
minSelectionsAllowed: number
|
|
9486
|
-
/** @format uint32 */
|
|
9487
|
-
maxSelectionsAllowed: number
|
|
9488
|
-
}
|
|
9489
|
-
|
|
9490
|
-
export interface LolEventShopSettingsResource {
|
|
9491
|
-
data: LolEventShopPlayerSettingsData
|
|
9492
|
-
/** @format int16 */
|
|
9493
|
-
schemaVersion: number
|
|
9494
|
-
}
|
|
9495
|
-
|
|
9496
|
-
export interface LolEventShopSimpleInventoryDTO {
|
|
9497
|
-
items: Record<string, unknown>
|
|
9498
|
-
itemsJwt: string
|
|
9499
|
-
expires: string
|
|
9500
|
-
}
|
|
9501
|
-
|
|
9502
|
-
export interface LolEventShopSimpleInventoryResponseDTO {
|
|
9503
|
-
data: LolEventShopSimpleInventoryDTO
|
|
9504
|
-
}
|
|
9505
|
-
|
|
9506
|
-
export interface LolEventShopSkinLineDescriptionDto {
|
|
9507
|
-
title: string
|
|
9508
|
-
description: string
|
|
9509
|
-
iconImagePath: string
|
|
9510
|
-
}
|
|
9511
|
-
|
|
9512
|
-
export interface LolEventShopSkinLineDescriptionInfo {
|
|
9513
|
-
title: string
|
|
9514
|
-
description: string
|
|
9515
|
-
iconPath: string
|
|
9516
|
-
}
|
|
9517
|
-
|
|
9518
|
-
export interface LolEventShopSkinLineInfo {
|
|
9519
|
-
name: string
|
|
9520
|
-
descriptionInfo: LolEventShopSkinLineDescriptionInfo[]
|
|
9521
|
-
splashPath: string
|
|
9522
|
-
tilePath: string
|
|
9523
|
-
collectionCardPath: string
|
|
9524
|
-
uncenteredSplashPath: string
|
|
9525
|
-
collectionDescription: string
|
|
9526
|
-
tiers: LolEventShopSkinLineTier[]
|
|
9527
|
-
}
|
|
9528
|
-
|
|
9529
|
-
export interface LolEventShopSkinLineItemDto {
|
|
9530
|
-
thumbnailImagePath: string
|
|
9531
|
-
largeImagePath?: string
|
|
9532
|
-
localizedLongName: string
|
|
9533
|
-
localizedShortName: string
|
|
9534
|
-
largeVideoPath?: string
|
|
9535
|
-
}
|
|
9536
|
-
|
|
9537
|
-
export interface LolEventShopSkinLineTier {
|
|
9538
|
-
/** @format int64 */
|
|
9539
|
-
id: number
|
|
9540
|
-
name: string
|
|
9541
|
-
/** @format int64 */
|
|
9542
|
-
stage: number
|
|
9543
|
-
description?: string
|
|
9544
|
-
splashPath: string
|
|
9545
|
-
uncenteredSplashPath: string
|
|
9546
|
-
tilePath: string
|
|
9547
|
-
loadScreenPath: string
|
|
9548
|
-
shortName: string
|
|
9549
|
-
splashVideoPath?: string
|
|
9550
|
-
collectionSplashVideoPath?: string
|
|
9551
|
-
}
|
|
9552
|
-
|
|
9553
|
-
export interface LolEventShopSummonerIcon {
|
|
9554
|
-
/** @format int32 */
|
|
9555
|
-
itemId: number
|
|
9556
|
-
}
|
|
9557
|
-
|
|
9558
|
-
export interface LolEventShopSvcRewardGrant {
|
|
9559
|
-
id: string
|
|
9560
|
-
granteeId: string
|
|
9561
|
-
rewardGroupId: string
|
|
9562
|
-
dateCreated: string
|
|
9563
|
-
status: LolEventShopGrantStatus
|
|
9564
|
-
grantElements: LolEventShopSvcRewardGrantElement[]
|
|
9565
|
-
selectedIds: string[]
|
|
9566
|
-
viewed: boolean
|
|
9567
|
-
grantorDescription: LolEventShopGrantorDescription
|
|
9568
|
-
messageParameters: Record<string, unknown>
|
|
9569
|
-
}
|
|
9570
|
-
|
|
9571
|
-
export interface LolEventShopSvcRewardGrantElement {
|
|
9572
|
-
elementId: string
|
|
9573
|
-
itemId: string
|
|
9574
|
-
itemType: string
|
|
9575
|
-
fulfillmentSource: string
|
|
9576
|
-
status: LolEventShopRewardStatus
|
|
9577
|
-
/** @format int32 */
|
|
9578
|
-
quantity: number
|
|
9579
|
-
media: Record<string, string>
|
|
9580
|
-
localizations: Record<string, string>
|
|
9581
|
-
}
|
|
9582
|
-
|
|
9583
|
-
export interface LolEventShopSvcRewardGroup {
|
|
9584
|
-
id: string
|
|
9585
|
-
productId: string
|
|
9586
|
-
types: string[]
|
|
9587
|
-
rewards: LolEventShopReward[]
|
|
9588
|
-
childRewardGroupIds: string[]
|
|
9589
|
-
rewardStrategy: LolEventShopRewardStrategy
|
|
9590
|
-
selectionStrategyConfig?: LolEventShopSelectionStrategyConfig
|
|
9591
|
-
active: boolean
|
|
9592
|
-
media: Record<string, string>
|
|
9593
|
-
localizations: Record<string, string>
|
|
9594
|
-
celebrationType: LolEventShopCelebrationType
|
|
9595
|
-
}
|
|
9596
|
-
|
|
9597
|
-
export interface LolEventShopTokenShop {
|
|
9598
|
-
tokenImage: string
|
|
9599
|
-
tokenName: string
|
|
9600
|
-
tokenUuid: string
|
|
9601
|
-
offers: LolEventShopOffer[]
|
|
9602
|
-
contentDrops: LolEventShopContentDrop[]
|
|
9603
|
-
tokenBundlesCatalogEntry: LolEventShopCatalogEntry[]
|
|
9604
|
-
}
|
|
9605
|
-
|
|
9606
|
-
export interface LolEventShopTokenShopUIData {
|
|
9607
|
-
tokenName: string
|
|
9608
|
-
tokenImage: string
|
|
9609
|
-
tokenUuid: string
|
|
9610
|
-
/** @format uint32 */
|
|
9611
|
-
offersVersion: number
|
|
9612
|
-
tokenBundlesCatalogEntry: LolEventShopCatalogEntry[]
|
|
9613
|
-
}
|
|
9614
|
-
|
|
9615
|
-
export interface LolEventShopTokenUpsell {
|
|
9616
|
-
id: string
|
|
9617
|
-
internalName: string
|
|
9618
|
-
title: string
|
|
9619
|
-
buttonText: string
|
|
9620
|
-
tooltipTitle: string
|
|
9621
|
-
tooltipDescription: string
|
|
9622
|
-
purchaseUrl: string
|
|
9623
|
-
tooltipBackgroundUrl: string
|
|
9624
|
-
backgroundUrl: string
|
|
9625
|
-
currencyUrl: string
|
|
9626
|
-
premiumCurrencyName: string
|
|
9627
|
-
dependentInventoryType: string
|
|
9628
|
-
/** @format int32 */
|
|
9629
|
-
dependentInventoryId: number
|
|
9630
|
-
currentlyLocked: LolEventShopTokenUpsellLockedType
|
|
9631
|
-
/** @format int32 */
|
|
9632
|
-
lockedCount: number
|
|
9633
|
-
startDate: string
|
|
9634
|
-
endDate: string
|
|
9635
|
-
}
|
|
9636
|
-
|
|
9637
|
-
export type LolEventShopTokenUpsellLockedType = "UNLOCKED" | "LOCKED" | "UNASSIGNED"
|
|
9638
|
-
|
|
9639
|
-
export interface LolEventShopTransaction {
|
|
9640
|
-
transactionId: string
|
|
9641
|
-
itemKey: LolEventShopItemKey
|
|
9642
|
-
itemName: string
|
|
9643
|
-
iconUrl: string
|
|
9644
|
-
}
|
|
9645
|
-
|
|
9646
|
-
export interface LolEventShopTransactionResponseDTO {
|
|
9647
|
-
id: string
|
|
9648
|
-
inventoryType: string
|
|
9649
|
-
/** @format int32 */
|
|
9650
|
-
itemId: number
|
|
9651
|
-
}
|
|
9652
|
-
|
|
9653
|
-
export interface LolEventShopTrigger {
|
|
9654
|
-
type: string
|
|
9655
|
-
counterId: string
|
|
9656
|
-
/** @format uint64 */
|
|
9657
|
-
triggerValue: number
|
|
9658
|
-
}
|
|
9659
|
-
|
|
9660
|
-
export interface LolEventShopUnclaimedRewardsUIData {
|
|
9661
|
-
/** @format int32 */
|
|
9662
|
-
rewardsCount: number
|
|
9663
|
-
/** @format int32 */
|
|
9664
|
-
lockedTokensCount: number
|
|
9665
|
-
}
|
|
9666
|
-
|
|
9667
|
-
export interface LolEventShopValidateOfferError {
|
|
9668
|
-
errorKey: string
|
|
9669
|
-
meta: string
|
|
9670
|
-
}
|
|
9671
|
-
|
|
9672
|
-
export interface LolEventShopValidateOfferRequestV3 {
|
|
9673
|
-
offerId: string
|
|
9674
|
-
}
|
|
9675
|
-
|
|
9676
|
-
export interface LolEventShopValidateOfferResponseV3 {
|
|
9677
|
-
validationErrors: LolEventShopValidateOfferError[]
|
|
9678
|
-
}
|
|
9679
|
-
|
|
9680
|
-
export interface LolEventShopValidationError {
|
|
9681
|
-
errorCode: string
|
|
9682
|
-
message: string
|
|
9683
|
-
errorDetails: Record<string, string>
|
|
9684
|
-
responseItems: string[]
|
|
9685
|
-
}
|
|
9686
|
-
|
|
9687
|
-
export interface LolEventShopValidationErrorEntry {
|
|
9688
|
-
id: string
|
|
9689
|
-
}
|
|
9690
|
-
|
|
9691
|
-
export interface LolEventShopValidationRequest {
|
|
9692
|
-
items: LolEventShopValidationRequestItem[]
|
|
9693
|
-
ownedItems: LolEventShopItemOwnership[]
|
|
9694
|
-
}
|
|
9695
|
-
|
|
9696
|
-
export interface LolEventShopValidationRequestItem {
|
|
9697
|
-
itemKey: LolEventShopItemKey
|
|
9698
|
-
/** @format int32 */
|
|
9699
|
-
quantity: number
|
|
9700
|
-
}
|
|
9701
|
-
|
|
9702
|
-
export interface LolEventShopValidationResponse {
|
|
9703
|
-
items: LolEventShopValidationResponseItem[]
|
|
9704
|
-
valid: boolean
|
|
9705
|
-
}
|
|
9706
|
-
|
|
9707
|
-
export interface LolEventShopValidationResponseItem {
|
|
9708
|
-
itemKey: LolEventShopItemKey
|
|
9709
|
-
/** @format int32 */
|
|
9710
|
-
quantity: number
|
|
9711
|
-
validationCurrencyInfo: LolEventShopItemPrice[]
|
|
9712
|
-
sale?: LolEventShopSale
|
|
9713
|
-
name?: string
|
|
9714
|
-
description?: string
|
|
9715
|
-
}
|
|
9716
|
-
|
|
9717
|
-
export interface LolEventShopWallet {
|
|
9718
|
-
/** @format uint64 */
|
|
9719
|
-
accountId: number
|
|
9720
|
-
balances: LolEventShopBalance[]
|
|
9721
|
-
/** @format int32 */
|
|
9722
|
-
version: number
|
|
9723
|
-
}
|
|
9724
|
-
|
|
9725
|
-
export interface LolEventShopWalletCacheEntry {
|
|
9726
|
-
signedBalancesJwt: string
|
|
9727
|
-
/** @format uint64 */
|
|
9728
|
-
expirationMS: number
|
|
9729
|
-
/** @format uint64 */
|
|
9730
|
-
issuedAtMS: number
|
|
9731
|
-
/** @format uint64 */
|
|
9732
|
-
receivedAtMS: number
|
|
9733
|
-
valid: boolean
|
|
9734
|
-
}
|
|
9735
|
-
|
|
9736
|
-
export interface LolEventShopWalletDTO {
|
|
9737
|
-
puuid: string
|
|
9738
|
-
/** @format int64 */
|
|
9739
|
-
accountId: number
|
|
9740
|
-
expires: string
|
|
9741
|
-
balances: Record<string, number>
|
|
9742
|
-
balancesJwt: string
|
|
9743
|
-
}
|
|
9744
|
-
|
|
9745
|
-
export interface LolEventShopWalletResponseDTO {
|
|
9746
|
-
data: LolEventShopWalletDTO
|
|
9747
|
-
}
|
|
9748
|
-
|
|
9749
|
-
export interface LolEventShopXboxSubscriptionStatus {
|
|
9750
|
-
active: string
|
|
9751
|
-
subscriptionId: string
|
|
9752
|
-
}
|
|
9753
|
-
|
|
9754
|
-
export interface LolFeaturedModesAccountIdAndSummonerId {
|
|
9755
|
-
/** @format uint64 */
|
|
9756
|
-
summonerId: number
|
|
9757
|
-
}
|
|
9758
|
-
|
|
9759
|
-
export interface LolFeaturedModesCollectionsOwnership {
|
|
9760
|
-
loyaltyReward: boolean
|
|
9761
|
-
xboxGPReward: boolean
|
|
9762
|
-
owned: boolean
|
|
9763
|
-
}
|
|
9764
|
-
|
|
9765
|
-
export interface LolFeaturedModesCollectionsSummonerIcon {
|
|
9766
|
-
/** @format int32 */
|
|
9767
|
-
iconId: number
|
|
9768
|
-
ownership: LolFeaturedModesCollectionsOwnership
|
|
9769
|
-
}
|
|
9770
|
-
|
|
9771
|
-
export interface LolFeaturedModesEligibility {
|
|
9772
|
-
/** @format int32 */
|
|
9773
|
-
queueId: number
|
|
9774
|
-
eligible: boolean
|
|
9775
|
-
restrictions: LolFeaturedModesEligibilityRestriction[]
|
|
9776
|
-
}
|
|
9777
|
-
|
|
9778
|
-
export interface LolFeaturedModesEligibilityRestriction {
|
|
9779
|
-
restrictionCode: LolFeaturedModesEligibilityRestrictionCode
|
|
9780
|
-
restrictionArgs: Record<string, string>
|
|
9781
|
-
/** @format uint64 */
|
|
9782
|
-
expiredTimestamp: number
|
|
9783
|
-
summonerIds: number[]
|
|
9784
|
-
}
|
|
9785
|
-
|
|
9786
|
-
export type LolFeaturedModesEligibilityRestrictionCode = "UnknownRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
9787
|
-
|
|
9788
|
-
export interface LolFeaturedModesFeaturedModesConfig {
|
|
9789
|
-
NotificationsEnabled: boolean
|
|
9790
|
-
/** @format uint32 */
|
|
9791
|
-
QueueToggleNotificationMinutesThreshold: number
|
|
9792
|
-
/** @format uint32 */
|
|
9793
|
-
MaxNotificationSaveDelayMinutes: number
|
|
9794
|
-
}
|
|
9795
|
-
|
|
9796
|
-
export interface LolFeaturedModesGameflowAvailability {
|
|
9797
|
-
isAvailable: boolean
|
|
9798
|
-
state: LolFeaturedModesGameflowAvailabilityState
|
|
9799
|
-
}
|
|
9800
|
-
|
|
9801
|
-
export type LolFeaturedModesGameflowAvailabilityState = "Configuration" | "InGameFlow" | "PlayerBanned" | "EligibilityInfoMissing" | "Patching" | "Initializing" | "Available"
|
|
9802
|
-
|
|
9803
|
-
export type LolFeaturedModesGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
9804
|
-
|
|
9805
|
-
export interface LolFeaturedModesGameflowSession {
|
|
9806
|
-
phase: LolFeaturedModesGameflowPhase
|
|
9807
|
-
}
|
|
9808
|
-
|
|
9809
|
-
export interface LolFeaturedModesLoginSession {
|
|
9810
|
-
state: LolFeaturedModesLoginSessionStates
|
|
9811
|
-
/** @format uint64 */
|
|
9812
|
-
summonerId: number
|
|
9813
|
-
}
|
|
9814
|
-
|
|
9815
|
-
export type LolFeaturedModesLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
9816
|
-
|
|
9817
|
-
export interface LolFeaturedModesMaps {
|
|
9818
|
-
gameModeName: string
|
|
9819
|
-
isRGM: boolean
|
|
9820
|
-
assets: Record<string, string>
|
|
8595
|
+
export type LolFeaturedModesLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
8596
|
+
|
|
8597
|
+
export interface LolFeaturedModesMaps {
|
|
8598
|
+
gameModeName: string
|
|
8599
|
+
isRGM: boolean
|
|
8600
|
+
assets: Record<string, string>
|
|
9821
8601
|
}
|
|
9822
8602
|
|
|
9823
8603
|
export interface LolFeaturedModesPlayerNotificationResource {
|
|
@@ -10860,6 +9640,8 @@ export interface LolHovercardHovercardUserInfo {
|
|
|
10860
9640
|
note: string
|
|
10861
9641
|
/** @format uint64 */
|
|
10862
9642
|
masteryScore: number
|
|
9643
|
+
/** @format uint64 */
|
|
9644
|
+
legendaryMasteryScore: number
|
|
10863
9645
|
patchline: string
|
|
10864
9646
|
platformId: string
|
|
10865
9647
|
product: string
|
|
@@ -11755,6 +10537,14 @@ export interface LolLobbyCollectionsRental {
|
|
|
11755
10537
|
[key: string | number]: any
|
|
11756
10538
|
}
|
|
11757
10539
|
|
|
10540
|
+
export type LolLobbyConfigReadinessEnum = "Disabled" | "Ready" | "NotReady"
|
|
10541
|
+
|
|
10542
|
+
export interface LolLobbyConfigStatus {
|
|
10543
|
+
readiness: LolLobbyConfigReadinessEnum
|
|
10544
|
+
}
|
|
10545
|
+
|
|
10546
|
+
export type LolLobbyConfigType = "player" | "public"
|
|
10547
|
+
|
|
11758
10548
|
export interface LolLobbyCustomEligibilityDto {
|
|
11759
10549
|
eligible: boolean
|
|
11760
10550
|
restrictions: LolLobbyGatekeeperRestrictionDto[]
|
|
@@ -11807,7 +10597,7 @@ export interface LolLobbyEligibilityRestriction {
|
|
|
11807
10597
|
summonerIdsString: string
|
|
11808
10598
|
}
|
|
11809
10599
|
|
|
11810
|
-
export type LolLobbyEligibilityRestrictionCode = "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "UnknownRestriction" | "SeasonVersionLockout" | "TFTNewPlayerRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerRankSoloOnlyRestriction" | "PlayerTimePlayedRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerTimeBasedRankRestriction" | "PlayerGameBasedRankRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
10600
|
+
export type LolLobbyEligibilityRestrictionCode = "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "LOLNewPlayerRestriction" | "UnknownRestriction" | "SeasonVersionLockout" | "TFTNewPlayerRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerRankSoloOnlyRestriction" | "PlayerTimePlayedRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerTimeBasedRankRestriction" | "PlayerGameBasedRankRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
11811
10601
|
|
|
11812
10602
|
export interface LolLobbyFriendAvailabilityAnalytics {
|
|
11813
10603
|
puuid: string
|
|
@@ -12002,13 +10792,14 @@ export interface LolLobbyLobbyBotChampion {
|
|
|
12002
10792
|
botDifficulties: LolLobbyLobbyBotDifficulty[]
|
|
12003
10793
|
}
|
|
12004
10794
|
|
|
12005
|
-
export type LolLobbyLobbyBotDifficulty = "
|
|
10795
|
+
export type LolLobbyLobbyBotDifficulty = "RSINTERMEDIATE" | "RSBEGINNER" | "RSINTRO" | "INTRO" | "TUTORIAL" | "UBER" | "HARD" | "MEDIUM" | "EASY" | "NONE"
|
|
12006
10796
|
|
|
12007
10797
|
export interface LolLobbyLobbyBotParams {
|
|
12008
10798
|
/** @format int32 */
|
|
12009
10799
|
championId: number
|
|
12010
10800
|
botDifficulty: LolLobbyLobbyBotDifficulty
|
|
12011
10801
|
teamId: string
|
|
10802
|
+
position: string
|
|
12012
10803
|
}
|
|
12013
10804
|
|
|
12014
10805
|
export interface LolLobbyLobbyChangeGameDto {
|
|
@@ -12228,6 +11019,7 @@ export interface LolLobbyLobbyMember {
|
|
|
12228
11019
|
botDifficulty: LolLobbyLobbyBotDifficulty
|
|
12229
11020
|
/** @format int32 */
|
|
12230
11021
|
botChampionId: number
|
|
11022
|
+
position: string
|
|
12231
11023
|
}
|
|
12232
11024
|
|
|
12233
11025
|
export interface LolLobbyLobbyNotification {
|
|
@@ -12278,6 +11070,7 @@ export interface LolLobbyLobbyParticipantDto {
|
|
|
12278
11070
|
botDifficulty: LolLobbyLobbyBotDifficulty
|
|
12279
11071
|
/** @format int32 */
|
|
12280
11072
|
botChampionId: number
|
|
11073
|
+
botPosition: string
|
|
12281
11074
|
}
|
|
12282
11075
|
|
|
12283
11076
|
export type LolLobbyLobbyPartyRewardType = "None" | "Icon" | "Ip"
|
|
@@ -12738,6 +11531,7 @@ export interface LolLobbyRegistrationCredentials {
|
|
|
12738
11531
|
rankedOverviewToken?: string
|
|
12739
11532
|
gameClientVersion?: string
|
|
12740
11533
|
playerTokens?: Record<string, string>
|
|
11534
|
+
experiments?: Record<string, string>
|
|
12741
11535
|
}
|
|
12742
11536
|
|
|
12743
11537
|
export interface LolLobbyRegistrationStatus {
|
|
@@ -14575,6 +13369,175 @@ export interface LolMapsTutorialCard {
|
|
|
14575
13369
|
imagePath: string
|
|
14576
13370
|
}
|
|
14577
13371
|
|
|
13372
|
+
export interface LolMarketplaceCatalogEntryDto {
|
|
13373
|
+
id: string
|
|
13374
|
+
productId: string
|
|
13375
|
+
name: string
|
|
13376
|
+
description: string
|
|
13377
|
+
endTime: string
|
|
13378
|
+
purchaseUnits: LolMarketplacePurchaseUnitDto[]
|
|
13379
|
+
displayMetadata: unknown
|
|
13380
|
+
}
|
|
13381
|
+
|
|
13382
|
+
export interface LolMarketplaceFinalPurchaseUnitDto {
|
|
13383
|
+
payments: LolMarketplacePaymentDto[]
|
|
13384
|
+
fulfillment: LolMarketplaceFulfillmentDto
|
|
13385
|
+
}
|
|
13386
|
+
|
|
13387
|
+
export interface LolMarketplaceFulfillmentDto {
|
|
13388
|
+
/** @format int64 */
|
|
13389
|
+
delta: number
|
|
13390
|
+
/** @format int64 */
|
|
13391
|
+
finalDelta: number
|
|
13392
|
+
name: string
|
|
13393
|
+
/** @format int64 */
|
|
13394
|
+
maxQuantity: number
|
|
13395
|
+
/** @format uint64 */
|
|
13396
|
+
ownedQuantity: number
|
|
13397
|
+
itemTypeId: string
|
|
13398
|
+
itemId: string
|
|
13399
|
+
currencyId: string
|
|
13400
|
+
subCurrencyDeltas: Record<string, number>
|
|
13401
|
+
}
|
|
13402
|
+
|
|
13403
|
+
export interface LolMarketplacePagination {
|
|
13404
|
+
/** @format uint32 */
|
|
13405
|
+
offset: number
|
|
13406
|
+
/** @format uint32 */
|
|
13407
|
+
limit: number
|
|
13408
|
+
/** @format uint32 */
|
|
13409
|
+
maxLimit: number
|
|
13410
|
+
/** @format uint32 */
|
|
13411
|
+
total: number
|
|
13412
|
+
previous: string
|
|
13413
|
+
next: string
|
|
13414
|
+
}
|
|
13415
|
+
|
|
13416
|
+
export interface LolMarketplacePaymentDto {
|
|
13417
|
+
/** @format int64 */
|
|
13418
|
+
delta: number
|
|
13419
|
+
/** @format int64 */
|
|
13420
|
+
finalDelta: number
|
|
13421
|
+
name: string
|
|
13422
|
+
/** @format int64 */
|
|
13423
|
+
discountedDelta: number
|
|
13424
|
+
/** @format double */
|
|
13425
|
+
discountPercent: number
|
|
13426
|
+
itemTypeId: string
|
|
13427
|
+
itemId: string
|
|
13428
|
+
currencyId: string
|
|
13429
|
+
}
|
|
13430
|
+
|
|
13431
|
+
export interface LolMarketplacePaymentOptionDto {
|
|
13432
|
+
key: string
|
|
13433
|
+
payments: LolMarketplacePaymentDto[]
|
|
13434
|
+
}
|
|
13435
|
+
|
|
13436
|
+
export interface LolMarketplacePurchaseDto {
|
|
13437
|
+
id: string
|
|
13438
|
+
productId: string
|
|
13439
|
+
storeId: string
|
|
13440
|
+
catalogEntryId: string
|
|
13441
|
+
purchaserId: string
|
|
13442
|
+
recipientId: string
|
|
13443
|
+
purchaseUnits: LolMarketplaceFinalPurchaseUnitDto[]
|
|
13444
|
+
createdTime: string
|
|
13445
|
+
completedTime: string
|
|
13446
|
+
isReverted: boolean
|
|
13447
|
+
revertedTime: string
|
|
13448
|
+
purchaseState: string
|
|
13449
|
+
}
|
|
13450
|
+
|
|
13451
|
+
export interface LolMarketplacePurchaseRequest {
|
|
13452
|
+
storeId: string
|
|
13453
|
+
catalogEntryId: string
|
|
13454
|
+
paymentOptionsKeys: string[]
|
|
13455
|
+
}
|
|
13456
|
+
|
|
13457
|
+
export interface LolMarketplacePurchaseRequestDto {
|
|
13458
|
+
storeId: string
|
|
13459
|
+
catalogEntryId: string
|
|
13460
|
+
paymentOptionsKeys: string[]
|
|
13461
|
+
idempotencyId: string
|
|
13462
|
+
source: string
|
|
13463
|
+
}
|
|
13464
|
+
|
|
13465
|
+
export interface LolMarketplacePurchaseResponse {
|
|
13466
|
+
data: LolMarketplacePurchaseDto
|
|
13467
|
+
paging: LolMarketplacePagination
|
|
13468
|
+
stats: LolMarketplaceResponseStats
|
|
13469
|
+
notes: string[]
|
|
13470
|
+
errors: LolMarketplaceResponseError[]
|
|
13471
|
+
}
|
|
13472
|
+
|
|
13473
|
+
export interface LolMarketplacePurchaseTransaction {
|
|
13474
|
+
purchaseId: string
|
|
13475
|
+
productId: string
|
|
13476
|
+
storeId: string
|
|
13477
|
+
catalogEntryId: string
|
|
13478
|
+
purchaseState: string
|
|
13479
|
+
}
|
|
13480
|
+
|
|
13481
|
+
export interface LolMarketplacePurchaseUnitDto {
|
|
13482
|
+
paymentOptions: LolMarketplacePaymentOptionDto[]
|
|
13483
|
+
payment: LolMarketplacePaymentDto[]
|
|
13484
|
+
fulfillment: LolMarketplaceFulfillmentDto
|
|
13485
|
+
}
|
|
13486
|
+
|
|
13487
|
+
export interface LolMarketplaceRegionLocale {
|
|
13488
|
+
region: string
|
|
13489
|
+
locale: string
|
|
13490
|
+
webRegion: string
|
|
13491
|
+
}
|
|
13492
|
+
|
|
13493
|
+
export interface LolMarketplaceResponseError {
|
|
13494
|
+
message: string
|
|
13495
|
+
type: string
|
|
13496
|
+
/** @format uint32 */
|
|
13497
|
+
code: number
|
|
13498
|
+
}
|
|
13499
|
+
|
|
13500
|
+
export interface LolMarketplaceResponseStats {
|
|
13501
|
+
/** @format uint32 */
|
|
13502
|
+
durationMs: number
|
|
13503
|
+
}
|
|
13504
|
+
|
|
13505
|
+
export interface LolMarketplaceRiotMessagingServiceMessage {
|
|
13506
|
+
resource: string
|
|
13507
|
+
service: string
|
|
13508
|
+
version: string
|
|
13509
|
+
/** @format int64 */
|
|
13510
|
+
timestamp: number
|
|
13511
|
+
payload: string
|
|
13512
|
+
}
|
|
13513
|
+
|
|
13514
|
+
export interface LolMarketplaceRotationalShopItemData {
|
|
13515
|
+
backgroundTextureLCU: string
|
|
13516
|
+
descriptionTraKey: string
|
|
13517
|
+
description: string
|
|
13518
|
+
}
|
|
13519
|
+
|
|
13520
|
+
export interface LolMarketplaceStoreDto {
|
|
13521
|
+
id: string
|
|
13522
|
+
productId: string
|
|
13523
|
+
name: string
|
|
13524
|
+
catalogEntries: LolMarketplaceCatalogEntryDto[]
|
|
13525
|
+
displayMetadata: unknown
|
|
13526
|
+
}
|
|
13527
|
+
|
|
13528
|
+
export interface LolMarketplaceStoresResponse {
|
|
13529
|
+
data: LolMarketplaceStoreDto[]
|
|
13530
|
+
paging: LolMarketplacePagination
|
|
13531
|
+
stats: LolMarketplaceResponseStats
|
|
13532
|
+
notes: string[]
|
|
13533
|
+
errors: LolMarketplaceResponseError[]
|
|
13534
|
+
}
|
|
13535
|
+
|
|
13536
|
+
export interface LolMarketplaceTraKeyName {
|
|
13537
|
+
nameTraKey: string
|
|
13538
|
+
translatedName: string
|
|
13539
|
+
}
|
|
13540
|
+
|
|
14578
13541
|
export interface LolMatchHistoryAcsEndPoint {
|
|
14579
13542
|
url: string
|
|
14580
13543
|
}
|
|
@@ -15397,90 +14360,29 @@ export interface LolMissionsSelectionStrategyConfig {
|
|
|
15397
14360
|
maxSelectionsAllowed: number
|
|
15398
14361
|
}
|
|
15399
14362
|
|
|
15400
|
-
export interface LolMissionsSeriesOpt {
|
|
15401
|
-
seriesId: string
|
|
15402
|
-
option: string
|
|
15403
|
-
}
|
|
15404
|
-
|
|
15405
|
-
export interface LolMissionsSvcReward {
|
|
15406
|
-
id: string
|
|
15407
|
-
itemId: string
|
|
15408
|
-
/** @format int32 */
|
|
15409
|
-
quantity: number
|
|
15410
|
-
fulfillmentSource: string
|
|
15411
|
-
media: Record<string, string>
|
|
15412
|
-
localizations: Record<string, string>
|
|
15413
|
-
}
|
|
15414
|
-
|
|
15415
|
-
export interface LolMissionsTftOrb {
|
|
15416
|
-
missionId: string
|
|
15417
|
-
status: string
|
|
15418
|
-
/** @format int64 */
|
|
15419
|
-
unlockTime: number
|
|
15420
|
-
/** @format uint8 */
|
|
15421
|
-
rewardLevel: number
|
|
15422
|
-
rewards: PlayerMissionRewardDTO[]
|
|
15423
|
-
}
|
|
15424
|
-
|
|
15425
|
-
export interface LolMissionsTftPaidBattlepass {
|
|
15426
|
-
/** @format int32 */
|
|
15427
|
-
totalPointsEarned: number
|
|
15428
|
-
milestones: LolMissionsTftPaidBattlepassMilestone[]
|
|
15429
|
-
bonuses: LolMissionsTftPaidBattlepassMilestone[]
|
|
15430
|
-
activeMilestone: LolMissionsTftPaidBattlepassMilestone
|
|
15431
|
-
info: LolMissionsTftPaidBattlepassInfo
|
|
15432
|
-
/** @format int32 */
|
|
15433
|
-
lastViewedProgress: number
|
|
15434
|
-
lastViewedMilestone: LolMissionsTftPaidBattlepassMilestone
|
|
15435
|
-
progressMissionId: string
|
|
15436
|
-
/** @format int32 */
|
|
15437
|
-
currentLevel: number
|
|
15438
|
-
}
|
|
15439
|
-
|
|
15440
|
-
export interface LolMissionsTftPaidBattlepassInfo {
|
|
15441
|
-
title: string
|
|
15442
|
-
description: string
|
|
15443
|
-
/** @format uint64 */
|
|
15444
|
-
startDate: number
|
|
15445
|
-
/** @format uint64 */
|
|
15446
|
-
endDate: number
|
|
15447
|
-
premium: boolean
|
|
15448
|
-
premiumTitle: string
|
|
15449
|
-
premiumEntitlementId: string
|
|
15450
|
-
pcPurchaseRequirement: string
|
|
15451
|
-
passId: string
|
|
15452
|
-
media: Record<string, string>
|
|
15453
|
-
}
|
|
15454
|
-
|
|
15455
|
-
export interface LolMissionsTftPaidBattlepassMilestone {
|
|
15456
|
-
missionId: string
|
|
15457
|
-
internalName: string
|
|
15458
|
-
title: string
|
|
15459
|
-
description: string
|
|
15460
|
-
state: string
|
|
15461
|
-
status: string
|
|
15462
|
-
/** @format int32 */
|
|
15463
|
-
pointsNeededForMilestone: number
|
|
15464
|
-
/** @format int32 */
|
|
15465
|
-
pointsEarnedForMilestone: number
|
|
15466
|
-
/** @format int32 */
|
|
15467
|
-
totalPointsForMilestone: number
|
|
14363
|
+
export interface LolMissionsSeriesOpt {
|
|
14364
|
+
seriesId: string
|
|
14365
|
+
option: string
|
|
14366
|
+
}
|
|
14367
|
+
|
|
14368
|
+
export interface LolMissionsSvcReward {
|
|
14369
|
+
id: string
|
|
14370
|
+
itemId: string
|
|
15468
14371
|
/** @format int32 */
|
|
15469
|
-
|
|
15470
|
-
|
|
15471
|
-
|
|
15472
|
-
|
|
15473
|
-
isPaid: boolean
|
|
15474
|
-
isLocked: boolean
|
|
15475
|
-
isKeystone: boolean
|
|
15476
|
-
isBonus: boolean
|
|
14372
|
+
quantity: number
|
|
14373
|
+
fulfillmentSource: string
|
|
14374
|
+
media: Record<string, string>
|
|
14375
|
+
localizations: Record<string, string>
|
|
15477
14376
|
}
|
|
15478
14377
|
|
|
15479
|
-
export interface
|
|
15480
|
-
|
|
15481
|
-
|
|
15482
|
-
|
|
15483
|
-
|
|
14378
|
+
export interface LolMissionsTftOrb {
|
|
14379
|
+
missionId: string
|
|
14380
|
+
status: string
|
|
14381
|
+
/** @format int64 */
|
|
14382
|
+
unlockTime: number
|
|
14383
|
+
/** @format uint8 */
|
|
14384
|
+
rewardLevel: number
|
|
14385
|
+
rewards: PlayerMissionRewardDTO[]
|
|
15484
14386
|
}
|
|
15485
14387
|
|
|
15486
14388
|
export interface LolMissionsTftWeeklyMissions {
|
|
@@ -16405,6 +15307,10 @@ export interface LolPerksQuickPlayPresetSlotDto {
|
|
|
16405
15307
|
perks: string
|
|
16406
15308
|
}
|
|
16407
15309
|
|
|
15310
|
+
export interface LolPerksRecommendedPositionsMapResource {
|
|
15311
|
+
recommendedPositions: string[]
|
|
15312
|
+
}
|
|
15313
|
+
|
|
16408
15314
|
export interface LolPerksRuneRecommendationGDSResource {
|
|
16409
15315
|
position: string
|
|
16410
15316
|
/** @format int32 */
|
|
@@ -16699,6 +15605,36 @@ export interface LolPftPFTSurveyV1 {
|
|
|
16699
15605
|
url: string
|
|
16700
15606
|
}
|
|
16701
15607
|
|
|
15608
|
+
export interface LolPftPftEntitlements {
|
|
15609
|
+
authorization: LolPftPftEntitlementsAuthorization
|
|
15610
|
+
entitlements: string[]
|
|
15611
|
+
issuer: string
|
|
15612
|
+
subject: string
|
|
15613
|
+
token: string
|
|
15614
|
+
}
|
|
15615
|
+
|
|
15616
|
+
export interface LolPftPftEntitlementsAccessToken {
|
|
15617
|
+
clientId: string
|
|
15618
|
+
/** @format uint64 */
|
|
15619
|
+
expiry: number
|
|
15620
|
+
scopes: string[]
|
|
15621
|
+
token: string
|
|
15622
|
+
}
|
|
15623
|
+
|
|
15624
|
+
export interface LolPftPftEntitlementsAuthorization {
|
|
15625
|
+
accessToken: LolPftPftEntitlementsAccessToken
|
|
15626
|
+
idToken: LolPftPftEntitlementsIdToken
|
|
15627
|
+
puuid: string
|
|
15628
|
+
}
|
|
15629
|
+
|
|
15630
|
+
export interface LolPftPftEntitlementsIdToken {
|
|
15631
|
+
clientId: string
|
|
15632
|
+
/** @format uint64 */
|
|
15633
|
+
expiry: number
|
|
15634
|
+
nonce: string
|
|
15635
|
+
token: string
|
|
15636
|
+
}
|
|
15637
|
+
|
|
16702
15638
|
export interface LolPftSummoner {
|
|
16703
15639
|
puuid: string
|
|
16704
15640
|
/** @format uint64 */
|
|
@@ -17610,6 +16546,8 @@ export interface LolPurchaseWidgetChampionSkinEmblemPosition {
|
|
|
17610
16546
|
export interface LolPurchaseWidgetDiscountPricingInfo {
|
|
17611
16547
|
/** @format int32 */
|
|
17612
16548
|
cost: number
|
|
16549
|
+
/** @format int32 */
|
|
16550
|
+
originalCost: number
|
|
17613
16551
|
costType: string
|
|
17614
16552
|
currency: string
|
|
17615
16553
|
/** @format float */
|
|
@@ -17650,12 +16588,14 @@ export interface LolPurchaseWidgetItemDefinition {
|
|
|
17650
16588
|
name: string
|
|
17651
16589
|
description: string
|
|
17652
16590
|
subTitle: string
|
|
16591
|
+
imagePath: string
|
|
17653
16592
|
owned: boolean
|
|
17654
16593
|
assets: LolPurchaseWidgetCatalogPluginItemAssets
|
|
17655
16594
|
tags: string[]
|
|
17656
16595
|
metadata: LolPurchaseWidgetItemMetadataEntry[]
|
|
17657
16596
|
bundledItemPrice?: LolPurchaseWidgetBundledItemPricingInfo
|
|
17658
16597
|
loyaltyUnlocked: boolean
|
|
16598
|
+
hasVisibleLootOdds: boolean
|
|
17659
16599
|
}
|
|
17660
16600
|
|
|
17661
16601
|
export interface LolPurchaseWidgetItemDetails {
|
|
@@ -19466,6 +18406,7 @@ export interface LolRsoAuthAuthorizationRequest {
|
|
|
19466
18406
|
export interface LolRsoAuthAuthorizationResponse {
|
|
19467
18407
|
type: string
|
|
19468
18408
|
authorization: LolRsoAuthImplicitAuthorization
|
|
18409
|
+
country: string
|
|
19469
18410
|
}
|
|
19470
18411
|
|
|
19471
18412
|
export type LolRsoAuthConfigReadinessEnum = "Disabled" | "Ready" | "NotReady"
|
|
@@ -19894,6 +18835,10 @@ export interface LolSpectatorSummonerOrTeamAvailabilty {
|
|
|
19894
18835
|
availableForWatching: string[]
|
|
19895
18836
|
}
|
|
19896
18837
|
|
|
18838
|
+
export interface LolSpectatorSummonerPuuidsSpectateResource {
|
|
18839
|
+
availableForWatching: string[]
|
|
18840
|
+
}
|
|
18841
|
+
|
|
19897
18842
|
export interface LolStatstonesCatalogBundle {
|
|
19898
18843
|
item: LolStatstonesCatalogItemDetails
|
|
19899
18844
|
}
|
|
@@ -21030,6 +19975,10 @@ export interface LolTftEventLoginSession {
|
|
|
21030
19975
|
platformId: string
|
|
21031
19976
|
}
|
|
21032
19977
|
|
|
19978
|
+
export interface LolTftEventLolTftBackgrounds {
|
|
19979
|
+
backgrounds: Record<string, string>
|
|
19980
|
+
}
|
|
19981
|
+
|
|
21033
19982
|
export interface LolTftEventLolTftBattlePassHub {
|
|
21034
19983
|
battlePassXPBoosted: boolean
|
|
21035
19984
|
}
|
|
@@ -21042,6 +19991,7 @@ export interface LolTftEventLolTftEvent {
|
|
|
21042
19991
|
startDate: string
|
|
21043
19992
|
endDate: string
|
|
21044
19993
|
seriesId: string
|
|
19994
|
+
dailyLoginSeriesId: string
|
|
21045
19995
|
queueIds: number[]
|
|
21046
19996
|
defaultLandingPage: boolean
|
|
21047
19997
|
eventHubTemplateType: string
|
|
@@ -21248,67 +20198,6 @@ export interface LolTftEventTftOrb {
|
|
|
21248
20198
|
rewards: PlayerMissionRewardDTO[]
|
|
21249
20199
|
}
|
|
21250
20200
|
|
|
21251
|
-
export interface LolTftEventTftPaidBattlepass {
|
|
21252
|
-
/** @format int32 */
|
|
21253
|
-
totalPointsEarned: number
|
|
21254
|
-
milestones: LolTftEventTftPaidBattlepassMilestone[]
|
|
21255
|
-
bonuses: LolTftEventTftPaidBattlepassMilestone[]
|
|
21256
|
-
activeMilestone: LolTftEventTftPaidBattlepassMilestone
|
|
21257
|
-
info: LolTftEventTftPaidBattlepassInfo
|
|
21258
|
-
/** @format int32 */
|
|
21259
|
-
lastViewedProgress: number
|
|
21260
|
-
lastViewedMilestone: LolTftEventTftPaidBattlepassMilestone
|
|
21261
|
-
progressMissionId: string
|
|
21262
|
-
/** @format int32 */
|
|
21263
|
-
currentLevel: number
|
|
21264
|
-
}
|
|
21265
|
-
|
|
21266
|
-
export interface LolTftEventTftPaidBattlepassInfo {
|
|
21267
|
-
title: string
|
|
21268
|
-
description: string
|
|
21269
|
-
/** @format uint64 */
|
|
21270
|
-
startDate: number
|
|
21271
|
-
/** @format uint64 */
|
|
21272
|
-
endDate: number
|
|
21273
|
-
premium: boolean
|
|
21274
|
-
premiumTitle: string
|
|
21275
|
-
premiumEntitlementId: string
|
|
21276
|
-
pcPurchaseRequirement: string
|
|
21277
|
-
passId: string
|
|
21278
|
-
media: Record<string, string>
|
|
21279
|
-
}
|
|
21280
|
-
|
|
21281
|
-
export interface LolTftEventTftPaidBattlepassMilestone {
|
|
21282
|
-
missionId: string
|
|
21283
|
-
internalName: string
|
|
21284
|
-
title: string
|
|
21285
|
-
description: string
|
|
21286
|
-
state: string
|
|
21287
|
-
status: string
|
|
21288
|
-
/** @format int32 */
|
|
21289
|
-
pointsNeededForMilestone: number
|
|
21290
|
-
/** @format int32 */
|
|
21291
|
-
pointsEarnedForMilestone: number
|
|
21292
|
-
/** @format int32 */
|
|
21293
|
-
totalPointsForMilestone: number
|
|
21294
|
-
/** @format int32 */
|
|
21295
|
-
level: number
|
|
21296
|
-
iconImageUrl: string
|
|
21297
|
-
iconNeedsFrame: boolean
|
|
21298
|
-
rewards: LolTftEventTftPaidBattlepassReward[]
|
|
21299
|
-
isPaid: boolean
|
|
21300
|
-
isLocked: boolean
|
|
21301
|
-
isKeystone: boolean
|
|
21302
|
-
isBonus: boolean
|
|
21303
|
-
}
|
|
21304
|
-
|
|
21305
|
-
export interface LolTftEventTftPaidBattlepassReward {
|
|
21306
|
-
rewardGroup: string
|
|
21307
|
-
description: string
|
|
21308
|
-
iconUrl: string
|
|
21309
|
-
iconNeedsFrame: boolean
|
|
21310
|
-
}
|
|
21311
|
-
|
|
21312
20201
|
export interface LolTftEventTftWeeklyMissions {
|
|
21313
20202
|
missions: PlayerMissionDTO[]
|
|
21314
20203
|
}
|
|
@@ -21330,6 +20219,10 @@ export interface LolTftGameflowSession {
|
|
|
21330
20219
|
gameData: LolTftGameflowGameData
|
|
21331
20220
|
}
|
|
21332
20221
|
|
|
20222
|
+
export interface LolTftLolTftBackgrounds {
|
|
20223
|
+
backgrounds: Record<string, string>
|
|
20224
|
+
}
|
|
20225
|
+
|
|
21333
20226
|
export interface LolTftLolTftBattlePassHub {
|
|
21334
20227
|
battlePassXPBoosted: boolean
|
|
21335
20228
|
}
|
|
@@ -21342,6 +20235,7 @@ export interface LolTftLolTftEvent {
|
|
|
21342
20235
|
startDate: string
|
|
21343
20236
|
endDate: string
|
|
21344
20237
|
seriesId: string
|
|
20238
|
+
dailyLoginSeriesId: string
|
|
21345
20239
|
queueIds: number[]
|
|
21346
20240
|
defaultLandingPage: boolean
|
|
21347
20241
|
eventHubTemplateType: string
|
|
@@ -21820,22 +20714,21 @@ export interface LolTftPassTFTPassRewardNotification {
|
|
|
21820
20714
|
framedIcon: boolean
|
|
21821
20715
|
}
|
|
21822
20716
|
|
|
21823
|
-
export interface
|
|
20717
|
+
export interface LolTftPassTftBattlepass {
|
|
21824
20718
|
/** @format int32 */
|
|
21825
20719
|
totalPointsEarned: number
|
|
21826
|
-
milestones:
|
|
21827
|
-
bonuses:
|
|
21828
|
-
activeMilestone:
|
|
21829
|
-
info:
|
|
20720
|
+
milestones: LolTftPassTftBattlepassMilestone[]
|
|
20721
|
+
bonuses: LolTftPassTftBattlepassMilestone[]
|
|
20722
|
+
activeMilestone: LolTftPassTftBattlepassMilestone
|
|
20723
|
+
info: LolTftPassTftBattlepassInfo
|
|
21830
20724
|
/** @format int32 */
|
|
21831
20725
|
lastViewedProgress: number
|
|
21832
|
-
lastViewedMilestone:
|
|
21833
|
-
progressMissionId: string
|
|
20726
|
+
lastViewedMilestone: LolTftPassTftBattlepassMilestone
|
|
21834
20727
|
/** @format int32 */
|
|
21835
20728
|
currentLevel: number
|
|
21836
20729
|
}
|
|
21837
20730
|
|
|
21838
|
-
export interface
|
|
20731
|
+
export interface LolTftPassTftBattlepassInfo {
|
|
21839
20732
|
title: string
|
|
21840
20733
|
description: string
|
|
21841
20734
|
/** @format uint64 */
|
|
@@ -21850,12 +20743,10 @@ export interface LolTftPassTftPaidBattlepassInfo {
|
|
|
21850
20743
|
media: Record<string, string>
|
|
21851
20744
|
}
|
|
21852
20745
|
|
|
21853
|
-
export interface
|
|
21854
|
-
|
|
21855
|
-
internalName: string
|
|
20746
|
+
export interface LolTftPassTftBattlepassMilestone {
|
|
20747
|
+
milestoneId: string
|
|
21856
20748
|
title: string
|
|
21857
20749
|
description: string
|
|
21858
|
-
state: string
|
|
21859
20750
|
status: string
|
|
21860
20751
|
/** @format int32 */
|
|
21861
20752
|
pointsNeededForMilestone: number
|
|
@@ -21867,15 +20758,15 @@ export interface LolTftPassTftPaidBattlepassMilestone {
|
|
|
21867
20758
|
level: number
|
|
21868
20759
|
iconImageUrl: string
|
|
21869
20760
|
iconNeedsFrame: boolean
|
|
21870
|
-
rewards:
|
|
20761
|
+
rewards: LolTftPassTftBattlepassReward[]
|
|
21871
20762
|
isPaid: boolean
|
|
21872
20763
|
isLocked: boolean
|
|
21873
20764
|
isKeystone: boolean
|
|
21874
20765
|
isBonus: boolean
|
|
20766
|
+
isClaimRequestPending: boolean
|
|
21875
20767
|
}
|
|
21876
20768
|
|
|
21877
|
-
export interface
|
|
21878
|
-
rewardGroup: string
|
|
20769
|
+
export interface LolTftPassTftBattlepassReward {
|
|
21879
20770
|
description: string
|
|
21880
20771
|
iconUrl: string
|
|
21881
20772
|
iconNeedsFrame: boolean
|
|
@@ -21982,8 +20873,6 @@ export interface LolTftTeamPlannerTFTModeData {
|
|
|
21982
20873
|
|
|
21983
20874
|
export interface LolTftTeamPlannerTFTTeamPlannerConfig {
|
|
21984
20875
|
enabled: boolean
|
|
21985
|
-
remindersEnabled: boolean
|
|
21986
|
-
traitTooltipChampsEnabled: boolean
|
|
21987
20876
|
multipleSetsEnabled: boolean
|
|
21988
20877
|
}
|
|
21989
20878
|
|
|
@@ -22000,6 +20889,12 @@ export interface LolTftTeamPlannerTeamSettings {
|
|
|
22000
20889
|
hasViewedTeamPlanner: boolean
|
|
22001
20890
|
}
|
|
22002
20891
|
|
|
20892
|
+
export interface LolTftTeamPlannerTeamsForSet {
|
|
20893
|
+
teams: LolTftTeamPlannerTeamPlan[]
|
|
20894
|
+
/** @format uint64 */
|
|
20895
|
+
registeredTeamIndex: number
|
|
20896
|
+
}
|
|
20897
|
+
|
|
22003
20898
|
export interface LolTftTrovesCapCounterBalanceDto {
|
|
22004
20899
|
/** @format int32 */
|
|
22005
20900
|
amount: number
|
|
@@ -22010,6 +20905,7 @@ export interface LolTftTrovesCapCounterBalanceDto {
|
|
|
22010
20905
|
|
|
22011
20906
|
export interface LolTftTrovesCapDropsDropTableDisplayMetadata {
|
|
22012
20907
|
isCollectorsBounty: boolean
|
|
20908
|
+
dataAssetId: string
|
|
22013
20909
|
nameTraKey: string
|
|
22014
20910
|
mythicOfferId: string
|
|
22015
20911
|
progressionId: string
|
|
@@ -22037,6 +20933,24 @@ export interface LolTftTrovesCapOrdersResponseDTO {
|
|
|
22037
20933
|
data: unknown
|
|
22038
20934
|
}
|
|
22039
20935
|
|
|
20936
|
+
export interface LolTftTrovesCounter {
|
|
20937
|
+
id: string
|
|
20938
|
+
name: string
|
|
20939
|
+
groupId: string
|
|
20940
|
+
direction: string
|
|
20941
|
+
/** @format int64 */
|
|
20942
|
+
startValue: number
|
|
20943
|
+
}
|
|
20944
|
+
|
|
20945
|
+
export interface LolTftTrovesCounterInstance {
|
|
20946
|
+
ownerId: string
|
|
20947
|
+
productId: string
|
|
20948
|
+
groupId: string
|
|
20949
|
+
counterId: string
|
|
20950
|
+
/** @format int64 */
|
|
20951
|
+
counterValue: number
|
|
20952
|
+
}
|
|
20953
|
+
|
|
22040
20954
|
export interface LolTftTrovesCounterNotificationResource {
|
|
22041
20955
|
balances: Record<string, LolTftTrovesCapCounterBalanceDto>
|
|
22042
20956
|
deltas: Record<string, LolTftTrovesCapCounterBalanceDto>
|
|
@@ -22071,6 +20985,7 @@ export interface LolTftTrovesDropsDropTableWithPityDTO {
|
|
|
22071
20985
|
|
|
22072
20986
|
export interface LolTftTrovesDropsOddsListEntryDTO {
|
|
22073
20987
|
contentId: string
|
|
20988
|
+
nodeId: string
|
|
22074
20989
|
}
|
|
22075
20990
|
|
|
22076
20991
|
export interface LolTftTrovesDropsOddsTreeNodeDTO {
|
|
@@ -22080,6 +20995,9 @@ export interface LolTftTrovesDropsOddsTreeNodeDTO {
|
|
|
22080
20995
|
children: LolTftTrovesDropsOddsTreeNodeDTO[]
|
|
22081
20996
|
/** @format uint16 */
|
|
22082
20997
|
quantity: number
|
|
20998
|
+
nameTraKey: string
|
|
20999
|
+
/** @format uint8 */
|
|
21000
|
+
priority: number
|
|
22083
21001
|
}
|
|
22084
21002
|
|
|
22085
21003
|
export interface LolTftTrovesEntitlementNotificationResource {
|
|
@@ -22089,6 +21007,12 @@ export interface LolTftTrovesEntitlementNotificationResource {
|
|
|
22089
21007
|
resourceOperation: string
|
|
22090
21008
|
}
|
|
22091
21009
|
|
|
21010
|
+
export interface LolTftTrovesEntityInstance {
|
|
21011
|
+
groupId: string
|
|
21012
|
+
counters: LolTftTrovesCounterInstance[]
|
|
21013
|
+
milestones: LolTftTrovesMilestoneInstance[]
|
|
21014
|
+
}
|
|
21015
|
+
|
|
22092
21016
|
export interface LolTftTrovesGameDataTFTContent {
|
|
22093
21017
|
name: string
|
|
22094
21018
|
nameTraKey: string
|
|
@@ -22143,6 +21067,15 @@ export interface LolTftTrovesGameDataTrovesBannerTableEntry {
|
|
|
22143
21067
|
bannerNode: LolTftTrovesGameDataTrovesBannerTable
|
|
22144
21068
|
}
|
|
22145
21069
|
|
|
21070
|
+
export interface LolTftTrovesGroup {
|
|
21071
|
+
id: string
|
|
21072
|
+
productId: string
|
|
21073
|
+
name: string
|
|
21074
|
+
repeat: LolTftTrovesRepeat
|
|
21075
|
+
counters: LolTftTrovesCounter[]
|
|
21076
|
+
milestones: LolTftTrovesMilestone[]
|
|
21077
|
+
}
|
|
21078
|
+
|
|
22146
21079
|
export interface LolTftTrovesInventoryItem {
|
|
22147
21080
|
uuid: string
|
|
22148
21081
|
inventoryType: string
|
|
@@ -22185,6 +21118,32 @@ export interface LolTftTrovesLootOddsResponse {
|
|
|
22185
21118
|
|
|
22186
21119
|
export type LolTftTrovesLootRarity = "Ultimate" | "Mythic" | "Legendary" | "Epic" | "Default"
|
|
22187
21120
|
|
|
21121
|
+
export interface LolTftTrovesMilestone {
|
|
21122
|
+
id: string
|
|
21123
|
+
name: string
|
|
21124
|
+
groupId: string
|
|
21125
|
+
counterId: string
|
|
21126
|
+
/** @format int64 */
|
|
21127
|
+
triggerValue: number
|
|
21128
|
+
properties: Record<string, string>
|
|
21129
|
+
}
|
|
21130
|
+
|
|
21131
|
+
export interface LolTftTrovesMilestoneInstance {
|
|
21132
|
+
milestoneId: string
|
|
21133
|
+
instanceId: string
|
|
21134
|
+
ownerId: string
|
|
21135
|
+
productId: string
|
|
21136
|
+
groupId: string
|
|
21137
|
+
counterId: string
|
|
21138
|
+
/** @format int64 */
|
|
21139
|
+
triggerValue: number
|
|
21140
|
+
/** @format uint32 */
|
|
21141
|
+
repeatSequence: number
|
|
21142
|
+
triggered: boolean
|
|
21143
|
+
triggeredTimestamp: string
|
|
21144
|
+
triggers: LolTftTrovesTrigger[]
|
|
21145
|
+
}
|
|
21146
|
+
|
|
22188
21147
|
export interface LolTftTrovesOddsTableDisplayMetadata {
|
|
22189
21148
|
nameTraKey: string
|
|
22190
21149
|
/** @format uint8 */
|
|
@@ -22209,6 +21168,37 @@ export interface LolTftTrovesPlayerLoot {
|
|
|
22209
21168
|
itemDesc: string
|
|
22210
21169
|
}
|
|
22211
21170
|
|
|
21171
|
+
export interface LolTftTrovesRepeat {
|
|
21172
|
+
/** @format int32 */
|
|
21173
|
+
count: number
|
|
21174
|
+
/** @format uint32 */
|
|
21175
|
+
scope: number
|
|
21176
|
+
/** @format float */
|
|
21177
|
+
multiplier: number
|
|
21178
|
+
milestones: LolTftTrovesMilestone[]
|
|
21179
|
+
repeatTriggers: LolTftTrovesRepeatGroupTrigger[]
|
|
21180
|
+
}
|
|
21181
|
+
|
|
21182
|
+
export interface LolTftTrovesRepeatGroupTrigger {
|
|
21183
|
+
type: string
|
|
21184
|
+
counterId: string
|
|
21185
|
+
/** @format uint16 */
|
|
21186
|
+
startTriggerValue: number
|
|
21187
|
+
/** @format uint16 */
|
|
21188
|
+
increaseBy: number
|
|
21189
|
+
/** @format float */
|
|
21190
|
+
multiplier: number
|
|
21191
|
+
}
|
|
21192
|
+
|
|
21193
|
+
export interface LolTftTrovesRewardsNotificationResource {
|
|
21194
|
+
purchaserId: string
|
|
21195
|
+
recipientId: string
|
|
21196
|
+
transactionId: string
|
|
21197
|
+
rewardId: string
|
|
21198
|
+
rewardInstanceId: string
|
|
21199
|
+
status: string
|
|
21200
|
+
}
|
|
21201
|
+
|
|
22212
21202
|
export interface LolTftTrovesRiotMessagingServiceMessage {
|
|
22213
21203
|
resource: string
|
|
22214
21204
|
service: string
|
|
@@ -22224,6 +21214,13 @@ export interface LolTftTrovesTotalRollsInfoDTO {
|
|
|
22224
21214
|
maxTotalRolls: number
|
|
22225
21215
|
}
|
|
22226
21216
|
|
|
21217
|
+
export interface LolTftTrovesTrigger {
|
|
21218
|
+
type: string
|
|
21219
|
+
counterId: string
|
|
21220
|
+
/** @format uint64 */
|
|
21221
|
+
triggerValue: number
|
|
21222
|
+
}
|
|
21223
|
+
|
|
22227
21224
|
export interface LolTftTrovesTrovePurchaseResponse {
|
|
22228
21225
|
orderId: string
|
|
22229
21226
|
status: string
|
|
@@ -22349,6 +21346,45 @@ export interface LolTftTrovesTrovesCelebrationThemeData {
|
|
|
22349
21346
|
standardSegmentData: LolTftTrovesTrovesCelebrationStandardSegmentData
|
|
22350
21347
|
}
|
|
22351
21348
|
|
|
21349
|
+
export interface LolTftTrovesTrovesMilestone {
|
|
21350
|
+
milestoneId: string
|
|
21351
|
+
currencyId: string
|
|
21352
|
+
/** @format uint32 */
|
|
21353
|
+
currencyAmount: number
|
|
21354
|
+
instanceId: string
|
|
21355
|
+
/** @format uint64 */
|
|
21356
|
+
triggerValue: number
|
|
21357
|
+
/** @format uint32 */
|
|
21358
|
+
repeatSequence: number
|
|
21359
|
+
triggeredTimestamp: string
|
|
21360
|
+
triggered: boolean
|
|
21361
|
+
name: string
|
|
21362
|
+
iconURL: string
|
|
21363
|
+
/** @format uint16 */
|
|
21364
|
+
resetValue: number
|
|
21365
|
+
}
|
|
21366
|
+
|
|
21367
|
+
export interface LolTftTrovesTrovesMilestoneCounter {
|
|
21368
|
+
counterId: string
|
|
21369
|
+
/** @format uint64 */
|
|
21370
|
+
counterValue: number
|
|
21371
|
+
/** @format uint16 */
|
|
21372
|
+
startTriggerValue: number
|
|
21373
|
+
/** @format uint16 */
|
|
21374
|
+
increaseBy: number
|
|
21375
|
+
/** @format float */
|
|
21376
|
+
multiplier: number
|
|
21377
|
+
/** @format uint16 */
|
|
21378
|
+
resetValue: number
|
|
21379
|
+
}
|
|
21380
|
+
|
|
21381
|
+
export interface LolTftTrovesTrovesMilestones {
|
|
21382
|
+
groupId: string
|
|
21383
|
+
name: string
|
|
21384
|
+
milestones: LolTftTrovesTrovesMilestone[]
|
|
21385
|
+
counter: LolTftTrovesTrovesMilestoneCounter
|
|
21386
|
+
}
|
|
21387
|
+
|
|
22352
21388
|
export interface LolTftTrovesTrovesPCSpriteAnimation {
|
|
22353
21389
|
spritesheetPath: string
|
|
22354
21390
|
/** @format float */
|
|
@@ -22396,6 +21432,7 @@ export interface LolTftTrovesTrovesRewards {
|
|
|
22396
21432
|
}
|
|
22397
21433
|
|
|
22398
21434
|
export interface LolTftTrovesTrovesRewardsResponse {
|
|
21435
|
+
orderId: string
|
|
22399
21436
|
/** @format uint8 */
|
|
22400
21437
|
pullType: number
|
|
22401
21438
|
rewards: LolTftTrovesTrovesRewards
|
|
@@ -23239,8 +22276,6 @@ export interface MissionMetadata {
|
|
|
23239
22276
|
npeRewardPack: NpeRewardPackMetadata
|
|
23240
22277
|
missionType: string
|
|
23241
22278
|
/** @format int32 */
|
|
23242
|
-
level: number
|
|
23243
|
-
/** @format int32 */
|
|
23244
22279
|
weekNum: number
|
|
23245
22280
|
/** @format int32 */
|
|
23246
22281
|
xpReward: number
|