@hasagi/types 15.17.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.
@@ -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 ChemtechShoppe_RotatingStoreDigestDto {
635
- id: string
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 ChemtechShoppe_RotatingStoreResponseDto {
669
- data: ChemtechShoppe_RotatingStoreDto
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
- catalogEntries: ChemtechShoppe_CatalogEntryDto[]
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
@@ -2061,6 +2042,8 @@ export interface LolCapMissionsCapMissionSeriesMissionReward {
2061
2042
  currencyId: string
2062
2043
  /** @format uint32 */
2063
2044
  amount: number
2045
+ /** @format uint32 */
2046
+ quantity: number
2064
2047
  }
2065
2048
 
2066
2049
  export interface LolCapMissionsCapMissionSeriesMissionRewardsStatus {
@@ -2176,6 +2159,7 @@ export interface LolCatalogCatalogPluginItem {
2176
2159
  tilePath: string
2177
2160
  loadScreenPath: string
2178
2161
  rarity: string
2162
+ taggedChampionsIds: number[]
2179
2163
  /** @format uint64 */
2180
2164
  purchaseDate: number
2181
2165
  /** @format uint64 */
@@ -2352,6 +2336,7 @@ export interface LolCatalogGameDataSummonerEmote {
2352
2336
  name: string
2353
2337
  inventoryIcon: string
2354
2338
  description: string
2339
+ taggedChampionsIds: number[]
2355
2340
  }
2356
2341
 
2357
2342
  export interface LolCatalogGameDataSummonerIcon {
@@ -2692,7 +2677,7 @@ export interface LolChallengesSequenceEvent {
2692
2677
  priority: number
2693
2678
  }
2694
2679
 
2695
- 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"
2696
2681
 
2697
2682
  export interface LolChallengesUICategoryProgress {
2698
2683
  level: string
@@ -3635,6 +3620,12 @@ export interface LolChampionsSummoner {
3635
3620
  summonerLevel: number
3636
3621
  }
3637
3622
 
3623
+ export interface LolChampionsTeamBuilderDirect_MatchmakingQueue {
3624
+ /** @format int64 */
3625
+ id: number
3626
+ viableChampionRoster: number[]
3627
+ }
3628
+
3638
3629
  export type LolChatAccountState = "dnd" | "chat" | "away" | "mobile" | "offline"
3639
3630
 
3640
3631
  export interface LolChatActiveConversationResource {
@@ -4139,6 +4130,7 @@ export interface LolChatLobbyStatus {
4139
4130
  isCustom: boolean
4140
4131
  isPracticeTool: boolean
4141
4132
  isLeader: boolean
4133
+ isNoSpectateDelay: boolean
4142
4134
  memberSummonerIds: number[]
4143
4135
  customSpectatorPolicy: LolChatQueueCustomGameSpectatorPolicy
4144
4136
  }
@@ -4395,6 +4387,21 @@ export interface LolChatSettingsResource {
4395
4387
  data: unknown
4396
4388
  }
4397
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
+
4398
4405
  export interface LolChatSocialPresencesSession {
4399
4406
  player: LolChatSocialPresencesSessionPlayer
4400
4407
  activity?: LolChatSocialPresencesSessionActivity
@@ -4444,6 +4451,96 @@ export interface LolChatSocialPresencesStatusMessage {
4444
4451
  statusMessage: string
4445
4452
  }
4446
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
+
4447
4544
  export interface LolChatSpectateGameInfoResource {
4448
4545
  dropInSpectateGameId: string
4449
4546
  gameQueueType: string
@@ -5904,6 +6001,48 @@ export interface LolCosmeticsCosmeticsSettings {
5904
6001
  favorites: LolCosmeticsFavoriteCosmetics
5905
6002
  }
5906
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
+
5907
6046
  export interface LolCosmeticsCosmeticsTFTDamageSkin {
5908
6047
  contentId: string
5909
6048
  /** @format int32 */
@@ -6147,6 +6286,7 @@ export interface LolCosmeticsFulfillmentDto {
6147
6286
  currencyId: string
6148
6287
  subCurrencyDeltas: Record<string, number>
6149
6288
  progressionCounterId: string
6289
+ dropTableId: string
6150
6290
  }
6151
6291
 
6152
6292
  export interface LolCosmeticsGameDataCompanion {
@@ -6491,6 +6631,30 @@ export interface LolCosmeticsStoresResponse {
6491
6631
  errors: LolCosmeticsResponseError[]
6492
6632
  }
6493
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
+
6494
6658
  export interface LolCosmeticsTFTDamageSkinFavoritesViewModel {
6495
6659
  favoriteItems: LolCosmeticsCosmeticsTFTDamageSkinViewModel[]
6496
6660
  }
@@ -7440,6 +7604,26 @@ export interface LolEventHubActiveEventUIData {
7440
7604
  eventInfo: LolEventHubEventInfoUIData
7441
7605
  }
7442
7606
 
7607
+ export interface LolEventHubActivityCenterMilestones {
7608
+ eventId: string
7609
+ eventHubType: string
7610
+ localizedName: string
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
+
7443
7627
  export interface LolEventHubBalance {
7444
7628
  currencyType: string
7445
7629
  /** @format int32 */
@@ -7665,8 +7849,6 @@ export interface LolEventHubChapter {
7665
7849
  localizedDescription: string
7666
7850
  cardImage: string
7667
7851
  backgroundImage: string
7668
- backgroundVideo: string
7669
- foregroundImage: string
7670
7852
  objectiveBannerImage: string
7671
7853
  /** @format uint16 */
7672
7854
  chapterStart: number
@@ -7767,6 +7949,8 @@ export interface LolEventHubEventDetailsUIData {
7767
7949
  promotionBannerImage: string
7768
7950
  objectiveBannerImage: string
7769
7951
  memoryBookBackgroundImage: string
7952
+ /** @format uint32 */
7953
+ spotlightSkinId: number
7770
7954
  }
7771
7955
 
7772
7956
  export interface LolEventHubEventHubError {
@@ -7774,7 +7958,7 @@ export interface LolEventHubEventHubError {
7774
7958
  errorId: string
7775
7959
  }
7776
7960
 
7777
- export type LolEventHubEventHubType = "SeasonPass" | "HallOfLegends" | "EventShop"
7961
+ export type LolEventHubEventHubType = "ActivityCenterMilestones" | "SeasonPass" | "HallOfLegends" | "EventShop"
7778
7962
 
7779
7963
  export interface LolEventHubEventInfoUIData {
7780
7964
  eventId: string
@@ -7783,12 +7967,13 @@ export interface LolEventHubEventInfoUIData {
7783
7967
  eventIcon: string
7784
7968
  navBarIcon: string
7785
7969
  battleExpIcon: string
7786
- localizedSeasonLogo: string
7787
7970
  localizedShortName: string
7788
7971
  eventTokenImage: string
7789
7972
  startDate: string
7790
7973
  progressEndDate: string
7791
7974
  endDate: string
7975
+ localizedLogo: string
7976
+ objectiveCard: LolEventHubObjectiveCard
7792
7977
  /** @format int32 */
7793
7978
  currentTokenBalance: number
7794
7979
  /** @format int32 */
@@ -7798,6 +7983,9 @@ export interface LolEventHubEventInfoUIData {
7798
7983
  /** @format int64 */
7799
7984
  timeOfLastUnclaimedReward: number
7800
7985
  isPassPurchased: boolean
7986
+ isGameModeEvent: boolean
7987
+ /** @format int32 */
7988
+ queueId: number
7801
7989
  eventPassBundles: LolEventHubCatalogEntry[]
7802
7990
  tokenBundles: LolEventHubCatalogEntry[]
7803
7991
  }
@@ -7820,7 +8008,6 @@ export interface LolEventHubEventShop {
7820
8008
  localizedName: string
7821
8009
  backgroundImage: string
7822
8010
  navbarIconImage: string
7823
- battleExpIconImage: string
7824
8011
  headerIconImage: string
7825
8012
  startDate: string
7826
8013
  progressEndDate: string
@@ -7994,6 +8181,7 @@ export interface LolEventHubHallOfLegends {
7994
8181
  endDate: string
7995
8182
  helpModalImage: string
7996
8183
  inducteeName: string
8184
+ spotlightSkin: LolEventHubSpotlightSkin
7997
8185
  promotionBannerImage: string
7998
8186
  objectiveBannerImage: string
7999
8187
  eventPassBundlesCatalogEntry: LolEventHubCatalogEntry[]
@@ -8348,6 +8536,12 @@ export interface LolEventHubNextRewardUIData {
8348
8536
  level: string
8349
8537
  }
8350
8538
 
8539
+ export interface LolEventHubObjectiveCard {
8540
+ missionSeriesName: string
8541
+ objectiveGroup: string
8542
+ objectiveCategoryId: string
8543
+ }
8544
+
8351
8545
  export interface LolEventHubObjectivesBanner {
8352
8546
  eventName: string
8353
8547
  promotionBannerImage: string
@@ -8656,6 +8850,7 @@ export interface LolEventHubRewardTrackItemOption {
8656
8850
  cardSize: string
8657
8851
  rewardGroupId: string
8658
8852
  celebrationType: LolEventHubCelebrationType
8853
+ rewardInventoryTypes: string[]
8659
8854
  }
8660
8855
 
8661
8856
  export type LolEventHubRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
@@ -8785,7 +8980,6 @@ export interface LolEventHubSeasonPass {
8785
8980
  eventHubType: string
8786
8981
  localizedName: string
8787
8982
  navbarIconImage: string
8788
- headerIconImage: string
8789
8983
  battleExpIconImage: string
8790
8984
  headerTitleImage: string
8791
8985
  startDate: string
@@ -8885,6 +9079,11 @@ export interface LolEventHubSkinLineTier {
8885
9079
  collectionSplashVideoPath?: string
8886
9080
  }
8887
9081
 
9082
+ export interface LolEventHubSpotlightSkin {
9083
+ /** @format uint32 */
9084
+ championSkinID: number
9085
+ }
9086
+
8888
9087
  export interface LolEventHubSummonerIcon {
8889
9088
  /** @format int32 */
8890
9089
  itemId: number
@@ -9578,6 +9777,7 @@ export interface LolGameflowLobbyStatus {
9578
9777
  isLeader: boolean
9579
9778
  isSpectator: boolean
9580
9779
  allowedPlayAgain: boolean
9780
+ isNoSpectateDelay: boolean
9581
9781
  memberSummonerIds: number[]
9582
9782
  invitedSummonerIds: number[]
9583
9783
  lobbyId?: string
@@ -11391,6 +11591,7 @@ export interface LolLobbyLobbyCustomGameConfiguration {
11391
11591
  gameServerRegion: string
11392
11592
  spectatorDelayEnabled: boolean
11393
11593
  hidePublicly: boolean
11594
+ aramMapMutator: string
11394
11595
  }
11395
11596
 
11396
11597
  export interface LolLobbyLobbyCustomGameLobby {
@@ -11631,6 +11832,7 @@ export interface LolLobbyLobbyStatus {
11631
11832
  isLeader: boolean
11632
11833
  isSpectator: boolean
11633
11834
  allowedPlayAgain: boolean
11835
+ isNoSpectateDelay: boolean
11634
11836
  memberSummonerIds: number[]
11635
11837
  invitedSummonerIds: number[]
11636
11838
  lobbyId?: string
@@ -13446,6 +13648,7 @@ export interface LolMarketplaceFulfillmentDto {
13446
13648
  currencyId: string
13447
13649
  subCurrencyDeltas: Record<string, number>
13448
13650
  progressionCounterId: string
13651
+ dropTableId: string
13449
13652
  }
13450
13653
 
13451
13654
  export interface LolMarketplaceGameDataCompanion {
@@ -14418,6 +14621,8 @@ export interface LolMissionsCapMissionSeriesMissionReward {
14418
14621
  currencyId: string
14419
14622
  /** @format uint32 */
14420
14623
  amount: number
14624
+ /** @format uint32 */
14625
+ quantity: number
14421
14626
  }
14422
14627
 
14423
14628
  export interface LolMissionsCapMissionSeriesMissionRewardsStatus {
@@ -15407,6 +15612,8 @@ export interface LolObjectivesCapMissionSeriesMissionReward {
15407
15612
  currencyId: string
15408
15613
  /** @format uint32 */
15409
15614
  amount: number
15615
+ /** @format uint32 */
15616
+ quantity: number
15410
15617
  }
15411
15618
 
15412
15619
  export interface LolObjectivesCapMissionSeriesMissionRewardsStatus {
@@ -18347,6 +18554,7 @@ export interface LolRankedRankedStats {
18347
18554
  /** @format int32 */
18348
18555
  previousSeasonSplitPoints: number
18349
18556
  seasons: Record<string, LolRankedSeasonDTO>
18557
+ shouldShowIndicator: boolean
18350
18558
  }
18351
18559
 
18352
18560
  export interface LolRankedRankedStatsDTO {
@@ -18360,6 +18568,7 @@ export interface LolRankedRankedStatsDTO {
18360
18568
  /** @format int32 */
18361
18569
  previousSeasonSplitPoints: number
18362
18570
  seasons: Record<string, LolRankedSeasonDTO>
18571
+ shouldShowIndicator: boolean
18363
18572
  }
18364
18573
 
18365
18574
  export interface LolRankedRatedLadderEntryDTO {
@@ -18435,6 +18644,7 @@ export interface LolRankedSignedRankedStatsDTO {
18435
18644
  /** @format int32 */
18436
18645
  previousSeasonSplitPoints: number
18437
18646
  seasons: Record<string, LolRankedSeasonDTO>
18647
+ shouldShowIndicator: boolean
18438
18648
  jwt: string
18439
18649
  }
18440
18650
 
@@ -18533,6 +18743,7 @@ export interface LolRegaliaGameDataRegalia {
18533
18743
  regaliaType: string
18534
18744
  localizedName: string
18535
18745
  localizedDescription: string
18746
+ isTencentOnly: boolean
18536
18747
  }
18537
18748
 
18538
18749
  export interface LolRegaliaInventoryItem {
@@ -19261,6 +19472,11 @@ export interface LolRewardTrackGroup {
19261
19472
  milestones: LolRewardTrackMilestone[]
19262
19473
  }
19263
19474
 
19475
+ export interface LolRewardTrackLolInventoryType {
19476
+ inventoryTypeId: string
19477
+ capInventoryTypeId: string
19478
+ }
19479
+
19264
19480
  export interface LolRewardTrackMilestone {
19265
19481
  id: string
19266
19482
  name: string
@@ -19421,6 +19637,7 @@ export interface LolRewardTrackRewardTrackItemOption {
19421
19637
  cardSize: string
19422
19638
  rewardGroupId: string
19423
19639
  celebrationType: LolRewardTrackCelebrationType
19640
+ rewardInventoryTypes: string[]
19424
19641
  }
19425
19642
 
19426
19643
  export type LolRewardTrackRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
@@ -20109,6 +20326,10 @@ export interface LolSettingsVNGStatusResponse {
20109
20326
  action_url_raw: string
20110
20327
  }
20111
20328
 
20329
+ export interface LolShoppefrontBulkPurchaseRequest {
20330
+ purchaseItems: LolShoppefrontPurchaseRequest[]
20331
+ }
20332
+
20112
20333
  export interface LolShoppefrontPurchaseRequest {
20113
20334
  storeId: string
20114
20335
  catalogEntryId: string
@@ -20120,6 +20341,8 @@ export interface LolShoppefrontPurchaseRequest {
20120
20341
  export interface LolShoppefrontPurchaseResponse {
20121
20342
  id: string
20122
20343
  status: LolShoppefrontPurchaseResponseStatus
20344
+ /** @format uint8 */
20345
+ numberOfPendingPurchases: number
20123
20346
  }
20124
20347
 
20125
20348
  export type LolShoppefrontPurchaseResponseStatus = "Failure" | "Success" | "Pending" | "None"
@@ -20802,7 +21025,6 @@ export interface LolStoreGiftingConfig {
20802
21025
  giftingHextechMaxDailyGiftsSend: number
20803
21026
  /** @format uint32 */
20804
21027
  giftingHextecMaxDailyGiftsReceive: number
20805
- requiresIdentityVerification: boolean
20806
21028
  }
20807
21029
 
20808
21030
  export interface LolStoreGiftingFriend {
@@ -21252,6 +21474,7 @@ export interface LolSummonerProfilesHonorView {
21252
21474
 
21253
21475
  export interface LolSummonerProfilesPrivacyView {
21254
21476
  anonymityEnabled: boolean
21477
+ nameOnlyAnonymityEnabled: boolean
21255
21478
  }
21256
21479
 
21257
21480
  export interface LolSummonerProfilesPuuidAndViews {
@@ -21535,6 +21758,8 @@ export interface LolTftEventCapMissionSeriesMissionReward {
21535
21758
  currencyId: string
21536
21759
  /** @format uint32 */
21537
21760
  amount: number
21761
+ /** @format uint32 */
21762
+ quantity: number
21538
21763
  }
21539
21764
 
21540
21765
  export interface LolTftEventCapMissionSeriesMissionRewardsStatus {
@@ -21766,24 +21991,691 @@ export interface LolTftEventPublishingSettings {
21766
21991
  publishingLocale: string
21767
21992
  }
21768
21993
 
21769
- export interface LolTftEventQueue {
21770
- /** @format int32 */
21771
- id: number
21772
- /** @format int32 */
21773
- mapId: number
21774
- gameMode: string
21775
- category: LolTftEventQueueGameCategory
21994
+ export interface LolTftEventPveAccessTokenResource {
21995
+ token: string
21996
+ scopes: string[]
21997
+ /** @format uint64 */
21998
+ expiry: number
21776
21999
  }
21777
22000
 
21778
- export type LolTftEventQueueGameCategory = "Alpha" | "VersusAi" | "PvP" | "Custom" | "None"
22001
+ export interface LolTftEventPveCAPMission {
22002
+ missionId: string
22003
+ title: string
22004
+ description: string
22005
+ missionIconAsset: LolTftEventPveMissionAsset
22006
+ rewards: LolTftEventPveCAPMissionReward[]
22007
+ objectives: LolTftEventPveCAPMissionObjective[]
22008
+ }
21779
22009
 
21780
- export interface LolTftEventRewardGrant {
21781
- info: LolTftEventRewardGrantInfo
21782
- rewardGroup: LolTftEventRewardGroup
22010
+ export interface LolTftEventPveCAPMissionObjective {
22011
+ statId: string
22012
+ description: string
21783
22013
  }
21784
22014
 
21785
- export interface LolTftEventRewardGrantElement {
21786
- id: string
22015
+ export interface LolTftEventPveCAPMissionReward {
22016
+ itemId: string
22017
+ rewardName: string
22018
+ /** @format uint32 */
22019
+ quantity: number
22020
+ rewardAsset: LolTftEventPveMissionAsset
22021
+ }
22022
+
22023
+ export interface LolTftEventPveCatalogItem {
22024
+ /** @format int32 */
22025
+ itemId: number
22026
+ inventoryType: string
22027
+ itemInstanceId?: string
22028
+ }
22029
+
22030
+ export interface LolTftEventPveClientCacheClearMessageDTO {
22031
+ regions: string[]
22032
+ clearAll: boolean
22033
+ inventoryTypes: string[]
22034
+ }
22035
+
22036
+ export interface LolTftEventPveCreateLoadoutDTO {
22037
+ scope: string
22038
+ /** @format uint32 */
22039
+ itemId?: number
22040
+ name: string
22041
+ loadout: Record<string, LolTftEventPveItemKey>
22042
+ refreshTime: string
22043
+ }
22044
+
22045
+ export interface LolTftEventPveCreateLoadoutRequestDTO {
22046
+ serviceToJwtsMap: Record<string, unknown>
22047
+ loadout: LolTftEventPveCreateLoadoutDTO
22048
+ }
22049
+
22050
+ export interface LolTftEventPveCreateOrUpdateItemsRequest {
22051
+ /** @format uint32 */
22052
+ id: number
22053
+ items: Record<string, unknown>
22054
+ inventoryJWTs: string[]
22055
+ }
22056
+
22057
+ export interface LolTftEventPveCurrencyDTO {
22058
+ /** @format int32 */
22059
+ amount: number
22060
+ subCurrencies: Record<string, number>
22061
+ }
22062
+
22063
+ export interface LolTftEventPveEndOfGameXp {
22064
+ /** @format uint32 */
22065
+ PER_WIN: number
22066
+ }
22067
+
22068
+ export interface LolTftEventPveEndOfGameXpNotification {
22069
+ xp: LolTftEventPveEndOfGameXp
22070
+ }
22071
+
22072
+ export type LolTftEventPveEventPVELevelState = "kError" | "kCleared" | "kUnlocked" | "kUnseenUnlocked" | "kLocked"
22073
+
22074
+ export interface LolTftEventPveFrontendInventoryResponse {
22075
+ entitlements: LolTftEventPveItemKey[]
22076
+ }
22077
+
22078
+ export interface LolTftEventPveGameflowGameData {
22079
+ queue: LolTftEventPveQueue
22080
+ }
22081
+
22082
+ export type LolTftEventPveGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
22083
+
22084
+ export interface LolTftEventPveGameflowSession {
22085
+ phase: LolTftEventPveGameflowPhase
22086
+ gameData: LolTftEventPveGameflowGameData
22087
+ }
22088
+
22089
+ export interface LolTftEventPveGetItemsRequest {
22090
+ /** @format uint32 */
22091
+ id: number
22092
+ inventoryTypes: string[]
22093
+ inventoryJWTs: string[]
22094
+ }
22095
+
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
21787
22679
  itemId: string
21788
22680
  itemType: string
21789
22681
  fulfillmentSource: string
@@ -22021,6 +22913,26 @@ export interface LolTftPassActiveEventUIData {
22021
22913
  eventInfo: LolTftPassEventInfoUIData
22022
22914
  }
22023
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
+
22024
22936
  export interface LolTftPassBundleOfferUIData {
22025
22937
  details: LolTftPassBundledItemUIData
22026
22938
  /** @format int64 */
@@ -22071,8 +22983,6 @@ export interface LolTftPassChapter {
22071
22983
  localizedDescription: string
22072
22984
  cardImage: string
22073
22985
  backgroundImage: string
22074
- backgroundVideo: string
22075
- foregroundImage: string
22076
22986
  objectiveBannerImage: string
22077
22987
  /** @format uint16 */
22078
22988
  chapterStart: number
@@ -22157,9 +23067,11 @@ export interface LolTftPassEventDetailsUIData {
22157
23067
  promotionBannerImage: string
22158
23068
  objectiveBannerImage: string
22159
23069
  memoryBookBackgroundImage: string
23070
+ /** @format uint32 */
23071
+ spotlightSkinId: number
22160
23072
  }
22161
23073
 
22162
- export type LolTftPassEventHubType = "SeasonPass" | "HallOfLegends" | "EventShop"
23074
+ export type LolTftPassEventHubType = "ActivityCenterMilestones" | "SeasonPass" | "HallOfLegends" | "EventShop"
22163
23075
 
22164
23076
  export interface LolTftPassEventInfoUIData {
22165
23077
  eventId: string
@@ -22168,12 +23080,13 @@ export interface LolTftPassEventInfoUIData {
22168
23080
  eventIcon: string
22169
23081
  navBarIcon: string
22170
23082
  battleExpIcon: string
22171
- localizedSeasonLogo: string
22172
23083
  localizedShortName: string
22173
23084
  eventTokenImage: string
22174
23085
  startDate: string
22175
23086
  progressEndDate: string
22176
23087
  endDate: string
23088
+ localizedLogo: string
23089
+ objectiveCard: LolTftPassObjectiveCard
22177
23090
  /** @format int32 */
22178
23091
  currentTokenBalance: number
22179
23092
  /** @format int32 */
@@ -22183,6 +23096,9 @@ export interface LolTftPassEventInfoUIData {
22183
23096
  /** @format int64 */
22184
23097
  timeOfLastUnclaimedReward: number
22185
23098
  isPassPurchased: boolean
23099
+ isGameModeEvent: boolean
23100
+ /** @format int32 */
23101
+ queueId: number
22186
23102
  eventPassBundles: LolTftPassCatalogEntry[]
22187
23103
  tokenBundles: LolTftPassCatalogEntry[]
22188
23104
  }
@@ -22198,7 +23114,6 @@ export interface LolTftPassEventShop {
22198
23114
  localizedName: string
22199
23115
  backgroundImage: string
22200
23116
  navbarIconImage: string
22201
- battleExpIconImage: string
22202
23117
  headerIconImage: string
22203
23118
  startDate: string
22204
23119
  progressEndDate: string
@@ -22279,6 +23194,7 @@ export interface LolTftPassHallOfLegends {
22279
23194
  endDate: string
22280
23195
  helpModalImage: string
22281
23196
  inducteeName: string
23197
+ spotlightSkin: LolTftPassSpotlightSkin
22282
23198
  promotionBannerImage: string
22283
23199
  objectiveBannerImage: string
22284
23200
  eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
@@ -22536,6 +23452,12 @@ export interface LolTftPassNextRewardUIData {
22536
23452
  level: string
22537
23453
  }
22538
23454
 
23455
+ export interface LolTftPassObjectiveCard {
23456
+ missionSeriesName: string
23457
+ objectiveGroup: string
23458
+ objectiveCategoryId: string
23459
+ }
23460
+
22539
23461
  export interface LolTftPassObjectivesBanner {
22540
23462
  eventName: string
22541
23463
  promotionBannerImage: string
@@ -22751,6 +23673,7 @@ export interface LolTftPassRewardTrackItemOption {
22751
23673
  cardSize: string
22752
23674
  rewardGroupId: string
22753
23675
  celebrationType: LolTftPassCelebrationType
23676
+ rewardInventoryTypes: string[]
22754
23677
  }
22755
23678
 
22756
23679
  export type LolTftPassRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
@@ -22874,7 +23797,6 @@ export interface LolTftPassSeasonPass {
22874
23797
  eventHubType: string
22875
23798
  localizedName: string
22876
23799
  navbarIconImage: string
22877
- headerIconImage: string
22878
23800
  battleExpIconImage: string
22879
23801
  headerTitleImage: string
22880
23802
  startDate: string
@@ -22921,6 +23843,11 @@ export interface LolTftPassSimpleInventoryResponseDTO {
22921
23843
  data: LolTftPassSimpleInventoryDTO
22922
23844
  }
22923
23845
 
23846
+ export interface LolTftPassSpotlightSkin {
23847
+ /** @format uint32 */
23848
+ championSkinID: number
23849
+ }
23850
+
22924
23851
  export interface LolTftPassSummonerIcon {
22925
23852
  /** @format int32 */
22926
23853
  itemId: number
@@ -23682,8 +24609,61 @@ export interface LolTftTrovesCapOrdersRequestMetaDTO {
23682
24609
  xid: string
23683
24610
  }
23684
24611
 
23685
- export interface LolTftTrovesCapOrdersResponseDTO {
23686
- 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
23687
24667
  }
23688
24668
 
23689
24669
  export interface LolTftTrovesCounter {
@@ -23754,6 +24734,25 @@ export interface LolTftTrovesDropsOddsTreeNodeDTO {
23754
24734
  priority: number
23755
24735
  }
23756
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
+
23757
24756
  export interface LolTftTrovesEntitlementNotificationResource {
23758
24757
  itemId: string
23759
24758
  itemTypeId: string
@@ -23761,12 +24760,45 @@ export interface LolTftTrovesEntitlementNotificationResource {
23761
24760
  resourceOperation: string
23762
24761
  }
23763
24762
 
24763
+ export interface LolTftTrovesEntitlementsResponse {
24764
+ data: LolTftTrovesEntitlementDto[]
24765
+ }
24766
+
23764
24767
  export interface LolTftTrovesEntityInstance {
23765
24768
  groupId: string
23766
24769
  counters: LolTftTrovesCounterInstance[]
23767
24770
  milestones: LolTftTrovesMilestoneInstance[]
23768
24771
  }
23769
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
+
23770
24802
  export interface LolTftTrovesGameDataTFTContent {
23771
24803
  name: string
23772
24804
  nameTraKey: string
@@ -23908,6 +24940,39 @@ export interface LolTftTrovesOrderNotificationResource {
23908
24940
  status: string
23909
24941
  }
23910
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
+
23911
24976
  export interface LolTftTrovesPityCounterDTO {
23912
24977
  dropTableId: string
23913
24978
  /** @format uint8 */
@@ -23920,6 +24985,125 @@ export interface LolTftTrovesPlayerLoot {
23920
24985
  itemDesc: string
23921
24986
  }
23922
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
+
23923
25107
  export interface LolTftTrovesRepeat {
23924
25108
  /** @format int32 */
23925
25109
  count: number
@@ -23942,6 +25126,18 @@ export interface LolTftTrovesRepeatGroupTrigger {
23942
25126
  multiplier: number
23943
25127
  }
23944
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
+
23945
25141
  export interface LolTftTrovesRewardsNotificationResource {
23946
25142
  purchaserId: string
23947
25143
  recipientId: string
@@ -23960,6 +25156,75 @@ export interface LolTftTrovesRiotMessagingServiceMessage {
23960
25156
  payload: string
23961
25157
  }
23962
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
+
23963
25228
  export interface LolTftTrovesTrigger {
23964
25229
  type: string
23965
25230
  counterId: string
@@ -23977,6 +25242,7 @@ export interface LolTftTrovesTrovePurchaseResponse {
23977
25242
 
23978
25243
  export interface LolTftTrovesTroves {
23979
25244
  enabled: boolean
25245
+ capCatalogEnabled: boolean
23980
25246
  bannerList?: LolTftTrovesTrovesActiveBanner[]
23981
25247
  }
23982
25248
 
@@ -24209,6 +25475,20 @@ export interface LolTftTrovesTrovesTable {
24209
25475
  translatedName: string
24210
25476
  }
24211
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
+
24212
25492
  export interface LolTftTrovesVerboseLootOddsResponse {
24213
25493
  recipeName: string
24214
25494
  chanceToContain: LolTftTrovesLootOddsResponse[]
@@ -25570,6 +26850,7 @@ export interface PlayerMissionRewardDTO {
25570
26850
  iconUrl: string
25571
26851
  smallIconUrl: string
25572
26852
  itemId: string
26853
+ itemTypeId: string
25573
26854
  uniqueName: string
25574
26855
  rewardFulfilled: boolean
25575
26856
  rewardGroupSelected: boolean
@@ -26496,6 +27777,8 @@ export interface TeamBuilderDirect_ChampSelectSession {
26496
27777
  allowSkinSelection: boolean
26497
27778
  allowSubsetChampionPicks: boolean
26498
27779
  allowDuplicatePicks: boolean
27780
+ allowPlayerPickSameChampion: boolean
27781
+ disallowBanningTeammateHoveredChampions: boolean
26499
27782
  allowBattleBoost: boolean
26500
27783
  /** @format int32 */
26501
27784
  boostableSkinCount: number
@@ -26636,6 +27919,8 @@ export interface TeamBuilderDirect_ChampionSelectState {
26636
27919
  allowOptingOutOfBanning: boolean
26637
27920
  allowSkinSelection: boolean
26638
27921
  allowDuplicatePicks: boolean
27922
+ allowPlayerPickSameChampion: boolean
27923
+ disallowBanningTeammateHoveredChampions: boolean
26639
27924
  allowSubsetChampionPicks: boolean
26640
27925
  rerollState: TeamBuilderDirect_RerollState
26641
27926
  lockedEventsState: TeamBuilderDirect_LockedEventsState
@@ -27025,17 +28310,6 @@ export interface TeamBuilderDirect_MutedPlayerInfo {
27025
28310
  obfuscatedSummonerId: number
27026
28311
  }
27027
28312
 
27028
- /** The container for all the operational queue configs */
27029
- export interface TeamBuilderDirect_OperationalQueueConfig {
27030
- /** @format int32 */
27031
- queueId: number
27032
- isEnabled: boolean
27033
- mutators: string
27034
- isVisibleInClient: boolean
27035
- isSpectatable: boolean
27036
- "f2pRotations": string
27037
- }
27038
-
27039
28313
  export interface TeamBuilderDirect_PlayerStatus {
27040
28314
  currentLobbyStatus?: TeamBuilderDirect_LobbyStatus
27041
28315
  lastQueuedLobbyStatus?: TeamBuilderDirect_LobbyStatus
@@ -27266,8 +28540,7 @@ export interface TeamBuilderDirect_TbdGameDto {
27266
28540
 
27267
28541
  export interface TeamBuilderDirect_TeamBoost {
27268
28542
  /** @format int64 */
27269
- summonerId: number
27270
- puuid: string
28543
+ activatorCellId: number
27271
28544
  skinUnlockMode: string
27272
28545
  /** @format int64 */
27273
28546
  price: number
@@ -27441,6 +28714,8 @@ export interface TeambuilderEdge_ChampionSelectStateV1 {
27441
28714
  allowOptingOutOfBanning: boolean
27442
28715
  allowSkinSelection: boolean
27443
28716
  allowDuplicatePicks: boolean
28717
+ allowPlayerPickSameChampion: boolean
28718
+ disallowBanningTeammateHoveredChampions: boolean
27444
28719
  rerollState: TeambuilderEdge_RerollStateV1
27445
28720
  lockedEventsState: TeambuilderEdge_LockedEventsStateV1
27446
28721
  battleBoostState: TeambuilderEdge_BattleBoostStateV1
@@ -27567,9 +28842,9 @@ export interface TeambuilderEdge_RerollDataBagForClientV1 {
27567
28842
  /** @format int32 */
27568
28843
  totalPoints: number
27569
28844
  /** @format int32 */
27570
- maximumRerolls: number
27571
- /** @format int32 */
27572
28845
  pointCostOfReroll: number
28846
+ /** @format int32 */
28847
+ maximumRerolls: number
27573
28848
  }
27574
28849
 
27575
28850
  export interface TeambuilderEdge_RerollStateV1 {
@@ -27600,7 +28875,7 @@ export interface TeambuilderEdge_TbdGameDtoV1 {
27600
28875
  matchmakingState?: TeambuilderEdge_MatchmakingStateV1
27601
28876
  afkCheckState?: TeambuilderEdge_AfkCheckStateV1
27602
28877
  championSelectState?: TeambuilderEdge_ChampionSelectStateV1
27603
- requestGuid: string
28878
+ requestGuid?: string
27604
28879
  }
27605
28880
 
27606
28881
  export interface TeambuilderEdge_TeambuilderLedgeGameloopResponse {