@hasagi/types 15.12.1 → 15.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lcu-endpoints.d.ts +77 -31
- package/dist/lcu-events.d.ts +57 -46
- package/dist/lcu-types.d.ts +357 -103
- package/package.json +4 -4
package/dist/lcu-types.d.ts
CHANGED
|
@@ -2058,6 +2058,7 @@ export interface LolCapMissionsCapMissionSeriesMissionReward {
|
|
|
2058
2058
|
itemId: string
|
|
2059
2059
|
itemTypeId: string
|
|
2060
2060
|
typeId: string
|
|
2061
|
+
currencyId: string
|
|
2061
2062
|
/** @format uint32 */
|
|
2062
2063
|
amount: number
|
|
2063
2064
|
}
|
|
@@ -2145,6 +2146,8 @@ export interface LolCatalogCatalogItem {
|
|
|
2145
2146
|
active: boolean
|
|
2146
2147
|
inventoryType: string
|
|
2147
2148
|
inactiveDate: string
|
|
2149
|
+
/** @format int32 */
|
|
2150
|
+
maxQuantity: number
|
|
2148
2151
|
prices: LolCatalogItemCost[]
|
|
2149
2152
|
releaseDate: string
|
|
2150
2153
|
sale?: LolCatalogSale
|
|
@@ -2179,6 +2182,8 @@ export interface LolCatalogCatalogPluginItem {
|
|
|
2179
2182
|
releaseDate: number
|
|
2180
2183
|
/** @format uint64 */
|
|
2181
2184
|
inactiveDate: number
|
|
2185
|
+
/** @format int32 */
|
|
2186
|
+
maxQuantity: number
|
|
2182
2187
|
prices: LolCatalogCatalogPluginPrice[]
|
|
2183
2188
|
tags?: string[]
|
|
2184
2189
|
metadata?: LolCatalogItemMetadataEntry[]
|
|
@@ -2210,6 +2215,7 @@ export interface LolCatalogCatalogPluginItemWithDetails {
|
|
|
2210
2215
|
metadata: LolCatalogItemMetadataEntry[]
|
|
2211
2216
|
/** @format int64 */
|
|
2212
2217
|
bundleFinalPrice: number
|
|
2218
|
+
flexible: boolean
|
|
2213
2219
|
}
|
|
2214
2220
|
|
|
2215
2221
|
export interface LolCatalogCatalogPluginPrice {
|
|
@@ -3055,6 +3061,11 @@ export interface LolChampionMasteryAllChampionMasterySetReward {
|
|
|
3055
3061
|
totalScore: number
|
|
3056
3062
|
}
|
|
3057
3063
|
|
|
3064
|
+
export interface LolChampionMasteryChampMasteryView {
|
|
3065
|
+
puuid: string
|
|
3066
|
+
data: LolChampionMasteryChampionMasteryViewData[]
|
|
3067
|
+
}
|
|
3068
|
+
|
|
3058
3069
|
export interface LolChampionMasteryChampionMastery {
|
|
3059
3070
|
puuid: string
|
|
3060
3071
|
/** @format int32 */
|
|
@@ -3149,6 +3160,16 @@ export interface LolChampionMasteryChampionMasteryRewardGrantNotification {
|
|
|
3149
3160
|
messageKey: string
|
|
3150
3161
|
}
|
|
3151
3162
|
|
|
3163
|
+
export interface LolChampionMasteryChampionMasteryViewData {
|
|
3164
|
+
/** @format int64 */
|
|
3165
|
+
championId: number
|
|
3166
|
+
/** @format int32 */
|
|
3167
|
+
championLevel: number
|
|
3168
|
+
/** @format int32 */
|
|
3169
|
+
championPoints: number
|
|
3170
|
+
highestGrade?: string
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3152
3173
|
export interface LolChampionMasteryChampionSet {
|
|
3153
3174
|
champions: number[]
|
|
3154
3175
|
/** @format int32 */
|
|
@@ -3259,6 +3280,7 @@ export interface LolChampionsCollectionsChampion {
|
|
|
3259
3280
|
botEnabled: boolean
|
|
3260
3281
|
freeToPlay: boolean
|
|
3261
3282
|
rankedPlayEnabled: boolean
|
|
3283
|
+
isVisibleInClient: boolean
|
|
3262
3284
|
passive: LolChampionsCollectionsChampionSpell
|
|
3263
3285
|
skins: LolChampionsCollectionsChampionSkin[]
|
|
3264
3286
|
spells: LolChampionsCollectionsChampionSpell[]
|
|
@@ -3301,6 +3323,7 @@ export interface LolChampionsCollectionsChampionMinimal {
|
|
|
3301
3323
|
botEnabled: boolean
|
|
3302
3324
|
freeToPlay: boolean
|
|
3303
3325
|
rankedPlayEnabled: boolean
|
|
3326
|
+
isVisibleInClient: boolean
|
|
3304
3327
|
}
|
|
3305
3328
|
|
|
3306
3329
|
export interface LolChampionsCollectionsChampionPlayableCounts {
|
|
@@ -3462,6 +3485,7 @@ export interface LolChampionsGameDataChampion {
|
|
|
3462
3485
|
skins: LolChampionsGameDataChampionSkin[]
|
|
3463
3486
|
spells: LolChampionsGameDataChampionSpell[]
|
|
3464
3487
|
tacticalInfo: LolChampionsGameDataChampionTacticalInfo
|
|
3488
|
+
isVisibleInClient: boolean
|
|
3465
3489
|
}
|
|
3466
3490
|
|
|
3467
3491
|
export interface LolChampionsGameDataChampionChroma {
|
|
@@ -4371,6 +4395,55 @@ export interface LolChatSettingsResource {
|
|
|
4371
4395
|
data: unknown
|
|
4372
4396
|
}
|
|
4373
4397
|
|
|
4398
|
+
export interface LolChatSocialPresencesSession {
|
|
4399
|
+
player: LolChatSocialPresencesSessionPlayer
|
|
4400
|
+
activity?: LolChatSocialPresencesSessionActivity
|
|
4401
|
+
crossPlayPermissions?: LolChatSocialPresencesSessionCrossPlayPermissions
|
|
4402
|
+
party?: LolChatSocialPresencesSessionParty
|
|
4403
|
+
productData?: string
|
|
4404
|
+
region: string
|
|
4405
|
+
}
|
|
4406
|
+
|
|
4407
|
+
export interface LolChatSocialPresencesSessionActivity {
|
|
4408
|
+
actors: string[]
|
|
4409
|
+
location: string
|
|
4410
|
+
mode: string
|
|
4411
|
+
progress: LolChatSocialPresencesSessionActivityProgress
|
|
4412
|
+
spectate: string
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4415
|
+
export interface LolChatSocialPresencesSessionActivityProgress {
|
|
4416
|
+
type: string
|
|
4417
|
+
value: string
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
export interface LolChatSocialPresencesSessionCrossPlayPermissions {
|
|
4421
|
+
hasPartyCrossPlayEnabled: boolean
|
|
4422
|
+
hasPlayerCrossPlayEnabled: boolean
|
|
4423
|
+
isInParty: boolean
|
|
4424
|
+
partyMemberPlatforms: string[]
|
|
4425
|
+
}
|
|
4426
|
+
|
|
4427
|
+
export interface LolChatSocialPresencesSessionParty {
|
|
4428
|
+
/** @format uint64 */
|
|
4429
|
+
currentSize: number
|
|
4430
|
+
id: string
|
|
4431
|
+
join: string
|
|
4432
|
+
/** @format uint64 */
|
|
4433
|
+
maxSize: number
|
|
4434
|
+
}
|
|
4435
|
+
|
|
4436
|
+
export interface LolChatSocialPresencesSessionPlayer {
|
|
4437
|
+
profileBanner?: string
|
|
4438
|
+
profileIcon?: string
|
|
4439
|
+
show: string
|
|
4440
|
+
state?: string
|
|
4441
|
+
}
|
|
4442
|
+
|
|
4443
|
+
export interface LolChatSocialPresencesStatusMessage {
|
|
4444
|
+
statusMessage: string
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4374
4447
|
export interface LolChatSpectateGameInfoResource {
|
|
4375
4448
|
dropInSpectateGameId: string
|
|
4376
4449
|
gameQueueType: string
|
|
@@ -6073,6 +6146,7 @@ export interface LolCosmeticsFulfillmentDto {
|
|
|
6073
6146
|
itemId: string
|
|
6074
6147
|
currencyId: string
|
|
6075
6148
|
subCurrencyDeltas: Record<string, number>
|
|
6149
|
+
progressionCounterId: string
|
|
6076
6150
|
}
|
|
6077
6151
|
|
|
6078
6152
|
export interface LolCosmeticsGameDataCompanion {
|
|
@@ -6096,6 +6170,16 @@ export interface LolCosmeticsGameDataCompanion {
|
|
|
6096
6170
|
TFTRarity: string
|
|
6097
6171
|
}
|
|
6098
6172
|
|
|
6173
|
+
export interface LolCosmeticsGameDataTFTAugmentPillar {
|
|
6174
|
+
contentId: string
|
|
6175
|
+
/** @format int32 */
|
|
6176
|
+
itemId: number
|
|
6177
|
+
name: string
|
|
6178
|
+
description: string
|
|
6179
|
+
loadoutsIcon: string
|
|
6180
|
+
TFTRarity: string
|
|
6181
|
+
}
|
|
6182
|
+
|
|
6099
6183
|
export interface LolCosmeticsGameDataTFTCosmeticsDefaults {
|
|
6100
6184
|
playbook: unknown
|
|
6101
6185
|
}
|
|
@@ -6244,6 +6328,8 @@ export interface LolCosmeticsPurchaseDto {
|
|
|
6244
6328
|
refund: LolCosmeticsRefundDto
|
|
6245
6329
|
refundRule: string
|
|
6246
6330
|
refundable: boolean
|
|
6331
|
+
/** @format int64 */
|
|
6332
|
+
quantity: number
|
|
6247
6333
|
source: string
|
|
6248
6334
|
}
|
|
6249
6335
|
|
|
@@ -6380,6 +6466,7 @@ export interface LolCosmeticsRotationalShopItemData {
|
|
|
6380
6466
|
redeemIconTexture: string
|
|
6381
6467
|
rarity: string
|
|
6382
6468
|
typeID: string
|
|
6469
|
+
speciesLink: string
|
|
6383
6470
|
}
|
|
6384
6471
|
|
|
6385
6472
|
export interface LolCosmeticsSettingsStorageContainer {
|
|
@@ -6551,6 +6638,14 @@ export interface LolCosmeticsVelocityLimiterDto {
|
|
|
6551
6638
|
refill: string
|
|
6552
6639
|
}
|
|
6553
6640
|
|
|
6641
|
+
export type LolDirectxUpgradeDirectXUpgradeNotificationType = "FUTURE_HARDWARE_UPGRADE" | "HARDWARE_UPGRADE" | "NONE"
|
|
6642
|
+
|
|
6643
|
+
export interface LolDirectxUpgradeLocalSettingsCategory {
|
|
6644
|
+
data: unknown
|
|
6645
|
+
/** @format int32 */
|
|
6646
|
+
schemaVersion: number
|
|
6647
|
+
}
|
|
6648
|
+
|
|
6554
6649
|
export interface LolDiscordRpGameDataChampionSummary {
|
|
6555
6650
|
/** @format int32 */
|
|
6556
6651
|
id: number
|
|
@@ -6630,14 +6725,6 @@ export interface LolDropsOddsTableDisplayMetadata {
|
|
|
6630
6725
|
priority: number
|
|
6631
6726
|
}
|
|
6632
6727
|
|
|
6633
|
-
export type LolDx9DeprecationDx9DeprecationNotificationType = "TURN_OFF_DX9_LEGACY_MODE" | "HARDWARE_UPGRADE" | "NONE"
|
|
6634
|
-
|
|
6635
|
-
export interface LolDx9DeprecationLocalSettingsCategory {
|
|
6636
|
-
data: unknown
|
|
6637
|
-
/** @format int32 */
|
|
6638
|
-
schemaVersion: number
|
|
6639
|
-
}
|
|
6640
|
-
|
|
6641
6728
|
export interface LolEmailVerificationAccessToken {
|
|
6642
6729
|
token: string
|
|
6643
6730
|
/** @format uint64 */
|
|
@@ -6984,6 +7071,14 @@ export interface LolEndOfGameGameDataTftTrait {
|
|
|
6984
7071
|
name: string
|
|
6985
7072
|
}
|
|
6986
7073
|
|
|
7074
|
+
export interface LolEndOfGameGameStateUpdate {
|
|
7075
|
+
/** @format uint64 */
|
|
7076
|
+
gameId: number
|
|
7077
|
+
gameState: string
|
|
7078
|
+
gameType: string
|
|
7079
|
+
errorMessage: string
|
|
7080
|
+
}
|
|
7081
|
+
|
|
6987
7082
|
export interface LolEndOfGameGameflowAvailability {
|
|
6988
7083
|
state: string
|
|
6989
7084
|
}
|
|
@@ -7100,6 +7195,13 @@ export interface LolEndOfGameTFTEndOfGameCustomAugmentContainerViewModel {
|
|
|
7100
7195
|
description: string
|
|
7101
7196
|
}
|
|
7102
7197
|
|
|
7198
|
+
export interface LolEndOfGameTFTEndOfGameEventPVEViewModel {
|
|
7199
|
+
buddyName: string
|
|
7200
|
+
buddyIcon: string
|
|
7201
|
+
bossName: string
|
|
7202
|
+
affixes: string[]
|
|
7203
|
+
}
|
|
7204
|
+
|
|
7103
7205
|
export interface LolEndOfGameTFTEndOfGameItemViewModel {
|
|
7104
7206
|
name: string
|
|
7105
7207
|
icon: string
|
|
@@ -7176,6 +7278,7 @@ export interface LolEndOfGameTFTEndOfGameViewModel {
|
|
|
7176
7278
|
players: LolEndOfGameTFTEndOfGamePlayerViewModel[]
|
|
7177
7279
|
localPlayer?: LolEndOfGameTFTEndOfGamePlayerViewModel
|
|
7178
7280
|
playerSkillTreeEoG?: LolEndOfGameTFTEndOfGameSkillTreeViewModel
|
|
7281
|
+
eventPVEData?: LolEndOfGameTFTEndOfGameEventPVEViewModel
|
|
7179
7282
|
/** @format uint32 */
|
|
7180
7283
|
gameLength: number
|
|
7181
7284
|
/** @format uint64 */
|
|
@@ -7482,11 +7585,14 @@ export interface LolEventHubCatalogPluginItem {
|
|
|
7482
7585
|
releaseDate: number
|
|
7483
7586
|
/** @format uint64 */
|
|
7484
7587
|
inactiveDate: number
|
|
7588
|
+
/** @format int32 */
|
|
7589
|
+
maxQuantity: number
|
|
7485
7590
|
prices: LolEventHubCatalogPluginPrice[]
|
|
7486
7591
|
tags?: string[]
|
|
7487
7592
|
metadata?: LolEventHubItemMetadataEntry[]
|
|
7488
7593
|
questSkinInfo?: LolEventHubSkinLineInfo
|
|
7489
7594
|
active: boolean
|
|
7595
|
+
sale?: LolEventHubSale
|
|
7490
7596
|
ownershipType?: LolEventHubInventoryOwnership
|
|
7491
7597
|
}
|
|
7492
7598
|
|
|
@@ -7508,11 +7614,14 @@ export interface LolEventHubCatalogPluginItemWithDetails {
|
|
|
7508
7614
|
minimumBundlePrices?: LolEventHubCatalogPluginPrice[]
|
|
7509
7615
|
bundledDiscountPrices?: LolEventHubCatalogPluginPrice[]
|
|
7510
7616
|
assets: LolEventHubCatalogPluginItemAssets
|
|
7617
|
+
/** @format int32 */
|
|
7618
|
+
bundleFinalPrice: number
|
|
7619
|
+
flexible: boolean
|
|
7511
7620
|
}
|
|
7512
7621
|
|
|
7513
7622
|
export interface LolEventHubCatalogPluginPrice {
|
|
7514
7623
|
currency: string
|
|
7515
|
-
/** @format
|
|
7624
|
+
/** @format int32 */
|
|
7516
7625
|
cost: number
|
|
7517
7626
|
costType?: string
|
|
7518
7627
|
sale?: LolEventHubCatalogPluginSale
|
|
@@ -7523,7 +7632,7 @@ export interface LolEventHubCatalogPluginSale {
|
|
|
7523
7632
|
endDate: string
|
|
7524
7633
|
/** @format float */
|
|
7525
7634
|
discount?: number
|
|
7526
|
-
/** @format
|
|
7635
|
+
/** @format int32 */
|
|
7527
7636
|
cost: number
|
|
7528
7637
|
}
|
|
7529
7638
|
|
|
@@ -7673,6 +7782,9 @@ export interface LolEventHubEventInfoUIData {
|
|
|
7673
7782
|
eventType: string
|
|
7674
7783
|
eventIcon: string
|
|
7675
7784
|
navBarIcon: string
|
|
7785
|
+
battleExpIcon: string
|
|
7786
|
+
localizedSeasonLogo: string
|
|
7787
|
+
localizedShortName: string
|
|
7676
7788
|
eventTokenImage: string
|
|
7677
7789
|
startDate: string
|
|
7678
7790
|
progressEndDate: string
|
|
@@ -7708,6 +7820,7 @@ export interface LolEventHubEventShop {
|
|
|
7708
7820
|
localizedName: string
|
|
7709
7821
|
backgroundImage: string
|
|
7710
7822
|
navbarIconImage: string
|
|
7823
|
+
battleExpIconImage: string
|
|
7711
7824
|
headerIconImage: string
|
|
7712
7825
|
startDate: string
|
|
7713
7826
|
progressEndDate: string
|
|
@@ -7874,6 +7987,7 @@ export interface LolEventHubHallOfLegends {
|
|
|
7874
7987
|
localizedName: string
|
|
7875
7988
|
navbarIconImage: string
|
|
7876
7989
|
headerIconImage: string
|
|
7990
|
+
battleExpIconImage: string
|
|
7877
7991
|
headerTitleImage: string
|
|
7878
7992
|
startDate: string
|
|
7879
7993
|
progressEndDate: string
|
|
@@ -8027,7 +8141,7 @@ export interface LolEventHubItemChoices {
|
|
|
8027
8141
|
|
|
8028
8142
|
export interface LolEventHubItemCost {
|
|
8029
8143
|
currency: string
|
|
8030
|
-
/** @format
|
|
8144
|
+
/** @format int32 */
|
|
8031
8145
|
cost: number
|
|
8032
8146
|
/** @format float */
|
|
8033
8147
|
discount?: number
|
|
@@ -8089,7 +8203,7 @@ export type LolEventHubItemOwnershipType = "F2P" | "LOYALTY" | "RENTED" | "OWNED
|
|
|
8089
8203
|
|
|
8090
8204
|
export interface LolEventHubItemPrice {
|
|
8091
8205
|
currencyType: string
|
|
8092
|
-
/** @format
|
|
8206
|
+
/** @format int32 */
|
|
8093
8207
|
price: number
|
|
8094
8208
|
purchasable: boolean
|
|
8095
8209
|
}
|
|
@@ -8672,6 +8786,7 @@ export interface LolEventHubSeasonPass {
|
|
|
8672
8786
|
localizedName: string
|
|
8673
8787
|
navbarIconImage: string
|
|
8674
8788
|
headerIconImage: string
|
|
8789
|
+
battleExpIconImage: string
|
|
8675
8790
|
headerTitleImage: string
|
|
8676
8791
|
startDate: string
|
|
8677
8792
|
progressEndDate: string
|
|
@@ -8687,6 +8802,8 @@ export interface LolEventHubSeasonPass {
|
|
|
8687
8802
|
upsellBackgroundImageUrl: string
|
|
8688
8803
|
upsellTooltipBackgroundImageUrl: string
|
|
8689
8804
|
objectiveBannerImage: string
|
|
8805
|
+
localizedSeasonLogo: string
|
|
8806
|
+
localizedShortName: string
|
|
8690
8807
|
chapters: LolEventHubChapter[]
|
|
8691
8808
|
}
|
|
8692
8809
|
|
|
@@ -9235,7 +9352,9 @@ export interface LolGameQueuesQueue {
|
|
|
9235
9352
|
gameSelectCategory: string
|
|
9236
9353
|
/** @format uint8 */
|
|
9237
9354
|
gameSelectPriority: number
|
|
9355
|
+
isLimitedTimeQueue: boolean
|
|
9238
9356
|
isSkillTreeQueue: boolean
|
|
9357
|
+
isBotHonoringAllowed: boolean
|
|
9239
9358
|
isCustom: boolean
|
|
9240
9359
|
/** @format uint32 */
|
|
9241
9360
|
numberOfTeamsInLobby: number
|
|
@@ -9326,7 +9445,9 @@ export interface LolGameQueuesQueueTranslation {
|
|
|
9326
9445
|
gameSelectCategory: string
|
|
9327
9446
|
/** @format uint8 */
|
|
9328
9447
|
gameSelectPriority: number
|
|
9448
|
+
isLimitedTimeQueue: boolean
|
|
9329
9449
|
isSkillTreeQueue: boolean
|
|
9450
|
+
isBotHonoringAllowed: boolean
|
|
9330
9451
|
hidePlayerPosition: boolean
|
|
9331
9452
|
}
|
|
9332
9453
|
|
|
@@ -9530,6 +9651,7 @@ export interface LolGameflowQueue {
|
|
|
9530
9651
|
/** @format int32 */
|
|
9531
9652
|
removalFromGameDelayMinutes: number
|
|
9532
9653
|
isCustom: boolean
|
|
9654
|
+
isBotHonoringAllowed: boolean
|
|
9533
9655
|
}
|
|
9534
9656
|
|
|
9535
9657
|
export type LolGameflowQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -9688,6 +9810,8 @@ export interface LolHonorV2EligiblePlayer {
|
|
|
9688
9810
|
summonerId: number
|
|
9689
9811
|
summonerName: string
|
|
9690
9812
|
championName: string
|
|
9813
|
+
/** @format int32 */
|
|
9814
|
+
championId: number
|
|
9691
9815
|
skinSplashPath: string
|
|
9692
9816
|
role: string
|
|
9693
9817
|
botPlayer: boolean
|
|
@@ -9704,6 +9828,8 @@ export interface LolHonorV2EndOfGamePlayer {
|
|
|
9704
9828
|
summonerId: number
|
|
9705
9829
|
skinSplashPath: string
|
|
9706
9830
|
championName: string
|
|
9831
|
+
/** @format int32 */
|
|
9832
|
+
championId: number
|
|
9707
9833
|
detectedTeamPosition: string
|
|
9708
9834
|
}
|
|
9709
9835
|
|
|
@@ -9754,6 +9880,7 @@ export interface LolHonorV2HonorConfig {
|
|
|
9754
9880
|
HonorSuggestionsEnabled: boolean
|
|
9755
9881
|
"honorEndpointsV2Enabled": boolean
|
|
9756
9882
|
"ceremonyV3Enabled": boolean
|
|
9883
|
+
useHonorInPostgamePlugin: boolean
|
|
9757
9884
|
}
|
|
9758
9885
|
|
|
9759
9886
|
export interface LolHonorV2HonorInteraction {
|
|
@@ -9779,6 +9906,12 @@ export interface LolHonorV2HonorSummoner {
|
|
|
9779
9906
|
summonerId: number
|
|
9780
9907
|
}
|
|
9781
9908
|
|
|
9909
|
+
export interface LolHonorV2HonorView {
|
|
9910
|
+
/** @format int32 */
|
|
9911
|
+
honorLevel: number
|
|
9912
|
+
redemptions: LolHonorV2Redemption[]
|
|
9913
|
+
}
|
|
9914
|
+
|
|
9782
9915
|
export interface LolHonorV2LoginSession {
|
|
9783
9916
|
state: LolHonorV2LoginSessionStates
|
|
9784
9917
|
}
|
|
@@ -9827,6 +9960,7 @@ export interface LolHonorV2Queue {
|
|
|
9827
9960
|
removalFromGameAllowed: boolean
|
|
9828
9961
|
/** @format int32 */
|
|
9829
9962
|
removalFromGameDelayMinutes: number
|
|
9963
|
+
isBotHonoringAllowed: boolean
|
|
9830
9964
|
}
|
|
9831
9965
|
|
|
9832
9966
|
export interface LolHonorV2Redemption {
|
|
@@ -11800,6 +11934,7 @@ export interface LolLobbyQueue {
|
|
|
11800
11934
|
/** @format uint8 */
|
|
11801
11935
|
gameSelectPriority: number
|
|
11802
11936
|
isSkillTreeQueue: boolean
|
|
11937
|
+
isBotHonoringAllowed: boolean
|
|
11803
11938
|
isCustom: boolean
|
|
11804
11939
|
/** @format uint32 */
|
|
11805
11940
|
numberOfTeamsInLobby: number
|
|
@@ -13234,6 +13369,10 @@ export interface LolMapsMaps {
|
|
|
13234
13369
|
platformName: string
|
|
13235
13370
|
assets: Record<string, string>
|
|
13236
13371
|
locStrings: Record<string, string>
|
|
13372
|
+
/** @format int32 */
|
|
13373
|
+
setModalButtonBottom: number
|
|
13374
|
+
/** @format int32 */
|
|
13375
|
+
setModalButtonLeft: number
|
|
13237
13376
|
categorizedContentBundles: unknown
|
|
13238
13377
|
tutorialCards: LolMapsTutorialCard[]
|
|
13239
13378
|
properties: unknown
|
|
@@ -13306,6 +13445,12 @@ export interface LolMarketplaceFulfillmentDto {
|
|
|
13306
13445
|
itemId: string
|
|
13307
13446
|
currencyId: string
|
|
13308
13447
|
subCurrencyDeltas: Record<string, number>
|
|
13448
|
+
progressionCounterId: string
|
|
13449
|
+
}
|
|
13450
|
+
|
|
13451
|
+
export interface LolMarketplaceGameDataCompanion {
|
|
13452
|
+
contentId: string
|
|
13453
|
+
companionType: string
|
|
13309
13454
|
}
|
|
13310
13455
|
|
|
13311
13456
|
export interface LolMarketplacePagination {
|
|
@@ -13366,6 +13511,8 @@ export interface LolMarketplacePurchaseDto {
|
|
|
13366
13511
|
refund: LolMarketplaceRefundDto
|
|
13367
13512
|
refundRule: string
|
|
13368
13513
|
refundable: boolean
|
|
13514
|
+
/** @format int64 */
|
|
13515
|
+
quantity: number
|
|
13369
13516
|
source: string
|
|
13370
13517
|
}
|
|
13371
13518
|
|
|
@@ -13502,6 +13649,7 @@ export interface LolMarketplaceRotationalShopItemData {
|
|
|
13502
13649
|
redeemIconTexture: string
|
|
13503
13650
|
rarity: string
|
|
13504
13651
|
typeID: string
|
|
13652
|
+
speciesLink: string
|
|
13505
13653
|
}
|
|
13506
13654
|
|
|
13507
13655
|
export interface LolMarketplaceStoreDto {
|
|
@@ -13561,16 +13709,6 @@ export interface LolMarketplaceVelocityLimiterDto {
|
|
|
13561
13709
|
refill: string
|
|
13562
13710
|
}
|
|
13563
13711
|
|
|
13564
|
-
export interface LolMatchHistoryAcsEndPoint {
|
|
13565
|
-
url: string
|
|
13566
|
-
}
|
|
13567
|
-
|
|
13568
|
-
export interface LolMatchHistoryAcsPlayer {
|
|
13569
|
-
platformId: string
|
|
13570
|
-
/** @format uint64 */
|
|
13571
|
-
accountId: number
|
|
13572
|
-
}
|
|
13573
|
-
|
|
13574
13712
|
export interface LolMatchHistoryAlias {
|
|
13575
13713
|
gameName: string
|
|
13576
13714
|
tagLine: string
|
|
@@ -13599,6 +13737,13 @@ export interface LolMatchHistoryGAMHSMatchHistoryMetadata {
|
|
|
13599
13737
|
private: boolean
|
|
13600
13738
|
}
|
|
13601
13739
|
|
|
13740
|
+
export interface LolMatchHistoryGameDataChampionSummary {
|
|
13741
|
+
/** @format int32 */
|
|
13742
|
+
id: number
|
|
13743
|
+
name: string
|
|
13744
|
+
alias: string
|
|
13745
|
+
}
|
|
13746
|
+
|
|
13602
13747
|
export interface LolMatchHistoryLoginSession {
|
|
13603
13748
|
state: LolMatchHistoryLoginSessionStates
|
|
13604
13749
|
/** @format uint64 */
|
|
@@ -13610,15 +13755,6 @@ export interface LolMatchHistoryLoginSession {
|
|
|
13610
13755
|
|
|
13611
13756
|
export type LolMatchHistoryLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
13612
13757
|
|
|
13613
|
-
export interface LolMatchHistoryMHSummoner {
|
|
13614
|
-
/** @format uint64 */
|
|
13615
|
-
summonerId: number
|
|
13616
|
-
/** @format uint64 */
|
|
13617
|
-
accountId: number
|
|
13618
|
-
displayName: string
|
|
13619
|
-
puuid: string
|
|
13620
|
-
}
|
|
13621
|
-
|
|
13622
13758
|
export interface LolMatchHistoryMatchHistoryEvent {
|
|
13623
13759
|
type: string
|
|
13624
13760
|
/** @format uint64 */
|
|
@@ -13969,45 +14105,6 @@ export interface LolMatchHistoryMatchHistoryParticipantStatistics {
|
|
|
13969
14105
|
subteamPlacement: number
|
|
13970
14106
|
}
|
|
13971
14107
|
|
|
13972
|
-
export interface LolMatchHistoryMatchHistoryPlayerChampMasteryDelta {
|
|
13973
|
-
grade: string
|
|
13974
|
-
}
|
|
13975
|
-
|
|
13976
|
-
export interface LolMatchHistoryMatchHistoryPlayerDelta {
|
|
13977
|
-
/** @format uint64 */
|
|
13978
|
-
originalAccountId: number
|
|
13979
|
-
originalPlatformId: string
|
|
13980
|
-
deltas: LolMatchHistoryMatchHistoryPlayerGameDelta[]
|
|
13981
|
-
}
|
|
13982
|
-
|
|
13983
|
-
export interface LolMatchHistoryMatchHistoryPlayerGameDelta {
|
|
13984
|
-
gamePlatformId: string
|
|
13985
|
-
/** @format uint64 */
|
|
13986
|
-
gameId: number
|
|
13987
|
-
platformDelta: LolMatchHistoryMatchHistoryPlayerPlatformDelta
|
|
13988
|
-
leagueDelta: LolMatchHistoryMatchHistoryPlayerLeagueDelta
|
|
13989
|
-
champMastery: LolMatchHistoryMatchHistoryPlayerChampMasteryDelta
|
|
13990
|
-
}
|
|
13991
|
-
|
|
13992
|
-
export interface LolMatchHistoryMatchHistoryPlayerLeagueDelta {
|
|
13993
|
-
/** @format uint64 */
|
|
13994
|
-
leaguePointDelta: number
|
|
13995
|
-
reason: string
|
|
13996
|
-
miniSeriesProgress: string[]
|
|
13997
|
-
/** @format uint64 */
|
|
13998
|
-
timestamp: number
|
|
13999
|
-
}
|
|
14000
|
-
|
|
14001
|
-
export interface LolMatchHistoryMatchHistoryPlayerPlatformDelta {
|
|
14002
|
-
/** @format uint64 */
|
|
14003
|
-
xpDelta: number
|
|
14004
|
-
/** @format uint64 */
|
|
14005
|
-
ipDelta: number
|
|
14006
|
-
compensationModeEnabled: boolean
|
|
14007
|
-
/** @format uint64 */
|
|
14008
|
-
timestamp: number
|
|
14009
|
-
}
|
|
14010
|
-
|
|
14011
14108
|
export interface LolMatchHistoryMatchHistoryPosition {
|
|
14012
14109
|
/** @format int16 */
|
|
14013
14110
|
x: number
|
|
@@ -14092,6 +14189,10 @@ export interface LolMatchHistoryRecentlyPlayedSummoner {
|
|
|
14092
14189
|
}
|
|
14093
14190
|
|
|
14094
14191
|
export interface LolMatchHistorySummoner {
|
|
14192
|
+
/** @format uint64 */
|
|
14193
|
+
summonerId: number
|
|
14194
|
+
/** @format uint64 */
|
|
14195
|
+
accountId: number
|
|
14095
14196
|
displayName: string
|
|
14096
14197
|
gameName: string
|
|
14097
14198
|
tagLine: string
|
|
@@ -14314,6 +14415,7 @@ export interface LolMissionsCapMissionSeriesMissionReward {
|
|
|
14314
14415
|
itemId: string
|
|
14315
14416
|
itemTypeId: string
|
|
14316
14417
|
typeId: string
|
|
14418
|
+
currencyId: string
|
|
14317
14419
|
/** @format uint32 */
|
|
14318
14420
|
amount: number
|
|
14319
14421
|
}
|
|
@@ -14586,6 +14688,7 @@ export interface LolNachoBannerOddsInfo {
|
|
|
14586
14688
|
productId: string
|
|
14587
14689
|
rewardTables: LolNachoNachoRollRewardsTable[]
|
|
14588
14690
|
endDateMilis: string
|
|
14691
|
+
bundledMythicEssence: boolean
|
|
14589
14692
|
}
|
|
14590
14693
|
|
|
14591
14694
|
export interface LolNachoBlessingTokenPurchaseRequest {
|
|
@@ -14607,6 +14710,7 @@ export interface LolNachoCapDropsDropTableDisplayMetadata {
|
|
|
14607
14710
|
version: number
|
|
14608
14711
|
oddsTree: LolNachoDropsOddsTreeNodeDTO
|
|
14609
14712
|
endDateMilis: string
|
|
14713
|
+
bundledMythicEssence: boolean
|
|
14610
14714
|
}
|
|
14611
14715
|
|
|
14612
14716
|
export interface LolNachoCatalogItemPurchaseRequest {
|
|
@@ -15300,6 +15404,7 @@ export interface LolObjectivesCapMissionSeriesMissionReward {
|
|
|
15300
15404
|
itemId: string
|
|
15301
15405
|
itemTypeId: string
|
|
15302
15406
|
typeId: string
|
|
15407
|
+
currencyId: string
|
|
15303
15408
|
/** @format uint32 */
|
|
15304
15409
|
amount: number
|
|
15305
15410
|
}
|
|
@@ -15488,14 +15593,6 @@ export interface LolObjectivesObjectivesContainer {
|
|
|
15488
15593
|
}
|
|
15489
15594
|
|
|
15490
15595
|
export interface LolObjectivesObjectivesGroup {
|
|
15491
|
-
id: string
|
|
15492
|
-
backgroundImage: string
|
|
15493
|
-
/** @format uint64 */
|
|
15494
|
-
startDate: number
|
|
15495
|
-
/** @format uint64 */
|
|
15496
|
-
endDate: number
|
|
15497
|
-
objectives: LolObjectivesObjectivesContainer[]
|
|
15498
|
-
isActive: boolean
|
|
15499
15596
|
gameType: string
|
|
15500
15597
|
}
|
|
15501
15598
|
|
|
@@ -15654,6 +15751,7 @@ export interface LolObjectivesTftBattlepassInfo {
|
|
|
15654
15751
|
premiumEntitlementId: string
|
|
15655
15752
|
pcPurchaseRequirement: string
|
|
15656
15753
|
passId: string
|
|
15754
|
+
hasLevelPurchasing: boolean
|
|
15657
15755
|
media: Record<string, string>
|
|
15658
15756
|
passType: LolObjectivesTftPassType
|
|
15659
15757
|
}
|
|
@@ -15751,15 +15849,7 @@ export interface LolObjectivesUIObjectivesCategory {
|
|
|
15751
15849
|
}
|
|
15752
15850
|
|
|
15753
15851
|
export interface LolObjectivesUIObjectivesGroup {
|
|
15754
|
-
uuid: string
|
|
15755
|
-
backgroundImage: string
|
|
15756
15852
|
gameType: string
|
|
15757
|
-
/** @format uint64 */
|
|
15758
|
-
startDate: number
|
|
15759
|
-
/** @format uint64 */
|
|
15760
|
-
endDate: number
|
|
15761
|
-
isActive: boolean
|
|
15762
|
-
objectives: LolObjectivesUIObjectives[]
|
|
15763
15853
|
objectivesCategories: LolObjectivesUIObjectivesCategory[]
|
|
15764
15854
|
}
|
|
15765
15855
|
|
|
@@ -15767,6 +15857,11 @@ export interface LolObjectivesUserInfo {
|
|
|
15767
15857
|
userInfo: string
|
|
15768
15858
|
}
|
|
15769
15859
|
|
|
15860
|
+
export interface LolPatchAppUpdateConfig {
|
|
15861
|
+
disableDeprecatedProductIntegrationState: boolean
|
|
15862
|
+
enablePatchProxyState: boolean
|
|
15863
|
+
}
|
|
15864
|
+
|
|
15770
15865
|
export interface LolPatchChunkingPatcherEnvironment {
|
|
15771
15866
|
game_patcher_available: boolean
|
|
15772
15867
|
game_patcher_enabled: boolean
|
|
@@ -15808,11 +15903,6 @@ export interface LolPatchConfigStatus {
|
|
|
15808
15903
|
readiness: LolPatchConfigReadiness
|
|
15809
15904
|
}
|
|
15810
15905
|
|
|
15811
|
-
export interface LolPatchCurrentUpdateStatus {
|
|
15812
|
-
updateAvailable: boolean
|
|
15813
|
-
updateRequired: boolean
|
|
15814
|
-
}
|
|
15815
|
-
|
|
15816
15906
|
export interface LolPatchEntitlementsTokenResource {
|
|
15817
15907
|
accessToken: string
|
|
15818
15908
|
token: string
|
|
@@ -15832,6 +15922,11 @@ export interface LolPatchNotification {
|
|
|
15832
15922
|
|
|
15833
15923
|
export type LolPatchNotificationId = "BrokenPermissions" | "NotEnoughDiskSpace" | "DidRestoreClientBackup" | "FailedToWriteError" | "MissingFilesError" | "ConnectionError" | "UnspecifiedError"
|
|
15834
15924
|
|
|
15925
|
+
export interface LolPatchPatchProxyState {
|
|
15926
|
+
state: string
|
|
15927
|
+
launchable: boolean
|
|
15928
|
+
}
|
|
15929
|
+
|
|
15835
15930
|
export interface LolPatchPatchSieveCompatVersion {
|
|
15836
15931
|
id: string
|
|
15837
15932
|
}
|
|
@@ -15889,9 +15984,7 @@ export interface LolPatchPatcherSettings {
|
|
|
15889
15984
|
patchsieve_url: string
|
|
15890
15985
|
}
|
|
15891
15986
|
|
|
15892
|
-
export interface
|
|
15893
|
-
patchlineId: string
|
|
15894
|
-
productId: string
|
|
15987
|
+
export interface LolPatchProductIntegrationState {
|
|
15895
15988
|
updateAvailable: boolean
|
|
15896
15989
|
updateRequired: boolean
|
|
15897
15990
|
}
|
|
@@ -17399,11 +17492,14 @@ export interface LolPurchaseWidgetCatalogPluginItem {
|
|
|
17399
17492
|
releaseDate: number
|
|
17400
17493
|
/** @format uint64 */
|
|
17401
17494
|
inactiveDate: number
|
|
17495
|
+
/** @format int32 */
|
|
17496
|
+
maxQuantity: number
|
|
17402
17497
|
prices: LolPurchaseWidgetCatalogPluginPrice[]
|
|
17403
17498
|
tags?: string[]
|
|
17404
17499
|
metadata?: LolPurchaseWidgetItemMetadataEntry[]
|
|
17405
17500
|
questSkinInfo?: LolPurchaseWidgetSkinLineInfo
|
|
17406
17501
|
active: boolean
|
|
17502
|
+
sale?: LolPurchaseWidgetSale
|
|
17407
17503
|
ownershipType?: LolPurchaseWidgetInventoryOwnership
|
|
17408
17504
|
}
|
|
17409
17505
|
|
|
@@ -17425,11 +17521,14 @@ export interface LolPurchaseWidgetCatalogPluginItemWithDetails {
|
|
|
17425
17521
|
minimumBundlePrices?: LolPurchaseWidgetCatalogPluginPrice[]
|
|
17426
17522
|
bundledDiscountPrices?: LolPurchaseWidgetCatalogPluginPrice[]
|
|
17427
17523
|
assets: LolPurchaseWidgetCatalogPluginItemAssets
|
|
17524
|
+
/** @format int32 */
|
|
17525
|
+
bundleFinalPrice: number
|
|
17526
|
+
flexible: boolean
|
|
17428
17527
|
}
|
|
17429
17528
|
|
|
17430
17529
|
export interface LolPurchaseWidgetCatalogPluginPrice {
|
|
17431
17530
|
currency: string
|
|
17432
|
-
/** @format
|
|
17531
|
+
/** @format int32 */
|
|
17433
17532
|
cost: number
|
|
17434
17533
|
costType?: string
|
|
17435
17534
|
sale?: LolPurchaseWidgetCatalogPluginSale
|
|
@@ -17440,7 +17539,7 @@ export interface LolPurchaseWidgetCatalogPluginSale {
|
|
|
17440
17539
|
endDate: string
|
|
17441
17540
|
/** @format float */
|
|
17442
17541
|
discount?: number
|
|
17443
|
-
/** @format
|
|
17542
|
+
/** @format int32 */
|
|
17444
17543
|
cost: number
|
|
17445
17544
|
}
|
|
17446
17545
|
|
|
@@ -17491,7 +17590,7 @@ export interface LolPurchaseWidgetItemChoices {
|
|
|
17491
17590
|
|
|
17492
17591
|
export interface LolPurchaseWidgetItemCost {
|
|
17493
17592
|
currency: string
|
|
17494
|
-
/** @format
|
|
17593
|
+
/** @format int32 */
|
|
17495
17594
|
cost: number
|
|
17496
17595
|
/** @format float */
|
|
17497
17596
|
discount?: number
|
|
@@ -17533,6 +17632,18 @@ export interface LolPurchaseWidgetItemMetadataEntry {
|
|
|
17533
17632
|
value: string
|
|
17534
17633
|
}
|
|
17535
17634
|
|
|
17635
|
+
export interface LolPurchaseWidgetItemOrderDTO {
|
|
17636
|
+
inventoryType: string
|
|
17637
|
+
/** @format int32 */
|
|
17638
|
+
itemId: number
|
|
17639
|
+
/** @format uint32 */
|
|
17640
|
+
quantity: number
|
|
17641
|
+
/** @format uint32 */
|
|
17642
|
+
rpCost: number
|
|
17643
|
+
/** @format uint32 */
|
|
17644
|
+
ipCost: number
|
|
17645
|
+
}
|
|
17646
|
+
|
|
17536
17647
|
export interface LolPurchaseWidgetItemOwnership {
|
|
17537
17648
|
itemKey: LolPurchaseWidgetItemKey
|
|
17538
17649
|
/** @format int32 */
|
|
@@ -17541,7 +17652,7 @@ export interface LolPurchaseWidgetItemOwnership {
|
|
|
17541
17652
|
|
|
17542
17653
|
export interface LolPurchaseWidgetItemPrice {
|
|
17543
17654
|
currencyType: string
|
|
17544
|
-
/** @format
|
|
17655
|
+
/** @format int32 */
|
|
17545
17656
|
price: number
|
|
17546
17657
|
purchasable: boolean
|
|
17547
17658
|
}
|
|
@@ -17631,6 +17742,21 @@ export interface LolPurchaseWidgetPurchaseOption {
|
|
|
17631
17742
|
priceDetails: LolPurchaseWidgetPriceDetail[]
|
|
17632
17743
|
}
|
|
17633
17744
|
|
|
17745
|
+
export interface LolPurchaseWidgetPurchaseOrderRequestDTO {
|
|
17746
|
+
/** @format uint64 */
|
|
17747
|
+
accountId: number
|
|
17748
|
+
items: LolPurchaseWidgetItemOrderDTO[]
|
|
17749
|
+
}
|
|
17750
|
+
|
|
17751
|
+
export interface LolPurchaseWidgetPurchaseOrderResponseDTO {
|
|
17752
|
+
/** @format int64 */
|
|
17753
|
+
rpBalance: number
|
|
17754
|
+
/** @format int64 */
|
|
17755
|
+
ipBalance: number
|
|
17756
|
+
transactions: LolPurchaseWidgetTransactionResponseDTO[]
|
|
17757
|
+
waitForRMS: boolean
|
|
17758
|
+
}
|
|
17759
|
+
|
|
17634
17760
|
export interface LolPurchaseWidgetPurchaseRequest {
|
|
17635
17761
|
items: LolPurchaseWidgetPurchaseItem[]
|
|
17636
17762
|
}
|
|
@@ -17716,6 +17842,13 @@ export interface LolPurchaseWidgetTransaction {
|
|
|
17716
17842
|
iconUrl: string
|
|
17717
17843
|
}
|
|
17718
17844
|
|
|
17845
|
+
export interface LolPurchaseWidgetTransactionResponseDTO {
|
|
17846
|
+
id: string
|
|
17847
|
+
inventoryType: string
|
|
17848
|
+
/** @format int32 */
|
|
17849
|
+
itemId: number
|
|
17850
|
+
}
|
|
17851
|
+
|
|
17719
17852
|
export interface LolPurchaseWidgetValidateOfferError {
|
|
17720
17853
|
errorKey: string
|
|
17721
17854
|
meta: string
|
|
@@ -18131,6 +18264,10 @@ export interface LolRankedRankedQueueStats {
|
|
|
18131
18264
|
wins: number
|
|
18132
18265
|
/** @format int32 */
|
|
18133
18266
|
losses: number
|
|
18267
|
+
/** @format int32 */
|
|
18268
|
+
currentSeasonWinsForRewards: number
|
|
18269
|
+
/** @format int32 */
|
|
18270
|
+
previousSeasonWinsForRewards: number
|
|
18134
18271
|
highestTier: string
|
|
18135
18272
|
highestDivision: LolRankedLeagueDivision
|
|
18136
18273
|
previousSeasonEndTier: string
|
|
@@ -18158,6 +18295,10 @@ export interface LolRankedRankedQueueStatsDTO {
|
|
|
18158
18295
|
wins: number
|
|
18159
18296
|
/** @format int32 */
|
|
18160
18297
|
losses: number
|
|
18298
|
+
/** @format int32 */
|
|
18299
|
+
currentSeasonWinsForRewards: number
|
|
18300
|
+
/** @format int32 */
|
|
18301
|
+
previousSeasonWinsForRewards: number
|
|
18161
18302
|
highestTier: string
|
|
18162
18303
|
highestRank: string
|
|
18163
18304
|
previousSeasonEndTier: string
|
|
@@ -20516,6 +20657,8 @@ export interface LolStatstonesSummoner {
|
|
|
20516
20657
|
summonerId: number
|
|
20517
20658
|
puuid: string
|
|
20518
20659
|
displayName: string
|
|
20660
|
+
/** @format uint32 */
|
|
20661
|
+
summonerLevel: number
|
|
20519
20662
|
}
|
|
20520
20663
|
|
|
20521
20664
|
export interface LolStoreAccessTokenResource {
|
|
@@ -20941,7 +21084,7 @@ export type LolSuggestedPlayersSuggestedPlayersReason = "LegacyPlayAgain" | "Hon
|
|
|
20941
21084
|
|
|
20942
21085
|
export interface LolSuggestedPlayersSuggestedPlayersReportedPlayer {
|
|
20943
21086
|
/** @format uint64 */
|
|
20944
|
-
|
|
21087
|
+
offenderSummonerId: number
|
|
20945
21088
|
}
|
|
20946
21089
|
|
|
20947
21090
|
export interface LolSuggestedPlayersSuggestedPlayersSuggestedPlayer {
|
|
@@ -21086,6 +21229,57 @@ export type LolSummonerProfilePrivacyEnabledState = "DISABLED" | "ENABLED" | "UN
|
|
|
21086
21229
|
|
|
21087
21230
|
export type LolSummonerProfilePrivacySetting = "PUBLIC" | "PRIVATE"
|
|
21088
21231
|
|
|
21232
|
+
export interface LolSummonerProfilesChampionMasteryData {
|
|
21233
|
+
/** @format int64 */
|
|
21234
|
+
championId: number
|
|
21235
|
+
/** @format int32 */
|
|
21236
|
+
championLevel: number
|
|
21237
|
+
/** @format int32 */
|
|
21238
|
+
championPoints: number
|
|
21239
|
+
highestGrade?: string
|
|
21240
|
+
}
|
|
21241
|
+
|
|
21242
|
+
export interface LolSummonerProfilesChampionMasteryView {
|
|
21243
|
+
puuid: string
|
|
21244
|
+
data: LolSummonerProfilesChampionMasteryData[]
|
|
21245
|
+
}
|
|
21246
|
+
|
|
21247
|
+
export interface LolSummonerProfilesHonorView {
|
|
21248
|
+
/** @format int32 */
|
|
21249
|
+
honorLevel: number
|
|
21250
|
+
redemptions: LolSummonerProfilesRedemption[]
|
|
21251
|
+
}
|
|
21252
|
+
|
|
21253
|
+
export interface LolSummonerProfilesPrivacyView {
|
|
21254
|
+
anonymityEnabled: boolean
|
|
21255
|
+
}
|
|
21256
|
+
|
|
21257
|
+
export interface LolSummonerProfilesPuuidAndViews {
|
|
21258
|
+
payload: Record<string, LolSummonerProfilesViews>
|
|
21259
|
+
}
|
|
21260
|
+
|
|
21261
|
+
export interface LolSummonerProfilesRedemption {
|
|
21262
|
+
/** @format int32 */
|
|
21263
|
+
required: number
|
|
21264
|
+
/** @format int32 */
|
|
21265
|
+
remaining: number
|
|
21266
|
+
eventType: string
|
|
21267
|
+
}
|
|
21268
|
+
|
|
21269
|
+
export interface LolSummonerProfilesSummonerLevel {
|
|
21270
|
+
puuid: string
|
|
21271
|
+
/** @format uint32 */
|
|
21272
|
+
level: number
|
|
21273
|
+
/** @format uint32 */
|
|
21274
|
+
xpSinceLastLevel: number
|
|
21275
|
+
/** @format uint32 */
|
|
21276
|
+
xpToNextLevel: number
|
|
21277
|
+
}
|
|
21278
|
+
|
|
21279
|
+
export interface LolSummonerProfilesViews {
|
|
21280
|
+
views: string[]
|
|
21281
|
+
}
|
|
21282
|
+
|
|
21089
21283
|
export interface LolSummonerRerollDataBagForClientV1 {
|
|
21090
21284
|
/** @format int32 */
|
|
21091
21285
|
queueId: number
|
|
@@ -21189,6 +21383,16 @@ export interface LolSummonerSummonerIdAndName {
|
|
|
21189
21383
|
puuid: string
|
|
21190
21384
|
}
|
|
21191
21385
|
|
|
21386
|
+
export interface LolSummonerSummonerLevelView {
|
|
21387
|
+
puuid: string
|
|
21388
|
+
/** @format uint32 */
|
|
21389
|
+
level: number
|
|
21390
|
+
/** @format uint32 */
|
|
21391
|
+
xpSinceLastLevel: number
|
|
21392
|
+
/** @format uint32 */
|
|
21393
|
+
xpToNextLevel: number
|
|
21394
|
+
}
|
|
21395
|
+
|
|
21192
21396
|
export interface LolSummonerSummonerProfileUpdate {
|
|
21193
21397
|
key: string
|
|
21194
21398
|
value: unknown
|
|
@@ -21328,6 +21532,7 @@ export interface LolTftEventCapMissionSeriesMissionReward {
|
|
|
21328
21532
|
itemId: string
|
|
21329
21533
|
itemTypeId: string
|
|
21330
21534
|
typeId: string
|
|
21535
|
+
currencyId: string
|
|
21331
21536
|
/** @format uint32 */
|
|
21332
21537
|
amount: number
|
|
21333
21538
|
}
|
|
@@ -21962,6 +22167,9 @@ export interface LolTftPassEventInfoUIData {
|
|
|
21962
22167
|
eventType: string
|
|
21963
22168
|
eventIcon: string
|
|
21964
22169
|
navBarIcon: string
|
|
22170
|
+
battleExpIcon: string
|
|
22171
|
+
localizedSeasonLogo: string
|
|
22172
|
+
localizedShortName: string
|
|
21965
22173
|
eventTokenImage: string
|
|
21966
22174
|
startDate: string
|
|
21967
22175
|
progressEndDate: string
|
|
@@ -21990,6 +22198,7 @@ export interface LolTftPassEventShop {
|
|
|
21990
22198
|
localizedName: string
|
|
21991
22199
|
backgroundImage: string
|
|
21992
22200
|
navbarIconImage: string
|
|
22201
|
+
battleExpIconImage: string
|
|
21993
22202
|
headerIconImage: string
|
|
21994
22203
|
startDate: string
|
|
21995
22204
|
progressEndDate: string
|
|
@@ -22063,6 +22272,7 @@ export interface LolTftPassHallOfLegends {
|
|
|
22063
22272
|
localizedName: string
|
|
22064
22273
|
navbarIconImage: string
|
|
22065
22274
|
headerIconImage: string
|
|
22275
|
+
battleExpIconImage: string
|
|
22066
22276
|
headerTitleImage: string
|
|
22067
22277
|
startDate: string
|
|
22068
22278
|
progressEndDate: string
|
|
@@ -22665,6 +22875,7 @@ export interface LolTftPassSeasonPass {
|
|
|
22665
22875
|
localizedName: string
|
|
22666
22876
|
navbarIconImage: string
|
|
22667
22877
|
headerIconImage: string
|
|
22878
|
+
battleExpIconImage: string
|
|
22668
22879
|
headerTitleImage: string
|
|
22669
22880
|
startDate: string
|
|
22670
22881
|
progressEndDate: string
|
|
@@ -22680,6 +22891,8 @@ export interface LolTftPassSeasonPass {
|
|
|
22680
22891
|
upsellBackgroundImageUrl: string
|
|
22681
22892
|
upsellTooltipBackgroundImageUrl: string
|
|
22682
22893
|
objectiveBannerImage: string
|
|
22894
|
+
localizedSeasonLogo: string
|
|
22895
|
+
localizedShortName: string
|
|
22683
22896
|
chapters: LolTftPassChapter[]
|
|
22684
22897
|
}
|
|
22685
22898
|
|
|
@@ -22763,6 +22976,7 @@ export interface LolTftPassTFTPassClientConfig {
|
|
|
22763
22976
|
eventPassId: string
|
|
22764
22977
|
dailyLoginPassId: string
|
|
22765
22978
|
skillTreePassId: string
|
|
22979
|
+
pmUltimateVictoryPassId: string
|
|
22766
22980
|
}
|
|
22767
22981
|
|
|
22768
22982
|
export interface LolTftPassTFTPassDTO {
|
|
@@ -22785,6 +22999,7 @@ export interface LolTftPassTFTPassDTO {
|
|
|
22785
22999
|
premiumEntitlementID: string
|
|
22786
23000
|
storePurchaseIDs: Record<string, string>
|
|
22787
23001
|
milestones: LolTftPassTFTPassMilestoneDTO[]
|
|
23002
|
+
hasLevelPurchasing: boolean
|
|
22788
23003
|
status: string
|
|
22789
23004
|
}
|
|
22790
23005
|
|
|
@@ -22849,6 +23064,7 @@ export interface LolTftPassTftBattlepassInfo {
|
|
|
22849
23064
|
premiumEntitlementId: string
|
|
22850
23065
|
pcPurchaseRequirement: string
|
|
22851
23066
|
passId: string
|
|
23067
|
+
hasLevelPurchasing: boolean
|
|
22852
23068
|
media: Record<string, string>
|
|
22853
23069
|
passType: LolTftPassTftPassType
|
|
22854
23070
|
}
|
|
@@ -23222,6 +23438,7 @@ export interface LolTftSkillTreeTftBattlepassInfo {
|
|
|
23222
23438
|
premiumEntitlementId: string
|
|
23223
23439
|
pcPurchaseRequirement: string
|
|
23224
23440
|
passId: string
|
|
23441
|
+
hasLevelPurchasing: boolean
|
|
23225
23442
|
media: Record<string, string>
|
|
23226
23443
|
passType: LolTftSkillTreeTftPassType
|
|
23227
23444
|
}
|
|
@@ -25050,7 +25267,7 @@ export interface PaymentsFrontEndRequest {
|
|
|
25050
25267
|
usePmcSessions: boolean
|
|
25051
25268
|
game: string
|
|
25052
25269
|
openedFrom: string
|
|
25053
|
-
/** @format
|
|
25270
|
+
/** @format int32 */
|
|
25054
25271
|
minVirtualAmount: number
|
|
25055
25272
|
orderDetailsJSON: string
|
|
25056
25273
|
}
|
|
@@ -25068,7 +25285,7 @@ export interface PaymentsPMCStartUrlRequest {
|
|
|
25068
25285
|
gifteeMessage: string
|
|
25069
25286
|
game: string
|
|
25070
25287
|
openedFrom: string
|
|
25071
|
-
/** @format
|
|
25288
|
+
/** @format int32 */
|
|
25072
25289
|
minVirtualAmount: number
|
|
25073
25290
|
orderDetailsJSON: string
|
|
25074
25291
|
machineId: string
|
|
@@ -26262,6 +26479,8 @@ export interface TeamBuilderDirect_ChampSelectSession {
|
|
|
26262
26479
|
id: string
|
|
26263
26480
|
/** @format uint64 */
|
|
26264
26481
|
gameId: number
|
|
26482
|
+
/** @format int32 */
|
|
26483
|
+
queueId: number
|
|
26265
26484
|
timer: TeamBuilderDirect_TeambuilderDirectTypes_ChampSelectTimer
|
|
26266
26485
|
chatDetails: TeamBuilderDirect_ChampSelectChatRoomDetails
|
|
26267
26486
|
myTeam: TeamBuilderDirect_ChampSelectPlayerSelection[]
|
|
@@ -26668,13 +26887,30 @@ export interface TeamBuilderDirect_InventoryDraft {
|
|
|
26668
26887
|
}
|
|
26669
26888
|
|
|
26670
26889
|
export interface TeamBuilderDirect_InventoryItem {
|
|
26671
|
-
/** @format
|
|
26890
|
+
/** @format int32 */
|
|
26891
|
+
itemId: number
|
|
26892
|
+
inventoryType: string
|
|
26893
|
+
}
|
|
26894
|
+
|
|
26895
|
+
export interface TeamBuilderDirect_InventoryItemDTO {
|
|
26896
|
+
/** @format int32 */
|
|
26672
26897
|
itemId: number
|
|
26898
|
+
inventoryType: string
|
|
26899
|
+
payload: unknown
|
|
26900
|
+
"f2p": boolean
|
|
26901
|
+
rental: boolean
|
|
26902
|
+
loyalty: boolean
|
|
26903
|
+
lsb: boolean
|
|
26673
26904
|
}
|
|
26674
26905
|
|
|
26675
26906
|
export interface TeamBuilderDirect_InventoryItemWithPayload {
|
|
26676
|
-
/** @format
|
|
26907
|
+
/** @format int32 */
|
|
26677
26908
|
itemId: number
|
|
26909
|
+
inventoryType: string
|
|
26910
|
+
"f2p": boolean
|
|
26911
|
+
rental: boolean
|
|
26912
|
+
loyalty: boolean
|
|
26913
|
+
owned: boolean
|
|
26678
26914
|
payload: unknown
|
|
26679
26915
|
}
|
|
26680
26916
|
|
|
@@ -26729,6 +26965,7 @@ export interface TeamBuilderDirect_MatchmakingReadyCheckResource {
|
|
|
26729
26965
|
/** @format float */
|
|
26730
26966
|
timer: number
|
|
26731
26967
|
declinerIds: number[]
|
|
26968
|
+
autoAccept: boolean
|
|
26732
26969
|
}
|
|
26733
26970
|
|
|
26734
26971
|
export type TeamBuilderDirect_MatchmakingReadyCheckResponse = "Declined" | "Accepted" | "None"
|
|
@@ -26788,6 +27025,17 @@ export interface TeamBuilderDirect_MutedPlayerInfo {
|
|
|
26788
27025
|
obfuscatedSummonerId: number
|
|
26789
27026
|
}
|
|
26790
27027
|
|
|
27028
|
+
/** The container for all the operational queue configs */
|
|
27029
|
+
export interface TeamBuilderDirect_OperationalQueueConfig {
|
|
27030
|
+
/** @format int32 */
|
|
27031
|
+
queueId: number
|
|
27032
|
+
isEnabled: boolean
|
|
27033
|
+
mutators: string
|
|
27034
|
+
isVisibleInClient: boolean
|
|
27035
|
+
isSpectatable: boolean
|
|
27036
|
+
"f2pRotations": string
|
|
27037
|
+
}
|
|
27038
|
+
|
|
26791
27039
|
export interface TeamBuilderDirect_PlayerStatus {
|
|
26792
27040
|
currentLobbyStatus?: TeamBuilderDirect_LobbyStatus
|
|
26793
27041
|
lastQueuedLobbyStatus?: TeamBuilderDirect_LobbyStatus
|
|
@@ -27591,6 +27839,12 @@ export interface TutorialMetadata {
|
|
|
27591
27839
|
useChosenChampion: boolean
|
|
27592
27840
|
}
|
|
27593
27841
|
|
|
27842
|
+
export interface VelocityLimiter_VelocityDTO {
|
|
27843
|
+
/** @format int64 */
|
|
27844
|
+
availableTokens: number
|
|
27845
|
+
refill: string
|
|
27846
|
+
}
|
|
27847
|
+
|
|
27594
27848
|
export interface VerboseLootOddsDTO {
|
|
27595
27849
|
recipeName: string
|
|
27596
27850
|
lastUpdated: string
|