@hasagi/types 15.4.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.
- package/dist/lcu-endpoints.d.ts +8 -31
- package/dist/lcu-events.d.ts +87 -1
- package/dist/lcu-types.d.ts +320 -397
- package/package.json +5 -5
package/dist/lcu-types.d.ts
CHANGED
|
@@ -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
|
|
@@ -1960,6 +2190,7 @@ export interface LolCatalogSkinLineInfo {
|
|
|
1960
2190
|
uncenteredSplashPath: string
|
|
1961
2191
|
collectionDescription: string
|
|
1962
2192
|
tiers: LolCatalogSkinLineTier[]
|
|
2193
|
+
mostProgressedSkinTier: LolCatalogSkinLineTier
|
|
1963
2194
|
productType: string
|
|
1964
2195
|
}
|
|
1965
2196
|
|
|
@@ -2478,6 +2709,8 @@ export interface LolChampSelectChampSelectSession {
|
|
|
2478
2709
|
skipChampionSelect: boolean
|
|
2479
2710
|
hasSimultaneousBans: boolean
|
|
2480
2711
|
hasSimultaneousPicks: boolean
|
|
2712
|
+
showQuitButton: boolean
|
|
2713
|
+
isLegacyChampSelect: boolean
|
|
2481
2714
|
isCustomGame: boolean
|
|
2482
2715
|
}
|
|
2483
2716
|
|
|
@@ -2509,7 +2742,8 @@ export interface LolChampSelectChampSelectSummoner {
|
|
|
2509
2742
|
currentChampionVotePercentInteger: number
|
|
2510
2743
|
/** @format int32 */
|
|
2511
2744
|
skinId: number
|
|
2512
|
-
|
|
2745
|
+
/** @format int32 */
|
|
2746
|
+
banIntentChampionId: number
|
|
2513
2747
|
isOnPlayersTeam: boolean
|
|
2514
2748
|
shouldShowSelectedSkin: boolean
|
|
2515
2749
|
shouldShowExpanded: boolean
|
|
@@ -2833,6 +3067,8 @@ export interface LolChampSelectLegacyChampSelectSession {
|
|
|
2833
3067
|
rerollsRemaining: number
|
|
2834
3068
|
hasSimultaneousBans: boolean
|
|
2835
3069
|
hasSimultaneousPicks: boolean
|
|
3070
|
+
showQuitButton: boolean
|
|
3071
|
+
isLegacyChampSelect: boolean
|
|
2836
3072
|
isCustomGame: boolean
|
|
2837
3073
|
}
|
|
2838
3074
|
|
|
@@ -3702,7 +3938,7 @@ export interface LolChatBlockedPlayerResource {
|
|
|
3702
3938
|
}
|
|
3703
3939
|
|
|
3704
3940
|
export interface LolChatChampSelection {
|
|
3705
|
-
|
|
3941
|
+
puuid: string
|
|
3706
3942
|
/** @format int32 */
|
|
3707
3943
|
championId: number
|
|
3708
3944
|
/** @format int32 */
|
|
@@ -4433,10 +4669,9 @@ export interface LolChatSummonerStatus {
|
|
|
4433
4669
|
}
|
|
4434
4670
|
|
|
4435
4671
|
export interface LolChatTeamPlayerEntry {
|
|
4672
|
+
puuid: string
|
|
4436
4673
|
/** @format uint64 */
|
|
4437
4674
|
summonerId: number
|
|
4438
|
-
summonerInternalName: string
|
|
4439
|
-
summonerName: string
|
|
4440
4675
|
}
|
|
4441
4676
|
|
|
4442
4677
|
export interface LolChatTranslateRequest {
|
|
@@ -5757,152 +5992,6 @@ export interface LolCollectionsTopChampionMasteries {
|
|
|
5757
5992
|
masteries: LolCollectionsChampionMastery[]
|
|
5758
5993
|
}
|
|
5759
5994
|
|
|
5760
|
-
export interface LolContentTargetingAccountIdAndSummonerId {
|
|
5761
|
-
/** @format uint64 */
|
|
5762
|
-
summonerId: number
|
|
5763
|
-
}
|
|
5764
|
-
|
|
5765
|
-
export interface LolContentTargetingContentTargetingFilterResponse {
|
|
5766
|
-
filters: string[]
|
|
5767
|
-
}
|
|
5768
|
-
|
|
5769
|
-
export interface LolContentTargetingContentTargetingLocaleResponse {
|
|
5770
|
-
locale: string
|
|
5771
|
-
}
|
|
5772
|
-
|
|
5773
|
-
export interface LolContentTargetingDataModelResponse {
|
|
5774
|
-
/** @format int64 */
|
|
5775
|
-
responseCode: number
|
|
5776
|
-
modelData: unknown
|
|
5777
|
-
}
|
|
5778
|
-
|
|
5779
|
-
export interface LolContentTargetingGameflowGameData {
|
|
5780
|
-
/** @format uint64 */
|
|
5781
|
-
gameId: number
|
|
5782
|
-
queue: LolContentTargetingQueue
|
|
5783
|
-
}
|
|
5784
|
-
|
|
5785
|
-
export type LolContentTargetingGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
5786
|
-
|
|
5787
|
-
export interface LolContentTargetingGameflowSession {
|
|
5788
|
-
phase: LolContentTargetingGameflowPhase
|
|
5789
|
-
gameData: LolContentTargetingGameflowGameData
|
|
5790
|
-
}
|
|
5791
|
-
|
|
5792
|
-
export interface LolContentTargetingGeoInfo {
|
|
5793
|
-
country: string
|
|
5794
|
-
city: string
|
|
5795
|
-
region: string
|
|
5796
|
-
}
|
|
5797
|
-
|
|
5798
|
-
export interface LolContentTargetingGeoInfoResponse {
|
|
5799
|
-
success: boolean
|
|
5800
|
-
geoInfo: LolContentTargetingGeoInfo
|
|
5801
|
-
errorMessage: string
|
|
5802
|
-
isLatest: boolean
|
|
5803
|
-
isInitialized: boolean
|
|
5804
|
-
}
|
|
5805
|
-
|
|
5806
|
-
export interface LolContentTargetingLoginSession {
|
|
5807
|
-
state: LolContentTargetingLoginSessionState
|
|
5808
|
-
/** @format uint64 */
|
|
5809
|
-
summonerId: number
|
|
5810
|
-
puuid: string
|
|
5811
|
-
idToken: string
|
|
5812
|
-
}
|
|
5813
|
-
|
|
5814
|
-
export type LolContentTargetingLoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
5815
|
-
|
|
5816
|
-
export interface LolContentTargetingMission {
|
|
5817
|
-
id: string
|
|
5818
|
-
status: string
|
|
5819
|
-
/** @format int64 */
|
|
5820
|
-
completedDate: number
|
|
5821
|
-
internalName: string
|
|
5822
|
-
}
|
|
5823
|
-
|
|
5824
|
-
export interface LolContentTargetingPlatformConfig {
|
|
5825
|
-
Enabled: boolean
|
|
5826
|
-
Mapping: string
|
|
5827
|
-
LevelFilterEnabled: boolean
|
|
5828
|
-
RankedFilterEnabled: boolean
|
|
5829
|
-
LocationFiltersEnabled: boolean
|
|
5830
|
-
RankFilterEnabled: boolean
|
|
5831
|
-
ABTestFilterEnabled: boolean
|
|
5832
|
-
/** @format uint64 */
|
|
5833
|
-
ABTestFilterGroups: number
|
|
5834
|
-
/** @format uint64 */
|
|
5835
|
-
ABTestFilterSalt: number
|
|
5836
|
-
EntitlementsFilterEnabled: boolean
|
|
5837
|
-
MasteryFilterEnabled: boolean
|
|
5838
|
-
/** @format uint32 */
|
|
5839
|
-
MasteryFilterLevelThreshold: number
|
|
5840
|
-
/** @format uint32 */
|
|
5841
|
-
MasteryFilterDaysSinceLastPlayed: number
|
|
5842
|
-
/** @format uint32 */
|
|
5843
|
-
MasteryFilterChampionLimit: number
|
|
5844
|
-
MainFilterEnabled: boolean
|
|
5845
|
-
EntitlementsPrefix: string
|
|
5846
|
-
TargetingAttributeStorageEnabled: boolean
|
|
5847
|
-
TargetingAttributeStorageBaseUri: string
|
|
5848
|
-
MissionsFilterEnabled: boolean
|
|
5849
|
-
SummonerIconFilterEnabled: boolean
|
|
5850
|
-
/** @format uint32 */
|
|
5851
|
-
AsynchronousEventHandlerSetupDelayInSeconds: number
|
|
5852
|
-
/** @format uint32 */
|
|
5853
|
-
TasIngestionDelayInSeconds: number
|
|
5854
|
-
}
|
|
5855
|
-
|
|
5856
|
-
export interface LolContentTargetingQueue {
|
|
5857
|
-
/** @format int32 */
|
|
5858
|
-
id: number
|
|
5859
|
-
/** @format int32 */
|
|
5860
|
-
mapId: number
|
|
5861
|
-
gameMode: string
|
|
5862
|
-
category: LolContentTargetingQueueGameCategory
|
|
5863
|
-
}
|
|
5864
|
-
|
|
5865
|
-
export type LolContentTargetingQueueGameCategory = "Alpha" | "VersusAi" | "PvP" | "Custom" | "None"
|
|
5866
|
-
|
|
5867
|
-
export type LolContentTargetingRankedDivision = "V" | "IV" | "III" | "II" | "I" | "NA"
|
|
5868
|
-
|
|
5869
|
-
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"
|
|
5870
|
-
|
|
5871
|
-
export interface LolContentTargetingRankedQueueStats {
|
|
5872
|
-
queueType: LolContentTargetingRankedQueue
|
|
5873
|
-
tier: string
|
|
5874
|
-
division: LolContentTargetingRankedDivision
|
|
5875
|
-
isProvisional: boolean
|
|
5876
|
-
}
|
|
5877
|
-
|
|
5878
|
-
export interface LolContentTargetingRankedStats {
|
|
5879
|
-
queues: LolContentTargetingRankedQueueStats[]
|
|
5880
|
-
highestRankedEntry?: LolContentTargetingRankedQueueStats
|
|
5881
|
-
}
|
|
5882
|
-
|
|
5883
|
-
export interface LolContentTargetingRegionLocale {
|
|
5884
|
-
locale: string
|
|
5885
|
-
}
|
|
5886
|
-
|
|
5887
|
-
export interface LolContentTargetingSettingsResource {
|
|
5888
|
-
data: unknown
|
|
5889
|
-
}
|
|
5890
|
-
|
|
5891
|
-
export interface LolContentTargetingSummoner {
|
|
5892
|
-
/** @format uint32 */
|
|
5893
|
-
summonerLevel: number
|
|
5894
|
-
/** @format int32 */
|
|
5895
|
-
profileIconId: number
|
|
5896
|
-
}
|
|
5897
|
-
|
|
5898
|
-
export interface LolContentTargetingTargetingAttributes {
|
|
5899
|
-
result: Record<string, unknown>
|
|
5900
|
-
}
|
|
5901
|
-
|
|
5902
|
-
export interface LolContentTargetingToken {
|
|
5903
|
-
entitlements: string[]
|
|
5904
|
-
}
|
|
5905
|
-
|
|
5906
5995
|
export interface LolCosmeticsAccountSettingsCategoryDataResource {
|
|
5907
5996
|
typeToLastOpenedDate: Record<string, number>
|
|
5908
5997
|
}
|
|
@@ -6460,12 +6549,6 @@ export interface LolDropsCapDropsDropTableDisplayMetadata {
|
|
|
6460
6549
|
oddsTree: LolDropsCapDropsOddsTreeNodeDTO
|
|
6461
6550
|
}
|
|
6462
6551
|
|
|
6463
|
-
export interface LolDropsCapDropsDropTablePityInfo {
|
|
6464
|
-
/** @format uint8 */
|
|
6465
|
-
pityLimit: number
|
|
6466
|
-
chaseContentIds: string[]
|
|
6467
|
-
}
|
|
6468
|
-
|
|
6469
6552
|
export interface LolDropsCapDropsDropTableWithPityDTO {
|
|
6470
6553
|
id: string
|
|
6471
6554
|
sourceId: string
|
|
@@ -6476,8 +6559,6 @@ export interface LolDropsCapDropsDropTableWithPityDTO {
|
|
|
6476
6559
|
rollOffer: string
|
|
6477
6560
|
/** @format uint16 */
|
|
6478
6561
|
cost: number
|
|
6479
|
-
totalRollsInfo: LolDropsTotalRollsInfoDTO
|
|
6480
|
-
pityInfo: LolDropsCapDropsDropTablePityInfo
|
|
6481
6562
|
displayMetadata: LolDropsCapDropsDropTableDisplayMetadata
|
|
6482
6563
|
}
|
|
6483
6564
|
|
|
@@ -6508,12 +6589,6 @@ export interface LolDropsOddsTableDisplayMetadata {
|
|
|
6508
6589
|
priority: number
|
|
6509
6590
|
}
|
|
6510
6591
|
|
|
6511
|
-
export interface LolDropsTotalRollsInfoDTO {
|
|
6512
|
-
totalRollsCounterId: string
|
|
6513
|
-
/** @format uint8 */
|
|
6514
|
-
maxTotalRolls: number
|
|
6515
|
-
}
|
|
6516
|
-
|
|
6517
6592
|
export type LolDx9DeprecationDx9DeprecationNotificationType = "TURN_OFF_DX9_LEGACY_MODE" | "HARDWARE_UPGRADE" | "NONE"
|
|
6518
6593
|
|
|
6519
6594
|
export interface LolDx9DeprecationLocalSettingsCategory {
|
|
@@ -6608,6 +6683,8 @@ export interface LolEndOfGameEndOfGamePlayer {
|
|
|
6608
6683
|
stats: unknown
|
|
6609
6684
|
items: number[]
|
|
6610
6685
|
puuid: string
|
|
6686
|
+
riotIdGameName: string
|
|
6687
|
+
riotIdTagLine: string
|
|
6611
6688
|
botPlayer: boolean
|
|
6612
6689
|
/** @format int32 */
|
|
6613
6690
|
championId: number
|
|
@@ -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
|
|
|
@@ -9070,6 +9153,7 @@ export interface LolGameQueuesQueue {
|
|
|
9070
9153
|
removalFromGameAllowed: boolean
|
|
9071
9154
|
/** @format int32 */
|
|
9072
9155
|
removalFromGameDelayMinutes: number
|
|
9156
|
+
hidePlayerPosition: boolean
|
|
9073
9157
|
gameSelectModeGroup: string
|
|
9074
9158
|
gameSelectCategory: string
|
|
9075
9159
|
/** @format uint8 */
|
|
@@ -9166,6 +9250,7 @@ export interface LolGameQueuesQueueTranslation {
|
|
|
9166
9250
|
/** @format uint8 */
|
|
9167
9251
|
gameSelectPriority: number
|
|
9168
9252
|
isSkillTreeQueue: boolean
|
|
9253
|
+
hidePlayerPosition: boolean
|
|
9169
9254
|
}
|
|
9170
9255
|
|
|
9171
9256
|
export interface LolGameSettingsLoginSession {
|
|
@@ -9435,44 +9520,6 @@ export interface LolGameflowSpectateGameInfoResource {
|
|
|
9435
9520
|
puuid: string
|
|
9436
9521
|
}
|
|
9437
9522
|
|
|
9438
|
-
export interface LolGeoinfoGeoInfo {
|
|
9439
|
-
country: string
|
|
9440
|
-
city: string
|
|
9441
|
-
region: string
|
|
9442
|
-
}
|
|
9443
|
-
|
|
9444
|
-
export interface LolGeoinfoGeoInfoConfig {
|
|
9445
|
-
Enabled: boolean
|
|
9446
|
-
}
|
|
9447
|
-
|
|
9448
|
-
export interface LolGeoinfoGeoInfoResponse {
|
|
9449
|
-
success: boolean
|
|
9450
|
-
geoInfo: LolGeoinfoGeoInfo
|
|
9451
|
-
errorMessage: string
|
|
9452
|
-
isLatest: boolean
|
|
9453
|
-
isInitialized: boolean
|
|
9454
|
-
}
|
|
9455
|
-
|
|
9456
|
-
export interface LolGeoinfoLoginSession {
|
|
9457
|
-
state: LolGeoinfoLoginSessionState
|
|
9458
|
-
/** @format uint64 */
|
|
9459
|
-
summonerId: number
|
|
9460
|
-
/** @format uint64 */
|
|
9461
|
-
accountId: number
|
|
9462
|
-
}
|
|
9463
|
-
|
|
9464
|
-
export type LolGeoinfoLoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
9465
|
-
|
|
9466
|
-
export interface LolGeoinfoWhereAmIRequest {
|
|
9467
|
-
ipAddress: string
|
|
9468
|
-
}
|
|
9469
|
-
|
|
9470
|
-
export interface LolGeoinfoWhereAmIResponse {
|
|
9471
|
-
country: string
|
|
9472
|
-
city: string
|
|
9473
|
-
region: string
|
|
9474
|
-
}
|
|
9475
|
-
|
|
9476
9523
|
export interface LolHeartbeatLcdsConnection {
|
|
9477
9524
|
stableConnection: boolean
|
|
9478
9525
|
}
|
|
@@ -11649,6 +11696,7 @@ export interface LolLobbyQueue {
|
|
|
11649
11696
|
removalFromGameAllowed: boolean
|
|
11650
11697
|
/** @format int32 */
|
|
11651
11698
|
removalFromGameDelayMinutes: number
|
|
11699
|
+
hidePlayerPosition: boolean
|
|
11652
11700
|
gameSelectModeGroup: string
|
|
11653
11701
|
gameSelectCategory: string
|
|
11654
11702
|
/** @format uint8 */
|
|
@@ -12018,6 +12066,8 @@ export interface LolLobbyTeamBuilderChampSelectSession {
|
|
|
12018
12066
|
isSpectating: boolean
|
|
12019
12067
|
hasSimultaneousBans: boolean
|
|
12020
12068
|
hasSimultaneousPicks: boolean
|
|
12069
|
+
showQuitButton: boolean
|
|
12070
|
+
isLegacyChampSelect: boolean
|
|
12021
12071
|
}
|
|
12022
12072
|
|
|
12023
12073
|
export interface LolLobbyTeamBuilderChampSelectSwapContract {
|
|
@@ -12097,6 +12147,7 @@ export interface LolLobbyTeamBuilderChampionSelectStateV1 {
|
|
|
12097
12147
|
inventoryDraft: LolLobbyTeamBuilderTbdInventory
|
|
12098
12148
|
skipChampionSelect: boolean
|
|
12099
12149
|
isSpectating: boolean
|
|
12150
|
+
showQuitButton: boolean
|
|
12100
12151
|
}
|
|
12101
12152
|
|
|
12102
12153
|
export interface LolLobbyTeamBuilderCountdownTimer {
|
|
@@ -13463,13 +13514,16 @@ export interface LolLootRewardsConfig {
|
|
|
13463
13514
|
}
|
|
13464
13515
|
|
|
13465
13516
|
export interface LolLootRewardsSkinLineInfo {
|
|
13466
|
-
productType: string
|
|
13467
13517
|
tiers: LolLootRewardsSkinLineTier[]
|
|
13518
|
+
mostProgressedSkinTier: LolLootRewardsSkinLineTier
|
|
13519
|
+
productType: string
|
|
13468
13520
|
}
|
|
13469
13521
|
|
|
13470
13522
|
export interface LolLootRewardsSkinLineTier {
|
|
13471
13523
|
/** @format int64 */
|
|
13472
13524
|
stage: number
|
|
13525
|
+
name: string
|
|
13526
|
+
uncenteredSplashPath: string
|
|
13473
13527
|
ownership: LolLootRewardsSkinLineTierOwnership
|
|
13474
13528
|
}
|
|
13475
13529
|
|
|
@@ -13689,7 +13743,7 @@ export interface LolMacGraphicsUpgradeLocalSettingsCategory {
|
|
|
13689
13743
|
schemaVersion: number
|
|
13690
13744
|
}
|
|
13691
13745
|
|
|
13692
|
-
export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "
|
|
13746
|
+
export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "SUPPORTED_HARDWARE" | "HARDWARE_UPGRADE" | "NONE"
|
|
13693
13747
|
|
|
13694
13748
|
export interface LolMapsGameModeSpellList {
|
|
13695
13749
|
spells: number[]
|
|
@@ -13735,6 +13789,10 @@ export interface LolMarketplaceCatalogEntryDto {
|
|
|
13735
13789
|
endTime: string
|
|
13736
13790
|
purchaseUnits: LolMarketplacePurchaseUnitDto[]
|
|
13737
13791
|
displayMetadata: unknown
|
|
13792
|
+
refundRule: string
|
|
13793
|
+
giftRule: string
|
|
13794
|
+
prerequisites: LolMarketplacePrerequisiteDto[]
|
|
13795
|
+
purchaseLimits: LolMarketplaceVelocityLimitDeltaDto[]
|
|
13738
13796
|
}
|
|
13739
13797
|
|
|
13740
13798
|
export interface LolMarketplaceFinalPurchaseUnitDto {
|
|
@@ -13752,6 +13810,7 @@ export interface LolMarketplaceFulfillmentDto {
|
|
|
13752
13810
|
maxQuantity: number
|
|
13753
13811
|
/** @format uint64 */
|
|
13754
13812
|
ownedQuantity: number
|
|
13813
|
+
ownershipCompensationMode: string
|
|
13755
13814
|
itemTypeId: string
|
|
13756
13815
|
itemId: string
|
|
13757
13816
|
currencyId: string
|
|
@@ -13791,11 +13850,21 @@ export interface LolMarketplacePaymentOptionDto {
|
|
|
13791
13850
|
payments: LolMarketplacePaymentDto[]
|
|
13792
13851
|
}
|
|
13793
13852
|
|
|
13853
|
+
export interface LolMarketplacePrerequisiteDto {
|
|
13854
|
+
status: string
|
|
13855
|
+
itemTypeId: string
|
|
13856
|
+
itemId: string
|
|
13857
|
+
/** @format uint16 */
|
|
13858
|
+
requiredQuantity: number
|
|
13859
|
+
}
|
|
13860
|
+
|
|
13794
13861
|
export interface LolMarketplacePurchaseDto {
|
|
13795
13862
|
id: string
|
|
13796
13863
|
productId: string
|
|
13797
13864
|
storeId: string
|
|
13865
|
+
storeName: string
|
|
13798
13866
|
catalogEntryId: string
|
|
13867
|
+
catalogEntryName: string
|
|
13799
13868
|
purchaserId: string
|
|
13800
13869
|
recipientId: string
|
|
13801
13870
|
purchaseUnits: LolMarketplaceFinalPurchaseUnitDto[]
|
|
@@ -13808,6 +13877,13 @@ export interface LolMarketplacePurchaseDto {
|
|
|
13808
13877
|
source: string
|
|
13809
13878
|
}
|
|
13810
13879
|
|
|
13880
|
+
export interface LolMarketplacePurchaseErrorMessageDto {
|
|
13881
|
+
/** @format int32 */
|
|
13882
|
+
httpStatus: number
|
|
13883
|
+
errorCode: string
|
|
13884
|
+
message: string
|
|
13885
|
+
}
|
|
13886
|
+
|
|
13811
13887
|
export interface LolMarketplacePurchaseHistoryResponse {
|
|
13812
13888
|
data: LolMarketplacePurchaseDto[]
|
|
13813
13889
|
paging: LolMarketplacePagination
|
|
@@ -13911,6 +13987,18 @@ export interface LolMarketplaceRiotMessagingServiceMessage {
|
|
|
13911
13987
|
payload: string
|
|
13912
13988
|
}
|
|
13913
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
|
+
|
|
13914
14002
|
export interface LolMarketplaceRotationalShopItemData {
|
|
13915
14003
|
backgroundTextureLCU: string
|
|
13916
14004
|
contentID: string
|
|
@@ -13920,6 +14008,8 @@ export interface LolMarketplaceRotationalShopItemData {
|
|
|
13920
14008
|
standaloneLoadoutsLargeIcon: string
|
|
13921
14009
|
videoID: string
|
|
13922
14010
|
redeemIconTexture: string
|
|
14011
|
+
rarity: string
|
|
14012
|
+
typeID: string
|
|
13923
14013
|
}
|
|
13924
14014
|
|
|
13925
14015
|
export interface LolMarketplaceStoreDto {
|
|
@@ -13943,6 +14033,20 @@ export interface LolMarketplaceTraKeyName {
|
|
|
13943
14033
|
translatedName: string
|
|
13944
14034
|
}
|
|
13945
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
|
+
|
|
13946
14050
|
export interface LolMatchHistoryAcsEndPoint {
|
|
13947
14051
|
url: string
|
|
13948
14052
|
}
|
|
@@ -14863,11 +14967,6 @@ export interface LolNachoCatalogItemPurchaseRequest {
|
|
|
14863
14967
|
paymentOptions: string[]
|
|
14864
14968
|
}
|
|
14865
14969
|
|
|
14866
|
-
export interface LolNachoClientConfigNachoBanners {
|
|
14867
|
-
enabled: boolean
|
|
14868
|
-
bannerList: LolNachoNachoActiveBanner[]
|
|
14869
|
-
}
|
|
14870
|
-
|
|
14871
14970
|
export interface LolNachoDropsOddsTreeNodeDTO {
|
|
14872
14971
|
nodeId: string
|
|
14873
14972
|
/** @format float */
|
|
@@ -14884,23 +14983,6 @@ export interface LolNachoDropsOddsTreeNodeDTO {
|
|
|
14884
14983
|
quantity: number
|
|
14885
14984
|
}
|
|
14886
14985
|
|
|
14887
|
-
export interface LolNachoFinalPurchaseUnitDto {
|
|
14888
|
-
fulfillment: LolNachoFulfillmentDto
|
|
14889
|
-
}
|
|
14890
|
-
|
|
14891
|
-
export interface LolNachoFulfillmentDto {
|
|
14892
|
-
name: string
|
|
14893
|
-
itemTypeId: string
|
|
14894
|
-
itemId: string
|
|
14895
|
-
itemInstanceId: string
|
|
14896
|
-
tierTypeId: string
|
|
14897
|
-
/** @format int64 */
|
|
14898
|
-
finalDelta: number
|
|
14899
|
-
/** @format int64 */
|
|
14900
|
-
delta: number
|
|
14901
|
-
results: unknown
|
|
14902
|
-
}
|
|
14903
|
-
|
|
14904
14986
|
export interface LolNachoGameDataBannerSkin {
|
|
14905
14987
|
/** @format uint32 */
|
|
14906
14988
|
id: number
|
|
@@ -14917,8 +14999,6 @@ export interface LolNachoGameDataNachoBanner {
|
|
|
14917
14999
|
highlightPityThreshold: number
|
|
14918
15000
|
bannerBackgroundTexture: string
|
|
14919
15001
|
bannerBackgroundParallax: string
|
|
14920
|
-
name: string
|
|
14921
|
-
description: string
|
|
14922
15002
|
bannerChaseAnimationWebmPath: string
|
|
14923
15003
|
bannerChaseAnimationParallax: string
|
|
14924
15004
|
rollVignetteSkinIntroWebmPath: string
|
|
@@ -14931,19 +15011,6 @@ export interface LolNachoGameDataNachoBanner {
|
|
|
14931
15011
|
bannerCurrency: LolNachoGameDataNachoCurrency
|
|
14932
15012
|
}
|
|
14933
15013
|
|
|
14934
|
-
export interface LolNachoGameDataNachoBannerTable {
|
|
14935
|
-
id: string
|
|
14936
|
-
name: string
|
|
14937
|
-
translatedName: string
|
|
14938
|
-
rewardTexturePath: string
|
|
14939
|
-
chromaRewardTexturePath: string
|
|
14940
|
-
children: LolNachoGameDataNachoBannerTableEntry[]
|
|
14941
|
-
}
|
|
14942
|
-
|
|
14943
|
-
export interface LolNachoGameDataNachoBannerTableEntry {
|
|
14944
|
-
bannerNode: LolNachoGameDataNachoBannerTable
|
|
14945
|
-
}
|
|
14946
|
-
|
|
14947
15014
|
export interface LolNachoGameDataNachoBannerVo {
|
|
14948
15015
|
path: string
|
|
14949
15016
|
/** @format uint32 */
|
|
@@ -14978,32 +15045,10 @@ export interface LolNachoGameDataPityCounter {
|
|
|
14978
15045
|
name: string
|
|
14979
15046
|
}
|
|
14980
15047
|
|
|
14981
|
-
export interface LolNachoLoginSession {
|
|
14982
|
-
state: LolNachoLoginSessionStates
|
|
14983
|
-
/** @format uint64 */
|
|
14984
|
-
summonerId: number
|
|
14985
|
-
/** @format uint64 */
|
|
14986
|
-
accountId: number
|
|
14987
|
-
puuid: string
|
|
14988
|
-
}
|
|
14989
|
-
|
|
14990
|
-
export type LolNachoLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
14991
|
-
|
|
14992
|
-
export interface LolNachoNachoActiveBanner {
|
|
14993
|
-
bannerId: string
|
|
14994
|
-
storeId: string
|
|
14995
|
-
catalogEntryId: string
|
|
14996
|
-
tokenCatalogEntryId: string
|
|
14997
|
-
/** @format uint8 */
|
|
14998
|
-
version: number
|
|
14999
|
-
}
|
|
15000
|
-
|
|
15001
15048
|
export interface LolNachoNachoBannersResponse {
|
|
15002
15049
|
id: string
|
|
15003
15050
|
bannerBackgroundTexture: string
|
|
15004
15051
|
bannerBackgroundParallax: string
|
|
15005
|
-
name: string
|
|
15006
|
-
description: string
|
|
15007
15052
|
bannerChaseAnimationWebmPath: string
|
|
15008
15053
|
bannerChaseAnimationParallax: string
|
|
15009
15054
|
chasePityCounter: LolNachoGameDataPityCounter
|
|
@@ -15072,28 +15117,6 @@ export interface LolNachoNachoVignette {
|
|
|
15072
15117
|
introTierThreeMultiWebmPath: string
|
|
15073
15118
|
}
|
|
15074
15119
|
|
|
15075
|
-
export interface LolNachoPaymentDto {
|
|
15076
|
-
/** @format double */
|
|
15077
|
-
discountPercent: number
|
|
15078
|
-
/** @format int64 */
|
|
15079
|
-
discountedDelta: number
|
|
15080
|
-
name: string
|
|
15081
|
-
/** @format int64 */
|
|
15082
|
-
finalDelta: number
|
|
15083
|
-
/** @format int64 */
|
|
15084
|
-
delta: number
|
|
15085
|
-
}
|
|
15086
|
-
|
|
15087
|
-
export interface LolNachoPaymentOptionDto {
|
|
15088
|
-
key: string
|
|
15089
|
-
payments: LolNachoPaymentDto[]
|
|
15090
|
-
}
|
|
15091
|
-
|
|
15092
|
-
export interface LolNachoPurchaseUnitDto {
|
|
15093
|
-
paymentOptions: LolNachoPaymentOptionDto[]
|
|
15094
|
-
fulfillment: LolNachoFulfillmentDto
|
|
15095
|
-
}
|
|
15096
|
-
|
|
15097
15120
|
export interface LolNachoSanctumDisplayMetaData {
|
|
15098
15121
|
bannerId: string
|
|
15099
15122
|
}
|
|
@@ -15102,52 +15125,12 @@ export interface LolNachoSetActiveStoresRequest {
|
|
|
15102
15125
|
storeIds: string[]
|
|
15103
15126
|
}
|
|
15104
15127
|
|
|
15105
|
-
export interface LolNachoShoppeCatalogEntry {
|
|
15106
|
-
id: string
|
|
15107
|
-
name: string
|
|
15108
|
-
productId: string
|
|
15109
|
-
purchaseUnits: LolNachoPurchaseUnitDto[]
|
|
15110
|
-
endTime: string
|
|
15111
|
-
purchaseVisibility: string
|
|
15112
|
-
refundRule: string
|
|
15113
|
-
purchaseLimits: LolNachoVelocityLimitDeltaDto[]
|
|
15114
|
-
}
|
|
15115
|
-
|
|
15116
|
-
export interface LolNachoStore {
|
|
15117
|
-
id: string
|
|
15118
|
-
productId: string
|
|
15119
|
-
name: string
|
|
15120
|
-
catalogEntries: LolNachoShoppeCatalogEntry[]
|
|
15121
|
-
displayMetadata: unknown
|
|
15122
|
-
}
|
|
15123
|
-
|
|
15124
|
-
export interface LolNachoStoreDigest {
|
|
15125
|
-
id: string
|
|
15126
|
-
displayMetadata: unknown
|
|
15127
|
-
}
|
|
15128
|
-
|
|
15129
|
-
export interface LolNachoStoreDigests {
|
|
15130
|
-
digests: LolNachoStoreDigest[]
|
|
15131
|
-
}
|
|
15132
|
-
|
|
15133
15128
|
export interface LolNachoStoreSanctumDisplayMetaData {
|
|
15134
15129
|
startDate: string
|
|
15135
15130
|
endDate: string
|
|
15136
15131
|
sanctum: LolNachoSanctumDisplayMetaData
|
|
15137
15132
|
}
|
|
15138
15133
|
|
|
15139
|
-
export interface LolNachoStoresResponse {
|
|
15140
|
-
data: LolNachoStore[]
|
|
15141
|
-
}
|
|
15142
|
-
|
|
15143
|
-
export interface LolNachoVelocityLimitDeltaDto {
|
|
15144
|
-
ruleId: string
|
|
15145
|
-
/** @format int64 */
|
|
15146
|
-
delta: number
|
|
15147
|
-
/** @format int64 */
|
|
15148
|
-
remaining: number
|
|
15149
|
-
}
|
|
15150
|
-
|
|
15151
15134
|
export interface LolNpeRewardsAccountSettingsData {
|
|
15152
15135
|
login: LolNpeRewardsLoginSeriesSettings
|
|
15153
15136
|
challenges: LolNpeRewardsChallengesSettings
|
|
@@ -16877,63 +16860,6 @@ export interface LolPlayerBehaviorUserInfoToken {
|
|
|
16877
16860
|
ban: LolPlayerBehaviorUserInfoBanData
|
|
16878
16861
|
}
|
|
16879
16862
|
|
|
16880
|
-
export interface LolPlayerLevelUpEndOfGameStats {
|
|
16881
|
-
gameMode: string
|
|
16882
|
-
gameMutators: string[]
|
|
16883
|
-
gameType: string
|
|
16884
|
-
queueType: string
|
|
16885
|
-
leveledUp: boolean
|
|
16886
|
-
newSpells: number[]
|
|
16887
|
-
/** @format uint32 */
|
|
16888
|
-
previousLevel: number
|
|
16889
|
-
/** @format int32 */
|
|
16890
|
-
rpEarned: number
|
|
16891
|
-
}
|
|
16892
|
-
|
|
16893
|
-
export interface LolPlayerLevelUpGameDataSummonerSpell {
|
|
16894
|
-
/** @format uint64 */
|
|
16895
|
-
id: number
|
|
16896
|
-
/** @format uint32 */
|
|
16897
|
-
summonerLevel: number
|
|
16898
|
-
}
|
|
16899
|
-
|
|
16900
|
-
export interface LolPlayerLevelUpLoginSession {
|
|
16901
|
-
state: LolPlayerLevelUpLoginSessionStates
|
|
16902
|
-
/** @format uint64 */
|
|
16903
|
-
summonerId: number
|
|
16904
|
-
/** @format uint64 */
|
|
16905
|
-
accountId: number
|
|
16906
|
-
}
|
|
16907
|
-
|
|
16908
|
-
export type LolPlayerLevelUpLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
16909
|
-
|
|
16910
|
-
export interface LolPlayerLevelUpPlayerLevelUpEvent {
|
|
16911
|
-
switchedToStandardFreeToPlayChampRotation: boolean
|
|
16912
|
-
nowHasAccessToPublicChatRooms: boolean
|
|
16913
|
-
nowHasAccessToLoot: boolean
|
|
16914
|
-
leveledUp: boolean
|
|
16915
|
-
/** @format uint32 */
|
|
16916
|
-
newSummonerLevel: number
|
|
16917
|
-
newRuneSlotUnlocked: boolean
|
|
16918
|
-
/** @format int32 */
|
|
16919
|
-
rpEarned: number
|
|
16920
|
-
newSpells: number[]
|
|
16921
|
-
newQueues: number[]
|
|
16922
|
-
}
|
|
16923
|
-
|
|
16924
|
-
export interface LolPlayerLevelUpPlayerLevelUpEventAck {
|
|
16925
|
-
seenThisEvent: boolean
|
|
16926
|
-
/** @format uint32 */
|
|
16927
|
-
newSummonerLevel: number
|
|
16928
|
-
}
|
|
16929
|
-
|
|
16930
|
-
export interface LolPlayerLevelUpQueue {
|
|
16931
|
-
/** @format int32 */
|
|
16932
|
-
id: number
|
|
16933
|
-
/** @format uint32 */
|
|
16934
|
-
minLevel: number
|
|
16935
|
-
}
|
|
16936
|
-
|
|
16937
16863
|
export interface LolPlayerMessagingDynamicCelebrationMessagingNotificationResource {
|
|
16938
16864
|
/** @format int32 */
|
|
16939
16865
|
id: number
|
|
@@ -19581,13 +19507,16 @@ export interface LolRewardTrackRewardsConfig {
|
|
|
19581
19507
|
}
|
|
19582
19508
|
|
|
19583
19509
|
export interface LolRewardTrackRewardsSkinLineInfo {
|
|
19584
|
-
productType: string
|
|
19585
19510
|
tiers: LolRewardTrackRewardsSkinLineTier[]
|
|
19511
|
+
mostProgressedSkinTier: LolRewardTrackRewardsSkinLineTier
|
|
19512
|
+
productType: string
|
|
19586
19513
|
}
|
|
19587
19514
|
|
|
19588
19515
|
export interface LolRewardTrackRewardsSkinLineTier {
|
|
19589
19516
|
/** @format int64 */
|
|
19590
19517
|
stage: number
|
|
19518
|
+
name: string
|
|
19519
|
+
uncenteredSplashPath: string
|
|
19591
19520
|
ownership: LolRewardTrackRewardsSkinLineTierOwnership
|
|
19592
19521
|
}
|
|
19593
19522
|
|
|
@@ -19818,13 +19747,16 @@ export interface LolRewardsRewardsConfig {
|
|
|
19818
19747
|
}
|
|
19819
19748
|
|
|
19820
19749
|
export interface LolRewardsRewardsSkinLineInfo {
|
|
19821
|
-
productType: string
|
|
19822
19750
|
tiers: LolRewardsRewardsSkinLineTier[]
|
|
19751
|
+
mostProgressedSkinTier: LolRewardsRewardsSkinLineTier
|
|
19752
|
+
productType: string
|
|
19823
19753
|
}
|
|
19824
19754
|
|
|
19825
19755
|
export interface LolRewardsRewardsSkinLineTier {
|
|
19826
19756
|
/** @format int64 */
|
|
19827
19757
|
stage: number
|
|
19758
|
+
name: string
|
|
19759
|
+
uncenteredSplashPath: string
|
|
19828
19760
|
ownership: LolRewardsRewardsSkinLineTierOwnership
|
|
19829
19761
|
}
|
|
19830
19762
|
|
|
@@ -21542,6 +21474,7 @@ export interface LolTftEventLolTftEvent {
|
|
|
21542
21474
|
dailyLoginSeriesId: string
|
|
21543
21475
|
queueIds: number[]
|
|
21544
21476
|
defaultLandingPage: boolean
|
|
21477
|
+
eventHubAssetKey: string
|
|
21545
21478
|
eventHubTemplateType: string
|
|
21546
21479
|
eventFuture: boolean
|
|
21547
21480
|
weblinkSubnavs: LolTftEventLolTftEventWebLinkSubnav[]
|
|
@@ -21795,6 +21728,7 @@ export interface LolTftLolTftEvent {
|
|
|
21795
21728
|
dailyLoginSeriesId: string
|
|
21796
21729
|
queueIds: number[]
|
|
21797
21730
|
defaultLandingPage: boolean
|
|
21731
|
+
eventHubAssetKey: string
|
|
21798
21732
|
eventHubTemplateType: string
|
|
21799
21733
|
eventFuture: boolean
|
|
21800
21734
|
weblinkSubnavs: LolTftLolTftEventWebLinkSubnav[]
|
|
@@ -22921,7 +22855,6 @@ export interface LolTftTrovesDropsDropTableWithPityDTO {
|
|
|
22921
22855
|
rollOffer: string
|
|
22922
22856
|
/** @format int32 */
|
|
22923
22857
|
cost: number
|
|
22924
|
-
totalRollsInfo: LolTftTrovesTotalRollsInfoDTO
|
|
22925
22858
|
pityInfo: LolTftTrovesDropsDropTablePityInfo
|
|
22926
22859
|
displayMetadata: LolTftTrovesCapDropsDropTableDisplayMetadata
|
|
22927
22860
|
}
|
|
@@ -22967,7 +22900,6 @@ export interface LolTftTrovesGameDataTrovesBanner {
|
|
|
22967
22900
|
id: string
|
|
22968
22901
|
activationTime: string
|
|
22969
22902
|
deactivationTime: string
|
|
22970
|
-
pityCounterId: string
|
|
22971
22903
|
mythicTokenOfferId: string
|
|
22972
22904
|
/** @format uint32 */
|
|
22973
22905
|
pityThreshold: number
|
|
@@ -23153,12 +23085,6 @@ export interface LolTftTrovesRiotMessagingServiceMessage {
|
|
|
23153
23085
|
payload: string
|
|
23154
23086
|
}
|
|
23155
23087
|
|
|
23156
|
-
export interface LolTftTrovesTotalRollsInfoDTO {
|
|
23157
|
-
totalRollsCounterId: string
|
|
23158
|
-
/** @format uint16 */
|
|
23159
|
-
maxTotalRolls: number
|
|
23160
|
-
}
|
|
23161
|
-
|
|
23162
23088
|
export interface LolTftTrovesTrigger {
|
|
23163
23089
|
type: string
|
|
23164
23090
|
counterId: string
|
|
@@ -23176,7 +23102,6 @@ export interface LolTftTrovesTrovePurchaseResponse {
|
|
|
23176
23102
|
|
|
23177
23103
|
export interface LolTftTrovesTroves {
|
|
23178
23104
|
enabled: boolean
|
|
23179
|
-
useDisplayMetadata: boolean
|
|
23180
23105
|
bannerList?: LolTftTrovesTrovesActiveBanner[]
|
|
23181
23106
|
}
|
|
23182
23107
|
|
|
@@ -23205,7 +23130,6 @@ export interface LolTftTrovesTrovesBanner {
|
|
|
23205
23130
|
eventHubBannerTexture: string
|
|
23206
23131
|
name: string
|
|
23207
23132
|
description: string
|
|
23208
|
-
pityCounterId: string
|
|
23209
23133
|
isCollectorBounty: boolean
|
|
23210
23134
|
/** @format uint32 */
|
|
23211
23135
|
maxTotalRolls: number
|
|
@@ -23401,8 +23325,6 @@ export interface LolTftTrovesTrovesRollRequest {
|
|
|
23401
23325
|
|
|
23402
23326
|
export interface LolTftTrovesTrovesStatus {
|
|
23403
23327
|
ownedStatus: LolTftTrovesTrovesOwnedStatus[]
|
|
23404
|
-
/** @format uint8 */
|
|
23405
|
-
pityCount: number
|
|
23406
23328
|
dropTableId: string
|
|
23407
23329
|
hasPullError: boolean
|
|
23408
23330
|
/** @format uint16 */
|
|
@@ -24694,6 +24616,7 @@ export interface PlayerMissionDTO {
|
|
|
24694
24616
|
title: string
|
|
24695
24617
|
helperText: string
|
|
24696
24618
|
description: string
|
|
24619
|
+
missionLineText: string
|
|
24697
24620
|
backgroundImageUrl: string
|
|
24698
24621
|
iconImageUrl: string
|
|
24699
24622
|
seriesName: string
|