@hasagi/types 15.7.1 → 15.8.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 +12 -3
- package/dist/lcu-events.d.ts +41 -50
- package/dist/lcu-types.d.ts +985 -87
- package/package.json +2 -2
package/dist/lcu-types.d.ts
CHANGED
|
@@ -1887,19 +1887,66 @@ export interface LolCapMissionsCapMissionSeries {
|
|
|
1887
1887
|
export interface LolCapMissionsCapMissionSeriesMission {
|
|
1888
1888
|
name: string
|
|
1889
1889
|
missionId: string
|
|
1890
|
+
expression: string
|
|
1890
1891
|
missionCollectionId: string
|
|
1891
1892
|
status: string
|
|
1893
|
+
completedTimeUtc: string
|
|
1894
|
+
missionInstanceId: string
|
|
1892
1895
|
objectives: LolCapMissionsCapMissionSeriesMissionObjective[]
|
|
1896
|
+
eligibility: LolCapMissionsCapMissionSeriesMissionEligibility[]
|
|
1897
|
+
rewardsStatus: LolCapMissionsCapMissionSeriesMissionRewardsStatus
|
|
1898
|
+
/** @format uint32 */
|
|
1899
|
+
repeatSequence: number
|
|
1900
|
+
properties: Record<string, string>
|
|
1901
|
+
metadata: Record<string, string>
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
export interface LolCapMissionsCapMissionSeriesMissionEligibility {
|
|
1905
|
+
type: string
|
|
1906
|
+
missionCollectionId: string
|
|
1907
|
+
missionId: string
|
|
1908
|
+
startTime: string
|
|
1893
1909
|
}
|
|
1894
1910
|
|
|
1895
1911
|
export interface LolCapMissionsCapMissionSeriesMissionObjective {
|
|
1896
1912
|
statId: string
|
|
1913
|
+
objectiveId: string
|
|
1897
1914
|
/** @format uint32 */
|
|
1898
1915
|
goal: number
|
|
1899
1916
|
/** @format uint32 */
|
|
1900
1917
|
currentValue: number
|
|
1901
1918
|
}
|
|
1902
1919
|
|
|
1920
|
+
export interface LolCapMissionsCapMissionSeriesMissionReward {
|
|
1921
|
+
type: string
|
|
1922
|
+
counterId: string
|
|
1923
|
+
itemId: string
|
|
1924
|
+
itemTypeId: string
|
|
1925
|
+
typeId: string
|
|
1926
|
+
/** @format uint32 */
|
|
1927
|
+
amount: number
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
export interface LolCapMissionsCapMissionSeriesMissionRewardsStatus {
|
|
1931
|
+
requiresClaim: boolean
|
|
1932
|
+
status: string
|
|
1933
|
+
rewards: LolCapMissionsCapMissionSeriesMissionReward[]
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
export interface LolCapMissionsCapMissionsMarkAsViewedPostBody {
|
|
1937
|
+
events: LolCapMissionsCapMissionsMarkAsViewedPostBodyEvent[]
|
|
1938
|
+
}
|
|
1939
|
+
|
|
1940
|
+
export interface LolCapMissionsCapMissionsMarkAsViewedPostBodyEvent {
|
|
1941
|
+
configurationId: string
|
|
1942
|
+
missions: LolCapMissionsCapMissionsMarkAsViewedPostBodyMission[]
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
export interface LolCapMissionsCapMissionsMarkAsViewedPostBodyMission {
|
|
1946
|
+
missionInstanceId: string
|
|
1947
|
+
metadata: Record<string, string>
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1903
1950
|
export interface LolCapMissionsCapMissionsMeResponse {
|
|
1904
1951
|
productId: string
|
|
1905
1952
|
ownerId: string
|
|
@@ -1926,6 +1973,12 @@ export interface LolCapMissionsRiotMessagingServiceMessage {
|
|
|
1926
1973
|
payload: string
|
|
1927
1974
|
}
|
|
1928
1975
|
|
|
1976
|
+
export interface LolCapMissionsRiotMessagingServicePayload {
|
|
1977
|
+
deltaEventId: string
|
|
1978
|
+
ownerId: string
|
|
1979
|
+
updatedMissions: string[]
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1929
1982
|
export interface LolCatalogBundled {
|
|
1930
1983
|
flexible: boolean
|
|
1931
1984
|
items: LolCatalogBundledItem[]
|
|
@@ -2019,6 +2072,8 @@ export interface LolCatalogCatalogPluginItemWithDetails {
|
|
|
2019
2072
|
bundledDiscountPrices?: LolCatalogCatalogPluginPrice[]
|
|
2020
2073
|
assets: LolCatalogCatalogPluginItemAssets
|
|
2021
2074
|
metadata: LolCatalogItemMetadataEntry[]
|
|
2075
|
+
/** @format int64 */
|
|
2076
|
+
bundleFinalPrice: number
|
|
2022
2077
|
}
|
|
2023
2078
|
|
|
2024
2079
|
export interface LolCatalogCatalogPluginPrice {
|
|
@@ -2749,8 +2804,10 @@ export interface LolChampSelectChampSelectPlayerSelection {
|
|
|
2749
2804
|
championPickIntent: number
|
|
2750
2805
|
/** @format uint64 */
|
|
2751
2806
|
summonerId: number
|
|
2752
|
-
|
|
2807
|
+
gameName: string
|
|
2808
|
+
tagLine: string
|
|
2753
2809
|
puuid: string
|
|
2810
|
+
isHumanoid: boolean
|
|
2754
2811
|
nameVisibilityType: string
|
|
2755
2812
|
/** @format uint64 */
|
|
2756
2813
|
obfuscatedSummonerId: number
|
|
@@ -2789,6 +2846,7 @@ export interface LolChampSelectChampSelectSession {
|
|
|
2789
2846
|
localPlayerCellId: number
|
|
2790
2847
|
isSpectating: boolean
|
|
2791
2848
|
allowSkinSelection: boolean
|
|
2849
|
+
allowSubsetChampionPicks: boolean
|
|
2792
2850
|
allowDuplicatePicks: boolean
|
|
2793
2851
|
allowBattleBoost: boolean
|
|
2794
2852
|
/** @format int32 */
|
|
@@ -2821,8 +2879,10 @@ export interface LolChampSelectChampSelectSummoner {
|
|
|
2821
2879
|
assignedPosition: string
|
|
2822
2880
|
/** @format uint64 */
|
|
2823
2881
|
summonerId: number
|
|
2824
|
-
|
|
2882
|
+
gameName: string
|
|
2883
|
+
tagLine: string
|
|
2825
2884
|
puuid: string
|
|
2885
|
+
isHumanoid: boolean
|
|
2826
2886
|
nameVisibilityType: string
|
|
2827
2887
|
/** @format uint64 */
|
|
2828
2888
|
obfuscatedSummonerId: number
|
|
@@ -6070,6 +6130,20 @@ export interface LolCosmeticsCapOffer {
|
|
|
6070
6130
|
createdDate: string
|
|
6071
6131
|
}
|
|
6072
6132
|
|
|
6133
|
+
export interface LolCosmeticsCatalogEntryDto {
|
|
6134
|
+
id: string
|
|
6135
|
+
productId: string
|
|
6136
|
+
name: string
|
|
6137
|
+
description: string
|
|
6138
|
+
endTime: string
|
|
6139
|
+
purchaseUnits: LolCosmeticsPurchaseUnitDto[]
|
|
6140
|
+
displayMetadata: unknown
|
|
6141
|
+
refundRule: string
|
|
6142
|
+
giftRule: string
|
|
6143
|
+
prerequisites: LolCosmeticsPrerequisiteDto[]
|
|
6144
|
+
purchaseLimits: LolCosmeticsVelocityLimitDeltaDto[]
|
|
6145
|
+
}
|
|
6146
|
+
|
|
6073
6147
|
export interface LolCosmeticsCompanionsFavoritesViewModel {
|
|
6074
6148
|
favoriteItems: LolCosmeticsCosmeticsCompanionViewModel[]
|
|
6075
6149
|
}
|
|
@@ -6121,6 +6195,8 @@ export interface LolCosmeticsCosmeticsCompanion {
|
|
|
6121
6195
|
/** @format uint32 */
|
|
6122
6196
|
level: number
|
|
6123
6197
|
upgrades: string[]
|
|
6198
|
+
companionType: string
|
|
6199
|
+
TFTRarity: string
|
|
6124
6200
|
}
|
|
6125
6201
|
|
|
6126
6202
|
export interface LolCosmeticsCosmeticsCompanionViewModel {
|
|
@@ -6148,12 +6224,15 @@ export interface LolCosmeticsCosmeticsCompanionViewModel {
|
|
|
6148
6224
|
upgrades: LolCosmeticsCosmeticsCompanionViewModel[]
|
|
6149
6225
|
offerData?: LolCosmeticsCapOffer
|
|
6150
6226
|
starShardsPrice: LolCosmeticsCosmeticsOfferPrice
|
|
6227
|
+
companionType: string
|
|
6228
|
+
TFTRarity: string
|
|
6151
6229
|
}
|
|
6152
6230
|
|
|
6153
6231
|
export interface LolCosmeticsCosmeticsOfferPrice {
|
|
6154
6232
|
offerId: string
|
|
6155
6233
|
/** @format uint64 */
|
|
6156
6234
|
price: number
|
|
6235
|
+
chemtechUpgradeStoreId: string
|
|
6157
6236
|
}
|
|
6158
6237
|
|
|
6159
6238
|
export interface LolCosmeticsCosmeticsSettings {
|
|
@@ -6180,6 +6259,7 @@ export interface LolCosmeticsCosmeticsTFTDamageSkin {
|
|
|
6180
6259
|
groupId: number
|
|
6181
6260
|
groupName: string
|
|
6182
6261
|
upgrades: string[]
|
|
6262
|
+
TFTRarity: string
|
|
6183
6263
|
}
|
|
6184
6264
|
|
|
6185
6265
|
export interface LolCosmeticsCosmeticsTFTDamageSkinViewModel {
|
|
@@ -6204,6 +6284,7 @@ export interface LolCosmeticsCosmeticsTFTDamageSkinViewModel {
|
|
|
6204
6284
|
groupId: number
|
|
6205
6285
|
groupName: string
|
|
6206
6286
|
upgrades: LolCosmeticsCosmeticsTFTDamageSkinViewModel[]
|
|
6287
|
+
TFTRarity: string
|
|
6207
6288
|
}
|
|
6208
6289
|
|
|
6209
6290
|
export interface LolCosmeticsCosmeticsTFTMapSkin {
|
|
@@ -6223,6 +6304,7 @@ export interface LolCosmeticsCosmeticsTFTMapSkin {
|
|
|
6223
6304
|
/** @format uint32 */
|
|
6224
6305
|
groupId: number
|
|
6225
6306
|
groupName: string
|
|
6307
|
+
TFTRarity: string
|
|
6226
6308
|
}
|
|
6227
6309
|
|
|
6228
6310
|
export interface LolCosmeticsCosmeticsTFTMapSkinViewModel {
|
|
@@ -6244,6 +6326,7 @@ export interface LolCosmeticsCosmeticsTFTMapSkinViewModel {
|
|
|
6244
6326
|
/** @format uint32 */
|
|
6245
6327
|
groupId: number
|
|
6246
6328
|
groupName: string
|
|
6329
|
+
TFTRarity: string
|
|
6247
6330
|
}
|
|
6248
6331
|
|
|
6249
6332
|
export interface LolCosmeticsCosmeticsTFTPlaybook {
|
|
@@ -6324,6 +6407,7 @@ export interface LolCosmeticsCosmeticsTFTZoomSkin {
|
|
|
6324
6407
|
/** @format uint32 */
|
|
6325
6408
|
groupId: number
|
|
6326
6409
|
groupName: string
|
|
6410
|
+
TFTRarity: string
|
|
6327
6411
|
}
|
|
6328
6412
|
|
|
6329
6413
|
export interface LolCosmeticsCosmeticsTFTZoomSkinViewModel {
|
|
@@ -6345,6 +6429,30 @@ export interface LolCosmeticsCosmeticsTFTZoomSkinViewModel {
|
|
|
6345
6429
|
/** @format uint32 */
|
|
6346
6430
|
groupId: number
|
|
6347
6431
|
groupName: string
|
|
6432
|
+
TFTRarity: string
|
|
6433
|
+
}
|
|
6434
|
+
|
|
6435
|
+
export interface LolCosmeticsEntitlementDto {
|
|
6436
|
+
id: string
|
|
6437
|
+
label: string
|
|
6438
|
+
typeId: string
|
|
6439
|
+
productId: string
|
|
6440
|
+
active: boolean
|
|
6441
|
+
createdDate: string
|
|
6442
|
+
lastModifiedDate: string
|
|
6443
|
+
firstUsedDate: string
|
|
6444
|
+
recipient: unknown
|
|
6445
|
+
ownerId: string
|
|
6446
|
+
item: LolCosmeticsEntitlementItemDto
|
|
6447
|
+
}
|
|
6448
|
+
|
|
6449
|
+
export interface LolCosmeticsEntitlementItemDto {
|
|
6450
|
+
id: string
|
|
6451
|
+
typeId: string
|
|
6452
|
+
}
|
|
6453
|
+
|
|
6454
|
+
export interface LolCosmeticsEntitlementsResponse {
|
|
6455
|
+
data: LolCosmeticsEntitlementDto[]
|
|
6348
6456
|
}
|
|
6349
6457
|
|
|
6350
6458
|
export interface LolCosmeticsFavoriteCosmetics {
|
|
@@ -6353,6 +6461,28 @@ export interface LolCosmeticsFavoriteCosmetics {
|
|
|
6353
6461
|
tft_damage_skins: string[]
|
|
6354
6462
|
}
|
|
6355
6463
|
|
|
6464
|
+
export interface LolCosmeticsFinalPurchaseUnitDto {
|
|
6465
|
+
payments: LolCosmeticsPaymentDto[]
|
|
6466
|
+
fulfillment: LolCosmeticsFulfillmentDto
|
|
6467
|
+
}
|
|
6468
|
+
|
|
6469
|
+
export interface LolCosmeticsFulfillmentDto {
|
|
6470
|
+
/** @format int64 */
|
|
6471
|
+
delta: number
|
|
6472
|
+
/** @format int64 */
|
|
6473
|
+
finalDelta: number
|
|
6474
|
+
name: string
|
|
6475
|
+
/** @format int64 */
|
|
6476
|
+
maxQuantity: number
|
|
6477
|
+
/** @format uint64 */
|
|
6478
|
+
ownedQuantity: number
|
|
6479
|
+
ownershipCompensationMode: string
|
|
6480
|
+
itemTypeId: string
|
|
6481
|
+
itemId: string
|
|
6482
|
+
currencyId: string
|
|
6483
|
+
subCurrencyDeltas: Record<string, number>
|
|
6484
|
+
}
|
|
6485
|
+
|
|
6356
6486
|
export interface LolCosmeticsGameDataCompanion {
|
|
6357
6487
|
contentId: string
|
|
6358
6488
|
/** @format int32 */
|
|
@@ -6370,6 +6500,8 @@ export interface LolCosmeticsGameDataCompanion {
|
|
|
6370
6500
|
rarityValue: number
|
|
6371
6501
|
upgrades: string[]
|
|
6372
6502
|
TFTOnly: boolean
|
|
6503
|
+
companionType: string
|
|
6504
|
+
TFTRarity: string
|
|
6373
6505
|
}
|
|
6374
6506
|
|
|
6375
6507
|
export interface LolCosmeticsGameDataTFTCosmeticsDefaults {
|
|
@@ -6390,6 +6522,7 @@ export interface LolCosmeticsGameDataTFTDamageSkin {
|
|
|
6390
6522
|
rarityValue: number
|
|
6391
6523
|
/** @format uint32 */
|
|
6392
6524
|
level: number
|
|
6525
|
+
TFTRarity: string
|
|
6393
6526
|
}
|
|
6394
6527
|
|
|
6395
6528
|
export interface LolCosmeticsGameDataTFTMapSkin {
|
|
@@ -6404,6 +6537,7 @@ export interface LolCosmeticsGameDataTFTMapSkin {
|
|
|
6404
6537
|
groupName: string
|
|
6405
6538
|
/** @format uint32 */
|
|
6406
6539
|
rarityValue: number
|
|
6540
|
+
TFTRarity: string
|
|
6407
6541
|
}
|
|
6408
6542
|
|
|
6409
6543
|
export interface LolCosmeticsGameDataTFTPlaybook {
|
|
@@ -6437,6 +6571,7 @@ export interface LolCosmeticsGameDataTFTZoomSkin {
|
|
|
6437
6571
|
groupName: string
|
|
6438
6572
|
/** @format uint32 */
|
|
6439
6573
|
rarityValue: number
|
|
6574
|
+
TFTRarity: string
|
|
6440
6575
|
}
|
|
6441
6576
|
|
|
6442
6577
|
export interface LolCosmeticsLoadout {
|
|
@@ -6459,12 +6594,224 @@ export interface LolCosmeticsLoadoutUpdateDto {
|
|
|
6459
6594
|
loadout: Record<string, LolCosmeticsLoadoutItem>
|
|
6460
6595
|
}
|
|
6461
6596
|
|
|
6597
|
+
export interface LolCosmeticsPagination {
|
|
6598
|
+
/** @format uint32 */
|
|
6599
|
+
offset: number
|
|
6600
|
+
/** @format uint32 */
|
|
6601
|
+
limit: number
|
|
6602
|
+
/** @format uint32 */
|
|
6603
|
+
maxLimit: number
|
|
6604
|
+
/** @format uint32 */
|
|
6605
|
+
total: number
|
|
6606
|
+
previous: string
|
|
6607
|
+
next: string
|
|
6608
|
+
}
|
|
6609
|
+
|
|
6610
|
+
export interface LolCosmeticsPaymentDto {
|
|
6611
|
+
/** @format int64 */
|
|
6612
|
+
delta: number
|
|
6613
|
+
/** @format int64 */
|
|
6614
|
+
finalDelta: number
|
|
6615
|
+
name: string
|
|
6616
|
+
/** @format int64 */
|
|
6617
|
+
discountedDelta: number
|
|
6618
|
+
/** @format double */
|
|
6619
|
+
discountPercent: number
|
|
6620
|
+
itemTypeId: string
|
|
6621
|
+
itemId: string
|
|
6622
|
+
currencyId: string
|
|
6623
|
+
}
|
|
6624
|
+
|
|
6625
|
+
export interface LolCosmeticsPaymentOptionDto {
|
|
6626
|
+
key: string
|
|
6627
|
+
payments: LolCosmeticsPaymentDto[]
|
|
6628
|
+
}
|
|
6629
|
+
|
|
6630
|
+
export interface LolCosmeticsPrerequisiteDto {
|
|
6631
|
+
status: string
|
|
6632
|
+
itemTypeId: string
|
|
6633
|
+
itemId: string
|
|
6634
|
+
/** @format uint16 */
|
|
6635
|
+
requiredQuantity: number
|
|
6636
|
+
}
|
|
6637
|
+
|
|
6638
|
+
export interface LolCosmeticsPurchaseDto {
|
|
6639
|
+
id: string
|
|
6640
|
+
productId: string
|
|
6641
|
+
storeId: string
|
|
6642
|
+
storeName: string
|
|
6643
|
+
catalogEntryId: string
|
|
6644
|
+
catalogEntryName: string
|
|
6645
|
+
purchaserId: string
|
|
6646
|
+
recipientId: string
|
|
6647
|
+
purchaseUnits: LolCosmeticsFinalPurchaseUnitDto[]
|
|
6648
|
+
createdTime: string
|
|
6649
|
+
completedTime: string
|
|
6650
|
+
purchaseState: string
|
|
6651
|
+
purchaseVisibility: string
|
|
6652
|
+
refund: LolCosmeticsRefundDto
|
|
6653
|
+
refundRule: string
|
|
6654
|
+
refundable: boolean
|
|
6655
|
+
source: string
|
|
6656
|
+
}
|
|
6657
|
+
|
|
6658
|
+
export interface LolCosmeticsPurchaseErrorMessageDto {
|
|
6659
|
+
/** @format int32 */
|
|
6660
|
+
httpStatus: number
|
|
6661
|
+
errorCode: string
|
|
6662
|
+
message: string
|
|
6663
|
+
}
|
|
6664
|
+
|
|
6665
|
+
export interface LolCosmeticsPurchaseHistoryResponse {
|
|
6666
|
+
data: LolCosmeticsPurchaseDto[]
|
|
6667
|
+
paging: LolCosmeticsPagination
|
|
6668
|
+
stats: LolCosmeticsResponseStats
|
|
6669
|
+
notes: string[]
|
|
6670
|
+
errors: LolCosmeticsResponseError[]
|
|
6671
|
+
}
|
|
6672
|
+
|
|
6673
|
+
export interface LolCosmeticsPurchaseRequest {
|
|
6674
|
+
storeId: string
|
|
6675
|
+
catalogEntryId: string
|
|
6676
|
+
paymentOptionsKeys: string[]
|
|
6677
|
+
/** @format uint32 */
|
|
6678
|
+
quantity: number
|
|
6679
|
+
}
|
|
6680
|
+
|
|
6681
|
+
export interface LolCosmeticsPurchaseRequestDto {
|
|
6682
|
+
storeId: string
|
|
6683
|
+
catalogEntryId: string
|
|
6684
|
+
paymentOptionsKeys: string[]
|
|
6685
|
+
idempotencyId: string
|
|
6686
|
+
source: string
|
|
6687
|
+
/** @format uint32 */
|
|
6688
|
+
quantity: number
|
|
6689
|
+
}
|
|
6690
|
+
|
|
6691
|
+
export interface LolCosmeticsPurchaseResponse {
|
|
6692
|
+
data: LolCosmeticsPurchaseDto
|
|
6693
|
+
paging: LolCosmeticsPagination
|
|
6694
|
+
stats: LolCosmeticsResponseStats
|
|
6695
|
+
notes: string[]
|
|
6696
|
+
errors: LolCosmeticsResponseError[]
|
|
6697
|
+
}
|
|
6698
|
+
|
|
6699
|
+
export interface LolCosmeticsPurchaseTransaction {
|
|
6700
|
+
purchaseId: string
|
|
6701
|
+
productId: string
|
|
6702
|
+
storeId: string
|
|
6703
|
+
catalogEntryId: string
|
|
6704
|
+
purchaseState: string
|
|
6705
|
+
refundId: string
|
|
6706
|
+
refundState: string
|
|
6707
|
+
}
|
|
6708
|
+
|
|
6709
|
+
export interface LolCosmeticsPurchaseUnitDto {
|
|
6710
|
+
paymentOptions: LolCosmeticsPaymentOptionDto[]
|
|
6711
|
+
payment: LolCosmeticsPaymentDto[]
|
|
6712
|
+
fulfillment: LolCosmeticsFulfillmentDto
|
|
6713
|
+
}
|
|
6714
|
+
|
|
6715
|
+
export interface LolCosmeticsRefundDto {
|
|
6716
|
+
id: string
|
|
6717
|
+
purchaseId: string
|
|
6718
|
+
createdTime: string
|
|
6719
|
+
completedTime: string
|
|
6720
|
+
state: string
|
|
6721
|
+
source: string
|
|
6722
|
+
}
|
|
6723
|
+
|
|
6724
|
+
export interface LolCosmeticsRefundRequest {
|
|
6725
|
+
purchaseId: string
|
|
6726
|
+
}
|
|
6727
|
+
|
|
6728
|
+
export interface LolCosmeticsRefundRequestDto {
|
|
6729
|
+
purchaseId: string
|
|
6730
|
+
source: string
|
|
6731
|
+
}
|
|
6732
|
+
|
|
6733
|
+
export interface LolCosmeticsRefundResponse {
|
|
6734
|
+
data: LolCosmeticsRefundDto
|
|
6735
|
+
paging: LolCosmeticsPagination
|
|
6736
|
+
stats: LolCosmeticsResponseStats
|
|
6737
|
+
notes: string[]
|
|
6738
|
+
errors: LolCosmeticsResponseError[]
|
|
6739
|
+
}
|
|
6740
|
+
|
|
6741
|
+
export interface LolCosmeticsRegionLocale {
|
|
6742
|
+
region: string
|
|
6743
|
+
locale: string
|
|
6744
|
+
webRegion: string
|
|
6745
|
+
}
|
|
6746
|
+
|
|
6747
|
+
export interface LolCosmeticsResponseError {
|
|
6748
|
+
message: string
|
|
6749
|
+
type: string
|
|
6750
|
+
/** @format uint32 */
|
|
6751
|
+
code: number
|
|
6752
|
+
}
|
|
6753
|
+
|
|
6754
|
+
export interface LolCosmeticsResponseStats {
|
|
6755
|
+
/** @format uint32 */
|
|
6756
|
+
durationMs: number
|
|
6757
|
+
}
|
|
6758
|
+
|
|
6759
|
+
export interface LolCosmeticsRiotMessagingServiceMessage {
|
|
6760
|
+
resource: string
|
|
6761
|
+
service: string
|
|
6762
|
+
version: string
|
|
6763
|
+
/** @format int64 */
|
|
6764
|
+
timestamp: number
|
|
6765
|
+
payload: string
|
|
6766
|
+
}
|
|
6767
|
+
|
|
6768
|
+
export interface LolCosmeticsRotationalShopBundleData {
|
|
6769
|
+
asset: string
|
|
6770
|
+
description: string
|
|
6771
|
+
descriptionKey: string
|
|
6772
|
+
title: string
|
|
6773
|
+
titleKey: string
|
|
6774
|
+
}
|
|
6775
|
+
|
|
6776
|
+
export interface LolCosmeticsRotationalShopBundleListData {
|
|
6777
|
+
items: LolCosmeticsRotationalShopBundleData[]
|
|
6778
|
+
}
|
|
6779
|
+
|
|
6780
|
+
export interface LolCosmeticsRotationalShopItemData {
|
|
6781
|
+
backgroundTextureLCU: string
|
|
6782
|
+
contentID: string
|
|
6783
|
+
descriptionTraKey: string
|
|
6784
|
+
description: string
|
|
6785
|
+
name: string
|
|
6786
|
+
standaloneLoadoutsLargeIcon: string
|
|
6787
|
+
videoID: string
|
|
6788
|
+
redeemIconTexture: string
|
|
6789
|
+
rarity: string
|
|
6790
|
+
typeID: string
|
|
6791
|
+
}
|
|
6792
|
+
|
|
6462
6793
|
export interface LolCosmeticsSettingsStorageContainer {
|
|
6463
6794
|
data: LolCosmeticsCosmeticsSettings
|
|
6464
6795
|
/** @format uint16 */
|
|
6465
6796
|
schemaVersion: number
|
|
6466
6797
|
}
|
|
6467
6798
|
|
|
6799
|
+
export interface LolCosmeticsStoreDto {
|
|
6800
|
+
id: string
|
|
6801
|
+
productId: string
|
|
6802
|
+
name: string
|
|
6803
|
+
catalogEntries: LolCosmeticsCatalogEntryDto[]
|
|
6804
|
+
displayMetadata: unknown
|
|
6805
|
+
}
|
|
6806
|
+
|
|
6807
|
+
export interface LolCosmeticsStoresResponse {
|
|
6808
|
+
data: LolCosmeticsStoreDto[]
|
|
6809
|
+
paging: LolCosmeticsPagination
|
|
6810
|
+
stats: LolCosmeticsResponseStats
|
|
6811
|
+
notes: string[]
|
|
6812
|
+
errors: LolCosmeticsResponseError[]
|
|
6813
|
+
}
|
|
6814
|
+
|
|
6468
6815
|
export interface LolCosmeticsTFTDamageSkinFavoritesViewModel {
|
|
6469
6816
|
favoriteItems: LolCosmeticsCosmeticsTFTDamageSkinViewModel[]
|
|
6470
6817
|
}
|
|
@@ -6531,6 +6878,28 @@ export interface LolCosmeticsTFTPlaybookGroupedViewModel {
|
|
|
6531
6878
|
groups: LolCosmeticsTFTPlaybookGroupViewModel[]
|
|
6532
6879
|
}
|
|
6533
6880
|
|
|
6881
|
+
export interface LolCosmeticsTFTRotationalShopConfig {
|
|
6882
|
+
enabled: boolean
|
|
6883
|
+
contentPreviewConfig: unknown
|
|
6884
|
+
uiToggleEnabled: boolean
|
|
6885
|
+
navs: LolCosmeticsTFTRotationalShopNavConfig[]
|
|
6886
|
+
refund: LolCosmeticsTFTRotationalShopRefundConfig
|
|
6887
|
+
littleLegendsUpgradeEnabled: boolean
|
|
6888
|
+
}
|
|
6889
|
+
|
|
6890
|
+
export interface LolCosmeticsTFTRotationalShopNavConfig {
|
|
6891
|
+
name: string
|
|
6892
|
+
enabled: boolean
|
|
6893
|
+
supportedCurrencies: string[]
|
|
6894
|
+
}
|
|
6895
|
+
|
|
6896
|
+
export interface LolCosmeticsTFTRotationalShopRefundConfig {
|
|
6897
|
+
enabled: boolean
|
|
6898
|
+
allowedTypes: string[]
|
|
6899
|
+
/** @format uint8 */
|
|
6900
|
+
thresholdDays: number
|
|
6901
|
+
}
|
|
6902
|
+
|
|
6534
6903
|
export interface LolCosmeticsTFTSettingsDataResource {
|
|
6535
6904
|
iconOverride: string
|
|
6536
6905
|
}
|
|
@@ -6565,12 +6934,31 @@ export interface LolCosmeticsTFTZoomSkinGroupedViewModel {
|
|
|
6565
6934
|
groups: LolCosmeticsTFTZoomSkinGroupViewModel[]
|
|
6566
6935
|
}
|
|
6567
6936
|
|
|
6937
|
+
export interface LolCosmeticsTraKeyName {
|
|
6938
|
+
nameTraKey: string
|
|
6939
|
+
translatedName: string
|
|
6940
|
+
}
|
|
6941
|
+
|
|
6568
6942
|
export interface LolCosmeticsUserResource {
|
|
6569
6943
|
/** @format uint64 */
|
|
6570
6944
|
summonerId: number
|
|
6571
6945
|
lol: Record<string, string>
|
|
6572
6946
|
}
|
|
6573
6947
|
|
|
6948
|
+
export interface LolCosmeticsVelocityLimitDeltaDto {
|
|
6949
|
+
ruleId: string
|
|
6950
|
+
/** @format int64 */
|
|
6951
|
+
delta: number
|
|
6952
|
+
/** @format int64 */
|
|
6953
|
+
remaining: number
|
|
6954
|
+
}
|
|
6955
|
+
|
|
6956
|
+
export interface LolCosmeticsVelocityLimiterDto {
|
|
6957
|
+
/** @format int64 */
|
|
6958
|
+
availableTokens: number
|
|
6959
|
+
refill: string
|
|
6960
|
+
}
|
|
6961
|
+
|
|
6574
6962
|
export interface LolDiscordRpGameDataChampionSummary {
|
|
6575
6963
|
/** @format int32 */
|
|
6576
6964
|
id: number
|
|
@@ -7947,6 +8335,7 @@ export interface LolEventHubInventoryItem {
|
|
|
7947
8335
|
/** @format uint64 */
|
|
7948
8336
|
quantity: number
|
|
7949
8337
|
ownershipType: LolEventHubItemOwnershipType
|
|
8338
|
+
usedInGameDate: string
|
|
7950
8339
|
expirationDate: string
|
|
7951
8340
|
/** @format uint64 */
|
|
7952
8341
|
wins: number
|
|
@@ -7986,6 +8375,7 @@ export interface LolEventHubInventoryItemWithPayload {
|
|
|
7986
8375
|
/** @format uint64 */
|
|
7987
8376
|
quantity: number
|
|
7988
8377
|
ownershipType: LolEventHubItemOwnershipType
|
|
8378
|
+
usedInGameDate: string
|
|
7989
8379
|
expirationDate: string
|
|
7990
8380
|
"f2p": boolean
|
|
7991
8381
|
rental: boolean
|
|
@@ -8225,7 +8615,10 @@ export interface LolEventHubNarrativeElement {
|
|
|
8225
8615
|
export interface LolEventHubNarrativeVideo {
|
|
8226
8616
|
localizedNarrativeVideoUrl: string
|
|
8227
8617
|
localizedPlayNarrativeButtonLabel: string
|
|
8618
|
+
localizedVideoTitle: string
|
|
8619
|
+
thumbnailImage: string
|
|
8228
8620
|
narrativeVideoIsLockedOnLevel?: boolean
|
|
8621
|
+
localizedNarrativeVideoDescription: string
|
|
8229
8622
|
}
|
|
8230
8623
|
|
|
8231
8624
|
export interface LolEventHubNavigationButtonUIData {
|
|
@@ -8304,6 +8697,10 @@ export interface LolEventHubPlayerSettingsData {
|
|
|
8304
8697
|
lastSeenTokenShopOffersVersion: number
|
|
8305
8698
|
}
|
|
8306
8699
|
|
|
8700
|
+
export interface LolEventHubPlayerSettingsDataMap {
|
|
8701
|
+
playerSettingsDataMap: Record<string, LolEventHubPlayerSettingsData>
|
|
8702
|
+
}
|
|
8703
|
+
|
|
8307
8704
|
export interface LolEventHubPriceDetail {
|
|
8308
8705
|
itemKey: LolEventHubItemKey
|
|
8309
8706
|
price: LolEventHubItemPrice
|
|
@@ -8703,7 +9100,7 @@ export interface LolEventHubSelectionStrategyConfig {
|
|
|
8703
9100
|
}
|
|
8704
9101
|
|
|
8705
9102
|
export interface LolEventHubSettingsResource {
|
|
8706
|
-
data:
|
|
9103
|
+
data: LolEventHubPlayerSettingsDataMap
|
|
8707
9104
|
/** @format int16 */
|
|
8708
9105
|
schemaVersion: number
|
|
8709
9106
|
}
|
|
@@ -10079,6 +10476,7 @@ export interface LolInventoryInventoryItem {
|
|
|
10079
10476
|
/** @format uint64 */
|
|
10080
10477
|
quantity: number
|
|
10081
10478
|
ownershipType: LolInventoryItemOwnershipType
|
|
10479
|
+
usedInGameDate: string
|
|
10082
10480
|
expirationDate: string
|
|
10083
10481
|
/** @format uint64 */
|
|
10084
10482
|
wins: number
|
|
@@ -10118,6 +10516,7 @@ export interface LolInventoryInventoryItemWithPayload {
|
|
|
10118
10516
|
/** @format uint64 */
|
|
10119
10517
|
quantity: number
|
|
10120
10518
|
ownershipType: LolInventoryItemOwnershipType
|
|
10519
|
+
usedInGameDate: string
|
|
10121
10520
|
expirationDate: string
|
|
10122
10521
|
"f2p": boolean
|
|
10123
10522
|
rental: boolean
|
|
@@ -12012,8 +12411,10 @@ export interface LolLobbyTeamBuilderCellV1 {
|
|
|
12012
12411
|
"spell2Id": number
|
|
12013
12412
|
/** @format uint64 */
|
|
12014
12413
|
summonerId: number
|
|
12015
|
-
|
|
12414
|
+
gameName: string
|
|
12415
|
+
tagLine: string
|
|
12016
12416
|
puuid: string
|
|
12417
|
+
isHumanoid: boolean
|
|
12017
12418
|
nameVisibilityType: string
|
|
12018
12419
|
/** @format uint64 */
|
|
12019
12420
|
obfuscatedSummonerId: number
|
|
@@ -12089,8 +12490,10 @@ export interface LolLobbyTeamBuilderChampSelectPlayerSelection {
|
|
|
12089
12490
|
playerType: string
|
|
12090
12491
|
/** @format uint64 */
|
|
12091
12492
|
summonerId: number
|
|
12092
|
-
|
|
12493
|
+
gameName: string
|
|
12494
|
+
tagLine: string
|
|
12093
12495
|
puuid: string
|
|
12496
|
+
isHumanoid: boolean
|
|
12094
12497
|
nameVisibilityType: string
|
|
12095
12498
|
/** @format uint64 */
|
|
12096
12499
|
obfuscatedSummonerId: number
|
|
@@ -12111,6 +12514,7 @@ export interface LolLobbyTeamBuilderChampSelectSession {
|
|
|
12111
12514
|
/** @format int64 */
|
|
12112
12515
|
localPlayerCellId: number
|
|
12113
12516
|
allowSkinSelection: boolean
|
|
12517
|
+
allowSubsetChampionPicks: boolean
|
|
12114
12518
|
allowDuplicatePicks: boolean
|
|
12115
12519
|
allowBattleBoost: boolean
|
|
12116
12520
|
/** @format int32 */
|
|
@@ -12192,6 +12596,7 @@ export interface LolLobbyTeamBuilderChampionSelectStateV1 {
|
|
|
12192
12596
|
pickIntentClearedReason: string
|
|
12193
12597
|
allowOptingOutOfBanning: boolean
|
|
12194
12598
|
allowSkinSelection: boolean
|
|
12599
|
+
allowSubsetChampionPicks: boolean
|
|
12195
12600
|
allowDuplicatePicks: boolean
|
|
12196
12601
|
rerollState: LolLobbyTeamBuilderRerollStateV1
|
|
12197
12602
|
lockedEventsState: LolLobbyTeamBuilderLockedEventsStateV1
|
|
@@ -12549,6 +12954,7 @@ export interface LolLobbyTeamBuilderTbdInventory {
|
|
|
12549
12954
|
allChampionIds: number[]
|
|
12550
12955
|
disabledChampionIds: number[]
|
|
12551
12956
|
crowdFavoriteChampionIds: number[]
|
|
12957
|
+
subsetChampionIds: number[]
|
|
12552
12958
|
}
|
|
12553
12959
|
|
|
12554
12960
|
export interface LolLobbyTeamBuilderTeamBoost {
|
|
@@ -14800,6 +15206,123 @@ export interface LolMatchmakingQueue {
|
|
|
14800
15206
|
|
|
14801
15207
|
export type LolMatchmakingQueueCustomGameSpectatorPolicy = "AllAllowed" | "FriendsAllowed" | "LobbyAllowed" | "NotAllowed"
|
|
14802
15208
|
|
|
15209
|
+
export interface LolMissionsCAPMission {
|
|
15210
|
+
missionId: string
|
|
15211
|
+
title: string
|
|
15212
|
+
description: string
|
|
15213
|
+
missionIconAsset: LolMissionsMissionAsset
|
|
15214
|
+
rewards: LolMissionsCAPMissionReward[]
|
|
15215
|
+
objectives: LolMissionsCAPMissionObjective[]
|
|
15216
|
+
}
|
|
15217
|
+
|
|
15218
|
+
export interface LolMissionsCAPMissionCollection {
|
|
15219
|
+
missionCollectionId: string
|
|
15220
|
+
dates: LolMissionsCAPMissionCollectionDates
|
|
15221
|
+
seriesList: LolMissionsCAPMissionSeries[]
|
|
15222
|
+
}
|
|
15223
|
+
|
|
15224
|
+
export interface LolMissionsCAPMissionCollectionDateRange {
|
|
15225
|
+
/** @format uint64 */
|
|
15226
|
+
activationTimeEpoch: number
|
|
15227
|
+
/** @format uint64 */
|
|
15228
|
+
deactivationTimeEpoch: number
|
|
15229
|
+
}
|
|
15230
|
+
|
|
15231
|
+
export interface LolMissionsCAPMissionCollectionDates {
|
|
15232
|
+
live: LolMissionsCAPMissionCollectionDateRange
|
|
15233
|
+
pbe: LolMissionsCAPMissionCollectionDateRange
|
|
15234
|
+
internal: LolMissionsCAPMissionCollectionDateRange
|
|
15235
|
+
}
|
|
15236
|
+
|
|
15237
|
+
export interface LolMissionsCAPMissionObjective {
|
|
15238
|
+
statId: string
|
|
15239
|
+
description: string
|
|
15240
|
+
}
|
|
15241
|
+
|
|
15242
|
+
export interface LolMissionsCAPMissionReward {
|
|
15243
|
+
itemId: string
|
|
15244
|
+
rewardName: string
|
|
15245
|
+
/** @format uint32 */
|
|
15246
|
+
quantity: number
|
|
15247
|
+
rewardAsset: LolMissionsMissionAsset
|
|
15248
|
+
}
|
|
15249
|
+
|
|
15250
|
+
export interface LolMissionsCAPMissionSeries {
|
|
15251
|
+
seriesId: string
|
|
15252
|
+
seriesTitle: string
|
|
15253
|
+
seriesIconAsset: LolMissionsMissionAsset
|
|
15254
|
+
missions: LolMissionsCAPMission[]
|
|
15255
|
+
}
|
|
15256
|
+
|
|
15257
|
+
export interface LolMissionsCapMissionSeriesMission {
|
|
15258
|
+
name: string
|
|
15259
|
+
missionId: string
|
|
15260
|
+
expression: string
|
|
15261
|
+
missionCollectionId: string
|
|
15262
|
+
status: string
|
|
15263
|
+
completedTimeUtc: string
|
|
15264
|
+
missionInstanceId: string
|
|
15265
|
+
objectives: LolMissionsCapMissionSeriesMissionObjective[]
|
|
15266
|
+
eligibility: LolMissionsCapMissionSeriesMissionEligibility[]
|
|
15267
|
+
rewardsStatus: LolMissionsCapMissionSeriesMissionRewardsStatus
|
|
15268
|
+
/** @format uint32 */
|
|
15269
|
+
repeatSequence: number
|
|
15270
|
+
properties: Record<string, string>
|
|
15271
|
+
metadata: Record<string, string>
|
|
15272
|
+
}
|
|
15273
|
+
|
|
15274
|
+
export interface LolMissionsCapMissionSeriesMissionEligibility {
|
|
15275
|
+
type: string
|
|
15276
|
+
missionCollectionId: string
|
|
15277
|
+
missionId: string
|
|
15278
|
+
startTime: string
|
|
15279
|
+
}
|
|
15280
|
+
|
|
15281
|
+
export interface LolMissionsCapMissionSeriesMissionObjective {
|
|
15282
|
+
statId: string
|
|
15283
|
+
objectiveId: string
|
|
15284
|
+
/** @format uint32 */
|
|
15285
|
+
goal: number
|
|
15286
|
+
/** @format uint32 */
|
|
15287
|
+
currentValue: number
|
|
15288
|
+
}
|
|
15289
|
+
|
|
15290
|
+
export interface LolMissionsCapMissionSeriesMissionReward {
|
|
15291
|
+
type: string
|
|
15292
|
+
counterId: string
|
|
15293
|
+
itemId: string
|
|
15294
|
+
itemTypeId: string
|
|
15295
|
+
typeId: string
|
|
15296
|
+
/** @format uint32 */
|
|
15297
|
+
amount: number
|
|
15298
|
+
}
|
|
15299
|
+
|
|
15300
|
+
export interface LolMissionsCapMissionSeriesMissionRewardsStatus {
|
|
15301
|
+
requiresClaim: boolean
|
|
15302
|
+
status: string
|
|
15303
|
+
rewards: LolMissionsCapMissionSeriesMissionReward[]
|
|
15304
|
+
}
|
|
15305
|
+
|
|
15306
|
+
export interface LolMissionsCapMissionsMarkAsViewedPostBody {
|
|
15307
|
+
events: LolMissionsCapMissionsMarkAsViewedPostBodyEvent[]
|
|
15308
|
+
}
|
|
15309
|
+
|
|
15310
|
+
export interface LolMissionsCapMissionsMarkAsViewedPostBodyEvent {
|
|
15311
|
+
configurationId: string
|
|
15312
|
+
missions: LolMissionsCapMissionsMarkAsViewedPostBodyMission[]
|
|
15313
|
+
}
|
|
15314
|
+
|
|
15315
|
+
export interface LolMissionsCapMissionsMarkAsViewedPostBodyMission {
|
|
15316
|
+
missionInstanceId: string
|
|
15317
|
+
metadata: Record<string, string>
|
|
15318
|
+
}
|
|
15319
|
+
|
|
15320
|
+
export interface LolMissionsCapMissionsMeResponse {
|
|
15321
|
+
productId: string
|
|
15322
|
+
ownerId: string
|
|
15323
|
+
series: LolMissionsCapMissionSeries[]
|
|
15324
|
+
}
|
|
15325
|
+
|
|
14803
15326
|
export interface LolMissionsCollectionsChampion {
|
|
14804
15327
|
/** @format int32 */
|
|
14805
15328
|
id: number
|
|
@@ -14864,6 +15387,8 @@ export interface LolMissionsLoginSession {
|
|
|
14864
15387
|
platformId: string
|
|
14865
15388
|
}
|
|
14866
15389
|
|
|
15390
|
+
export type LolMissionsLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
15391
|
+
|
|
14867
15392
|
export type LolMissionsLoyaltyStatus = "DISABLED" | "REVOKE" | "CHANGE" | "EXPIRY" | "REWARDS_GRANT" | "LEGACY"
|
|
14868
15393
|
|
|
14869
15394
|
export interface LolMissionsLoyaltyStatusNotification {
|
|
@@ -14959,6 +15484,21 @@ export interface LolMissionsRewardsProductConfig {
|
|
|
14959
15484
|
serviceUrl: string
|
|
14960
15485
|
}
|
|
14961
15486
|
|
|
15487
|
+
export interface LolMissionsRiotMessagingServiceMessage {
|
|
15488
|
+
resource: string
|
|
15489
|
+
service: string
|
|
15490
|
+
version: string
|
|
15491
|
+
/** @format int64 */
|
|
15492
|
+
timestamp: number
|
|
15493
|
+
payload: string
|
|
15494
|
+
}
|
|
15495
|
+
|
|
15496
|
+
export interface LolMissionsRiotMessagingServicePayload {
|
|
15497
|
+
deltaEventId: string
|
|
15498
|
+
ownerId: string
|
|
15499
|
+
updatedMissions: string[]
|
|
15500
|
+
}
|
|
15501
|
+
|
|
14962
15502
|
export interface LolMissionsSelectionStrategyConfig {
|
|
14963
15503
|
/** @format uint32 */
|
|
14964
15504
|
minSelectionsAllowed: number
|
|
@@ -15555,54 +16095,171 @@ export interface LolNpeTutorialPathSummoner {
|
|
|
15555
16095
|
unnamed: boolean
|
|
15556
16096
|
}
|
|
15557
16097
|
|
|
15558
|
-
export interface LolNpeTutorialPathSummonerIcon {
|
|
15559
|
-
/** @format int32 */
|
|
15560
|
-
profileIconId: number
|
|
16098
|
+
export interface LolNpeTutorialPathSummonerIcon {
|
|
16099
|
+
/** @format int32 */
|
|
16100
|
+
profileIconId: number
|
|
16101
|
+
}
|
|
16102
|
+
|
|
16103
|
+
export interface LolNpeTutorialPathTutorial {
|
|
16104
|
+
id: string
|
|
16105
|
+
/** @format int32 */
|
|
16106
|
+
stepNumber: number
|
|
16107
|
+
title: string
|
|
16108
|
+
description: string
|
|
16109
|
+
backgroundUrl: string
|
|
16110
|
+
queueId: string
|
|
16111
|
+
useQuickSearchMatchmaking: boolean
|
|
16112
|
+
useChosenChampion: boolean
|
|
16113
|
+
status: LolNpeTutorialPathTutorialStatus
|
|
16114
|
+
isViewed: boolean
|
|
16115
|
+
type: LolNpeTutorialPathTutorialType
|
|
16116
|
+
rewards: LolNpeTutorialPathTutorialReward[]
|
|
16117
|
+
}
|
|
16118
|
+
|
|
16119
|
+
export interface LolNpeTutorialPathTutorialMetadata {
|
|
16120
|
+
/** @format int32 */
|
|
16121
|
+
stepNumber: number
|
|
16122
|
+
queueId: string
|
|
16123
|
+
displayRewards: Record<string, string>
|
|
16124
|
+
useQuickSearchMatchmaking: boolean
|
|
16125
|
+
useChosenChampion: boolean
|
|
16126
|
+
}
|
|
16127
|
+
|
|
16128
|
+
export interface LolNpeTutorialPathTutorialReward {
|
|
16129
|
+
rewardType: string
|
|
16130
|
+
description: string
|
|
16131
|
+
rewardFulfilled: boolean
|
|
16132
|
+
iconUrl: string
|
|
16133
|
+
itemId: string
|
|
16134
|
+
/** @format int32 */
|
|
16135
|
+
sequence: number
|
|
16136
|
+
uniqueName: string
|
|
16137
|
+
}
|
|
16138
|
+
|
|
16139
|
+
export type LolNpeTutorialPathTutorialStatus = "COMPLETED" | "UNLOCKED" | "LOCKED"
|
|
16140
|
+
|
|
16141
|
+
export type LolNpeTutorialPathTutorialType = "REWARD" | "CARD"
|
|
16142
|
+
|
|
16143
|
+
export interface LolObjectivesActiveEventUIData {
|
|
16144
|
+
eventId: string
|
|
16145
|
+
eventInfo: LolObjectivesEventInfoUIData
|
|
16146
|
+
}
|
|
16147
|
+
|
|
16148
|
+
export interface LolObjectivesCAPMission {
|
|
16149
|
+
missionId: string
|
|
16150
|
+
title: string
|
|
16151
|
+
description: string
|
|
16152
|
+
missionIconAsset: LolObjectivesMissionAsset
|
|
16153
|
+
rewards: LolObjectivesCAPMissionReward[]
|
|
16154
|
+
objectives: LolObjectivesCAPMissionObjective[]
|
|
16155
|
+
}
|
|
16156
|
+
|
|
16157
|
+
export interface LolObjectivesCAPMissionCollection {
|
|
16158
|
+
missionCollectionId: string
|
|
16159
|
+
dates: LolObjectivesCAPMissionCollectionDates
|
|
16160
|
+
seriesList: LolObjectivesCAPMissionSeries[]
|
|
16161
|
+
}
|
|
16162
|
+
|
|
16163
|
+
export interface LolObjectivesCAPMissionCollectionDateRange {
|
|
16164
|
+
/** @format uint64 */
|
|
16165
|
+
activationTimeEpoch: number
|
|
16166
|
+
/** @format uint64 */
|
|
16167
|
+
deactivationTimeEpoch: number
|
|
16168
|
+
}
|
|
16169
|
+
|
|
16170
|
+
export interface LolObjectivesCAPMissionCollectionDates {
|
|
16171
|
+
live: LolObjectivesCAPMissionCollectionDateRange
|
|
16172
|
+
pbe: LolObjectivesCAPMissionCollectionDateRange
|
|
16173
|
+
internal: LolObjectivesCAPMissionCollectionDateRange
|
|
16174
|
+
}
|
|
16175
|
+
|
|
16176
|
+
export interface LolObjectivesCAPMissionObjective {
|
|
16177
|
+
statId: string
|
|
16178
|
+
description: string
|
|
16179
|
+
}
|
|
16180
|
+
|
|
16181
|
+
export interface LolObjectivesCAPMissionReward {
|
|
16182
|
+
itemId: string
|
|
16183
|
+
rewardName: string
|
|
16184
|
+
/** @format uint32 */
|
|
16185
|
+
quantity: number
|
|
16186
|
+
rewardAsset: LolObjectivesMissionAsset
|
|
16187
|
+
}
|
|
16188
|
+
|
|
16189
|
+
export interface LolObjectivesCAPMissionSeries {
|
|
16190
|
+
seriesId: string
|
|
16191
|
+
seriesTitle: string
|
|
16192
|
+
seriesIconAsset: LolObjectivesMissionAsset
|
|
16193
|
+
missions: LolObjectivesCAPMission[]
|
|
16194
|
+
}
|
|
16195
|
+
|
|
16196
|
+
export interface LolObjectivesCapMissionSeriesMission {
|
|
16197
|
+
name: string
|
|
16198
|
+
missionId: string
|
|
16199
|
+
expression: string
|
|
16200
|
+
missionCollectionId: string
|
|
16201
|
+
status: string
|
|
16202
|
+
completedTimeUtc: string
|
|
16203
|
+
missionInstanceId: string
|
|
16204
|
+
objectives: LolObjectivesCapMissionSeriesMissionObjective[]
|
|
16205
|
+
eligibility: LolObjectivesCapMissionSeriesMissionEligibility[]
|
|
16206
|
+
rewardsStatus: LolObjectivesCapMissionSeriesMissionRewardsStatus
|
|
16207
|
+
/** @format uint32 */
|
|
16208
|
+
repeatSequence: number
|
|
16209
|
+
properties: Record<string, string>
|
|
16210
|
+
metadata: Record<string, string>
|
|
16211
|
+
}
|
|
16212
|
+
|
|
16213
|
+
export interface LolObjectivesCapMissionSeriesMissionEligibility {
|
|
16214
|
+
type: string
|
|
16215
|
+
missionCollectionId: string
|
|
16216
|
+
missionId: string
|
|
16217
|
+
startTime: string
|
|
16218
|
+
}
|
|
16219
|
+
|
|
16220
|
+
export interface LolObjectivesCapMissionSeriesMissionObjective {
|
|
16221
|
+
statId: string
|
|
16222
|
+
objectiveId: string
|
|
16223
|
+
/** @format uint32 */
|
|
16224
|
+
goal: number
|
|
16225
|
+
/** @format uint32 */
|
|
16226
|
+
currentValue: number
|
|
16227
|
+
}
|
|
16228
|
+
|
|
16229
|
+
export interface LolObjectivesCapMissionSeriesMissionReward {
|
|
16230
|
+
type: string
|
|
16231
|
+
counterId: string
|
|
16232
|
+
itemId: string
|
|
16233
|
+
itemTypeId: string
|
|
16234
|
+
typeId: string
|
|
16235
|
+
/** @format uint32 */
|
|
16236
|
+
amount: number
|
|
16237
|
+
}
|
|
16238
|
+
|
|
16239
|
+
export interface LolObjectivesCapMissionSeriesMissionRewardsStatus {
|
|
16240
|
+
requiresClaim: boolean
|
|
16241
|
+
status: string
|
|
16242
|
+
rewards: LolObjectivesCapMissionSeriesMissionReward[]
|
|
15561
16243
|
}
|
|
15562
16244
|
|
|
15563
|
-
export interface
|
|
15564
|
-
|
|
15565
|
-
/** @format int32 */
|
|
15566
|
-
stepNumber: number
|
|
15567
|
-
title: string
|
|
15568
|
-
description: string
|
|
15569
|
-
backgroundUrl: string
|
|
15570
|
-
queueId: string
|
|
15571
|
-
useQuickSearchMatchmaking: boolean
|
|
15572
|
-
useChosenChampion: boolean
|
|
15573
|
-
status: LolNpeTutorialPathTutorialStatus
|
|
15574
|
-
isViewed: boolean
|
|
15575
|
-
type: LolNpeTutorialPathTutorialType
|
|
15576
|
-
rewards: LolNpeTutorialPathTutorialReward[]
|
|
16245
|
+
export interface LolObjectivesCapMissionsMarkAsViewedPostBody {
|
|
16246
|
+
events: LolObjectivesCapMissionsMarkAsViewedPostBodyEvent[]
|
|
15577
16247
|
}
|
|
15578
16248
|
|
|
15579
|
-
export interface
|
|
15580
|
-
|
|
15581
|
-
|
|
15582
|
-
queueId: string
|
|
15583
|
-
displayRewards: Record<string, string>
|
|
15584
|
-
useQuickSearchMatchmaking: boolean
|
|
15585
|
-
useChosenChampion: boolean
|
|
16249
|
+
export interface LolObjectivesCapMissionsMarkAsViewedPostBodyEvent {
|
|
16250
|
+
configurationId: string
|
|
16251
|
+
missions: LolObjectivesCapMissionsMarkAsViewedPostBodyMission[]
|
|
15586
16252
|
}
|
|
15587
16253
|
|
|
15588
|
-
export interface
|
|
15589
|
-
|
|
15590
|
-
|
|
15591
|
-
rewardFulfilled: boolean
|
|
15592
|
-
iconUrl: string
|
|
15593
|
-
itemId: string
|
|
15594
|
-
/** @format int32 */
|
|
15595
|
-
sequence: number
|
|
15596
|
-
uniqueName: string
|
|
16254
|
+
export interface LolObjectivesCapMissionsMarkAsViewedPostBodyMission {
|
|
16255
|
+
missionInstanceId: string
|
|
16256
|
+
metadata: Record<string, string>
|
|
15597
16257
|
}
|
|
15598
16258
|
|
|
15599
|
-
export
|
|
15600
|
-
|
|
15601
|
-
|
|
15602
|
-
|
|
15603
|
-
export interface LolObjectivesActiveEventUIData {
|
|
15604
|
-
eventId: string
|
|
15605
|
-
eventInfo: LolObjectivesEventInfoUIData
|
|
16259
|
+
export interface LolObjectivesCapMissionsMeResponse {
|
|
16260
|
+
productId: string
|
|
16261
|
+
ownerId: string
|
|
16262
|
+
series: LolObjectivesCapMissionSeries[]
|
|
15606
16263
|
}
|
|
15607
16264
|
|
|
15608
16265
|
export interface LolObjectivesCatalogEntry {
|
|
@@ -15662,6 +16319,9 @@ export interface LolObjectivesEventInfoUIData {
|
|
|
15662
16319
|
eventIcon: string
|
|
15663
16320
|
navBarIcon: string
|
|
15664
16321
|
eventTokenImage: string
|
|
16322
|
+
startDate: string
|
|
16323
|
+
progressEndDate: string
|
|
16324
|
+
endDate: string
|
|
15665
16325
|
/** @format int32 */
|
|
15666
16326
|
currentTokenBalance: number
|
|
15667
16327
|
/** @format int32 */
|
|
@@ -15697,6 +16357,8 @@ export interface LolObjectivesLoginSession {
|
|
|
15697
16357
|
platformId: string
|
|
15698
16358
|
}
|
|
15699
16359
|
|
|
16360
|
+
export type LolObjectivesLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
16361
|
+
|
|
15700
16362
|
export type LolObjectivesLoyaltyStatus = "DISABLED" | "REVOKE" | "CHANGE" | "EXPIRY" | "REWARDS_GRANT" | "LEGACY"
|
|
15701
16363
|
|
|
15702
16364
|
export interface LolObjectivesLoyaltyStatusNotification {
|
|
@@ -15754,7 +16416,7 @@ export interface LolObjectivesObjectivesContainer {
|
|
|
15754
16416
|
}
|
|
15755
16417
|
|
|
15756
16418
|
export interface LolObjectivesObjectivesGroup {
|
|
15757
|
-
|
|
16419
|
+
id: string
|
|
15758
16420
|
backgroundImage: string
|
|
15759
16421
|
/** @format uint64 */
|
|
15760
16422
|
startDate: number
|
|
@@ -15857,6 +16519,21 @@ export interface LolObjectivesRewardsProductConfig {
|
|
|
15857
16519
|
serviceUrl: string
|
|
15858
16520
|
}
|
|
15859
16521
|
|
|
16522
|
+
export interface LolObjectivesRiotMessagingServiceMessage {
|
|
16523
|
+
resource: string
|
|
16524
|
+
service: string
|
|
16525
|
+
version: string
|
|
16526
|
+
/** @format int64 */
|
|
16527
|
+
timestamp: number
|
|
16528
|
+
payload: string
|
|
16529
|
+
}
|
|
16530
|
+
|
|
16531
|
+
export interface LolObjectivesRiotMessagingServicePayload {
|
|
16532
|
+
deltaEventId: string
|
|
16533
|
+
ownerId: string
|
|
16534
|
+
updatedMissions: string[]
|
|
16535
|
+
}
|
|
16536
|
+
|
|
15860
16537
|
export interface LolObjectivesSelectionStrategyConfig {
|
|
15861
16538
|
/** @format uint32 */
|
|
15862
16539
|
minSelectionsAllowed: number
|
|
@@ -15879,6 +16556,67 @@ export interface LolObjectivesSvcReward {
|
|
|
15879
16556
|
localizations: Record<string, string>
|
|
15880
16557
|
}
|
|
15881
16558
|
|
|
16559
|
+
export interface LolObjectivesTftBattlepass {
|
|
16560
|
+
/** @format int32 */
|
|
16561
|
+
totalPointsEarned: number
|
|
16562
|
+
milestones: LolObjectivesTftBattlepassMilestone[]
|
|
16563
|
+
bonuses: LolObjectivesTftBattlepassMilestone[]
|
|
16564
|
+
activeMilestone: LolObjectivesTftBattlepassMilestone
|
|
16565
|
+
info: LolObjectivesTftBattlepassInfo
|
|
16566
|
+
/** @format int32 */
|
|
16567
|
+
lastViewedProgress: number
|
|
16568
|
+
lastViewedMilestone: LolObjectivesTftBattlepassMilestone
|
|
16569
|
+
/** @format int32 */
|
|
16570
|
+
currentLevel: number
|
|
16571
|
+
}
|
|
16572
|
+
|
|
16573
|
+
export interface LolObjectivesTftBattlepassInfo {
|
|
16574
|
+
title: string
|
|
16575
|
+
description: string
|
|
16576
|
+
/** @format uint64 */
|
|
16577
|
+
startDate: number
|
|
16578
|
+
/** @format uint64 */
|
|
16579
|
+
endDate: number
|
|
16580
|
+
premium: boolean
|
|
16581
|
+
premiumTitle: string
|
|
16582
|
+
premiumEntitlementId: string
|
|
16583
|
+
pcPurchaseRequirement: string
|
|
16584
|
+
passId: string
|
|
16585
|
+
media: Record<string, string>
|
|
16586
|
+
}
|
|
16587
|
+
|
|
16588
|
+
export interface LolObjectivesTftBattlepassMilestone {
|
|
16589
|
+
milestoneId: string
|
|
16590
|
+
title: string
|
|
16591
|
+
description: string
|
|
16592
|
+
status: string
|
|
16593
|
+
/** @format int32 */
|
|
16594
|
+
pointsNeededForMilestone: number
|
|
16595
|
+
/** @format int32 */
|
|
16596
|
+
pointsEarnedForMilestone: number
|
|
16597
|
+
/** @format int32 */
|
|
16598
|
+
totalPointsForMilestone: number
|
|
16599
|
+
/** @format int32 */
|
|
16600
|
+
level: number
|
|
16601
|
+
iconImageUrl: string
|
|
16602
|
+
iconNeedsFrame: boolean
|
|
16603
|
+
rewards: LolObjectivesTftBattlepassReward[]
|
|
16604
|
+
isPaid: boolean
|
|
16605
|
+
isLocked: boolean
|
|
16606
|
+
isKeystone: boolean
|
|
16607
|
+
isBonus: boolean
|
|
16608
|
+
isClaimRequestPending: boolean
|
|
16609
|
+
}
|
|
16610
|
+
|
|
16611
|
+
export interface LolObjectivesTftBattlepassReward {
|
|
16612
|
+
name: string
|
|
16613
|
+
description: string
|
|
16614
|
+
itemId: string
|
|
16615
|
+
itemTypeId: string
|
|
16616
|
+
iconUrl: string
|
|
16617
|
+
iconNeedsFrame: boolean
|
|
16618
|
+
}
|
|
16619
|
+
|
|
15882
16620
|
export interface LolObjectivesTftOrb {
|
|
15883
16621
|
missionId: string
|
|
15884
16622
|
status: string
|
|
@@ -15929,6 +16667,7 @@ export interface LolObjectivesUIObjectivesCategory {
|
|
|
15929
16667
|
endDate: number
|
|
15930
16668
|
categorySectionImage: string
|
|
15931
16669
|
categoryName: string
|
|
16670
|
+
overrideBackgroundImage: string
|
|
15932
16671
|
objectives: LolObjectivesUIObjectives[]
|
|
15933
16672
|
categoryType: LolObjectivesObjectiveCategoryType
|
|
15934
16673
|
}
|
|
@@ -17975,28 +18714,6 @@ export interface LolRankedEosNotificationsConfigEntry {
|
|
|
17975
18714
|
"offsetTime3": number
|
|
17976
18715
|
}
|
|
17977
18716
|
|
|
17978
|
-
export interface LolRankedEosRewardData {
|
|
17979
|
-
id: string
|
|
17980
|
-
type: string
|
|
17981
|
-
overrideImagePath: string
|
|
17982
|
-
}
|
|
17983
|
-
|
|
17984
|
-
export interface LolRankedEosRewardGroupsConfig {
|
|
17985
|
-
rewardGroups: Record<string, LolRankedEosRewardGroupsRewardsList>
|
|
17986
|
-
}
|
|
17987
|
-
|
|
17988
|
-
export interface LolRankedEosRewardGroupsRewardsList {
|
|
17989
|
-
rewards: string[]
|
|
17990
|
-
}
|
|
17991
|
-
|
|
17992
|
-
export interface LolRankedEosRewardsConfig {
|
|
17993
|
-
seasons: Record<string, LolRankedEosRewardsConfigEntry>
|
|
17994
|
-
}
|
|
17995
|
-
|
|
17996
|
-
export interface LolRankedEosRewardsConfigEntry {
|
|
17997
|
-
rewards: Record<string, LolRankedEosRewardData>
|
|
17998
|
-
}
|
|
17999
|
-
|
|
18000
18717
|
export interface LolRankedEosSettingsData {
|
|
18001
18718
|
notificationShown: boolean
|
|
18002
18719
|
}
|
|
@@ -18060,8 +18777,10 @@ export interface LolRankedLcuLeagueNotification {
|
|
|
18060
18777
|
timeUntilInactivityStatusChanges: number
|
|
18061
18778
|
rewardEarnedId: string
|
|
18062
18779
|
rewardEarnedType: string
|
|
18780
|
+
rewardEarnedTitle: string
|
|
18781
|
+
rewardEarnedDescription: string
|
|
18782
|
+
rewardEarnedTier: string
|
|
18063
18783
|
rewardOverrideImagePath: string
|
|
18064
|
-
splitPointsNotification?: LolRankedSplitPointsNotification
|
|
18065
18784
|
promoSeriesForRanksEnabled: boolean
|
|
18066
18785
|
/** @format int32 */
|
|
18067
18786
|
consolationLpUsed: number
|
|
@@ -18250,6 +18969,32 @@ export interface LolRankedLoginSession {
|
|
|
18250
18969
|
|
|
18251
18970
|
export type LolRankedLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
18252
18971
|
|
|
18972
|
+
export interface LolRankedLolEosRewardGameData {
|
|
18973
|
+
id: string
|
|
18974
|
+
name: string
|
|
18975
|
+
title: string
|
|
18976
|
+
description: string
|
|
18977
|
+
tier: LolRankedLolEosRewardTier
|
|
18978
|
+
type: LolRankedLolEosRewardType
|
|
18979
|
+
overrideImagePath: string
|
|
18980
|
+
}
|
|
18981
|
+
|
|
18982
|
+
export interface LolRankedLolEosRewardGroupGameData {
|
|
18983
|
+
id: string
|
|
18984
|
+
rewardNames: string[]
|
|
18985
|
+
}
|
|
18986
|
+
|
|
18987
|
+
export type LolRankedLolEosRewardTier = "kChallenger" | "kGrandmaster" | "kMaster" | "kDiamond" | "kEmerald" | "kPlatinum" | "kGold" | "kSilver" | "kBronze" | "kIron" | "kNone"
|
|
18988
|
+
|
|
18989
|
+
export type LolRankedLolEosRewardType = "kEmote" | "kSummonerIcon" | "kVictoriousSkinBorder" | "kVictoriousChroma" | "kVictoriousSkin" | "kChampion" | "kEternalsCapsule" | "kNone"
|
|
18990
|
+
|
|
18991
|
+
export interface LolRankedLolEosRewardsConfigGameData {
|
|
18992
|
+
/** @format int64 */
|
|
18993
|
+
seasonId: number
|
|
18994
|
+
rewards: LolRankedLolEosRewardGameData[]
|
|
18995
|
+
rewardGroups: LolRankedLolEosRewardGroupGameData[]
|
|
18996
|
+
}
|
|
18997
|
+
|
|
18253
18998
|
export type LolRankedMiniseries = "N" | "L" | "W"
|
|
18254
18999
|
|
|
18255
19000
|
export type LolRankedNotificationDisplayType = "VIGNETTE" | "MODAL" | "TOAST" | "NONE"
|
|
@@ -18419,7 +19164,7 @@ export type LolRankedRatedTier = "ORANGE" | "PURPLE" | "BLUE" | "GREEN" | "GRAY"
|
|
|
18419
19164
|
|
|
18420
19165
|
export interface LolRankedRewardNotification {
|
|
18421
19166
|
rewardGroupId: string
|
|
18422
|
-
/** @format
|
|
19167
|
+
/** @format int64 */
|
|
18423
19168
|
seasonId: number
|
|
18424
19169
|
}
|
|
18425
19170
|
|
|
@@ -18495,22 +19240,6 @@ export interface LolRankedSocialLeaderboardRankedQueueStatsDTO {
|
|
|
18495
19240
|
losses: number
|
|
18496
19241
|
}
|
|
18497
19242
|
|
|
18498
|
-
export interface LolRankedSplitPointsNotification {
|
|
18499
|
-
/** @format int32 */
|
|
18500
|
-
splitPointsDelta: number
|
|
18501
|
-
/** @format int32 */
|
|
18502
|
-
splitPointsBeforeGame: number
|
|
18503
|
-
/** @format int32 */
|
|
18504
|
-
splitPointsAfterGame: number
|
|
18505
|
-
/** @format int32 */
|
|
18506
|
-
previousSplitPointsRequired: number
|
|
18507
|
-
/** @format int32 */
|
|
18508
|
-
splitPointsRequired: number
|
|
18509
|
-
nextRewardId: string
|
|
18510
|
-
nextRewardType: string
|
|
18511
|
-
splitPointsBreakdown: Record<string, number>
|
|
18512
|
-
}
|
|
18513
|
-
|
|
18514
19243
|
export interface LolRankedSummoner {
|
|
18515
19244
|
/** @format uint64 */
|
|
18516
19245
|
summonerId: number
|
|
@@ -21385,6 +22114,123 @@ export interface LolTftDataModelResponse {
|
|
|
21385
22114
|
modelData: unknown
|
|
21386
22115
|
}
|
|
21387
22116
|
|
|
22117
|
+
export interface LolTftEventCAPMission {
|
|
22118
|
+
missionId: string
|
|
22119
|
+
title: string
|
|
22120
|
+
description: string
|
|
22121
|
+
missionIconAsset: LolTftEventMissionAsset
|
|
22122
|
+
rewards: LolTftEventCAPMissionReward[]
|
|
22123
|
+
objectives: LolTftEventCAPMissionObjective[]
|
|
22124
|
+
}
|
|
22125
|
+
|
|
22126
|
+
export interface LolTftEventCAPMissionCollection {
|
|
22127
|
+
missionCollectionId: string
|
|
22128
|
+
dates: LolTftEventCAPMissionCollectionDates
|
|
22129
|
+
seriesList: LolTftEventCAPMissionSeries[]
|
|
22130
|
+
}
|
|
22131
|
+
|
|
22132
|
+
export interface LolTftEventCAPMissionCollectionDateRange {
|
|
22133
|
+
/** @format uint64 */
|
|
22134
|
+
activationTimeEpoch: number
|
|
22135
|
+
/** @format uint64 */
|
|
22136
|
+
deactivationTimeEpoch: number
|
|
22137
|
+
}
|
|
22138
|
+
|
|
22139
|
+
export interface LolTftEventCAPMissionCollectionDates {
|
|
22140
|
+
live: LolTftEventCAPMissionCollectionDateRange
|
|
22141
|
+
pbe: LolTftEventCAPMissionCollectionDateRange
|
|
22142
|
+
internal: LolTftEventCAPMissionCollectionDateRange
|
|
22143
|
+
}
|
|
22144
|
+
|
|
22145
|
+
export interface LolTftEventCAPMissionObjective {
|
|
22146
|
+
statId: string
|
|
22147
|
+
description: string
|
|
22148
|
+
}
|
|
22149
|
+
|
|
22150
|
+
export interface LolTftEventCAPMissionReward {
|
|
22151
|
+
itemId: string
|
|
22152
|
+
rewardName: string
|
|
22153
|
+
/** @format uint32 */
|
|
22154
|
+
quantity: number
|
|
22155
|
+
rewardAsset: LolTftEventMissionAsset
|
|
22156
|
+
}
|
|
22157
|
+
|
|
22158
|
+
export interface LolTftEventCAPMissionSeries {
|
|
22159
|
+
seriesId: string
|
|
22160
|
+
seriesTitle: string
|
|
22161
|
+
seriesIconAsset: LolTftEventMissionAsset
|
|
22162
|
+
missions: LolTftEventCAPMission[]
|
|
22163
|
+
}
|
|
22164
|
+
|
|
22165
|
+
export interface LolTftEventCapMissionSeriesMission {
|
|
22166
|
+
name: string
|
|
22167
|
+
missionId: string
|
|
22168
|
+
expression: string
|
|
22169
|
+
missionCollectionId: string
|
|
22170
|
+
status: string
|
|
22171
|
+
completedTimeUtc: string
|
|
22172
|
+
missionInstanceId: string
|
|
22173
|
+
objectives: LolTftEventCapMissionSeriesMissionObjective[]
|
|
22174
|
+
eligibility: LolTftEventCapMissionSeriesMissionEligibility[]
|
|
22175
|
+
rewardsStatus: LolTftEventCapMissionSeriesMissionRewardsStatus
|
|
22176
|
+
/** @format uint32 */
|
|
22177
|
+
repeatSequence: number
|
|
22178
|
+
properties: Record<string, string>
|
|
22179
|
+
metadata: Record<string, string>
|
|
22180
|
+
}
|
|
22181
|
+
|
|
22182
|
+
export interface LolTftEventCapMissionSeriesMissionEligibility {
|
|
22183
|
+
type: string
|
|
22184
|
+
missionCollectionId: string
|
|
22185
|
+
missionId: string
|
|
22186
|
+
startTime: string
|
|
22187
|
+
}
|
|
22188
|
+
|
|
22189
|
+
export interface LolTftEventCapMissionSeriesMissionObjective {
|
|
22190
|
+
statId: string
|
|
22191
|
+
objectiveId: string
|
|
22192
|
+
/** @format uint32 */
|
|
22193
|
+
goal: number
|
|
22194
|
+
/** @format uint32 */
|
|
22195
|
+
currentValue: number
|
|
22196
|
+
}
|
|
22197
|
+
|
|
22198
|
+
export interface LolTftEventCapMissionSeriesMissionReward {
|
|
22199
|
+
type: string
|
|
22200
|
+
counterId: string
|
|
22201
|
+
itemId: string
|
|
22202
|
+
itemTypeId: string
|
|
22203
|
+
typeId: string
|
|
22204
|
+
/** @format uint32 */
|
|
22205
|
+
amount: number
|
|
22206
|
+
}
|
|
22207
|
+
|
|
22208
|
+
export interface LolTftEventCapMissionSeriesMissionRewardsStatus {
|
|
22209
|
+
requiresClaim: boolean
|
|
22210
|
+
status: string
|
|
22211
|
+
rewards: LolTftEventCapMissionSeriesMissionReward[]
|
|
22212
|
+
}
|
|
22213
|
+
|
|
22214
|
+
export interface LolTftEventCapMissionsMarkAsViewedPostBody {
|
|
22215
|
+
events: LolTftEventCapMissionsMarkAsViewedPostBodyEvent[]
|
|
22216
|
+
}
|
|
22217
|
+
|
|
22218
|
+
export interface LolTftEventCapMissionsMarkAsViewedPostBodyEvent {
|
|
22219
|
+
configurationId: string
|
|
22220
|
+
missions: LolTftEventCapMissionsMarkAsViewedPostBodyMission[]
|
|
22221
|
+
}
|
|
22222
|
+
|
|
22223
|
+
export interface LolTftEventCapMissionsMarkAsViewedPostBodyMission {
|
|
22224
|
+
missionInstanceId: string
|
|
22225
|
+
metadata: Record<string, string>
|
|
22226
|
+
}
|
|
22227
|
+
|
|
22228
|
+
export interface LolTftEventCapMissionsMeResponse {
|
|
22229
|
+
productId: string
|
|
22230
|
+
ownerId: string
|
|
22231
|
+
series: LolTftEventCapMissionSeries[]
|
|
22232
|
+
}
|
|
22233
|
+
|
|
21388
22234
|
export interface LolTftEventCollectionsChampion {
|
|
21389
22235
|
/** @format int32 */
|
|
21390
22236
|
id: number
|
|
@@ -21461,6 +22307,8 @@ export interface LolTftEventLoginSession {
|
|
|
21461
22307
|
platformId: string
|
|
21462
22308
|
}
|
|
21463
22309
|
|
|
22310
|
+
export type LolTftEventLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
22311
|
+
|
|
21464
22312
|
export interface LolTftEventLolTftBackgrounds {
|
|
21465
22313
|
backgrounds: Record<string, string>
|
|
21466
22314
|
}
|
|
@@ -21509,6 +22357,7 @@ export interface LolTftEventLolTftHomeHub {
|
|
|
21509
22357
|
primeGamingPromoOffer?: LolTftEventLolTftPrimeGaming
|
|
21510
22358
|
overrideUrl: string
|
|
21511
22359
|
headerButtonsOverrideUrl: string
|
|
22360
|
+
rotatingShopPromos: LolTftEventTFTRotatingShopPromos
|
|
21512
22361
|
}
|
|
21513
22362
|
|
|
21514
22363
|
export interface LolTftEventLolTftNewsHub {
|
|
@@ -21653,6 +22502,21 @@ export interface LolTftEventRewardsProductConfig {
|
|
|
21653
22502
|
serviceUrl: string
|
|
21654
22503
|
}
|
|
21655
22504
|
|
|
22505
|
+
export interface LolTftEventRiotMessagingServiceMessage {
|
|
22506
|
+
resource: string
|
|
22507
|
+
service: string
|
|
22508
|
+
version: string
|
|
22509
|
+
/** @format int64 */
|
|
22510
|
+
timestamp: number
|
|
22511
|
+
payload: string
|
|
22512
|
+
}
|
|
22513
|
+
|
|
22514
|
+
export interface LolTftEventRiotMessagingServicePayload {
|
|
22515
|
+
deltaEventId: string
|
|
22516
|
+
ownerId: string
|
|
22517
|
+
updatedMissions: string[]
|
|
22518
|
+
}
|
|
22519
|
+
|
|
21656
22520
|
export interface LolTftEventSelectionStrategyConfig {
|
|
21657
22521
|
/** @format uint32 */
|
|
21658
22522
|
minSelectionsAllowed: number
|
|
@@ -21687,6 +22551,23 @@ export interface LolTftEventTFTEventMissionChain {
|
|
|
21687
22551
|
missions: PlayerMissionDTO[]
|
|
21688
22552
|
}
|
|
21689
22553
|
|
|
22554
|
+
export interface LolTftEventTFTEventMissionChains {
|
|
22555
|
+
missionChains: LolTftEventTFTEventMissionChain[]
|
|
22556
|
+
seriesId: string
|
|
22557
|
+
}
|
|
22558
|
+
|
|
22559
|
+
export interface LolTftEventTFTRotatingShopPromo {
|
|
22560
|
+
id: string
|
|
22561
|
+
bundleId: string
|
|
22562
|
+
storeType: string
|
|
22563
|
+
}
|
|
22564
|
+
|
|
22565
|
+
export interface LolTftEventTFTRotatingShopPromos {
|
|
22566
|
+
firstPromos: LolTftEventTFTRotatingShopPromo[]
|
|
22567
|
+
secondPromos: LolTftEventTFTRotatingShopPromo[]
|
|
22568
|
+
fallbackPromo: LolTftEventTFTRotatingShopPromo
|
|
22569
|
+
}
|
|
22570
|
+
|
|
21690
22571
|
export interface LolTftEventTftOrb {
|
|
21691
22572
|
missionId: string
|
|
21692
22573
|
status: string
|
|
@@ -21766,6 +22647,7 @@ export interface LolTftLolTftHomeHub {
|
|
|
21766
22647
|
primeGamingPromoOffer?: LolTftLolTftPrimeGaming
|
|
21767
22648
|
overrideUrl: string
|
|
21768
22649
|
headerButtonsOverrideUrl: string
|
|
22650
|
+
rotatingShopPromos: LolTftTFTRotatingShopPromos
|
|
21769
22651
|
}
|
|
21770
22652
|
|
|
21771
22653
|
export interface LolTftLolTftNewsHub {
|
|
@@ -21899,6 +22781,7 @@ export interface LolTftPassInventoryItem {
|
|
|
21899
22781
|
/** @format uint64 */
|
|
21900
22782
|
quantity: number
|
|
21901
22783
|
ownershipType: LolTftPassItemOwnershipType
|
|
22784
|
+
usedInGameDate: string
|
|
21902
22785
|
expirationDate: string
|
|
21903
22786
|
/** @format uint64 */
|
|
21904
22787
|
wins: number
|
|
@@ -21938,6 +22821,7 @@ export interface LolTftPassInventoryItemWithPayload {
|
|
|
21938
22821
|
/** @format uint64 */
|
|
21939
22822
|
quantity: number
|
|
21940
22823
|
ownershipType: LolTftPassItemOwnershipType
|
|
22824
|
+
usedInGameDate: string
|
|
21941
22825
|
expirationDate: string
|
|
21942
22826
|
"f2p": boolean
|
|
21943
22827
|
rental: boolean
|
|
@@ -22185,7 +23069,7 @@ export interface LolTftPassTFTPassDTO {
|
|
|
22185
23069
|
premiumTitle: string
|
|
22186
23070
|
description: string
|
|
22187
23071
|
/** @format int64 */
|
|
22188
|
-
|
|
23072
|
+
activationTimeMS: number
|
|
22189
23073
|
/** @format int64 */
|
|
22190
23074
|
deactivationTimeMS: number
|
|
22191
23075
|
assetID: string
|
|
@@ -22641,6 +23525,18 @@ export interface LolTftSkillTreeUpdateLoadoutRequestDTO {
|
|
|
22641
23525
|
loadout: LolTftSkillTreeUpdateLoadoutDTO
|
|
22642
23526
|
}
|
|
22643
23527
|
|
|
23528
|
+
export interface LolTftTFTRotatingShopPromo {
|
|
23529
|
+
id: string
|
|
23530
|
+
bundleId: string
|
|
23531
|
+
storeType: string
|
|
23532
|
+
}
|
|
23533
|
+
|
|
23534
|
+
export interface LolTftTFTRotatingShopPromos {
|
|
23535
|
+
firstPromos: LolTftTFTRotatingShopPromo[]
|
|
23536
|
+
secondPromos: LolTftTFTRotatingShopPromo[]
|
|
23537
|
+
fallbackPromo: LolTftTFTRotatingShopPromo
|
|
23538
|
+
}
|
|
23539
|
+
|
|
22644
23540
|
export interface LolTftTeamPlannerChampion {
|
|
22645
23541
|
championId: string
|
|
22646
23542
|
}
|
|
@@ -23545,6 +24441,7 @@ export interface LolYourshopInventoryItem {
|
|
|
23545
24441
|
/** @format uint64 */
|
|
23546
24442
|
quantity: number
|
|
23547
24443
|
ownershipType: LolYourshopItemOwnershipType
|
|
24444
|
+
usedInGameDate: string
|
|
23548
24445
|
expirationDate: string
|
|
23549
24446
|
/** @format uint64 */
|
|
23550
24447
|
wins: number
|
|
@@ -23584,6 +24481,7 @@ export interface LolYourshopInventoryItemWithPayload {
|
|
|
23584
24481
|
/** @format uint64 */
|
|
23585
24482
|
quantity: number
|
|
23586
24483
|
ownershipType: LolYourshopItemOwnershipType
|
|
24484
|
+
usedInGameDate: string
|
|
23587
24485
|
expirationDate: string
|
|
23588
24486
|
"f2p": boolean
|
|
23589
24487
|
rental: boolean
|