@hasagi/types 15.15.1 → 15.20.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 +101 -22
- package/dist/lcu-events.d.ts +14 -17
- package/dist/lcu-types.d.ts +1662 -221
- package/package.json +9 -11
package/dist/lcu-types.d.ts
CHANGED
|
@@ -390,6 +390,8 @@ export interface ChampSelectSession {
|
|
|
390
390
|
allowSkinSelection: boolean
|
|
391
391
|
allowSubsetChampionPicks: boolean
|
|
392
392
|
allowDuplicatePicks: boolean
|
|
393
|
+
allowPlayerPickSameChampion: boolean
|
|
394
|
+
disallowBanningTeammateHoveredChampions: boolean
|
|
393
395
|
allowBattleBoost: boolean
|
|
394
396
|
/** @format int32 */
|
|
395
397
|
boostableSkinCount: number
|
|
@@ -452,6 +454,18 @@ export interface ChampionScoutingDTO {
|
|
|
452
454
|
kda: number
|
|
453
455
|
}
|
|
454
456
|
|
|
457
|
+
export interface ChemtechShoppe_BulkPurchaseRequestDto {
|
|
458
|
+
bulkPurchaseId: string
|
|
459
|
+
purchaserId: string
|
|
460
|
+
source: string
|
|
461
|
+
subPurchaseRequests: ChemtechShoppe_SubPurchaseRequestDto[]
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
export interface ChemtechShoppe_BulkPurchaseResponseDto {
|
|
465
|
+
bulkPurchaseId: string
|
|
466
|
+
purchases: ChemtechShoppe_PurchaseDto[]
|
|
467
|
+
}
|
|
468
|
+
|
|
455
469
|
export interface ChemtechShoppe_CatalogEntryDto {
|
|
456
470
|
id: string
|
|
457
471
|
name: string
|
|
@@ -556,6 +570,8 @@ export interface ChemtechShoppe_PrerequisiteDto {
|
|
|
556
570
|
requiredQuantity: number
|
|
557
571
|
/** @format int64 */
|
|
558
572
|
ownedQuantity: number
|
|
573
|
+
catalogEntry: unknown
|
|
574
|
+
milestoneId: string
|
|
559
575
|
}
|
|
560
576
|
|
|
561
577
|
export interface ChemtechShoppe_PurchaseDto {
|
|
@@ -587,8 +603,9 @@ export interface ChemtechShoppe_PurchaseRequestDto {
|
|
|
587
603
|
idempotencyId: string
|
|
588
604
|
/** @format int64 */
|
|
589
605
|
quantity: number
|
|
590
|
-
source: string
|
|
591
606
|
customInventoryLocation: string
|
|
607
|
+
purchaserId: string
|
|
608
|
+
source: string
|
|
592
609
|
}
|
|
593
610
|
|
|
594
611
|
export interface ChemtechShoppe_PurchaseResponseDto {
|
|
@@ -631,58 +648,17 @@ export interface ChemtechShoppe_RefundResponseDto {
|
|
|
631
648
|
notes: string[]
|
|
632
649
|
}
|
|
633
650
|
|
|
634
|
-
export interface
|
|
635
|
-
|
|
636
|
-
productId: string
|
|
637
|
-
name: string
|
|
638
|
-
type: string
|
|
639
|
-
rotationCadence: string
|
|
640
|
-
displayMetadata: unknown
|
|
651
|
+
export interface ChemtechShoppe_RotatingStoreMetadataDto {
|
|
652
|
+
slots: ChemtechShoppe_RotatingStoreSlotMetadataDto[]
|
|
641
653
|
currRotationStartTime: string
|
|
642
654
|
nextRotationStartTime: string
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
export interface ChemtechShoppe_RotatingStoreDigestResponseDto {
|
|
646
|
-
data: ChemtechShoppe_RotatingStoreDigestsDto
|
|
647
|
-
paging: ChemtechShoppe_PagingDto
|
|
648
|
-
stats: ChemtechShoppe_StatsDto
|
|
649
|
-
notes: string[]
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
export interface ChemtechShoppe_RotatingStoreDigestsDto {
|
|
653
|
-
digests: ChemtechShoppe_RotatingStoreDigestDto[]
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
export interface ChemtechShoppe_RotatingStoreDto {
|
|
657
|
-
id: string
|
|
658
|
-
productId: string
|
|
659
|
-
name: string
|
|
660
|
-
type: string
|
|
661
|
-
slots: ChemtechShoppe_RotatingStoreSlotDto[]
|
|
662
655
|
rotationCadence: string
|
|
663
|
-
displayMetadata: unknown
|
|
664
|
-
currRotationStartTime: string
|
|
665
|
-
nextRotationStartTime: string
|
|
666
656
|
}
|
|
667
657
|
|
|
668
|
-
export interface
|
|
669
|
-
|
|
670
|
-
paging: ChemtechShoppe_PagingDto
|
|
671
|
-
stats: ChemtechShoppe_StatsDto
|
|
672
|
-
notes: string[]
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
export interface ChemtechShoppe_RotatingStoreSlotDto {
|
|
676
|
-
/** @format int32 */
|
|
658
|
+
export interface ChemtechShoppe_RotatingStoreSlotMetadataDto {
|
|
659
|
+
/** @format int64 */
|
|
677
660
|
selectionCount: number
|
|
678
|
-
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
export interface ChemtechShoppe_RotatingStoresResponseDto {
|
|
682
|
-
data: ChemtechShoppe_RotatingStoreDto[]
|
|
683
|
-
paging: ChemtechShoppe_PagingDto
|
|
684
|
-
stats: ChemtechShoppe_StatsDto
|
|
685
|
-
notes: string[]
|
|
661
|
+
catalogEntryIds: string[]
|
|
686
662
|
}
|
|
687
663
|
|
|
688
664
|
export interface ChemtechShoppe_StatsDto {
|
|
@@ -695,6 +671,9 @@ export interface ChemtechShoppe_StoreDigestDto {
|
|
|
695
671
|
productId: string
|
|
696
672
|
name: string
|
|
697
673
|
displayMetaData: unknown
|
|
674
|
+
startTime: string
|
|
675
|
+
endTime: string
|
|
676
|
+
rotatingStoreMetadata: ChemtechShoppe_RotatingStoreMetadataDto
|
|
698
677
|
}
|
|
699
678
|
|
|
700
679
|
export interface ChemtechShoppe_StoreDigestsDto {
|
|
@@ -710,10 +689,14 @@ export interface ChemtechShoppe_StoreDigestsResponseDto {
|
|
|
710
689
|
|
|
711
690
|
export interface ChemtechShoppe_StoreDto {
|
|
712
691
|
id: string
|
|
692
|
+
type: string
|
|
713
693
|
productId: string
|
|
714
694
|
name: string
|
|
715
695
|
catalogEntries: ChemtechShoppe_CatalogEntryDto[]
|
|
716
696
|
displayMetadata: unknown
|
|
697
|
+
startTime: string
|
|
698
|
+
endTime: string
|
|
699
|
+
rotatingStoreMetadata: ChemtechShoppe_RotatingStoreMetadataDto
|
|
717
700
|
}
|
|
718
701
|
|
|
719
702
|
export interface ChemtechShoppe_StoreResponseDto {
|
|
@@ -730,6 +713,16 @@ export interface ChemtechShoppe_StoresResponseDto {
|
|
|
730
713
|
notes: string[]
|
|
731
714
|
}
|
|
732
715
|
|
|
716
|
+
export interface ChemtechShoppe_SubPurchaseRequestDto {
|
|
717
|
+
storeId: string
|
|
718
|
+
catalogEntryId: string
|
|
719
|
+
paymentOptionsKeys: string[]
|
|
720
|
+
idempotencyId: string
|
|
721
|
+
/** @format int64 */
|
|
722
|
+
quantity: number
|
|
723
|
+
customInventoryLocation: string
|
|
724
|
+
}
|
|
725
|
+
|
|
733
726
|
export interface ChemtechShoppe_VelocityLimitDeltaDto {
|
|
734
727
|
ruleId: string
|
|
735
728
|
/** @format int64 */
|
|
@@ -1916,18 +1909,6 @@ export interface LolActivityCenterTencentOverrides {
|
|
|
1916
1909
|
activityCenterAlternativeExperienceUrl: string
|
|
1917
1910
|
}
|
|
1918
1911
|
|
|
1919
|
-
export interface LolAntiAddictionAntiAddictionState {
|
|
1920
|
-
policyType: LolAntiAddictionPolicyType
|
|
1921
|
-
localizationKey: string
|
|
1922
|
-
antiAddictionToken: string
|
|
1923
|
-
}
|
|
1924
|
-
|
|
1925
|
-
export interface LolAntiAddictionAntiAddictionToken {
|
|
1926
|
-
antiAddictionToken: string
|
|
1927
|
-
}
|
|
1928
|
-
|
|
1929
|
-
export type LolAntiAddictionPolicyType = "antiAddictionHeartbeat" | "antiAddictionShutdown" | "antiAddictionWarning"
|
|
1930
|
-
|
|
1931
1912
|
export interface LolBannersBannerFlag {
|
|
1932
1913
|
/** @format int32 */
|
|
1933
1914
|
itemId: number
|
|
@@ -2058,8 +2039,11 @@ export interface LolCapMissionsCapMissionSeriesMissionReward {
|
|
|
2058
2039
|
itemId: string
|
|
2059
2040
|
itemTypeId: string
|
|
2060
2041
|
typeId: string
|
|
2042
|
+
currencyId: string
|
|
2061
2043
|
/** @format uint32 */
|
|
2062
2044
|
amount: number
|
|
2045
|
+
/** @format uint32 */
|
|
2046
|
+
quantity: number
|
|
2063
2047
|
}
|
|
2064
2048
|
|
|
2065
2049
|
export interface LolCapMissionsCapMissionSeriesMissionRewardsStatus {
|
|
@@ -2175,6 +2159,7 @@ export interface LolCatalogCatalogPluginItem {
|
|
|
2175
2159
|
tilePath: string
|
|
2176
2160
|
loadScreenPath: string
|
|
2177
2161
|
rarity: string
|
|
2162
|
+
taggedChampionsIds: number[]
|
|
2178
2163
|
/** @format uint64 */
|
|
2179
2164
|
purchaseDate: number
|
|
2180
2165
|
/** @format uint64 */
|
|
@@ -2351,6 +2336,7 @@ export interface LolCatalogGameDataSummonerEmote {
|
|
|
2351
2336
|
name: string
|
|
2352
2337
|
inventoryIcon: string
|
|
2353
2338
|
description: string
|
|
2339
|
+
taggedChampionsIds: number[]
|
|
2354
2340
|
}
|
|
2355
2341
|
|
|
2356
2342
|
export interface LolCatalogGameDataSummonerIcon {
|
|
@@ -2691,7 +2677,7 @@ export interface LolChallengesSequenceEvent {
|
|
|
2691
2677
|
priority: number
|
|
2692
2678
|
}
|
|
2693
2679
|
|
|
2694
|
-
export type LolChallengesSource = "NONE" | "SUMMONER_SERVICE" | "ETERNALS" | "LOOT" | "CLASH" | "RANKED_LEAGUES" | "CHAMPION_MASTERY" | "HONOR" | "CAP_INVENTORY" | "EOGD" | "CHALLENGES"
|
|
2680
|
+
export type LolChallengesSource = "NONE" | "EOGD_RANKED_LEAGUES" | "EOGD_CHAMPION_MASTERY" | "SUMMONER_SERVICE" | "ETERNALS" | "LOOT" | "CLASH" | "RANKED_LEAGUES" | "CHAMPION_MASTERY" | "HONOR" | "CAP_INVENTORY" | "EOGD" | "CHALLENGES"
|
|
2695
2681
|
|
|
2696
2682
|
export interface LolChallengesUICategoryProgress {
|
|
2697
2683
|
level: string
|
|
@@ -3060,6 +3046,11 @@ export interface LolChampionMasteryAllChampionMasterySetReward {
|
|
|
3060
3046
|
totalScore: number
|
|
3061
3047
|
}
|
|
3062
3048
|
|
|
3049
|
+
export interface LolChampionMasteryChampMasteryView {
|
|
3050
|
+
puuid: string
|
|
3051
|
+
data: LolChampionMasteryChampionMasteryViewData[]
|
|
3052
|
+
}
|
|
3053
|
+
|
|
3063
3054
|
export interface LolChampionMasteryChampionMastery {
|
|
3064
3055
|
puuid: string
|
|
3065
3056
|
/** @format int32 */
|
|
@@ -3154,6 +3145,16 @@ export interface LolChampionMasteryChampionMasteryRewardGrantNotification {
|
|
|
3154
3145
|
messageKey: string
|
|
3155
3146
|
}
|
|
3156
3147
|
|
|
3148
|
+
export interface LolChampionMasteryChampionMasteryViewData {
|
|
3149
|
+
/** @format int64 */
|
|
3150
|
+
championId: number
|
|
3151
|
+
/** @format int32 */
|
|
3152
|
+
championLevel: number
|
|
3153
|
+
/** @format int32 */
|
|
3154
|
+
championPoints: number
|
|
3155
|
+
highestGrade?: string
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3157
3158
|
export interface LolChampionMasteryChampionSet {
|
|
3158
3159
|
champions: number[]
|
|
3159
3160
|
/** @format int32 */
|
|
@@ -3619,6 +3620,12 @@ export interface LolChampionsSummoner {
|
|
|
3619
3620
|
summonerLevel: number
|
|
3620
3621
|
}
|
|
3621
3622
|
|
|
3623
|
+
export interface LolChampionsTeamBuilderDirect_MatchmakingQueue {
|
|
3624
|
+
/** @format int64 */
|
|
3625
|
+
id: number
|
|
3626
|
+
viableChampionRoster: number[]
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3622
3629
|
export type LolChatAccountState = "dnd" | "chat" | "away" | "mobile" | "offline"
|
|
3623
3630
|
|
|
3624
3631
|
export interface LolChatActiveConversationResource {
|
|
@@ -4123,6 +4130,7 @@ export interface LolChatLobbyStatus {
|
|
|
4123
4130
|
isCustom: boolean
|
|
4124
4131
|
isPracticeTool: boolean
|
|
4125
4132
|
isLeader: boolean
|
|
4133
|
+
isNoSpectateDelay: boolean
|
|
4126
4134
|
memberSummonerIds: number[]
|
|
4127
4135
|
customSpectatorPolicy: LolChatQueueCustomGameSpectatorPolicy
|
|
4128
4136
|
}
|
|
@@ -4379,6 +4387,160 @@ export interface LolChatSettingsResource {
|
|
|
4379
4387
|
data: unknown
|
|
4380
4388
|
}
|
|
4381
4389
|
|
|
4390
|
+
export interface LolChatSocialBlockedList {
|
|
4391
|
+
blockedUsers: LolChatSocialBlockedUser[]
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
export interface LolChatSocialBlockedUser {
|
|
4395
|
+
blockedPlatforms: string[]
|
|
4396
|
+
gameName: string
|
|
4397
|
+
gameTag: string
|
|
4398
|
+
isFriendsOnActiveConsole: boolean
|
|
4399
|
+
puuid: string
|
|
4400
|
+
relationshipOnConsole: string
|
|
4401
|
+
relationshipOnDiscord: string
|
|
4402
|
+
relationshipOnRiot: string
|
|
4403
|
+
}
|
|
4404
|
+
|
|
4405
|
+
export interface LolChatSocialPresencesSession {
|
|
4406
|
+
player: LolChatSocialPresencesSessionPlayer
|
|
4407
|
+
activity?: LolChatSocialPresencesSessionActivity
|
|
4408
|
+
crossPlayPermissions?: LolChatSocialPresencesSessionCrossPlayPermissions
|
|
4409
|
+
party?: LolChatSocialPresencesSessionParty
|
|
4410
|
+
productData?: string
|
|
4411
|
+
region: string
|
|
4412
|
+
}
|
|
4413
|
+
|
|
4414
|
+
export interface LolChatSocialPresencesSessionActivity {
|
|
4415
|
+
actors: string[]
|
|
4416
|
+
location: string
|
|
4417
|
+
mode: string
|
|
4418
|
+
progress: LolChatSocialPresencesSessionActivityProgress
|
|
4419
|
+
spectate: string
|
|
4420
|
+
}
|
|
4421
|
+
|
|
4422
|
+
export interface LolChatSocialPresencesSessionActivityProgress {
|
|
4423
|
+
type: string
|
|
4424
|
+
value: string
|
|
4425
|
+
}
|
|
4426
|
+
|
|
4427
|
+
export interface LolChatSocialPresencesSessionCrossPlayPermissions {
|
|
4428
|
+
hasPartyCrossPlayEnabled: boolean
|
|
4429
|
+
hasPlayerCrossPlayEnabled: boolean
|
|
4430
|
+
isInParty: boolean
|
|
4431
|
+
partyMemberPlatforms: string[]
|
|
4432
|
+
}
|
|
4433
|
+
|
|
4434
|
+
export interface LolChatSocialPresencesSessionParty {
|
|
4435
|
+
/** @format uint64 */
|
|
4436
|
+
currentSize: number
|
|
4437
|
+
id: string
|
|
4438
|
+
join: string
|
|
4439
|
+
/** @format uint64 */
|
|
4440
|
+
maxSize: number
|
|
4441
|
+
}
|
|
4442
|
+
|
|
4443
|
+
export interface LolChatSocialPresencesSessionPlayer {
|
|
4444
|
+
profileBanner?: string
|
|
4445
|
+
profileIcon?: string
|
|
4446
|
+
show: string
|
|
4447
|
+
state?: string
|
|
4448
|
+
}
|
|
4449
|
+
|
|
4450
|
+
export interface LolChatSocialPresencesStatusMessage {
|
|
4451
|
+
statusMessage: string
|
|
4452
|
+
}
|
|
4453
|
+
|
|
4454
|
+
export interface LolChatSocialV2FriendRequest {
|
|
4455
|
+
gameName: string
|
|
4456
|
+
note: string
|
|
4457
|
+
platform: string
|
|
4458
|
+
puuid: string
|
|
4459
|
+
subscription: string
|
|
4460
|
+
tagLine: string
|
|
4461
|
+
}
|
|
4462
|
+
|
|
4463
|
+
export interface LolChatSocialV2FriendRequestCreate {
|
|
4464
|
+
gameName: string
|
|
4465
|
+
puuid: string
|
|
4466
|
+
tagLine: string
|
|
4467
|
+
}
|
|
4468
|
+
|
|
4469
|
+
export interface LolChatSocialV2FriendRequestList {
|
|
4470
|
+
requests: LolChatSocialV2FriendRequest[]
|
|
4471
|
+
}
|
|
4472
|
+
|
|
4473
|
+
export interface LolChatSocialV4CrossPlayPermissions {
|
|
4474
|
+
hasPartyCrossPlayEnabled: boolean
|
|
4475
|
+
hasPlayerCrossPlayEnabled: boolean
|
|
4476
|
+
isInParty: boolean
|
|
4477
|
+
partyMemberPlatforms: string[]
|
|
4478
|
+
}
|
|
4479
|
+
|
|
4480
|
+
export interface LolChatSocialV4Friend {
|
|
4481
|
+
activity?: string
|
|
4482
|
+
crossPlayPermissions: LolChatSocialV4CrossPlayPermissions
|
|
4483
|
+
displayGroup: string
|
|
4484
|
+
gameName: string
|
|
4485
|
+
gameTag: string
|
|
4486
|
+
group: string
|
|
4487
|
+
namesets: LolChatSocialV4Namesets
|
|
4488
|
+
note: string
|
|
4489
|
+
party?: string
|
|
4490
|
+
patchline: string
|
|
4491
|
+
pid: string
|
|
4492
|
+
platform: string
|
|
4493
|
+
platformShow: string
|
|
4494
|
+
product: string
|
|
4495
|
+
productBannerUrl: string
|
|
4496
|
+
productData?: string
|
|
4497
|
+
productFolderName: string
|
|
4498
|
+
productIconUrl: string
|
|
4499
|
+
productPresenceName: string
|
|
4500
|
+
profileBanner: string
|
|
4501
|
+
profileIcon: string
|
|
4502
|
+
puuid: string
|
|
4503
|
+
region: string
|
|
4504
|
+
relationshipOnConsole: string
|
|
4505
|
+
relationshipOnRiot: string
|
|
4506
|
+
show: string
|
|
4507
|
+
state: string
|
|
4508
|
+
statusMessage: string
|
|
4509
|
+
}
|
|
4510
|
+
|
|
4511
|
+
export interface LolChatSocialV4FriendList {
|
|
4512
|
+
friends: LolChatSocialV4Friend[]
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4515
|
+
export interface LolChatSocialV4Nameset {
|
|
4516
|
+
gameName: string
|
|
4517
|
+
tagLine: string
|
|
4518
|
+
}
|
|
4519
|
+
|
|
4520
|
+
export interface LolChatSocialV4Namesets {
|
|
4521
|
+
alias: LolChatSocialV4Nameset
|
|
4522
|
+
error: string
|
|
4523
|
+
playstationNameset: LolChatSocialV4PlaystationNameset
|
|
4524
|
+
providerId: string
|
|
4525
|
+
puuid: string
|
|
4526
|
+
switchNameset: LolChatSocialV4SwitchNameset
|
|
4527
|
+
xboxNameset: LolChatSocialV4XboxNameset
|
|
4528
|
+
}
|
|
4529
|
+
|
|
4530
|
+
export interface LolChatSocialV4PlaystationNameset {
|
|
4531
|
+
onlineId: string
|
|
4532
|
+
}
|
|
4533
|
+
|
|
4534
|
+
export interface LolChatSocialV4SwitchNameset {
|
|
4535
|
+
nickname: string
|
|
4536
|
+
}
|
|
4537
|
+
|
|
4538
|
+
export interface LolChatSocialV4XboxNameset {
|
|
4539
|
+
classicGamertag: string
|
|
4540
|
+
modernGamertag: string
|
|
4541
|
+
modernSuffix: string
|
|
4542
|
+
}
|
|
4543
|
+
|
|
4382
4544
|
export interface LolChatSpectateGameInfoResource {
|
|
4383
4545
|
dropInSpectateGameId: string
|
|
4384
4546
|
gameQueueType: string
|
|
@@ -5839,6 +6001,48 @@ export interface LolCosmeticsCosmeticsSettings {
|
|
|
5839
6001
|
favorites: LolCosmeticsFavoriteCosmetics
|
|
5840
6002
|
}
|
|
5841
6003
|
|
|
6004
|
+
export interface LolCosmeticsCosmeticsTFTAugmentPillar {
|
|
6005
|
+
contentId: string
|
|
6006
|
+
/** @format int32 */
|
|
6007
|
+
itemId: number
|
|
6008
|
+
name: string
|
|
6009
|
+
description: string
|
|
6010
|
+
loadoutsIcon: string
|
|
6011
|
+
owned: boolean
|
|
6012
|
+
selected: boolean
|
|
6013
|
+
loyalty: boolean
|
|
6014
|
+
"f2p": boolean
|
|
6015
|
+
/** @format uint32 */
|
|
6016
|
+
rarityValue: number
|
|
6017
|
+
purchaseDate: string
|
|
6018
|
+
/** @format uint32 */
|
|
6019
|
+
groupId: number
|
|
6020
|
+
groupName: string
|
|
6021
|
+
TFTRarity: string
|
|
6022
|
+
}
|
|
6023
|
+
|
|
6024
|
+
export interface LolCosmeticsCosmeticsTFTAugmentPillarViewModel {
|
|
6025
|
+
contentId: string
|
|
6026
|
+
/** @format int32 */
|
|
6027
|
+
itemId: number
|
|
6028
|
+
name: string
|
|
6029
|
+
description: string
|
|
6030
|
+
loadoutsIcon: string
|
|
6031
|
+
owned: boolean
|
|
6032
|
+
selected: boolean
|
|
6033
|
+
favorited: boolean
|
|
6034
|
+
loyalty: boolean
|
|
6035
|
+
"f2p": boolean
|
|
6036
|
+
/** @format uint32 */
|
|
6037
|
+
rarityValue: number
|
|
6038
|
+
purchaseDate: string
|
|
6039
|
+
isRecentItem: boolean
|
|
6040
|
+
/** @format uint32 */
|
|
6041
|
+
groupId: number
|
|
6042
|
+
groupName: string
|
|
6043
|
+
TFTRarity: string
|
|
6044
|
+
}
|
|
6045
|
+
|
|
5842
6046
|
export interface LolCosmeticsCosmeticsTFTDamageSkin {
|
|
5843
6047
|
contentId: string
|
|
5844
6048
|
/** @format int32 */
|
|
@@ -6082,6 +6286,7 @@ export interface LolCosmeticsFulfillmentDto {
|
|
|
6082
6286
|
currencyId: string
|
|
6083
6287
|
subCurrencyDeltas: Record<string, number>
|
|
6084
6288
|
progressionCounterId: string
|
|
6289
|
+
dropTableId: string
|
|
6085
6290
|
}
|
|
6086
6291
|
|
|
6087
6292
|
export interface LolCosmeticsGameDataCompanion {
|
|
@@ -6105,6 +6310,16 @@ export interface LolCosmeticsGameDataCompanion {
|
|
|
6105
6310
|
TFTRarity: string
|
|
6106
6311
|
}
|
|
6107
6312
|
|
|
6313
|
+
export interface LolCosmeticsGameDataTFTAugmentPillar {
|
|
6314
|
+
contentId: string
|
|
6315
|
+
/** @format int32 */
|
|
6316
|
+
itemId: number
|
|
6317
|
+
name: string
|
|
6318
|
+
description: string
|
|
6319
|
+
loadoutsIcon: string
|
|
6320
|
+
TFTRarity: string
|
|
6321
|
+
}
|
|
6322
|
+
|
|
6108
6323
|
export interface LolCosmeticsGameDataTFTCosmeticsDefaults {
|
|
6109
6324
|
playbook: unknown
|
|
6110
6325
|
}
|
|
@@ -6416,6 +6631,30 @@ export interface LolCosmeticsStoresResponse {
|
|
|
6416
6631
|
errors: LolCosmeticsResponseError[]
|
|
6417
6632
|
}
|
|
6418
6633
|
|
|
6634
|
+
export interface LolCosmeticsTFTAugmentPillarFavoritesViewModel {
|
|
6635
|
+
favoriteItems: LolCosmeticsCosmeticsTFTAugmentPillarViewModel[]
|
|
6636
|
+
}
|
|
6637
|
+
|
|
6638
|
+
export interface LolCosmeticsTFTAugmentPillarGroupViewModel {
|
|
6639
|
+
groupName: string
|
|
6640
|
+
/** @format uint32 */
|
|
6641
|
+
groupId: number
|
|
6642
|
+
/** @format uint32 */
|
|
6643
|
+
numOwned: number
|
|
6644
|
+
/** @format uint32 */
|
|
6645
|
+
numAvailable: number
|
|
6646
|
+
/** @format int64 */
|
|
6647
|
+
purchaseDate: number
|
|
6648
|
+
items: LolCosmeticsCosmeticsTFTZoomSkinViewModel[]
|
|
6649
|
+
}
|
|
6650
|
+
|
|
6651
|
+
export interface LolCosmeticsTFTAugmentPillarGroupedViewModel {
|
|
6652
|
+
selectedLoadoutItem: LolCosmeticsCosmeticsTFTAugmentPillarViewModel
|
|
6653
|
+
/** @format int32 */
|
|
6654
|
+
defaultItemId: number
|
|
6655
|
+
groups: LolCosmeticsTFTAugmentPillarGroupViewModel[]
|
|
6656
|
+
}
|
|
6657
|
+
|
|
6419
6658
|
export interface LolCosmeticsTFTDamageSkinFavoritesViewModel {
|
|
6420
6659
|
favoriteItems: LolCosmeticsCosmeticsTFTDamageSkinViewModel[]
|
|
6421
6660
|
}
|
|
@@ -6563,6 +6802,14 @@ export interface LolCosmeticsVelocityLimiterDto {
|
|
|
6563
6802
|
refill: string
|
|
6564
6803
|
}
|
|
6565
6804
|
|
|
6805
|
+
export type LolDirectxUpgradeDirectXUpgradeNotificationType = "FUTURE_HARDWARE_UPGRADE" | "HARDWARE_UPGRADE" | "NONE"
|
|
6806
|
+
|
|
6807
|
+
export interface LolDirectxUpgradeLocalSettingsCategory {
|
|
6808
|
+
data: unknown
|
|
6809
|
+
/** @format int32 */
|
|
6810
|
+
schemaVersion: number
|
|
6811
|
+
}
|
|
6812
|
+
|
|
6566
6813
|
export interface LolDiscordRpGameDataChampionSummary {
|
|
6567
6814
|
/** @format int32 */
|
|
6568
6815
|
id: number
|
|
@@ -6642,14 +6889,6 @@ export interface LolDropsOddsTableDisplayMetadata {
|
|
|
6642
6889
|
priority: number
|
|
6643
6890
|
}
|
|
6644
6891
|
|
|
6645
|
-
export type LolDx9DeprecationDx9DeprecationNotificationType = "TURN_OFF_DX9_LEGACY_MODE" | "HARDWARE_UPGRADE" | "NONE"
|
|
6646
|
-
|
|
6647
|
-
export interface LolDx9DeprecationLocalSettingsCategory {
|
|
6648
|
-
data: unknown
|
|
6649
|
-
/** @format int32 */
|
|
6650
|
-
schemaVersion: number
|
|
6651
|
-
}
|
|
6652
|
-
|
|
6653
6892
|
export interface LolEmailVerificationAccessToken {
|
|
6654
6893
|
token: string
|
|
6655
6894
|
/** @format uint64 */
|
|
@@ -7120,6 +7359,13 @@ export interface LolEndOfGameTFTEndOfGameCustomAugmentContainerViewModel {
|
|
|
7120
7359
|
description: string
|
|
7121
7360
|
}
|
|
7122
7361
|
|
|
7362
|
+
export interface LolEndOfGameTFTEndOfGameEventPVEViewModel {
|
|
7363
|
+
buddyName: string
|
|
7364
|
+
buddyIcon: string
|
|
7365
|
+
bossName: string
|
|
7366
|
+
affixes: string[]
|
|
7367
|
+
}
|
|
7368
|
+
|
|
7123
7369
|
export interface LolEndOfGameTFTEndOfGameItemViewModel {
|
|
7124
7370
|
name: string
|
|
7125
7371
|
icon: string
|
|
@@ -7196,6 +7442,7 @@ export interface LolEndOfGameTFTEndOfGameViewModel {
|
|
|
7196
7442
|
players: LolEndOfGameTFTEndOfGamePlayerViewModel[]
|
|
7197
7443
|
localPlayer?: LolEndOfGameTFTEndOfGamePlayerViewModel
|
|
7198
7444
|
playerSkillTreeEoG?: LolEndOfGameTFTEndOfGameSkillTreeViewModel
|
|
7445
|
+
eventPVEData?: LolEndOfGameTFTEndOfGameEventPVEViewModel
|
|
7199
7446
|
/** @format uint32 */
|
|
7200
7447
|
gameLength: number
|
|
7201
7448
|
/** @format uint64 */
|
|
@@ -7357,17 +7604,37 @@ export interface LolEventHubActiveEventUIData {
|
|
|
7357
7604
|
eventInfo: LolEventHubEventInfoUIData
|
|
7358
7605
|
}
|
|
7359
7606
|
|
|
7360
|
-
export interface
|
|
7361
|
-
|
|
7362
|
-
|
|
7363
|
-
amount: number
|
|
7364
|
-
}
|
|
7365
|
-
|
|
7366
|
-
export interface LolEventHubBaseSkinLineDto {
|
|
7367
|
-
items: LolEventHubSkinLineItemDto[]
|
|
7607
|
+
export interface LolEventHubActivityCenterMilestones {
|
|
7608
|
+
eventId: string
|
|
7609
|
+
eventHubType: string
|
|
7368
7610
|
localizedName: string
|
|
7369
|
-
|
|
7370
|
-
|
|
7611
|
+
navbarIconImage: string
|
|
7612
|
+
startDate: string
|
|
7613
|
+
progressEndDate: string
|
|
7614
|
+
endDate: string
|
|
7615
|
+
isGameModeEvent: boolean
|
|
7616
|
+
/** @format uint32 */
|
|
7617
|
+
queueId: number
|
|
7618
|
+
localizedLogo: string
|
|
7619
|
+
backgroundImage: string
|
|
7620
|
+
helpModalImage: string
|
|
7621
|
+
objectiveBannerImage: string
|
|
7622
|
+
objectiveCard: LolEventHubObjectiveCard
|
|
7623
|
+
eventPassBundlesCatalogEntry: LolEventHubCatalogEntry[]
|
|
7624
|
+
rewardTrack: LolEventHubRewardTrack
|
|
7625
|
+
}
|
|
7626
|
+
|
|
7627
|
+
export interface LolEventHubBalance {
|
|
7628
|
+
currencyType: string
|
|
7629
|
+
/** @format int32 */
|
|
7630
|
+
amount: number
|
|
7631
|
+
}
|
|
7632
|
+
|
|
7633
|
+
export interface LolEventHubBaseSkinLineDto {
|
|
7634
|
+
items: LolEventHubSkinLineItemDto[]
|
|
7635
|
+
localizedName: string
|
|
7636
|
+
skinLineDescriptions: LolEventHubSkinLineDescriptionDto[]
|
|
7637
|
+
pricingOptions: LolEventHubPriceOptionDto[]
|
|
7371
7638
|
splashPath: string
|
|
7372
7639
|
uncenteredSplashPath: string
|
|
7373
7640
|
collectionCardPath: string
|
|
@@ -7582,8 +7849,6 @@ export interface LolEventHubChapter {
|
|
|
7582
7849
|
localizedDescription: string
|
|
7583
7850
|
cardImage: string
|
|
7584
7851
|
backgroundImage: string
|
|
7585
|
-
backgroundVideo: string
|
|
7586
|
-
foregroundImage: string
|
|
7587
7852
|
objectiveBannerImage: string
|
|
7588
7853
|
/** @format uint16 */
|
|
7589
7854
|
chapterStart: number
|
|
@@ -7684,6 +7949,8 @@ export interface LolEventHubEventDetailsUIData {
|
|
|
7684
7949
|
promotionBannerImage: string
|
|
7685
7950
|
objectiveBannerImage: string
|
|
7686
7951
|
memoryBookBackgroundImage: string
|
|
7952
|
+
/** @format uint32 */
|
|
7953
|
+
spotlightSkinId: number
|
|
7687
7954
|
}
|
|
7688
7955
|
|
|
7689
7956
|
export interface LolEventHubEventHubError {
|
|
@@ -7691,7 +7958,7 @@ export interface LolEventHubEventHubError {
|
|
|
7691
7958
|
errorId: string
|
|
7692
7959
|
}
|
|
7693
7960
|
|
|
7694
|
-
export type LolEventHubEventHubType = "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
7961
|
+
export type LolEventHubEventHubType = "ActivityCenterMilestones" | "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
7695
7962
|
|
|
7696
7963
|
export interface LolEventHubEventInfoUIData {
|
|
7697
7964
|
eventId: string
|
|
@@ -7700,10 +7967,13 @@ export interface LolEventHubEventInfoUIData {
|
|
|
7700
7967
|
eventIcon: string
|
|
7701
7968
|
navBarIcon: string
|
|
7702
7969
|
battleExpIcon: string
|
|
7970
|
+
localizedShortName: string
|
|
7703
7971
|
eventTokenImage: string
|
|
7704
7972
|
startDate: string
|
|
7705
7973
|
progressEndDate: string
|
|
7706
7974
|
endDate: string
|
|
7975
|
+
localizedLogo: string
|
|
7976
|
+
objectiveCard: LolEventHubObjectiveCard
|
|
7707
7977
|
/** @format int32 */
|
|
7708
7978
|
currentTokenBalance: number
|
|
7709
7979
|
/** @format int32 */
|
|
@@ -7713,6 +7983,9 @@ export interface LolEventHubEventInfoUIData {
|
|
|
7713
7983
|
/** @format int64 */
|
|
7714
7984
|
timeOfLastUnclaimedReward: number
|
|
7715
7985
|
isPassPurchased: boolean
|
|
7986
|
+
isGameModeEvent: boolean
|
|
7987
|
+
/** @format int32 */
|
|
7988
|
+
queueId: number
|
|
7716
7989
|
eventPassBundles: LolEventHubCatalogEntry[]
|
|
7717
7990
|
tokenBundles: LolEventHubCatalogEntry[]
|
|
7718
7991
|
}
|
|
@@ -7735,7 +8008,6 @@ export interface LolEventHubEventShop {
|
|
|
7735
8008
|
localizedName: string
|
|
7736
8009
|
backgroundImage: string
|
|
7737
8010
|
navbarIconImage: string
|
|
7738
|
-
battleExpIconImage: string
|
|
7739
8011
|
headerIconImage: string
|
|
7740
8012
|
startDate: string
|
|
7741
8013
|
progressEndDate: string
|
|
@@ -7909,6 +8181,7 @@ export interface LolEventHubHallOfLegends {
|
|
|
7909
8181
|
endDate: string
|
|
7910
8182
|
helpModalImage: string
|
|
7911
8183
|
inducteeName: string
|
|
8184
|
+
spotlightSkin: LolEventHubSpotlightSkin
|
|
7912
8185
|
promotionBannerImage: string
|
|
7913
8186
|
objectiveBannerImage: string
|
|
7914
8187
|
eventPassBundlesCatalogEntry: LolEventHubCatalogEntry[]
|
|
@@ -8263,6 +8536,12 @@ export interface LolEventHubNextRewardUIData {
|
|
|
8263
8536
|
level: string
|
|
8264
8537
|
}
|
|
8265
8538
|
|
|
8539
|
+
export interface LolEventHubObjectiveCard {
|
|
8540
|
+
missionSeriesName: string
|
|
8541
|
+
objectiveGroup: string
|
|
8542
|
+
objectiveCategoryId: string
|
|
8543
|
+
}
|
|
8544
|
+
|
|
8266
8545
|
export interface LolEventHubObjectivesBanner {
|
|
8267
8546
|
eventName: string
|
|
8268
8547
|
promotionBannerImage: string
|
|
@@ -8571,6 +8850,7 @@ export interface LolEventHubRewardTrackItemOption {
|
|
|
8571
8850
|
cardSize: string
|
|
8572
8851
|
rewardGroupId: string
|
|
8573
8852
|
celebrationType: LolEventHubCelebrationType
|
|
8853
|
+
rewardInventoryTypes: string[]
|
|
8574
8854
|
}
|
|
8575
8855
|
|
|
8576
8856
|
export type LolEventHubRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
|
|
@@ -8700,7 +8980,6 @@ export interface LolEventHubSeasonPass {
|
|
|
8700
8980
|
eventHubType: string
|
|
8701
8981
|
localizedName: string
|
|
8702
8982
|
navbarIconImage: string
|
|
8703
|
-
headerIconImage: string
|
|
8704
8983
|
battleExpIconImage: string
|
|
8705
8984
|
headerTitleImage: string
|
|
8706
8985
|
startDate: string
|
|
@@ -8717,6 +8996,8 @@ export interface LolEventHubSeasonPass {
|
|
|
8717
8996
|
upsellBackgroundImageUrl: string
|
|
8718
8997
|
upsellTooltipBackgroundImageUrl: string
|
|
8719
8998
|
objectiveBannerImage: string
|
|
8999
|
+
localizedSeasonLogo: string
|
|
9000
|
+
localizedShortName: string
|
|
8720
9001
|
chapters: LolEventHubChapter[]
|
|
8721
9002
|
}
|
|
8722
9003
|
|
|
@@ -8798,6 +9079,11 @@ export interface LolEventHubSkinLineTier {
|
|
|
8798
9079
|
collectionSplashVideoPath?: string
|
|
8799
9080
|
}
|
|
8800
9081
|
|
|
9082
|
+
export interface LolEventHubSpotlightSkin {
|
|
9083
|
+
/** @format uint32 */
|
|
9084
|
+
championSkinID: number
|
|
9085
|
+
}
|
|
9086
|
+
|
|
8801
9087
|
export interface LolEventHubSummonerIcon {
|
|
8802
9088
|
/** @format int32 */
|
|
8803
9089
|
itemId: number
|
|
@@ -9267,6 +9553,7 @@ export interface LolGameQueuesQueue {
|
|
|
9267
9553
|
gameSelectPriority: number
|
|
9268
9554
|
isLimitedTimeQueue: boolean
|
|
9269
9555
|
isSkillTreeQueue: boolean
|
|
9556
|
+
isBotHonoringAllowed: boolean
|
|
9270
9557
|
isCustom: boolean
|
|
9271
9558
|
/** @format uint32 */
|
|
9272
9559
|
numberOfTeamsInLobby: number
|
|
@@ -9359,6 +9646,7 @@ export interface LolGameQueuesQueueTranslation {
|
|
|
9359
9646
|
gameSelectPriority: number
|
|
9360
9647
|
isLimitedTimeQueue: boolean
|
|
9361
9648
|
isSkillTreeQueue: boolean
|
|
9649
|
+
isBotHonoringAllowed: boolean
|
|
9362
9650
|
hidePlayerPosition: boolean
|
|
9363
9651
|
}
|
|
9364
9652
|
|
|
@@ -9489,6 +9777,7 @@ export interface LolGameflowLobbyStatus {
|
|
|
9489
9777
|
isLeader: boolean
|
|
9490
9778
|
isSpectator: boolean
|
|
9491
9779
|
allowedPlayAgain: boolean
|
|
9780
|
+
isNoSpectateDelay: boolean
|
|
9492
9781
|
memberSummonerIds: number[]
|
|
9493
9782
|
invitedSummonerIds: number[]
|
|
9494
9783
|
lobbyId?: string
|
|
@@ -9562,6 +9851,7 @@ export interface LolGameflowQueue {
|
|
|
9562
9851
|
/** @format int32 */
|
|
9563
9852
|
removalFromGameDelayMinutes: number
|
|
9564
9853
|
isCustom: boolean
|
|
9854
|
+
isBotHonoringAllowed: boolean
|
|
9565
9855
|
}
|
|
9566
9856
|
|
|
9567
9857
|
export type LolGameflowQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -9720,6 +10010,8 @@ export interface LolHonorV2EligiblePlayer {
|
|
|
9720
10010
|
summonerId: number
|
|
9721
10011
|
summonerName: string
|
|
9722
10012
|
championName: string
|
|
10013
|
+
/** @format int32 */
|
|
10014
|
+
championId: number
|
|
9723
10015
|
skinSplashPath: string
|
|
9724
10016
|
role: string
|
|
9725
10017
|
botPlayer: boolean
|
|
@@ -9736,6 +10028,8 @@ export interface LolHonorV2EndOfGamePlayer {
|
|
|
9736
10028
|
summonerId: number
|
|
9737
10029
|
skinSplashPath: string
|
|
9738
10030
|
championName: string
|
|
10031
|
+
/** @format int32 */
|
|
10032
|
+
championId: number
|
|
9739
10033
|
detectedTeamPosition: string
|
|
9740
10034
|
}
|
|
9741
10035
|
|
|
@@ -9786,6 +10080,7 @@ export interface LolHonorV2HonorConfig {
|
|
|
9786
10080
|
HonorSuggestionsEnabled: boolean
|
|
9787
10081
|
"honorEndpointsV2Enabled": boolean
|
|
9788
10082
|
"ceremonyV3Enabled": boolean
|
|
10083
|
+
useHonorInPostgamePlugin: boolean
|
|
9789
10084
|
}
|
|
9790
10085
|
|
|
9791
10086
|
export interface LolHonorV2HonorInteraction {
|
|
@@ -9811,6 +10106,12 @@ export interface LolHonorV2HonorSummoner {
|
|
|
9811
10106
|
summonerId: number
|
|
9812
10107
|
}
|
|
9813
10108
|
|
|
10109
|
+
export interface LolHonorV2HonorView {
|
|
10110
|
+
/** @format int32 */
|
|
10111
|
+
honorLevel: number
|
|
10112
|
+
redemptions: LolHonorV2Redemption[]
|
|
10113
|
+
}
|
|
10114
|
+
|
|
9814
10115
|
export interface LolHonorV2LoginSession {
|
|
9815
10116
|
state: LolHonorV2LoginSessionStates
|
|
9816
10117
|
}
|
|
@@ -9859,6 +10160,7 @@ export interface LolHonorV2Queue {
|
|
|
9859
10160
|
removalFromGameAllowed: boolean
|
|
9860
10161
|
/** @format int32 */
|
|
9861
10162
|
removalFromGameDelayMinutes: number
|
|
10163
|
+
isBotHonoringAllowed: boolean
|
|
9862
10164
|
}
|
|
9863
10165
|
|
|
9864
10166
|
export interface LolHonorV2Redemption {
|
|
@@ -11289,6 +11591,7 @@ export interface LolLobbyLobbyCustomGameConfiguration {
|
|
|
11289
11591
|
gameServerRegion: string
|
|
11290
11592
|
spectatorDelayEnabled: boolean
|
|
11291
11593
|
hidePublicly: boolean
|
|
11594
|
+
aramMapMutator: string
|
|
11292
11595
|
}
|
|
11293
11596
|
|
|
11294
11597
|
export interface LolLobbyLobbyCustomGameLobby {
|
|
@@ -11529,6 +11832,7 @@ export interface LolLobbyLobbyStatus {
|
|
|
11529
11832
|
isLeader: boolean
|
|
11530
11833
|
isSpectator: boolean
|
|
11531
11834
|
allowedPlayAgain: boolean
|
|
11835
|
+
isNoSpectateDelay: boolean
|
|
11532
11836
|
memberSummonerIds: number[]
|
|
11533
11837
|
invitedSummonerIds: number[]
|
|
11534
11838
|
lobbyId?: string
|
|
@@ -11832,6 +12136,7 @@ export interface LolLobbyQueue {
|
|
|
11832
12136
|
/** @format uint8 */
|
|
11833
12137
|
gameSelectPriority: number
|
|
11834
12138
|
isSkillTreeQueue: boolean
|
|
12139
|
+
isBotHonoringAllowed: boolean
|
|
11835
12140
|
isCustom: boolean
|
|
11836
12141
|
/** @format uint32 */
|
|
11837
12142
|
numberOfTeamsInLobby: number
|
|
@@ -13266,6 +13571,10 @@ export interface LolMapsMaps {
|
|
|
13266
13571
|
platformName: string
|
|
13267
13572
|
assets: Record<string, string>
|
|
13268
13573
|
locStrings: Record<string, string>
|
|
13574
|
+
/** @format int32 */
|
|
13575
|
+
setModalButtonBottom: number
|
|
13576
|
+
/** @format int32 */
|
|
13577
|
+
setModalButtonLeft: number
|
|
13269
13578
|
categorizedContentBundles: unknown
|
|
13270
13579
|
tutorialCards: LolMapsTutorialCard[]
|
|
13271
13580
|
properties: unknown
|
|
@@ -13339,6 +13648,12 @@ export interface LolMarketplaceFulfillmentDto {
|
|
|
13339
13648
|
currencyId: string
|
|
13340
13649
|
subCurrencyDeltas: Record<string, number>
|
|
13341
13650
|
progressionCounterId: string
|
|
13651
|
+
dropTableId: string
|
|
13652
|
+
}
|
|
13653
|
+
|
|
13654
|
+
export interface LolMarketplaceGameDataCompanion {
|
|
13655
|
+
contentId: string
|
|
13656
|
+
companionType: string
|
|
13342
13657
|
}
|
|
13343
13658
|
|
|
13344
13659
|
export interface LolMarketplacePagination {
|
|
@@ -13625,6 +13940,13 @@ export interface LolMatchHistoryGAMHSMatchHistoryMetadata {
|
|
|
13625
13940
|
private: boolean
|
|
13626
13941
|
}
|
|
13627
13942
|
|
|
13943
|
+
export interface LolMatchHistoryGameDataChampionSummary {
|
|
13944
|
+
/** @format int32 */
|
|
13945
|
+
id: number
|
|
13946
|
+
name: string
|
|
13947
|
+
alias: string
|
|
13948
|
+
}
|
|
13949
|
+
|
|
13628
13950
|
export interface LolMatchHistoryLoginSession {
|
|
13629
13951
|
state: LolMatchHistoryLoginSessionStates
|
|
13630
13952
|
/** @format uint64 */
|
|
@@ -14296,8 +14618,11 @@ export interface LolMissionsCapMissionSeriesMissionReward {
|
|
|
14296
14618
|
itemId: string
|
|
14297
14619
|
itemTypeId: string
|
|
14298
14620
|
typeId: string
|
|
14621
|
+
currencyId: string
|
|
14299
14622
|
/** @format uint32 */
|
|
14300
14623
|
amount: number
|
|
14624
|
+
/** @format uint32 */
|
|
14625
|
+
quantity: number
|
|
14301
14626
|
}
|
|
14302
14627
|
|
|
14303
14628
|
export interface LolMissionsCapMissionSeriesMissionRewardsStatus {
|
|
@@ -15284,8 +15609,11 @@ export interface LolObjectivesCapMissionSeriesMissionReward {
|
|
|
15284
15609
|
itemId: string
|
|
15285
15610
|
itemTypeId: string
|
|
15286
15611
|
typeId: string
|
|
15612
|
+
currencyId: string
|
|
15287
15613
|
/** @format uint32 */
|
|
15288
15614
|
amount: number
|
|
15615
|
+
/** @format uint32 */
|
|
15616
|
+
quantity: number
|
|
15289
15617
|
}
|
|
15290
15618
|
|
|
15291
15619
|
export interface LolObjectivesCapMissionSeriesMissionRewardsStatus {
|
|
@@ -15630,6 +15958,7 @@ export interface LolObjectivesTftBattlepassInfo {
|
|
|
15630
15958
|
premiumEntitlementId: string
|
|
15631
15959
|
pcPurchaseRequirement: string
|
|
15632
15960
|
passId: string
|
|
15961
|
+
hasLevelPurchasing: boolean
|
|
15633
15962
|
media: Record<string, string>
|
|
15634
15963
|
passType: LolObjectivesTftPassType
|
|
15635
15964
|
}
|
|
@@ -15735,6 +16064,11 @@ export interface LolObjectivesUserInfo {
|
|
|
15735
16064
|
userInfo: string
|
|
15736
16065
|
}
|
|
15737
16066
|
|
|
16067
|
+
export interface LolPatchAppUpdateConfig {
|
|
16068
|
+
disableDeprecatedProductIntegrationState: boolean
|
|
16069
|
+
enablePatchProxyState: boolean
|
|
16070
|
+
}
|
|
16071
|
+
|
|
15738
16072
|
export interface LolPatchChunkingPatcherEnvironment {
|
|
15739
16073
|
game_patcher_available: boolean
|
|
15740
16074
|
game_patcher_enabled: boolean
|
|
@@ -15776,11 +16110,6 @@ export interface LolPatchConfigStatus {
|
|
|
15776
16110
|
readiness: LolPatchConfigReadiness
|
|
15777
16111
|
}
|
|
15778
16112
|
|
|
15779
|
-
export interface LolPatchCurrentUpdateStatus {
|
|
15780
|
-
updateAvailable: boolean
|
|
15781
|
-
updateRequired: boolean
|
|
15782
|
-
}
|
|
15783
|
-
|
|
15784
16113
|
export interface LolPatchEntitlementsTokenResource {
|
|
15785
16114
|
accessToken: string
|
|
15786
16115
|
token: string
|
|
@@ -15800,6 +16129,11 @@ export interface LolPatchNotification {
|
|
|
15800
16129
|
|
|
15801
16130
|
export type LolPatchNotificationId = "BrokenPermissions" | "NotEnoughDiskSpace" | "DidRestoreClientBackup" | "FailedToWriteError" | "MissingFilesError" | "ConnectionError" | "UnspecifiedError"
|
|
15802
16131
|
|
|
16132
|
+
export interface LolPatchPatchProxyState {
|
|
16133
|
+
state: string
|
|
16134
|
+
launchable: boolean
|
|
16135
|
+
}
|
|
16136
|
+
|
|
15803
16137
|
export interface LolPatchPatchSieveCompatVersion {
|
|
15804
16138
|
id: string
|
|
15805
16139
|
}
|
|
@@ -15857,9 +16191,7 @@ export interface LolPatchPatcherSettings {
|
|
|
15857
16191
|
patchsieve_url: string
|
|
15858
16192
|
}
|
|
15859
16193
|
|
|
15860
|
-
export interface
|
|
15861
|
-
patchlineId: string
|
|
15862
|
-
productId: string
|
|
16194
|
+
export interface LolPatchProductIntegrationState {
|
|
15863
16195
|
updateAvailable: boolean
|
|
15864
16196
|
updateRequired: boolean
|
|
15865
16197
|
}
|
|
@@ -18222,6 +18554,7 @@ export interface LolRankedRankedStats {
|
|
|
18222
18554
|
/** @format int32 */
|
|
18223
18555
|
previousSeasonSplitPoints: number
|
|
18224
18556
|
seasons: Record<string, LolRankedSeasonDTO>
|
|
18557
|
+
shouldShowIndicator: boolean
|
|
18225
18558
|
}
|
|
18226
18559
|
|
|
18227
18560
|
export interface LolRankedRankedStatsDTO {
|
|
@@ -18235,6 +18568,7 @@ export interface LolRankedRankedStatsDTO {
|
|
|
18235
18568
|
/** @format int32 */
|
|
18236
18569
|
previousSeasonSplitPoints: number
|
|
18237
18570
|
seasons: Record<string, LolRankedSeasonDTO>
|
|
18571
|
+
shouldShowIndicator: boolean
|
|
18238
18572
|
}
|
|
18239
18573
|
|
|
18240
18574
|
export interface LolRankedRatedLadderEntryDTO {
|
|
@@ -18310,6 +18644,7 @@ export interface LolRankedSignedRankedStatsDTO {
|
|
|
18310
18644
|
/** @format int32 */
|
|
18311
18645
|
previousSeasonSplitPoints: number
|
|
18312
18646
|
seasons: Record<string, LolRankedSeasonDTO>
|
|
18647
|
+
shouldShowIndicator: boolean
|
|
18313
18648
|
jwt: string
|
|
18314
18649
|
}
|
|
18315
18650
|
|
|
@@ -18408,6 +18743,7 @@ export interface LolRegaliaGameDataRegalia {
|
|
|
18408
18743
|
regaliaType: string
|
|
18409
18744
|
localizedName: string
|
|
18410
18745
|
localizedDescription: string
|
|
18746
|
+
isTencentOnly: boolean
|
|
18411
18747
|
}
|
|
18412
18748
|
|
|
18413
18749
|
export interface LolRegaliaInventoryItem {
|
|
@@ -19136,6 +19472,11 @@ export interface LolRewardTrackGroup {
|
|
|
19136
19472
|
milestones: LolRewardTrackMilestone[]
|
|
19137
19473
|
}
|
|
19138
19474
|
|
|
19475
|
+
export interface LolRewardTrackLolInventoryType {
|
|
19476
|
+
inventoryTypeId: string
|
|
19477
|
+
capInventoryTypeId: string
|
|
19478
|
+
}
|
|
19479
|
+
|
|
19139
19480
|
export interface LolRewardTrackMilestone {
|
|
19140
19481
|
id: string
|
|
19141
19482
|
name: string
|
|
@@ -19296,6 +19637,7 @@ export interface LolRewardTrackRewardTrackItemOption {
|
|
|
19296
19637
|
cardSize: string
|
|
19297
19638
|
rewardGroupId: string
|
|
19298
19639
|
celebrationType: LolRewardTrackCelebrationType
|
|
19640
|
+
rewardInventoryTypes: string[]
|
|
19299
19641
|
}
|
|
19300
19642
|
|
|
19301
19643
|
export type LolRewardTrackRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
|
|
@@ -19984,6 +20326,10 @@ export interface LolSettingsVNGStatusResponse {
|
|
|
19984
20326
|
action_url_raw: string
|
|
19985
20327
|
}
|
|
19986
20328
|
|
|
20329
|
+
export interface LolShoppefrontBulkPurchaseRequest {
|
|
20330
|
+
purchaseItems: LolShoppefrontPurchaseRequest[]
|
|
20331
|
+
}
|
|
20332
|
+
|
|
19987
20333
|
export interface LolShoppefrontPurchaseRequest {
|
|
19988
20334
|
storeId: string
|
|
19989
20335
|
catalogEntryId: string
|
|
@@ -19995,6 +20341,8 @@ export interface LolShoppefrontPurchaseRequest {
|
|
|
19995
20341
|
export interface LolShoppefrontPurchaseResponse {
|
|
19996
20342
|
id: string
|
|
19997
20343
|
status: LolShoppefrontPurchaseResponseStatus
|
|
20344
|
+
/** @format uint8 */
|
|
20345
|
+
numberOfPendingPurchases: number
|
|
19998
20346
|
}
|
|
19999
20347
|
|
|
20000
20348
|
export type LolShoppefrontPurchaseResponseStatus = "Failure" | "Success" | "Pending" | "None"
|
|
@@ -20677,7 +21025,6 @@ export interface LolStoreGiftingConfig {
|
|
|
20677
21025
|
giftingHextechMaxDailyGiftsSend: number
|
|
20678
21026
|
/** @format uint32 */
|
|
20679
21027
|
giftingHextecMaxDailyGiftsReceive: number
|
|
20680
|
-
requiresIdentityVerification: boolean
|
|
20681
21028
|
}
|
|
20682
21029
|
|
|
20683
21030
|
export interface LolStoreGiftingFriend {
|
|
@@ -20959,7 +21306,7 @@ export type LolSuggestedPlayersSuggestedPlayersReason = "LegacyPlayAgain" | "Hon
|
|
|
20959
21306
|
|
|
20960
21307
|
export interface LolSuggestedPlayersSuggestedPlayersReportedPlayer {
|
|
20961
21308
|
/** @format uint64 */
|
|
20962
|
-
|
|
21309
|
+
offenderSummonerId: number
|
|
20963
21310
|
}
|
|
20964
21311
|
|
|
20965
21312
|
export interface LolSuggestedPlayersSuggestedPlayersSuggestedPlayer {
|
|
@@ -21104,14 +21451,48 @@ export type LolSummonerProfilePrivacyEnabledState = "DISABLED" | "ENABLED" | "UN
|
|
|
21104
21451
|
|
|
21105
21452
|
export type LolSummonerProfilePrivacySetting = "PUBLIC" | "PRIVATE"
|
|
21106
21453
|
|
|
21454
|
+
export interface LolSummonerProfilesChampionMasteryData {
|
|
21455
|
+
/** @format int64 */
|
|
21456
|
+
championId: number
|
|
21457
|
+
/** @format int32 */
|
|
21458
|
+
championLevel: number
|
|
21459
|
+
/** @format int32 */
|
|
21460
|
+
championPoints: number
|
|
21461
|
+
highestGrade?: string
|
|
21462
|
+
}
|
|
21463
|
+
|
|
21464
|
+
export interface LolSummonerProfilesChampionMasteryView {
|
|
21465
|
+
puuid: string
|
|
21466
|
+
data: LolSummonerProfilesChampionMasteryData[]
|
|
21467
|
+
}
|
|
21468
|
+
|
|
21469
|
+
export interface LolSummonerProfilesHonorView {
|
|
21470
|
+
/** @format int32 */
|
|
21471
|
+
honorLevel: number
|
|
21472
|
+
redemptions: LolSummonerProfilesRedemption[]
|
|
21473
|
+
}
|
|
21474
|
+
|
|
21475
|
+
export interface LolSummonerProfilesPrivacyView {
|
|
21476
|
+
anonymityEnabled: boolean
|
|
21477
|
+
nameOnlyAnonymityEnabled: boolean
|
|
21478
|
+
}
|
|
21479
|
+
|
|
21107
21480
|
export interface LolSummonerProfilesPuuidAndViews {
|
|
21108
21481
|
payload: Record<string, LolSummonerProfilesViews>
|
|
21109
21482
|
}
|
|
21110
21483
|
|
|
21484
|
+
export interface LolSummonerProfilesRedemption {
|
|
21485
|
+
/** @format int32 */
|
|
21486
|
+
required: number
|
|
21487
|
+
/** @format int32 */
|
|
21488
|
+
remaining: number
|
|
21489
|
+
eventType: string
|
|
21490
|
+
}
|
|
21491
|
+
|
|
21111
21492
|
export interface LolSummonerProfilesSummonerLevel {
|
|
21112
21493
|
puuid: string
|
|
21113
21494
|
/** @format uint32 */
|
|
21114
|
-
|
|
21495
|
+
level: number
|
|
21115
21496
|
/** @format uint32 */
|
|
21116
21497
|
xpSinceLastLevel: number
|
|
21117
21498
|
/** @format uint32 */
|
|
@@ -21374,8 +21755,11 @@ export interface LolTftEventCapMissionSeriesMissionReward {
|
|
|
21374
21755
|
itemId: string
|
|
21375
21756
|
itemTypeId: string
|
|
21376
21757
|
typeId: string
|
|
21758
|
+
currencyId: string
|
|
21377
21759
|
/** @format uint32 */
|
|
21378
21760
|
amount: number
|
|
21761
|
+
/** @format uint32 */
|
|
21762
|
+
quantity: number
|
|
21379
21763
|
}
|
|
21380
21764
|
|
|
21381
21765
|
export interface LolTftEventCapMissionSeriesMissionRewardsStatus {
|
|
@@ -21607,146 +21991,813 @@ export interface LolTftEventPublishingSettings {
|
|
|
21607
21991
|
publishingLocale: string
|
|
21608
21992
|
}
|
|
21609
21993
|
|
|
21610
|
-
export interface
|
|
21611
|
-
|
|
21612
|
-
|
|
21613
|
-
/** @format
|
|
21614
|
-
|
|
21615
|
-
gameMode: string
|
|
21616
|
-
category: LolTftEventQueueGameCategory
|
|
21994
|
+
export interface LolTftEventPveAccessTokenResource {
|
|
21995
|
+
token: string
|
|
21996
|
+
scopes: string[]
|
|
21997
|
+
/** @format uint64 */
|
|
21998
|
+
expiry: number
|
|
21617
21999
|
}
|
|
21618
22000
|
|
|
21619
|
-
export
|
|
22001
|
+
export interface LolTftEventPveCAPMission {
|
|
22002
|
+
missionId: string
|
|
22003
|
+
title: string
|
|
22004
|
+
description: string
|
|
22005
|
+
missionIconAsset: LolTftEventPveMissionAsset
|
|
22006
|
+
rewards: LolTftEventPveCAPMissionReward[]
|
|
22007
|
+
objectives: LolTftEventPveCAPMissionObjective[]
|
|
22008
|
+
}
|
|
21620
22009
|
|
|
21621
|
-
export interface
|
|
21622
|
-
|
|
21623
|
-
|
|
22010
|
+
export interface LolTftEventPveCAPMissionObjective {
|
|
22011
|
+
statId: string
|
|
22012
|
+
description: string
|
|
21624
22013
|
}
|
|
21625
22014
|
|
|
21626
|
-
export interface
|
|
21627
|
-
id: string
|
|
22015
|
+
export interface LolTftEventPveCAPMissionReward {
|
|
21628
22016
|
itemId: string
|
|
21629
|
-
|
|
21630
|
-
|
|
21631
|
-
rewardStatus: LolTftEventRewardStatus
|
|
21632
|
-
/** @format int32 */
|
|
22017
|
+
rewardName: string
|
|
22018
|
+
/** @format uint32 */
|
|
21633
22019
|
quantity: number
|
|
21634
|
-
|
|
21635
|
-
localizations: Record<string, string>
|
|
22020
|
+
rewardAsset: LolTftEventPveMissionAsset
|
|
21636
22021
|
}
|
|
21637
22022
|
|
|
21638
|
-
export interface
|
|
21639
|
-
|
|
21640
|
-
|
|
21641
|
-
|
|
21642
|
-
|
|
21643
|
-
grantElements: LolTftEventRewardGrantElement[]
|
|
21644
|
-
selectedIds: string[]
|
|
21645
|
-
viewed: boolean
|
|
22023
|
+
export interface LolTftEventPveCatalogItem {
|
|
22024
|
+
/** @format int32 */
|
|
22025
|
+
itemId: number
|
|
22026
|
+
inventoryType: string
|
|
22027
|
+
itemInstanceId?: string
|
|
21646
22028
|
}
|
|
21647
22029
|
|
|
21648
|
-
export interface
|
|
21649
|
-
|
|
21650
|
-
|
|
21651
|
-
|
|
21652
|
-
types: string[]
|
|
21653
|
-
rewards: LolTftEventSvcReward[]
|
|
21654
|
-
childRewardGroupIds: string[]
|
|
21655
|
-
rewardStrategy: LolTftEventRewardStrategy
|
|
21656
|
-
selectionStrategyConfig: LolTftEventSelectionStrategyConfig
|
|
21657
|
-
active: boolean
|
|
21658
|
-
media: Record<string, string>
|
|
21659
|
-
localizations: Record<string, string>
|
|
22030
|
+
export interface LolTftEventPveClientCacheClearMessageDTO {
|
|
22031
|
+
regions: string[]
|
|
22032
|
+
clearAll: boolean
|
|
22033
|
+
inventoryTypes: string[]
|
|
21660
22034
|
}
|
|
21661
22035
|
|
|
21662
|
-
export interface
|
|
21663
|
-
|
|
22036
|
+
export interface LolTftEventPveCreateLoadoutDTO {
|
|
22037
|
+
scope: string
|
|
22038
|
+
/** @format uint32 */
|
|
22039
|
+
itemId?: number
|
|
22040
|
+
name: string
|
|
22041
|
+
loadout: Record<string, LolTftEventPveItemKey>
|
|
22042
|
+
refreshTime: string
|
|
21664
22043
|
}
|
|
21665
22044
|
|
|
21666
|
-
export
|
|
21667
|
-
|
|
21668
|
-
|
|
21669
|
-
|
|
21670
|
-
export interface LolTftEventRewardsProductConfig {
|
|
21671
|
-
enabled: boolean
|
|
21672
|
-
serviceUrl: string
|
|
22045
|
+
export interface LolTftEventPveCreateLoadoutRequestDTO {
|
|
22046
|
+
serviceToJwtsMap: Record<string, unknown>
|
|
22047
|
+
loadout: LolTftEventPveCreateLoadoutDTO
|
|
21673
22048
|
}
|
|
21674
22049
|
|
|
21675
|
-
export interface
|
|
21676
|
-
|
|
21677
|
-
|
|
21678
|
-
|
|
21679
|
-
|
|
21680
|
-
timestamp: number
|
|
21681
|
-
payload: string
|
|
22050
|
+
export interface LolTftEventPveCreateOrUpdateItemsRequest {
|
|
22051
|
+
/** @format uint32 */
|
|
22052
|
+
id: number
|
|
22053
|
+
items: Record<string, unknown>
|
|
22054
|
+
inventoryJWTs: string[]
|
|
21682
22055
|
}
|
|
21683
22056
|
|
|
21684
|
-
export interface
|
|
21685
|
-
|
|
21686
|
-
|
|
21687
|
-
|
|
22057
|
+
export interface LolTftEventPveCurrencyDTO {
|
|
22058
|
+
/** @format int32 */
|
|
22059
|
+
amount: number
|
|
22060
|
+
subCurrencies: Record<string, number>
|
|
21688
22061
|
}
|
|
21689
22062
|
|
|
21690
|
-
export interface
|
|
21691
|
-
/** @format uint32 */
|
|
21692
|
-
minSelectionsAllowed: number
|
|
22063
|
+
export interface LolTftEventPveEndOfGameXp {
|
|
21693
22064
|
/** @format uint32 */
|
|
21694
|
-
|
|
22065
|
+
PER_WIN: number
|
|
21695
22066
|
}
|
|
21696
22067
|
|
|
21697
|
-
export interface
|
|
21698
|
-
|
|
21699
|
-
option: string
|
|
22068
|
+
export interface LolTftEventPveEndOfGameXpNotification {
|
|
22069
|
+
xp: LolTftEventPveEndOfGameXp
|
|
21700
22070
|
}
|
|
21701
22071
|
|
|
21702
|
-
export
|
|
21703
|
-
data: unknown
|
|
21704
|
-
}
|
|
22072
|
+
export type LolTftEventPveEventPVELevelState = "kError" | "kCleared" | "kUnlocked" | "kUnseenUnlocked" | "kLocked"
|
|
21705
22073
|
|
|
21706
|
-
export interface
|
|
21707
|
-
|
|
21708
|
-
itemId: string
|
|
21709
|
-
/** @format int32 */
|
|
21710
|
-
quantity: number
|
|
21711
|
-
fulfillmentSource: string
|
|
21712
|
-
media: Record<string, string>
|
|
21713
|
-
localizations: Record<string, string>
|
|
22074
|
+
export interface LolTftEventPveFrontendInventoryResponse {
|
|
22075
|
+
entitlements: LolTftEventPveItemKey[]
|
|
21714
22076
|
}
|
|
21715
22077
|
|
|
21716
|
-
export interface
|
|
21717
|
-
|
|
21718
|
-
chainIndex: number
|
|
21719
|
-
/** @format uint32 */
|
|
21720
|
-
chainSize: number
|
|
21721
|
-
missions: PlayerMissionDTO[]
|
|
22078
|
+
export interface LolTftEventPveGameflowGameData {
|
|
22079
|
+
queue: LolTftEventPveQueue
|
|
21722
22080
|
}
|
|
21723
22081
|
|
|
21724
|
-
export
|
|
21725
|
-
missionChains: LolTftEventTFTEventMissionChain[]
|
|
21726
|
-
seriesId: string
|
|
21727
|
-
}
|
|
22082
|
+
export type LolTftEventPveGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
21728
22083
|
|
|
21729
|
-
export interface
|
|
21730
|
-
|
|
21731
|
-
|
|
21732
|
-
storeType: string
|
|
21733
|
-
isDeepLink: boolean
|
|
22084
|
+
export interface LolTftEventPveGameflowSession {
|
|
22085
|
+
phase: LolTftEventPveGameflowPhase
|
|
22086
|
+
gameData: LolTftEventPveGameflowGameData
|
|
21734
22087
|
}
|
|
21735
22088
|
|
|
21736
|
-
export interface
|
|
21737
|
-
|
|
21738
|
-
|
|
21739
|
-
|
|
22089
|
+
export interface LolTftEventPveGetItemsRequest {
|
|
22090
|
+
/** @format uint32 */
|
|
22091
|
+
id: number
|
|
22092
|
+
inventoryTypes: string[]
|
|
22093
|
+
inventoryJWTs: string[]
|
|
21740
22094
|
}
|
|
21741
22095
|
|
|
21742
|
-
export interface
|
|
21743
|
-
|
|
21744
|
-
|
|
21745
|
-
|
|
21746
|
-
|
|
21747
|
-
|
|
21748
|
-
|
|
21749
|
-
|
|
22096
|
+
export interface LolTftEventPveIds {
|
|
22097
|
+
missionIds: string[]
|
|
22098
|
+
seriesIds: string[]
|
|
22099
|
+
}
|
|
22100
|
+
|
|
22101
|
+
export interface LolTftEventPveInventoryCacheEntry {
|
|
22102
|
+
signedInventoryJwt: string
|
|
22103
|
+
/** @format uint64 */
|
|
22104
|
+
expirationMS: number
|
|
22105
|
+
/** @format uint64 */
|
|
22106
|
+
issuedAtMS: number
|
|
22107
|
+
/** @format uint64 */
|
|
22108
|
+
receivedAtMS: number
|
|
22109
|
+
valid: boolean
|
|
22110
|
+
}
|
|
22111
|
+
|
|
22112
|
+
export interface LolTftEventPveInventoryDTO {
|
|
22113
|
+
puuid: string
|
|
22114
|
+
/** @format uint64 */
|
|
22115
|
+
accountId: number
|
|
22116
|
+
/** @format uint64 */
|
|
22117
|
+
summonerId: number
|
|
22118
|
+
items: Record<string, unknown>
|
|
22119
|
+
expires: string
|
|
22120
|
+
itemsJwt?: string
|
|
22121
|
+
}
|
|
22122
|
+
|
|
22123
|
+
export interface LolTftEventPveInventoryItem {
|
|
22124
|
+
uuid: string
|
|
22125
|
+
/** @format int32 */
|
|
22126
|
+
itemId: number
|
|
22127
|
+
inventoryType: string
|
|
22128
|
+
purchaseDate: string
|
|
22129
|
+
/** @format uint64 */
|
|
22130
|
+
quantity: number
|
|
22131
|
+
ownershipType: LolTftEventPveItemOwnershipType
|
|
22132
|
+
usedInGameDate: string
|
|
22133
|
+
expirationDate: string
|
|
22134
|
+
/** @format uint64 */
|
|
22135
|
+
wins: number
|
|
22136
|
+
}
|
|
22137
|
+
|
|
22138
|
+
export interface LolTftEventPveInventoryItemDTO {
|
|
22139
|
+
/** @format int32 */
|
|
22140
|
+
itemId: number
|
|
22141
|
+
inventoryType: string
|
|
22142
|
+
expirationDate: string
|
|
22143
|
+
purchaseDate: string
|
|
22144
|
+
/** @format uint64 */
|
|
22145
|
+
quantity: number
|
|
22146
|
+
usedInGameDate: string
|
|
22147
|
+
entitlementId: string
|
|
22148
|
+
entitlementTypeId: string
|
|
22149
|
+
instanceId: string
|
|
22150
|
+
instanceTypeId: string
|
|
22151
|
+
"f2p": boolean
|
|
22152
|
+
rental: boolean
|
|
22153
|
+
lsb: boolean
|
|
22154
|
+
/** @format uint64 */
|
|
22155
|
+
wins: number
|
|
22156
|
+
}
|
|
22157
|
+
|
|
22158
|
+
export interface LolTftEventPveInventoryItemWithPayload {
|
|
22159
|
+
uuid: string
|
|
22160
|
+
/** @format int32 */
|
|
22161
|
+
itemId: number
|
|
22162
|
+
inventoryType: string
|
|
22163
|
+
purchaseDate: string
|
|
22164
|
+
/** @format uint64 */
|
|
22165
|
+
quantity: number
|
|
22166
|
+
ownershipType: LolTftEventPveItemOwnershipType
|
|
22167
|
+
usedInGameDate: string
|
|
22168
|
+
expirationDate: string
|
|
22169
|
+
"f2p": boolean
|
|
22170
|
+
rental: boolean
|
|
22171
|
+
loyalty: boolean
|
|
22172
|
+
loyaltySources: string[]
|
|
22173
|
+
owned: boolean
|
|
22174
|
+
/** @format uint64 */
|
|
22175
|
+
wins: number
|
|
22176
|
+
payload: unknown
|
|
22177
|
+
}
|
|
22178
|
+
|
|
22179
|
+
export interface LolTftEventPveInventoryNotification {
|
|
22180
|
+
/** @format int64 */
|
|
22181
|
+
id: number
|
|
22182
|
+
/** @format int32 */
|
|
22183
|
+
itemId: number
|
|
22184
|
+
inventoryType: string
|
|
22185
|
+
type: string
|
|
22186
|
+
acknowledged: boolean
|
|
22187
|
+
}
|
|
22188
|
+
|
|
22189
|
+
export interface LolTftEventPveInventoryResponseDTO {
|
|
22190
|
+
data: LolTftEventPveInventoryDTO
|
|
22191
|
+
}
|
|
22192
|
+
|
|
22193
|
+
export interface LolTftEventPveItemKey {
|
|
22194
|
+
inventoryType: string
|
|
22195
|
+
contentId: string
|
|
22196
|
+
/** @format int32 */
|
|
22197
|
+
itemId: number
|
|
22198
|
+
}
|
|
22199
|
+
|
|
22200
|
+
export type LolTftEventPveItemOwnershipType = "F2P" | "LOYALTY" | "RENTED" | "OWNED"
|
|
22201
|
+
|
|
22202
|
+
export interface LolTftEventPveLoadout {
|
|
22203
|
+
/** @format uint32 */
|
|
22204
|
+
id: number
|
|
22205
|
+
name: string
|
|
22206
|
+
items: Record<string, unknown>
|
|
22207
|
+
}
|
|
22208
|
+
|
|
22209
|
+
export interface LolTftEventPveLoadoutRequestDTOBase {
|
|
22210
|
+
serviceToJwtsMap: Record<string, unknown>
|
|
22211
|
+
}
|
|
22212
|
+
|
|
22213
|
+
export interface LolTftEventPveLoginSession {
|
|
22214
|
+
state: LolTftEventPveLoginSessionStates
|
|
22215
|
+
/** @format uint64 */
|
|
22216
|
+
summonerId: number
|
|
22217
|
+
/** @format uint64 */
|
|
22218
|
+
accountId: number
|
|
22219
|
+
idToken: string
|
|
22220
|
+
puuid: string
|
|
22221
|
+
}
|
|
22222
|
+
|
|
22223
|
+
export type LolTftEventPveLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
22224
|
+
|
|
22225
|
+
export interface LolTftEventPveLolInventoryType {
|
|
22226
|
+
inventoryTypeId: string
|
|
22227
|
+
capInventoryTypeId: string
|
|
22228
|
+
}
|
|
22229
|
+
|
|
22230
|
+
export interface LolTftEventPveLoyaltyRewards {
|
|
22231
|
+
/** @format int32 */
|
|
22232
|
+
freeRewardedChampionsCount: number
|
|
22233
|
+
championIds: number[]
|
|
22234
|
+
/** @format int32 */
|
|
22235
|
+
freeRewardedSkinsCount: number
|
|
22236
|
+
skinIds: number[]
|
|
22237
|
+
/** @format int32 */
|
|
22238
|
+
ipBoost: number
|
|
22239
|
+
xpBoost: Record<string, number>
|
|
22240
|
+
/** @format int32 */
|
|
22241
|
+
loyaltyTFTMapSkinCount: number
|
|
22242
|
+
/** @format int32 */
|
|
22243
|
+
loyaltyTFTCompanionCount: number
|
|
22244
|
+
/** @format int32 */
|
|
22245
|
+
loyaltyTFTDamageSkinCount: number
|
|
22246
|
+
loyaltySources: Record<string, boolean>
|
|
22247
|
+
}
|
|
22248
|
+
|
|
22249
|
+
export interface LolTftEventPveLoyaltyRewardsSimplified {
|
|
22250
|
+
/** @format int32 */
|
|
22251
|
+
freeRewardedChampionsCount: number
|
|
22252
|
+
championIds: number[]
|
|
22253
|
+
/** @format int32 */
|
|
22254
|
+
freeRewardedSkinsCount: number
|
|
22255
|
+
skinIds: number[]
|
|
22256
|
+
/** @format int32 */
|
|
22257
|
+
ipBoost: number
|
|
22258
|
+
/** @format int32 */
|
|
22259
|
+
xpBoost: number
|
|
22260
|
+
/** @format int32 */
|
|
22261
|
+
loyaltyTFTMapSkinCount: number
|
|
22262
|
+
/** @format int32 */
|
|
22263
|
+
loyaltyTFTCompanionCount: number
|
|
22264
|
+
/** @format int32 */
|
|
22265
|
+
loyaltyTFTDamageSkinCount: number
|
|
22266
|
+
loyaltySources: Record<string, boolean>
|
|
22267
|
+
}
|
|
22268
|
+
|
|
22269
|
+
export type LolTftEventPveLoyaltyStatus = "DISABLED" | "REVOKE" | "CHANGE" | "EXPIRY" | "REWARDS_GRANT" | "LEGACY"
|
|
22270
|
+
|
|
22271
|
+
export interface LolTftEventPveLoyaltyStatusNotification {
|
|
22272
|
+
status: LolTftEventPveLoyaltyStatus
|
|
22273
|
+
rewards: LolTftEventPveLoyaltyRewardsSimplified
|
|
22274
|
+
reloadInventory: boolean
|
|
22275
|
+
}
|
|
22276
|
+
|
|
22277
|
+
export interface LolTftEventPveMission {
|
|
22278
|
+
viewed: boolean
|
|
22279
|
+
id: string
|
|
22280
|
+
title: string
|
|
22281
|
+
helperText: string
|
|
22282
|
+
description: string
|
|
22283
|
+
missionLineText: string
|
|
22284
|
+
iconImageUrl: string
|
|
22285
|
+
seriesName: string
|
|
22286
|
+
rewards: LolTftEventPveReward[]
|
|
22287
|
+
status: string
|
|
22288
|
+
missionType: string
|
|
22289
|
+
displayType: string
|
|
22290
|
+
/** @format int64 */
|
|
22291
|
+
completedDate: number
|
|
22292
|
+
celebrationType: string
|
|
22293
|
+
}
|
|
22294
|
+
|
|
22295
|
+
export interface LolTftEventPveMissionAsset {
|
|
22296
|
+
internalName: string
|
|
22297
|
+
path: string
|
|
22298
|
+
iconNeedsFrame: boolean
|
|
22299
|
+
}
|
|
22300
|
+
|
|
22301
|
+
export interface LolTftEventPvePlayerNotification {
|
|
22302
|
+
critical: boolean
|
|
22303
|
+
detailKey: string
|
|
22304
|
+
source: string
|
|
22305
|
+
state: string
|
|
22306
|
+
titleKey: string
|
|
22307
|
+
type: string
|
|
22308
|
+
iconUrl: string
|
|
22309
|
+
}
|
|
22310
|
+
|
|
22311
|
+
export interface LolTftEventPveQueue {
|
|
22312
|
+
isTeamBuilderManaged: boolean
|
|
22313
|
+
}
|
|
22314
|
+
|
|
22315
|
+
export interface LolTftEventPveReward {
|
|
22316
|
+
rewardType: string
|
|
22317
|
+
rewardGroup: string
|
|
22318
|
+
description: string
|
|
22319
|
+
iconUrl: string
|
|
22320
|
+
smallIconUrl: string
|
|
22321
|
+
itemId: string
|
|
22322
|
+
itemTypeId: string
|
|
22323
|
+
uniqueName: string
|
|
22324
|
+
rewardFulfilled: boolean
|
|
22325
|
+
rewardGroupSelected: boolean
|
|
22326
|
+
/** @format int32 */
|
|
22327
|
+
sequence: number
|
|
22328
|
+
/** @format int32 */
|
|
22329
|
+
quantity: number
|
|
22330
|
+
isObjectiveBasedReward: boolean
|
|
22331
|
+
media: Record<string, string>
|
|
22332
|
+
iconNeedsFrame: boolean
|
|
22333
|
+
}
|
|
22334
|
+
|
|
22335
|
+
export interface LolTftEventPveRiotMessagingServiceMessage {
|
|
22336
|
+
resource: string
|
|
22337
|
+
service: string
|
|
22338
|
+
version: string
|
|
22339
|
+
/** @format int64 */
|
|
22340
|
+
timestamp: number
|
|
22341
|
+
payload: string
|
|
22342
|
+
}
|
|
22343
|
+
|
|
22344
|
+
export interface LolTftEventPveRmsEntitlementPayload {
|
|
22345
|
+
itemId: string
|
|
22346
|
+
itemTypeId: string
|
|
22347
|
+
tiers: string
|
|
22348
|
+
entitlementTypeId: string
|
|
22349
|
+
resourceOperation: string
|
|
22350
|
+
}
|
|
22351
|
+
|
|
22352
|
+
export interface LolTftEventPveRmsStoreEntitlementItem {
|
|
22353
|
+
inventoryType: string
|
|
22354
|
+
itemId: string
|
|
22355
|
+
}
|
|
22356
|
+
|
|
22357
|
+
export interface LolTftEventPveRmsStoreEntitlementPayload {
|
|
22358
|
+
transactionId: string
|
|
22359
|
+
items: LolTftEventPveRmsStoreEntitlementItem[]
|
|
22360
|
+
}
|
|
22361
|
+
|
|
22362
|
+
export interface LolTftEventPveRmsWalletPayload {
|
|
22363
|
+
[key: string | number]: any
|
|
22364
|
+
}
|
|
22365
|
+
|
|
22366
|
+
export interface LolTftEventPveRmsXboxSubscriptionChange {
|
|
22367
|
+
puuid: string
|
|
22368
|
+
subscriptionId: string
|
|
22369
|
+
active: string
|
|
22370
|
+
identityProvider: string[]
|
|
22371
|
+
}
|
|
22372
|
+
|
|
22373
|
+
export interface LolTftEventPveScopedLoadout {
|
|
22374
|
+
scope: string
|
|
22375
|
+
/** @format uint32 */
|
|
22376
|
+
itemId?: number
|
|
22377
|
+
name: string
|
|
22378
|
+
loadout: Record<string, LolTftEventPveItemKey>
|
|
22379
|
+
refreshTime: string
|
|
22380
|
+
id: string
|
|
22381
|
+
}
|
|
22382
|
+
|
|
22383
|
+
export interface LolTftEventPveSignGCORequestDTO {
|
|
22384
|
+
serviceToJwtsMap: Record<string, unknown>
|
|
22385
|
+
loadout: Record<string, LolTftEventPveItemKey>
|
|
22386
|
+
}
|
|
22387
|
+
|
|
22388
|
+
export interface LolTftEventPveSimpleInventoryDTO {
|
|
22389
|
+
items: Record<string, unknown>
|
|
22390
|
+
itemsJwt: string
|
|
22391
|
+
expires: string
|
|
22392
|
+
}
|
|
22393
|
+
|
|
22394
|
+
export interface LolTftEventPveSimpleInventoryResponseDTO {
|
|
22395
|
+
data: LolTftEventPveSimpleInventoryDTO
|
|
22396
|
+
}
|
|
22397
|
+
|
|
22398
|
+
export interface LolTftEventPveSummonerIcon {
|
|
22399
|
+
/** @format int32 */
|
|
22400
|
+
itemId: number
|
|
22401
|
+
}
|
|
22402
|
+
|
|
22403
|
+
export interface LolTftEventPveTFTEventBuddiesData {
|
|
22404
|
+
Buddies: LolTftEventPveTFTEventBuddyData[]
|
|
22405
|
+
}
|
|
22406
|
+
|
|
22407
|
+
export interface LolTftEventPveTFTEventBuddy {
|
|
22408
|
+
isPremium: boolean
|
|
22409
|
+
completedSummit: boolean
|
|
22410
|
+
completedPerfectRun: boolean
|
|
22411
|
+
/** @format uint8 */
|
|
22412
|
+
journeyTrackUnlockLevel: number
|
|
22413
|
+
/** @format uint32 */
|
|
22414
|
+
id: number
|
|
22415
|
+
contentId: string
|
|
22416
|
+
name: string
|
|
22417
|
+
description: string
|
|
22418
|
+
selectionVOKey: string
|
|
22419
|
+
shortDescription: string
|
|
22420
|
+
iconTexture: string
|
|
22421
|
+
portraitTexture: string
|
|
22422
|
+
hubTexture: string
|
|
22423
|
+
summitMissionId: string
|
|
22424
|
+
perfectRunMissionId: string
|
|
22425
|
+
equipState: LolTftEventPveTFTEventBuddyEquipState
|
|
22426
|
+
}
|
|
22427
|
+
|
|
22428
|
+
export interface LolTftEventPveTFTEventBuddyData {
|
|
22429
|
+
IsPremium: boolean
|
|
22430
|
+
/** @format uint8 */
|
|
22431
|
+
JourneyTrackUnlockLevel: number
|
|
22432
|
+
ContentId: string
|
|
22433
|
+
/** @format uint32 */
|
|
22434
|
+
ItemId: number
|
|
22435
|
+
Name: string
|
|
22436
|
+
Description: string
|
|
22437
|
+
SelectionVOKey: string
|
|
22438
|
+
ShortDescription: string
|
|
22439
|
+
IconTexturePath: string
|
|
22440
|
+
PortraitTexturePath: string
|
|
22441
|
+
HubTexturePath: string
|
|
22442
|
+
SummitMission: LolTftEventPveCAPMission
|
|
22443
|
+
PerfectMission: LolTftEventPveCAPMission
|
|
22444
|
+
}
|
|
22445
|
+
|
|
22446
|
+
export type LolTftEventPveTFTEventBuddyEquipState = "kEquipped" | "kUnlocked" | "kUnseenUnlocked" | "kLocked"
|
|
22447
|
+
|
|
22448
|
+
export interface LolTftEventPveTFTEventDifficultyData {
|
|
22449
|
+
/** @format uint8 */
|
|
22450
|
+
ItemId: number
|
|
22451
|
+
/** @format uint8 */
|
|
22452
|
+
DifficultyLevel: number
|
|
22453
|
+
Name: string
|
|
22454
|
+
Description: string
|
|
22455
|
+
IconTexture: string
|
|
22456
|
+
ContentId: string
|
|
22457
|
+
}
|
|
22458
|
+
|
|
22459
|
+
export interface LolTftEventPveTFTEventJourneyTrackCollectionData {
|
|
22460
|
+
Bonuses: LolTftEventPveTFTEventJourneyTrackXPData[]
|
|
22461
|
+
}
|
|
22462
|
+
|
|
22463
|
+
export interface LolTftEventPveTFTEventJourneyTrackXPData {
|
|
22464
|
+
Name: string
|
|
22465
|
+
}
|
|
22466
|
+
|
|
22467
|
+
export interface LolTftEventPveTFTEventPVEEoGMissionReward {
|
|
22468
|
+
name: string
|
|
22469
|
+
iconTexture: string
|
|
22470
|
+
type: string
|
|
22471
|
+
itemTypeId: string
|
|
22472
|
+
/** @format uint16 */
|
|
22473
|
+
quantity: number
|
|
22474
|
+
firstCompletionLevelMission: boolean
|
|
22475
|
+
}
|
|
22476
|
+
|
|
22477
|
+
export interface LolTftEventPveTFTEventPVEHub {
|
|
22478
|
+
levels: LolTftEventPveTFTEventPVELevel[]
|
|
22479
|
+
ultimateVictory: LolTftEventPveTFTEventPVEUltimateVictory
|
|
22480
|
+
}
|
|
22481
|
+
|
|
22482
|
+
export interface LolTftEventPveTFTEventPVEHubData {
|
|
22483
|
+
Levels: LolTftEventPveTFTEventPVELevelData[]
|
|
22484
|
+
}
|
|
22485
|
+
|
|
22486
|
+
export interface LolTftEventPveTFTEventPVEJourneyTrackBonuses {
|
|
22487
|
+
names: string[]
|
|
22488
|
+
}
|
|
22489
|
+
|
|
22490
|
+
export interface LolTftEventPveTFTEventPVELevel {
|
|
22491
|
+
status: LolTftEventPveEventPVELevelState
|
|
22492
|
+
isSelected: boolean
|
|
22493
|
+
/** @format uint8 */
|
|
22494
|
+
difficultyLevel: number
|
|
22495
|
+
/** @format uint8 */
|
|
22496
|
+
id: number
|
|
22497
|
+
contentId: string
|
|
22498
|
+
name: string
|
|
22499
|
+
recommended: string
|
|
22500
|
+
description: string
|
|
22501
|
+
descriptionUnlocked: string
|
|
22502
|
+
descriptionCleared: string
|
|
22503
|
+
missionId: string
|
|
22504
|
+
lockedPortrait: string
|
|
22505
|
+
unlockedPortrait: string
|
|
22506
|
+
clearedPortrait: string
|
|
22507
|
+
levelSymbol: string
|
|
22508
|
+
rewards: LolTftEventPveTFTEventPVEReward[]
|
|
22509
|
+
}
|
|
22510
|
+
|
|
22511
|
+
export interface LolTftEventPveTFTEventPVELevelData {
|
|
22512
|
+
Name: string
|
|
22513
|
+
Recommended: string
|
|
22514
|
+
Description: string
|
|
22515
|
+
DescriptionUnlocked: string
|
|
22516
|
+
DescriptionCleared: string
|
|
22517
|
+
LockedImagePath: string
|
|
22518
|
+
UnlockedImagePath: string
|
|
22519
|
+
ClearedImagePath: string
|
|
22520
|
+
SymbolImagePath: string
|
|
22521
|
+
Mission: LolTftEventPveCAPMission
|
|
22522
|
+
Difficulty: LolTftEventPveTFTEventDifficultyData
|
|
22523
|
+
}
|
|
22524
|
+
|
|
22525
|
+
export interface LolTftEventPveTFTEventPVELevelDetails {
|
|
22526
|
+
/** @format uint8 */
|
|
22527
|
+
mBossCost: number
|
|
22528
|
+
/** @format uint8 */
|
|
22529
|
+
mNumAffixes: number
|
|
22530
|
+
/** @format uint8 */
|
|
22531
|
+
mNumEnemyModifiers: number
|
|
22532
|
+
}
|
|
22533
|
+
|
|
22534
|
+
export interface LolTftEventPveTFTEventPVEReward {
|
|
22535
|
+
rewardName: string
|
|
22536
|
+
rewardImage: string
|
|
22537
|
+
/** @format uint32 */
|
|
22538
|
+
rewardQuantity: number
|
|
22539
|
+
}
|
|
22540
|
+
|
|
22541
|
+
export interface LolTftEventPveTFTEventPVEUltimateVictory {
|
|
22542
|
+
name: string
|
|
22543
|
+
description: string
|
|
22544
|
+
reward: LolTftEventPveTFTEventPVEReward
|
|
22545
|
+
achievedUltimateVictory: boolean
|
|
22546
|
+
seenCelebration: boolean
|
|
22547
|
+
}
|
|
22548
|
+
|
|
22549
|
+
export interface LolTftEventPveTftBattlepass {
|
|
22550
|
+
/** @format int32 */
|
|
22551
|
+
totalPointsEarned: number
|
|
22552
|
+
milestones: LolTftEventPveTftBattlepassMilestone[]
|
|
22553
|
+
bonuses: LolTftEventPveTftBattlepassMilestone[]
|
|
22554
|
+
activeMilestone: LolTftEventPveTftBattlepassMilestone
|
|
22555
|
+
info: LolTftEventPveTftBattlepassInfo
|
|
22556
|
+
/** @format int32 */
|
|
22557
|
+
lastViewedProgress: number
|
|
22558
|
+
lastViewedMilestone: LolTftEventPveTftBattlepassMilestone
|
|
22559
|
+
/** @format int32 */
|
|
22560
|
+
currentLevel: number
|
|
22561
|
+
}
|
|
22562
|
+
|
|
22563
|
+
export interface LolTftEventPveTftBattlepassInfo {
|
|
22564
|
+
title: string
|
|
22565
|
+
description: string
|
|
22566
|
+
/** @format uint64 */
|
|
22567
|
+
startDate: number
|
|
22568
|
+
/** @format uint64 */
|
|
22569
|
+
endDate: number
|
|
22570
|
+
premium: boolean
|
|
22571
|
+
premiumTitle: string
|
|
22572
|
+
premiumEntitlementId: string
|
|
22573
|
+
pcPurchaseRequirement: string
|
|
22574
|
+
passId: string
|
|
22575
|
+
hasLevelPurchasing: boolean
|
|
22576
|
+
media: Record<string, string>
|
|
22577
|
+
passType: LolTftEventPveTftPassType
|
|
22578
|
+
}
|
|
22579
|
+
|
|
22580
|
+
export interface LolTftEventPveTftBattlepassMilestone {
|
|
22581
|
+
milestoneId: string
|
|
22582
|
+
title: string
|
|
22583
|
+
description: string
|
|
22584
|
+
status: string
|
|
22585
|
+
/** @format int32 */
|
|
22586
|
+
pointsNeededForMilestone: number
|
|
22587
|
+
/** @format int32 */
|
|
22588
|
+
pointsEarnedForMilestone: number
|
|
22589
|
+
/** @format int32 */
|
|
22590
|
+
totalPointsForMilestone: number
|
|
22591
|
+
/** @format int32 */
|
|
22592
|
+
level: number
|
|
22593
|
+
iconImageUrl: string
|
|
22594
|
+
iconNeedsFrame: boolean
|
|
22595
|
+
rewards: LolTftEventPveTftBattlepassReward[]
|
|
22596
|
+
isPaid: boolean
|
|
22597
|
+
isLocked: boolean
|
|
22598
|
+
isKeystone: boolean
|
|
22599
|
+
isBonus: boolean
|
|
22600
|
+
isClaimRequestPending: boolean
|
|
22601
|
+
}
|
|
22602
|
+
|
|
22603
|
+
export interface LolTftEventPveTftBattlepassReward {
|
|
22604
|
+
name: string
|
|
22605
|
+
description: string
|
|
22606
|
+
itemId: string
|
|
22607
|
+
itemTypeId: string
|
|
22608
|
+
iconUrl: string
|
|
22609
|
+
iconNeedsFrame: boolean
|
|
22610
|
+
}
|
|
22611
|
+
|
|
22612
|
+
export type LolTftEventPveTftPassType = "kUnknown" | "kSkillTreePass" | "kDailyLoginPass" | "kEventPass" | "kBattlePass"
|
|
22613
|
+
|
|
22614
|
+
export interface LolTftEventPveUpdateLoadoutDTO {
|
|
22615
|
+
id: string
|
|
22616
|
+
name: string
|
|
22617
|
+
loadout: Record<string, LolTftEventPveItemKey>
|
|
22618
|
+
}
|
|
22619
|
+
|
|
22620
|
+
export interface LolTftEventPveUpdateLoadoutRequestDTO {
|
|
22621
|
+
serviceToJwtsMap: Record<string, unknown>
|
|
22622
|
+
loadout: LolTftEventPveUpdateLoadoutDTO
|
|
22623
|
+
}
|
|
22624
|
+
|
|
22625
|
+
export interface LolTftEventPveWallet {
|
|
22626
|
+
/** @format int64 */
|
|
22627
|
+
ip: number
|
|
22628
|
+
/** @format int64 */
|
|
22629
|
+
rp: number
|
|
22630
|
+
}
|
|
22631
|
+
|
|
22632
|
+
export interface LolTftEventPveWalletCacheEntry {
|
|
22633
|
+
signedBalancesJwt: string
|
|
22634
|
+
/** @format uint64 */
|
|
22635
|
+
expirationMS: number
|
|
22636
|
+
/** @format uint64 */
|
|
22637
|
+
issuedAtMS: number
|
|
22638
|
+
/** @format uint64 */
|
|
22639
|
+
receivedAtMS: number
|
|
22640
|
+
valid: boolean
|
|
22641
|
+
}
|
|
22642
|
+
|
|
22643
|
+
export interface LolTftEventPveWalletDTO {
|
|
22644
|
+
puuid: string
|
|
22645
|
+
/** @format int64 */
|
|
22646
|
+
accountId: number
|
|
22647
|
+
expires: string
|
|
22648
|
+
balances: Record<string, number>
|
|
22649
|
+
balancesJwt: string
|
|
22650
|
+
}
|
|
22651
|
+
|
|
22652
|
+
export interface LolTftEventPveWalletResponseDTO {
|
|
22653
|
+
data: LolTftEventPveWalletDTO
|
|
22654
|
+
}
|
|
22655
|
+
|
|
22656
|
+
export interface LolTftEventPveXboxSubscriptionStatus {
|
|
22657
|
+
active: string
|
|
22658
|
+
subscriptionId: string
|
|
22659
|
+
}
|
|
22660
|
+
|
|
22661
|
+
export interface LolTftEventQueue {
|
|
22662
|
+
/** @format int32 */
|
|
22663
|
+
id: number
|
|
22664
|
+
/** @format int32 */
|
|
22665
|
+
mapId: number
|
|
22666
|
+
gameMode: string
|
|
22667
|
+
category: LolTftEventQueueGameCategory
|
|
22668
|
+
}
|
|
22669
|
+
|
|
22670
|
+
export type LolTftEventQueueGameCategory = "Alpha" | "VersusAi" | "PvP" | "Custom" | "None"
|
|
22671
|
+
|
|
22672
|
+
export interface LolTftEventRewardGrant {
|
|
22673
|
+
info: LolTftEventRewardGrantInfo
|
|
22674
|
+
rewardGroup: LolTftEventRewardGroup
|
|
22675
|
+
}
|
|
22676
|
+
|
|
22677
|
+
export interface LolTftEventRewardGrantElement {
|
|
22678
|
+
id: string
|
|
22679
|
+
itemId: string
|
|
22680
|
+
itemType: string
|
|
22681
|
+
fulfillmentSource: string
|
|
22682
|
+
rewardStatus: LolTftEventRewardStatus
|
|
22683
|
+
/** @format int32 */
|
|
22684
|
+
quantity: number
|
|
22685
|
+
media: Record<string, string>
|
|
22686
|
+
localizations: Record<string, string>
|
|
22687
|
+
}
|
|
22688
|
+
|
|
22689
|
+
export interface LolTftEventRewardGrantInfo {
|
|
22690
|
+
id: string
|
|
22691
|
+
granteeId: string
|
|
22692
|
+
rewardGroupId: string
|
|
22693
|
+
status: LolTftEventGrantStatus
|
|
22694
|
+
grantElements: LolTftEventRewardGrantElement[]
|
|
22695
|
+
selectedIds: string[]
|
|
22696
|
+
viewed: boolean
|
|
22697
|
+
}
|
|
22698
|
+
|
|
22699
|
+
export interface LolTftEventRewardGroup {
|
|
22700
|
+
id: string
|
|
22701
|
+
internalName: string
|
|
22702
|
+
productId: string
|
|
22703
|
+
types: string[]
|
|
22704
|
+
rewards: LolTftEventSvcReward[]
|
|
22705
|
+
childRewardGroupIds: string[]
|
|
22706
|
+
rewardStrategy: LolTftEventRewardStrategy
|
|
22707
|
+
selectionStrategyConfig: LolTftEventSelectionStrategyConfig
|
|
22708
|
+
active: boolean
|
|
22709
|
+
media: Record<string, string>
|
|
22710
|
+
localizations: Record<string, string>
|
|
22711
|
+
}
|
|
22712
|
+
|
|
22713
|
+
export interface LolTftEventRewardGroupsSelection {
|
|
22714
|
+
rewardGroups: string[]
|
|
22715
|
+
}
|
|
22716
|
+
|
|
22717
|
+
export type LolTftEventRewardStatus = "FULFILLED" | "PENDING"
|
|
22718
|
+
|
|
22719
|
+
export type LolTftEventRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
22720
|
+
|
|
22721
|
+
export interface LolTftEventRewardsProductConfig {
|
|
22722
|
+
enabled: boolean
|
|
22723
|
+
serviceUrl: string
|
|
22724
|
+
}
|
|
22725
|
+
|
|
22726
|
+
export interface LolTftEventRiotMessagingServiceMessage {
|
|
22727
|
+
resource: string
|
|
22728
|
+
service: string
|
|
22729
|
+
version: string
|
|
22730
|
+
/** @format int64 */
|
|
22731
|
+
timestamp: number
|
|
22732
|
+
payload: string
|
|
22733
|
+
}
|
|
22734
|
+
|
|
22735
|
+
export interface LolTftEventRiotMessagingServicePayload {
|
|
22736
|
+
deltaEventId: string
|
|
22737
|
+
ownerId: string
|
|
22738
|
+
updatedMissions: string[]
|
|
22739
|
+
}
|
|
22740
|
+
|
|
22741
|
+
export interface LolTftEventSelectionStrategyConfig {
|
|
22742
|
+
/** @format uint32 */
|
|
22743
|
+
minSelectionsAllowed: number
|
|
22744
|
+
/** @format uint32 */
|
|
22745
|
+
maxSelectionsAllowed: number
|
|
22746
|
+
}
|
|
22747
|
+
|
|
22748
|
+
export interface LolTftEventSeriesOpt {
|
|
22749
|
+
seriesId: string
|
|
22750
|
+
option: string
|
|
22751
|
+
}
|
|
22752
|
+
|
|
22753
|
+
export interface LolTftEventSettingsResource {
|
|
22754
|
+
data: unknown
|
|
22755
|
+
}
|
|
22756
|
+
|
|
22757
|
+
export interface LolTftEventSvcReward {
|
|
22758
|
+
id: string
|
|
22759
|
+
itemId: string
|
|
22760
|
+
/** @format int32 */
|
|
22761
|
+
quantity: number
|
|
22762
|
+
fulfillmentSource: string
|
|
22763
|
+
media: Record<string, string>
|
|
22764
|
+
localizations: Record<string, string>
|
|
22765
|
+
}
|
|
22766
|
+
|
|
22767
|
+
export interface LolTftEventTFTEventMissionChain {
|
|
22768
|
+
/** @format int32 */
|
|
22769
|
+
chainIndex: number
|
|
22770
|
+
/** @format uint32 */
|
|
22771
|
+
chainSize: number
|
|
22772
|
+
missions: PlayerMissionDTO[]
|
|
22773
|
+
}
|
|
22774
|
+
|
|
22775
|
+
export interface LolTftEventTFTEventMissionChains {
|
|
22776
|
+
missionChains: LolTftEventTFTEventMissionChain[]
|
|
22777
|
+
seriesId: string
|
|
22778
|
+
}
|
|
22779
|
+
|
|
22780
|
+
export interface LolTftEventTFTRotatingShopPromo {
|
|
22781
|
+
id: string
|
|
22782
|
+
bundleId: string
|
|
22783
|
+
storeType: string
|
|
22784
|
+
isDeepLink: boolean
|
|
22785
|
+
}
|
|
22786
|
+
|
|
22787
|
+
export interface LolTftEventTFTRotatingShopPromos {
|
|
22788
|
+
firstPromos: LolTftEventTFTRotatingShopPromo[]
|
|
22789
|
+
secondPromos: LolTftEventTFTRotatingShopPromo[]
|
|
22790
|
+
fallbackPromo: LolTftEventTFTRotatingShopPromo
|
|
22791
|
+
}
|
|
22792
|
+
|
|
22793
|
+
export interface LolTftEventTftOrb {
|
|
22794
|
+
missionId: string
|
|
22795
|
+
status: string
|
|
22796
|
+
/** @format int64 */
|
|
22797
|
+
unlockTime: number
|
|
22798
|
+
/** @format uint8 */
|
|
22799
|
+
rewardLevel: number
|
|
22800
|
+
rewards: PlayerMissionRewardDTO[]
|
|
21750
22801
|
}
|
|
21751
22802
|
|
|
21752
22803
|
export interface LolTftEventTftWeeklyMissions {
|
|
@@ -21862,6 +22913,26 @@ export interface LolTftPassActiveEventUIData {
|
|
|
21862
22913
|
eventInfo: LolTftPassEventInfoUIData
|
|
21863
22914
|
}
|
|
21864
22915
|
|
|
22916
|
+
export interface LolTftPassActivityCenterMilestones {
|
|
22917
|
+
eventId: string
|
|
22918
|
+
eventHubType: string
|
|
22919
|
+
localizedName: string
|
|
22920
|
+
navbarIconImage: string
|
|
22921
|
+
startDate: string
|
|
22922
|
+
progressEndDate: string
|
|
22923
|
+
endDate: string
|
|
22924
|
+
isGameModeEvent: boolean
|
|
22925
|
+
/** @format uint32 */
|
|
22926
|
+
queueId: number
|
|
22927
|
+
localizedLogo: string
|
|
22928
|
+
backgroundImage: string
|
|
22929
|
+
helpModalImage: string
|
|
22930
|
+
objectiveBannerImage: string
|
|
22931
|
+
objectiveCard: LolTftPassObjectiveCard
|
|
22932
|
+
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22933
|
+
rewardTrack: LolTftPassRewardTrack
|
|
22934
|
+
}
|
|
22935
|
+
|
|
21865
22936
|
export interface LolTftPassBundleOfferUIData {
|
|
21866
22937
|
details: LolTftPassBundledItemUIData
|
|
21867
22938
|
/** @format int64 */
|
|
@@ -21912,8 +22983,6 @@ export interface LolTftPassChapter {
|
|
|
21912
22983
|
localizedDescription: string
|
|
21913
22984
|
cardImage: string
|
|
21914
22985
|
backgroundImage: string
|
|
21915
|
-
backgroundVideo: string
|
|
21916
|
-
foregroundImage: string
|
|
21917
22986
|
objectiveBannerImage: string
|
|
21918
22987
|
/** @format uint16 */
|
|
21919
22988
|
chapterStart: number
|
|
@@ -21998,9 +23067,11 @@ export interface LolTftPassEventDetailsUIData {
|
|
|
21998
23067
|
promotionBannerImage: string
|
|
21999
23068
|
objectiveBannerImage: string
|
|
22000
23069
|
memoryBookBackgroundImage: string
|
|
23070
|
+
/** @format uint32 */
|
|
23071
|
+
spotlightSkinId: number
|
|
22001
23072
|
}
|
|
22002
23073
|
|
|
22003
|
-
export type LolTftPassEventHubType = "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
23074
|
+
export type LolTftPassEventHubType = "ActivityCenterMilestones" | "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
22004
23075
|
|
|
22005
23076
|
export interface LolTftPassEventInfoUIData {
|
|
22006
23077
|
eventId: string
|
|
@@ -22009,10 +23080,13 @@ export interface LolTftPassEventInfoUIData {
|
|
|
22009
23080
|
eventIcon: string
|
|
22010
23081
|
navBarIcon: string
|
|
22011
23082
|
battleExpIcon: string
|
|
23083
|
+
localizedShortName: string
|
|
22012
23084
|
eventTokenImage: string
|
|
22013
23085
|
startDate: string
|
|
22014
23086
|
progressEndDate: string
|
|
22015
23087
|
endDate: string
|
|
23088
|
+
localizedLogo: string
|
|
23089
|
+
objectiveCard: LolTftPassObjectiveCard
|
|
22016
23090
|
/** @format int32 */
|
|
22017
23091
|
currentTokenBalance: number
|
|
22018
23092
|
/** @format int32 */
|
|
@@ -22022,6 +23096,9 @@ export interface LolTftPassEventInfoUIData {
|
|
|
22022
23096
|
/** @format int64 */
|
|
22023
23097
|
timeOfLastUnclaimedReward: number
|
|
22024
23098
|
isPassPurchased: boolean
|
|
23099
|
+
isGameModeEvent: boolean
|
|
23100
|
+
/** @format int32 */
|
|
23101
|
+
queueId: number
|
|
22025
23102
|
eventPassBundles: LolTftPassCatalogEntry[]
|
|
22026
23103
|
tokenBundles: LolTftPassCatalogEntry[]
|
|
22027
23104
|
}
|
|
@@ -22037,7 +23114,6 @@ export interface LolTftPassEventShop {
|
|
|
22037
23114
|
localizedName: string
|
|
22038
23115
|
backgroundImage: string
|
|
22039
23116
|
navbarIconImage: string
|
|
22040
|
-
battleExpIconImage: string
|
|
22041
23117
|
headerIconImage: string
|
|
22042
23118
|
startDate: string
|
|
22043
23119
|
progressEndDate: string
|
|
@@ -22118,6 +23194,7 @@ export interface LolTftPassHallOfLegends {
|
|
|
22118
23194
|
endDate: string
|
|
22119
23195
|
helpModalImage: string
|
|
22120
23196
|
inducteeName: string
|
|
23197
|
+
spotlightSkin: LolTftPassSpotlightSkin
|
|
22121
23198
|
promotionBannerImage: string
|
|
22122
23199
|
objectiveBannerImage: string
|
|
22123
23200
|
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
@@ -22375,6 +23452,12 @@ export interface LolTftPassNextRewardUIData {
|
|
|
22375
23452
|
level: string
|
|
22376
23453
|
}
|
|
22377
23454
|
|
|
23455
|
+
export interface LolTftPassObjectiveCard {
|
|
23456
|
+
missionSeriesName: string
|
|
23457
|
+
objectiveGroup: string
|
|
23458
|
+
objectiveCategoryId: string
|
|
23459
|
+
}
|
|
23460
|
+
|
|
22378
23461
|
export interface LolTftPassObjectivesBanner {
|
|
22379
23462
|
eventName: string
|
|
22380
23463
|
promotionBannerImage: string
|
|
@@ -22590,6 +23673,7 @@ export interface LolTftPassRewardTrackItemOption {
|
|
|
22590
23673
|
cardSize: string
|
|
22591
23674
|
rewardGroupId: string
|
|
22592
23675
|
celebrationType: LolTftPassCelebrationType
|
|
23676
|
+
rewardInventoryTypes: string[]
|
|
22593
23677
|
}
|
|
22594
23678
|
|
|
22595
23679
|
export type LolTftPassRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
|
|
@@ -22713,7 +23797,6 @@ export interface LolTftPassSeasonPass {
|
|
|
22713
23797
|
eventHubType: string
|
|
22714
23798
|
localizedName: string
|
|
22715
23799
|
navbarIconImage: string
|
|
22716
|
-
headerIconImage: string
|
|
22717
23800
|
battleExpIconImage: string
|
|
22718
23801
|
headerTitleImage: string
|
|
22719
23802
|
startDate: string
|
|
@@ -22730,6 +23813,8 @@ export interface LolTftPassSeasonPass {
|
|
|
22730
23813
|
upsellBackgroundImageUrl: string
|
|
22731
23814
|
upsellTooltipBackgroundImageUrl: string
|
|
22732
23815
|
objectiveBannerImage: string
|
|
23816
|
+
localizedSeasonLogo: string
|
|
23817
|
+
localizedShortName: string
|
|
22733
23818
|
chapters: LolTftPassChapter[]
|
|
22734
23819
|
}
|
|
22735
23820
|
|
|
@@ -22758,6 +23843,11 @@ export interface LolTftPassSimpleInventoryResponseDTO {
|
|
|
22758
23843
|
data: LolTftPassSimpleInventoryDTO
|
|
22759
23844
|
}
|
|
22760
23845
|
|
|
23846
|
+
export interface LolTftPassSpotlightSkin {
|
|
23847
|
+
/** @format uint32 */
|
|
23848
|
+
championSkinID: number
|
|
23849
|
+
}
|
|
23850
|
+
|
|
22761
23851
|
export interface LolTftPassSummonerIcon {
|
|
22762
23852
|
/** @format int32 */
|
|
22763
23853
|
itemId: number
|
|
@@ -22836,6 +23926,7 @@ export interface LolTftPassTFTPassDTO {
|
|
|
22836
23926
|
premiumEntitlementID: string
|
|
22837
23927
|
storePurchaseIDs: Record<string, string>
|
|
22838
23928
|
milestones: LolTftPassTFTPassMilestoneDTO[]
|
|
23929
|
+
hasLevelPurchasing: boolean
|
|
22839
23930
|
status: string
|
|
22840
23931
|
}
|
|
22841
23932
|
|
|
@@ -22900,6 +23991,7 @@ export interface LolTftPassTftBattlepassInfo {
|
|
|
22900
23991
|
premiumEntitlementId: string
|
|
22901
23992
|
pcPurchaseRequirement: string
|
|
22902
23993
|
passId: string
|
|
23994
|
+
hasLevelPurchasing: boolean
|
|
22903
23995
|
media: Record<string, string>
|
|
22904
23996
|
passType: LolTftPassTftPassType
|
|
22905
23997
|
}
|
|
@@ -23273,6 +24365,7 @@ export interface LolTftSkillTreeTftBattlepassInfo {
|
|
|
23273
24365
|
premiumEntitlementId: string
|
|
23274
24366
|
pcPurchaseRequirement: string
|
|
23275
24367
|
passId: string
|
|
24368
|
+
hasLevelPurchasing: boolean
|
|
23276
24369
|
media: Record<string, string>
|
|
23277
24370
|
passType: LolTftSkillTreeTftPassType
|
|
23278
24371
|
}
|
|
@@ -23516,8 +24609,61 @@ export interface LolTftTrovesCapOrdersRequestMetaDTO {
|
|
|
23516
24609
|
xid: string
|
|
23517
24610
|
}
|
|
23518
24611
|
|
|
23519
|
-
export interface LolTftTrovesCapOrdersResponseDTO {
|
|
23520
|
-
data: unknown
|
|
24612
|
+
export interface LolTftTrovesCapOrdersResponseDTO {
|
|
24613
|
+
data: unknown
|
|
24614
|
+
}
|
|
24615
|
+
|
|
24616
|
+
export interface LolTftTrovesCatalogEntryDto {
|
|
24617
|
+
id: string
|
|
24618
|
+
productId: string
|
|
24619
|
+
name: string
|
|
24620
|
+
description: string
|
|
24621
|
+
endTime: string
|
|
24622
|
+
purchaseUnits: LolTftTrovesPurchaseUnitDto[]
|
|
24623
|
+
displayMetadata: unknown
|
|
24624
|
+
refundRule: string
|
|
24625
|
+
giftRule: string
|
|
24626
|
+
prerequisites: LolTftTrovesPrerequisiteDto[]
|
|
24627
|
+
purchaseLimits: LolTftTrovesVelocityLimitDeltaDto[]
|
|
24628
|
+
}
|
|
24629
|
+
|
|
24630
|
+
export interface LolTftTrovesChemtechShoppeDropTableOddsTreeDto {
|
|
24631
|
+
nodeHierarchy: Record<string, LolTftTrovesChemtechShoppeDropTableOddsTreeHierarchyDto>
|
|
24632
|
+
nodes: Record<string, LolTftTrovesChemtechShoppeDropTableOddsTreeNodeDto>
|
|
24633
|
+
nodeTraKeys: Record<string, LolTftTrovesChemtechShoppeDropTableOddsTreeNodeTraKeyDto>
|
|
24634
|
+
rootNodeId: string
|
|
24635
|
+
templateName: string
|
|
24636
|
+
}
|
|
24637
|
+
|
|
24638
|
+
export interface LolTftTrovesChemtechShoppeDropTableOddsTreeHierarchyDto {
|
|
24639
|
+
childNodeIds: string[]
|
|
24640
|
+
}
|
|
24641
|
+
|
|
24642
|
+
export interface LolTftTrovesChemtechShoppeDropTableOddsTreeNodeDto {
|
|
24643
|
+
id: string
|
|
24644
|
+
name: string
|
|
24645
|
+
/** @format double */
|
|
24646
|
+
odds: number
|
|
24647
|
+
/** @format uint32 */
|
|
24648
|
+
displayPriority: number
|
|
24649
|
+
sourceId: string
|
|
24650
|
+
/** @format uint32 */
|
|
24651
|
+
rewardQuantity: number
|
|
24652
|
+
}
|
|
24653
|
+
|
|
24654
|
+
export interface LolTftTrovesChemtechShoppeDropTableOddsTreeNodeTraKeyDto {
|
|
24655
|
+
nameTraKey: string
|
|
24656
|
+
}
|
|
24657
|
+
|
|
24658
|
+
export interface LolTftTrovesChemtechShoppeDropTableOddsTreeResultDto {
|
|
24659
|
+
data: LolTftTrovesChemtechShoppeDropTableOddsTreeDto
|
|
24660
|
+
}
|
|
24661
|
+
|
|
24662
|
+
export interface LolTftTrovesCompanionData {
|
|
24663
|
+
name: string
|
|
24664
|
+
contentId: string
|
|
24665
|
+
speciesName: string
|
|
24666
|
+
companionType: string
|
|
23521
24667
|
}
|
|
23522
24668
|
|
|
23523
24669
|
export interface LolTftTrovesCounter {
|
|
@@ -23588,6 +24734,25 @@ export interface LolTftTrovesDropsOddsTreeNodeDTO {
|
|
|
23588
24734
|
priority: number
|
|
23589
24735
|
}
|
|
23590
24736
|
|
|
24737
|
+
export interface LolTftTrovesEntitlementDto {
|
|
24738
|
+
id: string
|
|
24739
|
+
label: string
|
|
24740
|
+
typeId: string
|
|
24741
|
+
productId: string
|
|
24742
|
+
active: boolean
|
|
24743
|
+
createdDate: string
|
|
24744
|
+
lastModifiedDate: string
|
|
24745
|
+
firstUsedDate: string
|
|
24746
|
+
recipient: unknown
|
|
24747
|
+
ownerId: string
|
|
24748
|
+
item: LolTftTrovesEntitlementItemDto
|
|
24749
|
+
}
|
|
24750
|
+
|
|
24751
|
+
export interface LolTftTrovesEntitlementItemDto {
|
|
24752
|
+
id: string
|
|
24753
|
+
typeId: string
|
|
24754
|
+
}
|
|
24755
|
+
|
|
23591
24756
|
export interface LolTftTrovesEntitlementNotificationResource {
|
|
23592
24757
|
itemId: string
|
|
23593
24758
|
itemTypeId: string
|
|
@@ -23595,12 +24760,45 @@ export interface LolTftTrovesEntitlementNotificationResource {
|
|
|
23595
24760
|
resourceOperation: string
|
|
23596
24761
|
}
|
|
23597
24762
|
|
|
24763
|
+
export interface LolTftTrovesEntitlementsResponse {
|
|
24764
|
+
data: LolTftTrovesEntitlementDto[]
|
|
24765
|
+
}
|
|
24766
|
+
|
|
23598
24767
|
export interface LolTftTrovesEntityInstance {
|
|
23599
24768
|
groupId: string
|
|
23600
24769
|
counters: LolTftTrovesCounterInstance[]
|
|
23601
24770
|
milestones: LolTftTrovesMilestoneInstance[]
|
|
23602
24771
|
}
|
|
23603
24772
|
|
|
24773
|
+
export interface LolTftTrovesFinalPurchaseUnitDto {
|
|
24774
|
+
payments: LolTftTrovesPaymentDto[]
|
|
24775
|
+
fulfillment: LolTftTrovesFulfillmentDto
|
|
24776
|
+
}
|
|
24777
|
+
|
|
24778
|
+
export interface LolTftTrovesFulfillmentDto {
|
|
24779
|
+
/** @format int64 */
|
|
24780
|
+
delta: number
|
|
24781
|
+
/** @format int64 */
|
|
24782
|
+
finalDelta: number
|
|
24783
|
+
name: string
|
|
24784
|
+
/** @format int64 */
|
|
24785
|
+
maxQuantity: number
|
|
24786
|
+
/** @format uint64 */
|
|
24787
|
+
ownedQuantity: number
|
|
24788
|
+
ownershipCompensationMode: string
|
|
24789
|
+
itemTypeId: string
|
|
24790
|
+
itemId: string
|
|
24791
|
+
currencyId: string
|
|
24792
|
+
subCurrencyDeltas: Record<string, number>
|
|
24793
|
+
progressionCounterId: string
|
|
24794
|
+
dropTableId: string
|
|
24795
|
+
}
|
|
24796
|
+
|
|
24797
|
+
export interface LolTftTrovesGameDataCompanion {
|
|
24798
|
+
contentId: string
|
|
24799
|
+
companionType: string
|
|
24800
|
+
}
|
|
24801
|
+
|
|
23604
24802
|
export interface LolTftTrovesGameDataTFTContent {
|
|
23605
24803
|
name: string
|
|
23606
24804
|
nameTraKey: string
|
|
@@ -23742,6 +24940,39 @@ export interface LolTftTrovesOrderNotificationResource {
|
|
|
23742
24940
|
status: string
|
|
23743
24941
|
}
|
|
23744
24942
|
|
|
24943
|
+
export interface LolTftTrovesPagination {
|
|
24944
|
+
/** @format uint32 */
|
|
24945
|
+
offset: number
|
|
24946
|
+
/** @format uint32 */
|
|
24947
|
+
limit: number
|
|
24948
|
+
/** @format uint32 */
|
|
24949
|
+
maxLimit: number
|
|
24950
|
+
/** @format uint32 */
|
|
24951
|
+
total: number
|
|
24952
|
+
previous: string
|
|
24953
|
+
next: string
|
|
24954
|
+
}
|
|
24955
|
+
|
|
24956
|
+
export interface LolTftTrovesPaymentDto {
|
|
24957
|
+
/** @format int64 */
|
|
24958
|
+
delta: number
|
|
24959
|
+
/** @format int64 */
|
|
24960
|
+
finalDelta: number
|
|
24961
|
+
name: string
|
|
24962
|
+
/** @format int64 */
|
|
24963
|
+
discountedDelta: number
|
|
24964
|
+
/** @format double */
|
|
24965
|
+
discountPercent: number
|
|
24966
|
+
itemTypeId: string
|
|
24967
|
+
itemId: string
|
|
24968
|
+
currencyId: string
|
|
24969
|
+
}
|
|
24970
|
+
|
|
24971
|
+
export interface LolTftTrovesPaymentOptionDto {
|
|
24972
|
+
key: string
|
|
24973
|
+
payments: LolTftTrovesPaymentDto[]
|
|
24974
|
+
}
|
|
24975
|
+
|
|
23745
24976
|
export interface LolTftTrovesPityCounterDTO {
|
|
23746
24977
|
dropTableId: string
|
|
23747
24978
|
/** @format uint8 */
|
|
@@ -23754,6 +24985,125 @@ export interface LolTftTrovesPlayerLoot {
|
|
|
23754
24985
|
itemDesc: string
|
|
23755
24986
|
}
|
|
23756
24987
|
|
|
24988
|
+
export interface LolTftTrovesPrerequisiteDto {
|
|
24989
|
+
status: string
|
|
24990
|
+
itemTypeId: string
|
|
24991
|
+
itemId: string
|
|
24992
|
+
/** @format uint16 */
|
|
24993
|
+
requiredQuantity: number
|
|
24994
|
+
}
|
|
24995
|
+
|
|
24996
|
+
export interface LolTftTrovesPurchaseDto {
|
|
24997
|
+
id: string
|
|
24998
|
+
productId: string
|
|
24999
|
+
storeId: string
|
|
25000
|
+
storeName: string
|
|
25001
|
+
catalogEntryId: string
|
|
25002
|
+
catalogEntryName: string
|
|
25003
|
+
purchaserId: string
|
|
25004
|
+
recipientId: string
|
|
25005
|
+
purchaseUnits: LolTftTrovesFinalPurchaseUnitDto[]
|
|
25006
|
+
createdTime: string
|
|
25007
|
+
completedTime: string
|
|
25008
|
+
purchaseState: string
|
|
25009
|
+
purchaseVisibility: string
|
|
25010
|
+
refund: LolTftTrovesRefundDto
|
|
25011
|
+
refundRule: string
|
|
25012
|
+
refundable: boolean
|
|
25013
|
+
/** @format int64 */
|
|
25014
|
+
quantity: number
|
|
25015
|
+
source: string
|
|
25016
|
+
}
|
|
25017
|
+
|
|
25018
|
+
export interface LolTftTrovesPurchaseErrorMessageDto {
|
|
25019
|
+
/** @format int32 */
|
|
25020
|
+
httpStatus: number
|
|
25021
|
+
errorCode: string
|
|
25022
|
+
message: string
|
|
25023
|
+
}
|
|
25024
|
+
|
|
25025
|
+
export interface LolTftTrovesPurchaseHistoryResponse {
|
|
25026
|
+
data: LolTftTrovesPurchaseDto[]
|
|
25027
|
+
paging: LolTftTrovesPagination
|
|
25028
|
+
stats: LolTftTrovesResponseStats
|
|
25029
|
+
notes: string[]
|
|
25030
|
+
errors: LolTftTrovesResponseError[]
|
|
25031
|
+
}
|
|
25032
|
+
|
|
25033
|
+
export interface LolTftTrovesPurchaseRequest {
|
|
25034
|
+
storeId: string
|
|
25035
|
+
catalogEntryId: string
|
|
25036
|
+
paymentOptionsKeys: string[]
|
|
25037
|
+
/** @format uint32 */
|
|
25038
|
+
quantity: number
|
|
25039
|
+
}
|
|
25040
|
+
|
|
25041
|
+
export interface LolTftTrovesPurchaseRequestDto {
|
|
25042
|
+
storeId: string
|
|
25043
|
+
catalogEntryId: string
|
|
25044
|
+
paymentOptionsKeys: string[]
|
|
25045
|
+
idempotencyId: string
|
|
25046
|
+
source: string
|
|
25047
|
+
/** @format uint32 */
|
|
25048
|
+
quantity: number
|
|
25049
|
+
}
|
|
25050
|
+
|
|
25051
|
+
export interface LolTftTrovesPurchaseResponse {
|
|
25052
|
+
data: LolTftTrovesPurchaseDto
|
|
25053
|
+
paging: LolTftTrovesPagination
|
|
25054
|
+
stats: LolTftTrovesResponseStats
|
|
25055
|
+
notes: string[]
|
|
25056
|
+
errors: LolTftTrovesResponseError[]
|
|
25057
|
+
}
|
|
25058
|
+
|
|
25059
|
+
export interface LolTftTrovesPurchaseTransaction {
|
|
25060
|
+
purchaseId: string
|
|
25061
|
+
productId: string
|
|
25062
|
+
storeId: string
|
|
25063
|
+
catalogEntryId: string
|
|
25064
|
+
purchaseState: string
|
|
25065
|
+
refundId: string
|
|
25066
|
+
refundState: string
|
|
25067
|
+
}
|
|
25068
|
+
|
|
25069
|
+
export interface LolTftTrovesPurchaseUnitDto {
|
|
25070
|
+
paymentOptions: LolTftTrovesPaymentOptionDto[]
|
|
25071
|
+
payment: LolTftTrovesPaymentDto[]
|
|
25072
|
+
fulfillment: LolTftTrovesFulfillmentDto
|
|
25073
|
+
}
|
|
25074
|
+
|
|
25075
|
+
export interface LolTftTrovesRefundDto {
|
|
25076
|
+
id: string
|
|
25077
|
+
purchaseId: string
|
|
25078
|
+
createdTime: string
|
|
25079
|
+
completedTime: string
|
|
25080
|
+
state: string
|
|
25081
|
+
source: string
|
|
25082
|
+
}
|
|
25083
|
+
|
|
25084
|
+
export interface LolTftTrovesRefundRequest {
|
|
25085
|
+
purchaseId: string
|
|
25086
|
+
}
|
|
25087
|
+
|
|
25088
|
+
export interface LolTftTrovesRefundRequestDto {
|
|
25089
|
+
purchaseId: string
|
|
25090
|
+
source: string
|
|
25091
|
+
}
|
|
25092
|
+
|
|
25093
|
+
export interface LolTftTrovesRefundResponse {
|
|
25094
|
+
data: LolTftTrovesRefundDto
|
|
25095
|
+
paging: LolTftTrovesPagination
|
|
25096
|
+
stats: LolTftTrovesResponseStats
|
|
25097
|
+
notes: string[]
|
|
25098
|
+
errors: LolTftTrovesResponseError[]
|
|
25099
|
+
}
|
|
25100
|
+
|
|
25101
|
+
export interface LolTftTrovesRegionLocale {
|
|
25102
|
+
region: string
|
|
25103
|
+
locale: string
|
|
25104
|
+
webRegion: string
|
|
25105
|
+
}
|
|
25106
|
+
|
|
23757
25107
|
export interface LolTftTrovesRepeat {
|
|
23758
25108
|
/** @format int32 */
|
|
23759
25109
|
count: number
|
|
@@ -23776,6 +25126,18 @@ export interface LolTftTrovesRepeatGroupTrigger {
|
|
|
23776
25126
|
multiplier: number
|
|
23777
25127
|
}
|
|
23778
25128
|
|
|
25129
|
+
export interface LolTftTrovesResponseError {
|
|
25130
|
+
message: string
|
|
25131
|
+
type: string
|
|
25132
|
+
/** @format uint32 */
|
|
25133
|
+
code: number
|
|
25134
|
+
}
|
|
25135
|
+
|
|
25136
|
+
export interface LolTftTrovesResponseStats {
|
|
25137
|
+
/** @format uint32 */
|
|
25138
|
+
durationMs: number
|
|
25139
|
+
}
|
|
25140
|
+
|
|
23779
25141
|
export interface LolTftTrovesRewardsNotificationResource {
|
|
23780
25142
|
purchaserId: string
|
|
23781
25143
|
recipientId: string
|
|
@@ -23794,6 +25156,75 @@ export interface LolTftTrovesRiotMessagingServiceMessage {
|
|
|
23794
25156
|
payload: string
|
|
23795
25157
|
}
|
|
23796
25158
|
|
|
25159
|
+
export interface LolTftTrovesRotationalShopBundleData {
|
|
25160
|
+
asset: string
|
|
25161
|
+
description: string
|
|
25162
|
+
descriptionKey: string
|
|
25163
|
+
title: string
|
|
25164
|
+
titleKey: string
|
|
25165
|
+
}
|
|
25166
|
+
|
|
25167
|
+
export interface LolTftTrovesRotationalShopBundleListData {
|
|
25168
|
+
items: LolTftTrovesRotationalShopBundleData[]
|
|
25169
|
+
}
|
|
25170
|
+
|
|
25171
|
+
export interface LolTftTrovesRotationalShopItemData {
|
|
25172
|
+
backgroundTextureLCU: string
|
|
25173
|
+
contentID: string
|
|
25174
|
+
descriptionTraKey: string
|
|
25175
|
+
description: string
|
|
25176
|
+
name: string
|
|
25177
|
+
standaloneLoadoutsLargeIcon: string
|
|
25178
|
+
videoID: string
|
|
25179
|
+
redeemIconTexture: string
|
|
25180
|
+
rarity: string
|
|
25181
|
+
typeID: string
|
|
25182
|
+
speciesLink: string
|
|
25183
|
+
}
|
|
25184
|
+
|
|
25185
|
+
export interface LolTftTrovesStoreDto {
|
|
25186
|
+
id: string
|
|
25187
|
+
productId: string
|
|
25188
|
+
name: string
|
|
25189
|
+
catalogEntries: LolTftTrovesCatalogEntryDto[]
|
|
25190
|
+
displayMetadata: unknown
|
|
25191
|
+
}
|
|
25192
|
+
|
|
25193
|
+
export interface LolTftTrovesStoresResponse {
|
|
25194
|
+
data: LolTftTrovesStoreDto[]
|
|
25195
|
+
paging: LolTftTrovesPagination
|
|
25196
|
+
stats: LolTftTrovesResponseStats
|
|
25197
|
+
notes: string[]
|
|
25198
|
+
errors: LolTftTrovesResponseError[]
|
|
25199
|
+
}
|
|
25200
|
+
|
|
25201
|
+
export interface LolTftTrovesTFTRotationalShopConfig {
|
|
25202
|
+
enabled: boolean
|
|
25203
|
+
contentPreviewConfig: unknown
|
|
25204
|
+
uiToggleEnabled: boolean
|
|
25205
|
+
navs: LolTftTrovesTFTRotationalShopNavConfig[]
|
|
25206
|
+
refund: LolTftTrovesTFTRotationalShopRefundConfig
|
|
25207
|
+
littleLegendsUpgradeEnabled: boolean
|
|
25208
|
+
}
|
|
25209
|
+
|
|
25210
|
+
export interface LolTftTrovesTFTRotationalShopNavConfig {
|
|
25211
|
+
name: string
|
|
25212
|
+
enabled: boolean
|
|
25213
|
+
supportedCurrencies: string[]
|
|
25214
|
+
}
|
|
25215
|
+
|
|
25216
|
+
export interface LolTftTrovesTFTRotationalShopRefundConfig {
|
|
25217
|
+
enabled: boolean
|
|
25218
|
+
allowedTypes: string[]
|
|
25219
|
+
/** @format uint8 */
|
|
25220
|
+
thresholdDays: number
|
|
25221
|
+
}
|
|
25222
|
+
|
|
25223
|
+
export interface LolTftTrovesTraKeyName {
|
|
25224
|
+
nameTraKey: string
|
|
25225
|
+
translatedName: string
|
|
25226
|
+
}
|
|
25227
|
+
|
|
23797
25228
|
export interface LolTftTrovesTrigger {
|
|
23798
25229
|
type: string
|
|
23799
25230
|
counterId: string
|
|
@@ -23811,6 +25242,7 @@ export interface LolTftTrovesTrovePurchaseResponse {
|
|
|
23811
25242
|
|
|
23812
25243
|
export interface LolTftTrovesTroves {
|
|
23813
25244
|
enabled: boolean
|
|
25245
|
+
capCatalogEnabled: boolean
|
|
23814
25246
|
bannerList?: LolTftTrovesTrovesActiveBanner[]
|
|
23815
25247
|
}
|
|
23816
25248
|
|
|
@@ -24043,6 +25475,20 @@ export interface LolTftTrovesTrovesTable {
|
|
|
24043
25475
|
translatedName: string
|
|
24044
25476
|
}
|
|
24045
25477
|
|
|
25478
|
+
export interface LolTftTrovesVelocityLimitDeltaDto {
|
|
25479
|
+
ruleId: string
|
|
25480
|
+
/** @format int64 */
|
|
25481
|
+
delta: number
|
|
25482
|
+
/** @format int64 */
|
|
25483
|
+
remaining: number
|
|
25484
|
+
}
|
|
25485
|
+
|
|
25486
|
+
export interface LolTftTrovesVelocityLimiterDto {
|
|
25487
|
+
/** @format int64 */
|
|
25488
|
+
availableTokens: number
|
|
25489
|
+
refill: string
|
|
25490
|
+
}
|
|
25491
|
+
|
|
24046
25492
|
export interface LolTftTrovesVerboseLootOddsResponse {
|
|
24047
25493
|
recipeName: string
|
|
24048
25494
|
chanceToContain: LolTftTrovesLootOddsResponse[]
|
|
@@ -25404,6 +26850,7 @@ export interface PlayerMissionRewardDTO {
|
|
|
25404
26850
|
iconUrl: string
|
|
25405
26851
|
smallIconUrl: string
|
|
25406
26852
|
itemId: string
|
|
26853
|
+
itemTypeId: string
|
|
25407
26854
|
uniqueName: string
|
|
25408
26855
|
rewardFulfilled: boolean
|
|
25409
26856
|
rewardGroupSelected: boolean
|
|
@@ -26330,6 +27777,8 @@ export interface TeamBuilderDirect_ChampSelectSession {
|
|
|
26330
27777
|
allowSkinSelection: boolean
|
|
26331
27778
|
allowSubsetChampionPicks: boolean
|
|
26332
27779
|
allowDuplicatePicks: boolean
|
|
27780
|
+
allowPlayerPickSameChampion: boolean
|
|
27781
|
+
disallowBanningTeammateHoveredChampions: boolean
|
|
26333
27782
|
allowBattleBoost: boolean
|
|
26334
27783
|
/** @format int32 */
|
|
26335
27784
|
boostableSkinCount: number
|
|
@@ -26470,6 +27919,8 @@ export interface TeamBuilderDirect_ChampionSelectState {
|
|
|
26470
27919
|
allowOptingOutOfBanning: boolean
|
|
26471
27920
|
allowSkinSelection: boolean
|
|
26472
27921
|
allowDuplicatePicks: boolean
|
|
27922
|
+
allowPlayerPickSameChampion: boolean
|
|
27923
|
+
disallowBanningTeammateHoveredChampions: boolean
|
|
26473
27924
|
allowSubsetChampionPicks: boolean
|
|
26474
27925
|
rerollState: TeamBuilderDirect_RerollState
|
|
26475
27926
|
lockedEventsState: TeamBuilderDirect_LockedEventsState
|
|
@@ -26859,17 +28310,6 @@ export interface TeamBuilderDirect_MutedPlayerInfo {
|
|
|
26859
28310
|
obfuscatedSummonerId: number
|
|
26860
28311
|
}
|
|
26861
28312
|
|
|
26862
|
-
/** The container for all the operational queue configs */
|
|
26863
|
-
export interface TeamBuilderDirect_OperationalQueueConfig {
|
|
26864
|
-
/** @format int32 */
|
|
26865
|
-
queueId: number
|
|
26866
|
-
isEnabled: boolean
|
|
26867
|
-
mutators: string
|
|
26868
|
-
isVisibleInClient: boolean
|
|
26869
|
-
isSpectatable: boolean
|
|
26870
|
-
"f2pRotations": string
|
|
26871
|
-
}
|
|
26872
|
-
|
|
26873
28313
|
export interface TeamBuilderDirect_PlayerStatus {
|
|
26874
28314
|
currentLobbyStatus?: TeamBuilderDirect_LobbyStatus
|
|
26875
28315
|
lastQueuedLobbyStatus?: TeamBuilderDirect_LobbyStatus
|
|
@@ -27100,8 +28540,7 @@ export interface TeamBuilderDirect_TbdGameDto {
|
|
|
27100
28540
|
|
|
27101
28541
|
export interface TeamBuilderDirect_TeamBoost {
|
|
27102
28542
|
/** @format int64 */
|
|
27103
|
-
|
|
27104
|
-
puuid: string
|
|
28543
|
+
activatorCellId: number
|
|
27105
28544
|
skinUnlockMode: string
|
|
27106
28545
|
/** @format int64 */
|
|
27107
28546
|
price: number
|
|
@@ -27275,6 +28714,8 @@ export interface TeambuilderEdge_ChampionSelectStateV1 {
|
|
|
27275
28714
|
allowOptingOutOfBanning: boolean
|
|
27276
28715
|
allowSkinSelection: boolean
|
|
27277
28716
|
allowDuplicatePicks: boolean
|
|
28717
|
+
allowPlayerPickSameChampion: boolean
|
|
28718
|
+
disallowBanningTeammateHoveredChampions: boolean
|
|
27278
28719
|
rerollState: TeambuilderEdge_RerollStateV1
|
|
27279
28720
|
lockedEventsState: TeambuilderEdge_LockedEventsStateV1
|
|
27280
28721
|
battleBoostState: TeambuilderEdge_BattleBoostStateV1
|
|
@@ -27401,9 +28842,9 @@ export interface TeambuilderEdge_RerollDataBagForClientV1 {
|
|
|
27401
28842
|
/** @format int32 */
|
|
27402
28843
|
totalPoints: number
|
|
27403
28844
|
/** @format int32 */
|
|
27404
|
-
maximumRerolls: number
|
|
27405
|
-
/** @format int32 */
|
|
27406
28845
|
pointCostOfReroll: number
|
|
28846
|
+
/** @format int32 */
|
|
28847
|
+
maximumRerolls: number
|
|
27407
28848
|
}
|
|
27408
28849
|
|
|
27409
28850
|
export interface TeambuilderEdge_RerollStateV1 {
|
|
@@ -27434,7 +28875,7 @@ export interface TeambuilderEdge_TbdGameDtoV1 {
|
|
|
27434
28875
|
matchmakingState?: TeambuilderEdge_MatchmakingStateV1
|
|
27435
28876
|
afkCheckState?: TeambuilderEdge_AfkCheckStateV1
|
|
27436
28877
|
championSelectState?: TeambuilderEdge_ChampionSelectStateV1
|
|
27437
|
-
requestGuid
|
|
28878
|
+
requestGuid?: string
|
|
27438
28879
|
}
|
|
27439
28880
|
|
|
27440
28881
|
export interface TeambuilderEdge_TeambuilderLedgeGameloopResponse {
|