@hasagi/types 15.9.1 → 15.12.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 +283 -243
- package/dist/lcu-events.d.ts +41 -86
- package/dist/lcu-types.d.ts +771 -36
- 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
|
|
@@ -2174,6 +2193,7 @@ export interface LolCatalogCatalogPluginItemAssets {
|
|
|
2174
2193
|
iconPath: string
|
|
2175
2194
|
tilePath: string
|
|
2176
2195
|
loadScreenPath: string
|
|
2196
|
+
previewVideoUrl: string
|
|
2177
2197
|
emblems: LolCatalogChampionSkinEmblem[]
|
|
2178
2198
|
colors: string[]
|
|
2179
2199
|
}
|
|
@@ -2248,6 +2268,7 @@ export interface LolCatalogGameDataChampionSkin {
|
|
|
2248
2268
|
tilePath: string
|
|
2249
2269
|
loadScreenPath: string
|
|
2250
2270
|
rarity: string
|
|
2271
|
+
previewVideoUrl: string
|
|
2251
2272
|
chromaPath: string
|
|
2252
2273
|
questSkinInfo?: LolCatalogSkinLineInfo
|
|
2253
2274
|
colors: string[]
|
|
@@ -4272,6 +4293,7 @@ export interface LolChatQueue {
|
|
|
4272
4293
|
id: number
|
|
4273
4294
|
type: string
|
|
4274
4295
|
gameMode: string
|
|
4296
|
+
isCustom: boolean
|
|
4275
4297
|
gameTypeConfig: LolChatQueueGameTypeConfig
|
|
4276
4298
|
}
|
|
4277
4299
|
|
|
@@ -7472,6 +7494,7 @@ export interface LolEventHubCatalogPluginItemAssets {
|
|
|
7472
7494
|
splashPath: string
|
|
7473
7495
|
iconPath: string
|
|
7474
7496
|
tilePath: string
|
|
7497
|
+
previewVideoUrl: string
|
|
7475
7498
|
emblems: LolEventHubChampionSkinEmblem[]
|
|
7476
7499
|
colors: string[]
|
|
7477
7500
|
}
|
|
@@ -7633,6 +7656,8 @@ export interface LolEventHubEventDetailsUIData {
|
|
|
7633
7656
|
helpModalImagePath: string
|
|
7634
7657
|
inducteeName: string
|
|
7635
7658
|
promotionBannerImage: string
|
|
7659
|
+
objectiveBannerImage: string
|
|
7660
|
+
memoryBookBackgroundImage: string
|
|
7636
7661
|
}
|
|
7637
7662
|
|
|
7638
7663
|
export interface LolEventHubEventHubError {
|
|
@@ -7856,6 +7881,7 @@ export interface LolEventHubHallOfLegends {
|
|
|
7856
7881
|
helpModalImage: string
|
|
7857
7882
|
inducteeName: string
|
|
7858
7883
|
promotionBannerImage: string
|
|
7884
|
+
objectiveBannerImage: string
|
|
7859
7885
|
eventPassBundlesCatalogEntry: LolEventHubCatalogEntry[]
|
|
7860
7886
|
progressionPurchaseCatalogEntry: LolEventHubCatalogEntry
|
|
7861
7887
|
skinIds: string[]
|
|
@@ -7868,6 +7894,7 @@ export interface LolEventHubHallOfLegends {
|
|
|
7868
7894
|
upsellBackgroundImageUrl: string
|
|
7869
7895
|
upsellTooltipBackgroundImageUrl: string
|
|
7870
7896
|
upsellIconUrl: string
|
|
7897
|
+
memoryBookBackgroundImage: string
|
|
7871
7898
|
}
|
|
7872
7899
|
|
|
7873
7900
|
export interface LolEventHubHallOfLegendsClientConfig {
|
|
@@ -8210,6 +8237,7 @@ export interface LolEventHubNextRewardUIData {
|
|
|
8210
8237
|
export interface LolEventHubObjectivesBanner {
|
|
8211
8238
|
eventName: string
|
|
8212
8239
|
promotionBannerImage: string
|
|
8240
|
+
objectiveBannerImage: string
|
|
8213
8241
|
isPassPurchased: boolean
|
|
8214
8242
|
currentChapter: LolEventHubChapter
|
|
8215
8243
|
trackProgressNextReward: LolEventHubTrackProgressNextReward
|
|
@@ -8658,6 +8686,7 @@ export interface LolEventHubSeasonPass {
|
|
|
8658
8686
|
localizedUpsellButtonText: string
|
|
8659
8687
|
upsellBackgroundImageUrl: string
|
|
8660
8688
|
upsellTooltipBackgroundImageUrl: string
|
|
8689
|
+
objectiveBannerImage: string
|
|
8661
8690
|
chapters: LolEventHubChapter[]
|
|
8662
8691
|
}
|
|
8663
8692
|
|
|
@@ -9110,6 +9139,18 @@ export interface LolGameClientChatMutedPlayerInfo {
|
|
|
9110
9139
|
obfuscatedSummonerId: number
|
|
9111
9140
|
}
|
|
9112
9141
|
|
|
9142
|
+
export interface LolGameDataInventoryLolInventoryType {
|
|
9143
|
+
inventoryTypeId: string
|
|
9144
|
+
capInventoryTypeId: string
|
|
9145
|
+
gipAware: boolean
|
|
9146
|
+
gipJsonPath: string
|
|
9147
|
+
gipIsMap: boolean
|
|
9148
|
+
gipItemId: string
|
|
9149
|
+
gipName: string
|
|
9150
|
+
gipDescription: string
|
|
9151
|
+
gipImage: string
|
|
9152
|
+
}
|
|
9153
|
+
|
|
9113
9154
|
export interface LolGameQueuesLoginDataPacket {
|
|
9114
9155
|
gameTypeConfigs: LolGameQueuesQueueGameTypeConfig[]
|
|
9115
9156
|
}
|
|
@@ -9488,6 +9529,7 @@ export interface LolGameflowQueue {
|
|
|
9488
9529
|
removalFromGameAllowed: boolean
|
|
9489
9530
|
/** @format int32 */
|
|
9490
9531
|
removalFromGameDelayMinutes: number
|
|
9532
|
+
isCustom: boolean
|
|
9491
9533
|
}
|
|
9492
9534
|
|
|
9493
9535
|
export type LolGameflowQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -10931,9 +10973,10 @@ export interface LolLobbyEligibilityRestriction {
|
|
|
10931
10973
|
expiredTimestamp: number
|
|
10932
10974
|
summonerIds: number[]
|
|
10933
10975
|
summonerIdsString: string
|
|
10976
|
+
puuids: string[]
|
|
10934
10977
|
}
|
|
10935
10978
|
|
|
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" | "
|
|
10979
|
+
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
10980
|
|
|
10938
10981
|
export interface LolLobbyEntitlementsTokenResource {
|
|
10939
10982
|
accessToken: string
|
|
@@ -11263,6 +11306,12 @@ export interface LolLobbyLobbyGameConfigDto {
|
|
|
11263
11306
|
maxLobbySize: number
|
|
11264
11307
|
/** @format int32 */
|
|
11265
11308
|
maxHumanPlayers: number
|
|
11309
|
+
/** @format int32 */
|
|
11310
|
+
numberOfTeamsInLobby: number
|
|
11311
|
+
/** @format int32 */
|
|
11312
|
+
maxLobbySpectatorCount: number
|
|
11313
|
+
/** @format int32 */
|
|
11314
|
+
numPlayersPerTeam: number
|
|
11266
11315
|
allowablePremadeSizes: number[]
|
|
11267
11316
|
premadeSizeAllowed: boolean
|
|
11268
11317
|
isTeamBuilderManaged: boolean
|
|
@@ -13162,13 +13211,7 @@ export interface LolLoyaltyRmsEntitlementPayload {
|
|
|
13162
13211
|
resourceOperation: string
|
|
13163
13212
|
}
|
|
13164
13213
|
|
|
13165
|
-
export
|
|
13166
|
-
data: unknown
|
|
13167
|
-
/** @format int32 */
|
|
13168
|
-
schemaVersion: number
|
|
13169
|
-
}
|
|
13170
|
-
|
|
13171
|
-
export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "SUPPORTED_HARDWARE" | "HARDWARE_UPGRADE" | "NONE"
|
|
13214
|
+
export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "HARDWARE_UPGRADE" | "NONE"
|
|
13172
13215
|
|
|
13173
13216
|
export interface LolMapsGameModeSpellList {
|
|
13174
13217
|
spells: number[]
|
|
@@ -14298,7 +14341,7 @@ export interface LolMissionsCapMissionsMarkAsViewedPostBodyMission {
|
|
|
14298
14341
|
export interface LolMissionsCapMissionsMeResponse {
|
|
14299
14342
|
productId: string
|
|
14300
14343
|
ownerId: string
|
|
14301
|
-
series:
|
|
14344
|
+
series: LolMissionsCAPMissionSeries[]
|
|
14302
14345
|
}
|
|
14303
14346
|
|
|
14304
14347
|
export interface LolMissionsCollectionsChampion {
|
|
@@ -14572,6 +14615,7 @@ export interface LolNachoCatalogItemPurchaseRequest {
|
|
|
14572
14615
|
/** @format uint32 */
|
|
14573
14616
|
quantity: number
|
|
14574
14617
|
paymentOptions: string[]
|
|
14618
|
+
customInventoryLocation: string
|
|
14575
14619
|
}
|
|
14576
14620
|
|
|
14577
14621
|
export interface LolNachoDropsOddsTreeNodeDTO {
|
|
@@ -14652,6 +14696,11 @@ export interface LolNachoGameDataPityCounter {
|
|
|
14652
14696
|
name: string
|
|
14653
14697
|
}
|
|
14654
14698
|
|
|
14699
|
+
export interface LolNachoGipItem {
|
|
14700
|
+
/** @format uint32 */
|
|
14701
|
+
gipItemId: number
|
|
14702
|
+
}
|
|
14703
|
+
|
|
14655
14704
|
export interface LolNachoNachoBannersResponse {
|
|
14656
14705
|
id: string
|
|
14657
14706
|
bannerBackgroundTexture: string
|
|
@@ -15278,7 +15327,7 @@ export interface LolObjectivesCapMissionsMarkAsViewedPostBodyMission {
|
|
|
15278
15327
|
export interface LolObjectivesCapMissionsMeResponse {
|
|
15279
15328
|
productId: string
|
|
15280
15329
|
ownerId: string
|
|
15281
|
-
series:
|
|
15330
|
+
series: LolObjectivesCAPMissionSeries[]
|
|
15282
15331
|
}
|
|
15283
15332
|
|
|
15284
15333
|
export interface LolObjectivesCatalogEntry {
|
|
@@ -15331,7 +15380,7 @@ export interface LolObjectivesCollectionsWardSkin {
|
|
|
15331
15380
|
ownership: LolObjectivesCollectionsOwnership
|
|
15332
15381
|
}
|
|
15333
15382
|
|
|
15334
|
-
export type LolObjectivesEventHubType = "
|
|
15383
|
+
export type LolObjectivesEventHubType = "NON_PASS" | "SEASON_PASS" | "HALL_OF_LEGENDS" | "EVENT_SHOP"
|
|
15335
15384
|
|
|
15336
15385
|
export interface LolObjectivesEventInfoUIData {
|
|
15337
15386
|
eventId: string
|
|
@@ -15429,6 +15478,8 @@ export interface LolObjectivesNonPooledObjectives {
|
|
|
15429
15478
|
localizedDescription: string
|
|
15430
15479
|
}
|
|
15431
15480
|
|
|
15481
|
+
export type LolObjectivesObjectiveCategoryFilter = "kNPE" | "kNone"
|
|
15482
|
+
|
|
15432
15483
|
export type LolObjectivesObjectiveCategoryType = "kTFTPassData" | "kEventHubConfiguration" | "kNonPass"
|
|
15433
15484
|
|
|
15434
15485
|
export interface LolObjectivesObjectivesContainer {
|
|
@@ -15696,6 +15747,7 @@ export interface LolObjectivesUIObjectivesCategory {
|
|
|
15696
15747
|
categoryType: LolObjectivesObjectiveCategoryType
|
|
15697
15748
|
tftPassType: LolObjectivesTftPassType
|
|
15698
15749
|
lolEventHubType: LolObjectivesEventHubType
|
|
15750
|
+
objectiveCategoryFilter: LolObjectivesObjectiveCategoryFilter
|
|
15699
15751
|
}
|
|
15700
15752
|
|
|
15701
15753
|
export interface LolObjectivesUIObjectivesGroup {
|
|
@@ -15750,6 +15802,17 @@ export interface LolPatchComponentStateProgress {
|
|
|
15750
15802
|
|
|
15751
15803
|
export type LolPatchComponentStateWorkType = "Disk" | "Network" | "Scanning"
|
|
15752
15804
|
|
|
15805
|
+
export type LolPatchConfigReadiness = "Disabled" | "Ready" | "NotReady"
|
|
15806
|
+
|
|
15807
|
+
export interface LolPatchConfigStatus {
|
|
15808
|
+
readiness: LolPatchConfigReadiness
|
|
15809
|
+
}
|
|
15810
|
+
|
|
15811
|
+
export interface LolPatchCurrentUpdateStatus {
|
|
15812
|
+
updateAvailable: boolean
|
|
15813
|
+
updateRequired: boolean
|
|
15814
|
+
}
|
|
15815
|
+
|
|
15753
15816
|
export interface LolPatchEntitlementsTokenResource {
|
|
15754
15817
|
accessToken: string
|
|
15755
15818
|
token: string
|
|
@@ -15826,6 +15889,13 @@ export interface LolPatchPatcherSettings {
|
|
|
15826
15889
|
patchsieve_url: string
|
|
15827
15890
|
}
|
|
15828
15891
|
|
|
15892
|
+
export interface LolPatchProductIntegrationAppStatus {
|
|
15893
|
+
patchlineId: string
|
|
15894
|
+
productId: string
|
|
15895
|
+
updateAvailable: boolean
|
|
15896
|
+
updateRequired: boolean
|
|
15897
|
+
}
|
|
15898
|
+
|
|
15829
15899
|
export interface LolPatchProductState {
|
|
15830
15900
|
id: string
|
|
15831
15901
|
action: LolPatchComponentStateAction
|
|
@@ -16200,6 +16270,7 @@ export interface LolPerksQueue {
|
|
|
16200
16270
|
/** @format int32 */
|
|
16201
16271
|
mapId: number
|
|
16202
16272
|
isTeamBuilderManaged: boolean
|
|
16273
|
+
isCustom: boolean
|
|
16203
16274
|
}
|
|
16204
16275
|
|
|
16205
16276
|
export interface LolPerksQuickPlayPresetSlotDto {
|
|
@@ -17340,6 +17411,7 @@ export interface LolPurchaseWidgetCatalogPluginItemAssets {
|
|
|
17340
17411
|
splashPath: string
|
|
17341
17412
|
iconPath: string
|
|
17342
17413
|
tilePath: string
|
|
17414
|
+
previewVideoUrl: string
|
|
17343
17415
|
emblems: LolPurchaseWidgetChampionSkinEmblem[]
|
|
17344
17416
|
colors: string[]
|
|
17345
17417
|
}
|
|
@@ -19896,6 +19968,31 @@ export interface LolSettingsVNGStatusResponse {
|
|
|
19896
19968
|
action_url_raw: string
|
|
19897
19969
|
}
|
|
19898
19970
|
|
|
19971
|
+
export interface LolShoppefrontPurchaseRequest {
|
|
19972
|
+
storeId: string
|
|
19973
|
+
catalogEntryId: string
|
|
19974
|
+
/** @format uint32 */
|
|
19975
|
+
quantity: number
|
|
19976
|
+
paymentOptions: string[]
|
|
19977
|
+
}
|
|
19978
|
+
|
|
19979
|
+
export interface LolShoppefrontPurchaseResponse {
|
|
19980
|
+
id: string
|
|
19981
|
+
status: LolShoppefrontPurchaseResponseStatus
|
|
19982
|
+
}
|
|
19983
|
+
|
|
19984
|
+
export type LolShoppefrontPurchaseResponseStatus = "Failure" | "Success" | "Pending" | "None"
|
|
19985
|
+
|
|
19986
|
+
export interface LolShutdownAuthorization {
|
|
19987
|
+
currentPlatformId: string
|
|
19988
|
+
}
|
|
19989
|
+
|
|
19990
|
+
export interface LolShutdownSessionRMSNotification {
|
|
19991
|
+
product: string
|
|
19992
|
+
region: string
|
|
19993
|
+
serviceState: string
|
|
19994
|
+
}
|
|
19995
|
+
|
|
19899
19996
|
export interface LolShutdownShutdownNotification {
|
|
19900
19997
|
reason: LolShutdownShutdownReason
|
|
19901
19998
|
/** @format float */
|
|
@@ -21258,7 +21355,7 @@ export interface LolTftEventCapMissionsMarkAsViewedPostBodyMission {
|
|
|
21258
21355
|
export interface LolTftEventCapMissionsMeResponse {
|
|
21259
21356
|
productId: string
|
|
21260
21357
|
ownerId: string
|
|
21261
|
-
series:
|
|
21358
|
+
series: LolTftEventCAPMissionSeries[]
|
|
21262
21359
|
}
|
|
21263
21360
|
|
|
21264
21361
|
export interface LolTftEventCollectionsChampion {
|
|
@@ -21380,10 +21477,7 @@ export interface LolTftEventLolTftEvents {
|
|
|
21380
21477
|
|
|
21381
21478
|
export interface LolTftEventLolTftHomeHub {
|
|
21382
21479
|
enabled: boolean
|
|
21383
|
-
storePromoOfferIds: string[]
|
|
21384
21480
|
tacticianPromoOfferIds: string[]
|
|
21385
|
-
battlePassOfferIds: string[]
|
|
21386
|
-
fallbackStorePromoOfferIds: string[]
|
|
21387
21481
|
primeGamingPromoOffer?: LolTftEventLolTftPrimeGaming
|
|
21388
21482
|
overrideUrl: string
|
|
21389
21483
|
headerButtonsOverrideUrl: string
|
|
@@ -21590,6 +21684,7 @@ export interface LolTftEventTFTRotatingShopPromo {
|
|
|
21590
21684
|
id: string
|
|
21591
21685
|
bundleId: string
|
|
21592
21686
|
storeType: string
|
|
21687
|
+
isDeepLink: boolean
|
|
21593
21688
|
}
|
|
21594
21689
|
|
|
21595
21690
|
export interface LolTftEventTFTRotatingShopPromos {
|
|
@@ -21670,10 +21765,7 @@ export interface LolTftLolTftEvents {
|
|
|
21670
21765
|
|
|
21671
21766
|
export interface LolTftLolTftHomeHub {
|
|
21672
21767
|
enabled: boolean
|
|
21673
|
-
storePromoOfferIds: string[]
|
|
21674
21768
|
tacticianPromoOfferIds: string[]
|
|
21675
|
-
battlePassOfferIds: string[]
|
|
21676
|
-
fallbackStorePromoOfferIds: string[]
|
|
21677
21769
|
primeGamingPromoOffer?: LolTftLolTftPrimeGaming
|
|
21678
21770
|
overrideUrl: string
|
|
21679
21771
|
headerButtonsOverrideUrl: string
|
|
@@ -21719,6 +21811,47 @@ export interface LolTftPassAccessTokenResource {
|
|
|
21719
21811
|
expiry: number
|
|
21720
21812
|
}
|
|
21721
21813
|
|
|
21814
|
+
export interface LolTftPassActiveEventUIData {
|
|
21815
|
+
eventId: string
|
|
21816
|
+
eventInfo: LolTftPassEventInfoUIData
|
|
21817
|
+
}
|
|
21818
|
+
|
|
21819
|
+
export interface LolTftPassBundleOfferUIData {
|
|
21820
|
+
details: LolTftPassBundledItemUIData
|
|
21821
|
+
/** @format int64 */
|
|
21822
|
+
initialPrice: number
|
|
21823
|
+
/** @format int64 */
|
|
21824
|
+
finalPrice: number
|
|
21825
|
+
/** @format int64 */
|
|
21826
|
+
futureBalance: number
|
|
21827
|
+
isPurchasable: boolean
|
|
21828
|
+
/** @format double */
|
|
21829
|
+
discountPercentage: number
|
|
21830
|
+
bundledItems: LolTftPassBundledItemUIData[]
|
|
21831
|
+
}
|
|
21832
|
+
|
|
21833
|
+
export interface LolTftPassBundledItemUIData {
|
|
21834
|
+
name: string
|
|
21835
|
+
/** @format int32 */
|
|
21836
|
+
itemId: number
|
|
21837
|
+
description: string
|
|
21838
|
+
inventoryType: string
|
|
21839
|
+
subInventoryType: string
|
|
21840
|
+
splashImage: string
|
|
21841
|
+
owned: boolean
|
|
21842
|
+
/** @format uint32 */
|
|
21843
|
+
quantity: number
|
|
21844
|
+
decoratorBadgeURL: string
|
|
21845
|
+
}
|
|
21846
|
+
|
|
21847
|
+
export interface LolTftPassCatalogEntry {
|
|
21848
|
+
contentId: string
|
|
21849
|
+
/** @format int32 */
|
|
21850
|
+
itemId: number
|
|
21851
|
+
offerId: string
|
|
21852
|
+
typeId: string
|
|
21853
|
+
}
|
|
21854
|
+
|
|
21722
21855
|
export interface LolTftPassCatalogItem {
|
|
21723
21856
|
/** @format int32 */
|
|
21724
21857
|
itemId: number
|
|
@@ -21726,12 +21859,44 @@ export interface LolTftPassCatalogItem {
|
|
|
21726
21859
|
itemInstanceId?: string
|
|
21727
21860
|
}
|
|
21728
21861
|
|
|
21862
|
+
export type LolTftPassCelebrationType = "FULLSCREEN" | "TOAST" | "NONE"
|
|
21863
|
+
|
|
21864
|
+
export interface LolTftPassChapter {
|
|
21865
|
+
localizedTitle: string
|
|
21866
|
+
localizedDescription: string
|
|
21867
|
+
cardImage: string
|
|
21868
|
+
backgroundImage: string
|
|
21869
|
+
backgroundVideo: string
|
|
21870
|
+
foregroundImage: string
|
|
21871
|
+
objectiveBannerImage: string
|
|
21872
|
+
/** @format uint16 */
|
|
21873
|
+
chapterStart: number
|
|
21874
|
+
/** @format uint16 */
|
|
21875
|
+
chapterEnd: number
|
|
21876
|
+
/** @format uint16 */
|
|
21877
|
+
chapterNumber: number
|
|
21878
|
+
/** @format uint16 */
|
|
21879
|
+
levelFocus: number
|
|
21880
|
+
}
|
|
21881
|
+
|
|
21882
|
+
export interface LolTftPassChaptersUIData {
|
|
21883
|
+
/** @format uint16 */
|
|
21884
|
+
currentChapter: number
|
|
21885
|
+
chapters: LolTftPassChapter[]
|
|
21886
|
+
}
|
|
21887
|
+
|
|
21729
21888
|
export interface LolTftPassClientCacheClearMessageDTO {
|
|
21730
21889
|
regions: string[]
|
|
21731
21890
|
clearAll: boolean
|
|
21732
21891
|
inventoryTypes: string[]
|
|
21733
21892
|
}
|
|
21734
21893
|
|
|
21894
|
+
export interface LolTftPassContentDrop {
|
|
21895
|
+
patch: string
|
|
21896
|
+
activationDate: string
|
|
21897
|
+
offers: LolTftPassOffer[]
|
|
21898
|
+
}
|
|
21899
|
+
|
|
21735
21900
|
export interface LolTftPassCounter {
|
|
21736
21901
|
id: string
|
|
21737
21902
|
name: string
|
|
@@ -21771,6 +21936,118 @@ export interface LolTftPassEntityInstance {
|
|
|
21771
21936
|
milestones: LolTftPassMilestoneInstance[]
|
|
21772
21937
|
}
|
|
21773
21938
|
|
|
21939
|
+
export interface LolTftPassEventBackgroundUIData {
|
|
21940
|
+
backgroundImagePath: string
|
|
21941
|
+
}
|
|
21942
|
+
|
|
21943
|
+
export interface LolTftPassEventDetailsUIData {
|
|
21944
|
+
eventIconPath: string
|
|
21945
|
+
eventName: string
|
|
21946
|
+
headerTitleImagePath: string
|
|
21947
|
+
progressEndDate: string
|
|
21948
|
+
shopEndDate: string
|
|
21949
|
+
eventStartDate: string
|
|
21950
|
+
helpModalImagePath: string
|
|
21951
|
+
inducteeName: string
|
|
21952
|
+
promotionBannerImage: string
|
|
21953
|
+
objectiveBannerImage: string
|
|
21954
|
+
memoryBookBackgroundImage: string
|
|
21955
|
+
}
|
|
21956
|
+
|
|
21957
|
+
export type LolTftPassEventHubType = "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
21958
|
+
|
|
21959
|
+
export interface LolTftPassEventInfoUIData {
|
|
21960
|
+
eventId: string
|
|
21961
|
+
eventName: string
|
|
21962
|
+
eventType: string
|
|
21963
|
+
eventIcon: string
|
|
21964
|
+
navBarIcon: string
|
|
21965
|
+
eventTokenImage: string
|
|
21966
|
+
startDate: string
|
|
21967
|
+
progressEndDate: string
|
|
21968
|
+
endDate: string
|
|
21969
|
+
/** @format int32 */
|
|
21970
|
+
currentTokenBalance: number
|
|
21971
|
+
/** @format int32 */
|
|
21972
|
+
lockedTokenCount: number
|
|
21973
|
+
/** @format int32 */
|
|
21974
|
+
unclaimedRewardCount: number
|
|
21975
|
+
/** @format int64 */
|
|
21976
|
+
timeOfLastUnclaimedReward: number
|
|
21977
|
+
isPassPurchased: boolean
|
|
21978
|
+
eventPassBundles: LolTftPassCatalogEntry[]
|
|
21979
|
+
tokenBundles: LolTftPassCatalogEntry[]
|
|
21980
|
+
}
|
|
21981
|
+
|
|
21982
|
+
export interface LolTftPassEventPassInfo {
|
|
21983
|
+
eventId: string
|
|
21984
|
+
isPassPurchased: boolean
|
|
21985
|
+
}
|
|
21986
|
+
|
|
21987
|
+
export interface LolTftPassEventShop {
|
|
21988
|
+
eventId: string
|
|
21989
|
+
eventHubType: string
|
|
21990
|
+
localizedName: string
|
|
21991
|
+
backgroundImage: string
|
|
21992
|
+
navbarIconImage: string
|
|
21993
|
+
headerIconImage: string
|
|
21994
|
+
startDate: string
|
|
21995
|
+
progressEndDate: string
|
|
21996
|
+
endDate: string
|
|
21997
|
+
localizedUpsellTitle: string
|
|
21998
|
+
localizedUpsellTooltipTitle: string
|
|
21999
|
+
localizedUpsellTooltipDescription: string
|
|
22000
|
+
localizedUpsellButtonText: string
|
|
22001
|
+
upsellBackgroundImageUrl: string
|
|
22002
|
+
upsellTooltipBackgroundImageUrl: string
|
|
22003
|
+
helpModalImage: string
|
|
22004
|
+
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22005
|
+
tokenShop: LolTftPassTokenShop
|
|
22006
|
+
rewardTrack: LolTftPassRewardTrack
|
|
22007
|
+
}
|
|
22008
|
+
|
|
22009
|
+
export interface LolTftPassFSC {
|
|
22010
|
+
id: string
|
|
22011
|
+
canvas: LolTftPassFSCCanvas
|
|
22012
|
+
media: LolTftPassFSCMedia
|
|
22013
|
+
rewards: LolTftPassFSCRewards[]
|
|
22014
|
+
}
|
|
22015
|
+
|
|
22016
|
+
export interface LolTftPassFSCCanvas {
|
|
22017
|
+
title: string
|
|
22018
|
+
subtitle: string
|
|
22019
|
+
canvasBackgroundImage: string
|
|
22020
|
+
canvasSize: LolTftPassFSCCanvasSize
|
|
22021
|
+
canvasDesign: string
|
|
22022
|
+
}
|
|
22023
|
+
|
|
22024
|
+
export type LolTftPassFSCCanvasSize = "FULL" | "LARGE" | "MEDIUM" | "SMALL"
|
|
22025
|
+
|
|
22026
|
+
export interface LolTftPassFSCMedia {
|
|
22027
|
+
introAnimation: string
|
|
22028
|
+
introAnimationAudio: string
|
|
22029
|
+
introLowSpecImage: string
|
|
22030
|
+
loopAnimation: string
|
|
22031
|
+
loopAnimationAudio: string
|
|
22032
|
+
transitionAnimation: string
|
|
22033
|
+
transitionAnimationAudio: string
|
|
22034
|
+
}
|
|
22035
|
+
|
|
22036
|
+
export interface LolTftPassFSCRewards {
|
|
22037
|
+
/** @format int32 */
|
|
22038
|
+
itemId: number
|
|
22039
|
+
imageOverlay: string
|
|
22040
|
+
title: string
|
|
22041
|
+
subtitle: string
|
|
22042
|
+
}
|
|
22043
|
+
|
|
22044
|
+
export type LolTftPassGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
22045
|
+
|
|
22046
|
+
export interface LolTftPassGrantorDescription {
|
|
22047
|
+
appName: string
|
|
22048
|
+
entityId: string
|
|
22049
|
+
}
|
|
22050
|
+
|
|
21774
22051
|
export interface LolTftPassGroup {
|
|
21775
22052
|
id: string
|
|
21776
22053
|
productId: string
|
|
@@ -21780,6 +22057,35 @@ export interface LolTftPassGroup {
|
|
|
21780
22057
|
milestones: LolTftPassMilestone[]
|
|
21781
22058
|
}
|
|
21782
22059
|
|
|
22060
|
+
export interface LolTftPassHallOfLegends {
|
|
22061
|
+
eventId: string
|
|
22062
|
+
eventHubType: string
|
|
22063
|
+
localizedName: string
|
|
22064
|
+
navbarIconImage: string
|
|
22065
|
+
headerIconImage: string
|
|
22066
|
+
headerTitleImage: string
|
|
22067
|
+
startDate: string
|
|
22068
|
+
progressEndDate: string
|
|
22069
|
+
endDate: string
|
|
22070
|
+
helpModalImage: string
|
|
22071
|
+
inducteeName: string
|
|
22072
|
+
promotionBannerImage: string
|
|
22073
|
+
objectiveBannerImage: string
|
|
22074
|
+
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22075
|
+
progressionPurchaseCatalogEntry: LolTftPassCatalogEntry
|
|
22076
|
+
skinIds: string[]
|
|
22077
|
+
rewardTrack: LolTftPassRewardTrack
|
|
22078
|
+
narrativeElements: LolTftPassNarrativeElement[]
|
|
22079
|
+
localizedUpsellTitle: string
|
|
22080
|
+
localizedUpsellTooltipTitle: string
|
|
22081
|
+
localizedUpsellTooltipDescription: string
|
|
22082
|
+
localizedUpsellButtonText: string
|
|
22083
|
+
upsellBackgroundImageUrl: string
|
|
22084
|
+
upsellTooltipBackgroundImageUrl: string
|
|
22085
|
+
upsellIconUrl: string
|
|
22086
|
+
memoryBookBackgroundImage: string
|
|
22087
|
+
}
|
|
22088
|
+
|
|
21783
22089
|
export interface LolTftPassInventoryCacheEntry {
|
|
21784
22090
|
signedInventoryJwt: string
|
|
21785
22091
|
/** @format uint64 */
|
|
@@ -21877,12 +22183,31 @@ export interface LolTftPassInventoryResponseDTO {
|
|
|
21877
22183
|
data: LolTftPassInventoryDTO
|
|
21878
22184
|
}
|
|
21879
22185
|
|
|
22186
|
+
export interface LolTftPassItem {
|
|
22187
|
+
itemId: string
|
|
22188
|
+
inventoryType: string
|
|
22189
|
+
/** @format uint32 */
|
|
22190
|
+
price: number
|
|
22191
|
+
/** @format uint32 */
|
|
22192
|
+
quantity: number
|
|
22193
|
+
}
|
|
22194
|
+
|
|
21880
22195
|
export interface LolTftPassItemKey {
|
|
21881
22196
|
inventoryType: string
|
|
21882
22197
|
/** @format int32 */
|
|
21883
22198
|
itemId: number
|
|
21884
22199
|
}
|
|
21885
22200
|
|
|
22201
|
+
export interface LolTftPassItemOrderDTO {
|
|
22202
|
+
inventoryType: string
|
|
22203
|
+
/** @format int32 */
|
|
22204
|
+
itemId: number
|
|
22205
|
+
/** @format uint32 */
|
|
22206
|
+
quantity: number
|
|
22207
|
+
/** @format uint32 */
|
|
22208
|
+
rpCost: number
|
|
22209
|
+
}
|
|
22210
|
+
|
|
21886
22211
|
export type LolTftPassItemOwnershipType = "F2P" | "LOYALTY" | "RENTED" | "OWNED"
|
|
21887
22212
|
|
|
21888
22213
|
export interface LolTftPassLoginSession {
|
|
@@ -21975,8 +22300,59 @@ export interface LolTftPassMilestoneInstance {
|
|
|
21975
22300
|
triggers: LolTftPassTrigger[]
|
|
21976
22301
|
}
|
|
21977
22302
|
|
|
21978
|
-
export interface
|
|
21979
|
-
|
|
22303
|
+
export interface LolTftPassNarrativeElement {
|
|
22304
|
+
localizedNarrativeTitle: string
|
|
22305
|
+
localizedNarrativeDescription: string
|
|
22306
|
+
narrativeBackgroundImage: string
|
|
22307
|
+
/** @format uint16 */
|
|
22308
|
+
narrativeStartingTrackLevel: number
|
|
22309
|
+
narrativeVideo: LolTftPassNarrativeVideo
|
|
22310
|
+
}
|
|
22311
|
+
|
|
22312
|
+
export interface LolTftPassNarrativeVideo {
|
|
22313
|
+
localizedNarrativeVideoUrl: string
|
|
22314
|
+
localizedPlayNarrativeButtonLabel: string
|
|
22315
|
+
localizedVideoTitle: string
|
|
22316
|
+
thumbnailImage: string
|
|
22317
|
+
narrativeVideoIsLockedOnLevel?: boolean
|
|
22318
|
+
localizedNarrativeVideoDescription: string
|
|
22319
|
+
}
|
|
22320
|
+
|
|
22321
|
+
export interface LolTftPassNextRewardUIData {
|
|
22322
|
+
thumbIconPath: string
|
|
22323
|
+
state: LolTftPassRewardTrackItemHeaderType
|
|
22324
|
+
name: string
|
|
22325
|
+
description: string
|
|
22326
|
+
level: string
|
|
22327
|
+
}
|
|
22328
|
+
|
|
22329
|
+
export interface LolTftPassObjectivesBanner {
|
|
22330
|
+
eventName: string
|
|
22331
|
+
promotionBannerImage: string
|
|
22332
|
+
objectiveBannerImage: string
|
|
22333
|
+
isPassPurchased: boolean
|
|
22334
|
+
currentChapter: LolTftPassChapter
|
|
22335
|
+
trackProgressNextReward: LolTftPassTrackProgressNextReward
|
|
22336
|
+
trackProgress: LolTftPassTrackProgressNextReward
|
|
22337
|
+
rewardTrackProgress: LolTftPassRewardTrackProgress
|
|
22338
|
+
}
|
|
22339
|
+
|
|
22340
|
+
export interface LolTftPassOffer {
|
|
22341
|
+
id: string
|
|
22342
|
+
localizedTitle: string
|
|
22343
|
+
localizedDescription: string
|
|
22344
|
+
image: string
|
|
22345
|
+
promotionType: LolTftPassOfferPromotionType
|
|
22346
|
+
offerCategory: LolTftPassOfferCategory
|
|
22347
|
+
items: LolTftPassItem[]
|
|
22348
|
+
}
|
|
22349
|
+
|
|
22350
|
+
export type LolTftPassOfferCategory = "Currencies" | "Tft" | "Loot" | "Borders" | "Skins" | "Chromas" | "Featured"
|
|
22351
|
+
|
|
22352
|
+
export type LolTftPassOfferPromotionType = "kFeaturedHighlighted" | "kFeatured" | "kNone"
|
|
22353
|
+
|
|
22354
|
+
export interface LolTftPassPlayerNotification {
|
|
22355
|
+
critical: boolean
|
|
21980
22356
|
detailKey: string
|
|
21981
22357
|
source: string
|
|
21982
22358
|
state: string
|
|
@@ -21985,6 +22361,39 @@ export interface LolTftPassPlayerNotification {
|
|
|
21985
22361
|
iconUrl: string
|
|
21986
22362
|
}
|
|
21987
22363
|
|
|
22364
|
+
export interface LolTftPassProgressInfoUIData {
|
|
22365
|
+
tokenImage: string
|
|
22366
|
+
passPurchased: boolean
|
|
22367
|
+
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22368
|
+
}
|
|
22369
|
+
|
|
22370
|
+
export interface LolTftPassProgressionPurchaseUIData {
|
|
22371
|
+
offerId: string
|
|
22372
|
+
/** @format int64 */
|
|
22373
|
+
pricePerLevel: number
|
|
22374
|
+
/** @format int64 */
|
|
22375
|
+
rpBalance: number
|
|
22376
|
+
}
|
|
22377
|
+
|
|
22378
|
+
export interface LolTftPassPurchaseOfferRequest {
|
|
22379
|
+
offerId: string
|
|
22380
|
+
/** @format uint32 */
|
|
22381
|
+
purchaseQuantity: number
|
|
22382
|
+
}
|
|
22383
|
+
|
|
22384
|
+
export interface LolTftPassPurchaseOrderResponseDTO {
|
|
22385
|
+
/** @format int64 */
|
|
22386
|
+
rpBalance: number
|
|
22387
|
+
/** @format int64 */
|
|
22388
|
+
ipBalance: number
|
|
22389
|
+
transactions: LolTftPassTransactionResponseDTO[]
|
|
22390
|
+
}
|
|
22391
|
+
|
|
22392
|
+
export interface LolTftPassRMSPayload {
|
|
22393
|
+
productId: string
|
|
22394
|
+
affinities: string[]
|
|
22395
|
+
}
|
|
22396
|
+
|
|
21988
22397
|
export interface LolTftPassRMSRequest {
|
|
21989
22398
|
resource: string
|
|
21990
22399
|
service: string
|
|
@@ -22002,6 +22411,11 @@ export interface LolTftPassRMSRewardsNotificationPayload {
|
|
|
22002
22411
|
status: string
|
|
22003
22412
|
}
|
|
22004
22413
|
|
|
22414
|
+
export interface LolTftPassRegionLocale {
|
|
22415
|
+
region: string
|
|
22416
|
+
locale: string
|
|
22417
|
+
}
|
|
22418
|
+
|
|
22005
22419
|
export interface LolTftPassRepeat {
|
|
22006
22420
|
/** @format int32 */
|
|
22007
22421
|
count: number
|
|
@@ -22024,6 +22438,189 @@ export interface LolTftPassRepeatGroupTrigger {
|
|
|
22024
22438
|
multiplier: number
|
|
22025
22439
|
}
|
|
22026
22440
|
|
|
22441
|
+
export interface LolTftPassRequestDTO_SelectionRequestDTO {
|
|
22442
|
+
data: LolTftPassSelectionRequestDTO
|
|
22443
|
+
metadata: LolTftPassRequestMetadataDTO
|
|
22444
|
+
}
|
|
22445
|
+
|
|
22446
|
+
export interface LolTftPassRequestDTO_vector_SelectionRequestDTO {
|
|
22447
|
+
data: LolTftPassSelectionRequestDTO[]
|
|
22448
|
+
metadata: LolTftPassRequestMetadataDTO
|
|
22449
|
+
}
|
|
22450
|
+
|
|
22451
|
+
export interface LolTftPassRequestDTO_vector_string {
|
|
22452
|
+
data: string[]
|
|
22453
|
+
metadata: LolTftPassRequestMetadataDTO
|
|
22454
|
+
}
|
|
22455
|
+
|
|
22456
|
+
export interface LolTftPassRequestMetadataDTO {
|
|
22457
|
+
transactionId?: string
|
|
22458
|
+
}
|
|
22459
|
+
|
|
22460
|
+
export interface LolTftPassResponseDTO_SvcRewardGrant {
|
|
22461
|
+
data: LolTftPassSvcRewardGrant
|
|
22462
|
+
metadata: LolTftPassResponseMetadataDTO
|
|
22463
|
+
}
|
|
22464
|
+
|
|
22465
|
+
export interface LolTftPassResponseDTO_map_RewardGroupId_SelectGrantStatus {
|
|
22466
|
+
data: Record<string, LolTftPassSelectGrantStatusResponse>
|
|
22467
|
+
metadata: LolTftPassResponseMetadataDTO
|
|
22468
|
+
}
|
|
22469
|
+
|
|
22470
|
+
export interface LolTftPassResponseDTO_vector_SvcRewardGrant {
|
|
22471
|
+
data: LolTftPassSvcRewardGrant[]
|
|
22472
|
+
metadata: LolTftPassResponseMetadataDTO
|
|
22473
|
+
}
|
|
22474
|
+
|
|
22475
|
+
export interface LolTftPassResponseDTO_vector_SvcRewardGroup {
|
|
22476
|
+
data: LolTftPassSvcRewardGroup[]
|
|
22477
|
+
metadata: LolTftPassResponseMetadataDTO
|
|
22478
|
+
}
|
|
22479
|
+
|
|
22480
|
+
export interface LolTftPassResponseMetadataDTO {
|
|
22481
|
+
[key: string | number]: any
|
|
22482
|
+
}
|
|
22483
|
+
|
|
22484
|
+
export interface LolTftPassReward {
|
|
22485
|
+
id: string
|
|
22486
|
+
itemId: string
|
|
22487
|
+
itemType: string
|
|
22488
|
+
/** @format int32 */
|
|
22489
|
+
quantity: number
|
|
22490
|
+
fulfillmentSource: string
|
|
22491
|
+
media: Record<string, string>
|
|
22492
|
+
localizations: Record<string, string>
|
|
22493
|
+
}
|
|
22494
|
+
|
|
22495
|
+
export interface LolTftPassRewardGrant {
|
|
22496
|
+
info: LolTftPassSvcRewardGrant
|
|
22497
|
+
rewardGroup: LolTftPassSvcRewardGroup
|
|
22498
|
+
}
|
|
22499
|
+
|
|
22500
|
+
export type LolTftPassRewardStatus = "FAILED" | "FULFILLED" | "PENDING"
|
|
22501
|
+
|
|
22502
|
+
export type LolTftPassRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
22503
|
+
|
|
22504
|
+
export interface LolTftPassRewardTrack {
|
|
22505
|
+
trackConfig: LolTftPassRewardTrackConfiguration
|
|
22506
|
+
}
|
|
22507
|
+
|
|
22508
|
+
export interface LolTftPassRewardTrackConfiguration {
|
|
22509
|
+
id: string
|
|
22510
|
+
premiumEntitlementId: string
|
|
22511
|
+
}
|
|
22512
|
+
|
|
22513
|
+
export interface LolTftPassRewardTrackError {
|
|
22514
|
+
errorMessage: string
|
|
22515
|
+
errorId: string
|
|
22516
|
+
}
|
|
22517
|
+
|
|
22518
|
+
export interface LolTftPassRewardTrackItem {
|
|
22519
|
+
state: LolTftPassRewardTrackItemStates
|
|
22520
|
+
rewardOptions: LolTftPassRewardTrackItemOption[]
|
|
22521
|
+
rewardTags: LolTftPassRewardTrackItemTag[]
|
|
22522
|
+
/** @format int64 */
|
|
22523
|
+
progressRequired: number
|
|
22524
|
+
threshold: string
|
|
22525
|
+
}
|
|
22526
|
+
|
|
22527
|
+
export type LolTftPassRewardTrackItemHeaderType = "NONE" | "FREE" | "PREMIUM"
|
|
22528
|
+
|
|
22529
|
+
export interface LolTftPassRewardTrackItemOption {
|
|
22530
|
+
state: LolTftPassRewardTrackItemStates
|
|
22531
|
+
thumbIconPath: string
|
|
22532
|
+
splashImagePath: string
|
|
22533
|
+
selected: boolean
|
|
22534
|
+
overrideFooter: string
|
|
22535
|
+
headerType: LolTftPassRewardTrackItemHeaderType
|
|
22536
|
+
rewardName: string
|
|
22537
|
+
rewardDescription: string
|
|
22538
|
+
rewardItemType: string
|
|
22539
|
+
rewardItemId: string
|
|
22540
|
+
rewardFulfillmentSource: string
|
|
22541
|
+
cardSize: string
|
|
22542
|
+
rewardGroupId: string
|
|
22543
|
+
celebrationType: LolTftPassCelebrationType
|
|
22544
|
+
}
|
|
22545
|
+
|
|
22546
|
+
export type LolTftPassRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
|
|
22547
|
+
|
|
22548
|
+
export type LolTftPassRewardTrackItemTag = "Multiple" | "Choice" | "Instant" | "Free" | "Rare"
|
|
22549
|
+
|
|
22550
|
+
export interface LolTftPassRewardTrackProgress {
|
|
22551
|
+
/** @format int16 */
|
|
22552
|
+
level: number
|
|
22553
|
+
/** @format int16 */
|
|
22554
|
+
totalLevels: number
|
|
22555
|
+
/** @format uint16 */
|
|
22556
|
+
levelProgress: number
|
|
22557
|
+
/** @format uint16 */
|
|
22558
|
+
futureLevelProgress: number
|
|
22559
|
+
/** @format int64 */
|
|
22560
|
+
passProgress: number
|
|
22561
|
+
/** @format int64 */
|
|
22562
|
+
currentLevelXP: number
|
|
22563
|
+
/** @format int64 */
|
|
22564
|
+
totalLevelXP: number
|
|
22565
|
+
/** @format uint32 */
|
|
22566
|
+
iteration: number
|
|
22567
|
+
}
|
|
22568
|
+
|
|
22569
|
+
export interface LolTftPassRewardTrackXP {
|
|
22570
|
+
/** @format int64 */
|
|
22571
|
+
currentLevel: number
|
|
22572
|
+
/** @format int64 */
|
|
22573
|
+
currentLevelXP: number
|
|
22574
|
+
/** @format int64 */
|
|
22575
|
+
totalLevelXP: number
|
|
22576
|
+
isBonusPhase: boolean
|
|
22577
|
+
/** @format uint32 */
|
|
22578
|
+
iteration: number
|
|
22579
|
+
}
|
|
22580
|
+
|
|
22581
|
+
export interface LolTftPassRewardsCatalogPluginItem {
|
|
22582
|
+
/** @format int32 */
|
|
22583
|
+
itemId: number
|
|
22584
|
+
name: string
|
|
22585
|
+
itemInstanceId: string
|
|
22586
|
+
owned: boolean
|
|
22587
|
+
rarity: string
|
|
22588
|
+
active: boolean
|
|
22589
|
+
questSkinInfo: LolTftPassRewardsSkinLineInfo
|
|
22590
|
+
}
|
|
22591
|
+
|
|
22592
|
+
export interface LolTftPassRewardsCatalogPluginItemAssets {
|
|
22593
|
+
splashPath: string
|
|
22594
|
+
loadScreenPath: string
|
|
22595
|
+
}
|
|
22596
|
+
|
|
22597
|
+
export interface LolTftPassRewardsCatalogPluginItemWithDetails {
|
|
22598
|
+
item: LolTftPassRewardsCatalogPluginItem
|
|
22599
|
+
assets: LolTftPassRewardsCatalogPluginItemAssets
|
|
22600
|
+
}
|
|
22601
|
+
|
|
22602
|
+
export interface LolTftPassRewardsConfig {
|
|
22603
|
+
GrantFiltering: boolean
|
|
22604
|
+
}
|
|
22605
|
+
|
|
22606
|
+
export interface LolTftPassRewardsSkinLineInfo {
|
|
22607
|
+
tiers: LolTftPassRewardsSkinLineTier[]
|
|
22608
|
+
mostProgressedSkinTier: LolTftPassRewardsSkinLineTier
|
|
22609
|
+
productType: string
|
|
22610
|
+
}
|
|
22611
|
+
|
|
22612
|
+
export interface LolTftPassRewardsSkinLineTier {
|
|
22613
|
+
/** @format int64 */
|
|
22614
|
+
stage: number
|
|
22615
|
+
name: string
|
|
22616
|
+
uncenteredSplashPath: string
|
|
22617
|
+
ownership: LolTftPassRewardsSkinLineTierOwnership
|
|
22618
|
+
}
|
|
22619
|
+
|
|
22620
|
+
export interface LolTftPassRewardsSkinLineTierOwnership {
|
|
22621
|
+
owned: boolean
|
|
22622
|
+
}
|
|
22623
|
+
|
|
22027
22624
|
export interface LolTftPassRiotMessagingServiceMessage {
|
|
22028
22625
|
resource: string
|
|
22029
22626
|
service: string
|
|
@@ -22062,6 +22659,45 @@ export interface LolTftPassRmsXboxSubscriptionChange {
|
|
|
22062
22659
|
identityProvider: string[]
|
|
22063
22660
|
}
|
|
22064
22661
|
|
|
22662
|
+
export interface LolTftPassSeasonPass {
|
|
22663
|
+
eventId: string
|
|
22664
|
+
eventHubType: string
|
|
22665
|
+
localizedName: string
|
|
22666
|
+
navbarIconImage: string
|
|
22667
|
+
headerIconImage: string
|
|
22668
|
+
headerTitleImage: string
|
|
22669
|
+
startDate: string
|
|
22670
|
+
progressEndDate: string
|
|
22671
|
+
endDate: string
|
|
22672
|
+
helpModalImage: string
|
|
22673
|
+
eventPassBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22674
|
+
progressionPurchaseCatalogEntry: LolTftPassCatalogEntry
|
|
22675
|
+
rewardTrack: LolTftPassRewardTrack
|
|
22676
|
+
localizedUpsellTitle: string
|
|
22677
|
+
localizedUpsellTooltipTitle: string
|
|
22678
|
+
localizedUpsellTooltipDescription: string
|
|
22679
|
+
localizedUpsellButtonText: string
|
|
22680
|
+
upsellBackgroundImageUrl: string
|
|
22681
|
+
upsellTooltipBackgroundImageUrl: string
|
|
22682
|
+
objectiveBannerImage: string
|
|
22683
|
+
chapters: LolTftPassChapter[]
|
|
22684
|
+
}
|
|
22685
|
+
|
|
22686
|
+
export type LolTftPassSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
22687
|
+
|
|
22688
|
+
export interface LolTftPassSelectionRequestDTO {
|
|
22689
|
+
grantId: string
|
|
22690
|
+
rewardGroupId: string
|
|
22691
|
+
selections: string[]
|
|
22692
|
+
}
|
|
22693
|
+
|
|
22694
|
+
export interface LolTftPassSelectionStrategyConfig {
|
|
22695
|
+
/** @format uint32 */
|
|
22696
|
+
minSelectionsAllowed: number
|
|
22697
|
+
/** @format uint32 */
|
|
22698
|
+
maxSelectionsAllowed: number
|
|
22699
|
+
}
|
|
22700
|
+
|
|
22065
22701
|
export interface LolTftPassSimpleInventoryDTO {
|
|
22066
22702
|
items: Record<string, unknown>
|
|
22067
22703
|
itemsJwt: string
|
|
@@ -22077,6 +22713,45 @@ export interface LolTftPassSummonerIcon {
|
|
|
22077
22713
|
itemId: number
|
|
22078
22714
|
}
|
|
22079
22715
|
|
|
22716
|
+
export interface LolTftPassSvcRewardGrant {
|
|
22717
|
+
id: string
|
|
22718
|
+
granteeId: string
|
|
22719
|
+
rewardGroupId: string
|
|
22720
|
+
dateCreated: string
|
|
22721
|
+
status: LolTftPassGrantStatus
|
|
22722
|
+
grantElements: LolTftPassSvcRewardGrantElement[]
|
|
22723
|
+
selectedIds: string[]
|
|
22724
|
+
viewed: boolean
|
|
22725
|
+
grantorDescription: LolTftPassGrantorDescription
|
|
22726
|
+
messageParameters: Record<string, unknown>
|
|
22727
|
+
}
|
|
22728
|
+
|
|
22729
|
+
export interface LolTftPassSvcRewardGrantElement {
|
|
22730
|
+
elementId: string
|
|
22731
|
+
itemId: string
|
|
22732
|
+
itemType: string
|
|
22733
|
+
fulfillmentSource: string
|
|
22734
|
+
status: LolTftPassRewardStatus
|
|
22735
|
+
/** @format int32 */
|
|
22736
|
+
quantity: number
|
|
22737
|
+
media: Record<string, string>
|
|
22738
|
+
localizations: Record<string, string>
|
|
22739
|
+
}
|
|
22740
|
+
|
|
22741
|
+
export interface LolTftPassSvcRewardGroup {
|
|
22742
|
+
id: string
|
|
22743
|
+
productId: string
|
|
22744
|
+
types: string[]
|
|
22745
|
+
rewards: LolTftPassReward[]
|
|
22746
|
+
childRewardGroupIds: string[]
|
|
22747
|
+
rewardStrategy: LolTftPassRewardStrategy
|
|
22748
|
+
selectionStrategyConfig?: LolTftPassSelectionStrategyConfig
|
|
22749
|
+
active: boolean
|
|
22750
|
+
media: Record<string, string>
|
|
22751
|
+
localizations: Record<string, string>
|
|
22752
|
+
celebrationType: LolTftPassCelebrationType
|
|
22753
|
+
}
|
|
22754
|
+
|
|
22080
22755
|
export interface LolTftPassTFTPassAsset {
|
|
22081
22756
|
internalName: string
|
|
22082
22757
|
iconTexturePath: string
|
|
@@ -22212,6 +22887,32 @@ export interface LolTftPassTftBattlepassReward {
|
|
|
22212
22887
|
|
|
22213
22888
|
export type LolTftPassTftPassType = "kUnknown" | "kSkillTreePass" | "kDailyLoginPass" | "kEventPass" | "kBattlePass"
|
|
22214
22889
|
|
|
22890
|
+
export interface LolTftPassTokenShop {
|
|
22891
|
+
tokenImage: string
|
|
22892
|
+
tokenName: string
|
|
22893
|
+
tokenUuid: string
|
|
22894
|
+
offers: LolTftPassOffer[]
|
|
22895
|
+
contentDrops: LolTftPassContentDrop[]
|
|
22896
|
+
tokenBundlesCatalogEntry: LolTftPassCatalogEntry[]
|
|
22897
|
+
}
|
|
22898
|
+
|
|
22899
|
+
export interface LolTftPassTrackProgressNextReward {
|
|
22900
|
+
/** @format int64 */
|
|
22901
|
+
currentXP: number
|
|
22902
|
+
/** @format int64 */
|
|
22903
|
+
nextLevelXP: number
|
|
22904
|
+
/** @format int64 */
|
|
22905
|
+
currentLevel: number
|
|
22906
|
+
nextReward: LolTftPassNextRewardUIData
|
|
22907
|
+
}
|
|
22908
|
+
|
|
22909
|
+
export interface LolTftPassTransactionResponseDTO {
|
|
22910
|
+
id: string
|
|
22911
|
+
inventoryType: string
|
|
22912
|
+
/** @format int32 */
|
|
22913
|
+
itemId: number
|
|
22914
|
+
}
|
|
22915
|
+
|
|
22215
22916
|
export interface LolTftPassTrigger {
|
|
22216
22917
|
type: string
|
|
22217
22918
|
counterId: string
|
|
@@ -22219,6 +22920,15 @@ export interface LolTftPassTrigger {
|
|
|
22219
22920
|
triggerValue: number
|
|
22220
22921
|
}
|
|
22221
22922
|
|
|
22923
|
+
export interface LolTftPassUnclaimedRewardsUIData {
|
|
22924
|
+
/** @format int32 */
|
|
22925
|
+
rewardsCount: number
|
|
22926
|
+
/** @format int32 */
|
|
22927
|
+
lockedTokensCount: number
|
|
22928
|
+
/** @format int64 */
|
|
22929
|
+
timeOfLastUnclaimedReward: number
|
|
22930
|
+
}
|
|
22931
|
+
|
|
22222
22932
|
export interface LolTftPassWallet {
|
|
22223
22933
|
/** @format int64 */
|
|
22224
22934
|
ip: number
|
|
@@ -22565,6 +23275,7 @@ export interface LolTftTFTRotatingShopPromo {
|
|
|
22565
23275
|
id: string
|
|
22566
23276
|
bundleId: string
|
|
22567
23277
|
storeType: string
|
|
23278
|
+
isDeepLink: boolean
|
|
22568
23279
|
}
|
|
22569
23280
|
|
|
22570
23281
|
export interface LolTftTFTRotatingShopPromos {
|
|
@@ -24130,6 +24841,9 @@ export interface MissionMetadata {
|
|
|
24130
24841
|
order: number
|
|
24131
24842
|
/** @format int32 */
|
|
24132
24843
|
chainSize: number
|
|
24844
|
+
/** @format uint32 */
|
|
24845
|
+
minRequired?: number
|
|
24846
|
+
objectiveMetadataMap?: Record<string, ObjectiveMetaData>
|
|
24133
24847
|
}
|
|
24134
24848
|
|
|
24135
24849
|
export interface MissionProgressDTO {
|
|
@@ -24203,6 +24917,12 @@ export interface NpeRewardPackMetadata {
|
|
|
24203
24917
|
minorRewards: NpeReward[]
|
|
24204
24918
|
}
|
|
24205
24919
|
|
|
24920
|
+
export interface ObjectiveMetaData {
|
|
24921
|
+
type: string
|
|
24922
|
+
/** @format uint32 */
|
|
24923
|
+
id: number
|
|
24924
|
+
}
|
|
24925
|
+
|
|
24206
24926
|
export interface OpenedTeamDTO {
|
|
24207
24927
|
name: string
|
|
24208
24928
|
shortName: string
|
|
@@ -25644,9 +26364,9 @@ export interface TeamBuilderDirect_ChampSelectSwapContract {
|
|
|
25644
26364
|
state: TeamBuilderDirect_ChampSelectSwapState
|
|
25645
26365
|
}
|
|
25646
26366
|
|
|
25647
|
-
export type
|
|
26367
|
+
export type TeamBuilderDirect_ChampSelectSwapState = "ACCEPTED" | "CANCELLED" | "DECLINED" | "SENT" | "RECEIVED" | "INVALID" | "BUSY" | "AVAILABLE"
|
|
25648
26368
|
|
|
25649
|
-
export type
|
|
26369
|
+
export type TeamBuilderDirect_ChampSelectSwapType = "POSITION" | "PICK_ORDER" | "CHAMPION"
|
|
25650
26370
|
|
|
25651
26371
|
export interface TeamBuilderDirect_ChampionBenchState {
|
|
25652
26372
|
benchEnabled: boolean
|
|
@@ -25897,21 +26617,21 @@ export interface TeamBuilderDirect_GameflowGameDodge {
|
|
|
25897
26617
|
dodgeIds: number[]
|
|
25898
26618
|
}
|
|
25899
26619
|
|
|
25900
|
-
export type
|
|
26620
|
+
export type TeamBuilderDirect_GameflowGameDodgeState = "TournamentDodged" | "StrangerDodged" | "PartyDodged" | "Invalid"
|
|
25901
26621
|
|
|
25902
26622
|
export interface TeamBuilderDirect_GameflowGameMap {
|
|
25903
26623
|
perPositionRequiredSummonerSpells: Record<string, TeamBuilderDirect_GameModeSpellList>
|
|
25904
26624
|
perPositionDisallowedSummonerSpells: Record<string, TeamBuilderDirect_GameModeSpellList>
|
|
25905
26625
|
}
|
|
25906
26626
|
|
|
25907
|
-
export type
|
|
26627
|
+
export type TeamBuilderDirect_GameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
25908
26628
|
|
|
25909
26629
|
export interface TeamBuilderDirect_GameflowQueue {
|
|
25910
26630
|
/** @format int32 */
|
|
25911
26631
|
id: number
|
|
25912
26632
|
}
|
|
25913
26633
|
|
|
25914
|
-
export type
|
|
26634
|
+
export type TeamBuilderDirect_GameflowServiceErrorType = "PLAYER_LACKS_VANGUARD_SESSION"
|
|
25915
26635
|
|
|
25916
26636
|
export interface TeamBuilderDirect_GameflowSession {
|
|
25917
26637
|
phase: TeamBuilderDirect_GameflowPhase
|
|
@@ -25981,7 +26701,7 @@ export interface TeamBuilderDirect_LoginSession {
|
|
|
25981
26701
|
summonerId?: number
|
|
25982
26702
|
}
|
|
25983
26703
|
|
|
25984
|
-
export type
|
|
26704
|
+
export type TeamBuilderDirect_LoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
25985
26705
|
|
|
25986
26706
|
export interface TeamBuilderDirect_MatchmakingDodgeData {
|
|
25987
26707
|
state: TeamBuilderDirect_MatchmakingDodgeState
|
|
@@ -25989,9 +26709,9 @@ export interface TeamBuilderDirect_MatchmakingDodgeData {
|
|
|
25989
26709
|
dodgerId: number
|
|
25990
26710
|
}
|
|
25991
26711
|
|
|
25992
|
-
export type
|
|
26712
|
+
export type TeamBuilderDirect_MatchmakingDodgeState = "TournamentDodged" | "StrangerDodged" | "PartyDodged" | "Invalid"
|
|
25993
26713
|
|
|
25994
|
-
export type
|
|
26714
|
+
export type TeamBuilderDirect_MatchmakingDodgeWarning = "Penalty" | "Warning" | "None"
|
|
25995
26715
|
|
|
25996
26716
|
export interface TeamBuilderDirect_MatchmakingLowPriorityData {
|
|
25997
26717
|
penalizedSummonerIds: number[]
|
|
@@ -26011,9 +26731,9 @@ export interface TeamBuilderDirect_MatchmakingReadyCheckResource {
|
|
|
26011
26731
|
declinerIds: number[]
|
|
26012
26732
|
}
|
|
26013
26733
|
|
|
26014
|
-
export type
|
|
26734
|
+
export type TeamBuilderDirect_MatchmakingReadyCheckResponse = "Declined" | "Accepted" | "None"
|
|
26015
26735
|
|
|
26016
|
-
export type
|
|
26736
|
+
export type TeamBuilderDirect_MatchmakingReadyCheckState = "Error" | "PartyNotReady" | "StrangerNotReady" | "EveryoneReady" | "InProgress" | "Invalid"
|
|
26017
26737
|
|
|
26018
26738
|
export interface TeamBuilderDirect_MatchmakingSearchErrorResource {
|
|
26019
26739
|
/** @format int32 */
|
|
@@ -26042,7 +26762,7 @@ export interface TeamBuilderDirect_MatchmakingSearchResource {
|
|
|
26042
26762
|
errors: TeamBuilderDirect_MatchmakingSearchErrorResource[]
|
|
26043
26763
|
}
|
|
26044
26764
|
|
|
26045
|
-
export type
|
|
26765
|
+
export type TeamBuilderDirect_MatchmakingSearchState = "ServiceShutdown" | "ServiceError" | "Error" | "Found" | "Searching" | "Canceled" | "AbandonedLowPriorityQueue" | "Invalid"
|
|
26046
26766
|
|
|
26047
26767
|
export interface TeamBuilderDirect_MatchmakingState {
|
|
26048
26768
|
/** @format int64 */
|
|
@@ -26073,7 +26793,7 @@ export interface TeamBuilderDirect_PlayerStatus {
|
|
|
26073
26793
|
lastQueuedLobbyStatus?: TeamBuilderDirect_LobbyStatus
|
|
26074
26794
|
}
|
|
26075
26795
|
|
|
26076
|
-
export type
|
|
26796
|
+
export type TeamBuilderDirect_QuestSkinProductType = "kTieredSkin" | "kQuestSkin"
|
|
26077
26797
|
|
|
26078
26798
|
export interface TeamBuilderDirect_Queue {
|
|
26079
26799
|
/** @format int32 */
|
|
@@ -26117,9 +26837,9 @@ export interface TeamBuilderDirect_Queue {
|
|
|
26117
26837
|
removalFromGameDelayMinutes: number
|
|
26118
26838
|
}
|
|
26119
26839
|
|
|
26120
|
-
export type
|
|
26840
|
+
export type TeamBuilderDirect_QueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
26121
26841
|
|
|
26122
|
-
export type
|
|
26842
|
+
export type TeamBuilderDirect_QueueGameCategory = "Alpha" | "VersusAi" | "PvP" | "Custom" | "None"
|
|
26123
26843
|
|
|
26124
26844
|
export interface TeamBuilderDirect_QueueGameTypeConfig {
|
|
26125
26845
|
/** @format int64 */
|
|
@@ -26293,6 +27013,7 @@ export interface TeamBuilderDirect_TbdGameDto {
|
|
|
26293
27013
|
matchmakingState?: TeamBuilderDirect_MatchmakingState
|
|
26294
27014
|
afkCheckState?: TeamBuilderDirect_AfkCheckState
|
|
26295
27015
|
championSelectState?: TeamBuilderDirect_ChampionSelectState
|
|
27016
|
+
requestGuid: string
|
|
26296
27017
|
}
|
|
26297
27018
|
|
|
26298
27019
|
export interface TeamBuilderDirect_TeamBoost {
|
|
@@ -26341,16 +27062,19 @@ export interface TeamBuilderDirect_TeambuilderLeagueEdgeResponse {
|
|
|
26341
27062
|
export interface TeambuilderEdge_AcceptPickOrderSwapV1 {
|
|
26342
27063
|
/** @format int32 */
|
|
26343
27064
|
swapId: number
|
|
27065
|
+
requestGuid: string
|
|
26344
27066
|
}
|
|
26345
27067
|
|
|
26346
27068
|
export interface TeambuilderEdge_AcceptPositionSwapV1 {
|
|
26347
27069
|
/** @format int32 */
|
|
26348
27070
|
swapId: number
|
|
27071
|
+
requestGuid: string
|
|
26349
27072
|
}
|
|
26350
27073
|
|
|
26351
27074
|
export interface TeambuilderEdge_AcceptTradeV1 {
|
|
26352
27075
|
/** @format int32 */
|
|
26353
27076
|
tradeId: number
|
|
27077
|
+
requestGuid: string
|
|
26354
27078
|
}
|
|
26355
27079
|
|
|
26356
27080
|
export interface TeambuilderEdge_ActionV1 {
|
|
@@ -26444,6 +27168,7 @@ export interface TeambuilderEdge_ChampionBenchStateV1 {
|
|
|
26444
27168
|
export interface TeambuilderEdge_ChampionBenchSwapV1 {
|
|
26445
27169
|
/** @format int32 */
|
|
26446
27170
|
championId: number
|
|
27171
|
+
requestGuid: string
|
|
26447
27172
|
}
|
|
26448
27173
|
|
|
26449
27174
|
export interface TeambuilderEdge_ChampionSelectStateV1 {
|
|
@@ -26482,16 +27207,19 @@ export interface TeambuilderEdge_ChampionSelectStateV1 {
|
|
|
26482
27207
|
export interface TeambuilderEdge_DeclinePickOrderSwapV1 {
|
|
26483
27208
|
/** @format int32 */
|
|
26484
27209
|
swapId: number
|
|
27210
|
+
requestGuid: string
|
|
26485
27211
|
}
|
|
26486
27212
|
|
|
26487
27213
|
export interface TeambuilderEdge_DeclinePositionSwapV1 {
|
|
26488
27214
|
/** @format int32 */
|
|
26489
27215
|
swapId: number
|
|
27216
|
+
requestGuid: string
|
|
26490
27217
|
}
|
|
26491
27218
|
|
|
26492
27219
|
export interface TeambuilderEdge_DeclineTradeV1 {
|
|
26493
27220
|
/** @format int32 */
|
|
26494
27221
|
tradeId: number
|
|
27222
|
+
requestGuid: string
|
|
26495
27223
|
}
|
|
26496
27224
|
|
|
26497
27225
|
export interface TeambuilderEdge_GameloopPlayerInfoV2 {
|
|
@@ -26504,6 +27232,7 @@ export interface TeambuilderEdge_IndicateAfkReadinessV2 {
|
|
|
26504
27232
|
initialSpellIds?: number[]
|
|
26505
27233
|
lastSelectedSkinIdByChampionId?: Record<string, number>
|
|
26506
27234
|
simplifiedInventoryJwt?: string
|
|
27235
|
+
requestGuid: string
|
|
26507
27236
|
}
|
|
26508
27237
|
|
|
26509
27238
|
export interface TeambuilderEdge_InventoryDraftV1 {
|
|
@@ -26559,6 +27288,7 @@ export interface TeambuilderEdge_PickOrderTradeV1 {
|
|
|
26559
27288
|
export interface TeambuilderEdge_PickSkinV2 {
|
|
26560
27289
|
/** @format int32 */
|
|
26561
27290
|
skinId: number
|
|
27291
|
+
requestGuid: string
|
|
26562
27292
|
}
|
|
26563
27293
|
|
|
26564
27294
|
export interface TeambuilderEdge_PickSpellsV1 {
|
|
@@ -26566,6 +27296,7 @@ export interface TeambuilderEdge_PickSpellsV1 {
|
|
|
26566
27296
|
"spell1Id": number
|
|
26567
27297
|
/** @format int32 */
|
|
26568
27298
|
"spell2Id": number
|
|
27299
|
+
requestGuid: string
|
|
26569
27300
|
}
|
|
26570
27301
|
|
|
26571
27302
|
export interface TeambuilderEdge_PositionTradeV1 {
|
|
@@ -26588,9 +27319,9 @@ export interface TeambuilderEdge_RerollDataBagForClientV1 {
|
|
|
26588
27319
|
/** @format int32 */
|
|
26589
27320
|
totalPoints: number
|
|
26590
27321
|
/** @format int32 */
|
|
26591
|
-
pointCostOfReroll: number
|
|
26592
|
-
/** @format int32 */
|
|
26593
27322
|
maximumRerolls: number
|
|
27323
|
+
/** @format int32 */
|
|
27324
|
+
pointCostOfReroll: number
|
|
26594
27325
|
}
|
|
26595
27326
|
|
|
26596
27327
|
export interface TeambuilderEdge_RerollStateV1 {
|
|
@@ -26602,6 +27333,7 @@ export interface TeambuilderEdge_RerollStateV1 {
|
|
|
26602
27333
|
export interface TeambuilderEdge_SignalChampionPickIntentV1 {
|
|
26603
27334
|
/** @format int32 */
|
|
26604
27335
|
championId: number
|
|
27336
|
+
requestGuid: string
|
|
26605
27337
|
}
|
|
26606
27338
|
|
|
26607
27339
|
export interface TeambuilderEdge_SimplifiedInventoryWrapperV1 {
|
|
@@ -26620,6 +27352,7 @@ export interface TeambuilderEdge_TbdGameDtoV1 {
|
|
|
26620
27352
|
matchmakingState?: TeambuilderEdge_MatchmakingStateV1
|
|
26621
27353
|
afkCheckState?: TeambuilderEdge_AfkCheckStateV1
|
|
26622
27354
|
championSelectState?: TeambuilderEdge_ChampionSelectStateV1
|
|
27355
|
+
requestGuid: string
|
|
26623
27356
|
}
|
|
26624
27357
|
|
|
26625
27358
|
export interface TeambuilderEdge_TeambuilderLedgeGameloopResponse {
|
|
@@ -26646,10 +27379,12 @@ export interface TeambuilderEdge_UpdateActionV1 {
|
|
|
26646
27379
|
/** @format int32 */
|
|
26647
27380
|
championId: number
|
|
26648
27381
|
completed: boolean
|
|
27382
|
+
requestGuid: string
|
|
26649
27383
|
}
|
|
26650
27384
|
|
|
26651
27385
|
export interface TeambuilderEdge_WalletWrapperV1 {
|
|
26652
27386
|
signedWalletJwt: string
|
|
27387
|
+
requestGuid: string
|
|
26653
27388
|
}
|
|
26654
27389
|
|
|
26655
27390
|
export interface ThemeVp {
|