@hasagi/types 15.3.1 → 15.6.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.
@@ -335,6 +335,232 @@ export interface ChampionScoutingDTO {
335
335
  kda: number
336
336
  }
337
337
 
338
+ export interface ChemtechShoppe_CatalogEntryDto {
339
+ id: string
340
+ name: string
341
+ productId: string
342
+ purchaseUnits: ChemtechShoppe_PurchaseUnitDto[]
343
+ displayMetadata: unknown
344
+ prerequisites: ChemtechShoppe_PrerequisiteDto[]
345
+ purchaseVisibility: string
346
+ refundRule: string
347
+ giftRule: string
348
+ purchaseLimits: ChemtechShoppe_VelocityLimitDeltaDto[]
349
+ refundLimits: ChemtechShoppe_VelocityLimitDeltaDto[]
350
+ endTime: string
351
+ }
352
+
353
+ export interface ChemtechShoppe_CatalogEntryResponseDto {
354
+ data: ChemtechShoppe_CatalogEntryDto
355
+ paging: ChemtechShoppe_PagingDto
356
+ stats: ChemtechShoppe_StatsDto
357
+ notes: string[]
358
+ }
359
+
360
+ export interface ChemtechShoppe_DropsMultiRollResultsDto {
361
+ rolls: ChemtechShoppe_DropsRollResultsDto[]
362
+ }
363
+
364
+ export interface ChemtechShoppe_DropsRollResultsDto {
365
+ fulfillments: unknown[]
366
+ }
367
+
368
+ export interface ChemtechShoppe_FinalPurchaseUnitDto {
369
+ payments: ChemtechShoppe_PaymentDto[]
370
+ fulfillment: ChemtechShoppe_FulfillmentDto
371
+ }
372
+
373
+ export interface ChemtechShoppe_FulfillmentDto {
374
+ /** @format int64 */
375
+ delta: number
376
+ /** @format int64 */
377
+ finalDelta: number
378
+ name: string
379
+ ownershipCompensationMode: string
380
+ /** @format int64 */
381
+ maxQuantity: number
382
+ /** @format int64 */
383
+ ownedQuantity: number
384
+ counterId: string
385
+ displayMetadata: unknown
386
+ dropTableId: string
387
+ results: ChemtechShoppe_DropsMultiRollResultsDto
388
+ itemTypeId: string
389
+ itemId: string
390
+ itemPayload: Record<string, unknown>
391
+ itemInstanceId: string
392
+ tierTypeId: string
393
+ progressionCounterId: string
394
+ currencyId: string
395
+ subCurrencyDeltas: Record<string, number>
396
+ }
397
+
398
+ export interface ChemtechShoppe_PagingDto {
399
+ /** @format int32 */
400
+ offset: number
401
+ /** @format int32 */
402
+ limit: number
403
+ /** @format int32 */
404
+ maxLimit: number
405
+ /** @format int32 */
406
+ total: number
407
+ previous: string
408
+ next: string
409
+ }
410
+
411
+ export interface ChemtechShoppe_PaymentDto {
412
+ /** @format int64 */
413
+ delta: number
414
+ /** @format int64 */
415
+ finalDelta: number
416
+ name: string
417
+ /** @format int64 */
418
+ discountedDelta: number
419
+ itemTypeId: string
420
+ itemId: string
421
+ currencyId: string
422
+ /** @format double */
423
+ discountPercent: number
424
+ }
425
+
426
+ export interface ChemtechShoppe_PaymentOptionDto {
427
+ key: string
428
+ payments: ChemtechShoppe_PaymentDto[]
429
+ }
430
+
431
+ export interface ChemtechShoppe_PrerequisiteDto {
432
+ status: string
433
+ itemTypeId: string
434
+ itemId: string
435
+ /** @format int64 */
436
+ requiredQuantity: number
437
+ /** @format int64 */
438
+ ownedQuantity: number
439
+ }
440
+
441
+ export interface ChemtechShoppe_PurchaseDto {
442
+ id: string
443
+ idempotencyId: string
444
+ productId: string
445
+ purchaserId: string
446
+ recipientId: string
447
+ storeId: string
448
+ storeName: string
449
+ catalogEntryId: string
450
+ catalogEntryName: string
451
+ purchaseUnits: ChemtechShoppe_FinalPurchaseUnitDto[]
452
+ createdTime: string
453
+ purchaseState: string
454
+ source: string
455
+ purchaseVisibility: string
456
+ refundRule: string
457
+ completedTime: string
458
+ refund: ChemtechShoppe_RefundDto
459
+ }
460
+
461
+ export interface ChemtechShoppe_PurchaseRequestDto {
462
+ storeId: string
463
+ catalogEntryId: string
464
+ paymentOptionsKeys: string[]
465
+ idempotencyId: string
466
+ /** @format int64 */
467
+ quantity: number
468
+ source: string
469
+ }
470
+
471
+ export interface ChemtechShoppe_PurchaseResponseDto {
472
+ data: ChemtechShoppe_PurchaseDto
473
+ paging: ChemtechShoppe_PagingDto
474
+ stats: ChemtechShoppe_StatsDto
475
+ notes: string[]
476
+ }
477
+
478
+ export interface ChemtechShoppe_PurchaseUnitDto {
479
+ paymentOptions: ChemtechShoppe_PaymentOptionDto[]
480
+ fulfillment: ChemtechShoppe_FulfillmentDto
481
+ }
482
+
483
+ export interface ChemtechShoppe_PurchasesResponseDto {
484
+ data: ChemtechShoppe_PurchaseDto[]
485
+ paging: ChemtechShoppe_PagingDto
486
+ stats: ChemtechShoppe_StatsDto
487
+ notes: string[]
488
+ }
489
+
490
+ export interface ChemtechShoppe_RefundDto {
491
+ id: string
492
+ purchaseId: string
493
+ createdTime: string
494
+ state: string
495
+ completedTime: string
496
+ source: string
497
+ }
498
+
499
+ export interface ChemtechShoppe_RefundRequestDto {
500
+ purchaseId: string
501
+ source: string
502
+ }
503
+
504
+ export interface ChemtechShoppe_RefundResponseDto {
505
+ data: ChemtechShoppe_RefundDto
506
+ paging: ChemtechShoppe_PagingDto
507
+ stats: ChemtechShoppe_StatsDto
508
+ notes: string[]
509
+ }
510
+
511
+ export interface ChemtechShoppe_StatsDto {
512
+ /** @format int64 */
513
+ durationMs: number
514
+ }
515
+
516
+ export interface ChemtechShoppe_StoreDigestDto {
517
+ id: string
518
+ productId: string
519
+ name: string
520
+ displayMetaData: unknown
521
+ }
522
+
523
+ export interface ChemtechShoppe_StoreDigestsDto {
524
+ digests: ChemtechShoppe_StoreDigestDto[]
525
+ }
526
+
527
+ export interface ChemtechShoppe_StoreDigestsResponseDto {
528
+ data: ChemtechShoppe_StoreDigestsDto
529
+ paging: ChemtechShoppe_PagingDto
530
+ stats: ChemtechShoppe_StatsDto
531
+ notes: string[]
532
+ }
533
+
534
+ export interface ChemtechShoppe_StoreDto {
535
+ id: string
536
+ productId: string
537
+ name: string
538
+ catalogEntries: ChemtechShoppe_CatalogEntryDto[]
539
+ displayMetadata: unknown
540
+ }
541
+
542
+ export interface ChemtechShoppe_StoreResponseDto {
543
+ data: ChemtechShoppe_StoreDto
544
+ paging: ChemtechShoppe_PagingDto
545
+ stats: ChemtechShoppe_StatsDto
546
+ notes: string[]
547
+ }
548
+
549
+ export interface ChemtechShoppe_StoresResponseDto {
550
+ data: ChemtechShoppe_StoreDto[]
551
+ paging: ChemtechShoppe_PagingDto
552
+ stats: ChemtechShoppe_StatsDto
553
+ notes: string[]
554
+ }
555
+
556
+ export interface ChemtechShoppe_VelocityLimitDeltaDto {
557
+ ruleId: string
558
+ /** @format int64 */
559
+ delta: number
560
+ /** @format int64 */
561
+ remaining: number
562
+ }
563
+
338
564
  export interface ClashEventData {
339
565
  earnedDate: string
340
566
  rewardType: string
@@ -699,6 +925,8 @@ export interface EndOfGameLcdsEndOfGameStats {
699
925
  /** @format int32 */
700
926
  skinId: number
701
927
  summonerName: string
928
+ riotIdGameName: string
929
+ riotIdTagLine: string
702
930
  /** @format uint64 */
703
931
  userId: number
704
932
  /** @format int32 */
@@ -755,6 +983,8 @@ export interface EndOfGameLcdsPlayerParticipantStatsSummary {
755
983
  gameId: number
756
984
  leaver: boolean
757
985
  summonerName: string
986
+ riotIdGameName: string
987
+ riotIdTagLine: string
758
988
  skinName: string
759
989
  /** @format int32 */
760
990
  profileIconId: number
@@ -1153,7 +1383,6 @@ export interface LcdsPlayer {
1153
1383
  }
1154
1384
 
1155
1385
  export interface LcdsPlayerGcoTokens {
1156
- idToken: string
1157
1386
  summonerToken: string
1158
1387
  userInfoJwt: string
1159
1388
  entitlementsToken: string
@@ -1961,6 +2190,7 @@ export interface LolCatalogSkinLineInfo {
1961
2190
  uncenteredSplashPath: string
1962
2191
  collectionDescription: string
1963
2192
  tiers: LolCatalogSkinLineTier[]
2193
+ mostProgressedSkinTier: LolCatalogSkinLineTier
1964
2194
  productType: string
1965
2195
  }
1966
2196
 
@@ -2479,6 +2709,8 @@ export interface LolChampSelectChampSelectSession {
2479
2709
  skipChampionSelect: boolean
2480
2710
  hasSimultaneousBans: boolean
2481
2711
  hasSimultaneousPicks: boolean
2712
+ showQuitButton: boolean
2713
+ isLegacyChampSelect: boolean
2482
2714
  isCustomGame: boolean
2483
2715
  }
2484
2716
 
@@ -2510,7 +2742,8 @@ export interface LolChampSelectChampSelectSummoner {
2510
2742
  currentChampionVotePercentInteger: number
2511
2743
  /** @format int32 */
2512
2744
  skinId: number
2513
- banIntentSquarePortratPath: string
2745
+ /** @format int32 */
2746
+ banIntentChampionId: number
2514
2747
  isOnPlayersTeam: boolean
2515
2748
  shouldShowSelectedSkin: boolean
2516
2749
  shouldShowExpanded: boolean
@@ -2834,6 +3067,8 @@ export interface LolChampSelectLegacyChampSelectSession {
2834
3067
  rerollsRemaining: number
2835
3068
  hasSimultaneousBans: boolean
2836
3069
  hasSimultaneousPicks: boolean
3070
+ showQuitButton: boolean
3071
+ isLegacyChampSelect: boolean
2837
3072
  isCustomGame: boolean
2838
3073
  }
2839
3074
 
@@ -3703,7 +3938,7 @@ export interface LolChatBlockedPlayerResource {
3703
3938
  }
3704
3939
 
3705
3940
  export interface LolChatChampSelection {
3706
- summonerInternalName: string
3941
+ puuid: string
3707
3942
  /** @format int32 */
3708
3943
  championId: number
3709
3944
  /** @format int32 */
@@ -4434,10 +4669,9 @@ export interface LolChatSummonerStatus {
4434
4669
  }
4435
4670
 
4436
4671
  export interface LolChatTeamPlayerEntry {
4672
+ puuid: string
4437
4673
  /** @format uint64 */
4438
4674
  summonerId: number
4439
- summonerInternalName: string
4440
- summonerName: string
4441
4675
  }
4442
4676
 
4443
4677
  export interface LolChatTranslateRequest {
@@ -4715,7 +4949,7 @@ export interface LolClashMatchmakingDodgeData {
4715
4949
 
4716
4950
  export type LolClashMatchmakingDodgeState = "TournamentDodged" | "StrangerDodged" | "PartyDodged" | "Invalid"
4717
4951
 
4718
- export type LolClashMatchmakingDodgeWarning = "Penalty" | "Warning" | "None"
4952
+ export type LolClashMatchmakingDodgeWarning = "ConnectionWarning" | "Penalty" | "Warning" | "None"
4719
4953
 
4720
4954
  export interface LolClashMatchmakingReadyCheckResource {
4721
4955
  state: LolClashMatchmakingReadyCheckState
@@ -5758,152 +5992,6 @@ export interface LolCollectionsTopChampionMasteries {
5758
5992
  masteries: LolCollectionsChampionMastery[]
5759
5993
  }
5760
5994
 
5761
- export interface LolContentTargetingAccountIdAndSummonerId {
5762
- /** @format uint64 */
5763
- summonerId: number
5764
- }
5765
-
5766
- export interface LolContentTargetingContentTargetingFilterResponse {
5767
- filters: string[]
5768
- }
5769
-
5770
- export interface LolContentTargetingContentTargetingLocaleResponse {
5771
- locale: string
5772
- }
5773
-
5774
- export interface LolContentTargetingDataModelResponse {
5775
- /** @format int64 */
5776
- responseCode: number
5777
- modelData: unknown
5778
- }
5779
-
5780
- export interface LolContentTargetingGameflowGameData {
5781
- /** @format uint64 */
5782
- gameId: number
5783
- queue: LolContentTargetingQueue
5784
- }
5785
-
5786
- export type LolContentTargetingGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
5787
-
5788
- export interface LolContentTargetingGameflowSession {
5789
- phase: LolContentTargetingGameflowPhase
5790
- gameData: LolContentTargetingGameflowGameData
5791
- }
5792
-
5793
- export interface LolContentTargetingGeoInfo {
5794
- country: string
5795
- city: string
5796
- region: string
5797
- }
5798
-
5799
- export interface LolContentTargetingGeoInfoResponse {
5800
- success: boolean
5801
- geoInfo: LolContentTargetingGeoInfo
5802
- errorMessage: string
5803
- isLatest: boolean
5804
- isInitialized: boolean
5805
- }
5806
-
5807
- export interface LolContentTargetingLoginSession {
5808
- state: LolContentTargetingLoginSessionState
5809
- /** @format uint64 */
5810
- summonerId: number
5811
- puuid: string
5812
- idToken: string
5813
- }
5814
-
5815
- export type LolContentTargetingLoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
5816
-
5817
- export interface LolContentTargetingMission {
5818
- id: string
5819
- status: string
5820
- /** @format int64 */
5821
- completedDate: number
5822
- internalName: string
5823
- }
5824
-
5825
- export interface LolContentTargetingPlatformConfig {
5826
- Enabled: boolean
5827
- Mapping: string
5828
- LevelFilterEnabled: boolean
5829
- RankedFilterEnabled: boolean
5830
- LocationFiltersEnabled: boolean
5831
- RankFilterEnabled: boolean
5832
- ABTestFilterEnabled: boolean
5833
- /** @format uint64 */
5834
- ABTestFilterGroups: number
5835
- /** @format uint64 */
5836
- ABTestFilterSalt: number
5837
- EntitlementsFilterEnabled: boolean
5838
- MasteryFilterEnabled: boolean
5839
- /** @format uint32 */
5840
- MasteryFilterLevelThreshold: number
5841
- /** @format uint32 */
5842
- MasteryFilterDaysSinceLastPlayed: number
5843
- /** @format uint32 */
5844
- MasteryFilterChampionLimit: number
5845
- MainFilterEnabled: boolean
5846
- EntitlementsPrefix: string
5847
- TargetingAttributeStorageEnabled: boolean
5848
- TargetingAttributeStorageBaseUri: string
5849
- MissionsFilterEnabled: boolean
5850
- SummonerIconFilterEnabled: boolean
5851
- /** @format uint32 */
5852
- AsynchronousEventHandlerSetupDelayInSeconds: number
5853
- /** @format uint32 */
5854
- TasIngestionDelayInSeconds: number
5855
- }
5856
-
5857
- export interface LolContentTargetingQueue {
5858
- /** @format int32 */
5859
- id: number
5860
- /** @format int32 */
5861
- mapId: number
5862
- gameMode: string
5863
- category: LolContentTargetingQueueGameCategory
5864
- }
5865
-
5866
- export type LolContentTargetingQueueGameCategory = "Alpha" | "VersusAi" | "PvP" | "Custom" | "None"
5867
-
5868
- export type LolContentTargetingRankedDivision = "V" | "IV" | "III" | "II" | "I" | "NA"
5869
-
5870
- export type LolContentTargetingRankedQueue = "RANKED_TFT_DOUBLE_UP" | "RANKED_TFT_PAIRS" | "RANKED_TFT_TURBO" | "RANKED_TFT" | "RANKED_FLEX_TT" | "RANKED_FLEX_SR" | "RANKED_SOLO_5x5" | "NONE"
5871
-
5872
- export interface LolContentTargetingRankedQueueStats {
5873
- queueType: LolContentTargetingRankedQueue
5874
- tier: string
5875
- division: LolContentTargetingRankedDivision
5876
- isProvisional: boolean
5877
- }
5878
-
5879
- export interface LolContentTargetingRankedStats {
5880
- queues: LolContentTargetingRankedQueueStats[]
5881
- highestRankedEntry?: LolContentTargetingRankedQueueStats
5882
- }
5883
-
5884
- export interface LolContentTargetingRegionLocale {
5885
- locale: string
5886
- }
5887
-
5888
- export interface LolContentTargetingSettingsResource {
5889
- data: unknown
5890
- }
5891
-
5892
- export interface LolContentTargetingSummoner {
5893
- /** @format uint32 */
5894
- summonerLevel: number
5895
- /** @format int32 */
5896
- profileIconId: number
5897
- }
5898
-
5899
- export interface LolContentTargetingTargetingAttributes {
5900
- result: Record<string, unknown>
5901
- }
5902
-
5903
- export interface LolContentTargetingToken {
5904
- entitlements: string[]
5905
- }
5906
-
5907
5995
  export interface LolCosmeticsAccountSettingsCategoryDataResource {
5908
5996
  typeToLastOpenedDate: Record<string, number>
5909
5997
  }
@@ -6461,12 +6549,6 @@ export interface LolDropsCapDropsDropTableDisplayMetadata {
6461
6549
  oddsTree: LolDropsCapDropsOddsTreeNodeDTO
6462
6550
  }
6463
6551
 
6464
- export interface LolDropsCapDropsDropTablePityInfo {
6465
- /** @format uint8 */
6466
- pityLimit: number
6467
- chaseContentIds: string[]
6468
- }
6469
-
6470
6552
  export interface LolDropsCapDropsDropTableWithPityDTO {
6471
6553
  id: string
6472
6554
  sourceId: string
@@ -6477,8 +6559,6 @@ export interface LolDropsCapDropsDropTableWithPityDTO {
6477
6559
  rollOffer: string
6478
6560
  /** @format uint16 */
6479
6561
  cost: number
6480
- totalRollsInfo: LolDropsTotalRollsInfoDTO
6481
- pityInfo: LolDropsCapDropsDropTablePityInfo
6482
6562
  displayMetadata: LolDropsCapDropsDropTableDisplayMetadata
6483
6563
  }
6484
6564
 
@@ -6509,12 +6589,6 @@ export interface LolDropsOddsTableDisplayMetadata {
6509
6589
  priority: number
6510
6590
  }
6511
6591
 
6512
- export interface LolDropsTotalRollsInfoDTO {
6513
- totalRollsCounterId: string
6514
- /** @format uint8 */
6515
- maxTotalRolls: number
6516
- }
6517
-
6518
6592
  export type LolDx9DeprecationDx9DeprecationNotificationType = "TURN_OFF_DX9_LEGACY_MODE" | "HARDWARE_UPGRADE" | "NONE"
6519
6593
 
6520
6594
  export interface LolDx9DeprecationLocalSettingsCategory {
@@ -6609,6 +6683,8 @@ export interface LolEndOfGameEndOfGamePlayer {
6609
6683
  stats: unknown
6610
6684
  items: number[]
6611
6685
  puuid: string
6686
+ riotIdGameName: string
6687
+ riotIdTagLine: string
6612
6688
  botPlayer: boolean
6613
6689
  /** @format int32 */
6614
6690
  championId: number
@@ -7440,6 +7516,7 @@ export interface LolEventHubChapter {
7440
7516
  backgroundImage: string
7441
7517
  backgroundVideo: string
7442
7518
  foregroundImage: string
7519
+ objectiveBannerImage: string
7443
7520
  /** @format uint16 */
7444
7521
  chapterStart: number
7445
7522
  /** @format uint16 */
@@ -7553,6 +7630,9 @@ export interface LolEventHubEventInfoUIData {
7553
7630
  eventIcon: string
7554
7631
  navBarIcon: string
7555
7632
  eventTokenImage: string
7633
+ startDate: string
7634
+ progressEndDate: string
7635
+ endDate: string
7556
7636
  /** @format int32 */
7557
7637
  currentTokenBalance: number
7558
7638
  /** @format int32 */
@@ -8457,13 +8537,16 @@ export interface LolEventHubRewardsConfig {
8457
8537
  }
8458
8538
 
8459
8539
  export interface LolEventHubRewardsSkinLineInfo {
8460
- productType: string
8461
8540
  tiers: LolEventHubRewardsSkinLineTier[]
8541
+ mostProgressedSkinTier: LolEventHubRewardsSkinLineTier
8542
+ productType: string
8462
8543
  }
8463
8544
 
8464
8545
  export interface LolEventHubRewardsSkinLineTier {
8465
8546
  /** @format int64 */
8466
8547
  stage: number
8548
+ name: string
8549
+ uncenteredSplashPath: string
8467
8550
  ownership: LolEventHubRewardsSkinLineTierOwnership
8468
8551
  }
8469
8552
 
@@ -8483,6 +8566,7 @@ export interface LolEventHubRiotMessagingServiceMessage {
8483
8566
  export interface LolEventHubRmsEntitlementPayload {
8484
8567
  itemId: string
8485
8568
  itemTypeId: string
8569
+ tiers: string
8486
8570
  entitlementTypeId: string
8487
8571
  resourceOperation: string
8488
8572
  }
@@ -9069,6 +9153,7 @@ export interface LolGameQueuesQueue {
9069
9153
  removalFromGameAllowed: boolean
9070
9154
  /** @format int32 */
9071
9155
  removalFromGameDelayMinutes: number
9156
+ hidePlayerPosition: boolean
9072
9157
  gameSelectModeGroup: string
9073
9158
  gameSelectCategory: string
9074
9159
  /** @format uint8 */
@@ -9165,6 +9250,7 @@ export interface LolGameQueuesQueueTranslation {
9165
9250
  /** @format uint8 */
9166
9251
  gameSelectPriority: number
9167
9252
  isSkillTreeQueue: boolean
9253
+ hidePlayerPosition: boolean
9168
9254
  }
9169
9255
 
9170
9256
  export interface LolGameSettingsLoginSession {
@@ -9415,61 +9501,27 @@ export interface LolGameflowRegionLocale {
9415
9501
  }
9416
9502
 
9417
9503
  export interface LolGameflowRegistrationStatus {
9418
- complete: boolean
9419
- errorCodes: string[]
9420
- }
9421
-
9422
- export interface LolGameflowReplaysSettingsData {
9423
- "highlights-folder-path": string
9424
- }
9425
-
9426
- export interface LolGameflowReplaysSettingsResource {
9427
- data: LolGameflowReplaysSettingsData
9428
- }
9429
-
9430
- export interface LolGameflowSpectateGameInfoResource {
9431
- dropInSpectateGameId: string
9432
- gameQueueType: string
9433
- allowObserveMode: string
9434
- puuid: string
9435
- }
9436
-
9437
- export interface LolGeoinfoGeoInfo {
9438
- country: string
9439
- city: string
9440
- region: string
9441
- }
9442
-
9443
- export interface LolGeoinfoGeoInfoConfig {
9444
- Enabled: boolean
9504
+ complete: boolean
9505
+ errorCodes: string[]
9445
9506
  }
9446
9507
 
9447
- export interface LolGeoinfoGeoInfoResponse {
9448
- success: boolean
9449
- geoInfo: LolGeoinfoGeoInfo
9450
- errorMessage: string
9451
- isLatest: boolean
9452
- isInitialized: boolean
9508
+ export interface LolGameflowReplaysSettingsData {
9509
+ "highlights-folder-path": string
9453
9510
  }
9454
9511
 
9455
- export interface LolGeoinfoLoginSession {
9456
- state: LolGeoinfoLoginSessionState
9457
- /** @format uint64 */
9458
- summonerId: number
9459
- /** @format uint64 */
9460
- accountId: number
9512
+ export interface LolGameflowReplaysSettingsResource {
9513
+ data: LolGameflowReplaysSettingsData
9461
9514
  }
9462
9515
 
9463
- export type LolGeoinfoLoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
9464
-
9465
- export interface LolGeoinfoWhereAmIRequest {
9466
- ipAddress: string
9516
+ export interface LolGameflowSpectateGameInfoResource {
9517
+ dropInSpectateGameId: string
9518
+ gameQueueType: string
9519
+ allowObserveMode: string
9520
+ puuid: string
9467
9521
  }
9468
9522
 
9469
- export interface LolGeoinfoWhereAmIResponse {
9470
- country: string
9471
- city: string
9472
- region: string
9523
+ export interface LolHeartbeatLcdsConnection {
9524
+ stableConnection: boolean
9473
9525
  }
9474
9526
 
9475
9527
  export interface LolHeartbeatLoginSession {
@@ -10118,6 +10170,7 @@ export interface LolInventoryRiotMessagingServiceMessage {
10118
10170
  export interface LolInventoryRmsEntitlementPayload {
10119
10171
  itemId: string
10120
10172
  itemTypeId: string
10173
+ tiers: string
10121
10174
  entitlementTypeId: string
10122
10175
  resourceOperation: string
10123
10176
  }
@@ -10324,7 +10377,7 @@ export interface LolLeaderboardLeaderboardConfiguration {
10324
10377
  /** @format uint8 */
10325
10378
  pageSize: number
10326
10379
  /** @format uint32 */
10327
- refreshTimeMS: number
10380
+ refreshTimeMs: number
10328
10381
  season: string
10329
10382
  }
10330
10383
 
@@ -10810,13 +10863,6 @@ export interface LolLobbyCustomGameDto {
10810
10863
  privateGame: boolean
10811
10864
  }
10812
10865
 
10813
- export interface LolLobbyCustomGameSettingsDto {
10814
- lobbyName: string
10815
- lobbyPassword: string
10816
- /** @format uint64 */
10817
- gameId: number
10818
- }
10819
-
10820
10866
  export interface LolLobbyCustomJoinOptionsDto {
10821
10867
  lobbyPassword: string
10822
10868
  team?: string
@@ -10885,22 +10931,20 @@ export interface LolLobbyGameDataChampionSummary {
10885
10931
  export interface LolLobbyGameModeDto {
10886
10932
  gameType: string
10887
10933
  /** @format int32 */
10888
- maxTeamSize: number
10934
+ queueId?: number
10889
10935
  /** @format int32 */
10890
10936
  maxPartySize: number
10891
- botDifficulty?: string
10892
10937
  /** @format int32 */
10893
- queueId?: number
10894
- gameCustomization?: Record<string, string>
10895
- customsSettings?: LolLobbyCustomGameSettingsDto
10896
- /** @format int64 */
10897
- gameTypeConfigId?: number
10938
+ maxTeamSize: number
10939
+ allowSpectators?: string
10898
10940
  /** @format int32 */
10899
10941
  mapId?: number
10900
- allowSpectators?: string
10901
- lobbyName: string
10902
- lobbyPassword: string
10903
- displayLobbyInCustomGameBrowser?: boolean
10942
+ /** @format int64 */
10943
+ gameTypeConfigId?: number
10944
+ gameCustomization?: Record<string, string>
10945
+ lobbyName?: string
10946
+ lobbyPassword?: string
10947
+ customGameMode?: string
10904
10948
  }
10905
10949
 
10906
10950
  export interface LolLobbyGameflowGameClient {
@@ -11312,7 +11356,6 @@ export interface LolLobbyLobbyParticipantDto {
11312
11356
  subteamIndex?: number
11313
11357
  /** @format int8 */
11314
11358
  intraSubteamPosition?: number
11315
- quickplayPlayerState?: string
11316
11359
  strawberryMapId?: string
11317
11360
  playerSlots: LolLobbyQuickPlayPresetSlotDto[]
11318
11361
  ready: boolean
@@ -11506,7 +11549,6 @@ export interface LolLobbyPartyMemberMetadataDto {
11506
11549
  memberData?: unknown
11507
11550
  playerSlots: LolLobbyQuickPlayPresetSlotDto[]
11508
11551
  subteamData?: LolLobbySubteamDataDto
11509
- quickplayPlayerState?: string
11510
11552
  }
11511
11553
 
11512
11554
  export type LolLobbyPartyMemberRoleEnum = "NONE" | "DECLINED" | "KICKED" | "HOLD" | "INVITED" | "MEMBER" | "LEADER"
@@ -11639,6 +11681,7 @@ export interface LolLobbyQueue {
11639
11681
  areFreeChampionsAllowed: boolean
11640
11682
  isTeamBuilderManaged: boolean
11641
11683
  queueAvailability: LolLobbyQueueAvailability
11684
+ isVisible: boolean
11642
11685
  queueRewards: LolLobbyQueueReward
11643
11686
  spectatorEnabled: boolean
11644
11687
  /** @format uint32 */
@@ -11653,6 +11696,17 @@ export interface LolLobbyQueue {
11653
11696
  removalFromGameAllowed: boolean
11654
11697
  /** @format int32 */
11655
11698
  removalFromGameDelayMinutes: number
11699
+ hidePlayerPosition: boolean
11700
+ gameSelectModeGroup: string
11701
+ gameSelectCategory: string
11702
+ /** @format uint8 */
11703
+ gameSelectPriority: number
11704
+ isSkillTreeQueue: boolean
11705
+ isCustom: boolean
11706
+ /** @format uint32 */
11707
+ numberOfTeamsInLobby: number
11708
+ /** @format uint32 */
11709
+ maxLobbySpectatorCount: number
11656
11710
  }
11657
11711
 
11658
11712
  export type LolLobbyQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
@@ -11796,6 +11850,18 @@ export interface LolLobbyServiceProxyPayload {
11796
11850
  body: string
11797
11851
  }
11798
11852
 
11853
+ export interface LolLobbySetGameModeRequestDto {
11854
+ /** @format int32 */
11855
+ queueId?: number
11856
+ gameCustomization?: Record<string, string>
11857
+ lobbyName?: string
11858
+ lobbyPassword?: string
11859
+ /** @format int32 */
11860
+ maxTeamSize?: number
11861
+ allowSpectators?: string
11862
+ displayLobbyInCustomGameBrowser?: boolean
11863
+ }
11864
+
11799
11865
  export interface LolLobbyStrawberryMapUpdateDto {
11800
11866
  contentId: string
11801
11867
  /** @format int32 */
@@ -12000,6 +12066,8 @@ export interface LolLobbyTeamBuilderChampSelectSession {
12000
12066
  isSpectating: boolean
12001
12067
  hasSimultaneousBans: boolean
12002
12068
  hasSimultaneousPicks: boolean
12069
+ showQuitButton: boolean
12070
+ isLegacyChampSelect: boolean
12003
12071
  }
12004
12072
 
12005
12073
  export interface LolLobbyTeamBuilderChampSelectSwapContract {
@@ -12079,6 +12147,7 @@ export interface LolLobbyTeamBuilderChampionSelectStateV1 {
12079
12147
  inventoryDraft: LolLobbyTeamBuilderTbdInventory
12080
12148
  skipChampionSelect: boolean
12081
12149
  isSpectating: boolean
12150
+ showQuitButton: boolean
12082
12151
  }
12083
12152
 
12084
12153
  export interface LolLobbyTeamBuilderCountdownTimer {
@@ -13445,13 +13514,16 @@ export interface LolLootRewardsConfig {
13445
13514
  }
13446
13515
 
13447
13516
  export interface LolLootRewardsSkinLineInfo {
13448
- productType: string
13449
13517
  tiers: LolLootRewardsSkinLineTier[]
13518
+ mostProgressedSkinTier: LolLootRewardsSkinLineTier
13519
+ productType: string
13450
13520
  }
13451
13521
 
13452
13522
  export interface LolLootRewardsSkinLineTier {
13453
13523
  /** @format int64 */
13454
13524
  stage: number
13525
+ name: string
13526
+ uncenteredSplashPath: string
13455
13527
  ownership: LolLootRewardsSkinLineTierOwnership
13456
13528
  }
13457
13529
 
@@ -13671,7 +13743,7 @@ export interface LolMacGraphicsUpgradeLocalSettingsCategory {
13671
13743
  schemaVersion: number
13672
13744
  }
13673
13745
 
13674
- export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "TURN_OFF_LEGACY_MODE" | "HARDWARE_UPGRADE" | "NONE"
13746
+ export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "SUPPORTED_HARDWARE" | "HARDWARE_UPGRADE" | "NONE"
13675
13747
 
13676
13748
  export interface LolMapsGameModeSpellList {
13677
13749
  spells: number[]
@@ -13717,6 +13789,10 @@ export interface LolMarketplaceCatalogEntryDto {
13717
13789
  endTime: string
13718
13790
  purchaseUnits: LolMarketplacePurchaseUnitDto[]
13719
13791
  displayMetadata: unknown
13792
+ refundRule: string
13793
+ giftRule: string
13794
+ prerequisites: LolMarketplacePrerequisiteDto[]
13795
+ purchaseLimits: LolMarketplaceVelocityLimitDeltaDto[]
13720
13796
  }
13721
13797
 
13722
13798
  export interface LolMarketplaceFinalPurchaseUnitDto {
@@ -13734,6 +13810,7 @@ export interface LolMarketplaceFulfillmentDto {
13734
13810
  maxQuantity: number
13735
13811
  /** @format uint64 */
13736
13812
  ownedQuantity: number
13813
+ ownershipCompensationMode: string
13737
13814
  itemTypeId: string
13738
13815
  itemId: string
13739
13816
  currencyId: string
@@ -13773,11 +13850,21 @@ export interface LolMarketplacePaymentOptionDto {
13773
13850
  payments: LolMarketplacePaymentDto[]
13774
13851
  }
13775
13852
 
13853
+ export interface LolMarketplacePrerequisiteDto {
13854
+ status: string
13855
+ itemTypeId: string
13856
+ itemId: string
13857
+ /** @format uint16 */
13858
+ requiredQuantity: number
13859
+ }
13860
+
13776
13861
  export interface LolMarketplacePurchaseDto {
13777
13862
  id: string
13778
13863
  productId: string
13779
13864
  storeId: string
13865
+ storeName: string
13780
13866
  catalogEntryId: string
13867
+ catalogEntryName: string
13781
13868
  purchaserId: string
13782
13869
  recipientId: string
13783
13870
  purchaseUnits: LolMarketplaceFinalPurchaseUnitDto[]
@@ -13790,6 +13877,13 @@ export interface LolMarketplacePurchaseDto {
13790
13877
  source: string
13791
13878
  }
13792
13879
 
13880
+ export interface LolMarketplacePurchaseErrorMessageDto {
13881
+ /** @format int32 */
13882
+ httpStatus: number
13883
+ errorCode: string
13884
+ message: string
13885
+ }
13886
+
13793
13887
  export interface LolMarketplacePurchaseHistoryResponse {
13794
13888
  data: LolMarketplacePurchaseDto[]
13795
13889
  paging: LolMarketplacePagination
@@ -13893,6 +13987,18 @@ export interface LolMarketplaceRiotMessagingServiceMessage {
13893
13987
  payload: string
13894
13988
  }
13895
13989
 
13990
+ export interface LolMarketplaceRotationalShopBundleData {
13991
+ asset: string
13992
+ description: string
13993
+ descriptionKey: string
13994
+ title: string
13995
+ titleKey: string
13996
+ }
13997
+
13998
+ export interface LolMarketplaceRotationalShopBundleListData {
13999
+ items: LolMarketplaceRotationalShopBundleData[]
14000
+ }
14001
+
13896
14002
  export interface LolMarketplaceRotationalShopItemData {
13897
14003
  backgroundTextureLCU: string
13898
14004
  contentID: string
@@ -13902,6 +14008,8 @@ export interface LolMarketplaceRotationalShopItemData {
13902
14008
  standaloneLoadoutsLargeIcon: string
13903
14009
  videoID: string
13904
14010
  redeemIconTexture: string
14011
+ rarity: string
14012
+ typeID: string
13905
14013
  }
13906
14014
 
13907
14015
  export interface LolMarketplaceStoreDto {
@@ -13925,6 +14033,20 @@ export interface LolMarketplaceTraKeyName {
13925
14033
  translatedName: string
13926
14034
  }
13927
14035
 
14036
+ export interface LolMarketplaceVelocityLimitDeltaDto {
14037
+ ruleId: string
14038
+ /** @format int64 */
14039
+ delta: number
14040
+ /** @format int64 */
14041
+ remaining: number
14042
+ }
14043
+
14044
+ export interface LolMarketplaceVelocityLimiterDto {
14045
+ /** @format int64 */
14046
+ availableTokens: number
14047
+ refill: string
14048
+ }
14049
+
13928
14050
  export interface LolMatchHistoryAcsEndPoint {
13929
14051
  url: string
13930
14052
  }
@@ -14486,6 +14608,10 @@ export interface LolMatchmakingGameflowSession {
14486
14608
  gameDodge: LolMatchmakingGameflowGameDodge
14487
14609
  }
14488
14610
 
14611
+ export interface LolMatchmakingLcdsConnection {
14612
+ stableConnection: boolean
14613
+ }
14614
+
14489
14615
  export interface LolMatchmakingLobbyStatus {
14490
14616
  /** @format int32 */
14491
14617
  queueId: number
@@ -14517,7 +14643,7 @@ export interface LolMatchmakingMatchmakingDodgeData {
14517
14643
 
14518
14644
  export type LolMatchmakingMatchmakingDodgeState = "TournamentDodged" | "StrangerDodged" | "PartyDodged" | "Invalid"
14519
14645
 
14520
- export type LolMatchmakingMatchmakingDodgeWarning = "Penalty" | "Warning" | "None"
14646
+ export type LolMatchmakingMatchmakingDodgeWarning = "ConnectionWarning" | "Penalty" | "Warning" | "None"
14521
14647
 
14522
14648
  export interface LolMatchmakingMatchmakingLowPriorityData {
14523
14649
  penalizedSummonerIds: number[]
@@ -14841,11 +14967,6 @@ export interface LolNachoCatalogItemPurchaseRequest {
14841
14967
  paymentOptions: string[]
14842
14968
  }
14843
14969
 
14844
- export interface LolNachoClientConfigNachoBanners {
14845
- enabled: boolean
14846
- bannerList: LolNachoNachoActiveBanner[]
14847
- }
14848
-
14849
14970
  export interface LolNachoDropsOddsTreeNodeDTO {
14850
14971
  nodeId: string
14851
14972
  /** @format float */
@@ -14855,25 +14976,11 @@ export interface LolNachoDropsOddsTreeNodeDTO {
14855
14976
  itemInstanceId: string
14856
14977
  type: string
14857
14978
  parentItemInstanceId: string
14979
+ capWalletCurrencyId: string
14858
14980
  /** @format uint32 */
14859
14981
  priority: number
14860
- }
14861
-
14862
- export interface LolNachoFinalPurchaseUnitDto {
14863
- fulfillment: LolNachoFulfillmentDto
14864
- }
14865
-
14866
- export interface LolNachoFulfillmentDto {
14867
- name: string
14868
- itemTypeId: string
14869
- itemId: string
14870
- itemInstanceId: string
14871
- tierTypeId: string
14872
- /** @format int64 */
14873
- finalDelta: number
14874
- /** @format int64 */
14875
- delta: number
14876
- results: unknown
14982
+ /** @format uint32 */
14983
+ quantity: number
14877
14984
  }
14878
14985
 
14879
14986
  export interface LolNachoGameDataBannerSkin {
@@ -14885,9 +14992,6 @@ export interface LolNachoGameDataBannerSkin {
14885
14992
 
14886
14993
  export interface LolNachoGameDataNachoBanner {
14887
14994
  id: string
14888
- bannerCurrencyId: string
14889
- activationTime: string
14890
- deactivationTime: string
14891
14995
  chasePityCounter: LolNachoGameDataPityCounter
14892
14996
  /** @format uint32 */
14893
14997
  chasePityThreshold: number
@@ -14895,8 +14999,6 @@ export interface LolNachoGameDataNachoBanner {
14895
14999
  highlightPityThreshold: number
14896
15000
  bannerBackgroundTexture: string
14897
15001
  bannerBackgroundParallax: string
14898
- name: string
14899
- description: string
14900
15002
  bannerChaseAnimationWebmPath: string
14901
15003
  bannerChaseAnimationParallax: string
14902
15004
  rollVignetteSkinIntroWebmPath: string
@@ -14905,22 +15007,8 @@ export interface LolNachoGameDataNachoBanner {
14905
15007
  chaseCelebrationVo: LolNachoGameDataNachoBannerVo
14906
15008
  hubIntroVo: LolNachoGameDataNachoBannerVo
14907
15009
  rollVignette: LolNachoNachoVignette
14908
- capCatalogStoreId: string
14909
- capCatalogEntryId: string
14910
15010
  bannerSkin: LolNachoGameDataBannerSkin
14911
- }
14912
-
14913
- export interface LolNachoGameDataNachoBannerTable {
14914
- id: string
14915
- name: string
14916
- translatedName: string
14917
- rewardTexturePath: string
14918
- chromaRewardTexturePath: string
14919
- children: LolNachoGameDataNachoBannerTableEntry[]
14920
- }
14921
-
14922
- export interface LolNachoGameDataNachoBannerTableEntry {
14923
- bannerNode: LolNachoGameDataNachoBannerTable
15011
+ bannerCurrency: LolNachoGameDataNachoCurrency
14924
15012
  }
14925
15013
 
14926
15014
  export interface LolNachoGameDataNachoBannerVo {
@@ -14936,6 +15024,13 @@ export interface LolNachoGameDataNachoBannerVoOverrideOptions {
14936
15024
  delayMillis: number
14937
15025
  }
14938
15026
 
15027
+ export interface LolNachoGameDataNachoCurrency {
15028
+ id: string
15029
+ name: string
15030
+ currencyId: string
15031
+ capCatalogEntryId: string
15032
+ }
15033
+
14939
15034
  export interface LolNachoGameDataNachoReward {
14940
15035
  itemInstanceId: string
14941
15036
  translatedName: string
@@ -14950,35 +15045,13 @@ export interface LolNachoGameDataPityCounter {
14950
15045
  name: string
14951
15046
  }
14952
15047
 
14953
- export interface LolNachoLoginSession {
14954
- state: LolNachoLoginSessionStates
14955
- /** @format uint64 */
14956
- summonerId: number
14957
- /** @format uint64 */
14958
- accountId: number
14959
- puuid: string
14960
- }
14961
-
14962
- export type LolNachoLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
14963
-
14964
- export interface LolNachoNachoActiveBanner {
14965
- storeId: string
14966
- catalogEntryId: string
14967
- tokenCatalogEntryId: string
14968
- /** @format uint8 */
14969
- version: number
14970
- }
14971
-
14972
15048
  export interface LolNachoNachoBannersResponse {
14973
15049
  id: string
14974
15050
  bannerBackgroundTexture: string
14975
15051
  bannerBackgroundParallax: string
14976
- name: string
14977
- description: string
14978
15052
  bannerChaseAnimationWebmPath: string
14979
15053
  bannerChaseAnimationParallax: string
14980
15054
  chasePityCounter: LolNachoGameDataPityCounter
14981
- bannerDeactivationDateTime: string
14982
15055
  /** @format uint32 */
14983
15056
  chasePityThreshold: number
14984
15057
  /** @format uint32 */
@@ -14989,9 +15062,15 @@ export interface LolNachoNachoBannersResponse {
14989
15062
  chaseCelebrationVo: LolNachoGameDataNachoBannerVo
14990
15063
  hubIntroVo: LolNachoGameDataNachoBannerVo
14991
15064
  rollVignette: LolNachoNachoVignette
15065
+ bannerSkin: LolNachoGameDataBannerSkin
15066
+ bannerCurrency: LolNachoGameDataNachoCurrency
14992
15067
  capCatalogStoreId: string
14993
15068
  capCatalogEntryId: string
14994
- bannerSkin: LolNachoGameDataBannerSkin
15069
+ pityCounter: LolNachoCapCounterData
15070
+ /** @format int64 */
15071
+ startDate: number
15072
+ /** @format int64 */
15073
+ endDate: number
14995
15074
  }
14996
15075
 
14997
15076
  export interface LolNachoNachoPurchaseResponse {
@@ -15038,70 +15117,18 @@ export interface LolNachoNachoVignette {
15038
15117
  introTierThreeMultiWebmPath: string
15039
15118
  }
15040
15119
 
15041
- export interface LolNachoPaymentDto {
15042
- /** @format double */
15043
- discountPercent: number
15044
- /** @format int64 */
15045
- discountedDelta: number
15046
- name: string
15047
- /** @format int64 */
15048
- finalDelta: number
15049
- /** @format int64 */
15050
- delta: number
15051
- }
15052
-
15053
- export interface LolNachoPaymentOptionDto {
15054
- key: string
15055
- payments: LolNachoPaymentDto[]
15056
- }
15057
-
15058
- export interface LolNachoPurchaseUnitDto {
15059
- paymentOptions: LolNachoPaymentOptionDto[]
15060
- fulfillment: LolNachoFulfillmentDto
15120
+ export interface LolNachoSanctumDisplayMetaData {
15121
+ bannerId: string
15061
15122
  }
15062
15123
 
15063
15124
  export interface LolNachoSetActiveStoresRequest {
15064
15125
  storeIds: string[]
15065
15126
  }
15066
15127
 
15067
- export interface LolNachoShoppeCatalogEntry {
15068
- id: string
15069
- name: string
15070
- productId: string
15071
- purchaseUnits: LolNachoPurchaseUnitDto[]
15072
- endTime: string
15073
- purchaseVisibility: string
15074
- refundRule: string
15075
- purchaseLimits: LolNachoVelocityLimitDeltaDto[]
15076
- }
15077
-
15078
- export interface LolNachoStore {
15079
- id: string
15080
- productId: string
15081
- name: string
15082
- catalogEntries: LolNachoShoppeCatalogEntry[]
15083
- displayMetadata: unknown
15084
- }
15085
-
15086
- export interface LolNachoStoreDigest {
15087
- id: string
15088
- displayMetadata: unknown
15089
- }
15090
-
15091
- export interface LolNachoStoreDigests {
15092
- digests: LolNachoStoreDigest[]
15093
- }
15094
-
15095
- export interface LolNachoStoresResponse {
15096
- data: LolNachoStore[]
15097
- }
15098
-
15099
- export interface LolNachoVelocityLimitDeltaDto {
15100
- ruleId: string
15101
- /** @format int64 */
15102
- delta: number
15103
- /** @format int64 */
15104
- remaining: number
15128
+ export interface LolNachoStoreSanctumDisplayMetaData {
15129
+ startDate: string
15130
+ endDate: string
15131
+ sanctum: LolNachoSanctumDisplayMetaData
15105
15132
  }
15106
15133
 
15107
15134
  export interface LolNpeRewardsAccountSettingsData {
@@ -16833,63 +16860,6 @@ export interface LolPlayerBehaviorUserInfoToken {
16833
16860
  ban: LolPlayerBehaviorUserInfoBanData
16834
16861
  }
16835
16862
 
16836
- export interface LolPlayerLevelUpEndOfGameStats {
16837
- gameMode: string
16838
- gameMutators: string[]
16839
- gameType: string
16840
- queueType: string
16841
- leveledUp: boolean
16842
- newSpells: number[]
16843
- /** @format uint32 */
16844
- previousLevel: number
16845
- /** @format int32 */
16846
- rpEarned: number
16847
- }
16848
-
16849
- export interface LolPlayerLevelUpGameDataSummonerSpell {
16850
- /** @format uint64 */
16851
- id: number
16852
- /** @format uint32 */
16853
- summonerLevel: number
16854
- }
16855
-
16856
- export interface LolPlayerLevelUpLoginSession {
16857
- state: LolPlayerLevelUpLoginSessionStates
16858
- /** @format uint64 */
16859
- summonerId: number
16860
- /** @format uint64 */
16861
- accountId: number
16862
- }
16863
-
16864
- export type LolPlayerLevelUpLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
16865
-
16866
- export interface LolPlayerLevelUpPlayerLevelUpEvent {
16867
- switchedToStandardFreeToPlayChampRotation: boolean
16868
- nowHasAccessToPublicChatRooms: boolean
16869
- nowHasAccessToLoot: boolean
16870
- leveledUp: boolean
16871
- /** @format uint32 */
16872
- newSummonerLevel: number
16873
- newRuneSlotUnlocked: boolean
16874
- /** @format int32 */
16875
- rpEarned: number
16876
- newSpells: number[]
16877
- newQueues: number[]
16878
- }
16879
-
16880
- export interface LolPlayerLevelUpPlayerLevelUpEventAck {
16881
- seenThisEvent: boolean
16882
- /** @format uint32 */
16883
- newSummonerLevel: number
16884
- }
16885
-
16886
- export interface LolPlayerLevelUpQueue {
16887
- /** @format int32 */
16888
- id: number
16889
- /** @format uint32 */
16890
- minLevel: number
16891
- }
16892
-
16893
16863
  export interface LolPlayerMessagingDynamicCelebrationMessagingNotificationResource {
16894
16864
  /** @format int32 */
16895
16865
  id: number
@@ -19537,13 +19507,16 @@ export interface LolRewardTrackRewardsConfig {
19537
19507
  }
19538
19508
 
19539
19509
  export interface LolRewardTrackRewardsSkinLineInfo {
19540
- productType: string
19541
19510
  tiers: LolRewardTrackRewardsSkinLineTier[]
19511
+ mostProgressedSkinTier: LolRewardTrackRewardsSkinLineTier
19512
+ productType: string
19542
19513
  }
19543
19514
 
19544
19515
  export interface LolRewardTrackRewardsSkinLineTier {
19545
19516
  /** @format int64 */
19546
19517
  stage: number
19518
+ name: string
19519
+ uncenteredSplashPath: string
19547
19520
  ownership: LolRewardTrackRewardsSkinLineTierOwnership
19548
19521
  }
19549
19522
 
@@ -19774,13 +19747,16 @@ export interface LolRewardsRewardsConfig {
19774
19747
  }
19775
19748
 
19776
19749
  export interface LolRewardsRewardsSkinLineInfo {
19777
- productType: string
19778
19750
  tiers: LolRewardsRewardsSkinLineTier[]
19751
+ mostProgressedSkinTier: LolRewardsRewardsSkinLineTier
19752
+ productType: string
19779
19753
  }
19780
19754
 
19781
19755
  export interface LolRewardsRewardsSkinLineTier {
19782
19756
  /** @format int64 */
19783
19757
  stage: number
19758
+ name: string
19759
+ uncenteredSplashPath: string
19784
19760
  ownership: LolRewardsRewardsSkinLineTierOwnership
19785
19761
  }
19786
19762
 
@@ -21498,6 +21474,7 @@ export interface LolTftEventLolTftEvent {
21498
21474
  dailyLoginSeriesId: string
21499
21475
  queueIds: number[]
21500
21476
  defaultLandingPage: boolean
21477
+ eventHubAssetKey: string
21501
21478
  eventHubTemplateType: string
21502
21479
  eventFuture: boolean
21503
21480
  weblinkSubnavs: LolTftEventLolTftEventWebLinkSubnav[]
@@ -21751,6 +21728,7 @@ export interface LolTftLolTftEvent {
21751
21728
  dailyLoginSeriesId: string
21752
21729
  queueIds: number[]
21753
21730
  defaultLandingPage: boolean
21731
+ eventHubAssetKey: string
21754
21732
  eventHubTemplateType: string
21755
21733
  eventFuture: boolean
21756
21734
  weblinkSubnavs: LolTftLolTftEventWebLinkSubnav[]
@@ -22127,6 +22105,7 @@ export interface LolTftPassRiotMessagingServiceMessage {
22127
22105
  export interface LolTftPassRmsEntitlementPayload {
22128
22106
  itemId: string
22129
22107
  itemTypeId: string
22108
+ tiers: string
22130
22109
  entitlementTypeId: string
22131
22110
  resourceOperation: string
22132
22111
  }
@@ -22747,7 +22726,6 @@ export interface LolTftTeamPlannerTFTModeData {
22747
22726
  export interface LolTftTeamPlannerTFTTeamPlannerConfig {
22748
22727
  enabled: boolean
22749
22728
  multipleSetsEnabled: boolean
22750
- multipleTeamsEnabled: boolean
22751
22729
  tencentNameCheckEnabled: boolean
22752
22730
  globalNameSanitizationEnabled: boolean
22753
22731
  }
@@ -22877,7 +22855,6 @@ export interface LolTftTrovesDropsDropTableWithPityDTO {
22877
22855
  rollOffer: string
22878
22856
  /** @format int32 */
22879
22857
  cost: number
22880
- totalRollsInfo: LolTftTrovesTotalRollsInfoDTO
22881
22858
  pityInfo: LolTftTrovesDropsDropTablePityInfo
22882
22859
  displayMetadata: LolTftTrovesCapDropsDropTableDisplayMetadata
22883
22860
  }
@@ -22923,7 +22900,6 @@ export interface LolTftTrovesGameDataTrovesBanner {
22923
22900
  id: string
22924
22901
  activationTime: string
22925
22902
  deactivationTime: string
22926
- pityCounterId: string
22927
22903
  mythicTokenOfferId: string
22928
22904
  /** @format uint32 */
22929
22905
  pityThreshold: number
@@ -23109,12 +23085,6 @@ export interface LolTftTrovesRiotMessagingServiceMessage {
23109
23085
  payload: string
23110
23086
  }
23111
23087
 
23112
- export interface LolTftTrovesTotalRollsInfoDTO {
23113
- totalRollsCounterId: string
23114
- /** @format uint16 */
23115
- maxTotalRolls: number
23116
- }
23117
-
23118
23088
  export interface LolTftTrovesTrigger {
23119
23089
  type: string
23120
23090
  counterId: string
@@ -23132,7 +23102,6 @@ export interface LolTftTrovesTrovePurchaseResponse {
23132
23102
 
23133
23103
  export interface LolTftTrovesTroves {
23134
23104
  enabled: boolean
23135
- useDisplayMetadata: boolean
23136
23105
  bannerList?: LolTftTrovesTrovesActiveBanner[]
23137
23106
  }
23138
23107
 
@@ -23161,7 +23130,6 @@ export interface LolTftTrovesTrovesBanner {
23161
23130
  eventHubBannerTexture: string
23162
23131
  name: string
23163
23132
  description: string
23164
- pityCounterId: string
23165
23133
  isCollectorBounty: boolean
23166
23134
  /** @format uint32 */
23167
23135
  maxTotalRolls: number
@@ -23357,8 +23325,6 @@ export interface LolTftTrovesTrovesRollRequest {
23357
23325
 
23358
23326
  export interface LolTftTrovesTrovesStatus {
23359
23327
  ownedStatus: LolTftTrovesTrovesOwnedStatus[]
23360
- /** @format uint8 */
23361
- pityCount: number
23362
23328
  dropTableId: string
23363
23329
  hasPullError: boolean
23364
23330
  /** @format uint16 */
@@ -23794,6 +23760,7 @@ export interface LolYourshopRiotMessagingServiceMessage {
23794
23760
  export interface LolYourshopRmsEntitlementPayload {
23795
23761
  itemId: string
23796
23762
  itemTypeId: string
23763
+ tiers: string
23797
23764
  entitlementTypeId: string
23798
23765
  resourceOperation: string
23799
23766
  }
@@ -24649,6 +24616,7 @@ export interface PlayerMissionDTO {
24649
24616
  title: string
24650
24617
  helperText: string
24651
24618
  description: string
24619
+ missionLineText: string
24652
24620
  backgroundImageUrl: string
24653
24621
  iconImageUrl: string
24654
24622
  seriesName: string