@hasagi/types 15.9.1 → 15.15.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 +319 -255
- package/dist/lcu-events.d.ts +45 -84
- package/dist/lcu-types.d.ts +949 -126
- package/package.json +4 -4
package/dist/lcu-types.d.ts
CHANGED
|
@@ -217,6 +217,7 @@ export interface BuildInfo {
|
|
|
217
217
|
patchline: string
|
|
218
218
|
version: string
|
|
219
219
|
patchlineVisibleName: string
|
|
220
|
+
buildType: string
|
|
220
221
|
}
|
|
221
222
|
|
|
222
223
|
export type CapacityEnum = "FULL" | "HIGH" | "MEDIUM" | "LOW"
|
|
@@ -509,6 +510,9 @@ export interface ChemtechShoppe_FulfillmentDto {
|
|
|
509
510
|
progressionCounterId: string
|
|
510
511
|
currencyId: string
|
|
511
512
|
subCurrencyDeltas: Record<string, number>
|
|
513
|
+
location: string
|
|
514
|
+
payload: unknown
|
|
515
|
+
target: string
|
|
512
516
|
}
|
|
513
517
|
|
|
514
518
|
export interface ChemtechShoppe_PagingDto {
|
|
@@ -572,6 +576,8 @@ export interface ChemtechShoppe_PurchaseDto {
|
|
|
572
576
|
refundRule: string
|
|
573
577
|
completedTime: string
|
|
574
578
|
refund: ChemtechShoppe_RefundDto
|
|
579
|
+
/** @format int32 */
|
|
580
|
+
quantity: number
|
|
575
581
|
}
|
|
576
582
|
|
|
577
583
|
export interface ChemtechShoppe_PurchaseRequestDto {
|
|
@@ -582,6 +588,7 @@ export interface ChemtechShoppe_PurchaseRequestDto {
|
|
|
582
588
|
/** @format int64 */
|
|
583
589
|
quantity: number
|
|
584
590
|
source: string
|
|
591
|
+
customInventoryLocation: string
|
|
585
592
|
}
|
|
586
593
|
|
|
587
594
|
export interface ChemtechShoppe_PurchaseResponseDto {
|
|
@@ -1225,6 +1232,13 @@ export interface EogLcdsGameDTO {
|
|
|
1225
1232
|
bannedChampions: BannedChampion[]
|
|
1226
1233
|
}
|
|
1227
1234
|
|
|
1235
|
+
export interface ErrorMonitorLogBatch {
|
|
1236
|
+
logType: ErrorMonitorLogType
|
|
1237
|
+
logEntries: LogEntry[]
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
export type ErrorMonitorLogType = "UX" | "FOUNDATION"
|
|
1241
|
+
|
|
1228
1242
|
export type ExternalPluginsAvailability = "Error" | "Recovering" | "Connected" | "Preparing" | "NotAvailable"
|
|
1229
1243
|
|
|
1230
1244
|
export interface ExternalPluginsResource {
|
|
@@ -1666,6 +1680,11 @@ export interface LobbyClientDynamicConfigurationNotification {
|
|
|
1666
1680
|
delta: boolean
|
|
1667
1681
|
}
|
|
1668
1682
|
|
|
1683
|
+
export interface LogEntry {
|
|
1684
|
+
severity: LogSeverityLevels
|
|
1685
|
+
message: string
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1669
1688
|
/** Describes a log entry. */
|
|
1670
1689
|
export interface LogEvent {
|
|
1671
1690
|
severity: LogSeverityLevels
|
|
@@ -2126,6 +2145,8 @@ export interface LolCatalogCatalogItem {
|
|
|
2126
2145
|
active: boolean
|
|
2127
2146
|
inventoryType: string
|
|
2128
2147
|
inactiveDate: string
|
|
2148
|
+
/** @format int32 */
|
|
2149
|
+
maxQuantity: number
|
|
2129
2150
|
prices: LolCatalogItemCost[]
|
|
2130
2151
|
releaseDate: string
|
|
2131
2152
|
sale?: LolCatalogSale
|
|
@@ -2160,6 +2181,8 @@ export interface LolCatalogCatalogPluginItem {
|
|
|
2160
2181
|
releaseDate: number
|
|
2161
2182
|
/** @format uint64 */
|
|
2162
2183
|
inactiveDate: number
|
|
2184
|
+
/** @format int32 */
|
|
2185
|
+
maxQuantity: number
|
|
2163
2186
|
prices: LolCatalogCatalogPluginPrice[]
|
|
2164
2187
|
tags?: string[]
|
|
2165
2188
|
metadata?: LolCatalogItemMetadataEntry[]
|
|
@@ -2174,6 +2197,7 @@ export interface LolCatalogCatalogPluginItemAssets {
|
|
|
2174
2197
|
iconPath: string
|
|
2175
2198
|
tilePath: string
|
|
2176
2199
|
loadScreenPath: string
|
|
2200
|
+
previewVideoUrl: string
|
|
2177
2201
|
emblems: LolCatalogChampionSkinEmblem[]
|
|
2178
2202
|
colors: string[]
|
|
2179
2203
|
}
|
|
@@ -2190,6 +2214,7 @@ export interface LolCatalogCatalogPluginItemWithDetails {
|
|
|
2190
2214
|
metadata: LolCatalogItemMetadataEntry[]
|
|
2191
2215
|
/** @format int64 */
|
|
2192
2216
|
bundleFinalPrice: number
|
|
2217
|
+
flexible: boolean
|
|
2193
2218
|
}
|
|
2194
2219
|
|
|
2195
2220
|
export interface LolCatalogCatalogPluginPrice {
|
|
@@ -2248,6 +2273,7 @@ export interface LolCatalogGameDataChampionSkin {
|
|
|
2248
2273
|
tilePath: string
|
|
2249
2274
|
loadScreenPath: string
|
|
2250
2275
|
rarity: string
|
|
2276
|
+
previewVideoUrl: string
|
|
2251
2277
|
chromaPath: string
|
|
2252
2278
|
questSkinInfo?: LolCatalogSkinLineInfo
|
|
2253
2279
|
colors: string[]
|
|
@@ -3238,6 +3264,7 @@ export interface LolChampionsCollectionsChampion {
|
|
|
3238
3264
|
botEnabled: boolean
|
|
3239
3265
|
freeToPlay: boolean
|
|
3240
3266
|
rankedPlayEnabled: boolean
|
|
3267
|
+
isVisibleInClient: boolean
|
|
3241
3268
|
passive: LolChampionsCollectionsChampionSpell
|
|
3242
3269
|
skins: LolChampionsCollectionsChampionSkin[]
|
|
3243
3270
|
spells: LolChampionsCollectionsChampionSpell[]
|
|
@@ -3280,6 +3307,7 @@ export interface LolChampionsCollectionsChampionMinimal {
|
|
|
3280
3307
|
botEnabled: boolean
|
|
3281
3308
|
freeToPlay: boolean
|
|
3282
3309
|
rankedPlayEnabled: boolean
|
|
3310
|
+
isVisibleInClient: boolean
|
|
3283
3311
|
}
|
|
3284
3312
|
|
|
3285
3313
|
export interface LolChampionsCollectionsChampionPlayableCounts {
|
|
@@ -3441,6 +3469,7 @@ export interface LolChampionsGameDataChampion {
|
|
|
3441
3469
|
skins: LolChampionsGameDataChampionSkin[]
|
|
3442
3470
|
spells: LolChampionsGameDataChampionSpell[]
|
|
3443
3471
|
tacticalInfo: LolChampionsGameDataChampionTacticalInfo
|
|
3472
|
+
isVisibleInClient: boolean
|
|
3444
3473
|
}
|
|
3445
3474
|
|
|
3446
3475
|
export interface LolChampionsGameDataChampionChroma {
|
|
@@ -4272,6 +4301,7 @@ export interface LolChatQueue {
|
|
|
4272
4301
|
id: number
|
|
4273
4302
|
type: string
|
|
4274
4303
|
gameMode: string
|
|
4304
|
+
isCustom: boolean
|
|
4275
4305
|
gameTypeConfig: LolChatQueueGameTypeConfig
|
|
4276
4306
|
}
|
|
4277
4307
|
|
|
@@ -6051,6 +6081,7 @@ export interface LolCosmeticsFulfillmentDto {
|
|
|
6051
6081
|
itemId: string
|
|
6052
6082
|
currencyId: string
|
|
6053
6083
|
subCurrencyDeltas: Record<string, number>
|
|
6084
|
+
progressionCounterId: string
|
|
6054
6085
|
}
|
|
6055
6086
|
|
|
6056
6087
|
export interface LolCosmeticsGameDataCompanion {
|
|
@@ -6222,6 +6253,8 @@ export interface LolCosmeticsPurchaseDto {
|
|
|
6222
6253
|
refund: LolCosmeticsRefundDto
|
|
6223
6254
|
refundRule: string
|
|
6224
6255
|
refundable: boolean
|
|
6256
|
+
/** @format int64 */
|
|
6257
|
+
quantity: number
|
|
6225
6258
|
source: string
|
|
6226
6259
|
}
|
|
6227
6260
|
|
|
@@ -6358,6 +6391,7 @@ export interface LolCosmeticsRotationalShopItemData {
|
|
|
6358
6391
|
redeemIconTexture: string
|
|
6359
6392
|
rarity: string
|
|
6360
6393
|
typeID: string
|
|
6394
|
+
speciesLink: string
|
|
6361
6395
|
}
|
|
6362
6396
|
|
|
6363
6397
|
export interface LolCosmeticsSettingsStorageContainer {
|
|
@@ -6962,6 +6996,14 @@ export interface LolEndOfGameGameDataTftTrait {
|
|
|
6962
6996
|
name: string
|
|
6963
6997
|
}
|
|
6964
6998
|
|
|
6999
|
+
export interface LolEndOfGameGameStateUpdate {
|
|
7000
|
+
/** @format uint64 */
|
|
7001
|
+
gameId: number
|
|
7002
|
+
gameState: string
|
|
7003
|
+
gameType: string
|
|
7004
|
+
errorMessage: string
|
|
7005
|
+
}
|
|
7006
|
+
|
|
6965
7007
|
export interface LolEndOfGameGameflowAvailability {
|
|
6966
7008
|
state: string
|
|
6967
7009
|
}
|
|
@@ -7460,11 +7502,14 @@ export interface LolEventHubCatalogPluginItem {
|
|
|
7460
7502
|
releaseDate: number
|
|
7461
7503
|
/** @format uint64 */
|
|
7462
7504
|
inactiveDate: number
|
|
7505
|
+
/** @format int32 */
|
|
7506
|
+
maxQuantity: number
|
|
7463
7507
|
prices: LolEventHubCatalogPluginPrice[]
|
|
7464
7508
|
tags?: string[]
|
|
7465
7509
|
metadata?: LolEventHubItemMetadataEntry[]
|
|
7466
7510
|
questSkinInfo?: LolEventHubSkinLineInfo
|
|
7467
7511
|
active: boolean
|
|
7512
|
+
sale?: LolEventHubSale
|
|
7468
7513
|
ownershipType?: LolEventHubInventoryOwnership
|
|
7469
7514
|
}
|
|
7470
7515
|
|
|
@@ -7472,6 +7517,7 @@ export interface LolEventHubCatalogPluginItemAssets {
|
|
|
7472
7517
|
splashPath: string
|
|
7473
7518
|
iconPath: string
|
|
7474
7519
|
tilePath: string
|
|
7520
|
+
previewVideoUrl: string
|
|
7475
7521
|
emblems: LolEventHubChampionSkinEmblem[]
|
|
7476
7522
|
colors: string[]
|
|
7477
7523
|
}
|
|
@@ -7485,11 +7531,14 @@ export interface LolEventHubCatalogPluginItemWithDetails {
|
|
|
7485
7531
|
minimumBundlePrices?: LolEventHubCatalogPluginPrice[]
|
|
7486
7532
|
bundledDiscountPrices?: LolEventHubCatalogPluginPrice[]
|
|
7487
7533
|
assets: LolEventHubCatalogPluginItemAssets
|
|
7534
|
+
/** @format int32 */
|
|
7535
|
+
bundleFinalPrice: number
|
|
7536
|
+
flexible: boolean
|
|
7488
7537
|
}
|
|
7489
7538
|
|
|
7490
7539
|
export interface LolEventHubCatalogPluginPrice {
|
|
7491
7540
|
currency: string
|
|
7492
|
-
/** @format
|
|
7541
|
+
/** @format int32 */
|
|
7493
7542
|
cost: number
|
|
7494
7543
|
costType?: string
|
|
7495
7544
|
sale?: LolEventHubCatalogPluginSale
|
|
@@ -7500,7 +7549,7 @@ export interface LolEventHubCatalogPluginSale {
|
|
|
7500
7549
|
endDate: string
|
|
7501
7550
|
/** @format float */
|
|
7502
7551
|
discount?: number
|
|
7503
|
-
/** @format
|
|
7552
|
+
/** @format int32 */
|
|
7504
7553
|
cost: number
|
|
7505
7554
|
}
|
|
7506
7555
|
|
|
@@ -7633,6 +7682,8 @@ export interface LolEventHubEventDetailsUIData {
|
|
|
7633
7682
|
helpModalImagePath: string
|
|
7634
7683
|
inducteeName: string
|
|
7635
7684
|
promotionBannerImage: string
|
|
7685
|
+
objectiveBannerImage: string
|
|
7686
|
+
memoryBookBackgroundImage: string
|
|
7636
7687
|
}
|
|
7637
7688
|
|
|
7638
7689
|
export interface LolEventHubEventHubError {
|
|
@@ -7648,6 +7699,7 @@ export interface LolEventHubEventInfoUIData {
|
|
|
7648
7699
|
eventType: string
|
|
7649
7700
|
eventIcon: string
|
|
7650
7701
|
navBarIcon: string
|
|
7702
|
+
battleExpIcon: string
|
|
7651
7703
|
eventTokenImage: string
|
|
7652
7704
|
startDate: string
|
|
7653
7705
|
progressEndDate: string
|
|
@@ -7683,6 +7735,7 @@ export interface LolEventHubEventShop {
|
|
|
7683
7735
|
localizedName: string
|
|
7684
7736
|
backgroundImage: string
|
|
7685
7737
|
navbarIconImage: string
|
|
7738
|
+
battleExpIconImage: string
|
|
7686
7739
|
headerIconImage: string
|
|
7687
7740
|
startDate: string
|
|
7688
7741
|
progressEndDate: string
|
|
@@ -7849,6 +7902,7 @@ export interface LolEventHubHallOfLegends {
|
|
|
7849
7902
|
localizedName: string
|
|
7850
7903
|
navbarIconImage: string
|
|
7851
7904
|
headerIconImage: string
|
|
7905
|
+
battleExpIconImage: string
|
|
7852
7906
|
headerTitleImage: string
|
|
7853
7907
|
startDate: string
|
|
7854
7908
|
progressEndDate: string
|
|
@@ -7856,6 +7910,7 @@ export interface LolEventHubHallOfLegends {
|
|
|
7856
7910
|
helpModalImage: string
|
|
7857
7911
|
inducteeName: string
|
|
7858
7912
|
promotionBannerImage: string
|
|
7913
|
+
objectiveBannerImage: string
|
|
7859
7914
|
eventPassBundlesCatalogEntry: LolEventHubCatalogEntry[]
|
|
7860
7915
|
progressionPurchaseCatalogEntry: LolEventHubCatalogEntry
|
|
7861
7916
|
skinIds: string[]
|
|
@@ -7868,6 +7923,7 @@ export interface LolEventHubHallOfLegends {
|
|
|
7868
7923
|
upsellBackgroundImageUrl: string
|
|
7869
7924
|
upsellTooltipBackgroundImageUrl: string
|
|
7870
7925
|
upsellIconUrl: string
|
|
7926
|
+
memoryBookBackgroundImage: string
|
|
7871
7927
|
}
|
|
7872
7928
|
|
|
7873
7929
|
export interface LolEventHubHallOfLegendsClientConfig {
|
|
@@ -8000,7 +8056,7 @@ export interface LolEventHubItemChoices {
|
|
|
8000
8056
|
|
|
8001
8057
|
export interface LolEventHubItemCost {
|
|
8002
8058
|
currency: string
|
|
8003
|
-
/** @format
|
|
8059
|
+
/** @format int32 */
|
|
8004
8060
|
cost: number
|
|
8005
8061
|
/** @format float */
|
|
8006
8062
|
discount?: number
|
|
@@ -8062,7 +8118,7 @@ export type LolEventHubItemOwnershipType = "F2P" | "LOYALTY" | "RENTED" | "OWNED
|
|
|
8062
8118
|
|
|
8063
8119
|
export interface LolEventHubItemPrice {
|
|
8064
8120
|
currencyType: string
|
|
8065
|
-
/** @format
|
|
8121
|
+
/** @format int32 */
|
|
8066
8122
|
price: number
|
|
8067
8123
|
purchasable: boolean
|
|
8068
8124
|
}
|
|
@@ -8210,6 +8266,7 @@ export interface LolEventHubNextRewardUIData {
|
|
|
8210
8266
|
export interface LolEventHubObjectivesBanner {
|
|
8211
8267
|
eventName: string
|
|
8212
8268
|
promotionBannerImage: string
|
|
8269
|
+
objectiveBannerImage: string
|
|
8213
8270
|
isPassPurchased: boolean
|
|
8214
8271
|
currentChapter: LolEventHubChapter
|
|
8215
8272
|
trackProgressNextReward: LolEventHubTrackProgressNextReward
|
|
@@ -8644,6 +8701,7 @@ export interface LolEventHubSeasonPass {
|
|
|
8644
8701
|
localizedName: string
|
|
8645
8702
|
navbarIconImage: string
|
|
8646
8703
|
headerIconImage: string
|
|
8704
|
+
battleExpIconImage: string
|
|
8647
8705
|
headerTitleImage: string
|
|
8648
8706
|
startDate: string
|
|
8649
8707
|
progressEndDate: string
|
|
@@ -8658,6 +8716,7 @@ export interface LolEventHubSeasonPass {
|
|
|
8658
8716
|
localizedUpsellButtonText: string
|
|
8659
8717
|
upsellBackgroundImageUrl: string
|
|
8660
8718
|
upsellTooltipBackgroundImageUrl: string
|
|
8719
|
+
objectiveBannerImage: string
|
|
8661
8720
|
chapters: LolEventHubChapter[]
|
|
8662
8721
|
}
|
|
8663
8722
|
|
|
@@ -9110,6 +9169,18 @@ export interface LolGameClientChatMutedPlayerInfo {
|
|
|
9110
9169
|
obfuscatedSummonerId: number
|
|
9111
9170
|
}
|
|
9112
9171
|
|
|
9172
|
+
export interface LolGameDataInventoryLolInventoryType {
|
|
9173
|
+
inventoryTypeId: string
|
|
9174
|
+
capInventoryTypeId: string
|
|
9175
|
+
gipAware: boolean
|
|
9176
|
+
gipJsonPath: string
|
|
9177
|
+
gipIsMap: boolean
|
|
9178
|
+
gipItemId: string
|
|
9179
|
+
gipName: string
|
|
9180
|
+
gipDescription: string
|
|
9181
|
+
gipImage: string
|
|
9182
|
+
}
|
|
9183
|
+
|
|
9113
9184
|
export interface LolGameQueuesLoginDataPacket {
|
|
9114
9185
|
gameTypeConfigs: LolGameQueuesQueueGameTypeConfig[]
|
|
9115
9186
|
}
|
|
@@ -9194,6 +9265,7 @@ export interface LolGameQueuesQueue {
|
|
|
9194
9265
|
gameSelectCategory: string
|
|
9195
9266
|
/** @format uint8 */
|
|
9196
9267
|
gameSelectPriority: number
|
|
9268
|
+
isLimitedTimeQueue: boolean
|
|
9197
9269
|
isSkillTreeQueue: boolean
|
|
9198
9270
|
isCustom: boolean
|
|
9199
9271
|
/** @format uint32 */
|
|
@@ -9285,6 +9357,7 @@ export interface LolGameQueuesQueueTranslation {
|
|
|
9285
9357
|
gameSelectCategory: string
|
|
9286
9358
|
/** @format uint8 */
|
|
9287
9359
|
gameSelectPriority: number
|
|
9360
|
+
isLimitedTimeQueue: boolean
|
|
9288
9361
|
isSkillTreeQueue: boolean
|
|
9289
9362
|
hidePlayerPosition: boolean
|
|
9290
9363
|
}
|
|
@@ -9488,6 +9561,7 @@ export interface LolGameflowQueue {
|
|
|
9488
9561
|
removalFromGameAllowed: boolean
|
|
9489
9562
|
/** @format int32 */
|
|
9490
9563
|
removalFromGameDelayMinutes: number
|
|
9564
|
+
isCustom: boolean
|
|
9491
9565
|
}
|
|
9492
9566
|
|
|
9493
9567
|
export type LolGameflowQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -10931,9 +11005,10 @@ export interface LolLobbyEligibilityRestriction {
|
|
|
10931
11005
|
expiredTimestamp: number
|
|
10932
11006
|
summonerIds: number[]
|
|
10933
11007
|
summonerIdsString: string
|
|
11008
|
+
puuids: string[]
|
|
10934
11009
|
}
|
|
10935
11010
|
|
|
10936
|
-
export type LolLobbyEligibilityRestrictionCode = "FullPartyUnranked" | "PlayerNoRankedUpdatesDueToRankDisparity" | "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPInsufficientPlayerChampionCoveragePopularChampion" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "
|
|
11011
|
+
export type LolLobbyEligibilityRestrictionCode = "FullPartyUnranked" | "PlayerNoRankedUpdatesDueToRankDisparity" | "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPInsufficientPlayerChampionCoveragePopularChampion" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "UnknownRestriction" | "PlayerQueueSuspendedRestriction" | "SeasonVersionLockout" | "MinNormalGamesForRankedRestriction" | "LOLNewPlayerRestriction" | "TFTNewPlayerRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerRankSoloOnlyRestriction" | "PlayerTimePlayedRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerTimeBasedRankRestriction" | "PlayerGameBasedRankRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerDisruptiveGameplayLockoutRestriction" | "PlayerReadyCheckFailRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
10937
11012
|
|
|
10938
11013
|
export interface LolLobbyEntitlementsTokenResource {
|
|
10939
11014
|
accessToken: string
|
|
@@ -11263,6 +11338,12 @@ export interface LolLobbyLobbyGameConfigDto {
|
|
|
11263
11338
|
maxLobbySize: number
|
|
11264
11339
|
/** @format int32 */
|
|
11265
11340
|
maxHumanPlayers: number
|
|
11341
|
+
/** @format int32 */
|
|
11342
|
+
numberOfTeamsInLobby: number
|
|
11343
|
+
/** @format int32 */
|
|
11344
|
+
maxLobbySpectatorCount: number
|
|
11345
|
+
/** @format int32 */
|
|
11346
|
+
numPlayersPerTeam: number
|
|
11266
11347
|
allowablePremadeSizes: number[]
|
|
11267
11348
|
premadeSizeAllowed: boolean
|
|
11268
11349
|
isTeamBuilderManaged: boolean
|
|
@@ -13162,13 +13243,7 @@ export interface LolLoyaltyRmsEntitlementPayload {
|
|
|
13162
13243
|
resourceOperation: string
|
|
13163
13244
|
}
|
|
13164
13245
|
|
|
13165
|
-
export
|
|
13166
|
-
data: unknown
|
|
13167
|
-
/** @format int32 */
|
|
13168
|
-
schemaVersion: number
|
|
13169
|
-
}
|
|
13170
|
-
|
|
13171
|
-
export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "SUPPORTED_HARDWARE" | "HARDWARE_UPGRADE" | "NONE"
|
|
13246
|
+
export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "HARDWARE_UPGRADE" | "NONE"
|
|
13172
13247
|
|
|
13173
13248
|
export interface LolMapsGameModeSpellList {
|
|
13174
13249
|
spells: number[]
|
|
@@ -13263,6 +13338,7 @@ export interface LolMarketplaceFulfillmentDto {
|
|
|
13263
13338
|
itemId: string
|
|
13264
13339
|
currencyId: string
|
|
13265
13340
|
subCurrencyDeltas: Record<string, number>
|
|
13341
|
+
progressionCounterId: string
|
|
13266
13342
|
}
|
|
13267
13343
|
|
|
13268
13344
|
export interface LolMarketplacePagination {
|
|
@@ -13323,6 +13399,8 @@ export interface LolMarketplacePurchaseDto {
|
|
|
13323
13399
|
refund: LolMarketplaceRefundDto
|
|
13324
13400
|
refundRule: string
|
|
13325
13401
|
refundable: boolean
|
|
13402
|
+
/** @format int64 */
|
|
13403
|
+
quantity: number
|
|
13326
13404
|
source: string
|
|
13327
13405
|
}
|
|
13328
13406
|
|
|
@@ -13459,6 +13537,7 @@ export interface LolMarketplaceRotationalShopItemData {
|
|
|
13459
13537
|
redeemIconTexture: string
|
|
13460
13538
|
rarity: string
|
|
13461
13539
|
typeID: string
|
|
13540
|
+
speciesLink: string
|
|
13462
13541
|
}
|
|
13463
13542
|
|
|
13464
13543
|
export interface LolMarketplaceStoreDto {
|
|
@@ -13518,16 +13597,6 @@ export interface LolMarketplaceVelocityLimiterDto {
|
|
|
13518
13597
|
refill: string
|
|
13519
13598
|
}
|
|
13520
13599
|
|
|
13521
|
-
export interface LolMatchHistoryAcsEndPoint {
|
|
13522
|
-
url: string
|
|
13523
|
-
}
|
|
13524
|
-
|
|
13525
|
-
export interface LolMatchHistoryAcsPlayer {
|
|
13526
|
-
platformId: string
|
|
13527
|
-
/** @format uint64 */
|
|
13528
|
-
accountId: number
|
|
13529
|
-
}
|
|
13530
|
-
|
|
13531
13600
|
export interface LolMatchHistoryAlias {
|
|
13532
13601
|
gameName: string
|
|
13533
13602
|
tagLine: string
|
|
@@ -13567,15 +13636,6 @@ export interface LolMatchHistoryLoginSession {
|
|
|
13567
13636
|
|
|
13568
13637
|
export type LolMatchHistoryLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
13569
13638
|
|
|
13570
|
-
export interface LolMatchHistoryMHSummoner {
|
|
13571
|
-
/** @format uint64 */
|
|
13572
|
-
summonerId: number
|
|
13573
|
-
/** @format uint64 */
|
|
13574
|
-
accountId: number
|
|
13575
|
-
displayName: string
|
|
13576
|
-
puuid: string
|
|
13577
|
-
}
|
|
13578
|
-
|
|
13579
13639
|
export interface LolMatchHistoryMatchHistoryEvent {
|
|
13580
13640
|
type: string
|
|
13581
13641
|
/** @format uint64 */
|
|
@@ -13926,45 +13986,6 @@ export interface LolMatchHistoryMatchHistoryParticipantStatistics {
|
|
|
13926
13986
|
subteamPlacement: number
|
|
13927
13987
|
}
|
|
13928
13988
|
|
|
13929
|
-
export interface LolMatchHistoryMatchHistoryPlayerChampMasteryDelta {
|
|
13930
|
-
grade: string
|
|
13931
|
-
}
|
|
13932
|
-
|
|
13933
|
-
export interface LolMatchHistoryMatchHistoryPlayerDelta {
|
|
13934
|
-
/** @format uint64 */
|
|
13935
|
-
originalAccountId: number
|
|
13936
|
-
originalPlatformId: string
|
|
13937
|
-
deltas: LolMatchHistoryMatchHistoryPlayerGameDelta[]
|
|
13938
|
-
}
|
|
13939
|
-
|
|
13940
|
-
export interface LolMatchHistoryMatchHistoryPlayerGameDelta {
|
|
13941
|
-
gamePlatformId: string
|
|
13942
|
-
/** @format uint64 */
|
|
13943
|
-
gameId: number
|
|
13944
|
-
platformDelta: LolMatchHistoryMatchHistoryPlayerPlatformDelta
|
|
13945
|
-
leagueDelta: LolMatchHistoryMatchHistoryPlayerLeagueDelta
|
|
13946
|
-
champMastery: LolMatchHistoryMatchHistoryPlayerChampMasteryDelta
|
|
13947
|
-
}
|
|
13948
|
-
|
|
13949
|
-
export interface LolMatchHistoryMatchHistoryPlayerLeagueDelta {
|
|
13950
|
-
/** @format uint64 */
|
|
13951
|
-
leaguePointDelta: number
|
|
13952
|
-
reason: string
|
|
13953
|
-
miniSeriesProgress: string[]
|
|
13954
|
-
/** @format uint64 */
|
|
13955
|
-
timestamp: number
|
|
13956
|
-
}
|
|
13957
|
-
|
|
13958
|
-
export interface LolMatchHistoryMatchHistoryPlayerPlatformDelta {
|
|
13959
|
-
/** @format uint64 */
|
|
13960
|
-
xpDelta: number
|
|
13961
|
-
/** @format uint64 */
|
|
13962
|
-
ipDelta: number
|
|
13963
|
-
compensationModeEnabled: boolean
|
|
13964
|
-
/** @format uint64 */
|
|
13965
|
-
timestamp: number
|
|
13966
|
-
}
|
|
13967
|
-
|
|
13968
13989
|
export interface LolMatchHistoryMatchHistoryPosition {
|
|
13969
13990
|
/** @format int16 */
|
|
13970
13991
|
x: number
|
|
@@ -14049,6 +14070,10 @@ export interface LolMatchHistoryRecentlyPlayedSummoner {
|
|
|
14049
14070
|
}
|
|
14050
14071
|
|
|
14051
14072
|
export interface LolMatchHistorySummoner {
|
|
14073
|
+
/** @format uint64 */
|
|
14074
|
+
summonerId: number
|
|
14075
|
+
/** @format uint64 */
|
|
14076
|
+
accountId: number
|
|
14052
14077
|
displayName: string
|
|
14053
14078
|
gameName: string
|
|
14054
14079
|
tagLine: string
|
|
@@ -14298,7 +14323,7 @@ export interface LolMissionsCapMissionsMarkAsViewedPostBodyMission {
|
|
|
14298
14323
|
export interface LolMissionsCapMissionsMeResponse {
|
|
14299
14324
|
productId: string
|
|
14300
14325
|
ownerId: string
|
|
14301
|
-
series:
|
|
14326
|
+
series: LolMissionsCAPMissionSeries[]
|
|
14302
14327
|
}
|
|
14303
14328
|
|
|
14304
14329
|
export interface LolMissionsCollectionsChampion {
|
|
@@ -14543,6 +14568,7 @@ export interface LolNachoBannerOddsInfo {
|
|
|
14543
14568
|
productId: string
|
|
14544
14569
|
rewardTables: LolNachoNachoRollRewardsTable[]
|
|
14545
14570
|
endDateMilis: string
|
|
14571
|
+
bundledMythicEssence: boolean
|
|
14546
14572
|
}
|
|
14547
14573
|
|
|
14548
14574
|
export interface LolNachoBlessingTokenPurchaseRequest {
|
|
@@ -14564,6 +14590,7 @@ export interface LolNachoCapDropsDropTableDisplayMetadata {
|
|
|
14564
14590
|
version: number
|
|
14565
14591
|
oddsTree: LolNachoDropsOddsTreeNodeDTO
|
|
14566
14592
|
endDateMilis: string
|
|
14593
|
+
bundledMythicEssence: boolean
|
|
14567
14594
|
}
|
|
14568
14595
|
|
|
14569
14596
|
export interface LolNachoCatalogItemPurchaseRequest {
|
|
@@ -14572,6 +14599,7 @@ export interface LolNachoCatalogItemPurchaseRequest {
|
|
|
14572
14599
|
/** @format uint32 */
|
|
14573
14600
|
quantity: number
|
|
14574
14601
|
paymentOptions: string[]
|
|
14602
|
+
customInventoryLocation: string
|
|
14575
14603
|
}
|
|
14576
14604
|
|
|
14577
14605
|
export interface LolNachoDropsOddsTreeNodeDTO {
|
|
@@ -14652,6 +14680,11 @@ export interface LolNachoGameDataPityCounter {
|
|
|
14652
14680
|
name: string
|
|
14653
14681
|
}
|
|
14654
14682
|
|
|
14683
|
+
export interface LolNachoGipItem {
|
|
14684
|
+
/** @format uint32 */
|
|
14685
|
+
gipItemId: number
|
|
14686
|
+
}
|
|
14687
|
+
|
|
14655
14688
|
export interface LolNachoNachoBannersResponse {
|
|
14656
14689
|
id: string
|
|
14657
14690
|
bannerBackgroundTexture: string
|
|
@@ -15278,7 +15311,7 @@ export interface LolObjectivesCapMissionsMarkAsViewedPostBodyMission {
|
|
|
15278
15311
|
export interface LolObjectivesCapMissionsMeResponse {
|
|
15279
15312
|
productId: string
|
|
15280
15313
|
ownerId: string
|
|
15281
|
-
series:
|
|
15314
|
+
series: LolObjectivesCAPMissionSeries[]
|
|
15282
15315
|
}
|
|
15283
15316
|
|
|
15284
15317
|
export interface LolObjectivesCatalogEntry {
|
|
@@ -15331,7 +15364,7 @@ export interface LolObjectivesCollectionsWardSkin {
|
|
|
15331
15364
|
ownership: LolObjectivesCollectionsOwnership
|
|
15332
15365
|
}
|
|
15333
15366
|
|
|
15334
|
-
export type LolObjectivesEventHubType = "
|
|
15367
|
+
export type LolObjectivesEventHubType = "NON_PASS" | "SEASON_PASS" | "HALL_OF_LEGENDS" | "EVENT_SHOP"
|
|
15335
15368
|
|
|
15336
15369
|
export interface LolObjectivesEventInfoUIData {
|
|
15337
15370
|
eventId: string
|
|
@@ -15429,6 +15462,8 @@ export interface LolObjectivesNonPooledObjectives {
|
|
|
15429
15462
|
localizedDescription: string
|
|
15430
15463
|
}
|
|
15431
15464
|
|
|
15465
|
+
export type LolObjectivesObjectiveCategoryFilter = "kNPE" | "kNone"
|
|
15466
|
+
|
|
15432
15467
|
export type LolObjectivesObjectiveCategoryType = "kTFTPassData" | "kEventHubConfiguration" | "kNonPass"
|
|
15433
15468
|
|
|
15434
15469
|
export interface LolObjectivesObjectivesContainer {
|
|
@@ -15437,14 +15472,6 @@ export interface LolObjectivesObjectivesContainer {
|
|
|
15437
15472
|
}
|
|
15438
15473
|
|
|
15439
15474
|
export interface LolObjectivesObjectivesGroup {
|
|
15440
|
-
id: string
|
|
15441
|
-
backgroundImage: string
|
|
15442
|
-
/** @format uint64 */
|
|
15443
|
-
startDate: number
|
|
15444
|
-
/** @format uint64 */
|
|
15445
|
-
endDate: number
|
|
15446
|
-
objectives: LolObjectivesObjectivesContainer[]
|
|
15447
|
-
isActive: boolean
|
|
15448
15475
|
gameType: string
|
|
15449
15476
|
}
|
|
15450
15477
|
|
|
@@ -15696,18 +15723,11 @@ export interface LolObjectivesUIObjectivesCategory {
|
|
|
15696
15723
|
categoryType: LolObjectivesObjectiveCategoryType
|
|
15697
15724
|
tftPassType: LolObjectivesTftPassType
|
|
15698
15725
|
lolEventHubType: LolObjectivesEventHubType
|
|
15726
|
+
objectiveCategoryFilter: LolObjectivesObjectiveCategoryFilter
|
|
15699
15727
|
}
|
|
15700
15728
|
|
|
15701
15729
|
export interface LolObjectivesUIObjectivesGroup {
|
|
15702
|
-
uuid: string
|
|
15703
|
-
backgroundImage: string
|
|
15704
15730
|
gameType: string
|
|
15705
|
-
/** @format uint64 */
|
|
15706
|
-
startDate: number
|
|
15707
|
-
/** @format uint64 */
|
|
15708
|
-
endDate: number
|
|
15709
|
-
isActive: boolean
|
|
15710
|
-
objectives: LolObjectivesUIObjectives[]
|
|
15711
15731
|
objectivesCategories: LolObjectivesUIObjectivesCategory[]
|
|
15712
15732
|
}
|
|
15713
15733
|
|
|
@@ -15750,6 +15770,17 @@ export interface LolPatchComponentStateProgress {
|
|
|
15750
15770
|
|
|
15751
15771
|
export type LolPatchComponentStateWorkType = "Disk" | "Network" | "Scanning"
|
|
15752
15772
|
|
|
15773
|
+
export type LolPatchConfigReadiness = "Disabled" | "Ready" | "NotReady"
|
|
15774
|
+
|
|
15775
|
+
export interface LolPatchConfigStatus {
|
|
15776
|
+
readiness: LolPatchConfigReadiness
|
|
15777
|
+
}
|
|
15778
|
+
|
|
15779
|
+
export interface LolPatchCurrentUpdateStatus {
|
|
15780
|
+
updateAvailable: boolean
|
|
15781
|
+
updateRequired: boolean
|
|
15782
|
+
}
|
|
15783
|
+
|
|
15753
15784
|
export interface LolPatchEntitlementsTokenResource {
|
|
15754
15785
|
accessToken: string
|
|
15755
15786
|
token: string
|
|
@@ -15826,6 +15857,13 @@ export interface LolPatchPatcherSettings {
|
|
|
15826
15857
|
patchsieve_url: string
|
|
15827
15858
|
}
|
|
15828
15859
|
|
|
15860
|
+
export interface LolPatchProductIntegrationAppStatus {
|
|
15861
|
+
patchlineId: string
|
|
15862
|
+
productId: string
|
|
15863
|
+
updateAvailable: boolean
|
|
15864
|
+
updateRequired: boolean
|
|
15865
|
+
}
|
|
15866
|
+
|
|
15829
15867
|
export interface LolPatchProductState {
|
|
15830
15868
|
id: string
|
|
15831
15869
|
action: LolPatchComponentStateAction
|
|
@@ -16200,6 +16238,7 @@ export interface LolPerksQueue {
|
|
|
16200
16238
|
/** @format int32 */
|
|
16201
16239
|
mapId: number
|
|
16202
16240
|
isTeamBuilderManaged: boolean
|
|
16241
|
+
isCustom: boolean
|
|
16203
16242
|
}
|
|
16204
16243
|
|
|
16205
16244
|
export interface LolPerksQuickPlayPresetSlotDto {
|
|
@@ -17328,11 +17367,14 @@ export interface LolPurchaseWidgetCatalogPluginItem {
|
|
|
17328
17367
|
releaseDate: number
|
|
17329
17368
|
/** @format uint64 */
|
|
17330
17369
|
inactiveDate: number
|
|
17370
|
+
/** @format int32 */
|
|
17371
|
+
maxQuantity: number
|
|
17331
17372
|
prices: LolPurchaseWidgetCatalogPluginPrice[]
|
|
17332
17373
|
tags?: string[]
|
|
17333
17374
|
metadata?: LolPurchaseWidgetItemMetadataEntry[]
|
|
17334
17375
|
questSkinInfo?: LolPurchaseWidgetSkinLineInfo
|
|
17335
17376
|
active: boolean
|
|
17377
|
+
sale?: LolPurchaseWidgetSale
|
|
17336
17378
|
ownershipType?: LolPurchaseWidgetInventoryOwnership
|
|
17337
17379
|
}
|
|
17338
17380
|
|
|
@@ -17340,6 +17382,7 @@ export interface LolPurchaseWidgetCatalogPluginItemAssets {
|
|
|
17340
17382
|
splashPath: string
|
|
17341
17383
|
iconPath: string
|
|
17342
17384
|
tilePath: string
|
|
17385
|
+
previewVideoUrl: string
|
|
17343
17386
|
emblems: LolPurchaseWidgetChampionSkinEmblem[]
|
|
17344
17387
|
colors: string[]
|
|
17345
17388
|
}
|
|
@@ -17353,11 +17396,14 @@ export interface LolPurchaseWidgetCatalogPluginItemWithDetails {
|
|
|
17353
17396
|
minimumBundlePrices?: LolPurchaseWidgetCatalogPluginPrice[]
|
|
17354
17397
|
bundledDiscountPrices?: LolPurchaseWidgetCatalogPluginPrice[]
|
|
17355
17398
|
assets: LolPurchaseWidgetCatalogPluginItemAssets
|
|
17399
|
+
/** @format int32 */
|
|
17400
|
+
bundleFinalPrice: number
|
|
17401
|
+
flexible: boolean
|
|
17356
17402
|
}
|
|
17357
17403
|
|
|
17358
17404
|
export interface LolPurchaseWidgetCatalogPluginPrice {
|
|
17359
17405
|
currency: string
|
|
17360
|
-
/** @format
|
|
17406
|
+
/** @format int32 */
|
|
17361
17407
|
cost: number
|
|
17362
17408
|
costType?: string
|
|
17363
17409
|
sale?: LolPurchaseWidgetCatalogPluginSale
|
|
@@ -17368,7 +17414,7 @@ export interface LolPurchaseWidgetCatalogPluginSale {
|
|
|
17368
17414
|
endDate: string
|
|
17369
17415
|
/** @format float */
|
|
17370
17416
|
discount?: number
|
|
17371
|
-
/** @format
|
|
17417
|
+
/** @format int32 */
|
|
17372
17418
|
cost: number
|
|
17373
17419
|
}
|
|
17374
17420
|
|
|
@@ -17419,7 +17465,7 @@ export interface LolPurchaseWidgetItemChoices {
|
|
|
17419
17465
|
|
|
17420
17466
|
export interface LolPurchaseWidgetItemCost {
|
|
17421
17467
|
currency: string
|
|
17422
|
-
/** @format
|
|
17468
|
+
/** @format int32 */
|
|
17423
17469
|
cost: number
|
|
17424
17470
|
/** @format float */
|
|
17425
17471
|
discount?: number
|
|
@@ -17461,6 +17507,18 @@ export interface LolPurchaseWidgetItemMetadataEntry {
|
|
|
17461
17507
|
value: string
|
|
17462
17508
|
}
|
|
17463
17509
|
|
|
17510
|
+
export interface LolPurchaseWidgetItemOrderDTO {
|
|
17511
|
+
inventoryType: string
|
|
17512
|
+
/** @format int32 */
|
|
17513
|
+
itemId: number
|
|
17514
|
+
/** @format uint32 */
|
|
17515
|
+
quantity: number
|
|
17516
|
+
/** @format uint32 */
|
|
17517
|
+
rpCost: number
|
|
17518
|
+
/** @format uint32 */
|
|
17519
|
+
ipCost: number
|
|
17520
|
+
}
|
|
17521
|
+
|
|
17464
17522
|
export interface LolPurchaseWidgetItemOwnership {
|
|
17465
17523
|
itemKey: LolPurchaseWidgetItemKey
|
|
17466
17524
|
/** @format int32 */
|
|
@@ -17469,7 +17527,7 @@ export interface LolPurchaseWidgetItemOwnership {
|
|
|
17469
17527
|
|
|
17470
17528
|
export interface LolPurchaseWidgetItemPrice {
|
|
17471
17529
|
currencyType: string
|
|
17472
|
-
/** @format
|
|
17530
|
+
/** @format int32 */
|
|
17473
17531
|
price: number
|
|
17474
17532
|
purchasable: boolean
|
|
17475
17533
|
}
|
|
@@ -17559,6 +17617,21 @@ export interface LolPurchaseWidgetPurchaseOption {
|
|
|
17559
17617
|
priceDetails: LolPurchaseWidgetPriceDetail[]
|
|
17560
17618
|
}
|
|
17561
17619
|
|
|
17620
|
+
export interface LolPurchaseWidgetPurchaseOrderRequestDTO {
|
|
17621
|
+
/** @format uint64 */
|
|
17622
|
+
accountId: number
|
|
17623
|
+
items: LolPurchaseWidgetItemOrderDTO[]
|
|
17624
|
+
}
|
|
17625
|
+
|
|
17626
|
+
export interface LolPurchaseWidgetPurchaseOrderResponseDTO {
|
|
17627
|
+
/** @format int64 */
|
|
17628
|
+
rpBalance: number
|
|
17629
|
+
/** @format int64 */
|
|
17630
|
+
ipBalance: number
|
|
17631
|
+
transactions: LolPurchaseWidgetTransactionResponseDTO[]
|
|
17632
|
+
waitForRMS: boolean
|
|
17633
|
+
}
|
|
17634
|
+
|
|
17562
17635
|
export interface LolPurchaseWidgetPurchaseRequest {
|
|
17563
17636
|
items: LolPurchaseWidgetPurchaseItem[]
|
|
17564
17637
|
}
|
|
@@ -17644,6 +17717,13 @@ export interface LolPurchaseWidgetTransaction {
|
|
|
17644
17717
|
iconUrl: string
|
|
17645
17718
|
}
|
|
17646
17719
|
|
|
17720
|
+
export interface LolPurchaseWidgetTransactionResponseDTO {
|
|
17721
|
+
id: string
|
|
17722
|
+
inventoryType: string
|
|
17723
|
+
/** @format int32 */
|
|
17724
|
+
itemId: number
|
|
17725
|
+
}
|
|
17726
|
+
|
|
17647
17727
|
export interface LolPurchaseWidgetValidateOfferError {
|
|
17648
17728
|
errorKey: string
|
|
17649
17729
|
meta: string
|
|
@@ -18059,6 +18139,10 @@ export interface LolRankedRankedQueueStats {
|
|
|
18059
18139
|
wins: number
|
|
18060
18140
|
/** @format int32 */
|
|
18061
18141
|
losses: number
|
|
18142
|
+
/** @format int32 */
|
|
18143
|
+
currentSeasonWinsForRewards: number
|
|
18144
|
+
/** @format int32 */
|
|
18145
|
+
previousSeasonWinsForRewards: number
|
|
18062
18146
|
highestTier: string
|
|
18063
18147
|
highestDivision: LolRankedLeagueDivision
|
|
18064
18148
|
previousSeasonEndTier: string
|
|
@@ -18086,6 +18170,10 @@ export interface LolRankedRankedQueueStatsDTO {
|
|
|
18086
18170
|
wins: number
|
|
18087
18171
|
/** @format int32 */
|
|
18088
18172
|
losses: number
|
|
18173
|
+
/** @format int32 */
|
|
18174
|
+
currentSeasonWinsForRewards: number
|
|
18175
|
+
/** @format int32 */
|
|
18176
|
+
previousSeasonWinsForRewards: number
|
|
18089
18177
|
highestTier: string
|
|
18090
18178
|
highestRank: string
|
|
18091
18179
|
previousSeasonEndTier: string
|
|
@@ -19896,6 +19984,31 @@ export interface LolSettingsVNGStatusResponse {
|
|
|
19896
19984
|
action_url_raw: string
|
|
19897
19985
|
}
|
|
19898
19986
|
|
|
19987
|
+
export interface LolShoppefrontPurchaseRequest {
|
|
19988
|
+
storeId: string
|
|
19989
|
+
catalogEntryId: string
|
|
19990
|
+
/** @format uint32 */
|
|
19991
|
+
quantity: number
|
|
19992
|
+
paymentOptions: string[]
|
|
19993
|
+
}
|
|
19994
|
+
|
|
19995
|
+
export interface LolShoppefrontPurchaseResponse {
|
|
19996
|
+
id: string
|
|
19997
|
+
status: LolShoppefrontPurchaseResponseStatus
|
|
19998
|
+
}
|
|
19999
|
+
|
|
20000
|
+
export type LolShoppefrontPurchaseResponseStatus = "Failure" | "Success" | "Pending" | "None"
|
|
20001
|
+
|
|
20002
|
+
export interface LolShutdownAuthorization {
|
|
20003
|
+
currentPlatformId: string
|
|
20004
|
+
}
|
|
20005
|
+
|
|
20006
|
+
export interface LolShutdownSessionRMSNotification {
|
|
20007
|
+
product: string
|
|
20008
|
+
region: string
|
|
20009
|
+
serviceState: string
|
|
20010
|
+
}
|
|
20011
|
+
|
|
19899
20012
|
export interface LolShutdownShutdownNotification {
|
|
19900
20013
|
reason: LolShutdownShutdownReason
|
|
19901
20014
|
/** @format float */
|
|
@@ -20419,6 +20532,8 @@ export interface LolStatstonesSummoner {
|
|
|
20419
20532
|
summonerId: number
|
|
20420
20533
|
puuid: string
|
|
20421
20534
|
displayName: string
|
|
20535
|
+
/** @format uint32 */
|
|
20536
|
+
summonerLevel: number
|
|
20422
20537
|
}
|
|
20423
20538
|
|
|
20424
20539
|
export interface LolStoreAccessTokenResource {
|
|
@@ -20989,6 +21104,24 @@ export type LolSummonerProfilePrivacyEnabledState = "DISABLED" | "ENABLED" | "UN
|
|
|
20989
21104
|
|
|
20990
21105
|
export type LolSummonerProfilePrivacySetting = "PUBLIC" | "PRIVATE"
|
|
20991
21106
|
|
|
21107
|
+
export interface LolSummonerProfilesPuuidAndViews {
|
|
21108
|
+
payload: Record<string, LolSummonerProfilesViews>
|
|
21109
|
+
}
|
|
21110
|
+
|
|
21111
|
+
export interface LolSummonerProfilesSummonerLevel {
|
|
21112
|
+
puuid: string
|
|
21113
|
+
/** @format uint32 */
|
|
21114
|
+
summonerLevel: number
|
|
21115
|
+
/** @format uint32 */
|
|
21116
|
+
xpSinceLastLevel: number
|
|
21117
|
+
/** @format uint32 */
|
|
21118
|
+
xpToNextLevel: number
|
|
21119
|
+
}
|
|
21120
|
+
|
|
21121
|
+
export interface LolSummonerProfilesViews {
|
|
21122
|
+
views: string[]
|
|
21123
|
+
}
|
|
21124
|
+
|
|
20992
21125
|
export interface LolSummonerRerollDataBagForClientV1 {
|
|
20993
21126
|
/** @format int32 */
|
|
20994
21127
|
queueId: number
|
|
@@ -21092,6 +21225,16 @@ export interface LolSummonerSummonerIdAndName {
|
|
|
21092
21225
|
puuid: string
|
|
21093
21226
|
}
|
|
21094
21227
|
|
|
21228
|
+
export interface LolSummonerSummonerLevelView {
|
|
21229
|
+
puuid: string
|
|
21230
|
+
/** @format uint32 */
|
|
21231
|
+
level: number
|
|
21232
|
+
/** @format uint32 */
|
|
21233
|
+
xpSinceLastLevel: number
|
|
21234
|
+
/** @format uint32 */
|
|
21235
|
+
xpToNextLevel: number
|
|
21236
|
+
}
|
|
21237
|
+
|
|
21095
21238
|
export interface LolSummonerSummonerProfileUpdate {
|
|
21096
21239
|
key: string
|
|
21097
21240
|
value: unknown
|
|
@@ -21258,7 +21401,7 @@ export interface LolTftEventCapMissionsMarkAsViewedPostBodyMission {
|
|
|
21258
21401
|
export interface LolTftEventCapMissionsMeResponse {
|
|
21259
21402
|
productId: string
|
|
21260
21403
|
ownerId: string
|
|
21261
|
-
series:
|
|
21404
|
+
series: LolTftEventCAPMissionSeries[]
|
|
21262
21405
|
}
|
|
21263
21406
|
|
|
21264
21407
|
export interface LolTftEventCollectionsChampion {
|
|
@@ -21380,10 +21523,7 @@ export interface LolTftEventLolTftEvents {
|
|
|
21380
21523
|
|
|
21381
21524
|
export interface LolTftEventLolTftHomeHub {
|
|
21382
21525
|
enabled: boolean
|
|
21383
|
-
storePromoOfferIds: string[]
|
|
21384
21526
|
tacticianPromoOfferIds: string[]
|
|
21385
|
-
battlePassOfferIds: string[]
|
|
21386
|
-
fallbackStorePromoOfferIds: string[]
|
|
21387
21527
|
primeGamingPromoOffer?: LolTftEventLolTftPrimeGaming
|
|
21388
21528
|
overrideUrl: string
|
|
21389
21529
|
headerButtonsOverrideUrl: string
|
|
@@ -21590,6 +21730,7 @@ export interface LolTftEventTFTRotatingShopPromo {
|
|
|
21590
21730
|
id: string
|
|
21591
21731
|
bundleId: string
|
|
21592
21732
|
storeType: string
|
|
21733
|
+
isDeepLink: boolean
|
|
21593
21734
|
}
|
|
21594
21735
|
|
|
21595
21736
|
export interface LolTftEventTFTRotatingShopPromos {
|
|
@@ -21670,10 +21811,7 @@ export interface LolTftLolTftEvents {
|
|
|
21670
21811
|
|
|
21671
21812
|
export interface LolTftLolTftHomeHub {
|
|
21672
21813
|
enabled: boolean
|
|
21673
|
-
storePromoOfferIds: string[]
|
|
21674
21814
|
tacticianPromoOfferIds: string[]
|
|
21675
|
-
battlePassOfferIds: string[]
|
|
21676
|
-
fallbackStorePromoOfferIds: string[]
|
|
21677
21815
|
primeGamingPromoOffer?: LolTftLolTftPrimeGaming
|
|
21678
21816
|
overrideUrl: string
|
|
21679
21817
|
headerButtonsOverrideUrl: string
|
|
@@ -21719,17 +21857,90 @@ export interface LolTftPassAccessTokenResource {
|
|
|
21719
21857
|
expiry: number
|
|
21720
21858
|
}
|
|
21721
21859
|
|
|
21722
|
-
export interface
|
|
21860
|
+
export interface LolTftPassActiveEventUIData {
|
|
21861
|
+
eventId: string
|
|
21862
|
+
eventInfo: LolTftPassEventInfoUIData
|
|
21863
|
+
}
|
|
21864
|
+
|
|
21865
|
+
export interface LolTftPassBundleOfferUIData {
|
|
21866
|
+
details: LolTftPassBundledItemUIData
|
|
21867
|
+
/** @format int64 */
|
|
21868
|
+
initialPrice: number
|
|
21869
|
+
/** @format int64 */
|
|
21870
|
+
finalPrice: number
|
|
21871
|
+
/** @format int64 */
|
|
21872
|
+
futureBalance: number
|
|
21873
|
+
isPurchasable: boolean
|
|
21874
|
+
/** @format double */
|
|
21875
|
+
discountPercentage: number
|
|
21876
|
+
bundledItems: LolTftPassBundledItemUIData[]
|
|
21877
|
+
}
|
|
21878
|
+
|
|
21879
|
+
export interface LolTftPassBundledItemUIData {
|
|
21880
|
+
name: string
|
|
21723
21881
|
/** @format int32 */
|
|
21724
21882
|
itemId: number
|
|
21883
|
+
description: string
|
|
21725
21884
|
inventoryType: string
|
|
21726
|
-
|
|
21885
|
+
subInventoryType: string
|
|
21886
|
+
splashImage: string
|
|
21887
|
+
owned: boolean
|
|
21888
|
+
/** @format uint32 */
|
|
21889
|
+
quantity: number
|
|
21890
|
+
decoratorBadgeURL: string
|
|
21727
21891
|
}
|
|
21728
21892
|
|
|
21729
|
-
export interface
|
|
21730
|
-
|
|
21731
|
-
|
|
21732
|
-
|
|
21893
|
+
export interface LolTftPassCatalogEntry {
|
|
21894
|
+
contentId: string
|
|
21895
|
+
/** @format int32 */
|
|
21896
|
+
itemId: number
|
|
21897
|
+
offerId: string
|
|
21898
|
+
typeId: string
|
|
21899
|
+
}
|
|
21900
|
+
|
|
21901
|
+
export interface LolTftPassCatalogItem {
|
|
21902
|
+
/** @format int32 */
|
|
21903
|
+
itemId: number
|
|
21904
|
+
inventoryType: string
|
|
21905
|
+
itemInstanceId?: string
|
|
21906
|
+
}
|
|
21907
|
+
|
|
21908
|
+
export type LolTftPassCelebrationType = "FULLSCREEN" | "TOAST" | "NONE"
|
|
21909
|
+
|
|
21910
|
+
export interface LolTftPassChapter {
|
|
21911
|
+
localizedTitle: string
|
|
21912
|
+
localizedDescription: string
|
|
21913
|
+
cardImage: string
|
|
21914
|
+
backgroundImage: string
|
|
21915
|
+
backgroundVideo: string
|
|
21916
|
+
foregroundImage: string
|
|
21917
|
+
objectiveBannerImage: string
|
|
21918
|
+
/** @format uint16 */
|
|
21919
|
+
chapterStart: number
|
|
21920
|
+
/** @format uint16 */
|
|
21921
|
+
chapterEnd: number
|
|
21922
|
+
/** @format uint16 */
|
|
21923
|
+
chapterNumber: number
|
|
21924
|
+
/** @format uint16 */
|
|
21925
|
+
levelFocus: number
|
|
21926
|
+
}
|
|
21927
|
+
|
|
21928
|
+
export interface LolTftPassChaptersUIData {
|
|
21929
|
+
/** @format uint16 */
|
|
21930
|
+
currentChapter: number
|
|
21931
|
+
chapters: LolTftPassChapter[]
|
|
21932
|
+
}
|
|
21933
|
+
|
|
21934
|
+
export interface LolTftPassClientCacheClearMessageDTO {
|
|
21935
|
+
regions: string[]
|
|
21936
|
+
clearAll: boolean
|
|
21937
|
+
inventoryTypes: string[]
|
|
21938
|
+
}
|
|
21939
|
+
|
|
21940
|
+
export interface LolTftPassContentDrop {
|
|
21941
|
+
patch: string
|
|
21942
|
+
activationDate: string
|
|
21943
|
+
offers: LolTftPassOffer[]
|
|
21733
21944
|
}
|
|
21734
21945
|
|
|
21735
21946
|
export interface LolTftPassCounter {
|
|
@@ -21771,6 +21982,120 @@ export interface LolTftPassEntityInstance {
|
|
|
21771
21982
|
milestones: LolTftPassMilestoneInstance[]
|
|
21772
21983
|
}
|
|
21773
21984
|
|
|
21985
|
+
export interface LolTftPassEventBackgroundUIData {
|
|
21986
|
+
backgroundImagePath: string
|
|
21987
|
+
}
|
|
21988
|
+
|
|
21989
|
+
export interface LolTftPassEventDetailsUIData {
|
|
21990
|
+
eventIconPath: string
|
|
21991
|
+
eventName: string
|
|
21992
|
+
headerTitleImagePath: string
|
|
21993
|
+
progressEndDate: string
|
|
21994
|
+
shopEndDate: string
|
|
21995
|
+
eventStartDate: string
|
|
21996
|
+
helpModalImagePath: string
|
|
21997
|
+
inducteeName: string
|
|
21998
|
+
promotionBannerImage: string
|
|
21999
|
+
objectiveBannerImage: string
|
|
22000
|
+
memoryBookBackgroundImage: string
|
|
22001
|
+
}
|
|
22002
|
+
|
|
22003
|
+
export type LolTftPassEventHubType = "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
22004
|
+
|
|
22005
|
+
export interface LolTftPassEventInfoUIData {
|
|
22006
|
+
eventId: string
|
|
22007
|
+
eventName: string
|
|
22008
|
+
eventType: string
|
|
22009
|
+
eventIcon: string
|
|
22010
|
+
navBarIcon: string
|
|
22011
|
+
battleExpIcon: string
|
|
22012
|
+
eventTokenImage: string
|
|
22013
|
+
startDate: string
|
|
22014
|
+
progressEndDate: string
|
|
22015
|
+
endDate: string
|
|
22016
|
+
/** @format int32 */
|
|
22017
|
+
currentTokenBalance: number
|
|
22018
|
+
/** @format int32 */
|
|
22019
|
+
lockedTokenCount: number
|
|
22020
|
+
/** @format int32 */
|
|
22021
|
+
unclaimedRewardCount: number
|
|
22022
|
+
/** @format int64 */
|
|
22023
|
+
timeOfLastUnclaimedReward: number
|
|
22024
|
+
isPassPurchased: boolean
|
|
22025
|
+
eventPassBundles: LolTftPassCatalogEntry[]
|
|
22026
|
+
tokenBundles: LolTftPassCatalogEntry[]
|
|
22027
|
+
}
|
|
22028
|
+
|
|
22029
|
+
export interface LolTftPassEventPassInfo {
|
|
22030
|
+
eventId: string
|
|
22031
|
+
isPassPurchased: boolean
|
|
22032
|
+
}
|
|
22033
|
+
|
|
22034
|
+
export interface LolTftPassEventShop {
|
|
22035
|
+
eventId: string
|
|
22036
|
+
eventHubType: string
|
|
22037
|
+
localizedName: string
|
|
22038
|
+
backgroundImage: string
|
|
22039
|
+
navbarIconImage: string
|
|
22040
|
+
battleExpIconImage: string
|
|
22041
|
+
headerIconImage: string
|
|
22042
|
+
startDate: string
|
|
22043
|
+
progressEndDate: string
|
|
22044
|
+
endDate: string
|
|
22045
|
+
localizedUpsellTitle: string
|
|
22046
|
+
localizedUpsellTooltipTitle: string
|
|
22047
|
+
localizedUpsellTooltipDescription: string
|
|
22048
|
+
localizedUpsellButtonText: string
|
|
22049
|
+
upsellBackgroundImageUrl: string
|
|
22050
|
+
upsellTooltipBackgroundImageUrl: string
|
|
22051
|
+
helpModalImage: string
|
|
22052
|
+
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22053
|
+
tokenShop: LolTftPassTokenShop
|
|
22054
|
+
rewardTrack: LolTftPassRewardTrack
|
|
22055
|
+
}
|
|
22056
|
+
|
|
22057
|
+
export interface LolTftPassFSC {
|
|
22058
|
+
id: string
|
|
22059
|
+
canvas: LolTftPassFSCCanvas
|
|
22060
|
+
media: LolTftPassFSCMedia
|
|
22061
|
+
rewards: LolTftPassFSCRewards[]
|
|
22062
|
+
}
|
|
22063
|
+
|
|
22064
|
+
export interface LolTftPassFSCCanvas {
|
|
22065
|
+
title: string
|
|
22066
|
+
subtitle: string
|
|
22067
|
+
canvasBackgroundImage: string
|
|
22068
|
+
canvasSize: LolTftPassFSCCanvasSize
|
|
22069
|
+
canvasDesign: string
|
|
22070
|
+
}
|
|
22071
|
+
|
|
22072
|
+
export type LolTftPassFSCCanvasSize = "FULL" | "LARGE" | "MEDIUM" | "SMALL"
|
|
22073
|
+
|
|
22074
|
+
export interface LolTftPassFSCMedia {
|
|
22075
|
+
introAnimation: string
|
|
22076
|
+
introAnimationAudio: string
|
|
22077
|
+
introLowSpecImage: string
|
|
22078
|
+
loopAnimation: string
|
|
22079
|
+
loopAnimationAudio: string
|
|
22080
|
+
transitionAnimation: string
|
|
22081
|
+
transitionAnimationAudio: string
|
|
22082
|
+
}
|
|
22083
|
+
|
|
22084
|
+
export interface LolTftPassFSCRewards {
|
|
22085
|
+
/** @format int32 */
|
|
22086
|
+
itemId: number
|
|
22087
|
+
imageOverlay: string
|
|
22088
|
+
title: string
|
|
22089
|
+
subtitle: string
|
|
22090
|
+
}
|
|
22091
|
+
|
|
22092
|
+
export type LolTftPassGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
22093
|
+
|
|
22094
|
+
export interface LolTftPassGrantorDescription {
|
|
22095
|
+
appName: string
|
|
22096
|
+
entityId: string
|
|
22097
|
+
}
|
|
22098
|
+
|
|
21774
22099
|
export interface LolTftPassGroup {
|
|
21775
22100
|
id: string
|
|
21776
22101
|
productId: string
|
|
@@ -21780,6 +22105,36 @@ export interface LolTftPassGroup {
|
|
|
21780
22105
|
milestones: LolTftPassMilestone[]
|
|
21781
22106
|
}
|
|
21782
22107
|
|
|
22108
|
+
export interface LolTftPassHallOfLegends {
|
|
22109
|
+
eventId: string
|
|
22110
|
+
eventHubType: string
|
|
22111
|
+
localizedName: string
|
|
22112
|
+
navbarIconImage: string
|
|
22113
|
+
headerIconImage: string
|
|
22114
|
+
battleExpIconImage: string
|
|
22115
|
+
headerTitleImage: string
|
|
22116
|
+
startDate: string
|
|
22117
|
+
progressEndDate: string
|
|
22118
|
+
endDate: string
|
|
22119
|
+
helpModalImage: string
|
|
22120
|
+
inducteeName: string
|
|
22121
|
+
promotionBannerImage: string
|
|
22122
|
+
objectiveBannerImage: string
|
|
22123
|
+
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22124
|
+
progressionPurchaseCatalogEntry: LolTftPassCatalogEntry
|
|
22125
|
+
skinIds: string[]
|
|
22126
|
+
rewardTrack: LolTftPassRewardTrack
|
|
22127
|
+
narrativeElements: LolTftPassNarrativeElement[]
|
|
22128
|
+
localizedUpsellTitle: string
|
|
22129
|
+
localizedUpsellTooltipTitle: string
|
|
22130
|
+
localizedUpsellTooltipDescription: string
|
|
22131
|
+
localizedUpsellButtonText: string
|
|
22132
|
+
upsellBackgroundImageUrl: string
|
|
22133
|
+
upsellTooltipBackgroundImageUrl: string
|
|
22134
|
+
upsellIconUrl: string
|
|
22135
|
+
memoryBookBackgroundImage: string
|
|
22136
|
+
}
|
|
22137
|
+
|
|
21783
22138
|
export interface LolTftPassInventoryCacheEntry {
|
|
21784
22139
|
signedInventoryJwt: string
|
|
21785
22140
|
/** @format uint64 */
|
|
@@ -21877,12 +22232,31 @@ export interface LolTftPassInventoryResponseDTO {
|
|
|
21877
22232
|
data: LolTftPassInventoryDTO
|
|
21878
22233
|
}
|
|
21879
22234
|
|
|
22235
|
+
export interface LolTftPassItem {
|
|
22236
|
+
itemId: string
|
|
22237
|
+
inventoryType: string
|
|
22238
|
+
/** @format uint32 */
|
|
22239
|
+
price: number
|
|
22240
|
+
/** @format uint32 */
|
|
22241
|
+
quantity: number
|
|
22242
|
+
}
|
|
22243
|
+
|
|
21880
22244
|
export interface LolTftPassItemKey {
|
|
21881
22245
|
inventoryType: string
|
|
21882
22246
|
/** @format int32 */
|
|
21883
22247
|
itemId: number
|
|
21884
22248
|
}
|
|
21885
22249
|
|
|
22250
|
+
export interface LolTftPassItemOrderDTO {
|
|
22251
|
+
inventoryType: string
|
|
22252
|
+
/** @format int32 */
|
|
22253
|
+
itemId: number
|
|
22254
|
+
/** @format uint32 */
|
|
22255
|
+
quantity: number
|
|
22256
|
+
/** @format uint32 */
|
|
22257
|
+
rpCost: number
|
|
22258
|
+
}
|
|
22259
|
+
|
|
21886
22260
|
export type LolTftPassItemOwnershipType = "F2P" | "LOYALTY" | "RENTED" | "OWNED"
|
|
21887
22261
|
|
|
21888
22262
|
export interface LolTftPassLoginSession {
|
|
@@ -21975,6 +22349,57 @@ export interface LolTftPassMilestoneInstance {
|
|
|
21975
22349
|
triggers: LolTftPassTrigger[]
|
|
21976
22350
|
}
|
|
21977
22351
|
|
|
22352
|
+
export interface LolTftPassNarrativeElement {
|
|
22353
|
+
localizedNarrativeTitle: string
|
|
22354
|
+
localizedNarrativeDescription: string
|
|
22355
|
+
narrativeBackgroundImage: string
|
|
22356
|
+
/** @format uint16 */
|
|
22357
|
+
narrativeStartingTrackLevel: number
|
|
22358
|
+
narrativeVideo: LolTftPassNarrativeVideo
|
|
22359
|
+
}
|
|
22360
|
+
|
|
22361
|
+
export interface LolTftPassNarrativeVideo {
|
|
22362
|
+
localizedNarrativeVideoUrl: string
|
|
22363
|
+
localizedPlayNarrativeButtonLabel: string
|
|
22364
|
+
localizedVideoTitle: string
|
|
22365
|
+
thumbnailImage: string
|
|
22366
|
+
narrativeVideoIsLockedOnLevel?: boolean
|
|
22367
|
+
localizedNarrativeVideoDescription: string
|
|
22368
|
+
}
|
|
22369
|
+
|
|
22370
|
+
export interface LolTftPassNextRewardUIData {
|
|
22371
|
+
thumbIconPath: string
|
|
22372
|
+
state: LolTftPassRewardTrackItemHeaderType
|
|
22373
|
+
name: string
|
|
22374
|
+
description: string
|
|
22375
|
+
level: string
|
|
22376
|
+
}
|
|
22377
|
+
|
|
22378
|
+
export interface LolTftPassObjectivesBanner {
|
|
22379
|
+
eventName: string
|
|
22380
|
+
promotionBannerImage: string
|
|
22381
|
+
objectiveBannerImage: string
|
|
22382
|
+
isPassPurchased: boolean
|
|
22383
|
+
currentChapter: LolTftPassChapter
|
|
22384
|
+
trackProgressNextReward: LolTftPassTrackProgressNextReward
|
|
22385
|
+
trackProgress: LolTftPassTrackProgressNextReward
|
|
22386
|
+
rewardTrackProgress: LolTftPassRewardTrackProgress
|
|
22387
|
+
}
|
|
22388
|
+
|
|
22389
|
+
export interface LolTftPassOffer {
|
|
22390
|
+
id: string
|
|
22391
|
+
localizedTitle: string
|
|
22392
|
+
localizedDescription: string
|
|
22393
|
+
image: string
|
|
22394
|
+
promotionType: LolTftPassOfferPromotionType
|
|
22395
|
+
offerCategory: LolTftPassOfferCategory
|
|
22396
|
+
items: LolTftPassItem[]
|
|
22397
|
+
}
|
|
22398
|
+
|
|
22399
|
+
export type LolTftPassOfferCategory = "Currencies" | "Tft" | "Loot" | "Borders" | "Skins" | "Chromas" | "Featured"
|
|
22400
|
+
|
|
22401
|
+
export type LolTftPassOfferPromotionType = "kFeaturedHighlighted" | "kFeatured" | "kNone"
|
|
22402
|
+
|
|
21978
22403
|
export interface LolTftPassPlayerNotification {
|
|
21979
22404
|
critical: boolean
|
|
21980
22405
|
detailKey: string
|
|
@@ -21985,6 +22410,39 @@ export interface LolTftPassPlayerNotification {
|
|
|
21985
22410
|
iconUrl: string
|
|
21986
22411
|
}
|
|
21987
22412
|
|
|
22413
|
+
export interface LolTftPassProgressInfoUIData {
|
|
22414
|
+
tokenImage: string
|
|
22415
|
+
passPurchased: boolean
|
|
22416
|
+
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22417
|
+
}
|
|
22418
|
+
|
|
22419
|
+
export interface LolTftPassProgressionPurchaseUIData {
|
|
22420
|
+
offerId: string
|
|
22421
|
+
/** @format int64 */
|
|
22422
|
+
pricePerLevel: number
|
|
22423
|
+
/** @format int64 */
|
|
22424
|
+
rpBalance: number
|
|
22425
|
+
}
|
|
22426
|
+
|
|
22427
|
+
export interface LolTftPassPurchaseOfferRequest {
|
|
22428
|
+
offerId: string
|
|
22429
|
+
/** @format uint32 */
|
|
22430
|
+
purchaseQuantity: number
|
|
22431
|
+
}
|
|
22432
|
+
|
|
22433
|
+
export interface LolTftPassPurchaseOrderResponseDTO {
|
|
22434
|
+
/** @format int64 */
|
|
22435
|
+
rpBalance: number
|
|
22436
|
+
/** @format int64 */
|
|
22437
|
+
ipBalance: number
|
|
22438
|
+
transactions: LolTftPassTransactionResponseDTO[]
|
|
22439
|
+
}
|
|
22440
|
+
|
|
22441
|
+
export interface LolTftPassRMSPayload {
|
|
22442
|
+
productId: string
|
|
22443
|
+
affinities: string[]
|
|
22444
|
+
}
|
|
22445
|
+
|
|
21988
22446
|
export interface LolTftPassRMSRequest {
|
|
21989
22447
|
resource: string
|
|
21990
22448
|
service: string
|
|
@@ -22002,6 +22460,11 @@ export interface LolTftPassRMSRewardsNotificationPayload {
|
|
|
22002
22460
|
status: string
|
|
22003
22461
|
}
|
|
22004
22462
|
|
|
22463
|
+
export interface LolTftPassRegionLocale {
|
|
22464
|
+
region: string
|
|
22465
|
+
locale: string
|
|
22466
|
+
}
|
|
22467
|
+
|
|
22005
22468
|
export interface LolTftPassRepeat {
|
|
22006
22469
|
/** @format int32 */
|
|
22007
22470
|
count: number
|
|
@@ -22024,6 +22487,189 @@ export interface LolTftPassRepeatGroupTrigger {
|
|
|
22024
22487
|
multiplier: number
|
|
22025
22488
|
}
|
|
22026
22489
|
|
|
22490
|
+
export interface LolTftPassRequestDTO_SelectionRequestDTO {
|
|
22491
|
+
data: LolTftPassSelectionRequestDTO
|
|
22492
|
+
metadata: LolTftPassRequestMetadataDTO
|
|
22493
|
+
}
|
|
22494
|
+
|
|
22495
|
+
export interface LolTftPassRequestDTO_vector_SelectionRequestDTO {
|
|
22496
|
+
data: LolTftPassSelectionRequestDTO[]
|
|
22497
|
+
metadata: LolTftPassRequestMetadataDTO
|
|
22498
|
+
}
|
|
22499
|
+
|
|
22500
|
+
export interface LolTftPassRequestDTO_vector_string {
|
|
22501
|
+
data: string[]
|
|
22502
|
+
metadata: LolTftPassRequestMetadataDTO
|
|
22503
|
+
}
|
|
22504
|
+
|
|
22505
|
+
export interface LolTftPassRequestMetadataDTO {
|
|
22506
|
+
transactionId?: string
|
|
22507
|
+
}
|
|
22508
|
+
|
|
22509
|
+
export interface LolTftPassResponseDTO_SvcRewardGrant {
|
|
22510
|
+
data: LolTftPassSvcRewardGrant
|
|
22511
|
+
metadata: LolTftPassResponseMetadataDTO
|
|
22512
|
+
}
|
|
22513
|
+
|
|
22514
|
+
export interface LolTftPassResponseDTO_map_RewardGroupId_SelectGrantStatus {
|
|
22515
|
+
data: Record<string, LolTftPassSelectGrantStatusResponse>
|
|
22516
|
+
metadata: LolTftPassResponseMetadataDTO
|
|
22517
|
+
}
|
|
22518
|
+
|
|
22519
|
+
export interface LolTftPassResponseDTO_vector_SvcRewardGrant {
|
|
22520
|
+
data: LolTftPassSvcRewardGrant[]
|
|
22521
|
+
metadata: LolTftPassResponseMetadataDTO
|
|
22522
|
+
}
|
|
22523
|
+
|
|
22524
|
+
export interface LolTftPassResponseDTO_vector_SvcRewardGroup {
|
|
22525
|
+
data: LolTftPassSvcRewardGroup[]
|
|
22526
|
+
metadata: LolTftPassResponseMetadataDTO
|
|
22527
|
+
}
|
|
22528
|
+
|
|
22529
|
+
export interface LolTftPassResponseMetadataDTO {
|
|
22530
|
+
[key: string | number]: any
|
|
22531
|
+
}
|
|
22532
|
+
|
|
22533
|
+
export interface LolTftPassReward {
|
|
22534
|
+
id: string
|
|
22535
|
+
itemId: string
|
|
22536
|
+
itemType: string
|
|
22537
|
+
/** @format int32 */
|
|
22538
|
+
quantity: number
|
|
22539
|
+
fulfillmentSource: string
|
|
22540
|
+
media: Record<string, string>
|
|
22541
|
+
localizations: Record<string, string>
|
|
22542
|
+
}
|
|
22543
|
+
|
|
22544
|
+
export interface LolTftPassRewardGrant {
|
|
22545
|
+
info: LolTftPassSvcRewardGrant
|
|
22546
|
+
rewardGroup: LolTftPassSvcRewardGroup
|
|
22547
|
+
}
|
|
22548
|
+
|
|
22549
|
+
export type LolTftPassRewardStatus = "FAILED" | "FULFILLED" | "PENDING"
|
|
22550
|
+
|
|
22551
|
+
export type LolTftPassRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
22552
|
+
|
|
22553
|
+
export interface LolTftPassRewardTrack {
|
|
22554
|
+
trackConfig: LolTftPassRewardTrackConfiguration
|
|
22555
|
+
}
|
|
22556
|
+
|
|
22557
|
+
export interface LolTftPassRewardTrackConfiguration {
|
|
22558
|
+
id: string
|
|
22559
|
+
premiumEntitlementId: string
|
|
22560
|
+
}
|
|
22561
|
+
|
|
22562
|
+
export interface LolTftPassRewardTrackError {
|
|
22563
|
+
errorMessage: string
|
|
22564
|
+
errorId: string
|
|
22565
|
+
}
|
|
22566
|
+
|
|
22567
|
+
export interface LolTftPassRewardTrackItem {
|
|
22568
|
+
state: LolTftPassRewardTrackItemStates
|
|
22569
|
+
rewardOptions: LolTftPassRewardTrackItemOption[]
|
|
22570
|
+
rewardTags: LolTftPassRewardTrackItemTag[]
|
|
22571
|
+
/** @format int64 */
|
|
22572
|
+
progressRequired: number
|
|
22573
|
+
threshold: string
|
|
22574
|
+
}
|
|
22575
|
+
|
|
22576
|
+
export type LolTftPassRewardTrackItemHeaderType = "NONE" | "FREE" | "PREMIUM"
|
|
22577
|
+
|
|
22578
|
+
export interface LolTftPassRewardTrackItemOption {
|
|
22579
|
+
state: LolTftPassRewardTrackItemStates
|
|
22580
|
+
thumbIconPath: string
|
|
22581
|
+
splashImagePath: string
|
|
22582
|
+
selected: boolean
|
|
22583
|
+
overrideFooter: string
|
|
22584
|
+
headerType: LolTftPassRewardTrackItemHeaderType
|
|
22585
|
+
rewardName: string
|
|
22586
|
+
rewardDescription: string
|
|
22587
|
+
rewardItemType: string
|
|
22588
|
+
rewardItemId: string
|
|
22589
|
+
rewardFulfillmentSource: string
|
|
22590
|
+
cardSize: string
|
|
22591
|
+
rewardGroupId: string
|
|
22592
|
+
celebrationType: LolTftPassCelebrationType
|
|
22593
|
+
}
|
|
22594
|
+
|
|
22595
|
+
export type LolTftPassRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
|
|
22596
|
+
|
|
22597
|
+
export type LolTftPassRewardTrackItemTag = "Multiple" | "Choice" | "Instant" | "Free" | "Rare"
|
|
22598
|
+
|
|
22599
|
+
export interface LolTftPassRewardTrackProgress {
|
|
22600
|
+
/** @format int16 */
|
|
22601
|
+
level: number
|
|
22602
|
+
/** @format int16 */
|
|
22603
|
+
totalLevels: number
|
|
22604
|
+
/** @format uint16 */
|
|
22605
|
+
levelProgress: number
|
|
22606
|
+
/** @format uint16 */
|
|
22607
|
+
futureLevelProgress: number
|
|
22608
|
+
/** @format int64 */
|
|
22609
|
+
passProgress: number
|
|
22610
|
+
/** @format int64 */
|
|
22611
|
+
currentLevelXP: number
|
|
22612
|
+
/** @format int64 */
|
|
22613
|
+
totalLevelXP: number
|
|
22614
|
+
/** @format uint32 */
|
|
22615
|
+
iteration: number
|
|
22616
|
+
}
|
|
22617
|
+
|
|
22618
|
+
export interface LolTftPassRewardTrackXP {
|
|
22619
|
+
/** @format int64 */
|
|
22620
|
+
currentLevel: number
|
|
22621
|
+
/** @format int64 */
|
|
22622
|
+
currentLevelXP: number
|
|
22623
|
+
/** @format int64 */
|
|
22624
|
+
totalLevelXP: number
|
|
22625
|
+
isBonusPhase: boolean
|
|
22626
|
+
/** @format uint32 */
|
|
22627
|
+
iteration: number
|
|
22628
|
+
}
|
|
22629
|
+
|
|
22630
|
+
export interface LolTftPassRewardsCatalogPluginItem {
|
|
22631
|
+
/** @format int32 */
|
|
22632
|
+
itemId: number
|
|
22633
|
+
name: string
|
|
22634
|
+
itemInstanceId: string
|
|
22635
|
+
owned: boolean
|
|
22636
|
+
rarity: string
|
|
22637
|
+
active: boolean
|
|
22638
|
+
questSkinInfo: LolTftPassRewardsSkinLineInfo
|
|
22639
|
+
}
|
|
22640
|
+
|
|
22641
|
+
export interface LolTftPassRewardsCatalogPluginItemAssets {
|
|
22642
|
+
splashPath: string
|
|
22643
|
+
loadScreenPath: string
|
|
22644
|
+
}
|
|
22645
|
+
|
|
22646
|
+
export interface LolTftPassRewardsCatalogPluginItemWithDetails {
|
|
22647
|
+
item: LolTftPassRewardsCatalogPluginItem
|
|
22648
|
+
assets: LolTftPassRewardsCatalogPluginItemAssets
|
|
22649
|
+
}
|
|
22650
|
+
|
|
22651
|
+
export interface LolTftPassRewardsConfig {
|
|
22652
|
+
GrantFiltering: boolean
|
|
22653
|
+
}
|
|
22654
|
+
|
|
22655
|
+
export interface LolTftPassRewardsSkinLineInfo {
|
|
22656
|
+
tiers: LolTftPassRewardsSkinLineTier[]
|
|
22657
|
+
mostProgressedSkinTier: LolTftPassRewardsSkinLineTier
|
|
22658
|
+
productType: string
|
|
22659
|
+
}
|
|
22660
|
+
|
|
22661
|
+
export interface LolTftPassRewardsSkinLineTier {
|
|
22662
|
+
/** @format int64 */
|
|
22663
|
+
stage: number
|
|
22664
|
+
name: string
|
|
22665
|
+
uncenteredSplashPath: string
|
|
22666
|
+
ownership: LolTftPassRewardsSkinLineTierOwnership
|
|
22667
|
+
}
|
|
22668
|
+
|
|
22669
|
+
export interface LolTftPassRewardsSkinLineTierOwnership {
|
|
22670
|
+
owned: boolean
|
|
22671
|
+
}
|
|
22672
|
+
|
|
22027
22673
|
export interface LolTftPassRiotMessagingServiceMessage {
|
|
22028
22674
|
resource: string
|
|
22029
22675
|
service: string
|
|
@@ -22062,6 +22708,46 @@ export interface LolTftPassRmsXboxSubscriptionChange {
|
|
|
22062
22708
|
identityProvider: string[]
|
|
22063
22709
|
}
|
|
22064
22710
|
|
|
22711
|
+
export interface LolTftPassSeasonPass {
|
|
22712
|
+
eventId: string
|
|
22713
|
+
eventHubType: string
|
|
22714
|
+
localizedName: string
|
|
22715
|
+
navbarIconImage: string
|
|
22716
|
+
headerIconImage: string
|
|
22717
|
+
battleExpIconImage: string
|
|
22718
|
+
headerTitleImage: string
|
|
22719
|
+
startDate: string
|
|
22720
|
+
progressEndDate: string
|
|
22721
|
+
endDate: string
|
|
22722
|
+
helpModalImage: string
|
|
22723
|
+
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22724
|
+
progressionPurchaseCatalogEntry: LolTftPassCatalogEntry
|
|
22725
|
+
rewardTrack: LolTftPassRewardTrack
|
|
22726
|
+
localizedUpsellTitle: string
|
|
22727
|
+
localizedUpsellTooltipTitle: string
|
|
22728
|
+
localizedUpsellTooltipDescription: string
|
|
22729
|
+
localizedUpsellButtonText: string
|
|
22730
|
+
upsellBackgroundImageUrl: string
|
|
22731
|
+
upsellTooltipBackgroundImageUrl: string
|
|
22732
|
+
objectiveBannerImage: string
|
|
22733
|
+
chapters: LolTftPassChapter[]
|
|
22734
|
+
}
|
|
22735
|
+
|
|
22736
|
+
export type LolTftPassSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
22737
|
+
|
|
22738
|
+
export interface LolTftPassSelectionRequestDTO {
|
|
22739
|
+
grantId: string
|
|
22740
|
+
rewardGroupId: string
|
|
22741
|
+
selections: string[]
|
|
22742
|
+
}
|
|
22743
|
+
|
|
22744
|
+
export interface LolTftPassSelectionStrategyConfig {
|
|
22745
|
+
/** @format uint32 */
|
|
22746
|
+
minSelectionsAllowed: number
|
|
22747
|
+
/** @format uint32 */
|
|
22748
|
+
maxSelectionsAllowed: number
|
|
22749
|
+
}
|
|
22750
|
+
|
|
22065
22751
|
export interface LolTftPassSimpleInventoryDTO {
|
|
22066
22752
|
items: Record<string, unknown>
|
|
22067
22753
|
itemsJwt: string
|
|
@@ -22077,6 +22763,45 @@ export interface LolTftPassSummonerIcon {
|
|
|
22077
22763
|
itemId: number
|
|
22078
22764
|
}
|
|
22079
22765
|
|
|
22766
|
+
export interface LolTftPassSvcRewardGrant {
|
|
22767
|
+
id: string
|
|
22768
|
+
granteeId: string
|
|
22769
|
+
rewardGroupId: string
|
|
22770
|
+
dateCreated: string
|
|
22771
|
+
status: LolTftPassGrantStatus
|
|
22772
|
+
grantElements: LolTftPassSvcRewardGrantElement[]
|
|
22773
|
+
selectedIds: string[]
|
|
22774
|
+
viewed: boolean
|
|
22775
|
+
grantorDescription: LolTftPassGrantorDescription
|
|
22776
|
+
messageParameters: Record<string, unknown>
|
|
22777
|
+
}
|
|
22778
|
+
|
|
22779
|
+
export interface LolTftPassSvcRewardGrantElement {
|
|
22780
|
+
elementId: string
|
|
22781
|
+
itemId: string
|
|
22782
|
+
itemType: string
|
|
22783
|
+
fulfillmentSource: string
|
|
22784
|
+
status: LolTftPassRewardStatus
|
|
22785
|
+
/** @format int32 */
|
|
22786
|
+
quantity: number
|
|
22787
|
+
media: Record<string, string>
|
|
22788
|
+
localizations: Record<string, string>
|
|
22789
|
+
}
|
|
22790
|
+
|
|
22791
|
+
export interface LolTftPassSvcRewardGroup {
|
|
22792
|
+
id: string
|
|
22793
|
+
productId: string
|
|
22794
|
+
types: string[]
|
|
22795
|
+
rewards: LolTftPassReward[]
|
|
22796
|
+
childRewardGroupIds: string[]
|
|
22797
|
+
rewardStrategy: LolTftPassRewardStrategy
|
|
22798
|
+
selectionStrategyConfig?: LolTftPassSelectionStrategyConfig
|
|
22799
|
+
active: boolean
|
|
22800
|
+
media: Record<string, string>
|
|
22801
|
+
localizations: Record<string, string>
|
|
22802
|
+
celebrationType: LolTftPassCelebrationType
|
|
22803
|
+
}
|
|
22804
|
+
|
|
22080
22805
|
export interface LolTftPassTFTPassAsset {
|
|
22081
22806
|
internalName: string
|
|
22082
22807
|
iconTexturePath: string
|
|
@@ -22088,6 +22813,7 @@ export interface LolTftPassTFTPassClientConfig {
|
|
|
22088
22813
|
eventPassId: string
|
|
22089
22814
|
dailyLoginPassId: string
|
|
22090
22815
|
skillTreePassId: string
|
|
22816
|
+
pmUltimateVictoryPassId: string
|
|
22091
22817
|
}
|
|
22092
22818
|
|
|
22093
22819
|
export interface LolTftPassTFTPassDTO {
|
|
@@ -22212,6 +22938,32 @@ export interface LolTftPassTftBattlepassReward {
|
|
|
22212
22938
|
|
|
22213
22939
|
export type LolTftPassTftPassType = "kUnknown" | "kSkillTreePass" | "kDailyLoginPass" | "kEventPass" | "kBattlePass"
|
|
22214
22940
|
|
|
22941
|
+
export interface LolTftPassTokenShop {
|
|
22942
|
+
tokenImage: string
|
|
22943
|
+
tokenName: string
|
|
22944
|
+
tokenUuid: string
|
|
22945
|
+
offers: LolTftPassOffer[]
|
|
22946
|
+
contentDrops: LolTftPassContentDrop[]
|
|
22947
|
+
tokenBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22948
|
+
}
|
|
22949
|
+
|
|
22950
|
+
export interface LolTftPassTrackProgressNextReward {
|
|
22951
|
+
/** @format int64 */
|
|
22952
|
+
currentXP: number
|
|
22953
|
+
/** @format int64 */
|
|
22954
|
+
nextLevelXP: number
|
|
22955
|
+
/** @format int64 */
|
|
22956
|
+
currentLevel: number
|
|
22957
|
+
nextReward: LolTftPassNextRewardUIData
|
|
22958
|
+
}
|
|
22959
|
+
|
|
22960
|
+
export interface LolTftPassTransactionResponseDTO {
|
|
22961
|
+
id: string
|
|
22962
|
+
inventoryType: string
|
|
22963
|
+
/** @format int32 */
|
|
22964
|
+
itemId: number
|
|
22965
|
+
}
|
|
22966
|
+
|
|
22215
22967
|
export interface LolTftPassTrigger {
|
|
22216
22968
|
type: string
|
|
22217
22969
|
counterId: string
|
|
@@ -22219,6 +22971,15 @@ export interface LolTftPassTrigger {
|
|
|
22219
22971
|
triggerValue: number
|
|
22220
22972
|
}
|
|
22221
22973
|
|
|
22974
|
+
export interface LolTftPassUnclaimedRewardsUIData {
|
|
22975
|
+
/** @format int32 */
|
|
22976
|
+
rewardsCount: number
|
|
22977
|
+
/** @format int32 */
|
|
22978
|
+
lockedTokensCount: number
|
|
22979
|
+
/** @format int64 */
|
|
22980
|
+
timeOfLastUnclaimedReward: number
|
|
22981
|
+
}
|
|
22982
|
+
|
|
22222
22983
|
export interface LolTftPassWallet {
|
|
22223
22984
|
/** @format int64 */
|
|
22224
22985
|
ip: number
|
|
@@ -22565,6 +23326,7 @@ export interface LolTftTFTRotatingShopPromo {
|
|
|
22565
23326
|
id: string
|
|
22566
23327
|
bundleId: string
|
|
22567
23328
|
storeType: string
|
|
23329
|
+
isDeepLink: boolean
|
|
22568
23330
|
}
|
|
22569
23331
|
|
|
22570
23332
|
export interface LolTftTFTRotatingShopPromos {
|
|
@@ -24130,6 +24892,9 @@ export interface MissionMetadata {
|
|
|
24130
24892
|
order: number
|
|
24131
24893
|
/** @format int32 */
|
|
24132
24894
|
chainSize: number
|
|
24895
|
+
/** @format uint32 */
|
|
24896
|
+
minRequired?: number
|
|
24897
|
+
objectiveMetadataMap?: Record<string, ObjectiveMetaData>
|
|
24133
24898
|
}
|
|
24134
24899
|
|
|
24135
24900
|
export interface MissionProgressDTO {
|
|
@@ -24203,6 +24968,12 @@ export interface NpeRewardPackMetadata {
|
|
|
24203
24968
|
minorRewards: NpeReward[]
|
|
24204
24969
|
}
|
|
24205
24970
|
|
|
24971
|
+
export interface ObjectiveMetaData {
|
|
24972
|
+
type: string
|
|
24973
|
+
/** @format uint32 */
|
|
24974
|
+
id: number
|
|
24975
|
+
}
|
|
24976
|
+
|
|
24206
24977
|
export interface OpenedTeamDTO {
|
|
24207
24978
|
name: string
|
|
24208
24979
|
shortName: string
|
|
@@ -24330,7 +25101,7 @@ export interface PaymentsFrontEndRequest {
|
|
|
24330
25101
|
usePmcSessions: boolean
|
|
24331
25102
|
game: string
|
|
24332
25103
|
openedFrom: string
|
|
24333
|
-
/** @format
|
|
25104
|
+
/** @format int32 */
|
|
24334
25105
|
minVirtualAmount: number
|
|
24335
25106
|
orderDetailsJSON: string
|
|
24336
25107
|
}
|
|
@@ -24348,7 +25119,7 @@ export interface PaymentsPMCStartUrlRequest {
|
|
|
24348
25119
|
gifteeMessage: string
|
|
24349
25120
|
game: string
|
|
24350
25121
|
openedFrom: string
|
|
24351
|
-
/** @format
|
|
25122
|
+
/** @format int32 */
|
|
24352
25123
|
minVirtualAmount: number
|
|
24353
25124
|
orderDetailsJSON: string
|
|
24354
25125
|
machineId: string
|
|
@@ -25542,6 +26313,8 @@ export interface TeamBuilderDirect_ChampSelectSession {
|
|
|
25542
26313
|
id: string
|
|
25543
26314
|
/** @format uint64 */
|
|
25544
26315
|
gameId: number
|
|
26316
|
+
/** @format int32 */
|
|
26317
|
+
queueId: number
|
|
25545
26318
|
timer: TeamBuilderDirect_TeambuilderDirectTypes_ChampSelectTimer
|
|
25546
26319
|
chatDetails: TeamBuilderDirect_ChampSelectChatRoomDetails
|
|
25547
26320
|
myTeam: TeamBuilderDirect_ChampSelectPlayerSelection[]
|
|
@@ -25644,9 +26417,9 @@ export interface TeamBuilderDirect_ChampSelectSwapContract {
|
|
|
25644
26417
|
state: TeamBuilderDirect_ChampSelectSwapState
|
|
25645
26418
|
}
|
|
25646
26419
|
|
|
25647
|
-
export type
|
|
26420
|
+
export type TeamBuilderDirect_ChampSelectSwapState = "ACCEPTED" | "CANCELLED" | "DECLINED" | "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
25648
26421
|
|
|
25649
|
-
export type
|
|
26422
|
+
export type TeamBuilderDirect_ChampSelectSwapType = "POSITION" | "PICK_ORDER" | "CHAMPION"
|
|
25650
26423
|
|
|
25651
26424
|
export interface TeamBuilderDirect_ChampionBenchState {
|
|
25652
26425
|
benchEnabled: boolean
|
|
@@ -25897,21 +26670,21 @@ export interface TeamBuilderDirect_GameflowGameDodge {
|
|
|
25897
26670
|
dodgeIds: number[]
|
|
25898
26671
|
}
|
|
25899
26672
|
|
|
25900
|
-
export type
|
|
26673
|
+
export type TeamBuilderDirect_GameflowGameDodgeState = "TournamentDodged" | "StrangerDodged" | "PartyDodged" | "Invalid"
|
|
25901
26674
|
|
|
25902
26675
|
export interface TeamBuilderDirect_GameflowGameMap {
|
|
25903
26676
|
perPositionRequiredSummonerSpells: Record<string, TeamBuilderDirect_GameModeSpellList>
|
|
25904
26677
|
perPositionDisallowedSummonerSpells: Record<string, TeamBuilderDirect_GameModeSpellList>
|
|
25905
26678
|
}
|
|
25906
26679
|
|
|
25907
|
-
export type
|
|
26680
|
+
export type TeamBuilderDirect_GameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
25908
26681
|
|
|
25909
26682
|
export interface TeamBuilderDirect_GameflowQueue {
|
|
25910
26683
|
/** @format int32 */
|
|
25911
26684
|
id: number
|
|
25912
26685
|
}
|
|
25913
26686
|
|
|
25914
|
-
export type
|
|
26687
|
+
export type TeamBuilderDirect_GameflowServiceErrorType = "PLAYER_LACKS_VANGUARD_SESSION"
|
|
25915
26688
|
|
|
25916
26689
|
export interface TeamBuilderDirect_GameflowSession {
|
|
25917
26690
|
phase: TeamBuilderDirect_GameflowPhase
|
|
@@ -25948,13 +26721,30 @@ export interface TeamBuilderDirect_InventoryDraft {
|
|
|
25948
26721
|
}
|
|
25949
26722
|
|
|
25950
26723
|
export interface TeamBuilderDirect_InventoryItem {
|
|
25951
|
-
/** @format
|
|
26724
|
+
/** @format int32 */
|
|
25952
26725
|
itemId: number
|
|
26726
|
+
inventoryType: string
|
|
26727
|
+
}
|
|
26728
|
+
|
|
26729
|
+
export interface TeamBuilderDirect_InventoryItemDTO {
|
|
26730
|
+
/** @format int32 */
|
|
26731
|
+
itemId: number
|
|
26732
|
+
inventoryType: string
|
|
26733
|
+
payload: unknown
|
|
26734
|
+
"f2p": boolean
|
|
26735
|
+
rental: boolean
|
|
26736
|
+
loyalty: boolean
|
|
26737
|
+
lsb: boolean
|
|
25953
26738
|
}
|
|
25954
26739
|
|
|
25955
26740
|
export interface TeamBuilderDirect_InventoryItemWithPayload {
|
|
25956
|
-
/** @format
|
|
26741
|
+
/** @format int32 */
|
|
25957
26742
|
itemId: number
|
|
26743
|
+
inventoryType: string
|
|
26744
|
+
"f2p": boolean
|
|
26745
|
+
rental: boolean
|
|
26746
|
+
loyalty: boolean
|
|
26747
|
+
owned: boolean
|
|
25958
26748
|
payload: unknown
|
|
25959
26749
|
}
|
|
25960
26750
|
|
|
@@ -25981,7 +26771,7 @@ export interface TeamBuilderDirect_LoginSession {
|
|
|
25981
26771
|
summonerId?: number
|
|
25982
26772
|
}
|
|
25983
26773
|
|
|
25984
|
-
export type
|
|
26774
|
+
export type TeamBuilderDirect_LoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
25985
26775
|
|
|
25986
26776
|
export interface TeamBuilderDirect_MatchmakingDodgeData {
|
|
25987
26777
|
state: TeamBuilderDirect_MatchmakingDodgeState
|
|
@@ -25989,9 +26779,9 @@ export interface TeamBuilderDirect_MatchmakingDodgeData {
|
|
|
25989
26779
|
dodgerId: number
|
|
25990
26780
|
}
|
|
25991
26781
|
|
|
25992
|
-
export type
|
|
26782
|
+
export type TeamBuilderDirect_MatchmakingDodgeState = "TournamentDodged" | "StrangerDodged" | "PartyDodged" | "Invalid"
|
|
25993
26783
|
|
|
25994
|
-
export type
|
|
26784
|
+
export type TeamBuilderDirect_MatchmakingDodgeWarning = "Penalty" | "Warning" | "None"
|
|
25995
26785
|
|
|
25996
26786
|
export interface TeamBuilderDirect_MatchmakingLowPriorityData {
|
|
25997
26787
|
penalizedSummonerIds: number[]
|
|
@@ -26009,11 +26799,12 @@ export interface TeamBuilderDirect_MatchmakingReadyCheckResource {
|
|
|
26009
26799
|
/** @format float */
|
|
26010
26800
|
timer: number
|
|
26011
26801
|
declinerIds: number[]
|
|
26802
|
+
autoAccept: boolean
|
|
26012
26803
|
}
|
|
26013
26804
|
|
|
26014
|
-
export type
|
|
26805
|
+
export type TeamBuilderDirect_MatchmakingReadyCheckResponse = "Declined" | "Accepted" | "None"
|
|
26015
26806
|
|
|
26016
|
-
export type
|
|
26807
|
+
export type TeamBuilderDirect_MatchmakingReadyCheckState = "Error" | "PartyNotReady" | "StrangerNotReady" | "EveryoneReady" | "InProgress" | "Invalid"
|
|
26017
26808
|
|
|
26018
26809
|
export interface TeamBuilderDirect_MatchmakingSearchErrorResource {
|
|
26019
26810
|
/** @format int32 */
|
|
@@ -26042,7 +26833,7 @@ export interface TeamBuilderDirect_MatchmakingSearchResource {
|
|
|
26042
26833
|
errors: TeamBuilderDirect_MatchmakingSearchErrorResource[]
|
|
26043
26834
|
}
|
|
26044
26835
|
|
|
26045
|
-
export type
|
|
26836
|
+
export type TeamBuilderDirect_MatchmakingSearchState = "ServiceShutdown" | "ServiceError" | "Error" | "Found" | "Searching" | "Canceled" | "AbandonedLowPriorityQueue" | "Invalid"
|
|
26046
26837
|
|
|
26047
26838
|
export interface TeamBuilderDirect_MatchmakingState {
|
|
26048
26839
|
/** @format int64 */
|
|
@@ -26068,12 +26859,23 @@ export interface TeamBuilderDirect_MutedPlayerInfo {
|
|
|
26068
26859
|
obfuscatedSummonerId: number
|
|
26069
26860
|
}
|
|
26070
26861
|
|
|
26862
|
+
/** The container for all the operational queue configs */
|
|
26863
|
+
export interface TeamBuilderDirect_OperationalQueueConfig {
|
|
26864
|
+
/** @format int32 */
|
|
26865
|
+
queueId: number
|
|
26866
|
+
isEnabled: boolean
|
|
26867
|
+
mutators: string
|
|
26868
|
+
isVisibleInClient: boolean
|
|
26869
|
+
isSpectatable: boolean
|
|
26870
|
+
"f2pRotations": string
|
|
26871
|
+
}
|
|
26872
|
+
|
|
26071
26873
|
export interface TeamBuilderDirect_PlayerStatus {
|
|
26072
26874
|
currentLobbyStatus?: TeamBuilderDirect_LobbyStatus
|
|
26073
26875
|
lastQueuedLobbyStatus?: TeamBuilderDirect_LobbyStatus
|
|
26074
26876
|
}
|
|
26075
26877
|
|
|
26076
|
-
export type
|
|
26878
|
+
export type TeamBuilderDirect_QuestSkinProductType = "kTieredSkin" | "kQuestSkin"
|
|
26077
26879
|
|
|
26078
26880
|
export interface TeamBuilderDirect_Queue {
|
|
26079
26881
|
/** @format int32 */
|
|
@@ -26117,9 +26919,9 @@ export interface TeamBuilderDirect_Queue {
|
|
|
26117
26919
|
removalFromGameDelayMinutes: number
|
|
26118
26920
|
}
|
|
26119
26921
|
|
|
26120
|
-
export type
|
|
26922
|
+
export type TeamBuilderDirect_QueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
26121
26923
|
|
|
26122
|
-
export type
|
|
26924
|
+
export type TeamBuilderDirect_QueueGameCategory = "Alpha" | "VersusAi" | "PvP" | "Custom" | "None"
|
|
26123
26925
|
|
|
26124
26926
|
export interface TeamBuilderDirect_QueueGameTypeConfig {
|
|
26125
26927
|
/** @format int64 */
|
|
@@ -26293,6 +27095,7 @@ export interface TeamBuilderDirect_TbdGameDto {
|
|
|
26293
27095
|
matchmakingState?: TeamBuilderDirect_MatchmakingState
|
|
26294
27096
|
afkCheckState?: TeamBuilderDirect_AfkCheckState
|
|
26295
27097
|
championSelectState?: TeamBuilderDirect_ChampionSelectState
|
|
27098
|
+
requestGuid: string
|
|
26296
27099
|
}
|
|
26297
27100
|
|
|
26298
27101
|
export interface TeamBuilderDirect_TeamBoost {
|
|
@@ -26341,16 +27144,19 @@ export interface TeamBuilderDirect_TeambuilderLeagueEdgeResponse {
|
|
|
26341
27144
|
export interface TeambuilderEdge_AcceptPickOrderSwapV1 {
|
|
26342
27145
|
/** @format int32 */
|
|
26343
27146
|
swapId: number
|
|
27147
|
+
requestGuid: string
|
|
26344
27148
|
}
|
|
26345
27149
|
|
|
26346
27150
|
export interface TeambuilderEdge_AcceptPositionSwapV1 {
|
|
26347
27151
|
/** @format int32 */
|
|
26348
27152
|
swapId: number
|
|
27153
|
+
requestGuid: string
|
|
26349
27154
|
}
|
|
26350
27155
|
|
|
26351
27156
|
export interface TeambuilderEdge_AcceptTradeV1 {
|
|
26352
27157
|
/** @format int32 */
|
|
26353
27158
|
tradeId: number
|
|
27159
|
+
requestGuid: string
|
|
26354
27160
|
}
|
|
26355
27161
|
|
|
26356
27162
|
export interface TeambuilderEdge_ActionV1 {
|
|
@@ -26444,6 +27250,7 @@ export interface TeambuilderEdge_ChampionBenchStateV1 {
|
|
|
26444
27250
|
export interface TeambuilderEdge_ChampionBenchSwapV1 {
|
|
26445
27251
|
/** @format int32 */
|
|
26446
27252
|
championId: number
|
|
27253
|
+
requestGuid: string
|
|
26447
27254
|
}
|
|
26448
27255
|
|
|
26449
27256
|
export interface TeambuilderEdge_ChampionSelectStateV1 {
|
|
@@ -26482,16 +27289,19 @@ export interface TeambuilderEdge_ChampionSelectStateV1 {
|
|
|
26482
27289
|
export interface TeambuilderEdge_DeclinePickOrderSwapV1 {
|
|
26483
27290
|
/** @format int32 */
|
|
26484
27291
|
swapId: number
|
|
27292
|
+
requestGuid: string
|
|
26485
27293
|
}
|
|
26486
27294
|
|
|
26487
27295
|
export interface TeambuilderEdge_DeclinePositionSwapV1 {
|
|
26488
27296
|
/** @format int32 */
|
|
26489
27297
|
swapId: number
|
|
27298
|
+
requestGuid: string
|
|
26490
27299
|
}
|
|
26491
27300
|
|
|
26492
27301
|
export interface TeambuilderEdge_DeclineTradeV1 {
|
|
26493
27302
|
/** @format int32 */
|
|
26494
27303
|
tradeId: number
|
|
27304
|
+
requestGuid: string
|
|
26495
27305
|
}
|
|
26496
27306
|
|
|
26497
27307
|
export interface TeambuilderEdge_GameloopPlayerInfoV2 {
|
|
@@ -26504,6 +27314,7 @@ export interface TeambuilderEdge_IndicateAfkReadinessV2 {
|
|
|
26504
27314
|
initialSpellIds?: number[]
|
|
26505
27315
|
lastSelectedSkinIdByChampionId?: Record<string, number>
|
|
26506
27316
|
simplifiedInventoryJwt?: string
|
|
27317
|
+
requestGuid: string
|
|
26507
27318
|
}
|
|
26508
27319
|
|
|
26509
27320
|
export interface TeambuilderEdge_InventoryDraftV1 {
|
|
@@ -26559,6 +27370,7 @@ export interface TeambuilderEdge_PickOrderTradeV1 {
|
|
|
26559
27370
|
export interface TeambuilderEdge_PickSkinV2 {
|
|
26560
27371
|
/** @format int32 */
|
|
26561
27372
|
skinId: number
|
|
27373
|
+
requestGuid: string
|
|
26562
27374
|
}
|
|
26563
27375
|
|
|
26564
27376
|
export interface TeambuilderEdge_PickSpellsV1 {
|
|
@@ -26566,6 +27378,7 @@ export interface TeambuilderEdge_PickSpellsV1 {
|
|
|
26566
27378
|
"spell1Id": number
|
|
26567
27379
|
/** @format int32 */
|
|
26568
27380
|
"spell2Id": number
|
|
27381
|
+
requestGuid: string
|
|
26569
27382
|
}
|
|
26570
27383
|
|
|
26571
27384
|
export interface TeambuilderEdge_PositionTradeV1 {
|
|
@@ -26588,9 +27401,9 @@ export interface TeambuilderEdge_RerollDataBagForClientV1 {
|
|
|
26588
27401
|
/** @format int32 */
|
|
26589
27402
|
totalPoints: number
|
|
26590
27403
|
/** @format int32 */
|
|
26591
|
-
pointCostOfReroll: number
|
|
26592
|
-
/** @format int32 */
|
|
26593
27404
|
maximumRerolls: number
|
|
27405
|
+
/** @format int32 */
|
|
27406
|
+
pointCostOfReroll: number
|
|
26594
27407
|
}
|
|
26595
27408
|
|
|
26596
27409
|
export interface TeambuilderEdge_RerollStateV1 {
|
|
@@ -26602,6 +27415,7 @@ export interface TeambuilderEdge_RerollStateV1 {
|
|
|
26602
27415
|
export interface TeambuilderEdge_SignalChampionPickIntentV1 {
|
|
26603
27416
|
/** @format int32 */
|
|
26604
27417
|
championId: number
|
|
27418
|
+
requestGuid: string
|
|
26605
27419
|
}
|
|
26606
27420
|
|
|
26607
27421
|
export interface TeambuilderEdge_SimplifiedInventoryWrapperV1 {
|
|
@@ -26620,6 +27434,7 @@ export interface TeambuilderEdge_TbdGameDtoV1 {
|
|
|
26620
27434
|
matchmakingState?: TeambuilderEdge_MatchmakingStateV1
|
|
26621
27435
|
afkCheckState?: TeambuilderEdge_AfkCheckStateV1
|
|
26622
27436
|
championSelectState?: TeambuilderEdge_ChampionSelectStateV1
|
|
27437
|
+
requestGuid: string
|
|
26623
27438
|
}
|
|
26624
27439
|
|
|
26625
27440
|
export interface TeambuilderEdge_TeambuilderLedgeGameloopResponse {
|
|
@@ -26646,10 +27461,12 @@ export interface TeambuilderEdge_UpdateActionV1 {
|
|
|
26646
27461
|
/** @format int32 */
|
|
26647
27462
|
championId: number
|
|
26648
27463
|
completed: boolean
|
|
27464
|
+
requestGuid: string
|
|
26649
27465
|
}
|
|
26650
27466
|
|
|
26651
27467
|
export interface TeambuilderEdge_WalletWrapperV1 {
|
|
26652
27468
|
signedWalletJwt: string
|
|
27469
|
+
requestGuid: string
|
|
26653
27470
|
}
|
|
26654
27471
|
|
|
26655
27472
|
export interface ThemeVp {
|
|
@@ -26856,6 +27673,12 @@ export interface TutorialMetadata {
|
|
|
26856
27673
|
useChosenChampion: boolean
|
|
26857
27674
|
}
|
|
26858
27675
|
|
|
27676
|
+
export interface VelocityLimiter_VelocityDTO {
|
|
27677
|
+
/** @format int64 */
|
|
27678
|
+
availableTokens: number
|
|
27679
|
+
refill: string
|
|
27680
|
+
}
|
|
27681
|
+
|
|
26859
27682
|
export interface VerboseLootOddsDTO {
|
|
26860
27683
|
recipeName: string
|
|
26861
27684
|
lastUpdated: string
|