@hasagi/types 15.4.1 → 15.7.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 +126 -100
- package/dist/lcu-events.d.ts +92 -107
- package/dist/lcu-types.d.ts +649 -708
- package/package.json +4 -4
package/dist/lcu-types.d.ts
CHANGED
|
@@ -335,6 +335,286 @@ 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_RotatingStoreDigestDto {
|
|
512
|
+
id: string
|
|
513
|
+
productId: string
|
|
514
|
+
name: string
|
|
515
|
+
type: string
|
|
516
|
+
rotationCadence: string
|
|
517
|
+
displayMetadata: unknown
|
|
518
|
+
currRotationStartTime: string
|
|
519
|
+
nextRotationStartTime: string
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
export interface ChemtechShoppe_RotatingStoreDigestResponseDto {
|
|
523
|
+
data: ChemtechShoppe_RotatingStoreDigestsDto
|
|
524
|
+
paging: ChemtechShoppe_PagingDto
|
|
525
|
+
stats: ChemtechShoppe_StatsDto
|
|
526
|
+
notes: string[]
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
export interface ChemtechShoppe_RotatingStoreDigestsDto {
|
|
530
|
+
digests: ChemtechShoppe_RotatingStoreDigestDto[]
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
export interface ChemtechShoppe_RotatingStoreDto {
|
|
534
|
+
id: string
|
|
535
|
+
productId: string
|
|
536
|
+
name: string
|
|
537
|
+
type: string
|
|
538
|
+
slots: ChemtechShoppe_RotatingStoreSlotDto[]
|
|
539
|
+
rotationCadence: string
|
|
540
|
+
displayMetadata: unknown
|
|
541
|
+
currRotationStartTime: string
|
|
542
|
+
nextRotationStartTime: string
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
export interface ChemtechShoppe_RotatingStoreResponseDto {
|
|
546
|
+
data: ChemtechShoppe_RotatingStoreDto
|
|
547
|
+
paging: ChemtechShoppe_PagingDto
|
|
548
|
+
stats: ChemtechShoppe_StatsDto
|
|
549
|
+
notes: string[]
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
export interface ChemtechShoppe_RotatingStoreSlotDto {
|
|
553
|
+
/** @format int32 */
|
|
554
|
+
selectionCount: number
|
|
555
|
+
catalogEntries: ChemtechShoppe_CatalogEntryDto[]
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
export interface ChemtechShoppe_RotatingStoresResponseDto {
|
|
559
|
+
data: ChemtechShoppe_RotatingStoreDto[]
|
|
560
|
+
paging: ChemtechShoppe_PagingDto
|
|
561
|
+
stats: ChemtechShoppe_StatsDto
|
|
562
|
+
notes: string[]
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
export interface ChemtechShoppe_StatsDto {
|
|
566
|
+
/** @format int64 */
|
|
567
|
+
durationMs: number
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
export interface ChemtechShoppe_StoreDigestDto {
|
|
571
|
+
id: string
|
|
572
|
+
productId: string
|
|
573
|
+
name: string
|
|
574
|
+
displayMetaData: unknown
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
export interface ChemtechShoppe_StoreDigestsDto {
|
|
578
|
+
digests: ChemtechShoppe_StoreDigestDto[]
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
export interface ChemtechShoppe_StoreDigestsResponseDto {
|
|
582
|
+
data: ChemtechShoppe_StoreDigestsDto
|
|
583
|
+
paging: ChemtechShoppe_PagingDto
|
|
584
|
+
stats: ChemtechShoppe_StatsDto
|
|
585
|
+
notes: string[]
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
export interface ChemtechShoppe_StoreDto {
|
|
589
|
+
id: string
|
|
590
|
+
productId: string
|
|
591
|
+
name: string
|
|
592
|
+
catalogEntries: ChemtechShoppe_CatalogEntryDto[]
|
|
593
|
+
displayMetadata: unknown
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
export interface ChemtechShoppe_StoreResponseDto {
|
|
597
|
+
data: ChemtechShoppe_StoreDto
|
|
598
|
+
paging: ChemtechShoppe_PagingDto
|
|
599
|
+
stats: ChemtechShoppe_StatsDto
|
|
600
|
+
notes: string[]
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
export interface ChemtechShoppe_StoresResponseDto {
|
|
604
|
+
data: ChemtechShoppe_StoreDto[]
|
|
605
|
+
paging: ChemtechShoppe_PagingDto
|
|
606
|
+
stats: ChemtechShoppe_StatsDto
|
|
607
|
+
notes: string[]
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
export interface ChemtechShoppe_VelocityLimitDeltaDto {
|
|
611
|
+
ruleId: string
|
|
612
|
+
/** @format int64 */
|
|
613
|
+
delta: number
|
|
614
|
+
/** @format int64 */
|
|
615
|
+
remaining: number
|
|
616
|
+
}
|
|
617
|
+
|
|
338
618
|
export interface ClashEventData {
|
|
339
619
|
earnedDate: string
|
|
340
620
|
rewardType: string
|
|
@@ -699,6 +979,8 @@ export interface EndOfGameLcdsEndOfGameStats {
|
|
|
699
979
|
/** @format int32 */
|
|
700
980
|
skinId: number
|
|
701
981
|
summonerName: string
|
|
982
|
+
riotIdGameName: string
|
|
983
|
+
riotIdTagLine: string
|
|
702
984
|
/** @format uint64 */
|
|
703
985
|
userId: number
|
|
704
986
|
/** @format int32 */
|
|
@@ -755,6 +1037,8 @@ export interface EndOfGameLcdsPlayerParticipantStatsSummary {
|
|
|
755
1037
|
gameId: number
|
|
756
1038
|
leaver: boolean
|
|
757
1039
|
summonerName: string
|
|
1040
|
+
riotIdGameName: string
|
|
1041
|
+
riotIdTagLine: string
|
|
758
1042
|
skinName: string
|
|
759
1043
|
/** @format int32 */
|
|
760
1044
|
profileIconId: number
|
|
@@ -1960,6 +2244,7 @@ export interface LolCatalogSkinLineInfo {
|
|
|
1960
2244
|
uncenteredSplashPath: string
|
|
1961
2245
|
collectionDescription: string
|
|
1962
2246
|
tiers: LolCatalogSkinLineTier[]
|
|
2247
|
+
mostProgressedSkinTier: LolCatalogSkinLineTier
|
|
1963
2248
|
productType: string
|
|
1964
2249
|
}
|
|
1965
2250
|
|
|
@@ -2384,6 +2669,23 @@ export interface LolChampSelectChampSelectBannedChampions {
|
|
|
2384
2669
|
numBans: number
|
|
2385
2670
|
}
|
|
2386
2671
|
|
|
2672
|
+
export interface LolChampSelectChampSelectChampionSwapNotification {
|
|
2673
|
+
/** @format int64 */
|
|
2674
|
+
id: number
|
|
2675
|
+
/** @format int64 */
|
|
2676
|
+
responderIndex: number
|
|
2677
|
+
state: LolChampSelectChampSelectSwapState
|
|
2678
|
+
/** @format int64 */
|
|
2679
|
+
otherSummonerIndex: number
|
|
2680
|
+
responderChampionName: string
|
|
2681
|
+
requesterChampionName: string
|
|
2682
|
+
requesterChampionSplashPath: string
|
|
2683
|
+
initiatedByLocalPlayer: boolean
|
|
2684
|
+
type: LolChampSelectChampSelectSwapType
|
|
2685
|
+
/** @format int32 */
|
|
2686
|
+
requesterChampionId: number
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2387
2689
|
export interface LolChampSelectChampSelectChatRoomDetails {
|
|
2388
2690
|
multiUserChatId: string
|
|
2389
2691
|
multiUserChatPassword: string
|
|
@@ -2397,8 +2699,20 @@ export interface LolChampSelectChampSelectMySelection {
|
|
|
2397
2699
|
"spell1Id"?: number
|
|
2398
2700
|
/** @format uint64 */
|
|
2399
2701
|
"spell2Id"?: number
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2704
|
+
export interface LolChampSelectChampSelectPickOrderSwapNotification {
|
|
2705
|
+
/** @format int64 */
|
|
2706
|
+
id: number
|
|
2707
|
+
/** @format int64 */
|
|
2708
|
+
requestorIndex: number
|
|
2709
|
+
/** @format int64 */
|
|
2710
|
+
responderIndex: number
|
|
2711
|
+
state: LolChampSelectChampSelectSwapState
|
|
2400
2712
|
/** @format int64 */
|
|
2401
|
-
|
|
2713
|
+
otherSummonerIndex: number
|
|
2714
|
+
initiatedByLocalPlayer: boolean
|
|
2715
|
+
type: LolChampSelectChampSelectSwapType
|
|
2402
2716
|
}
|
|
2403
2717
|
|
|
2404
2718
|
export interface LolChampSelectChampSelectPinDropNotification {
|
|
@@ -2424,8 +2738,6 @@ export interface LolChampSelectChampSelectPlayerSelection {
|
|
|
2424
2738
|
championId: number
|
|
2425
2739
|
/** @format int32 */
|
|
2426
2740
|
selectedSkinId: number
|
|
2427
|
-
/** @format int64 */
|
|
2428
|
-
wardSkinId: number
|
|
2429
2741
|
/** @format uint64 */
|
|
2430
2742
|
"spell1Id": number
|
|
2431
2743
|
/** @format uint64 */
|
|
@@ -2437,6 +2749,7 @@ export interface LolChampSelectChampSelectPlayerSelection {
|
|
|
2437
2749
|
championPickIntent: number
|
|
2438
2750
|
/** @format uint64 */
|
|
2439
2751
|
summonerId: number
|
|
2752
|
+
playerAlias: string
|
|
2440
2753
|
puuid: string
|
|
2441
2754
|
nameVisibilityType: string
|
|
2442
2755
|
/** @format uint64 */
|
|
@@ -2444,6 +2757,22 @@ export interface LolChampSelectChampSelectPlayerSelection {
|
|
|
2444
2757
|
obfuscatedPuuid: string
|
|
2445
2758
|
}
|
|
2446
2759
|
|
|
2760
|
+
export interface LolChampSelectChampSelectPositionSwapNotification {
|
|
2761
|
+
/** @format int64 */
|
|
2762
|
+
id: number
|
|
2763
|
+
/** @format int64 */
|
|
2764
|
+
requestorIndex: number
|
|
2765
|
+
/** @format int64 */
|
|
2766
|
+
responderIndex: number
|
|
2767
|
+
requesterPosition: string
|
|
2768
|
+
responderPosition: string
|
|
2769
|
+
state: LolChampSelectChampSelectSwapState
|
|
2770
|
+
/** @format int64 */
|
|
2771
|
+
otherSummonerIndex: number
|
|
2772
|
+
initiatedByLocalPlayer: boolean
|
|
2773
|
+
type: LolChampSelectChampSelectSwapType
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2447
2776
|
export interface LolChampSelectChampSelectSession {
|
|
2448
2777
|
/** @format uint64 */
|
|
2449
2778
|
gameId: number
|
|
@@ -2451,8 +2780,9 @@ export interface LolChampSelectChampSelectSession {
|
|
|
2451
2780
|
chatDetails: LolChampSelectChampSelectChatRoomDetails
|
|
2452
2781
|
myTeam: LolChampSelectChampSelectPlayerSelection[]
|
|
2453
2782
|
theirTeam: LolChampSelectChampSelectPlayerSelection[]
|
|
2454
|
-
trades:
|
|
2783
|
+
trades: LolChampSelectChampSelectSwapContract[]
|
|
2455
2784
|
pickOrderSwaps: LolChampSelectChampSelectSwapContract[]
|
|
2785
|
+
positionSwaps: LolChampSelectChampSelectSwapContract[]
|
|
2456
2786
|
actions: unknown[]
|
|
2457
2787
|
bans: LolChampSelectChampSelectBannedChampions
|
|
2458
2788
|
/** @format int64 */
|
|
@@ -2473,11 +2803,11 @@ export interface LolChampSelectChampSelectSession {
|
|
|
2473
2803
|
benchChampions: LolChampSelectBenchChampion[]
|
|
2474
2804
|
/** @format int64 */
|
|
2475
2805
|
counter: number
|
|
2476
|
-
/** @format int64 */
|
|
2477
|
-
recoveryCounter: number
|
|
2478
2806
|
skipChampionSelect: boolean
|
|
2479
2807
|
hasSimultaneousBans: boolean
|
|
2480
2808
|
hasSimultaneousPicks: boolean
|
|
2809
|
+
showQuitButton: boolean
|
|
2810
|
+
isLegacyChampSelect: boolean
|
|
2481
2811
|
isCustomGame: boolean
|
|
2482
2812
|
}
|
|
2483
2813
|
|
|
@@ -2491,6 +2821,7 @@ export interface LolChampSelectChampSelectSummoner {
|
|
|
2491
2821
|
assignedPosition: string
|
|
2492
2822
|
/** @format uint64 */
|
|
2493
2823
|
summonerId: number
|
|
2824
|
+
playerAlias: string
|
|
2494
2825
|
puuid: string
|
|
2495
2826
|
nameVisibilityType: string
|
|
2496
2827
|
/** @format uint64 */
|
|
@@ -2509,7 +2840,8 @@ export interface LolChampSelectChampSelectSummoner {
|
|
|
2509
2840
|
currentChampionVotePercentInteger: number
|
|
2510
2841
|
/** @format int32 */
|
|
2511
2842
|
skinId: number
|
|
2512
|
-
|
|
2843
|
+
/** @format int32 */
|
|
2844
|
+
banIntentChampionId: number
|
|
2513
2845
|
isOnPlayersTeam: boolean
|
|
2514
2846
|
shouldShowSelectedSkin: boolean
|
|
2515
2847
|
shouldShowExpanded: boolean
|
|
@@ -2527,8 +2859,11 @@ export interface LolChampSelectChampSelectSummoner {
|
|
|
2527
2859
|
tradeId: number
|
|
2528
2860
|
/** @format int64 */
|
|
2529
2861
|
swapId: number
|
|
2862
|
+
/** @format int64 */
|
|
2863
|
+
positionSwapId: number
|
|
2530
2864
|
showTrades: boolean
|
|
2531
2865
|
showSwaps: boolean
|
|
2866
|
+
showPositionSwaps: boolean
|
|
2532
2867
|
showMuted: boolean
|
|
2533
2868
|
}
|
|
2534
2869
|
|
|
@@ -2540,21 +2875,10 @@ export interface LolChampSelectChampSelectSwapContract {
|
|
|
2540
2875
|
state: LolChampSelectChampSelectSwapState
|
|
2541
2876
|
}
|
|
2542
2877
|
|
|
2543
|
-
export interface LolChampSelectChampSelectSwapNotification {
|
|
2544
|
-
/** @format int64 */
|
|
2545
|
-
id: number
|
|
2546
|
-
/** @format int64 */
|
|
2547
|
-
requestorIndex: number
|
|
2548
|
-
/** @format int64 */
|
|
2549
|
-
responderIndex: number
|
|
2550
|
-
state: LolChampSelectChampSelectSwapState
|
|
2551
|
-
/** @format int64 */
|
|
2552
|
-
otherSummonerIndex: number
|
|
2553
|
-
initiatedByLocalPlayer: boolean
|
|
2554
|
-
}
|
|
2555
|
-
|
|
2556
2878
|
export type LolChampSelectChampSelectSwapState = "ACCEPTED" | "CANCELLED" | "DECLINED" | "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
2557
2879
|
|
|
2880
|
+
export type LolChampSelectChampSelectSwapType = "POSITION" | "PICK_ORDER" | "CHAMPION"
|
|
2881
|
+
|
|
2558
2882
|
export interface LolChampSelectChampSelectTimer {
|
|
2559
2883
|
/** @format int64 */
|
|
2560
2884
|
adjustedTimeLeftInPhase: number
|
|
@@ -2566,30 +2890,6 @@ export interface LolChampSelectChampSelectTimer {
|
|
|
2566
2890
|
internalNowInEpochMs: number
|
|
2567
2891
|
}
|
|
2568
2892
|
|
|
2569
|
-
export interface LolChampSelectChampSelectTradeContract {
|
|
2570
|
-
/** @format int64 */
|
|
2571
|
-
id: number
|
|
2572
|
-
/** @format int64 */
|
|
2573
|
-
cellId: number
|
|
2574
|
-
state: LolChampSelectChampSelectTradeState
|
|
2575
|
-
}
|
|
2576
|
-
|
|
2577
|
-
export interface LolChampSelectChampSelectTradeNotification {
|
|
2578
|
-
/** @format int64 */
|
|
2579
|
-
id: number
|
|
2580
|
-
/** @format int64 */
|
|
2581
|
-
responderIndex: number
|
|
2582
|
-
state: LolChampSelectChampSelectTradeState
|
|
2583
|
-
/** @format int64 */
|
|
2584
|
-
otherSummonerIndex: number
|
|
2585
|
-
responderChampionName: string
|
|
2586
|
-
requesterChampionName: string
|
|
2587
|
-
requesterChampionSplashPath: string
|
|
2588
|
-
initiatedByLocalPlayer: boolean
|
|
2589
|
-
}
|
|
2590
|
-
|
|
2591
|
-
export type LolChampSelectChampSelectTradeState = "ACCEPTED" | "CANCELLED" | "DECLINED" | "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
2592
|
-
|
|
2593
2893
|
export interface LolChampSelectChampionMastery {
|
|
2594
2894
|
/** @format int32 */
|
|
2595
2895
|
championId: number
|
|
@@ -2787,8 +3087,6 @@ export interface LolChampSelectLegacyChampSelectMySelection {
|
|
|
2787
3087
|
"spell1Id"?: number
|
|
2788
3088
|
/** @format uint64 */
|
|
2789
3089
|
"spell2Id"?: number
|
|
2790
|
-
/** @format int64 */
|
|
2791
|
-
wardSkinId?: number
|
|
2792
3090
|
}
|
|
2793
3091
|
|
|
2794
3092
|
export interface LolChampSelectLegacyChampSelectPlayerSelection {
|
|
@@ -2798,8 +3096,6 @@ export interface LolChampSelectLegacyChampSelectPlayerSelection {
|
|
|
2798
3096
|
championId: number
|
|
2799
3097
|
/** @format int32 */
|
|
2800
3098
|
selectedSkinId: number
|
|
2801
|
-
/** @format int64 */
|
|
2802
|
-
wardSkinId: number
|
|
2803
3099
|
/** @format uint64 */
|
|
2804
3100
|
"spell1Id": number
|
|
2805
3101
|
/** @format uint64 */
|
|
@@ -2820,7 +3116,7 @@ export interface LolChampSelectLegacyChampSelectSession {
|
|
|
2820
3116
|
chatDetails: LolChampSelectLegacyChampSelectChatRoomDetails
|
|
2821
3117
|
myTeam: LolChampSelectLegacyChampSelectPlayerSelection[]
|
|
2822
3118
|
theirTeam: LolChampSelectLegacyChampSelectPlayerSelection[]
|
|
2823
|
-
trades:
|
|
3119
|
+
trades: LolChampSelectLegacyChampSelectSwapContract[]
|
|
2824
3120
|
actions: unknown[]
|
|
2825
3121
|
bans: LolChampSelectLegacyChampSelectBannedChampions
|
|
2826
3122
|
/** @format int64 */
|
|
@@ -2833,9 +3129,21 @@ export interface LolChampSelectLegacyChampSelectSession {
|
|
|
2833
3129
|
rerollsRemaining: number
|
|
2834
3130
|
hasSimultaneousBans: boolean
|
|
2835
3131
|
hasSimultaneousPicks: boolean
|
|
3132
|
+
showQuitButton: boolean
|
|
3133
|
+
isLegacyChampSelect: boolean
|
|
2836
3134
|
isCustomGame: boolean
|
|
2837
3135
|
}
|
|
2838
3136
|
|
|
3137
|
+
export interface LolChampSelectLegacyChampSelectSwapContract {
|
|
3138
|
+
/** @format int64 */
|
|
3139
|
+
id: number
|
|
3140
|
+
/** @format int64 */
|
|
3141
|
+
cellId: number
|
|
3142
|
+
state: LolChampSelectLegacyChampSelectSwapState
|
|
3143
|
+
}
|
|
3144
|
+
|
|
3145
|
+
export type LolChampSelectLegacyChampSelectSwapState = "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
3146
|
+
|
|
2839
3147
|
export interface LolChampSelectLegacyChampSelectTimer {
|
|
2840
3148
|
/** @format int64 */
|
|
2841
3149
|
adjustedTimeLeftInPhase: number
|
|
@@ -2847,16 +3155,6 @@ export interface LolChampSelectLegacyChampSelectTimer {
|
|
|
2847
3155
|
internalNowInEpochMs: number
|
|
2848
3156
|
}
|
|
2849
3157
|
|
|
2850
|
-
export interface LolChampSelectLegacyChampSelectTradeContract {
|
|
2851
|
-
/** @format int64 */
|
|
2852
|
-
id: number
|
|
2853
|
-
/** @format int64 */
|
|
2854
|
-
cellId: number
|
|
2855
|
-
state: LolChampSelectLegacyChampSelectTradeState
|
|
2856
|
-
}
|
|
2857
|
-
|
|
2858
|
-
export type LolChampSelectLegacyChampSelectTradeState = "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
2859
|
-
|
|
2860
3158
|
export interface LolChampSelectLegacyChampionSelectPreferences {
|
|
2861
3159
|
skins: Record<string, number>
|
|
2862
3160
|
spells: Record<string, unknown>
|
|
@@ -3702,7 +4000,7 @@ export interface LolChatBlockedPlayerResource {
|
|
|
3702
4000
|
}
|
|
3703
4001
|
|
|
3704
4002
|
export interface LolChatChampSelection {
|
|
3705
|
-
|
|
4003
|
+
puuid: string
|
|
3706
4004
|
/** @format int32 */
|
|
3707
4005
|
championId: number
|
|
3708
4006
|
/** @format int32 */
|
|
@@ -4433,10 +4731,9 @@ export interface LolChatSummonerStatus {
|
|
|
4433
4731
|
}
|
|
4434
4732
|
|
|
4435
4733
|
export interface LolChatTeamPlayerEntry {
|
|
4734
|
+
puuid: string
|
|
4436
4735
|
/** @format uint64 */
|
|
4437
4736
|
summonerId: number
|
|
4438
|
-
summonerInternalName: string
|
|
4439
|
-
summonerName: string
|
|
4440
4737
|
}
|
|
4441
4738
|
|
|
4442
4739
|
export interface LolChatTranslateRequest {
|
|
@@ -5676,231 +5973,85 @@ export interface LolCollectionsNumberFormattingBehavior {
|
|
|
5676
5973
|
/** @format uint32 */
|
|
5677
5974
|
digitsForThousandsSeperator: number
|
|
5678
5975
|
trimTrailingZerosAfterDecimal: boolean
|
|
5679
|
-
westernNumberGrouping: boolean
|
|
5680
|
-
}
|
|
5681
|
-
|
|
5682
|
-
export interface LolCollectionsNumberFormattingData {
|
|
5683
|
-
decimalSeperator: string
|
|
5684
|
-
thousandSeperator: string
|
|
5685
|
-
thousandAbbreviation: string
|
|
5686
|
-
tenThousandAbbreviation: string
|
|
5687
|
-
millionAbbreviation: string
|
|
5688
|
-
oneHundredMillionAbbreviation: string
|
|
5689
|
-
billionAbbreviation: string
|
|
5690
|
-
trillionAbbreviation: string
|
|
5691
|
-
secondAbbreviation: string
|
|
5692
|
-
minuteAbbreviation: string
|
|
5693
|
-
hourAbbreviation: string
|
|
5694
|
-
metersAbbreviation: string
|
|
5695
|
-
kilometersAbbreviation: string
|
|
5696
|
-
percentageFormat: string
|
|
5697
|
-
numberFormattingBehavior: LolCollectionsNumberFormattingBehavior
|
|
5698
|
-
}
|
|
5699
|
-
|
|
5700
|
-
export interface LolCollectionsPlayerNotification {
|
|
5701
|
-
backgroundUrl: string
|
|
5702
|
-
critical: boolean
|
|
5703
|
-
data: Record<string, string>
|
|
5704
|
-
detailKey: string
|
|
5705
|
-
iconUrl: string
|
|
5706
|
-
/** @format uint64 */
|
|
5707
|
-
id: number
|
|
5708
|
-
source: string
|
|
5709
|
-
state: string
|
|
5710
|
-
titleKey: string
|
|
5711
|
-
type: string
|
|
5712
|
-
}
|
|
5713
|
-
|
|
5714
|
-
export interface LolCollectionsRewardConfigurationEntry {
|
|
5715
|
-
rewardValue: string
|
|
5716
|
-
/** @format int32 */
|
|
5717
|
-
maximumReward: number
|
|
5718
|
-
}
|
|
5719
|
-
|
|
5720
|
-
export interface LolCollectionsSeasonMilestoneRequireAndRewards {
|
|
5721
|
-
requireGradeCounts: Record<string, number>
|
|
5722
|
-
/** @format uint16 */
|
|
5723
|
-
rewardMarks: number
|
|
5724
|
-
bonus: boolean
|
|
5725
|
-
rewardConfig: LolCollectionsRewardConfigurationEntry
|
|
5726
|
-
}
|
|
5727
|
-
|
|
5728
|
-
export interface LolCollectionsSummoner {
|
|
5729
|
-
/** @format uint64 */
|
|
5730
|
-
summonerId: number
|
|
5731
|
-
/** @format uint64 */
|
|
5732
|
-
accountId: number
|
|
5733
|
-
/** @format uint32 */
|
|
5734
|
-
summonerLevel: number
|
|
5735
|
-
/** @format int32 */
|
|
5736
|
-
profileIconId: number
|
|
5737
|
-
puuid: string
|
|
5738
|
-
}
|
|
5739
|
-
|
|
5740
|
-
export interface LolCollectionsSummonerProfile {
|
|
5741
|
-
/** @format int32 */
|
|
5742
|
-
backgroundSkinId?: number
|
|
5743
|
-
backgroundSkinAugments?: string
|
|
5744
|
-
}
|
|
5745
|
-
|
|
5746
|
-
export interface LolCollectionsSummonerProfileUpdate {
|
|
5747
|
-
key: string
|
|
5748
|
-
value: unknown
|
|
5749
|
-
}
|
|
5750
|
-
|
|
5751
|
-
export interface LolCollectionsTopChampionMasteries {
|
|
5752
|
-
puuid: string
|
|
5753
|
-
/** @format uint64 */
|
|
5754
|
-
summonerId: number
|
|
5755
|
-
/** @format uint64 */
|
|
5756
|
-
score: number
|
|
5757
|
-
masteries: LolCollectionsChampionMastery[]
|
|
5758
|
-
}
|
|
5759
|
-
|
|
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
|
|
5976
|
+
westernNumberGrouping: boolean
|
|
5863
5977
|
}
|
|
5864
5978
|
|
|
5865
|
-
export
|
|
5866
|
-
|
|
5867
|
-
|
|
5868
|
-
|
|
5869
|
-
|
|
5870
|
-
|
|
5871
|
-
|
|
5872
|
-
|
|
5873
|
-
|
|
5874
|
-
|
|
5875
|
-
|
|
5979
|
+
export interface LolCollectionsNumberFormattingData {
|
|
5980
|
+
decimalSeperator: string
|
|
5981
|
+
thousandSeperator: string
|
|
5982
|
+
thousandAbbreviation: string
|
|
5983
|
+
tenThousandAbbreviation: string
|
|
5984
|
+
millionAbbreviation: string
|
|
5985
|
+
oneHundredMillionAbbreviation: string
|
|
5986
|
+
billionAbbreviation: string
|
|
5987
|
+
trillionAbbreviation: string
|
|
5988
|
+
secondAbbreviation: string
|
|
5989
|
+
minuteAbbreviation: string
|
|
5990
|
+
hourAbbreviation: string
|
|
5991
|
+
metersAbbreviation: string
|
|
5992
|
+
kilometersAbbreviation: string
|
|
5993
|
+
percentageFormat: string
|
|
5994
|
+
numberFormattingBehavior: LolCollectionsNumberFormattingBehavior
|
|
5876
5995
|
}
|
|
5877
5996
|
|
|
5878
|
-
export interface
|
|
5879
|
-
|
|
5880
|
-
|
|
5997
|
+
export interface LolCollectionsPlayerNotification {
|
|
5998
|
+
backgroundUrl: string
|
|
5999
|
+
critical: boolean
|
|
6000
|
+
data: Record<string, string>
|
|
6001
|
+
detailKey: string
|
|
6002
|
+
iconUrl: string
|
|
6003
|
+
/** @format uint64 */
|
|
6004
|
+
id: number
|
|
6005
|
+
source: string
|
|
6006
|
+
state: string
|
|
6007
|
+
titleKey: string
|
|
6008
|
+
type: string
|
|
5881
6009
|
}
|
|
5882
6010
|
|
|
5883
|
-
export interface
|
|
5884
|
-
|
|
6011
|
+
export interface LolCollectionsRewardConfigurationEntry {
|
|
6012
|
+
rewardValue: string
|
|
6013
|
+
/** @format int32 */
|
|
6014
|
+
maximumReward: number
|
|
5885
6015
|
}
|
|
5886
6016
|
|
|
5887
|
-
export interface
|
|
5888
|
-
|
|
6017
|
+
export interface LolCollectionsSeasonMilestoneRequireAndRewards {
|
|
6018
|
+
requireGradeCounts: Record<string, number>
|
|
6019
|
+
/** @format uint16 */
|
|
6020
|
+
rewardMarks: number
|
|
6021
|
+
bonus: boolean
|
|
6022
|
+
rewardConfig: LolCollectionsRewardConfigurationEntry
|
|
5889
6023
|
}
|
|
5890
6024
|
|
|
5891
|
-
export interface
|
|
6025
|
+
export interface LolCollectionsSummoner {
|
|
6026
|
+
/** @format uint64 */
|
|
6027
|
+
summonerId: number
|
|
6028
|
+
/** @format uint64 */
|
|
6029
|
+
accountId: number
|
|
5892
6030
|
/** @format uint32 */
|
|
5893
6031
|
summonerLevel: number
|
|
5894
6032
|
/** @format int32 */
|
|
5895
6033
|
profileIconId: number
|
|
6034
|
+
puuid: string
|
|
6035
|
+
}
|
|
6036
|
+
|
|
6037
|
+
export interface LolCollectionsSummonerProfile {
|
|
6038
|
+
/** @format int32 */
|
|
6039
|
+
backgroundSkinId?: number
|
|
6040
|
+
backgroundSkinAugments?: string
|
|
5896
6041
|
}
|
|
5897
6042
|
|
|
5898
|
-
export interface
|
|
5899
|
-
|
|
6043
|
+
export interface LolCollectionsSummonerProfileUpdate {
|
|
6044
|
+
key: string
|
|
6045
|
+
value: unknown
|
|
5900
6046
|
}
|
|
5901
6047
|
|
|
5902
|
-
export interface
|
|
5903
|
-
|
|
6048
|
+
export interface LolCollectionsTopChampionMasteries {
|
|
6049
|
+
puuid: string
|
|
6050
|
+
/** @format uint64 */
|
|
6051
|
+
summonerId: number
|
|
6052
|
+
/** @format uint64 */
|
|
6053
|
+
score: number
|
|
6054
|
+
masteries: LolCollectionsChampionMastery[]
|
|
5904
6055
|
}
|
|
5905
6056
|
|
|
5906
6057
|
export interface LolCosmeticsAccountSettingsCategoryDataResource {
|
|
@@ -6446,7 +6597,6 @@ export interface LolDropsCapDropsDropTableDisplayMetadata {
|
|
|
6446
6597
|
isCollectorsBounty: boolean
|
|
6447
6598
|
dataAssetId: string
|
|
6448
6599
|
nameTraKey: string
|
|
6449
|
-
mythicOfferId: string
|
|
6450
6600
|
progressionId: string
|
|
6451
6601
|
/** @format uint8 */
|
|
6452
6602
|
priority: number
|
|
@@ -6460,12 +6610,6 @@ export interface LolDropsCapDropsDropTableDisplayMetadata {
|
|
|
6460
6610
|
oddsTree: LolDropsCapDropsOddsTreeNodeDTO
|
|
6461
6611
|
}
|
|
6462
6612
|
|
|
6463
|
-
export interface LolDropsCapDropsDropTablePityInfo {
|
|
6464
|
-
/** @format uint8 */
|
|
6465
|
-
pityLimit: number
|
|
6466
|
-
chaseContentIds: string[]
|
|
6467
|
-
}
|
|
6468
|
-
|
|
6469
6613
|
export interface LolDropsCapDropsDropTableWithPityDTO {
|
|
6470
6614
|
id: string
|
|
6471
6615
|
sourceId: string
|
|
@@ -6476,8 +6620,6 @@ export interface LolDropsCapDropsDropTableWithPityDTO {
|
|
|
6476
6620
|
rollOffer: string
|
|
6477
6621
|
/** @format uint16 */
|
|
6478
6622
|
cost: number
|
|
6479
|
-
totalRollsInfo: LolDropsTotalRollsInfoDTO
|
|
6480
|
-
pityInfo: LolDropsCapDropsDropTablePityInfo
|
|
6481
6623
|
displayMetadata: LolDropsCapDropsDropTableDisplayMetadata
|
|
6482
6624
|
}
|
|
6483
6625
|
|
|
@@ -6508,12 +6650,6 @@ export interface LolDropsOddsTableDisplayMetadata {
|
|
|
6508
6650
|
priority: number
|
|
6509
6651
|
}
|
|
6510
6652
|
|
|
6511
|
-
export interface LolDropsTotalRollsInfoDTO {
|
|
6512
|
-
totalRollsCounterId: string
|
|
6513
|
-
/** @format uint8 */
|
|
6514
|
-
maxTotalRolls: number
|
|
6515
|
-
}
|
|
6516
|
-
|
|
6517
6653
|
export type LolDx9DeprecationDx9DeprecationNotificationType = "TURN_OFF_DX9_LEGACY_MODE" | "HARDWARE_UPGRADE" | "NONE"
|
|
6518
6654
|
|
|
6519
6655
|
export interface LolDx9DeprecationLocalSettingsCategory {
|
|
@@ -6608,6 +6744,8 @@ export interface LolEndOfGameEndOfGamePlayer {
|
|
|
6608
6744
|
stats: unknown
|
|
6609
6745
|
items: number[]
|
|
6610
6746
|
puuid: string
|
|
6747
|
+
riotIdGameName: string
|
|
6748
|
+
riotIdTagLine: string
|
|
6611
6749
|
botPlayer: boolean
|
|
6612
6750
|
/** @format int32 */
|
|
6613
6751
|
championId: number
|
|
@@ -7553,6 +7691,9 @@ export interface LolEventHubEventInfoUIData {
|
|
|
7553
7691
|
eventIcon: string
|
|
7554
7692
|
navBarIcon: string
|
|
7555
7693
|
eventTokenImage: string
|
|
7694
|
+
startDate: string
|
|
7695
|
+
progressEndDate: string
|
|
7696
|
+
endDate: string
|
|
7556
7697
|
/** @format int32 */
|
|
7557
7698
|
currentTokenBalance: number
|
|
7558
7699
|
/** @format int32 */
|
|
@@ -7994,6 +8135,11 @@ export interface LolEventHubLoginSession {
|
|
|
7994
8135
|
|
|
7995
8136
|
export type LolEventHubLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
7996
8137
|
|
|
8138
|
+
export interface LolEventHubLolInventoryType {
|
|
8139
|
+
inventoryTypeId: string
|
|
8140
|
+
capInventoryTypeId: string
|
|
8141
|
+
}
|
|
8142
|
+
|
|
7997
8143
|
export interface LolEventHubLoyaltyRewards {
|
|
7998
8144
|
/** @format int32 */
|
|
7999
8145
|
freeRewardedChampionsCount: number
|
|
@@ -8457,13 +8603,16 @@ export interface LolEventHubRewardsConfig {
|
|
|
8457
8603
|
}
|
|
8458
8604
|
|
|
8459
8605
|
export interface LolEventHubRewardsSkinLineInfo {
|
|
8460
|
-
productType: string
|
|
8461
8606
|
tiers: LolEventHubRewardsSkinLineTier[]
|
|
8607
|
+
mostProgressedSkinTier: LolEventHubRewardsSkinLineTier
|
|
8608
|
+
productType: string
|
|
8462
8609
|
}
|
|
8463
8610
|
|
|
8464
8611
|
export interface LolEventHubRewardsSkinLineTier {
|
|
8465
8612
|
/** @format int64 */
|
|
8466
8613
|
stage: number
|
|
8614
|
+
name: string
|
|
8615
|
+
uncenteredSplashPath: string
|
|
8467
8616
|
ownership: LolEventHubRewardsSkinLineTierOwnership
|
|
8468
8617
|
}
|
|
8469
8618
|
|
|
@@ -8987,10 +9136,6 @@ export interface LolGameClientChatMutedPlayerInfo {
|
|
|
8987
9136
|
obfuscatedSummonerId: number
|
|
8988
9137
|
}
|
|
8989
9138
|
|
|
8990
|
-
export interface LolGameQueuesDoubleUpConfig {
|
|
8991
|
-
enabled: boolean
|
|
8992
|
-
}
|
|
8993
|
-
|
|
8994
9139
|
export interface LolGameQueuesLoginDataPacket {
|
|
8995
9140
|
gameTypeConfigs: LolGameQueuesQueueGameTypeConfig[]
|
|
8996
9141
|
}
|
|
@@ -9070,6 +9215,7 @@ export interface LolGameQueuesQueue {
|
|
|
9070
9215
|
removalFromGameAllowed: boolean
|
|
9071
9216
|
/** @format int32 */
|
|
9072
9217
|
removalFromGameDelayMinutes: number
|
|
9218
|
+
hidePlayerPosition: boolean
|
|
9073
9219
|
gameSelectModeGroup: string
|
|
9074
9220
|
gameSelectCategory: string
|
|
9075
9221
|
/** @format uint8 */
|
|
@@ -9166,6 +9312,7 @@ export interface LolGameQueuesQueueTranslation {
|
|
|
9166
9312
|
/** @format uint8 */
|
|
9167
9313
|
gameSelectPriority: number
|
|
9168
9314
|
isSkillTreeQueue: boolean
|
|
9315
|
+
hidePlayerPosition: boolean
|
|
9169
9316
|
}
|
|
9170
9317
|
|
|
9171
9318
|
export interface LolGameSettingsLoginSession {
|
|
@@ -9435,44 +9582,6 @@ export interface LolGameflowSpectateGameInfoResource {
|
|
|
9435
9582
|
puuid: string
|
|
9436
9583
|
}
|
|
9437
9584
|
|
|
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
9585
|
export interface LolHeartbeatLcdsConnection {
|
|
9477
9586
|
stableConnection: boolean
|
|
9478
9587
|
}
|
|
@@ -10054,6 +10163,11 @@ export interface LolInventoryLoginSession {
|
|
|
10054
10163
|
|
|
10055
10164
|
export type LolInventoryLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
10056
10165
|
|
|
10166
|
+
export interface LolInventoryLolInventoryType {
|
|
10167
|
+
inventoryTypeId: string
|
|
10168
|
+
capInventoryTypeId: string
|
|
10169
|
+
}
|
|
10170
|
+
|
|
10057
10171
|
export interface LolInventoryLoyaltyRewards {
|
|
10058
10172
|
/** @format int32 */
|
|
10059
10173
|
freeRewardedChampionsCount: number
|
|
@@ -11649,6 +11763,7 @@ export interface LolLobbyQueue {
|
|
|
11649
11763
|
removalFromGameAllowed: boolean
|
|
11650
11764
|
/** @format int32 */
|
|
11651
11765
|
removalFromGameDelayMinutes: number
|
|
11766
|
+
hidePlayerPosition: boolean
|
|
11652
11767
|
gameSelectModeGroup: string
|
|
11653
11768
|
gameSelectCategory: string
|
|
11654
11769
|
/** @format uint8 */
|
|
@@ -11863,7 +11978,6 @@ export interface LolLobbyTeamBuilderAfkCheckStateV1 {
|
|
|
11863
11978
|
remainingAfkMillis: number
|
|
11864
11979
|
afkReady: boolean
|
|
11865
11980
|
inventoryDraft: LolLobbyTeamBuilderTbdInventory
|
|
11866
|
-
additionalInventoryTypes: string[]
|
|
11867
11981
|
compressAfkCheckPayload: boolean
|
|
11868
11982
|
autoAccept: boolean
|
|
11869
11983
|
mucJwtDto: LolLobbyTeamBuilderMucJwtDto
|
|
@@ -11898,6 +12012,7 @@ export interface LolLobbyTeamBuilderCellV1 {
|
|
|
11898
12012
|
"spell2Id": number
|
|
11899
12013
|
/** @format uint64 */
|
|
11900
12014
|
summonerId: number
|
|
12015
|
+
playerAlias: string
|
|
11901
12016
|
puuid: string
|
|
11902
12017
|
nameVisibilityType: string
|
|
11903
12018
|
/** @format uint64 */
|
|
@@ -11953,8 +12068,6 @@ export interface LolLobbyTeamBuilderChampSelectMySelection {
|
|
|
11953
12068
|
"spell1Id"?: number
|
|
11954
12069
|
/** @format uint64 */
|
|
11955
12070
|
"spell2Id"?: number
|
|
11956
|
-
/** @format int64 */
|
|
11957
|
-
wardSkinId?: number
|
|
11958
12071
|
}
|
|
11959
12072
|
|
|
11960
12073
|
export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
@@ -11964,8 +12077,6 @@ export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
|
11964
12077
|
championId: number
|
|
11965
12078
|
/** @format int32 */
|
|
11966
12079
|
selectedSkinId: number
|
|
11967
|
-
/** @format int64 */
|
|
11968
|
-
wardSkinId: number
|
|
11969
12080
|
/** @format uint64 */
|
|
11970
12081
|
"spell1Id": number
|
|
11971
12082
|
/** @format uint64 */
|
|
@@ -11978,6 +12089,7 @@ export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
|
11978
12089
|
playerType: string
|
|
11979
12090
|
/** @format uint64 */
|
|
11980
12091
|
summonerId: number
|
|
12092
|
+
playerAlias: string
|
|
11981
12093
|
puuid: string
|
|
11982
12094
|
nameVisibilityType: string
|
|
11983
12095
|
/** @format uint64 */
|
|
@@ -11992,8 +12104,9 @@ export interface LolLobbyTeamBuilderChampSelectSession {
|
|
|
11992
12104
|
chatDetails: LolLobbyTeamBuilderChampSelectChatRoomDetails
|
|
11993
12105
|
myTeam: LolLobbyTeamBuilderChampSelectPlayerSelection[]
|
|
11994
12106
|
theirTeam: LolLobbyTeamBuilderChampSelectPlayerSelection[]
|
|
11995
|
-
trades:
|
|
12107
|
+
trades: LolLobbyTeamBuilderChampSelectSwapContract[]
|
|
11996
12108
|
pickOrderSwaps: LolLobbyTeamBuilderChampSelectSwapContract[]
|
|
12109
|
+
positionSwaps: LolLobbyTeamBuilderChampSelectSwapContract[]
|
|
11997
12110
|
actions: unknown[]
|
|
11998
12111
|
/** @format int64 */
|
|
11999
12112
|
localPlayerCellId: number
|
|
@@ -12012,12 +12125,12 @@ export interface LolLobbyTeamBuilderChampSelectSession {
|
|
|
12012
12125
|
benchChampions: LolLobbyTeamBuilderBenchChampion[]
|
|
12013
12126
|
/** @format int64 */
|
|
12014
12127
|
counter: number
|
|
12015
|
-
/** @format int64 */
|
|
12016
|
-
recoveryCounter: number
|
|
12017
12128
|
skipChampionSelect: boolean
|
|
12018
12129
|
isSpectating: boolean
|
|
12019
12130
|
hasSimultaneousBans: boolean
|
|
12020
12131
|
hasSimultaneousPicks: boolean
|
|
12132
|
+
showQuitButton: boolean
|
|
12133
|
+
isLegacyChampSelect: boolean
|
|
12021
12134
|
}
|
|
12022
12135
|
|
|
12023
12136
|
export interface LolLobbyTeamBuilderChampSelectSwapContract {
|
|
@@ -12041,16 +12154,6 @@ export interface LolLobbyTeamBuilderChampSelectTimer {
|
|
|
12041
12154
|
internalNowInEpochMs: number
|
|
12042
12155
|
}
|
|
12043
12156
|
|
|
12044
|
-
export interface LolLobbyTeamBuilderChampSelectTradeContract {
|
|
12045
|
-
/** @format int64 */
|
|
12046
|
-
id: number
|
|
12047
|
-
/** @format int64 */
|
|
12048
|
-
cellId: number
|
|
12049
|
-
state: LolLobbyTeamBuilderChampSelectTradeState
|
|
12050
|
-
}
|
|
12051
|
-
|
|
12052
|
-
export type LolLobbyTeamBuilderChampSelectTradeState = "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
12053
|
-
|
|
12054
12157
|
export interface LolLobbyTeamBuilderChampionBenchChampionV1 {
|
|
12055
12158
|
/** @format int32 */
|
|
12056
12159
|
championId: number
|
|
@@ -12083,13 +12186,13 @@ export interface LolLobbyTeamBuilderChampionSelectStateV1 {
|
|
|
12083
12186
|
currentTotalTimeMillis: number
|
|
12084
12187
|
/** @format int64 */
|
|
12085
12188
|
currentTimeRemainingMillis: number
|
|
12086
|
-
trades:
|
|
12087
|
-
pickOrderSwaps:
|
|
12189
|
+
trades: LolLobbyTeamBuilderSwapV1[]
|
|
12190
|
+
pickOrderSwaps: LolLobbyTeamBuilderSwapV1[]
|
|
12191
|
+
positionSwaps: LolLobbyTeamBuilderSwapV1[]
|
|
12088
12192
|
pickIntentClearedReason: string
|
|
12089
12193
|
allowOptingOutOfBanning: boolean
|
|
12090
12194
|
allowSkinSelection: boolean
|
|
12091
12195
|
allowDuplicatePicks: boolean
|
|
12092
|
-
lcuSkipsSendingLoadoutsGco: boolean
|
|
12093
12196
|
rerollState: LolLobbyTeamBuilderRerollStateV1
|
|
12094
12197
|
lockedEventsState: LolLobbyTeamBuilderLockedEventsStateV1
|
|
12095
12198
|
battleBoostState: LolLobbyTeamBuilderTeamBuilderBoostInfo
|
|
@@ -12097,6 +12200,7 @@ export interface LolLobbyTeamBuilderChampionSelectStateV1 {
|
|
|
12097
12200
|
inventoryDraft: LolLobbyTeamBuilderTbdInventory
|
|
12098
12201
|
skipChampionSelect: boolean
|
|
12099
12202
|
isSpectating: boolean
|
|
12203
|
+
showQuitButton: boolean
|
|
12100
12204
|
}
|
|
12101
12205
|
|
|
12102
12206
|
export interface LolLobbyTeamBuilderCountdownTimer {
|
|
@@ -12309,14 +12413,6 @@ export interface LolLobbyTeamBuilderMucJwtDto {
|
|
|
12309
12413
|
targetRegion: string
|
|
12310
12414
|
}
|
|
12311
12415
|
|
|
12312
|
-
export interface LolLobbyTeamBuilderPickOrderSwapV1 {
|
|
12313
|
-
/** @format int32 */
|
|
12314
|
-
id: number
|
|
12315
|
-
/** @format int32 */
|
|
12316
|
-
cellId: number
|
|
12317
|
-
state: string
|
|
12318
|
-
}
|
|
12319
|
-
|
|
12320
12416
|
export interface LolLobbyTeamBuilderQueue {
|
|
12321
12417
|
/** @format int32 */
|
|
12322
12418
|
id: number
|
|
@@ -12411,6 +12507,14 @@ export interface LolLobbyTeamBuilderSettingCategoryResource {
|
|
|
12411
12507
|
data: LolLobbyTeamBuilderChampionSelectPreferences
|
|
12412
12508
|
}
|
|
12413
12509
|
|
|
12510
|
+
export interface LolLobbyTeamBuilderSwapV1 {
|
|
12511
|
+
/** @format int32 */
|
|
12512
|
+
id: number
|
|
12513
|
+
/** @format int32 */
|
|
12514
|
+
cellId: number
|
|
12515
|
+
state: string
|
|
12516
|
+
}
|
|
12517
|
+
|
|
12414
12518
|
export interface LolLobbyTeamBuilderTBDMatchmakingState {
|
|
12415
12519
|
/** @format int64 */
|
|
12416
12520
|
estimatedMatchmakingTimeMillis: number
|
|
@@ -12422,8 +12526,6 @@ export interface LolLobbyTeamBuilderTBDMatchmakingState {
|
|
|
12422
12526
|
export interface LolLobbyTeamBuilderTbLobbyStateResource {
|
|
12423
12527
|
/** @format int32 */
|
|
12424
12528
|
counter: number
|
|
12425
|
-
/** @format int32 */
|
|
12426
|
-
recoveryCounter: number
|
|
12427
12529
|
phaseName: string
|
|
12428
12530
|
/** @format int32 */
|
|
12429
12531
|
queueId: number
|
|
@@ -12481,14 +12583,6 @@ export interface LolLobbyTeamBuilderTeambuilderLeagueEdgeResponse {
|
|
|
12481
12583
|
status: string
|
|
12482
12584
|
}
|
|
12483
12585
|
|
|
12484
|
-
export interface LolLobbyTeamBuilderTradeV1 {
|
|
12485
|
-
/** @format int32 */
|
|
12486
|
-
id: number
|
|
12487
|
-
/** @format int32 */
|
|
12488
|
-
cellId: number
|
|
12489
|
-
state: string
|
|
12490
|
-
}
|
|
12491
|
-
|
|
12492
12586
|
export interface LolLobbyUserInfoToken {
|
|
12493
12587
|
userInfo: string
|
|
12494
12588
|
}
|
|
@@ -13463,13 +13557,16 @@ export interface LolLootRewardsConfig {
|
|
|
13463
13557
|
}
|
|
13464
13558
|
|
|
13465
13559
|
export interface LolLootRewardsSkinLineInfo {
|
|
13466
|
-
productType: string
|
|
13467
13560
|
tiers: LolLootRewardsSkinLineTier[]
|
|
13561
|
+
mostProgressedSkinTier: LolLootRewardsSkinLineTier
|
|
13562
|
+
productType: string
|
|
13468
13563
|
}
|
|
13469
13564
|
|
|
13470
13565
|
export interface LolLootRewardsSkinLineTier {
|
|
13471
13566
|
/** @format int64 */
|
|
13472
13567
|
stage: number
|
|
13568
|
+
name: string
|
|
13569
|
+
uncenteredSplashPath: string
|
|
13473
13570
|
ownership: LolLootRewardsSkinLineTierOwnership
|
|
13474
13571
|
}
|
|
13475
13572
|
|
|
@@ -13689,7 +13786,7 @@ export interface LolMacGraphicsUpgradeLocalSettingsCategory {
|
|
|
13689
13786
|
schemaVersion: number
|
|
13690
13787
|
}
|
|
13691
13788
|
|
|
13692
|
-
export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "
|
|
13789
|
+
export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "SUPPORTED_HARDWARE" | "HARDWARE_UPGRADE" | "NONE"
|
|
13693
13790
|
|
|
13694
13791
|
export interface LolMapsGameModeSpellList {
|
|
13695
13792
|
spells: number[]
|
|
@@ -13735,6 +13832,33 @@ export interface LolMarketplaceCatalogEntryDto {
|
|
|
13735
13832
|
endTime: string
|
|
13736
13833
|
purchaseUnits: LolMarketplacePurchaseUnitDto[]
|
|
13737
13834
|
displayMetadata: unknown
|
|
13835
|
+
refundRule: string
|
|
13836
|
+
giftRule: string
|
|
13837
|
+
prerequisites: LolMarketplacePrerequisiteDto[]
|
|
13838
|
+
purchaseLimits: LolMarketplaceVelocityLimitDeltaDto[]
|
|
13839
|
+
}
|
|
13840
|
+
|
|
13841
|
+
export interface LolMarketplaceEntitlementDto {
|
|
13842
|
+
id: string
|
|
13843
|
+
label: string
|
|
13844
|
+
typeId: string
|
|
13845
|
+
productId: string
|
|
13846
|
+
active: boolean
|
|
13847
|
+
createdDate: string
|
|
13848
|
+
lastModifiedDate: string
|
|
13849
|
+
firstUsedDate: string
|
|
13850
|
+
recipient: unknown
|
|
13851
|
+
ownerId: string
|
|
13852
|
+
item: LolMarketplaceEntitlementItemDto
|
|
13853
|
+
}
|
|
13854
|
+
|
|
13855
|
+
export interface LolMarketplaceEntitlementItemDto {
|
|
13856
|
+
id: string
|
|
13857
|
+
typeId: string
|
|
13858
|
+
}
|
|
13859
|
+
|
|
13860
|
+
export interface LolMarketplaceEntitlementsResponse {
|
|
13861
|
+
data: LolMarketplaceEntitlementDto[]
|
|
13738
13862
|
}
|
|
13739
13863
|
|
|
13740
13864
|
export interface LolMarketplaceFinalPurchaseUnitDto {
|
|
@@ -13752,6 +13876,7 @@ export interface LolMarketplaceFulfillmentDto {
|
|
|
13752
13876
|
maxQuantity: number
|
|
13753
13877
|
/** @format uint64 */
|
|
13754
13878
|
ownedQuantity: number
|
|
13879
|
+
ownershipCompensationMode: string
|
|
13755
13880
|
itemTypeId: string
|
|
13756
13881
|
itemId: string
|
|
13757
13882
|
currencyId: string
|
|
@@ -13791,11 +13916,21 @@ export interface LolMarketplacePaymentOptionDto {
|
|
|
13791
13916
|
payments: LolMarketplacePaymentDto[]
|
|
13792
13917
|
}
|
|
13793
13918
|
|
|
13919
|
+
export interface LolMarketplacePrerequisiteDto {
|
|
13920
|
+
status: string
|
|
13921
|
+
itemTypeId: string
|
|
13922
|
+
itemId: string
|
|
13923
|
+
/** @format uint16 */
|
|
13924
|
+
requiredQuantity: number
|
|
13925
|
+
}
|
|
13926
|
+
|
|
13794
13927
|
export interface LolMarketplacePurchaseDto {
|
|
13795
13928
|
id: string
|
|
13796
13929
|
productId: string
|
|
13797
13930
|
storeId: string
|
|
13931
|
+
storeName: string
|
|
13798
13932
|
catalogEntryId: string
|
|
13933
|
+
catalogEntryName: string
|
|
13799
13934
|
purchaserId: string
|
|
13800
13935
|
recipientId: string
|
|
13801
13936
|
purchaseUnits: LolMarketplaceFinalPurchaseUnitDto[]
|
|
@@ -13805,9 +13940,17 @@ export interface LolMarketplacePurchaseDto {
|
|
|
13805
13940
|
purchaseVisibility: string
|
|
13806
13941
|
refund: LolMarketplaceRefundDto
|
|
13807
13942
|
refundRule: string
|
|
13943
|
+
refundable: boolean
|
|
13808
13944
|
source: string
|
|
13809
13945
|
}
|
|
13810
13946
|
|
|
13947
|
+
export interface LolMarketplacePurchaseErrorMessageDto {
|
|
13948
|
+
/** @format int32 */
|
|
13949
|
+
httpStatus: number
|
|
13950
|
+
errorCode: string
|
|
13951
|
+
message: string
|
|
13952
|
+
}
|
|
13953
|
+
|
|
13811
13954
|
export interface LolMarketplacePurchaseHistoryResponse {
|
|
13812
13955
|
data: LolMarketplacePurchaseDto[]
|
|
13813
13956
|
paging: LolMarketplacePagination
|
|
@@ -13911,6 +14054,18 @@ export interface LolMarketplaceRiotMessagingServiceMessage {
|
|
|
13911
14054
|
payload: string
|
|
13912
14055
|
}
|
|
13913
14056
|
|
|
14057
|
+
export interface LolMarketplaceRotationalShopBundleData {
|
|
14058
|
+
asset: string
|
|
14059
|
+
description: string
|
|
14060
|
+
descriptionKey: string
|
|
14061
|
+
title: string
|
|
14062
|
+
titleKey: string
|
|
14063
|
+
}
|
|
14064
|
+
|
|
14065
|
+
export interface LolMarketplaceRotationalShopBundleListData {
|
|
14066
|
+
items: LolMarketplaceRotationalShopBundleData[]
|
|
14067
|
+
}
|
|
14068
|
+
|
|
13914
14069
|
export interface LolMarketplaceRotationalShopItemData {
|
|
13915
14070
|
backgroundTextureLCU: string
|
|
13916
14071
|
contentID: string
|
|
@@ -13920,6 +14075,8 @@ export interface LolMarketplaceRotationalShopItemData {
|
|
|
13920
14075
|
standaloneLoadoutsLargeIcon: string
|
|
13921
14076
|
videoID: string
|
|
13922
14077
|
redeemIconTexture: string
|
|
14078
|
+
rarity: string
|
|
14079
|
+
typeID: string
|
|
13923
14080
|
}
|
|
13924
14081
|
|
|
13925
14082
|
export interface LolMarketplaceStoreDto {
|
|
@@ -13938,11 +14095,47 @@ export interface LolMarketplaceStoresResponse {
|
|
|
13938
14095
|
errors: LolMarketplaceResponseError[]
|
|
13939
14096
|
}
|
|
13940
14097
|
|
|
14098
|
+
export interface LolMarketplaceTFTRotationalShopConfig {
|
|
14099
|
+
enabled: boolean
|
|
14100
|
+
contentPreviewConfig: unknown
|
|
14101
|
+
uiToggleEnabled: boolean
|
|
14102
|
+
navs: LolMarketplaceTFTRotationalShopNavConfig[]
|
|
14103
|
+
refund: LolMarketplaceTFTRotationalShopRefundConfig
|
|
14104
|
+
littleLegendsUpgradeEnabled: boolean
|
|
14105
|
+
}
|
|
14106
|
+
|
|
14107
|
+
export interface LolMarketplaceTFTRotationalShopNavConfig {
|
|
14108
|
+
name: string
|
|
14109
|
+
enabled: boolean
|
|
14110
|
+
supportedCurrencies: string[]
|
|
14111
|
+
}
|
|
14112
|
+
|
|
14113
|
+
export interface LolMarketplaceTFTRotationalShopRefundConfig {
|
|
14114
|
+
enabled: boolean
|
|
14115
|
+
allowedTypes: string[]
|
|
14116
|
+
/** @format uint8 */
|
|
14117
|
+
thresholdDays: number
|
|
14118
|
+
}
|
|
14119
|
+
|
|
13941
14120
|
export interface LolMarketplaceTraKeyName {
|
|
13942
14121
|
nameTraKey: string
|
|
13943
14122
|
translatedName: string
|
|
13944
14123
|
}
|
|
13945
14124
|
|
|
14125
|
+
export interface LolMarketplaceVelocityLimitDeltaDto {
|
|
14126
|
+
ruleId: string
|
|
14127
|
+
/** @format int64 */
|
|
14128
|
+
delta: number
|
|
14129
|
+
/** @format int64 */
|
|
14130
|
+
remaining: number
|
|
14131
|
+
}
|
|
14132
|
+
|
|
14133
|
+
export interface LolMarketplaceVelocityLimiterDto {
|
|
14134
|
+
/** @format int64 */
|
|
14135
|
+
availableTokens: number
|
|
14136
|
+
refill: string
|
|
14137
|
+
}
|
|
14138
|
+
|
|
13946
14139
|
export interface LolMatchHistoryAcsEndPoint {
|
|
13947
14140
|
url: string
|
|
13948
14141
|
}
|
|
@@ -14863,11 +15056,6 @@ export interface LolNachoCatalogItemPurchaseRequest {
|
|
|
14863
15056
|
paymentOptions: string[]
|
|
14864
15057
|
}
|
|
14865
15058
|
|
|
14866
|
-
export interface LolNachoClientConfigNachoBanners {
|
|
14867
|
-
enabled: boolean
|
|
14868
|
-
bannerList: LolNachoNachoActiveBanner[]
|
|
14869
|
-
}
|
|
14870
|
-
|
|
14871
15059
|
export interface LolNachoDropsOddsTreeNodeDTO {
|
|
14872
15060
|
nodeId: string
|
|
14873
15061
|
/** @format float */
|
|
@@ -14884,23 +15072,6 @@ export interface LolNachoDropsOddsTreeNodeDTO {
|
|
|
14884
15072
|
quantity: number
|
|
14885
15073
|
}
|
|
14886
15074
|
|
|
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
15075
|
export interface LolNachoGameDataBannerSkin {
|
|
14905
15076
|
/** @format uint32 */
|
|
14906
15077
|
id: number
|
|
@@ -14917,8 +15088,6 @@ export interface LolNachoGameDataNachoBanner {
|
|
|
14917
15088
|
highlightPityThreshold: number
|
|
14918
15089
|
bannerBackgroundTexture: string
|
|
14919
15090
|
bannerBackgroundParallax: string
|
|
14920
|
-
name: string
|
|
14921
|
-
description: string
|
|
14922
15091
|
bannerChaseAnimationWebmPath: string
|
|
14923
15092
|
bannerChaseAnimationParallax: string
|
|
14924
15093
|
rollVignetteSkinIntroWebmPath: string
|
|
@@ -14931,19 +15100,6 @@ export interface LolNachoGameDataNachoBanner {
|
|
|
14931
15100
|
bannerCurrency: LolNachoGameDataNachoCurrency
|
|
14932
15101
|
}
|
|
14933
15102
|
|
|
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
15103
|
export interface LolNachoGameDataNachoBannerVo {
|
|
14948
15104
|
path: string
|
|
14949
15105
|
/** @format uint32 */
|
|
@@ -14966,44 +15122,22 @@ export interface LolNachoGameDataNachoCurrency {
|
|
|
14966
15122
|
|
|
14967
15123
|
export interface LolNachoGameDataNachoReward {
|
|
14968
15124
|
itemInstanceId: string
|
|
14969
|
-
translatedName: string
|
|
14970
|
-
/** @format uint32 */
|
|
14971
|
-
id: number
|
|
14972
|
-
/** @format uint32 */
|
|
14973
|
-
quantity: number
|
|
14974
|
-
}
|
|
14975
|
-
|
|
14976
|
-
export interface LolNachoGameDataPityCounter {
|
|
14977
|
-
id: string
|
|
14978
|
-
name: string
|
|
14979
|
-
}
|
|
14980
|
-
|
|
14981
|
-
export interface LolNachoLoginSession {
|
|
14982
|
-
state: LolNachoLoginSessionStates
|
|
14983
|
-
/** @format uint64 */
|
|
14984
|
-
summonerId: number
|
|
14985
|
-
/** @format uint64 */
|
|
14986
|
-
accountId: number
|
|
14987
|
-
puuid: string
|
|
15125
|
+
translatedName: string
|
|
15126
|
+
/** @format uint32 */
|
|
15127
|
+
id: number
|
|
15128
|
+
/** @format uint32 */
|
|
15129
|
+
quantity: number
|
|
14988
15130
|
}
|
|
14989
15131
|
|
|
14990
|
-
export
|
|
14991
|
-
|
|
14992
|
-
|
|
14993
|
-
bannerId: string
|
|
14994
|
-
storeId: string
|
|
14995
|
-
catalogEntryId: string
|
|
14996
|
-
tokenCatalogEntryId: string
|
|
14997
|
-
/** @format uint8 */
|
|
14998
|
-
version: number
|
|
15132
|
+
export interface LolNachoGameDataPityCounter {
|
|
15133
|
+
id: string
|
|
15134
|
+
name: string
|
|
14999
15135
|
}
|
|
15000
15136
|
|
|
15001
15137
|
export interface LolNachoNachoBannersResponse {
|
|
15002
15138
|
id: string
|
|
15003
15139
|
bannerBackgroundTexture: string
|
|
15004
15140
|
bannerBackgroundParallax: string
|
|
15005
|
-
name: string
|
|
15006
|
-
description: string
|
|
15007
15141
|
bannerChaseAnimationWebmPath: string
|
|
15008
15142
|
bannerChaseAnimationParallax: string
|
|
15009
15143
|
chasePityCounter: LolNachoGameDataPityCounter
|
|
@@ -15072,28 +15206,6 @@ export interface LolNachoNachoVignette {
|
|
|
15072
15206
|
introTierThreeMultiWebmPath: string
|
|
15073
15207
|
}
|
|
15074
15208
|
|
|
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
15209
|
export interface LolNachoSanctumDisplayMetaData {
|
|
15098
15210
|
bannerId: string
|
|
15099
15211
|
}
|
|
@@ -15102,52 +15214,12 @@ export interface LolNachoSetActiveStoresRequest {
|
|
|
15102
15214
|
storeIds: string[]
|
|
15103
15215
|
}
|
|
15104
15216
|
|
|
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
15217
|
export interface LolNachoStoreSanctumDisplayMetaData {
|
|
15134
15218
|
startDate: string
|
|
15135
15219
|
endDate: string
|
|
15136
15220
|
sanctum: LolNachoSanctumDisplayMetaData
|
|
15137
15221
|
}
|
|
15138
15222
|
|
|
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
15223
|
export interface LolNpeRewardsAccountSettingsData {
|
|
15152
15224
|
login: LolNpeRewardsLoginSeriesSettings
|
|
15153
15225
|
challenges: LolNpeRewardsChallengesSettings
|
|
@@ -15528,6 +15600,19 @@ export type LolNpeTutorialPathTutorialStatus = "COMPLETED" | "UNLOCKED" | "LOCKE
|
|
|
15528
15600
|
|
|
15529
15601
|
export type LolNpeTutorialPathTutorialType = "REWARD" | "CARD"
|
|
15530
15602
|
|
|
15603
|
+
export interface LolObjectivesActiveEventUIData {
|
|
15604
|
+
eventId: string
|
|
15605
|
+
eventInfo: LolObjectivesEventInfoUIData
|
|
15606
|
+
}
|
|
15607
|
+
|
|
15608
|
+
export interface LolObjectivesCatalogEntry {
|
|
15609
|
+
contentId: string
|
|
15610
|
+
/** @format int32 */
|
|
15611
|
+
itemId: number
|
|
15612
|
+
offerId: string
|
|
15613
|
+
typeId: string
|
|
15614
|
+
}
|
|
15615
|
+
|
|
15531
15616
|
export interface LolObjectivesCollectionsChampion {
|
|
15532
15617
|
/** @format int32 */
|
|
15533
15618
|
id: number
|
|
@@ -15570,6 +15655,26 @@ export interface LolObjectivesCollectionsWardSkin {
|
|
|
15570
15655
|
ownership: LolObjectivesCollectionsOwnership
|
|
15571
15656
|
}
|
|
15572
15657
|
|
|
15658
|
+
export interface LolObjectivesEventInfoUIData {
|
|
15659
|
+
eventId: string
|
|
15660
|
+
eventName: string
|
|
15661
|
+
eventType: string
|
|
15662
|
+
eventIcon: string
|
|
15663
|
+
navBarIcon: string
|
|
15664
|
+
eventTokenImage: string
|
|
15665
|
+
/** @format int32 */
|
|
15666
|
+
currentTokenBalance: number
|
|
15667
|
+
/** @format int32 */
|
|
15668
|
+
lockedTokenCount: number
|
|
15669
|
+
/** @format int32 */
|
|
15670
|
+
unclaimedRewardCount: number
|
|
15671
|
+
/** @format int64 */
|
|
15672
|
+
timeOfLastUnclaimedReward: number
|
|
15673
|
+
isPassPurchased: boolean
|
|
15674
|
+
eventPassBundles: LolObjectivesCatalogEntry[]
|
|
15675
|
+
tokenBundles: LolObjectivesCatalogEntry[]
|
|
15676
|
+
}
|
|
15677
|
+
|
|
15573
15678
|
export type LolObjectivesGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
15574
15679
|
|
|
15575
15680
|
export interface LolObjectivesGameflowSession {
|
|
@@ -15641,12 +15746,15 @@ export interface LolObjectivesNonPooledObjectives {
|
|
|
15641
15746
|
localizedDescription: string
|
|
15642
15747
|
}
|
|
15643
15748
|
|
|
15749
|
+
export type LolObjectivesObjectiveCategoryType = "kTFTPassData" | "kEventHubConfiguration" | "kNonPass"
|
|
15750
|
+
|
|
15644
15751
|
export interface LolObjectivesObjectivesContainer {
|
|
15645
15752
|
pooledObjectives: LolObjectivesPooledObjectives[]
|
|
15646
15753
|
nonPooledObjectives: LolObjectivesNonPooledObjectives[]
|
|
15647
15754
|
}
|
|
15648
15755
|
|
|
15649
15756
|
export interface LolObjectivesObjectivesGroup {
|
|
15757
|
+
uuid: string
|
|
15650
15758
|
backgroundImage: string
|
|
15651
15759
|
/** @format uint64 */
|
|
15652
15760
|
startDate: number
|
|
@@ -15811,7 +15919,22 @@ export interface LolObjectivesUIObjectives {
|
|
|
15811
15919
|
isPooledMission: boolean
|
|
15812
15920
|
}
|
|
15813
15921
|
|
|
15922
|
+
export interface LolObjectivesUIObjectivesCategory {
|
|
15923
|
+
id: string
|
|
15924
|
+
/** @format uint64 */
|
|
15925
|
+
startDate: number
|
|
15926
|
+
/** @format uint64 */
|
|
15927
|
+
progressEndDate: number
|
|
15928
|
+
/** @format uint64 */
|
|
15929
|
+
endDate: number
|
|
15930
|
+
categorySectionImage: string
|
|
15931
|
+
categoryName: string
|
|
15932
|
+
objectives: LolObjectivesUIObjectives[]
|
|
15933
|
+
categoryType: LolObjectivesObjectiveCategoryType
|
|
15934
|
+
}
|
|
15935
|
+
|
|
15814
15936
|
export interface LolObjectivesUIObjectivesGroup {
|
|
15937
|
+
uuid: string
|
|
15815
15938
|
backgroundImage: string
|
|
15816
15939
|
gameType: string
|
|
15817
15940
|
/** @format uint64 */
|
|
@@ -15820,6 +15943,7 @@ export interface LolObjectivesUIObjectivesGroup {
|
|
|
15820
15943
|
endDate: number
|
|
15821
15944
|
isActive: boolean
|
|
15822
15945
|
objectives: LolObjectivesUIObjectives[]
|
|
15946
|
+
objectivesCategories: LolObjectivesUIObjectivesCategory[]
|
|
15823
15947
|
}
|
|
15824
15948
|
|
|
15825
15949
|
export interface LolObjectivesUserInfo {
|
|
@@ -15984,30 +16108,6 @@ export interface LolPatchUxResource {
|
|
|
15984
16108
|
visible: boolean
|
|
15985
16109
|
}
|
|
15986
16110
|
|
|
15987
|
-
export interface LolPerksChampSelectAction {
|
|
15988
|
-
/** @format int64 */
|
|
15989
|
-
id: number
|
|
15990
|
-
/** @format int64 */
|
|
15991
|
-
actorCellId: number
|
|
15992
|
-
/** @format int32 */
|
|
15993
|
-
championId: number
|
|
15994
|
-
type: string
|
|
15995
|
-
completed: boolean
|
|
15996
|
-
}
|
|
15997
|
-
|
|
15998
|
-
export interface LolPerksChampSelectBannedChampions {
|
|
15999
|
-
myTeamBans: number[]
|
|
16000
|
-
theirTeamBans: number[]
|
|
16001
|
-
/** @format int32 */
|
|
16002
|
-
numBans: number
|
|
16003
|
-
}
|
|
16004
|
-
|
|
16005
|
-
export interface LolPerksChampSelectChatRoomDetails {
|
|
16006
|
-
multiUserChatId: string
|
|
16007
|
-
multiUserChatPassword: string
|
|
16008
|
-
mucJwtDto: LolPerksMucJwtDto
|
|
16009
|
-
}
|
|
16010
|
-
|
|
16011
16111
|
export interface LolPerksChampSelectMySelection {
|
|
16012
16112
|
/** @format int32 */
|
|
16013
16113
|
selectedSkinId?: number
|
|
@@ -16015,8 +16115,6 @@ export interface LolPerksChampSelectMySelection {
|
|
|
16015
16115
|
"spell1Id"?: number
|
|
16016
16116
|
/** @format uint64 */
|
|
16017
16117
|
"spell2Id"?: number
|
|
16018
|
-
/** @format int64 */
|
|
16019
|
-
wardSkinId?: number
|
|
16020
16118
|
}
|
|
16021
16119
|
|
|
16022
16120
|
export interface LolPerksChampSelectPlayerSelection {
|
|
@@ -16026,8 +16124,6 @@ export interface LolPerksChampSelectPlayerSelection {
|
|
|
16026
16124
|
championId: number
|
|
16027
16125
|
/** @format int32 */
|
|
16028
16126
|
selectedSkinId: number
|
|
16029
|
-
/** @format int64 */
|
|
16030
|
-
wardSkinId: number
|
|
16031
16127
|
/** @format uint64 */
|
|
16032
16128
|
"spell1Id": number
|
|
16033
16129
|
/** @format uint64 */
|
|
@@ -16043,15 +16139,9 @@ export interface LolPerksChampSelectPlayerSelection {
|
|
|
16043
16139
|
|
|
16044
16140
|
export interface LolPerksChampSelectSession {
|
|
16045
16141
|
timer: LolPerksChampSelectTimer
|
|
16046
|
-
chatDetails: LolPerksChampSelectChatRoomDetails
|
|
16047
16142
|
myTeam: LolPerksChampSelectPlayerSelection[]
|
|
16048
|
-
theirTeam: LolPerksChampSelectPlayerSelection[]
|
|
16049
|
-
trades: LolPerksChampSelectTradeContract[]
|
|
16050
|
-
actions: unknown[]
|
|
16051
|
-
bans: LolPerksChampSelectBannedChampions
|
|
16052
16143
|
/** @format int64 */
|
|
16053
16144
|
localPlayerCellId: number
|
|
16054
|
-
isSpectating: boolean
|
|
16055
16145
|
}
|
|
16056
16146
|
|
|
16057
16147
|
export interface LolPerksChampSelectTimer {
|
|
@@ -16065,16 +16155,6 @@ export interface LolPerksChampSelectTimer {
|
|
|
16065
16155
|
internalNowInEpochMs: number
|
|
16066
16156
|
}
|
|
16067
16157
|
|
|
16068
|
-
export interface LolPerksChampSelectTradeContract {
|
|
16069
|
-
/** @format int64 */
|
|
16070
|
-
id: number
|
|
16071
|
-
/** @format int64 */
|
|
16072
|
-
cellId: number
|
|
16073
|
-
state: LolPerksChampSelectTradeState
|
|
16074
|
-
}
|
|
16075
|
-
|
|
16076
|
-
export type LolPerksChampSelectTradeState = "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
16077
|
-
|
|
16078
16158
|
export interface LolPerksChampionPreferredStyle {
|
|
16079
16159
|
championName: string
|
|
16080
16160
|
/** @format int32 */
|
|
@@ -16151,13 +16231,6 @@ export interface LolPerksLoginSession {
|
|
|
16151
16231
|
|
|
16152
16232
|
export type LolPerksLoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
16153
16233
|
|
|
16154
|
-
export interface LolPerksMucJwtDto {
|
|
16155
|
-
jwt: string
|
|
16156
|
-
channelClaim: string
|
|
16157
|
-
domain: string
|
|
16158
|
-
targetRegion: string
|
|
16159
|
-
}
|
|
16160
|
-
|
|
16161
16234
|
export interface LolPerksNamecheckAuthorization {
|
|
16162
16235
|
subject: string
|
|
16163
16236
|
}
|
|
@@ -16877,63 +16950,6 @@ export interface LolPlayerBehaviorUserInfoToken {
|
|
|
16877
16950
|
ban: LolPlayerBehaviorUserInfoBanData
|
|
16878
16951
|
}
|
|
16879
16952
|
|
|
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
16953
|
export interface LolPlayerMessagingDynamicCelebrationMessagingNotificationResource {
|
|
16938
16954
|
/** @format int32 */
|
|
16939
16955
|
id: number
|
|
@@ -18407,16 +18423,6 @@ export interface LolRankedRewardNotification {
|
|
|
18407
18423
|
seasonId: number
|
|
18408
18424
|
}
|
|
18409
18425
|
|
|
18410
|
-
export interface LolRankedRewardsInfo {
|
|
18411
|
-
splits: LolRankedSeasonSplit[]
|
|
18412
|
-
currentSplit?: LolRankedSeasonSplit
|
|
18413
|
-
rewardInfoByRewardId: Record<string, LolRankedSplitReward>
|
|
18414
|
-
/** @format int32 */
|
|
18415
|
-
currentSplitId: number
|
|
18416
|
-
/** @format int32 */
|
|
18417
|
-
currentSeasonId: number
|
|
18418
|
-
}
|
|
18419
|
-
|
|
18420
18426
|
export interface LolRankedSeasonDTO {
|
|
18421
18427
|
/** @format int32 */
|
|
18422
18428
|
currentSeasonId: number
|
|
@@ -18426,32 +18432,6 @@ export interface LolRankedSeasonDTO {
|
|
|
18426
18432
|
nextSeasonStart: number
|
|
18427
18433
|
}
|
|
18428
18434
|
|
|
18429
|
-
export interface LolRankedSeasonSplit {
|
|
18430
|
-
/** @format int32 */
|
|
18431
|
-
splitId: number
|
|
18432
|
-
/** @format int32 */
|
|
18433
|
-
seasonId: number
|
|
18434
|
-
/** @format uint64 */
|
|
18435
|
-
startTimeMillis: number
|
|
18436
|
-
/** @format uint64 */
|
|
18437
|
-
endTimeMillis: number
|
|
18438
|
-
rewardTrack: LolRankedSplitRewardGroup[]
|
|
18439
|
-
victoriousSkinRewardGroup: LolRankedVictoriousSkin
|
|
18440
|
-
}
|
|
18441
|
-
|
|
18442
|
-
export interface LolRankedSeasonSplitDTO {
|
|
18443
|
-
/** @format int32 */
|
|
18444
|
-
splitId: number
|
|
18445
|
-
/** @format int32 */
|
|
18446
|
-
seasonId: number
|
|
18447
|
-
/** @format uint64 */
|
|
18448
|
-
startTime: number
|
|
18449
|
-
/** @format uint64 */
|
|
18450
|
-
endTime: number
|
|
18451
|
-
rewardTrack: LolRankedSplitRewardGroupDTO[]
|
|
18452
|
-
victoriousSkinRewardGroup: LolRankedVictoriousSkinDTO
|
|
18453
|
-
}
|
|
18454
|
-
|
|
18455
18435
|
export interface LolRankedSequenceEvent {
|
|
18456
18436
|
name: string
|
|
18457
18437
|
/** @format int32 */
|
|
@@ -18531,49 +18511,6 @@ export interface LolRankedSplitPointsNotification {
|
|
|
18531
18511
|
splitPointsBreakdown: Record<string, number>
|
|
18532
18512
|
}
|
|
18533
18513
|
|
|
18534
|
-
export interface LolRankedSplitReward {
|
|
18535
|
-
rewardType: string
|
|
18536
|
-
/** @format int32 */
|
|
18537
|
-
quantity: number
|
|
18538
|
-
description: string
|
|
18539
|
-
id: string
|
|
18540
|
-
/** @format int32 */
|
|
18541
|
-
regaliaLevel?: number
|
|
18542
|
-
/** @format int32 */
|
|
18543
|
-
pointsRequired: number
|
|
18544
|
-
/** @format int32 */
|
|
18545
|
-
splitId: number
|
|
18546
|
-
/** @format int32 */
|
|
18547
|
-
championId: number
|
|
18548
|
-
}
|
|
18549
|
-
|
|
18550
|
-
export interface LolRankedSplitRewardDTO {
|
|
18551
|
-
rewardType: string
|
|
18552
|
-
metadata: LolRankedSplitRewardsMetaData
|
|
18553
|
-
defaultRewardId: string
|
|
18554
|
-
tieredRewardIds: Record<string, string>
|
|
18555
|
-
}
|
|
18556
|
-
|
|
18557
|
-
export interface LolRankedSplitRewardGroup {
|
|
18558
|
-
/** @format int32 */
|
|
18559
|
-
splitPoints: number
|
|
18560
|
-
rewards: LolRankedSplitReward[]
|
|
18561
|
-
}
|
|
18562
|
-
|
|
18563
|
-
export interface LolRankedSplitRewardGroupDTO {
|
|
18564
|
-
/** @format int32 */
|
|
18565
|
-
splitPoints: number
|
|
18566
|
-
rewards: LolRankedSplitRewardDTO[]
|
|
18567
|
-
}
|
|
18568
|
-
|
|
18569
|
-
export interface LolRankedSplitRewardsMetaData {
|
|
18570
|
-
/** @format int32 */
|
|
18571
|
-
quantity: number
|
|
18572
|
-
description: string
|
|
18573
|
-
/** @format int32 */
|
|
18574
|
-
championId: number
|
|
18575
|
-
}
|
|
18576
|
-
|
|
18577
18514
|
export interface LolRankedSummoner {
|
|
18578
18515
|
/** @format uint64 */
|
|
18579
18516
|
summonerId: number
|
|
@@ -18585,11 +18522,6 @@ export interface LolRankedVictoriousSkin {
|
|
|
18585
18522
|
itemInstanceId: string
|
|
18586
18523
|
}
|
|
18587
18524
|
|
|
18588
|
-
export interface LolRankedVictoriousSkinDTO {
|
|
18589
|
-
splitPointsByHighestSeasonEndTier: Record<string, number>
|
|
18590
|
-
itemInstanceId: string
|
|
18591
|
-
}
|
|
18592
|
-
|
|
18593
18525
|
export interface LolRegaliaAccountIdAndSummonerId {
|
|
18594
18526
|
/** @format uint64 */
|
|
18595
18527
|
summonerId?: number
|
|
@@ -19581,13 +19513,16 @@ export interface LolRewardTrackRewardsConfig {
|
|
|
19581
19513
|
}
|
|
19582
19514
|
|
|
19583
19515
|
export interface LolRewardTrackRewardsSkinLineInfo {
|
|
19584
|
-
productType: string
|
|
19585
19516
|
tiers: LolRewardTrackRewardsSkinLineTier[]
|
|
19517
|
+
mostProgressedSkinTier: LolRewardTrackRewardsSkinLineTier
|
|
19518
|
+
productType: string
|
|
19586
19519
|
}
|
|
19587
19520
|
|
|
19588
19521
|
export interface LolRewardTrackRewardsSkinLineTier {
|
|
19589
19522
|
/** @format int64 */
|
|
19590
19523
|
stage: number
|
|
19524
|
+
name: string
|
|
19525
|
+
uncenteredSplashPath: string
|
|
19591
19526
|
ownership: LolRewardTrackRewardsSkinLineTierOwnership
|
|
19592
19527
|
}
|
|
19593
19528
|
|
|
@@ -19818,13 +19753,16 @@ export interface LolRewardsRewardsConfig {
|
|
|
19818
19753
|
}
|
|
19819
19754
|
|
|
19820
19755
|
export interface LolRewardsRewardsSkinLineInfo {
|
|
19821
|
-
productType: string
|
|
19822
19756
|
tiers: LolRewardsRewardsSkinLineTier[]
|
|
19757
|
+
mostProgressedSkinTier: LolRewardsRewardsSkinLineTier
|
|
19758
|
+
productType: string
|
|
19823
19759
|
}
|
|
19824
19760
|
|
|
19825
19761
|
export interface LolRewardsRewardsSkinLineTier {
|
|
19826
19762
|
/** @format int64 */
|
|
19827
19763
|
stage: number
|
|
19764
|
+
name: string
|
|
19765
|
+
uncenteredSplashPath: string
|
|
19828
19766
|
ownership: LolRewardsRewardsSkinLineTierOwnership
|
|
19829
19767
|
}
|
|
19830
19768
|
|
|
@@ -21533,6 +21471,7 @@ export interface LolTftEventLolTftBattlePassHub {
|
|
|
21533
21471
|
|
|
21534
21472
|
export interface LolTftEventLolTftEvent {
|
|
21535
21473
|
titleTranslationKey: string
|
|
21474
|
+
eventId: string
|
|
21536
21475
|
enabled: boolean
|
|
21537
21476
|
url: string
|
|
21538
21477
|
urlFaq: string
|
|
@@ -21542,7 +21481,10 @@ export interface LolTftEventLolTftEvent {
|
|
|
21542
21481
|
dailyLoginSeriesId: string
|
|
21543
21482
|
queueIds: number[]
|
|
21544
21483
|
defaultLandingPage: boolean
|
|
21484
|
+
eventHubAssetKey: string
|
|
21545
21485
|
eventHubTemplateType: string
|
|
21486
|
+
eventPassId: string
|
|
21487
|
+
skillTreePassId: string
|
|
21546
21488
|
eventFuture: boolean
|
|
21547
21489
|
weblinkSubnavs: LolTftEventLolTftEventWebLinkSubnav[]
|
|
21548
21490
|
}
|
|
@@ -21786,6 +21728,7 @@ export interface LolTftLolTftBattlePassHub {
|
|
|
21786
21728
|
|
|
21787
21729
|
export interface LolTftLolTftEvent {
|
|
21788
21730
|
titleTranslationKey: string
|
|
21731
|
+
eventId: string
|
|
21789
21732
|
enabled: boolean
|
|
21790
21733
|
url: string
|
|
21791
21734
|
urlFaq: string
|
|
@@ -21795,7 +21738,10 @@ export interface LolTftLolTftEvent {
|
|
|
21795
21738
|
dailyLoginSeriesId: string
|
|
21796
21739
|
queueIds: number[]
|
|
21797
21740
|
defaultLandingPage: boolean
|
|
21741
|
+
eventHubAssetKey: string
|
|
21798
21742
|
eventHubTemplateType: string
|
|
21743
|
+
eventPassId: string
|
|
21744
|
+
skillTreePassId: string
|
|
21799
21745
|
eventFuture: boolean
|
|
21800
21746
|
weblinkSubnavs: LolTftLolTftEventWebLinkSubnav[]
|
|
21801
21747
|
}
|
|
@@ -22037,6 +21983,11 @@ export interface LolTftPassLoginSession {
|
|
|
22037
21983
|
|
|
22038
21984
|
export type LolTftPassLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
22039
21985
|
|
|
21986
|
+
export interface LolTftPassLolInventoryType {
|
|
21987
|
+
inventoryTypeId: string
|
|
21988
|
+
capInventoryTypeId: string
|
|
21989
|
+
}
|
|
21990
|
+
|
|
22040
21991
|
export interface LolTftPassLoyaltyRewards {
|
|
22041
21992
|
/** @format int32 */
|
|
22042
21993
|
freeRewardedChampionsCount: number
|
|
@@ -22847,7 +22798,6 @@ export interface LolTftTrovesCapDropsDropTableDisplayMetadata {
|
|
|
22847
22798
|
isCollectorsBounty: boolean
|
|
22848
22799
|
dataAssetId: string
|
|
22849
22800
|
nameTraKey: string
|
|
22850
|
-
mythicOfferId: string
|
|
22851
22801
|
progressionId: string
|
|
22852
22802
|
/** @format uint8 */
|
|
22853
22803
|
priority: number
|
|
@@ -22921,7 +22871,6 @@ export interface LolTftTrovesDropsDropTableWithPityDTO {
|
|
|
22921
22871
|
rollOffer: string
|
|
22922
22872
|
/** @format int32 */
|
|
22923
22873
|
cost: number
|
|
22924
|
-
totalRollsInfo: LolTftTrovesTotalRollsInfoDTO
|
|
22925
22874
|
pityInfo: LolTftTrovesDropsDropTablePityInfo
|
|
22926
22875
|
displayMetadata: LolTftTrovesCapDropsDropTableDisplayMetadata
|
|
22927
22876
|
}
|
|
@@ -22967,8 +22916,6 @@ export interface LolTftTrovesGameDataTrovesBanner {
|
|
|
22967
22916
|
id: string
|
|
22968
22917
|
activationTime: string
|
|
22969
22918
|
deactivationTime: string
|
|
22970
|
-
pityCounterId: string
|
|
22971
|
-
mythicTokenOfferId: string
|
|
22972
22919
|
/** @format uint32 */
|
|
22973
22920
|
pityThreshold: number
|
|
22974
22921
|
bannerTexture: string
|
|
@@ -23153,12 +23100,6 @@ export interface LolTftTrovesRiotMessagingServiceMessage {
|
|
|
23153
23100
|
payload: string
|
|
23154
23101
|
}
|
|
23155
23102
|
|
|
23156
|
-
export interface LolTftTrovesTotalRollsInfoDTO {
|
|
23157
|
-
totalRollsCounterId: string
|
|
23158
|
-
/** @format uint16 */
|
|
23159
|
-
maxTotalRolls: number
|
|
23160
|
-
}
|
|
23161
|
-
|
|
23162
23103
|
export interface LolTftTrovesTrigger {
|
|
23163
23104
|
type: string
|
|
23164
23105
|
counterId: string
|
|
@@ -23176,7 +23117,6 @@ export interface LolTftTrovesTrovePurchaseResponse {
|
|
|
23176
23117
|
|
|
23177
23118
|
export interface LolTftTrovesTroves {
|
|
23178
23119
|
enabled: boolean
|
|
23179
|
-
useDisplayMetadata: boolean
|
|
23180
23120
|
bannerList?: LolTftTrovesTrovesActiveBanner[]
|
|
23181
23121
|
}
|
|
23182
23122
|
|
|
@@ -23197,7 +23137,6 @@ export interface LolTftTrovesTrovesBanner {
|
|
|
23197
23137
|
/** @format uint32 */
|
|
23198
23138
|
pityLimit: number
|
|
23199
23139
|
rollOffer: string
|
|
23200
|
-
mythicOffer: string
|
|
23201
23140
|
bannerTexture: string
|
|
23202
23141
|
thumbnailTexture: string
|
|
23203
23142
|
backgroundTexture: string
|
|
@@ -23205,7 +23144,6 @@ export interface LolTftTrovesTrovesBanner {
|
|
|
23205
23144
|
eventHubBannerTexture: string
|
|
23206
23145
|
name: string
|
|
23207
23146
|
description: string
|
|
23208
|
-
pityCounterId: string
|
|
23209
23147
|
isCollectorBounty: boolean
|
|
23210
23148
|
/** @format uint32 */
|
|
23211
23149
|
maxTotalRolls: number
|
|
@@ -23230,8 +23168,6 @@ export interface LolTftTrovesTrovesCelebrationHighlightSegmentData {
|
|
|
23230
23168
|
lottieJsonPath: string
|
|
23231
23169
|
revealSoundPath: string
|
|
23232
23170
|
transitionWipeSoundPath: string
|
|
23233
|
-
promiseTokenTitle: string
|
|
23234
|
-
promiseTokenDescription: string
|
|
23235
23171
|
}
|
|
23236
23172
|
|
|
23237
23173
|
export interface LolTftTrovesTrovesCelebrationPortalSegmentData {
|
|
@@ -23401,8 +23337,6 @@ export interface LolTftTrovesTrovesRollRequest {
|
|
|
23401
23337
|
|
|
23402
23338
|
export interface LolTftTrovesTrovesStatus {
|
|
23403
23339
|
ownedStatus: LolTftTrovesTrovesOwnedStatus[]
|
|
23404
|
-
/** @format uint8 */
|
|
23405
|
-
pityCount: number
|
|
23406
23340
|
dropTableId: string
|
|
23407
23341
|
hasPullError: boolean
|
|
23408
23342
|
/** @format uint16 */
|
|
@@ -23695,6 +23629,11 @@ export interface LolYourshopLoginSession {
|
|
|
23695
23629
|
|
|
23696
23630
|
export type LolYourshopLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
23697
23631
|
|
|
23632
|
+
export interface LolYourshopLolInventoryType {
|
|
23633
|
+
inventoryTypeId: string
|
|
23634
|
+
capInventoryTypeId: string
|
|
23635
|
+
}
|
|
23636
|
+
|
|
23698
23637
|
export interface LolYourshopLoyaltyRewards {
|
|
23699
23638
|
/** @format int32 */
|
|
23700
23639
|
freeRewardedChampionsCount: number
|
|
@@ -24478,6 +24417,7 @@ export interface PaymentsPMCStartUrlRequest {
|
|
|
24478
24417
|
/** @format int16 */
|
|
24479
24418
|
minVirtualAmount: number
|
|
24480
24419
|
orderDetailsJSON: string
|
|
24420
|
+
machineId: string
|
|
24481
24421
|
}
|
|
24482
24422
|
|
|
24483
24423
|
export interface PaymentsPMCStartUrlResult {
|
|
@@ -24694,6 +24634,7 @@ export interface PlayerMissionDTO {
|
|
|
24694
24634
|
title: string
|
|
24695
24635
|
helperText: string
|
|
24696
24636
|
description: string
|
|
24637
|
+
missionLineText: string
|
|
24697
24638
|
backgroundImageUrl: string
|
|
24698
24639
|
iconImageUrl: string
|
|
24699
24640
|
seriesName: string
|