@hasagi/types 14.17.1 → 14.24.2
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/CODEOWNERS +2 -0
- package/LICENSE +9 -9
- package/README.md +14 -8
- package/{index.d.ts → dist/index.d.ts} +2 -2
- package/{lcu-endpoints.d.ts → dist/lcu-endpoints.d.ts} +214 -29
- package/{lcu-events.d.ts → dist/lcu-events.d.ts} +19 -8
- package/{lcu-types.d.ts → dist/lcu-types.d.ts} +1913 -516
- package/package.json +8 -8
|
@@ -1454,6 +1454,43 @@ export interface LolActiveBoostsLoyaltyStatusNotification {
|
|
|
1454
1454
|
rewards: LolActiveBoostsLoyaltyRewardsSimplified
|
|
1455
1455
|
}
|
|
1456
1456
|
|
|
1457
|
+
export interface LolActivityCenterConfigData {
|
|
1458
|
+
puuid: string
|
|
1459
|
+
sessionId: string
|
|
1460
|
+
region: string
|
|
1461
|
+
locale: string
|
|
1462
|
+
webRegion: string
|
|
1463
|
+
webLocale: string
|
|
1464
|
+
publishingLocale: string
|
|
1465
|
+
rsoPlatformId: string
|
|
1466
|
+
enabled: boolean
|
|
1467
|
+
clientNavEnabled: boolean
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
export interface LolActivityCenterLoginSession {
|
|
1471
|
+
state: LolActivityCenterLoginSessionStates
|
|
1472
|
+
/** @format uint64 */
|
|
1473
|
+
summonerId: number
|
|
1474
|
+
puuid: string
|
|
1475
|
+
connected: boolean
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
export type LolActivityCenterLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
1479
|
+
|
|
1480
|
+
export interface LolActivityCenterPublishingSettings {
|
|
1481
|
+
region: string
|
|
1482
|
+
locale: string
|
|
1483
|
+
webRegion: string
|
|
1484
|
+
webLocale: string
|
|
1485
|
+
publishingLocale: string
|
|
1486
|
+
rsoPlatformId: string
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
export interface LolActivityCenterTencentOverrides {
|
|
1490
|
+
infoHubAlternativeExperienceUrl: string
|
|
1491
|
+
activityCenterAlternativeExperienceUrl: string
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1457
1494
|
export interface LolAntiAddictionAntiAddictionState {
|
|
1458
1495
|
policyType: LolAntiAddictionPolicyType
|
|
1459
1496
|
localizationKey: string
|
|
@@ -6274,6 +6311,9 @@ export interface LolDropsCapDropsDropTableDisplayMetadata {
|
|
|
6274
6311
|
/** @format uint8 */
|
|
6275
6312
|
version: number
|
|
6276
6313
|
chaseContentId: string
|
|
6314
|
+
chaseContentIds: string[]
|
|
6315
|
+
prestigeContentIds: string[]
|
|
6316
|
+
bountyType: string
|
|
6277
6317
|
oddsTree: LolDropsCapDropsOddsTreeNodeDTO
|
|
6278
6318
|
}
|
|
6279
6319
|
|
|
@@ -6301,12 +6341,14 @@ export interface LolDropsCapDropsDropTableWithPityDTO {
|
|
|
6301
6341
|
export interface LolDropsCapDropsOddsListEntryDTO {
|
|
6302
6342
|
contentId: string
|
|
6303
6343
|
nodeId: string
|
|
6344
|
+
sourceId: string
|
|
6304
6345
|
/** @format float */
|
|
6305
6346
|
odds: number
|
|
6306
6347
|
}
|
|
6307
6348
|
|
|
6308
6349
|
export interface LolDropsCapDropsOddsTreeNodeDTO {
|
|
6309
6350
|
nodeId: string
|
|
6351
|
+
sourceId: string
|
|
6310
6352
|
/** @format float */
|
|
6311
6353
|
odds: number
|
|
6312
6354
|
children: LolDropsCapDropsOddsTreeNodeDTO[]
|
|
@@ -6804,6 +6846,7 @@ export interface LolEndOfGameTFTEndOfGameItemViewModel {
|
|
|
6804
6846
|
}
|
|
6805
6847
|
|
|
6806
6848
|
export interface LolEndOfGameTFTEndOfGamePieceViewModel {
|
|
6849
|
+
championId: string
|
|
6807
6850
|
name: string
|
|
6808
6851
|
icon: string
|
|
6809
6852
|
/** @format uint32 */
|
|
@@ -6848,6 +6891,19 @@ export interface LolEndOfGameTFTEndOfGamePlayerViewModel {
|
|
|
6848
6891
|
setCoreName: string
|
|
6849
6892
|
}
|
|
6850
6893
|
|
|
6894
|
+
export interface LolEndOfGameTFTEndOfGameSkillScoreTreeViewModel {
|
|
6895
|
+
/** @format uint16 */
|
|
6896
|
+
skillId: number
|
|
6897
|
+
/** @format int16 */
|
|
6898
|
+
score: number
|
|
6899
|
+
}
|
|
6900
|
+
|
|
6901
|
+
export interface LolEndOfGameTFTEndOfGameSkillTreeViewModel {
|
|
6902
|
+
eventSkillToScore: LolEndOfGameTFTEndOfGameSkillScoreTreeViewModel[]
|
|
6903
|
+
/** @format int16 */
|
|
6904
|
+
delta: number
|
|
6905
|
+
}
|
|
6906
|
+
|
|
6851
6907
|
export interface LolEndOfGameTFTEndOfGameTraitViewModel {
|
|
6852
6908
|
id: string
|
|
6853
6909
|
name: string
|
|
@@ -6856,6 +6912,7 @@ export interface LolEndOfGameTFTEndOfGameTraitViewModel {
|
|
|
6856
6912
|
export interface LolEndOfGameTFTEndOfGameViewModel {
|
|
6857
6913
|
players: LolEndOfGameTFTEndOfGamePlayerViewModel[]
|
|
6858
6914
|
localPlayer?: LolEndOfGameTFTEndOfGamePlayerViewModel
|
|
6915
|
+
playerSkillTreeEoG?: LolEndOfGameTFTEndOfGameSkillTreeViewModel
|
|
6859
6916
|
/** @format uint32 */
|
|
6860
6917
|
gameLength: number
|
|
6861
6918
|
/** @format uint64 */
|
|
@@ -7467,6 +7524,40 @@ export interface LolEventHubExternalItemMetadataEntry {
|
|
|
7467
7524
|
value: string
|
|
7468
7525
|
}
|
|
7469
7526
|
|
|
7527
|
+
export interface LolEventHubFSC {
|
|
7528
|
+
id: string
|
|
7529
|
+
canvas: LolEventHubFSCCanvas
|
|
7530
|
+
media: LolEventHubFSCMedia
|
|
7531
|
+
rewards: LolEventHubFSCRewards[]
|
|
7532
|
+
}
|
|
7533
|
+
|
|
7534
|
+
export interface LolEventHubFSCCanvas {
|
|
7535
|
+
title: string
|
|
7536
|
+
subtitle: string
|
|
7537
|
+
canvasBackgroundImage: string
|
|
7538
|
+
canvasSize: LolEventHubFSCCanvasSize
|
|
7539
|
+
canvasDesign: string
|
|
7540
|
+
}
|
|
7541
|
+
|
|
7542
|
+
export type LolEventHubFSCCanvasSize = "FULL" | "LARGE" | "MEDIUM" | "SMALL"
|
|
7543
|
+
|
|
7544
|
+
export interface LolEventHubFSCMedia {
|
|
7545
|
+
introAnimation: string
|
|
7546
|
+
introAnimationAudio: string
|
|
7547
|
+
introLowSpecImage: string
|
|
7548
|
+
loopAnimation: string
|
|
7549
|
+
loopAnimationAudio: string
|
|
7550
|
+
transitionAnimation: string
|
|
7551
|
+
transitionAnimationAudio: string
|
|
7552
|
+
}
|
|
7553
|
+
|
|
7554
|
+
export interface LolEventHubFSCRewards {
|
|
7555
|
+
image: string
|
|
7556
|
+
imageOverlay: string
|
|
7557
|
+
title: string
|
|
7558
|
+
subtitle: string
|
|
7559
|
+
}
|
|
7560
|
+
|
|
7470
7561
|
export type LolEventHubGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
7471
7562
|
|
|
7472
7563
|
export interface LolEventHubGrantorDescription {
|
|
@@ -8099,6 +8190,11 @@ export interface LolEventHubRewardTrackConfiguration {
|
|
|
8099
8190
|
premiumEntitlementId: string
|
|
8100
8191
|
}
|
|
8101
8192
|
|
|
8193
|
+
export interface LolEventHubRewardTrackError {
|
|
8194
|
+
errorMessage: string
|
|
8195
|
+
errorId: string
|
|
8196
|
+
}
|
|
8197
|
+
|
|
8102
8198
|
export interface LolEventHubRewardTrackItem {
|
|
8103
8199
|
state: LolEventHubRewardTrackItemStates
|
|
8104
8200
|
rewardOptions: LolEventHubRewardTrackItemOption[]
|
|
@@ -8655,6 +8751,10 @@ export interface LolGameClientChatMutedPlayerInfo {
|
|
|
8655
8751
|
obfuscatedSummonerId: number
|
|
8656
8752
|
}
|
|
8657
8753
|
|
|
8754
|
+
export interface LolGameQueuesDoubleUpConfig {
|
|
8755
|
+
enabled: boolean
|
|
8756
|
+
}
|
|
8757
|
+
|
|
8658
8758
|
export interface LolGameQueuesLoginDataPacket {
|
|
8659
8759
|
gameTypeConfigs: LolGameQueuesQueueGameTypeConfig[]
|
|
8660
8760
|
}
|
|
@@ -8738,6 +8838,7 @@ export interface LolGameQueuesQueue {
|
|
|
8738
8838
|
gameSelectCategory: string
|
|
8739
8839
|
/** @format uint8 */
|
|
8740
8840
|
gameSelectPriority: number
|
|
8841
|
+
isSkillTreeQueue: boolean
|
|
8741
8842
|
}
|
|
8742
8843
|
|
|
8743
8844
|
export type LolGameQueuesQueueAvailability = "DoesntMeetRequirements" | "PlatformDisabled" | "Available"
|
|
@@ -8823,6 +8924,7 @@ export interface LolGameQueuesQueueTranslation {
|
|
|
8823
8924
|
gameSelectCategory: string
|
|
8824
8925
|
/** @format uint8 */
|
|
8825
8926
|
gameSelectPriority: number
|
|
8927
|
+
isSkillTreeQueue: boolean
|
|
8826
8928
|
}
|
|
8827
8929
|
|
|
8828
8930
|
export interface LolGameSettingsLoginSession {
|
|
@@ -8858,6 +8960,7 @@ export interface LolGameflowGameStateUpdate {
|
|
|
8858
8960
|
gameState: string
|
|
8859
8961
|
gameType: string
|
|
8860
8962
|
errorMessage: string
|
|
8963
|
+
playerCredentials?: GameflowLcdsPlayerCredentialsDto
|
|
8861
8964
|
}
|
|
8862
8965
|
|
|
8863
8966
|
export interface LolGameflowGameflowAvailability {
|
|
@@ -9169,188 +9272,6 @@ export interface LolHighlightsHighlightsSettingsResource {
|
|
|
9169
9272
|
data: LolHighlightsHighlightsSettingsData
|
|
9170
9273
|
}
|
|
9171
9274
|
|
|
9172
|
-
export interface LolHoneyfruitAccountClaimStatus {
|
|
9173
|
-
linking_status?: LolHoneyfruitHoneyfruitLinkingServiceResponse
|
|
9174
|
-
migration_status?: string
|
|
9175
|
-
}
|
|
9176
|
-
|
|
9177
|
-
export interface LolHoneyfruitAccountDetails {
|
|
9178
|
-
puuid: string
|
|
9179
|
-
platformId: string
|
|
9180
|
-
summonerName: string
|
|
9181
|
-
/** @format int32 */
|
|
9182
|
-
summonerIconId: number
|
|
9183
|
-
/** @format uint32 */
|
|
9184
|
-
summonerLevel: number
|
|
9185
|
-
}
|
|
9186
|
-
|
|
9187
|
-
export interface LolHoneyfruitGAMHSMatchHistoryData {
|
|
9188
|
-
[key: string | number]: any
|
|
9189
|
-
}
|
|
9190
|
-
|
|
9191
|
-
export interface LolHoneyfruitGAMHSMatchHistoryList {
|
|
9192
|
-
games: LolHoneyfruitGAMHSMatchHistoryData[]
|
|
9193
|
-
active_puuid: string
|
|
9194
|
-
}
|
|
9195
|
-
|
|
9196
|
-
export type LolHoneyfruitGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
9197
|
-
|
|
9198
|
-
export interface LolHoneyfruitGarenaRegionLeagueAccount {
|
|
9199
|
-
garena_puuid: string
|
|
9200
|
-
platform_id: string
|
|
9201
|
-
summoner_name: string
|
|
9202
|
-
/** @format uint32 */
|
|
9203
|
-
summoner_level: number
|
|
9204
|
-
/** @format int32 */
|
|
9205
|
-
summoner_icon_id: number
|
|
9206
|
-
/** @format uint64 */
|
|
9207
|
-
garena_id: number
|
|
9208
|
-
is_reserved_summoner_name: boolean
|
|
9209
|
-
has_played_a_game: boolean
|
|
9210
|
-
}
|
|
9211
|
-
|
|
9212
|
-
export type LolHoneyfruitHoneyfruitActionType = "link" | "dismiss_permanently" | "dismiss_temporarily" | "dismiss"
|
|
9213
|
-
|
|
9214
|
-
export interface LolHoneyfruitHoneyfruitAuthRedirectMock {
|
|
9215
|
-
/** @format uint32 */
|
|
9216
|
-
redirectLatency: number
|
|
9217
|
-
/** @format uint32 */
|
|
9218
|
-
redirectStatusCode: number
|
|
9219
|
-
redirectURL: string
|
|
9220
|
-
}
|
|
9221
|
-
|
|
9222
|
-
export interface LolHoneyfruitHoneyfruitLinkingAction {
|
|
9223
|
-
action: LolHoneyfruitHoneyfruitActionType
|
|
9224
|
-
target: string
|
|
9225
|
-
}
|
|
9226
|
-
|
|
9227
|
-
export type LolHoneyfruitHoneyfruitLinkingFailureReason = "UNHANDLED_SERVER_SIDE_ERROR" | "REQUEST_FAILURE" | "NOT_LINKED" | "DISABLED" | "DEGRADED" | "BAD_AUTHORIZATION_PARAM" | "ACCESS_TOKEN_EXPIRED" | "ALREADY_LINKED"
|
|
9228
|
-
|
|
9229
|
-
export interface LolHoneyfruitHoneyfruitLinkingNotification {
|
|
9230
|
-
linkedAccount: string
|
|
9231
|
-
}
|
|
9232
|
-
|
|
9233
|
-
export interface LolHoneyfruitHoneyfruitLinkingServiceResponse {
|
|
9234
|
-
eligible: boolean
|
|
9235
|
-
reason_code: LolHoneyfruitHoneyfruitLinkingFailureReason
|
|
9236
|
-
email: string
|
|
9237
|
-
account_details?: LolHoneyfruitGarenaRegionLeagueAccount
|
|
9238
|
-
}
|
|
9239
|
-
|
|
9240
|
-
export type LolHoneyfruitHoneyfruitLinkingState = "linked" | "linking_complete" | "in_progress" | "error" | "confirm_snooze" | "prompt" | "snoozed" | "hidden"
|
|
9241
|
-
|
|
9242
|
-
export interface LolHoneyfruitHoneyfruitLinkingStatus {
|
|
9243
|
-
state: LolHoneyfruitHoneyfruitLinkingState
|
|
9244
|
-
linkedAccount: string
|
|
9245
|
-
error: LolHoneyfruitHoneyfruitLinkingStatusError
|
|
9246
|
-
}
|
|
9247
|
-
|
|
9248
|
-
export type LolHoneyfruitHoneyfruitLinkingStatusError = "unknown_error" | "service_unavailable" | "not_signed_in" | "no_error"
|
|
9249
|
-
|
|
9250
|
-
export type LolHoneyfruitHoneyfruitPublisher = "vng" | "twm" | "tencent" | "riot" | "garena"
|
|
9251
|
-
|
|
9252
|
-
export interface LolHoneyfruitHoneyfruitRegionLocale {
|
|
9253
|
-
region: string
|
|
9254
|
-
locale: string
|
|
9255
|
-
}
|
|
9256
|
-
|
|
9257
|
-
export interface LolHoneyfruitHoneyfruitSettingCategoryResource {
|
|
9258
|
-
/** @format uint32 */
|
|
9259
|
-
schemaVersion: number
|
|
9260
|
-
data: LolHoneyfruitHoneyfruitSettings
|
|
9261
|
-
}
|
|
9262
|
-
|
|
9263
|
-
export interface LolHoneyfruitHoneyfruitSettingCategoryResourceAccountClaim {
|
|
9264
|
-
/** @format uint32 */
|
|
9265
|
-
schemaVersion: number
|
|
9266
|
-
data: LolHoneyfruitHoneyfruitSettingsAccountClaim
|
|
9267
|
-
}
|
|
9268
|
-
|
|
9269
|
-
export interface LolHoneyfruitHoneyfruitSettings {
|
|
9270
|
-
/** @format uint64 */
|
|
9271
|
-
snoozeUntilMS: number
|
|
9272
|
-
isSnoozedPermanently: boolean
|
|
9273
|
-
}
|
|
9274
|
-
|
|
9275
|
-
export interface LolHoneyfruitHoneyfruitSettingsAccountClaim {
|
|
9276
|
-
isAccountClaimAutoDismiss: boolean
|
|
9277
|
-
}
|
|
9278
|
-
|
|
9279
|
-
export interface LolHoneyfruitHoneyfruitVNGPublisherSettings {
|
|
9280
|
-
visible: boolean
|
|
9281
|
-
}
|
|
9282
|
-
|
|
9283
|
-
export interface LolHoneyfruitMatchHistoryGame {
|
|
9284
|
-
[key: string | number]: any
|
|
9285
|
-
}
|
|
9286
|
-
|
|
9287
|
-
export interface LolHoneyfruitMatchHistoryGameList {
|
|
9288
|
-
/** @format uint64 */
|
|
9289
|
-
gameIndexBegin: number
|
|
9290
|
-
/** @format uint64 */
|
|
9291
|
-
gameIndexEnd: number
|
|
9292
|
-
gameBeginDate: string
|
|
9293
|
-
gameEndDate: string
|
|
9294
|
-
/** @format uint64 */
|
|
9295
|
-
gameCount: number
|
|
9296
|
-
games: LolHoneyfruitMatchHistoryGame[]
|
|
9297
|
-
}
|
|
9298
|
-
|
|
9299
|
-
export interface LolHoneyfruitMatchHistoryList {
|
|
9300
|
-
platformId: string
|
|
9301
|
-
/** @format uint64 */
|
|
9302
|
-
accountId: number
|
|
9303
|
-
games: LolHoneyfruitMatchHistoryGameList
|
|
9304
|
-
}
|
|
9305
|
-
|
|
9306
|
-
export interface LolHoneyfruitSummoner {
|
|
9307
|
-
/** @format uint64 */
|
|
9308
|
-
summonerId: number
|
|
9309
|
-
/** @format uint64 */
|
|
9310
|
-
accountId: number
|
|
9311
|
-
displayName: string
|
|
9312
|
-
internalName: string
|
|
9313
|
-
/** @format int32 */
|
|
9314
|
-
profileIconId: number
|
|
9315
|
-
/** @format uint32 */
|
|
9316
|
-
summonerLevel: number
|
|
9317
|
-
/** @format uint64 */
|
|
9318
|
-
xpSinceLastLevel: number
|
|
9319
|
-
/** @format uint64 */
|
|
9320
|
-
xpUntilNextLevel: number
|
|
9321
|
-
/** @format uint32 */
|
|
9322
|
-
percentCompleteForNextLevel: number
|
|
9323
|
-
puuid: string
|
|
9324
|
-
nameChangeFlag: boolean
|
|
9325
|
-
unnamed: boolean
|
|
9326
|
-
}
|
|
9327
|
-
|
|
9328
|
-
export interface LolHoneyfruitV1AuthenticationRedirectInput {
|
|
9329
|
-
redirect_uri: string
|
|
9330
|
-
language: string
|
|
9331
|
-
}
|
|
9332
|
-
|
|
9333
|
-
export interface LolHoneyfruitV1AuthenticationResponse {
|
|
9334
|
-
type: LolHoneyfruitV1ResponseType
|
|
9335
|
-
success: LolHoneyfruitV1SuccessResponseDetails
|
|
9336
|
-
country: string
|
|
9337
|
-
error: string
|
|
9338
|
-
}
|
|
9339
|
-
|
|
9340
|
-
export type LolHoneyfruitV1ResponseType = "error" | "success" | "multifactor" | "signup" | "healup" | "auth"
|
|
9341
|
-
|
|
9342
|
-
export interface LolHoneyfruitV1SuccessResponseDetails {
|
|
9343
|
-
login_token: string
|
|
9344
|
-
redirect_url: string
|
|
9345
|
-
linked: string
|
|
9346
|
-
}
|
|
9347
|
-
|
|
9348
|
-
export interface LolHoneyfruitVNGStatusResponse {
|
|
9349
|
-
action_required: boolean
|
|
9350
|
-
action_url: string
|
|
9351
|
-
action_url_raw: string
|
|
9352
|
-
}
|
|
9353
|
-
|
|
9354
9275
|
export interface LolHonorV2AccountIdAndSummonerId {
|
|
9355
9276
|
/** @format uint64 */
|
|
9356
9277
|
accountId: number
|
|
@@ -9399,6 +9320,7 @@ export interface LolHonorV2EligiblePlayer {
|
|
|
9399
9320
|
championName: string
|
|
9400
9321
|
skinSplashPath: string
|
|
9401
9322
|
role: string
|
|
9323
|
+
botPlayer: boolean
|
|
9402
9324
|
}
|
|
9403
9325
|
|
|
9404
9326
|
export interface LolHonorV2EndOfGamePlayer {
|
|
@@ -9493,6 +9415,14 @@ export interface LolHonorV2LoginSession {
|
|
|
9493
9415
|
|
|
9494
9416
|
export type LolHonorV2LoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
9495
9417
|
|
|
9418
|
+
export interface LolHonorV2Mail {
|
|
9419
|
+
mailId: string
|
|
9420
|
+
message: string
|
|
9421
|
+
state: string
|
|
9422
|
+
/** @format uint64 */
|
|
9423
|
+
createdAt: number
|
|
9424
|
+
}
|
|
9425
|
+
|
|
9496
9426
|
export interface LolHonorV2MutualHonor {
|
|
9497
9427
|
/** @format uint64 */
|
|
9498
9428
|
gameId: number
|
|
@@ -9514,6 +9444,7 @@ export interface LolHonorV2ProfileInfo {
|
|
|
9514
9444
|
/** @format int32 */
|
|
9515
9445
|
checkpoint: number
|
|
9516
9446
|
rewardsLocked: boolean
|
|
9447
|
+
redemptions: LolHonorV2Redemption[]
|
|
9517
9448
|
}
|
|
9518
9449
|
|
|
9519
9450
|
export interface LolHonorV2Queue {
|
|
@@ -9528,12 +9459,21 @@ export interface LolHonorV2Queue {
|
|
|
9528
9459
|
removalFromGameDelayMinutes: number
|
|
9529
9460
|
}
|
|
9530
9461
|
|
|
9462
|
+
export interface LolHonorV2Redemption {
|
|
9463
|
+
/** @format int32 */
|
|
9464
|
+
required: number
|
|
9465
|
+
/** @format int32 */
|
|
9466
|
+
remaining: number
|
|
9467
|
+
eventType: string
|
|
9468
|
+
}
|
|
9469
|
+
|
|
9531
9470
|
export interface LolHonorV2RetrieveProfileResponse {
|
|
9532
9471
|
/** @format int32 */
|
|
9533
9472
|
honorLevel: number
|
|
9534
9473
|
/** @format int32 */
|
|
9535
9474
|
checkpoint: number
|
|
9536
9475
|
rewardsLocked: boolean
|
|
9476
|
+
redemptions: LolHonorV2Redemption[]
|
|
9537
9477
|
}
|
|
9538
9478
|
|
|
9539
9479
|
export interface LolHonorV2Reward {
|
|
@@ -10018,6 +9958,11 @@ export interface LolItemSetsGameDataChampion {
|
|
|
10018
9958
|
alias: string
|
|
10019
9959
|
}
|
|
10020
9960
|
|
|
9961
|
+
export interface LolItemSetsGameDataSummaryChampion {
|
|
9962
|
+
/** @format int32 */
|
|
9963
|
+
id: number
|
|
9964
|
+
}
|
|
9965
|
+
|
|
10021
9966
|
export interface LolItemSetsItemSet {
|
|
10022
9967
|
uid: string
|
|
10023
9968
|
title: string
|
|
@@ -10133,6 +10078,57 @@ export interface LolL10nRegionLocale {
|
|
|
10133
10078
|
webLanguage: string
|
|
10134
10079
|
}
|
|
10135
10080
|
|
|
10081
|
+
export interface LolLeaderboardLeaderboardConfiguration {
|
|
10082
|
+
name: string
|
|
10083
|
+
groupings: string[]
|
|
10084
|
+
/** @format uint8 */
|
|
10085
|
+
pageSize: number
|
|
10086
|
+
/** @format uint32 */
|
|
10087
|
+
refreshTimeMS: number
|
|
10088
|
+
season: string
|
|
10089
|
+
}
|
|
10090
|
+
|
|
10091
|
+
export interface LolLeaderboardLeaderboardPageResponse {
|
|
10092
|
+
grouping: string
|
|
10093
|
+
season: string
|
|
10094
|
+
region: string
|
|
10095
|
+
name: string
|
|
10096
|
+
/** @format uint32 */
|
|
10097
|
+
startRank: number
|
|
10098
|
+
/** @format uint32 */
|
|
10099
|
+
endRank: number
|
|
10100
|
+
/** @format uint32 */
|
|
10101
|
+
size: number
|
|
10102
|
+
rankings: LolLeaderboardPagedLeaderboardEntry[]
|
|
10103
|
+
}
|
|
10104
|
+
|
|
10105
|
+
export interface LolLeaderboardLeaderboardPlayerRanking {
|
|
10106
|
+
entityId: string
|
|
10107
|
+
/** @format uint32 */
|
|
10108
|
+
ranking: number
|
|
10109
|
+
}
|
|
10110
|
+
|
|
10111
|
+
export interface LolLeaderboardLoginSession {
|
|
10112
|
+
state: LolLeaderboardLoginSessionStates
|
|
10113
|
+
/** @format uint64 */
|
|
10114
|
+
summonerId: number
|
|
10115
|
+
/** @format uint64 */
|
|
10116
|
+
accountId: number
|
|
10117
|
+
idToken: string
|
|
10118
|
+
}
|
|
10119
|
+
|
|
10120
|
+
export type LolLeaderboardLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
10121
|
+
|
|
10122
|
+
export interface LolLeaderboardPagedLeaderboardEntry {
|
|
10123
|
+
entityId: string
|
|
10124
|
+
entityName: string
|
|
10125
|
+
/** @format uint32 */
|
|
10126
|
+
ranking: number
|
|
10127
|
+
/** @format uint32 */
|
|
10128
|
+
score: number
|
|
10129
|
+
anonymous: boolean
|
|
10130
|
+
}
|
|
10131
|
+
|
|
10136
10132
|
export interface LolLeagueSessionAntiAddictionTokenEnvelope {
|
|
10137
10133
|
antiAddictionToken: string
|
|
10138
10134
|
}
|
|
@@ -10184,7 +10180,6 @@ export interface LolLeaverBusterLeaverBusterNotificationResource {
|
|
|
10184
10180
|
punishedGamesRemaining: number
|
|
10185
10181
|
/** @format uint64 */
|
|
10186
10182
|
queueLockoutTimerExpiryUtcMillisDiff: number
|
|
10187
|
-
isWinRequired: boolean
|
|
10188
10183
|
fromRms: boolean
|
|
10189
10184
|
}
|
|
10190
10185
|
|
|
@@ -10241,7 +10236,6 @@ export interface LolLeaverBusterPlayerNotificationResource {
|
|
|
10241
10236
|
export interface LolLeaverBusterRankedRestriction {
|
|
10242
10237
|
/** @format int32 */
|
|
10243
10238
|
punishedGamesRemaining: number
|
|
10244
|
-
isWinRequired: boolean
|
|
10245
10239
|
}
|
|
10246
10240
|
|
|
10247
10241
|
export interface LolLeaverBusterRankedRestrictionEntryDto {
|
|
@@ -10251,7 +10245,6 @@ export interface LolLeaverBusterRankedRestrictionEntryDto {
|
|
|
10251
10245
|
/** @format int32 */
|
|
10252
10246
|
restrictedGamesOriginal: number
|
|
10253
10247
|
rankedRestrictionAckNeeded: boolean
|
|
10254
|
-
winRequired: boolean
|
|
10255
10248
|
}
|
|
10256
10249
|
|
|
10257
10250
|
export interface LolLeaverBusterRankedRestrictionGamesUpdate {
|
|
@@ -10262,7 +10255,6 @@ export interface LolLeaverBusterRankedRestrictionGamesUpdate {
|
|
|
10262
10255
|
export interface LolLeaverBusterRankedRestrictionInfo {
|
|
10263
10256
|
/** @format int32 */
|
|
10264
10257
|
punishedGamesRemaining: number
|
|
10265
|
-
isWinRequired: boolean
|
|
10266
10258
|
needsAck: boolean
|
|
10267
10259
|
}
|
|
10268
10260
|
|
|
@@ -10606,7 +10598,7 @@ export interface LolLobbyEligibilityRestriction {
|
|
|
10606
10598
|
summonerIdsString: string
|
|
10607
10599
|
}
|
|
10608
10600
|
|
|
10609
|
-
export type LolLobbyEligibilityRestrictionCode = "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "MinNormalGamesForRankedRestriction" | "LOLNewPlayerRestriction" | "UnknownRestriction" | "SeasonVersionLockout" | "TFTNewPlayerRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerRankSoloOnlyRestriction" | "PlayerTimePlayedRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerTimeBasedRankRestriction" | "PlayerGameBasedRankRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerReadyCheckFailRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
10601
|
+
export type LolLobbyEligibilityRestrictionCode = "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPInsufficientPlayerChampionCoveragePopularChampion" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "MinNormalGamesForRankedRestriction" | "LOLNewPlayerRestriction" | "UnknownRestriction" | "SeasonVersionLockout" | "TFTNewPlayerRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerRankSoloOnlyRestriction" | "PlayerTimePlayedRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerTimeBasedRankRestriction" | "PlayerGameBasedRankRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerReadyCheckFailRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
10610
10602
|
|
|
10611
10603
|
export interface LolLobbyEntitlementsTokenResource {
|
|
10612
10604
|
accessToken: string
|
|
@@ -10918,6 +10910,7 @@ export interface LolLobbyLobbyDto {
|
|
|
10918
10910
|
multiUserChatPassword: string
|
|
10919
10911
|
mucJwtDto: LolLobbyMucJwtDto
|
|
10920
10912
|
scarcePositions: string[]
|
|
10913
|
+
popularChampions: number[]
|
|
10921
10914
|
}
|
|
10922
10915
|
|
|
10923
10916
|
export interface LolLobbyLobbyGameConfigDto {
|
|
@@ -11074,7 +11067,6 @@ export interface LolLobbyLobbyParticipantDto {
|
|
|
11074
11067
|
subteamIndex?: number
|
|
11075
11068
|
/** @format int8 */
|
|
11076
11069
|
intraSubteamPosition?: number
|
|
11077
|
-
tftNPEQueueBypass?: boolean
|
|
11078
11070
|
quickplayPlayerState?: string
|
|
11079
11071
|
strawberryMapId?: string
|
|
11080
11072
|
playerSlots: LolLobbyQuickPlayPresetSlotDto[]
|
|
@@ -11268,7 +11260,6 @@ export interface LolLobbyPartyMemberMetadataDto {
|
|
|
11268
11260
|
properties?: unknown
|
|
11269
11261
|
playerSlots: LolLobbyQuickPlayPresetSlotDto[]
|
|
11270
11262
|
subteamData?: LolLobbySubteamDataDto
|
|
11271
|
-
tftNPEQueueBypass?: boolean
|
|
11272
11263
|
quickplayPlayerState?: string
|
|
11273
11264
|
}
|
|
11274
11265
|
|
|
@@ -11308,10 +11299,6 @@ export interface LolLobbyPartyStatusDto {
|
|
|
11308
11299
|
partySize: number
|
|
11309
11300
|
}
|
|
11310
11301
|
|
|
11311
|
-
export interface LolLobbyPlatformStats {
|
|
11312
|
-
playerStatSummaries: LolLobbyPlayerStatSummaryContainer
|
|
11313
|
-
}
|
|
11314
|
-
|
|
11315
11302
|
export interface LolLobbyPlayerCollectionDto {
|
|
11316
11303
|
players: LolLobbyPlayerDto[]
|
|
11317
11304
|
}
|
|
@@ -11329,10 +11316,6 @@ export interface LolLobbyPlayerDto {
|
|
|
11329
11316
|
serverUtcMillis: number
|
|
11330
11317
|
parties?: LolLobbyPartyMemberDto[]
|
|
11331
11318
|
currentParty?: LolLobbyPartyDto
|
|
11332
|
-
/** @format int64 */
|
|
11333
|
-
tftGamesPlayed: number
|
|
11334
|
-
/** @format int64 */
|
|
11335
|
-
tftGamesWon: number
|
|
11336
11319
|
registration: LolLobbyRegistrationCredentials
|
|
11337
11320
|
/** @format uint64 */
|
|
11338
11321
|
createdAt: number
|
|
@@ -11340,18 +11323,6 @@ export interface LolLobbyPlayerDto {
|
|
|
11340
11323
|
version: number
|
|
11341
11324
|
}
|
|
11342
11325
|
|
|
11343
|
-
export interface LolLobbyPlayerStatSummary {
|
|
11344
|
-
playerStatSummaryType: string
|
|
11345
|
-
/** @format int32 */
|
|
11346
|
-
wins: number
|
|
11347
|
-
/** @format int32 */
|
|
11348
|
-
gamesPlayed: number
|
|
11349
|
-
}
|
|
11350
|
-
|
|
11351
|
-
export interface LolLobbyPlayerStatSummaryContainer {
|
|
11352
|
-
playerStatSummarySet: LolLobbyPlayerStatSummary[]
|
|
11353
|
-
}
|
|
11354
|
-
|
|
11355
11326
|
export interface LolLobbyPlayerStatus {
|
|
11356
11327
|
currentLobbyStatus?: LolLobbyLobbyStatus
|
|
11357
11328
|
lastQueuedLobbyStatus?: LolLobbyLobbyStatus
|
|
@@ -11608,26 +11579,6 @@ export interface LolLobbySummoner {
|
|
|
11608
11579
|
tagLine: string
|
|
11609
11580
|
}
|
|
11610
11581
|
|
|
11611
|
-
export interface LolLobbyTFTNPESettings {
|
|
11612
|
-
data?: LolLobbyTFTNPESettingsResource
|
|
11613
|
-
/** @format uint32 */
|
|
11614
|
-
schemaVersion: number
|
|
11615
|
-
}
|
|
11616
|
-
|
|
11617
|
-
export interface LolLobbyTFTNPESettingsResource {
|
|
11618
|
-
/** @format int32 */
|
|
11619
|
-
gamesPlayed: number
|
|
11620
|
-
/** @format int32 */
|
|
11621
|
-
gamesWon: number
|
|
11622
|
-
}
|
|
11623
|
-
|
|
11624
|
-
export interface LolLobbyTFTNewPlayerDto {
|
|
11625
|
-
/** @format int32 */
|
|
11626
|
-
tftGamesPlayed: number
|
|
11627
|
-
/** @format int32 */
|
|
11628
|
-
tftGamesWon: number
|
|
11629
|
-
}
|
|
11630
|
-
|
|
11631
11582
|
export interface LolLobbyTeamBuilderActionV1 {
|
|
11632
11583
|
/** @format int32 */
|
|
11633
11584
|
actionId: number
|
|
@@ -11650,6 +11601,7 @@ export interface LolLobbyTeamBuilderAfkCheckStateV1 {
|
|
|
11650
11601
|
inventoryDraft: LolLobbyTeamBuilderTbdInventory
|
|
11651
11602
|
additionalInventoryTypes: string[]
|
|
11652
11603
|
compressAfkCheckPayload: boolean
|
|
11604
|
+
autoAccept: boolean
|
|
11653
11605
|
mucJwtDto: LolLobbyTeamBuilderMucJwtDto
|
|
11654
11606
|
}
|
|
11655
11607
|
|
|
@@ -11913,6 +11865,8 @@ export interface LolLobbyTeamBuilderGameflowQueue {
|
|
|
11913
11865
|
id: number
|
|
11914
11866
|
}
|
|
11915
11867
|
|
|
11868
|
+
export type LolLobbyTeamBuilderGameflowServiceErrorType = "PLAYER_LACKS_VANGUARD_SESSION"
|
|
11869
|
+
|
|
11916
11870
|
export interface LolLobbyTeamBuilderGameflowSession {
|
|
11917
11871
|
gameData: LolLobbyTeamBuilderGameflowGameData
|
|
11918
11872
|
gameClient: LolLobbyTeamBuilderGameflowGameClient
|
|
@@ -12228,6 +12182,7 @@ export interface LolLobbyTeamBuilderTbdInventory {
|
|
|
12228
12182
|
initialSpellIds: number[]
|
|
12229
12183
|
allChampionIds: number[]
|
|
12230
12184
|
disabledChampionIds: number[]
|
|
12185
|
+
crowdFavoriteChampionIds: number[]
|
|
12231
12186
|
}
|
|
12232
12187
|
|
|
12233
12188
|
export interface LolLobbyTeamBuilderTeamBoost {
|
|
@@ -12280,6 +12235,13 @@ export interface LolLobbyUserResource {
|
|
|
12280
12235
|
lol: Record<string, string>
|
|
12281
12236
|
}
|
|
12282
12237
|
|
|
12238
|
+
export interface LolLockAndLoadHomeHubsWaits {
|
|
12239
|
+
/** @format uint8 */
|
|
12240
|
+
initialWait: number
|
|
12241
|
+
/** @format uint8 */
|
|
12242
|
+
additionalWait: number
|
|
12243
|
+
}
|
|
12244
|
+
|
|
12283
12245
|
export interface LolLoginAccessToken {
|
|
12284
12246
|
token: string
|
|
12285
12247
|
scopes: string[]
|
|
@@ -12350,7 +12312,7 @@ export interface LolLoginLoginConnectionState {
|
|
|
12350
12312
|
}
|
|
12351
12313
|
|
|
12352
12314
|
export interface LolLoginLoginError {
|
|
12353
|
-
|
|
12315
|
+
errorCode: string
|
|
12354
12316
|
messageId: string
|
|
12355
12317
|
description: string
|
|
12356
12318
|
}
|
|
@@ -12580,6 +12542,50 @@ export interface LolLootEntityInstance {
|
|
|
12580
12542
|
milestones: LolLootMilestoneInstance[]
|
|
12581
12543
|
}
|
|
12582
12544
|
|
|
12545
|
+
export interface LolLootFSC {
|
|
12546
|
+
id: string
|
|
12547
|
+
canvas: LolLootFSCCanvas
|
|
12548
|
+
media: LolLootFSCMedia
|
|
12549
|
+
rewards: LolLootFSCRewards[]
|
|
12550
|
+
}
|
|
12551
|
+
|
|
12552
|
+
export interface LolLootFSCCanvas {
|
|
12553
|
+
title: string
|
|
12554
|
+
subtitle: string
|
|
12555
|
+
canvasBackgroundImage: string
|
|
12556
|
+
canvasSize: LolLootFSCCanvasSize
|
|
12557
|
+
canvasDesign: string
|
|
12558
|
+
}
|
|
12559
|
+
|
|
12560
|
+
export type LolLootFSCCanvasSize = "FULL" | "LARGE" | "MEDIUM" | "SMALL"
|
|
12561
|
+
|
|
12562
|
+
export interface LolLootFSCMedia {
|
|
12563
|
+
introAnimation: string
|
|
12564
|
+
introAnimationAudio: string
|
|
12565
|
+
introLowSpecImage: string
|
|
12566
|
+
loopAnimation: string
|
|
12567
|
+
loopAnimationAudio: string
|
|
12568
|
+
transitionAnimation: string
|
|
12569
|
+
transitionAnimationAudio: string
|
|
12570
|
+
}
|
|
12571
|
+
|
|
12572
|
+
export interface LolLootFSCRewards {
|
|
12573
|
+
image: string
|
|
12574
|
+
imageOverlay: string
|
|
12575
|
+
title: string
|
|
12576
|
+
subtitle: string
|
|
12577
|
+
}
|
|
12578
|
+
|
|
12579
|
+
export interface LolLootGameDataNexusFinisher {
|
|
12580
|
+
/** @format int32 */
|
|
12581
|
+
itemId: number
|
|
12582
|
+
name: string
|
|
12583
|
+
translatedName: string
|
|
12584
|
+
iconPath: string
|
|
12585
|
+
splashPath: string
|
|
12586
|
+
videoPath: string
|
|
12587
|
+
}
|
|
12588
|
+
|
|
12583
12589
|
export interface LolLootGameDataSummonerEmote {
|
|
12584
12590
|
/** @format int64 */
|
|
12585
12591
|
id: number
|
|
@@ -12849,7 +12855,7 @@ export interface LolLootLootTableGdsResource {
|
|
|
12849
12855
|
dropChance: LolLootLootDropTableEntryGdsResource[]
|
|
12850
12856
|
}
|
|
12851
12857
|
|
|
12852
|
-
export type LolLootLootType = "TFT_Damage_Skin" | "TFT_Map_Skin" | "SkinBorder" | "Boost" | "Statstone_Shard" | "Statstone" | "Egg_Color" | "Egg" | "Companion" | "SummonerIcon" | "Skin_Rental" | "Skin" | "WardSkin" | "Material" | "Currency" | "Chest"
|
|
12858
|
+
export type LolLootLootType = "Nexus_Finisher" | "TFT_Damage_Skin" | "TFT_Map_Skin" | "SkinBorder" | "Boost" | "Statstone_Shard" | "Statstone" | "Egg_Color" | "Egg" | "Companion" | "SummonerIcon" | "Skin_Rental" | "Skin" | "WardSkin" | "Material" | "Currency" | "Chest"
|
|
12853
12859
|
|
|
12854
12860
|
export interface LolLootMassDisenchantClientConfig {
|
|
12855
12861
|
/** @format int16 */
|
|
@@ -13376,6 +13382,14 @@ export interface LolLoyaltyRmsEntitlementPayload {
|
|
|
13376
13382
|
resourceOperation: string
|
|
13377
13383
|
}
|
|
13378
13384
|
|
|
13385
|
+
export interface LolMacGraphicsUpgradeLocalSettingsCategory {
|
|
13386
|
+
data: unknown
|
|
13387
|
+
/** @format int32 */
|
|
13388
|
+
schemaVersion: number
|
|
13389
|
+
}
|
|
13390
|
+
|
|
13391
|
+
export type LolMacGraphicsUpgradeMacGraphicsUpgradeNotificationType = "TURN_OFF_LEGACY_MODE" | "HARDWARE_UPGRADE" | "NONE"
|
|
13392
|
+
|
|
13379
13393
|
export interface LolMapsGameModeSpellList {
|
|
13380
13394
|
spells: number[]
|
|
13381
13395
|
}
|
|
@@ -13556,8 +13570,13 @@ export interface LolMarketplaceRiotMessagingServiceMessage {
|
|
|
13556
13570
|
|
|
13557
13571
|
export interface LolMarketplaceRotationalShopItemData {
|
|
13558
13572
|
backgroundTextureLCU: string
|
|
13573
|
+
contentID: string
|
|
13559
13574
|
descriptionTraKey: string
|
|
13560
13575
|
description: string
|
|
13576
|
+
name: string
|
|
13577
|
+
standaloneLoadoutsLargeIcon: string
|
|
13578
|
+
videoID: string
|
|
13579
|
+
redeemIconTexture: string
|
|
13561
13580
|
}
|
|
13562
13581
|
|
|
13563
13582
|
export interface LolMarketplaceStoreDto {
|
|
@@ -14289,7 +14308,7 @@ export interface LolMissionsGameflowSession {
|
|
|
14289
14308
|
phase: LolMissionsGameflowPhase
|
|
14290
14309
|
}
|
|
14291
14310
|
|
|
14292
|
-
export type LolMissionsGrantStatus = "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
14311
|
+
export type LolMissionsGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
14293
14312
|
|
|
14294
14313
|
export interface LolMissionsInventoryItemWithPayload {
|
|
14295
14314
|
/** @format int32 */
|
|
@@ -14460,6 +14479,271 @@ export interface LolModeProgressionLoadoutsSlot {
|
|
|
14460
14479
|
itemId: number
|
|
14461
14480
|
}
|
|
14462
14481
|
|
|
14482
|
+
export interface LolNachoBannerOddsInfo {
|
|
14483
|
+
id: string
|
|
14484
|
+
name: string
|
|
14485
|
+
productId: string
|
|
14486
|
+
rewardTables: LolNachoNachoRollRewardsTable[]
|
|
14487
|
+
}
|
|
14488
|
+
|
|
14489
|
+
export interface LolNachoBlessingTokenPurchaseRequest {
|
|
14490
|
+
/** @format uint32 */
|
|
14491
|
+
quantity: number
|
|
14492
|
+
}
|
|
14493
|
+
|
|
14494
|
+
export interface LolNachoCapCounterData {
|
|
14495
|
+
/** @format uint32 */
|
|
14496
|
+
amount: number
|
|
14497
|
+
/** @format uint32 */
|
|
14498
|
+
version: number
|
|
14499
|
+
active: boolean
|
|
14500
|
+
lastModifiedDate: string
|
|
14501
|
+
}
|
|
14502
|
+
|
|
14503
|
+
export interface LolNachoCapDropsDropTableDisplayMetadata {
|
|
14504
|
+
/** @format uint8 */
|
|
14505
|
+
version: number
|
|
14506
|
+
oddsTree: LolNachoDropsOddsTreeNodeDTO
|
|
14507
|
+
}
|
|
14508
|
+
|
|
14509
|
+
export interface LolNachoClientConfigNachoBanners {
|
|
14510
|
+
enabled: boolean
|
|
14511
|
+
bannerList: LolNachoNachoActiveBanner[]
|
|
14512
|
+
}
|
|
14513
|
+
|
|
14514
|
+
export interface LolNachoDropsOddsTreeNodeDTO {
|
|
14515
|
+
nodeId: string
|
|
14516
|
+
/** @format float */
|
|
14517
|
+
odds: number
|
|
14518
|
+
children: LolNachoDropsOddsTreeNodeDTO[]
|
|
14519
|
+
fallbackChildren: LolNachoDropsOddsTreeNodeDTO[]
|
|
14520
|
+
itemInstanceId: string
|
|
14521
|
+
type: string
|
|
14522
|
+
parentItemInstanceId: string
|
|
14523
|
+
/** @format uint32 */
|
|
14524
|
+
priority: number
|
|
14525
|
+
}
|
|
14526
|
+
|
|
14527
|
+
export interface LolNachoFinalPurchaseUnitDto {
|
|
14528
|
+
fulfillment: LolNachoFulfillmentDto
|
|
14529
|
+
}
|
|
14530
|
+
|
|
14531
|
+
export interface LolNachoFulfillmentDto {
|
|
14532
|
+
results: unknown
|
|
14533
|
+
}
|
|
14534
|
+
|
|
14535
|
+
export interface LolNachoGameDataNachoBanner {
|
|
14536
|
+
id: string
|
|
14537
|
+
bannerCurrencyId: string
|
|
14538
|
+
activationTime: string
|
|
14539
|
+
deactivationTime: string
|
|
14540
|
+
chasePityCounter: LolNachoGameDataPityCounter
|
|
14541
|
+
/** @format uint32 */
|
|
14542
|
+
chasePityThreshold: number
|
|
14543
|
+
/** @format uint32 */
|
|
14544
|
+
highlightPityThreshold: number
|
|
14545
|
+
bannerBackgroundTexture: string
|
|
14546
|
+
bannerBackgroundParallax: string
|
|
14547
|
+
name: string
|
|
14548
|
+
description: string
|
|
14549
|
+
bannerChaseAnimationWebmPath: string
|
|
14550
|
+
bannerChaseAnimationParallax: string
|
|
14551
|
+
rollVignetteSkinIntroWebmPath: string
|
|
14552
|
+
rollVignetteSkinIntroSfxPath: string
|
|
14553
|
+
chaseCelebrationIntroWebmPath: string
|
|
14554
|
+
chaseCelebrationVo: LolNachoGameDataNachoBannerVo
|
|
14555
|
+
hubIntroVo: LolNachoGameDataNachoBannerVo
|
|
14556
|
+
rollVignette: LolNachoNachoVignette
|
|
14557
|
+
rollCardTierOne: LolNachoNachoRollCard
|
|
14558
|
+
rollCardTierTwo: LolNachoNachoRollCard
|
|
14559
|
+
rollCardTierThree: LolNachoNachoRollCard
|
|
14560
|
+
}
|
|
14561
|
+
|
|
14562
|
+
export interface LolNachoGameDataNachoBannerTable {
|
|
14563
|
+
id: string
|
|
14564
|
+
name: string
|
|
14565
|
+
translatedName: string
|
|
14566
|
+
rewardTexturePath: string
|
|
14567
|
+
chromaRewardTexturePath: string
|
|
14568
|
+
children: LolNachoGameDataNachoBannerTableEntry[]
|
|
14569
|
+
}
|
|
14570
|
+
|
|
14571
|
+
export interface LolNachoGameDataNachoBannerTableEntry {
|
|
14572
|
+
bannerNode: LolNachoGameDataNachoBannerTable
|
|
14573
|
+
}
|
|
14574
|
+
|
|
14575
|
+
export interface LolNachoGameDataNachoBannerVo {
|
|
14576
|
+
path: string
|
|
14577
|
+
/** @format uint32 */
|
|
14578
|
+
defaultDelayMillis: number
|
|
14579
|
+
localeOverrides: LolNachoGameDataNachoBannerVoOverrideOptions[]
|
|
14580
|
+
}
|
|
14581
|
+
|
|
14582
|
+
export interface LolNachoGameDataNachoBannerVoOverrideOptions {
|
|
14583
|
+
locale: string
|
|
14584
|
+
/** @format uint32 */
|
|
14585
|
+
delayMillis: number
|
|
14586
|
+
}
|
|
14587
|
+
|
|
14588
|
+
export interface LolNachoGameDataNachoReward {
|
|
14589
|
+
itemInstanceId: string
|
|
14590
|
+
translatedName: string
|
|
14591
|
+
/** @format uint32 */
|
|
14592
|
+
id: number
|
|
14593
|
+
/** @format uint32 */
|
|
14594
|
+
quantity: number
|
|
14595
|
+
}
|
|
14596
|
+
|
|
14597
|
+
export interface LolNachoGameDataPityCounter {
|
|
14598
|
+
id: string
|
|
14599
|
+
name: string
|
|
14600
|
+
}
|
|
14601
|
+
|
|
14602
|
+
export interface LolNachoLoginSession {
|
|
14603
|
+
state: LolNachoLoginSessionStates
|
|
14604
|
+
/** @format uint64 */
|
|
14605
|
+
summonerId: number
|
|
14606
|
+
/** @format uint64 */
|
|
14607
|
+
accountId: number
|
|
14608
|
+
puuid: string
|
|
14609
|
+
}
|
|
14610
|
+
|
|
14611
|
+
export type LolNachoLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
14612
|
+
|
|
14613
|
+
export interface LolNachoNachoActiveBanner {
|
|
14614
|
+
storeId: string
|
|
14615
|
+
catalogEntryId: string
|
|
14616
|
+
tokenCatalogEntryId: string
|
|
14617
|
+
/** @format uint8 */
|
|
14618
|
+
version: number
|
|
14619
|
+
}
|
|
14620
|
+
|
|
14621
|
+
export interface LolNachoNachoBannersResponse {
|
|
14622
|
+
id: string
|
|
14623
|
+
bannerBackgroundTexture: string
|
|
14624
|
+
bannerBackgroundParallax: string
|
|
14625
|
+
name: string
|
|
14626
|
+
description: string
|
|
14627
|
+
bannerChaseAnimationWebmPath: string
|
|
14628
|
+
bannerChaseAnimationParallax: string
|
|
14629
|
+
chasePityCounter: LolNachoGameDataPityCounter
|
|
14630
|
+
bannerDeactivationDateTime: string
|
|
14631
|
+
/** @format uint32 */
|
|
14632
|
+
chasePityThreshold: number
|
|
14633
|
+
/** @format uint32 */
|
|
14634
|
+
highlightPityThreshold: number
|
|
14635
|
+
rollVignetteSkinIntroWebmPath: string
|
|
14636
|
+
rollVignetteSkinIntroSfxPath: string
|
|
14637
|
+
chaseCelebrationIntroWebmPath: string
|
|
14638
|
+
chaseCelebrationVo: LolNachoGameDataNachoBannerVo
|
|
14639
|
+
hubIntroVo: LolNachoGameDataNachoBannerVo
|
|
14640
|
+
rollVignette: LolNachoNachoVignette
|
|
14641
|
+
rollCardTierOne: LolNachoNachoRollCard
|
|
14642
|
+
rollCardTierTwo: LolNachoNachoRollCard
|
|
14643
|
+
rollCardTierThree: LolNachoNachoRollCard
|
|
14644
|
+
}
|
|
14645
|
+
|
|
14646
|
+
export interface LolNachoNachoPurchaseResponse {
|
|
14647
|
+
id: string
|
|
14648
|
+
status: LolNachoNachoPurchaseResponseStatus
|
|
14649
|
+
rollResults: LolNachoNachoRewardData[]
|
|
14650
|
+
}
|
|
14651
|
+
|
|
14652
|
+
export type LolNachoNachoPurchaseResponseStatus = "Failure" | "Success" | "Pending" | "None"
|
|
14653
|
+
|
|
14654
|
+
export interface LolNachoNachoRewardData {
|
|
14655
|
+
/** @format float */
|
|
14656
|
+
odds: number
|
|
14657
|
+
itemInstanceId: string
|
|
14658
|
+
translatedName: string
|
|
14659
|
+
/** @format uint32 */
|
|
14660
|
+
id: number
|
|
14661
|
+
type: string
|
|
14662
|
+
/** @format uint32 */
|
|
14663
|
+
parentId: number
|
|
14664
|
+
/** @format uint32 */
|
|
14665
|
+
priority: number
|
|
14666
|
+
isChaseItem: boolean
|
|
14667
|
+
/** @format uint32 */
|
|
14668
|
+
quantity: number
|
|
14669
|
+
}
|
|
14670
|
+
|
|
14671
|
+
export interface LolNachoNachoRollCard {
|
|
14672
|
+
cardPath: string
|
|
14673
|
+
cardBackPath: string
|
|
14674
|
+
cardWebmTopPath: string
|
|
14675
|
+
cardWebmBotPath: string
|
|
14676
|
+
cardWebmHoverPath: string
|
|
14677
|
+
cardWebmLoopPath: string
|
|
14678
|
+
}
|
|
14679
|
+
|
|
14680
|
+
export interface LolNachoNachoRollRewardsTable {
|
|
14681
|
+
/** @format float */
|
|
14682
|
+
odds: number
|
|
14683
|
+
translatedName: string
|
|
14684
|
+
/** @format uint32 */
|
|
14685
|
+
priority: number
|
|
14686
|
+
children: LolNachoNachoRewardData[]
|
|
14687
|
+
fallbackChildren: LolNachoNachoRewardData[]
|
|
14688
|
+
}
|
|
14689
|
+
|
|
14690
|
+
export interface LolNachoNachoVignette {
|
|
14691
|
+
introTierOneWebmPath: string
|
|
14692
|
+
introTierOneMultiWebmPath: string
|
|
14693
|
+
introTierTwoWebmPath: string
|
|
14694
|
+
introTierTwoMultiWebmPath: string
|
|
14695
|
+
introTierThreeWebmPath: string
|
|
14696
|
+
introTierThreeMultiWebmPath: string
|
|
14697
|
+
}
|
|
14698
|
+
|
|
14699
|
+
export interface LolNachoPaymentDto {
|
|
14700
|
+
/** @format double */
|
|
14701
|
+
discountPercent: number
|
|
14702
|
+
/** @format int64 */
|
|
14703
|
+
discountedDelta: number
|
|
14704
|
+
name: string
|
|
14705
|
+
/** @format int64 */
|
|
14706
|
+
finalDelta: number
|
|
14707
|
+
/** @format int64 */
|
|
14708
|
+
delta: number
|
|
14709
|
+
}
|
|
14710
|
+
|
|
14711
|
+
export interface LolNachoPaymentOptionDto {
|
|
14712
|
+
key: string
|
|
14713
|
+
payments: LolNachoPaymentDto[]
|
|
14714
|
+
}
|
|
14715
|
+
|
|
14716
|
+
export interface LolNachoPurchaseUnitDto {
|
|
14717
|
+
paymentOptions: LolNachoPaymentOptionDto[]
|
|
14718
|
+
fulfillment: LolNachoFulfillmentDto
|
|
14719
|
+
}
|
|
14720
|
+
|
|
14721
|
+
export interface LolNachoShoppeCatalogEntry {
|
|
14722
|
+
id: string
|
|
14723
|
+
name: string
|
|
14724
|
+
productId: string
|
|
14725
|
+
purchaseUnits: LolNachoPurchaseUnitDto[]
|
|
14726
|
+
purchaseVisibility: string
|
|
14727
|
+
refundRule: string
|
|
14728
|
+
purchaseLimits: LolNachoVelocityLimitDeltaDto[]
|
|
14729
|
+
}
|
|
14730
|
+
|
|
14731
|
+
export interface LolNachoStoreDigest {
|
|
14732
|
+
id: string
|
|
14733
|
+
}
|
|
14734
|
+
|
|
14735
|
+
export interface LolNachoStoreDigests {
|
|
14736
|
+
digests: LolNachoStoreDigest[]
|
|
14737
|
+
}
|
|
14738
|
+
|
|
14739
|
+
export interface LolNachoVelocityLimitDeltaDto {
|
|
14740
|
+
ruleId: string
|
|
14741
|
+
/** @format int64 */
|
|
14742
|
+
delta: number
|
|
14743
|
+
/** @format int64 */
|
|
14744
|
+
remaining: number
|
|
14745
|
+
}
|
|
14746
|
+
|
|
14463
14747
|
export interface LolNpeRewardsAccountSettingsData {
|
|
14464
14748
|
login: LolNpeRewardsLoginSeriesSettings
|
|
14465
14749
|
challenges: LolNpeRewardsChallengesSettings
|
|
@@ -14486,6 +14770,11 @@ export interface LolNpeRewardsChallengesSettings {
|
|
|
14486
14770
|
totalCount: number
|
|
14487
14771
|
}
|
|
14488
14772
|
|
|
14773
|
+
export interface LolNpeRewardsCoopAiRoutingExperiment {
|
|
14774
|
+
enabled: boolean
|
|
14775
|
+
routingData: LolNpeRewardsRoutingData[]
|
|
14776
|
+
}
|
|
14777
|
+
|
|
14489
14778
|
export interface LolNpeRewardsLoginSeriesSettings {
|
|
14490
14779
|
allRewardsClaimed: boolean
|
|
14491
14780
|
lastCompletedMissionInternalName: string
|
|
@@ -14527,6 +14816,16 @@ export interface LolNpeRewardsObjective {
|
|
|
14527
14816
|
progress: LolNpeRewardsProgress
|
|
14528
14817
|
}
|
|
14529
14818
|
|
|
14819
|
+
export interface LolNpeRewardsPoroExperimentData {
|
|
14820
|
+
coopAiRoutingExperiment: LolNpeRewardsCoopAiRoutingExperiment
|
|
14821
|
+
/** @format int32 */
|
|
14822
|
+
summonerLevel: number
|
|
14823
|
+
}
|
|
14824
|
+
|
|
14825
|
+
export interface LolNpeRewardsPoroExperimentPlayerSettingsData {
|
|
14826
|
+
coopAiRoutingEnabled: string
|
|
14827
|
+
}
|
|
14828
|
+
|
|
14530
14829
|
export interface LolNpeRewardsProgress {
|
|
14531
14830
|
/** @format int32 */
|
|
14532
14831
|
lastViewedProgress: number
|
|
@@ -14573,9 +14872,25 @@ export interface LolNpeRewardsRewardSeriesState {
|
|
|
14573
14872
|
allRewardsClaimed: boolean
|
|
14574
14873
|
}
|
|
14575
14874
|
|
|
14875
|
+
export interface LolNpeRewardsRoutingData {
|
|
14876
|
+
/** @format uint32 */
|
|
14877
|
+
queueId: number
|
|
14878
|
+
/** @format uint32 */
|
|
14879
|
+
minLevel: number
|
|
14880
|
+
/** @format uint32 */
|
|
14881
|
+
maxLevel: number
|
|
14882
|
+
}
|
|
14883
|
+
|
|
14884
|
+
export interface LolNpeRewardsSettingsPoroExperimentResource {
|
|
14885
|
+
/** @format int32 */
|
|
14886
|
+
schemaVersion: number
|
|
14887
|
+
data: LolNpeRewardsPoroExperimentPlayerSettingsData
|
|
14888
|
+
}
|
|
14889
|
+
|
|
14576
14890
|
export interface LolNpeRewardsSummoner {
|
|
14577
14891
|
/** @format uint32 */
|
|
14578
14892
|
summonerLevel: number
|
|
14893
|
+
puuid: string
|
|
14579
14894
|
}
|
|
14580
14895
|
|
|
14581
14896
|
export interface LolNpeTutorialPathAccountSettingsCategoryResource {
|
|
@@ -14809,59 +15124,357 @@ export type LolNpeTutorialPathTutorialStatus = "COMPLETED" | "UNLOCKED" | "LOCKE
|
|
|
14809
15124
|
|
|
14810
15125
|
export type LolNpeTutorialPathTutorialType = "REWARD" | "CARD"
|
|
14811
15126
|
|
|
14812
|
-
export interface
|
|
14813
|
-
|
|
14814
|
-
|
|
15127
|
+
export interface LolObjectivesCollectionsChampion {
|
|
15128
|
+
/** @format int32 */
|
|
15129
|
+
id: number
|
|
15130
|
+
freeToPlay: boolean
|
|
15131
|
+
ownership: LolObjectivesCollectionsOwnership
|
|
15132
|
+
skins: LolObjectivesCollectionsChampionSkin[]
|
|
14815
15133
|
}
|
|
14816
15134
|
|
|
14817
|
-
export interface
|
|
14818
|
-
|
|
14819
|
-
|
|
14820
|
-
|
|
14821
|
-
|
|
15135
|
+
export interface LolObjectivesCollectionsChampionSkin {
|
|
15136
|
+
/** @format int32 */
|
|
15137
|
+
championId: number
|
|
15138
|
+
/** @format int32 */
|
|
15139
|
+
id: number
|
|
15140
|
+
ownership: LolObjectivesCollectionsOwnership
|
|
14822
15141
|
}
|
|
14823
15142
|
|
|
14824
|
-
export interface
|
|
14825
|
-
|
|
14826
|
-
|
|
14827
|
-
|
|
14828
|
-
|
|
14829
|
-
"timeOfLastUpToDateCheckISO8601"?: string
|
|
14830
|
-
isCorrupted: boolean
|
|
14831
|
-
progress?: LolPatchComponentActionProgress
|
|
15143
|
+
export interface LolObjectivesCollectionsOwnership {
|
|
15144
|
+
loyaltyReward: boolean
|
|
15145
|
+
xboxGPReward: boolean
|
|
15146
|
+
owned: boolean
|
|
15147
|
+
rental: LolObjectivesCollectionsRental
|
|
14832
15148
|
}
|
|
14833
15149
|
|
|
14834
|
-
export
|
|
14835
|
-
|
|
14836
|
-
export interface LolPatchComponentStateProgress {
|
|
14837
|
-
/** @format uint64 */
|
|
14838
|
-
bytesComplete: number
|
|
14839
|
-
/** @format uint64 */
|
|
14840
|
-
bytesRequired: number
|
|
14841
|
-
/** @format double */
|
|
14842
|
-
bytesPerSecond: number
|
|
15150
|
+
export interface LolObjectivesCollectionsRental {
|
|
15151
|
+
rented: boolean
|
|
14843
15152
|
}
|
|
14844
15153
|
|
|
14845
|
-
export
|
|
15154
|
+
export interface LolObjectivesCollectionsSummoner {
|
|
15155
|
+
/** @format int32 */
|
|
15156
|
+
summonerLevel: number
|
|
15157
|
+
}
|
|
14846
15158
|
|
|
14847
|
-
export interface
|
|
14848
|
-
|
|
14849
|
-
token: string
|
|
14850
|
-
entitlements: string[]
|
|
15159
|
+
export interface LolObjectivesCollectionsSummonerIcons {
|
|
15160
|
+
icons: number[]
|
|
14851
15161
|
}
|
|
14852
15162
|
|
|
14853
|
-
export interface
|
|
14854
|
-
|
|
14855
|
-
|
|
15163
|
+
export interface LolObjectivesCollectionsWardSkin {
|
|
15164
|
+
/** @format int64 */
|
|
15165
|
+
id: number
|
|
15166
|
+
ownership: LolObjectivesCollectionsOwnership
|
|
14856
15167
|
}
|
|
14857
15168
|
|
|
14858
|
-
export
|
|
14859
|
-
|
|
14860
|
-
|
|
14861
|
-
|
|
15169
|
+
export type LolObjectivesGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
15170
|
+
|
|
15171
|
+
export interface LolObjectivesGameflowSession {
|
|
15172
|
+
phase: LolObjectivesGameflowPhase
|
|
14862
15173
|
}
|
|
14863
15174
|
|
|
14864
|
-
export type
|
|
15175
|
+
export type LolObjectivesGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
15176
|
+
|
|
15177
|
+
export interface LolObjectivesInventoryItemWithPayload {
|
|
15178
|
+
/** @format int32 */
|
|
15179
|
+
itemId: number
|
|
15180
|
+
}
|
|
15181
|
+
|
|
15182
|
+
export interface LolObjectivesLoginSession {
|
|
15183
|
+
/** @format uint64 */
|
|
15184
|
+
accountId: number
|
|
15185
|
+
/** @format uint64 */
|
|
15186
|
+
summonerId: number
|
|
15187
|
+
puuid: string
|
|
15188
|
+
platformId: string
|
|
15189
|
+
}
|
|
15190
|
+
|
|
15191
|
+
export type LolObjectivesLoyaltyStatus = "DISABLED" | "REVOKE" | "CHANGE" | "EXPIRY" | "REWARDS_GRANT" | "LEGACY"
|
|
15192
|
+
|
|
15193
|
+
export interface LolObjectivesLoyaltyStatusNotification {
|
|
15194
|
+
status: LolObjectivesLoyaltyStatus
|
|
15195
|
+
}
|
|
15196
|
+
|
|
15197
|
+
export interface LolObjectivesMissionAsset {
|
|
15198
|
+
internalName: string
|
|
15199
|
+
path: string
|
|
15200
|
+
iconNeedsFrame: boolean
|
|
15201
|
+
}
|
|
15202
|
+
|
|
15203
|
+
export interface LolObjectivesMissionsNotificationResource {
|
|
15204
|
+
backgroundUrl: string
|
|
15205
|
+
created: string
|
|
15206
|
+
critical: boolean
|
|
15207
|
+
data: Record<string, string>
|
|
15208
|
+
detailKey: string
|
|
15209
|
+
expires: string
|
|
15210
|
+
iconUrl: string
|
|
15211
|
+
/** @format uint64 */
|
|
15212
|
+
id: number
|
|
15213
|
+
source: string
|
|
15214
|
+
state: string
|
|
15215
|
+
titleKey: string
|
|
15216
|
+
type: string
|
|
15217
|
+
}
|
|
15218
|
+
|
|
15219
|
+
export interface LolObjectivesMissionsSettingsDataResource {
|
|
15220
|
+
selected_series: string
|
|
15221
|
+
}
|
|
15222
|
+
|
|
15223
|
+
export interface LolObjectivesNonPooledObjectives {
|
|
15224
|
+
id: string
|
|
15225
|
+
tag: string[]
|
|
15226
|
+
localizedTag: string
|
|
15227
|
+
objectivesType: string
|
|
15228
|
+
/** @format uint64 */
|
|
15229
|
+
startDate: number
|
|
15230
|
+
/** @format uint64 */
|
|
15231
|
+
endDate: number
|
|
15232
|
+
/** @format uint8 */
|
|
15233
|
+
priority: number
|
|
15234
|
+
backgroundImage: string
|
|
15235
|
+
isEnabled: boolean
|
|
15236
|
+
localizedTitle: string
|
|
15237
|
+
localizedDescription: string
|
|
15238
|
+
}
|
|
15239
|
+
|
|
15240
|
+
export interface LolObjectivesObjectivesContainer {
|
|
15241
|
+
pooledObjectives: LolObjectivesPooledObjectives[]
|
|
15242
|
+
nonPooledObjectives: LolObjectivesNonPooledObjectives[]
|
|
15243
|
+
}
|
|
15244
|
+
|
|
15245
|
+
export interface LolObjectivesObjectivesGroup {
|
|
15246
|
+
backgroundImage: string
|
|
15247
|
+
/** @format uint64 */
|
|
15248
|
+
startDate: number
|
|
15249
|
+
/** @format uint64 */
|
|
15250
|
+
endDate: number
|
|
15251
|
+
objectives: LolObjectivesObjectivesContainer[]
|
|
15252
|
+
isActive: boolean
|
|
15253
|
+
gameType: string
|
|
15254
|
+
}
|
|
15255
|
+
|
|
15256
|
+
export interface LolObjectivesObjectivesHub {
|
|
15257
|
+
objectivesGroup: LolObjectivesObjectivesGroup[]
|
|
15258
|
+
}
|
|
15259
|
+
|
|
15260
|
+
export interface LolObjectivesObjectivesTitle {
|
|
15261
|
+
localizedTitle: string
|
|
15262
|
+
localizedDescription: string
|
|
15263
|
+
}
|
|
15264
|
+
|
|
15265
|
+
export interface LolObjectivesPlayerUpdateResponse {
|
|
15266
|
+
playerMissions: PlayerMissionDTO[]
|
|
15267
|
+
playerSeries: SeriesDTO[]
|
|
15268
|
+
}
|
|
15269
|
+
|
|
15270
|
+
export interface LolObjectivesPluginRegionLocaleChangedEvent {
|
|
15271
|
+
locale: string
|
|
15272
|
+
}
|
|
15273
|
+
|
|
15274
|
+
export interface LolObjectivesPooledObjectives {
|
|
15275
|
+
id: string
|
|
15276
|
+
tag: string[]
|
|
15277
|
+
localizedTag: string
|
|
15278
|
+
objectivesType: string
|
|
15279
|
+
/** @format uint64 */
|
|
15280
|
+
startDate: number
|
|
15281
|
+
/** @format uint64 */
|
|
15282
|
+
endDate: number
|
|
15283
|
+
/** @format uint8 */
|
|
15284
|
+
priority: number
|
|
15285
|
+
backgroundImage: string
|
|
15286
|
+
isEnabled: boolean
|
|
15287
|
+
objectivesTitle: LolObjectivesObjectivesTitle[]
|
|
15288
|
+
/** @format uint8 */
|
|
15289
|
+
maxRefresh: number
|
|
15290
|
+
/** @format uint16 */
|
|
15291
|
+
refreshInterval: number
|
|
15292
|
+
}
|
|
15293
|
+
|
|
15294
|
+
export interface LolObjectivesRewardGrant {
|
|
15295
|
+
info: LolObjectivesRewardGrantInfo
|
|
15296
|
+
rewardGroup: LolObjectivesRewardGroup
|
|
15297
|
+
}
|
|
15298
|
+
|
|
15299
|
+
export interface LolObjectivesRewardGrantElement {
|
|
15300
|
+
id: string
|
|
15301
|
+
itemId: string
|
|
15302
|
+
itemType: string
|
|
15303
|
+
fulfillmentSource: string
|
|
15304
|
+
rewardStatus: LolObjectivesRewardStatus
|
|
15305
|
+
/** @format int32 */
|
|
15306
|
+
quantity: number
|
|
15307
|
+
media: Record<string, string>
|
|
15308
|
+
localizations: Record<string, string>
|
|
15309
|
+
}
|
|
15310
|
+
|
|
15311
|
+
export interface LolObjectivesRewardGrantInfo {
|
|
15312
|
+
id: string
|
|
15313
|
+
granteeId: string
|
|
15314
|
+
rewardGroupId: string
|
|
15315
|
+
status: LolObjectivesGrantStatus
|
|
15316
|
+
grantElements: LolObjectivesRewardGrantElement[]
|
|
15317
|
+
selectedIds: string[]
|
|
15318
|
+
viewed: boolean
|
|
15319
|
+
}
|
|
15320
|
+
|
|
15321
|
+
export interface LolObjectivesRewardGroup {
|
|
15322
|
+
id: string
|
|
15323
|
+
internalName: string
|
|
15324
|
+
productId: string
|
|
15325
|
+
types: string[]
|
|
15326
|
+
rewards: LolObjectivesSvcReward[]
|
|
15327
|
+
childRewardGroupIds: string[]
|
|
15328
|
+
rewardStrategy: LolObjectivesRewardStrategy
|
|
15329
|
+
selectionStrategyConfig: LolObjectivesSelectionStrategyConfig
|
|
15330
|
+
active: boolean
|
|
15331
|
+
media: Record<string, string>
|
|
15332
|
+
localizations: Record<string, string>
|
|
15333
|
+
}
|
|
15334
|
+
|
|
15335
|
+
export interface LolObjectivesRewardGroupsSelection {
|
|
15336
|
+
rewardGroups: string[]
|
|
15337
|
+
}
|
|
15338
|
+
|
|
15339
|
+
export type LolObjectivesRewardStatus = "FULFILLED" | "PENDING"
|
|
15340
|
+
|
|
15341
|
+
export type LolObjectivesRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
15342
|
+
|
|
15343
|
+
export interface LolObjectivesRewardsProductConfig {
|
|
15344
|
+
enabled: boolean
|
|
15345
|
+
serviceUrl: string
|
|
15346
|
+
}
|
|
15347
|
+
|
|
15348
|
+
export interface LolObjectivesSelectionStrategyConfig {
|
|
15349
|
+
/** @format uint32 */
|
|
15350
|
+
minSelectionsAllowed: number
|
|
15351
|
+
/** @format uint32 */
|
|
15352
|
+
maxSelectionsAllowed: number
|
|
15353
|
+
}
|
|
15354
|
+
|
|
15355
|
+
export interface LolObjectivesSeriesOpt {
|
|
15356
|
+
seriesId: string
|
|
15357
|
+
option: string
|
|
15358
|
+
}
|
|
15359
|
+
|
|
15360
|
+
export interface LolObjectivesSvcReward {
|
|
15361
|
+
id: string
|
|
15362
|
+
itemId: string
|
|
15363
|
+
/** @format int32 */
|
|
15364
|
+
quantity: number
|
|
15365
|
+
fulfillmentSource: string
|
|
15366
|
+
media: Record<string, string>
|
|
15367
|
+
localizations: Record<string, string>
|
|
15368
|
+
}
|
|
15369
|
+
|
|
15370
|
+
export interface LolObjectivesTftOrb {
|
|
15371
|
+
missionId: string
|
|
15372
|
+
status: string
|
|
15373
|
+
/** @format int64 */
|
|
15374
|
+
unlockTime: number
|
|
15375
|
+
/** @format uint8 */
|
|
15376
|
+
rewardLevel: number
|
|
15377
|
+
rewards: PlayerMissionRewardDTO[]
|
|
15378
|
+
}
|
|
15379
|
+
|
|
15380
|
+
export interface LolObjectivesTftWeeklyMissions {
|
|
15381
|
+
missions: PlayerMissionDTO[]
|
|
15382
|
+
}
|
|
15383
|
+
|
|
15384
|
+
export interface LolObjectivesUIMissions {
|
|
15385
|
+
missions: PlayerMissionDTO[]
|
|
15386
|
+
}
|
|
15387
|
+
|
|
15388
|
+
export interface LolObjectivesUIObjectives {
|
|
15389
|
+
id: string
|
|
15390
|
+
localizedTitle: string[]
|
|
15391
|
+
tag: string[]
|
|
15392
|
+
localizedTag: string
|
|
15393
|
+
objectivesType: string
|
|
15394
|
+
/** @format uint64 */
|
|
15395
|
+
startDate: number
|
|
15396
|
+
/** @format uint64 */
|
|
15397
|
+
endDate: number
|
|
15398
|
+
/** @format uint8 */
|
|
15399
|
+
priority: number
|
|
15400
|
+
backgroundImage: string
|
|
15401
|
+
/** @format uint8 */
|
|
15402
|
+
maxRefresh: number
|
|
15403
|
+
/** @format uint16 */
|
|
15404
|
+
refreshInterval: number
|
|
15405
|
+
missions: PlayerMissionDTO[]
|
|
15406
|
+
isEnabled: boolean
|
|
15407
|
+
isPooledMission: boolean
|
|
15408
|
+
}
|
|
15409
|
+
|
|
15410
|
+
export interface LolObjectivesUIObjectivesGroup {
|
|
15411
|
+
backgroundImage: string
|
|
15412
|
+
gameType: string
|
|
15413
|
+
/** @format uint64 */
|
|
15414
|
+
startDate: number
|
|
15415
|
+
/** @format uint64 */
|
|
15416
|
+
endDate: number
|
|
15417
|
+
isActive: boolean
|
|
15418
|
+
objectives: LolObjectivesUIObjectives[]
|
|
15419
|
+
}
|
|
15420
|
+
|
|
15421
|
+
export interface LolObjectivesUserInfo {
|
|
15422
|
+
userInfo: string
|
|
15423
|
+
}
|
|
15424
|
+
|
|
15425
|
+
export interface LolPatchChunkingPatcherEnvironment {
|
|
15426
|
+
game_patcher_available: boolean
|
|
15427
|
+
game_patcher_enabled: boolean
|
|
15428
|
+
}
|
|
15429
|
+
|
|
15430
|
+
export interface LolPatchComponentActionProgress {
|
|
15431
|
+
currentItem: string
|
|
15432
|
+
total: LolPatchComponentStateProgress
|
|
15433
|
+
network: LolPatchComponentStateProgress
|
|
15434
|
+
primaryWork: LolPatchComponentStateWorkType
|
|
15435
|
+
}
|
|
15436
|
+
|
|
15437
|
+
export interface LolPatchComponentState {
|
|
15438
|
+
id: string
|
|
15439
|
+
action: LolPatchComponentStateAction
|
|
15440
|
+
isUpToDate: boolean
|
|
15441
|
+
isUpdateAvailable: boolean
|
|
15442
|
+
"timeOfLastUpToDateCheckISO8601"?: string
|
|
15443
|
+
isCorrupted: boolean
|
|
15444
|
+
progress?: LolPatchComponentActionProgress
|
|
15445
|
+
}
|
|
15446
|
+
|
|
15447
|
+
export type LolPatchComponentStateAction = "Migrating" | "Repairing" | "Patching" | "CheckingForUpdates" | "Idle"
|
|
15448
|
+
|
|
15449
|
+
export interface LolPatchComponentStateProgress {
|
|
15450
|
+
/** @format uint64 */
|
|
15451
|
+
bytesComplete: number
|
|
15452
|
+
/** @format uint64 */
|
|
15453
|
+
bytesRequired: number
|
|
15454
|
+
/** @format double */
|
|
15455
|
+
bytesPerSecond: number
|
|
15456
|
+
}
|
|
15457
|
+
|
|
15458
|
+
export type LolPatchComponentStateWorkType = "Disk" | "Network" | "Scanning"
|
|
15459
|
+
|
|
15460
|
+
export interface LolPatchEntitlementsTokenResource {
|
|
15461
|
+
accessToken: string
|
|
15462
|
+
token: string
|
|
15463
|
+
entitlements: string[]
|
|
15464
|
+
}
|
|
15465
|
+
|
|
15466
|
+
export interface LolPatchInstallPaths {
|
|
15467
|
+
gameInstallRoot: string
|
|
15468
|
+
gameExecutablePath: string
|
|
15469
|
+
}
|
|
15470
|
+
|
|
15471
|
+
export interface LolPatchNotification {
|
|
15472
|
+
id: string
|
|
15473
|
+
notificationId: LolPatchNotificationId
|
|
15474
|
+
data: Record<string, unknown>
|
|
15475
|
+
}
|
|
15476
|
+
|
|
15477
|
+
export type LolPatchNotificationId = "BrokenPermissions" | "NotEnoughDiskSpace" | "DidRestoreClientBackup" | "FailedToWriteError" | "MissingFilesError" | "ConnectionError" | "UnspecifiedError"
|
|
14865
15478
|
|
|
14866
15479
|
export interface LolPatchPatchSieveCompatVersion {
|
|
14867
15480
|
id: string
|
|
@@ -17137,7 +17750,7 @@ export interface LolRankedLeagueNotification {
|
|
|
17137
17750
|
ratedRating: number
|
|
17138
17751
|
/** @format int32 */
|
|
17139
17752
|
ratedRatingDelta: number
|
|
17140
|
-
eligibleForPromoHelper
|
|
17753
|
+
eligibleForPromoHelper: boolean
|
|
17141
17754
|
promoSeriesForRanksEnabled: boolean
|
|
17142
17755
|
/** @format int32 */
|
|
17143
17756
|
consolationLpUsed: number
|
|
@@ -18267,69 +18880,192 @@ export interface LolReplaysRoflFileMetadata {
|
|
|
18267
18880
|
lastKeyFrameId: number
|
|
18268
18881
|
}
|
|
18269
18882
|
|
|
18270
|
-
export type
|
|
18271
|
-
|
|
18272
|
-
export type LolRewardsGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
18883
|
+
export type LolRewardTrackCelebrationType = "FULLSCREEN" | "TOAST" | "NONE"
|
|
18273
18884
|
|
|
18274
|
-
export interface
|
|
18275
|
-
|
|
18276
|
-
|
|
18885
|
+
export interface LolRewardTrackCounter {
|
|
18886
|
+
id: string
|
|
18887
|
+
name: string
|
|
18888
|
+
groupId: string
|
|
18889
|
+
direction: string
|
|
18890
|
+
/** @format int64 */
|
|
18891
|
+
startValue: number
|
|
18277
18892
|
}
|
|
18278
18893
|
|
|
18279
|
-
export interface
|
|
18894
|
+
export interface LolRewardTrackCounterInstance {
|
|
18895
|
+
ownerId: string
|
|
18280
18896
|
productId: string
|
|
18281
|
-
|
|
18897
|
+
groupId: string
|
|
18898
|
+
counterId: string
|
|
18899
|
+
/** @format int64 */
|
|
18900
|
+
counterValue: number
|
|
18282
18901
|
}
|
|
18283
18902
|
|
|
18284
|
-
export interface
|
|
18903
|
+
export interface LolRewardTrackEntityInstance {
|
|
18904
|
+
groupId: string
|
|
18905
|
+
counters: LolRewardTrackCounterInstance[]
|
|
18906
|
+
milestones: LolRewardTrackMilestoneInstance[]
|
|
18907
|
+
}
|
|
18908
|
+
|
|
18909
|
+
export interface LolRewardTrackFSC {
|
|
18910
|
+
id: string
|
|
18911
|
+
canvas: LolRewardTrackFSCCanvas
|
|
18912
|
+
media: LolRewardTrackFSCMedia
|
|
18913
|
+
rewards: LolRewardTrackFSCRewards[]
|
|
18914
|
+
}
|
|
18915
|
+
|
|
18916
|
+
export interface LolRewardTrackFSCCanvas {
|
|
18917
|
+
title: string
|
|
18918
|
+
subtitle: string
|
|
18919
|
+
canvasBackgroundImage: string
|
|
18920
|
+
canvasSize: LolRewardTrackFSCCanvasSize
|
|
18921
|
+
canvasDesign: string
|
|
18922
|
+
}
|
|
18923
|
+
|
|
18924
|
+
export type LolRewardTrackFSCCanvasSize = "FULL" | "LARGE" | "MEDIUM" | "SMALL"
|
|
18925
|
+
|
|
18926
|
+
export interface LolRewardTrackFSCMedia {
|
|
18927
|
+
introAnimation: string
|
|
18928
|
+
introAnimationAudio: string
|
|
18929
|
+
introLowSpecImage: string
|
|
18930
|
+
loopAnimation: string
|
|
18931
|
+
loopAnimationAudio: string
|
|
18932
|
+
transitionAnimation: string
|
|
18933
|
+
transitionAnimationAudio: string
|
|
18934
|
+
}
|
|
18935
|
+
|
|
18936
|
+
export interface LolRewardTrackFSCRewards {
|
|
18937
|
+
image: string
|
|
18938
|
+
imageOverlay: string
|
|
18939
|
+
title: string
|
|
18940
|
+
subtitle: string
|
|
18941
|
+
}
|
|
18942
|
+
|
|
18943
|
+
export type LolRewardTrackGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
18944
|
+
|
|
18945
|
+
export interface LolRewardTrackGrantorDescription {
|
|
18946
|
+
appName: string
|
|
18947
|
+
entityId: string
|
|
18948
|
+
}
|
|
18949
|
+
|
|
18950
|
+
export interface LolRewardTrackGroup {
|
|
18951
|
+
id: string
|
|
18952
|
+
productId: string
|
|
18953
|
+
name: string
|
|
18954
|
+
repeat: LolRewardTrackRepeat
|
|
18955
|
+
counters: LolRewardTrackCounter[]
|
|
18956
|
+
milestones: LolRewardTrackMilestone[]
|
|
18957
|
+
}
|
|
18958
|
+
|
|
18959
|
+
export interface LolRewardTrackMilestone {
|
|
18960
|
+
id: string
|
|
18961
|
+
name: string
|
|
18962
|
+
groupId: string
|
|
18963
|
+
counterId: string
|
|
18964
|
+
/** @format int64 */
|
|
18965
|
+
triggerValue: number
|
|
18966
|
+
properties: Record<string, string>
|
|
18967
|
+
}
|
|
18968
|
+
|
|
18969
|
+
export interface LolRewardTrackMilestoneInstance {
|
|
18970
|
+
milestoneId: string
|
|
18971
|
+
instanceId: string
|
|
18972
|
+
ownerId: string
|
|
18973
|
+
productId: string
|
|
18974
|
+
groupId: string
|
|
18975
|
+
counterId: string
|
|
18976
|
+
/** @format int64 */
|
|
18977
|
+
triggerValue: number
|
|
18978
|
+
/** @format uint32 */
|
|
18979
|
+
repeatSequence: number
|
|
18980
|
+
triggered: boolean
|
|
18981
|
+
triggeredTimestamp: string
|
|
18982
|
+
triggers: LolRewardTrackTrigger[]
|
|
18983
|
+
}
|
|
18984
|
+
|
|
18985
|
+
export interface LolRewardTrackNextRewardUIData {
|
|
18986
|
+
thumbIconPath: string
|
|
18987
|
+
state: LolRewardTrackRewardTrackItemHeaderType
|
|
18988
|
+
name: string
|
|
18989
|
+
description: string
|
|
18990
|
+
level: string
|
|
18991
|
+
}
|
|
18992
|
+
|
|
18993
|
+
export interface LolRewardTrackRMSPayload {
|
|
18994
|
+
productId: string
|
|
18995
|
+
affinities: string[]
|
|
18996
|
+
}
|
|
18997
|
+
|
|
18998
|
+
export interface LolRewardTrackRegionLocale {
|
|
18285
18999
|
region: string
|
|
18286
19000
|
locale: string
|
|
18287
19001
|
}
|
|
18288
19002
|
|
|
18289
|
-
export interface
|
|
18290
|
-
|
|
18291
|
-
|
|
19003
|
+
export interface LolRewardTrackRepeat {
|
|
19004
|
+
/** @format int32 */
|
|
19005
|
+
count: number
|
|
19006
|
+
/** @format uint32 */
|
|
19007
|
+
scope: number
|
|
19008
|
+
/** @format float */
|
|
19009
|
+
multiplier: number
|
|
19010
|
+
milestones: LolRewardTrackMilestone[]
|
|
19011
|
+
repeatTriggers: LolRewardTrackRepeatGroupTrigger[]
|
|
18292
19012
|
}
|
|
18293
19013
|
|
|
18294
|
-
export interface
|
|
18295
|
-
|
|
18296
|
-
|
|
19014
|
+
export interface LolRewardTrackRepeatGroupTrigger {
|
|
19015
|
+
type: string
|
|
19016
|
+
counterId: string
|
|
19017
|
+
/** @format uint16 */
|
|
19018
|
+
startTriggerValue: number
|
|
19019
|
+
/** @format uint16 */
|
|
19020
|
+
increaseBy: number
|
|
19021
|
+
/** @format float */
|
|
19022
|
+
multiplier: number
|
|
18297
19023
|
}
|
|
18298
19024
|
|
|
18299
|
-
export interface
|
|
19025
|
+
export interface LolRewardTrackRequestDTO_SelectionRequestDTO {
|
|
19026
|
+
data: LolRewardTrackSelectionRequestDTO
|
|
19027
|
+
metadata: LolRewardTrackRequestMetadataDTO
|
|
19028
|
+
}
|
|
19029
|
+
|
|
19030
|
+
export interface LolRewardTrackRequestDTO_vector_SelectionRequestDTO {
|
|
19031
|
+
data: LolRewardTrackSelectionRequestDTO[]
|
|
19032
|
+
metadata: LolRewardTrackRequestMetadataDTO
|
|
19033
|
+
}
|
|
19034
|
+
|
|
19035
|
+
export interface LolRewardTrackRequestDTO_vector_string {
|
|
18300
19036
|
data: string[]
|
|
18301
|
-
metadata:
|
|
19037
|
+
metadata: LolRewardTrackRequestMetadataDTO
|
|
18302
19038
|
}
|
|
18303
19039
|
|
|
18304
|
-
export interface
|
|
19040
|
+
export interface LolRewardTrackRequestMetadataDTO {
|
|
18305
19041
|
transactionId?: string
|
|
18306
19042
|
}
|
|
18307
19043
|
|
|
18308
|
-
export interface
|
|
18309
|
-
data:
|
|
18310
|
-
metadata:
|
|
19044
|
+
export interface LolRewardTrackResponseDTO_SvcRewardGrant {
|
|
19045
|
+
data: LolRewardTrackSvcRewardGrant
|
|
19046
|
+
metadata: LolRewardTrackResponseMetadataDTO
|
|
18311
19047
|
}
|
|
18312
19048
|
|
|
18313
|
-
export interface
|
|
18314
|
-
data: Record<string,
|
|
18315
|
-
metadata:
|
|
19049
|
+
export interface LolRewardTrackResponseDTO_map_RewardGroupId_SelectGrantStatus {
|
|
19050
|
+
data: Record<string, LolRewardTrackSelectGrantStatusResponse>
|
|
19051
|
+
metadata: LolRewardTrackResponseMetadataDTO
|
|
18316
19052
|
}
|
|
18317
19053
|
|
|
18318
|
-
export interface
|
|
18319
|
-
data:
|
|
18320
|
-
metadata:
|
|
19054
|
+
export interface LolRewardTrackResponseDTO_vector_SvcRewardGrant {
|
|
19055
|
+
data: LolRewardTrackSvcRewardGrant[]
|
|
19056
|
+
metadata: LolRewardTrackResponseMetadataDTO
|
|
18321
19057
|
}
|
|
18322
19058
|
|
|
18323
|
-
export interface
|
|
18324
|
-
data:
|
|
18325
|
-
metadata:
|
|
19059
|
+
export interface LolRewardTrackResponseDTO_vector_SvcRewardGroup {
|
|
19060
|
+
data: LolRewardTrackSvcRewardGroup[]
|
|
19061
|
+
metadata: LolRewardTrackResponseMetadataDTO
|
|
18326
19062
|
}
|
|
18327
19063
|
|
|
18328
|
-
export interface
|
|
19064
|
+
export interface LolRewardTrackResponseMetadataDTO {
|
|
18329
19065
|
[key: string | number]: any
|
|
18330
19066
|
}
|
|
18331
19067
|
|
|
18332
|
-
export interface
|
|
19068
|
+
export interface LolRewardTrackReward {
|
|
18333
19069
|
id: string
|
|
18334
19070
|
itemId: string
|
|
18335
19071
|
itemType: string
|
|
@@ -18340,134 +19076,399 @@ export interface LolRewardsReward {
|
|
|
18340
19076
|
localizations: Record<string, string>
|
|
18341
19077
|
}
|
|
18342
19078
|
|
|
18343
|
-
export interface
|
|
18344
|
-
info:
|
|
18345
|
-
rewardGroup:
|
|
19079
|
+
export interface LolRewardTrackRewardGrant {
|
|
19080
|
+
info: LolRewardTrackSvcRewardGrant
|
|
19081
|
+
rewardGroup: LolRewardTrackSvcRewardGroup
|
|
18346
19082
|
}
|
|
18347
19083
|
|
|
18348
|
-
export type
|
|
19084
|
+
export type LolRewardTrackRewardStatus = "FAILED" | "FULFILLED" | "PENDING"
|
|
18349
19085
|
|
|
18350
|
-
export type
|
|
19086
|
+
export type LolRewardTrackRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
18351
19087
|
|
|
18352
|
-
export interface
|
|
19088
|
+
export interface LolRewardTrackRewardTrackError {
|
|
19089
|
+
errorMessage: string
|
|
19090
|
+
errorId: string
|
|
19091
|
+
}
|
|
19092
|
+
|
|
19093
|
+
export interface LolRewardTrackRewardTrackItem {
|
|
19094
|
+
state: LolRewardTrackRewardTrackItemStates
|
|
19095
|
+
rewardOptions: LolRewardTrackRewardTrackItemOption[]
|
|
19096
|
+
rewardTags: LolRewardTrackRewardTrackItemTag[]
|
|
19097
|
+
/** @format int64 */
|
|
19098
|
+
progressRequired: number
|
|
19099
|
+
threshold: string
|
|
19100
|
+
}
|
|
19101
|
+
|
|
19102
|
+
export type LolRewardTrackRewardTrackItemHeaderType = "NONE" | "FREE" | "PREMIUM"
|
|
19103
|
+
|
|
19104
|
+
export interface LolRewardTrackRewardTrackItemOption {
|
|
19105
|
+
state: LolRewardTrackRewardTrackItemStates
|
|
19106
|
+
thumbIconPath: string
|
|
19107
|
+
splashImagePath: string
|
|
19108
|
+
selected: boolean
|
|
19109
|
+
overrideFooter: string
|
|
19110
|
+
headerType: LolRewardTrackRewardTrackItemHeaderType
|
|
19111
|
+
rewardName: string
|
|
19112
|
+
rewardDescription: string
|
|
19113
|
+
cardSize: string
|
|
19114
|
+
rewardGroupId: string
|
|
19115
|
+
celebrationType: LolRewardTrackCelebrationType
|
|
19116
|
+
}
|
|
19117
|
+
|
|
19118
|
+
export type LolRewardTrackRewardTrackItemStates = "Selected" | "Unselected" | "Unlocked" | "Locked"
|
|
19119
|
+
|
|
19120
|
+
export type LolRewardTrackRewardTrackItemTag = "Multiple" | "Choice" | "Instant" | "Free" | "Rare"
|
|
19121
|
+
|
|
19122
|
+
export interface LolRewardTrackRewardTrackProgress {
|
|
19123
|
+
/** @format int16 */
|
|
19124
|
+
level: number
|
|
19125
|
+
/** @format int16 */
|
|
19126
|
+
totalLevels: number
|
|
19127
|
+
/** @format uint16 */
|
|
19128
|
+
levelProgress: number
|
|
19129
|
+
/** @format uint16 */
|
|
19130
|
+
futureLevelProgress: number
|
|
19131
|
+
/** @format int64 */
|
|
19132
|
+
passProgress: number
|
|
19133
|
+
/** @format int64 */
|
|
19134
|
+
currentLevelXP: number
|
|
19135
|
+
/** @format int64 */
|
|
19136
|
+
totalLevelXP: number
|
|
19137
|
+
/** @format uint32 */
|
|
19138
|
+
iteration: number
|
|
19139
|
+
}
|
|
19140
|
+
|
|
19141
|
+
export interface LolRewardTrackRewardTrackXP {
|
|
19142
|
+
/** @format int64 */
|
|
19143
|
+
currentLevel: number
|
|
19144
|
+
/** @format int64 */
|
|
19145
|
+
currentLevelXP: number
|
|
19146
|
+
/** @format int64 */
|
|
19147
|
+
totalLevelXP: number
|
|
19148
|
+
isBonusPhase: boolean
|
|
19149
|
+
/** @format uint32 */
|
|
19150
|
+
iteration: number
|
|
19151
|
+
}
|
|
19152
|
+
|
|
19153
|
+
export interface LolRewardTrackRewardsConfig {
|
|
18353
19154
|
GrantFiltering: boolean
|
|
18354
19155
|
}
|
|
18355
19156
|
|
|
18356
|
-
export type
|
|
19157
|
+
export type LolRewardTrackSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
18357
19158
|
|
|
18358
|
-
export interface
|
|
19159
|
+
export interface LolRewardTrackSelectionRequestDTO {
|
|
18359
19160
|
grantId: string
|
|
18360
19161
|
rewardGroupId: string
|
|
18361
19162
|
selections: string[]
|
|
18362
19163
|
}
|
|
18363
19164
|
|
|
18364
|
-
export interface
|
|
19165
|
+
export interface LolRewardTrackSelectionStrategyConfig {
|
|
18365
19166
|
/** @format uint32 */
|
|
18366
19167
|
minSelectionsAllowed: number
|
|
18367
19168
|
/** @format uint32 */
|
|
18368
19169
|
maxSelectionsAllowed: number
|
|
18369
19170
|
}
|
|
18370
19171
|
|
|
18371
|
-
export interface
|
|
19172
|
+
export interface LolRewardTrackSvcRewardGrant {
|
|
18372
19173
|
id: string
|
|
18373
19174
|
granteeId: string
|
|
18374
19175
|
rewardGroupId: string
|
|
18375
19176
|
dateCreated: string
|
|
18376
|
-
status:
|
|
18377
|
-
grantElements:
|
|
19177
|
+
status: LolRewardTrackGrantStatus
|
|
19178
|
+
grantElements: LolRewardTrackSvcRewardGrantElement[]
|
|
18378
19179
|
selectedIds: string[]
|
|
18379
19180
|
viewed: boolean
|
|
18380
|
-
grantorDescription:
|
|
19181
|
+
grantorDescription: LolRewardTrackGrantorDescription
|
|
18381
19182
|
messageParameters: Record<string, unknown>
|
|
18382
19183
|
}
|
|
18383
19184
|
|
|
18384
|
-
export interface
|
|
19185
|
+
export interface LolRewardTrackSvcRewardGrantElement {
|
|
18385
19186
|
elementId: string
|
|
18386
19187
|
itemId: string
|
|
18387
19188
|
itemType: string
|
|
18388
19189
|
fulfillmentSource: string
|
|
18389
|
-
status:
|
|
19190
|
+
status: LolRewardTrackRewardStatus
|
|
18390
19191
|
/** @format int32 */
|
|
18391
19192
|
quantity: number
|
|
18392
19193
|
media: Record<string, string>
|
|
18393
19194
|
localizations: Record<string, string>
|
|
18394
19195
|
}
|
|
18395
19196
|
|
|
18396
|
-
export interface
|
|
19197
|
+
export interface LolRewardTrackSvcRewardGroup {
|
|
18397
19198
|
id: string
|
|
18398
19199
|
productId: string
|
|
18399
19200
|
types: string[]
|
|
18400
|
-
rewards:
|
|
19201
|
+
rewards: LolRewardTrackReward[]
|
|
18401
19202
|
childRewardGroupIds: string[]
|
|
18402
|
-
rewardStrategy:
|
|
18403
|
-
selectionStrategyConfig?:
|
|
19203
|
+
rewardStrategy: LolRewardTrackRewardStrategy
|
|
19204
|
+
selectionStrategyConfig?: LolRewardTrackSelectionStrategyConfig
|
|
18404
19205
|
active: boolean
|
|
18405
19206
|
media: Record<string, string>
|
|
18406
19207
|
localizations: Record<string, string>
|
|
18407
|
-
celebrationType:
|
|
19208
|
+
celebrationType: LolRewardTrackCelebrationType
|
|
18408
19209
|
}
|
|
18409
19210
|
|
|
18410
|
-
export interface
|
|
19211
|
+
export interface LolRewardTrackTrackProgressNextReward {
|
|
19212
|
+
/** @format int64 */
|
|
19213
|
+
currentXP: number
|
|
19214
|
+
/** @format int64 */
|
|
19215
|
+
nextLevelXP: number
|
|
19216
|
+
/** @format int64 */
|
|
19217
|
+
currentLevel: number
|
|
19218
|
+
nextReward: LolRewardTrackNextRewardUIData
|
|
19219
|
+
}
|
|
19220
|
+
|
|
19221
|
+
export interface LolRewardTrackTrigger {
|
|
19222
|
+
type: string
|
|
19223
|
+
counterId: string
|
|
18411
19224
|
/** @format uint64 */
|
|
18412
|
-
|
|
18413
|
-
|
|
19225
|
+
triggerValue: number
|
|
19226
|
+
}
|
|
19227
|
+
|
|
19228
|
+
export interface LolRewardTrackUnclaimedRewardsUIData {
|
|
18414
19229
|
/** @format int32 */
|
|
18415
|
-
|
|
18416
|
-
|
|
19230
|
+
rewardsCount: number
|
|
19231
|
+
/** @format int32 */
|
|
19232
|
+
lockedTokensCount: number
|
|
18417
19233
|
/** @format int64 */
|
|
18418
|
-
|
|
19234
|
+
timeOfLastUnclaimedReward: number
|
|
18419
19235
|
}
|
|
18420
19236
|
|
|
18421
|
-
export type
|
|
19237
|
+
export type LolRewardsCelebrationType = "FULLSCREEN" | "TOAST" | "NONE"
|
|
18422
19238
|
|
|
18423
|
-
export interface
|
|
18424
|
-
|
|
19239
|
+
export interface LolRewardsFSC {
|
|
19240
|
+
id: string
|
|
19241
|
+
canvas: LolRewardsFSCCanvas
|
|
19242
|
+
media: LolRewardsFSCMedia
|
|
19243
|
+
rewards: LolRewardsFSCRewards[]
|
|
18425
19244
|
}
|
|
18426
19245
|
|
|
18427
|
-
export interface
|
|
18428
|
-
|
|
18429
|
-
|
|
19246
|
+
export interface LolRewardsFSCCanvas {
|
|
19247
|
+
title: string
|
|
19248
|
+
subtitle: string
|
|
19249
|
+
canvasBackgroundImage: string
|
|
19250
|
+
canvasSize: LolRewardsFSCCanvasSize
|
|
19251
|
+
canvasDesign: string
|
|
18430
19252
|
}
|
|
18431
19253
|
|
|
18432
|
-
export
|
|
18433
|
-
token: string
|
|
18434
|
-
scopes: string[]
|
|
18435
|
-
/** @format uint64 */
|
|
18436
|
-
expiry: number
|
|
18437
|
-
}
|
|
19254
|
+
export type LolRewardsFSCCanvasSize = "FULL" | "LARGE" | "MEDIUM" | "SMALL"
|
|
18438
19255
|
|
|
18439
|
-
export interface
|
|
18440
|
-
|
|
18441
|
-
|
|
19256
|
+
export interface LolRewardsFSCMedia {
|
|
19257
|
+
introAnimation: string
|
|
19258
|
+
introAnimationAudio: string
|
|
19259
|
+
introLowSpecImage: string
|
|
19260
|
+
loopAnimation: string
|
|
19261
|
+
loopAnimationAudio: string
|
|
19262
|
+
transitionAnimation: string
|
|
19263
|
+
transitionAnimationAudio: string
|
|
18442
19264
|
}
|
|
18443
19265
|
|
|
18444
|
-
export interface
|
|
18445
|
-
|
|
18446
|
-
|
|
18447
|
-
|
|
18448
|
-
|
|
19266
|
+
export interface LolRewardsFSCRewards {
|
|
19267
|
+
image: string
|
|
19268
|
+
imageOverlay: string
|
|
19269
|
+
title: string
|
|
19270
|
+
subtitle: string
|
|
18449
19271
|
}
|
|
18450
19272
|
|
|
18451
|
-
export
|
|
18452
|
-
|
|
18453
|
-
|
|
18454
|
-
|
|
18455
|
-
|
|
19273
|
+
export type LolRewardsGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
19274
|
+
|
|
19275
|
+
export interface LolRewardsGrantorDescription {
|
|
19276
|
+
appName: string
|
|
19277
|
+
entityId: string
|
|
18456
19278
|
}
|
|
18457
19279
|
|
|
18458
|
-
export interface
|
|
18459
|
-
|
|
18460
|
-
|
|
18461
|
-
country: string
|
|
19280
|
+
export interface LolRewardsRMSPayload {
|
|
19281
|
+
productId: string
|
|
19282
|
+
affinities: string[]
|
|
18462
19283
|
}
|
|
18463
19284
|
|
|
18464
|
-
export
|
|
19285
|
+
export interface LolRewardsRegionLocale {
|
|
19286
|
+
region: string
|
|
19287
|
+
locale: string
|
|
19288
|
+
}
|
|
18465
19289
|
|
|
18466
|
-
export interface
|
|
18467
|
-
|
|
19290
|
+
export interface LolRewardsRequestDTO_SelectionRequestDTO {
|
|
19291
|
+
data: LolRewardsSelectionRequestDTO
|
|
19292
|
+
metadata: LolRewardsRequestMetadataDTO
|
|
18468
19293
|
}
|
|
18469
19294
|
|
|
18470
|
-
export
|
|
19295
|
+
export interface LolRewardsRequestDTO_vector_SelectionRequestDTO {
|
|
19296
|
+
data: LolRewardsSelectionRequestDTO[]
|
|
19297
|
+
metadata: LolRewardsRequestMetadataDTO
|
|
19298
|
+
}
|
|
19299
|
+
|
|
19300
|
+
export interface LolRewardsRequestDTO_vector_string {
|
|
19301
|
+
data: string[]
|
|
19302
|
+
metadata: LolRewardsRequestMetadataDTO
|
|
19303
|
+
}
|
|
19304
|
+
|
|
19305
|
+
export interface LolRewardsRequestMetadataDTO {
|
|
19306
|
+
transactionId?: string
|
|
19307
|
+
}
|
|
19308
|
+
|
|
19309
|
+
export interface LolRewardsResponseDTO_SvcRewardGrant {
|
|
19310
|
+
data: LolRewardsSvcRewardGrant
|
|
19311
|
+
metadata: LolRewardsResponseMetadataDTO
|
|
19312
|
+
}
|
|
19313
|
+
|
|
19314
|
+
export interface LolRewardsResponseDTO_map_RewardGroupId_SelectGrantStatus {
|
|
19315
|
+
data: Record<string, LolRewardsSelectGrantStatusResponse>
|
|
19316
|
+
metadata: LolRewardsResponseMetadataDTO
|
|
19317
|
+
}
|
|
19318
|
+
|
|
19319
|
+
export interface LolRewardsResponseDTO_vector_SvcRewardGrant {
|
|
19320
|
+
data: LolRewardsSvcRewardGrant[]
|
|
19321
|
+
metadata: LolRewardsResponseMetadataDTO
|
|
19322
|
+
}
|
|
19323
|
+
|
|
19324
|
+
export interface LolRewardsResponseDTO_vector_SvcRewardGroup {
|
|
19325
|
+
data: LolRewardsSvcRewardGroup[]
|
|
19326
|
+
metadata: LolRewardsResponseMetadataDTO
|
|
19327
|
+
}
|
|
19328
|
+
|
|
19329
|
+
export interface LolRewardsResponseMetadataDTO {
|
|
19330
|
+
[key: string | number]: any
|
|
19331
|
+
}
|
|
19332
|
+
|
|
19333
|
+
export interface LolRewardsReward {
|
|
19334
|
+
id: string
|
|
19335
|
+
itemId: string
|
|
19336
|
+
itemType: string
|
|
19337
|
+
/** @format int32 */
|
|
19338
|
+
quantity: number
|
|
19339
|
+
fulfillmentSource: string
|
|
19340
|
+
media: Record<string, string>
|
|
19341
|
+
localizations: Record<string, string>
|
|
19342
|
+
}
|
|
19343
|
+
|
|
19344
|
+
export interface LolRewardsRewardGrant {
|
|
19345
|
+
info: LolRewardsSvcRewardGrant
|
|
19346
|
+
rewardGroup: LolRewardsSvcRewardGroup
|
|
19347
|
+
}
|
|
19348
|
+
|
|
19349
|
+
export type LolRewardsRewardStatus = "FAILED" | "FULFILLED" | "PENDING"
|
|
19350
|
+
|
|
19351
|
+
export type LolRewardsRewardStrategy = "SELECTION" | "RANDOM" | "ALL"
|
|
19352
|
+
|
|
19353
|
+
export interface LolRewardsRewardsConfig {
|
|
19354
|
+
GrantFiltering: boolean
|
|
19355
|
+
}
|
|
19356
|
+
|
|
19357
|
+
export type LolRewardsSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
19358
|
+
|
|
19359
|
+
export interface LolRewardsSelectionRequestDTO {
|
|
19360
|
+
grantId: string
|
|
19361
|
+
rewardGroupId: string
|
|
19362
|
+
selections: string[]
|
|
19363
|
+
}
|
|
19364
|
+
|
|
19365
|
+
export interface LolRewardsSelectionStrategyConfig {
|
|
19366
|
+
/** @format uint32 */
|
|
19367
|
+
minSelectionsAllowed: number
|
|
19368
|
+
/** @format uint32 */
|
|
19369
|
+
maxSelectionsAllowed: number
|
|
19370
|
+
}
|
|
19371
|
+
|
|
19372
|
+
export interface LolRewardsSvcRewardGrant {
|
|
19373
|
+
id: string
|
|
19374
|
+
granteeId: string
|
|
19375
|
+
rewardGroupId: string
|
|
19376
|
+
dateCreated: string
|
|
19377
|
+
status: LolRewardsGrantStatus
|
|
19378
|
+
grantElements: LolRewardsSvcRewardGrantElement[]
|
|
19379
|
+
selectedIds: string[]
|
|
19380
|
+
viewed: boolean
|
|
19381
|
+
grantorDescription: LolRewardsGrantorDescription
|
|
19382
|
+
messageParameters: Record<string, unknown>
|
|
19383
|
+
}
|
|
19384
|
+
|
|
19385
|
+
export interface LolRewardsSvcRewardGrantElement {
|
|
19386
|
+
elementId: string
|
|
19387
|
+
itemId: string
|
|
19388
|
+
itemType: string
|
|
19389
|
+
fulfillmentSource: string
|
|
19390
|
+
status: LolRewardsRewardStatus
|
|
19391
|
+
/** @format int32 */
|
|
19392
|
+
quantity: number
|
|
19393
|
+
media: Record<string, string>
|
|
19394
|
+
localizations: Record<string, string>
|
|
19395
|
+
}
|
|
19396
|
+
|
|
19397
|
+
export interface LolRewardsSvcRewardGroup {
|
|
19398
|
+
id: string
|
|
19399
|
+
productId: string
|
|
19400
|
+
types: string[]
|
|
19401
|
+
rewards: LolRewardsReward[]
|
|
19402
|
+
childRewardGroupIds: string[]
|
|
19403
|
+
rewardStrategy: LolRewardsRewardStrategy
|
|
19404
|
+
selectionStrategyConfig?: LolRewardsSelectionStrategyConfig
|
|
19405
|
+
active: boolean
|
|
19406
|
+
media: Record<string, string>
|
|
19407
|
+
localizations: Record<string, string>
|
|
19408
|
+
celebrationType: LolRewardsCelebrationType
|
|
19409
|
+
}
|
|
19410
|
+
|
|
19411
|
+
export interface LolRiotMessagingServiceChampionMasteryLevelUp {
|
|
19412
|
+
/** @format uint64 */
|
|
19413
|
+
id: number
|
|
19414
|
+
puuid: string
|
|
19415
|
+
/** @format int32 */
|
|
19416
|
+
championId: number
|
|
19417
|
+
hasLeveledUp: boolean
|
|
19418
|
+
/** @format int64 */
|
|
19419
|
+
championLevel: number
|
|
19420
|
+
}
|
|
19421
|
+
|
|
19422
|
+
export type LolRiotMessagingServiceGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
19423
|
+
|
|
19424
|
+
export interface LolRiotMessagingServiceGameflowSession {
|
|
19425
|
+
phase: LolRiotMessagingServiceGameflowPhase
|
|
19426
|
+
}
|
|
19427
|
+
|
|
19428
|
+
export interface LolRiotclientUpgraderGameflowAvailability {
|
|
19429
|
+
isAvailable: boolean
|
|
19430
|
+
state: string
|
|
19431
|
+
}
|
|
19432
|
+
|
|
19433
|
+
export interface LolRsoAuthAccessToken {
|
|
19434
|
+
token: string
|
|
19435
|
+
scopes: string[]
|
|
19436
|
+
/** @format uint64 */
|
|
19437
|
+
expiry: number
|
|
19438
|
+
}
|
|
19439
|
+
|
|
19440
|
+
export interface LolRsoAuthAuthError {
|
|
19441
|
+
error: string
|
|
19442
|
+
errorDescription: string
|
|
19443
|
+
}
|
|
19444
|
+
|
|
19445
|
+
export interface LolRsoAuthAuthorization {
|
|
19446
|
+
currentPlatformId: string
|
|
19447
|
+
/** @format uint64 */
|
|
19448
|
+
currentAccountId: number
|
|
19449
|
+
subject: string
|
|
19450
|
+
}
|
|
19451
|
+
|
|
19452
|
+
export interface LolRsoAuthAuthorizationRequest {
|
|
19453
|
+
scope: string[]
|
|
19454
|
+
trustLevels: LolRsoAuthRSOAuthorizationTrustLevel[]
|
|
19455
|
+
clientId: string
|
|
19456
|
+
claims: string[]
|
|
19457
|
+
}
|
|
19458
|
+
|
|
19459
|
+
export interface LolRsoAuthAuthorizationResponse {
|
|
19460
|
+
type: string
|
|
19461
|
+
authorization: LolRsoAuthImplicitAuthorization
|
|
19462
|
+
country: string
|
|
19463
|
+
}
|
|
19464
|
+
|
|
19465
|
+
export type LolRsoAuthConfigReadinessEnum = "Disabled" | "Ready" | "NotReady"
|
|
19466
|
+
|
|
19467
|
+
export interface LolRsoAuthConfigStatus {
|
|
19468
|
+
readiness: LolRsoAuthConfigReadinessEnum
|
|
19469
|
+
}
|
|
19470
|
+
|
|
19471
|
+
export type LolRsoAuthConfigType = "player" | "public"
|
|
18471
19472
|
|
|
18472
19473
|
export interface LolRsoAuthDeviceId {
|
|
18473
19474
|
collectorServerName: string
|
|
@@ -18664,6 +19665,10 @@ export interface LolServiceStatusTickerMessage {
|
|
|
18664
19665
|
message: string
|
|
18665
19666
|
}
|
|
18666
19667
|
|
|
19668
|
+
export interface LolSettingsHoneyfruitVNGPublisherSettings {
|
|
19669
|
+
visible: boolean
|
|
19670
|
+
}
|
|
19671
|
+
|
|
18667
19672
|
export interface LolSettingsLCUGameSettingsConfig {
|
|
18668
19673
|
HotkeysEnabled: boolean
|
|
18669
19674
|
SoundEnabled: boolean
|
|
@@ -18711,6 +19716,12 @@ export interface LolSettingsSettingsConfig {
|
|
|
18711
19716
|
localizedLicensesURL: string
|
|
18712
19717
|
}
|
|
18713
19718
|
|
|
19719
|
+
export interface LolSettingsVNGStatusResponse {
|
|
19720
|
+
action_required: boolean
|
|
19721
|
+
action_url: string
|
|
19722
|
+
action_url_raw: string
|
|
19723
|
+
}
|
|
19724
|
+
|
|
18714
19725
|
export interface LolShutdownShutdownNotification {
|
|
18715
19726
|
reason: LolShutdownShutdownReason
|
|
18716
19727
|
/** @format float */
|
|
@@ -20018,7 +21029,7 @@ export interface LolTftEventGameflowSession {
|
|
|
20018
21029
|
phase: LolTftEventGameflowPhase
|
|
20019
21030
|
}
|
|
20020
21031
|
|
|
20021
|
-
export type LolTftEventGrantStatus = "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
21032
|
+
export type LolTftEventGrantStatus = "FAILED" | "FULFILLED" | "PENDING_SELECTION" | "PENDING_FULFILLMENT"
|
|
20022
21033
|
|
|
20023
21034
|
export interface LolTftEventInventoryItemWithPayload {
|
|
20024
21035
|
/** @format int32 */
|
|
@@ -20054,6 +21065,7 @@ export interface LolTftEventLolTftEvent {
|
|
|
20054
21065
|
queueIds: number[]
|
|
20055
21066
|
defaultLandingPage: boolean
|
|
20056
21067
|
eventHubTemplateType: string
|
|
21068
|
+
eventFuture: boolean
|
|
20057
21069
|
}
|
|
20058
21070
|
|
|
20059
21071
|
export interface LolTftEventLolTftEvents {
|
|
@@ -20298,6 +21310,7 @@ export interface LolTftLolTftEvent {
|
|
|
20298
21310
|
queueIds: number[]
|
|
20299
21311
|
defaultLandingPage: boolean
|
|
20300
21312
|
eventHubTemplateType: string
|
|
21313
|
+
eventFuture: boolean
|
|
20301
21314
|
}
|
|
20302
21315
|
|
|
20303
21316
|
export interface LolTftLolTftEvents {
|
|
@@ -20668,126 +21681,463 @@ export interface LolTftPassRmsEntitlementPayload {
|
|
|
20668
21681
|
resourceOperation: string
|
|
20669
21682
|
}
|
|
20670
21683
|
|
|
20671
|
-
export interface LolTftPassRmsStoreEntitlementItem {
|
|
21684
|
+
export interface LolTftPassRmsStoreEntitlementItem {
|
|
21685
|
+
inventoryType: string
|
|
21686
|
+
itemId: string
|
|
21687
|
+
}
|
|
21688
|
+
|
|
21689
|
+
export interface LolTftPassRmsStoreEntitlementPayload {
|
|
21690
|
+
transactionId: string
|
|
21691
|
+
items: LolTftPassRmsStoreEntitlementItem[]
|
|
21692
|
+
}
|
|
21693
|
+
|
|
21694
|
+
export interface LolTftPassRmsWalletPayload {
|
|
21695
|
+
[key: string | number]: any
|
|
21696
|
+
}
|
|
21697
|
+
|
|
21698
|
+
export interface LolTftPassRmsXboxSubscriptionChange {
|
|
21699
|
+
puuid: string
|
|
21700
|
+
subscriptionId: string
|
|
21701
|
+
active: string
|
|
21702
|
+
identityProvider: string[]
|
|
21703
|
+
}
|
|
21704
|
+
|
|
21705
|
+
export interface LolTftPassSimpleInventoryDTO {
|
|
21706
|
+
items: Record<string, unknown>
|
|
21707
|
+
itemsJwt: string
|
|
21708
|
+
expires: string
|
|
21709
|
+
}
|
|
21710
|
+
|
|
21711
|
+
export interface LolTftPassSimpleInventoryResponseDTO {
|
|
21712
|
+
data: LolTftPassSimpleInventoryDTO
|
|
21713
|
+
}
|
|
21714
|
+
|
|
21715
|
+
export interface LolTftPassSummonerIcon {
|
|
21716
|
+
/** @format int32 */
|
|
21717
|
+
itemId: number
|
|
21718
|
+
}
|
|
21719
|
+
|
|
21720
|
+
export interface LolTftPassTFTPassAsset {
|
|
21721
|
+
internalName: string
|
|
21722
|
+
iconTexturePath: string
|
|
21723
|
+
iconNeedsFrame: boolean
|
|
21724
|
+
}
|
|
21725
|
+
|
|
21726
|
+
export interface LolTftPassTFTPassClientConfig {
|
|
21727
|
+
battlePassId: string
|
|
21728
|
+
eventPassId: string
|
|
21729
|
+
dailyLoginPassId: string
|
|
21730
|
+
skillTreePassId: string
|
|
21731
|
+
}
|
|
21732
|
+
|
|
21733
|
+
export interface LolTftPassTFTPassDTO {
|
|
21734
|
+
id: string
|
|
21735
|
+
counterID: string
|
|
21736
|
+
productID: string
|
|
21737
|
+
playerID: string
|
|
21738
|
+
title: string
|
|
21739
|
+
premiumTitle: string
|
|
21740
|
+
description: string
|
|
21741
|
+
/** @format int64 */
|
|
21742
|
+
activiationTimeMS: number
|
|
21743
|
+
/** @format int64 */
|
|
21744
|
+
deactivationTimeMS: number
|
|
21745
|
+
assetID: string
|
|
21746
|
+
/** @format int32 */
|
|
21747
|
+
currentLevel: number
|
|
21748
|
+
/** @format int32 */
|
|
21749
|
+
totalPointsEarned: number
|
|
21750
|
+
premiumEntitlementID: string
|
|
21751
|
+
storePurchaseIDs: Record<string, string>
|
|
21752
|
+
milestones: LolTftPassTFTPassMilestoneDTO[]
|
|
21753
|
+
status: string
|
|
21754
|
+
}
|
|
21755
|
+
|
|
21756
|
+
export interface LolTftPassTFTPassMilestoneDTO {
|
|
21757
|
+
id: string
|
|
21758
|
+
title: string
|
|
21759
|
+
description: string
|
|
21760
|
+
assetInternalName: string
|
|
21761
|
+
keystone: boolean
|
|
21762
|
+
bonus: boolean
|
|
21763
|
+
/** @format int32 */
|
|
21764
|
+
level: number
|
|
21765
|
+
/** @format int32 */
|
|
21766
|
+
pointsNeededForMilestone: number
|
|
21767
|
+
/** @format int32 */
|
|
21768
|
+
totalPointsNeededForMilestone: number
|
|
21769
|
+
/** @format int32 */
|
|
21770
|
+
pointsEarnedForMilestone: number
|
|
21771
|
+
status: string
|
|
21772
|
+
rewards: LolTftPassTFTPassRewardDTO[]
|
|
21773
|
+
}
|
|
21774
|
+
|
|
21775
|
+
export interface LolTftPassTFTPassRewardDTO {
|
|
21776
|
+
title: string
|
|
21777
|
+
description: string
|
|
21778
|
+
assetInternalName: string
|
|
21779
|
+
itemId: string
|
|
21780
|
+
itemTypeId: string
|
|
21781
|
+
premium: boolean
|
|
21782
|
+
}
|
|
21783
|
+
|
|
21784
|
+
export interface LolTftPassTFTPassRewardNotification {
|
|
21785
|
+
title: string
|
|
21786
|
+
description: string
|
|
21787
|
+
iconURL: string
|
|
21788
|
+
framedIcon: boolean
|
|
21789
|
+
}
|
|
21790
|
+
|
|
21791
|
+
export interface LolTftPassTftBattlepass {
|
|
21792
|
+
/** @format int32 */
|
|
21793
|
+
totalPointsEarned: number
|
|
21794
|
+
milestones: LolTftPassTftBattlepassMilestone[]
|
|
21795
|
+
bonuses: LolTftPassTftBattlepassMilestone[]
|
|
21796
|
+
activeMilestone: LolTftPassTftBattlepassMilestone
|
|
21797
|
+
info: LolTftPassTftBattlepassInfo
|
|
21798
|
+
/** @format int32 */
|
|
21799
|
+
lastViewedProgress: number
|
|
21800
|
+
lastViewedMilestone: LolTftPassTftBattlepassMilestone
|
|
21801
|
+
/** @format int32 */
|
|
21802
|
+
currentLevel: number
|
|
21803
|
+
}
|
|
21804
|
+
|
|
21805
|
+
export interface LolTftPassTftBattlepassInfo {
|
|
21806
|
+
title: string
|
|
21807
|
+
description: string
|
|
21808
|
+
/** @format uint64 */
|
|
21809
|
+
startDate: number
|
|
21810
|
+
/** @format uint64 */
|
|
21811
|
+
endDate: number
|
|
21812
|
+
premium: boolean
|
|
21813
|
+
premiumTitle: string
|
|
21814
|
+
premiumEntitlementId: string
|
|
21815
|
+
pcPurchaseRequirement: string
|
|
21816
|
+
passId: string
|
|
21817
|
+
media: Record<string, string>
|
|
21818
|
+
}
|
|
21819
|
+
|
|
21820
|
+
export interface LolTftPassTftBattlepassMilestone {
|
|
21821
|
+
milestoneId: string
|
|
21822
|
+
title: string
|
|
21823
|
+
description: string
|
|
21824
|
+
status: string
|
|
21825
|
+
/** @format int32 */
|
|
21826
|
+
pointsNeededForMilestone: number
|
|
21827
|
+
/** @format int32 */
|
|
21828
|
+
pointsEarnedForMilestone: number
|
|
21829
|
+
/** @format int32 */
|
|
21830
|
+
totalPointsForMilestone: number
|
|
21831
|
+
/** @format int32 */
|
|
21832
|
+
level: number
|
|
21833
|
+
iconImageUrl: string
|
|
21834
|
+
iconNeedsFrame: boolean
|
|
21835
|
+
rewards: LolTftPassTftBattlepassReward[]
|
|
21836
|
+
isPaid: boolean
|
|
21837
|
+
isLocked: boolean
|
|
21838
|
+
isKeystone: boolean
|
|
21839
|
+
isBonus: boolean
|
|
21840
|
+
isClaimRequestPending: boolean
|
|
21841
|
+
}
|
|
21842
|
+
|
|
21843
|
+
export interface LolTftPassTftBattlepassReward {
|
|
21844
|
+
name: string
|
|
21845
|
+
description: string
|
|
21846
|
+
itemId: string
|
|
21847
|
+
itemTypeId: string
|
|
21848
|
+
iconUrl: string
|
|
21849
|
+
iconNeedsFrame: boolean
|
|
21850
|
+
}
|
|
21851
|
+
|
|
21852
|
+
export interface LolTftPassTrigger {
|
|
21853
|
+
type: string
|
|
21854
|
+
counterId: string
|
|
21855
|
+
/** @format uint64 */
|
|
21856
|
+
triggerValue: number
|
|
21857
|
+
}
|
|
21858
|
+
|
|
21859
|
+
export interface LolTftPassWallet {
|
|
21860
|
+
/** @format int64 */
|
|
21861
|
+
ip: number
|
|
21862
|
+
/** @format int64 */
|
|
21863
|
+
rp: number
|
|
21864
|
+
}
|
|
21865
|
+
|
|
21866
|
+
export interface LolTftPassWalletCacheEntry {
|
|
21867
|
+
signedBalancesJwt: string
|
|
21868
|
+
/** @format uint64 */
|
|
21869
|
+
expirationMS: number
|
|
21870
|
+
/** @format uint64 */
|
|
21871
|
+
issuedAtMS: number
|
|
21872
|
+
/** @format uint64 */
|
|
21873
|
+
receivedAtMS: number
|
|
21874
|
+
valid: boolean
|
|
21875
|
+
}
|
|
21876
|
+
|
|
21877
|
+
export interface LolTftPassWalletDTO {
|
|
21878
|
+
puuid: string
|
|
21879
|
+
/** @format int64 */
|
|
21880
|
+
accountId: number
|
|
21881
|
+
expires: string
|
|
21882
|
+
balances: Record<string, number>
|
|
21883
|
+
balancesJwt: string
|
|
21884
|
+
}
|
|
21885
|
+
|
|
21886
|
+
export interface LolTftPassWalletResponseDTO {
|
|
21887
|
+
data: LolTftPassWalletDTO
|
|
21888
|
+
}
|
|
21889
|
+
|
|
21890
|
+
export interface LolTftPassXboxSubscriptionStatus {
|
|
21891
|
+
active: string
|
|
21892
|
+
subscriptionId: string
|
|
21893
|
+
}
|
|
21894
|
+
|
|
21895
|
+
export interface LolTftPublishingSettings {
|
|
21896
|
+
publishingLocale: string
|
|
21897
|
+
}
|
|
21898
|
+
|
|
21899
|
+
export interface LolTftQueue {
|
|
21900
|
+
/** @format int32 */
|
|
21901
|
+
id: number
|
|
21902
|
+
/** @format int32 */
|
|
21903
|
+
mapId: number
|
|
21904
|
+
gameMode: string
|
|
21905
|
+
category: LolTftQueueGameCategory
|
|
21906
|
+
}
|
|
21907
|
+
|
|
21908
|
+
export type LolTftQueueGameCategory = "Alpha" | "VersusAi" | "PvP" | "Custom" | "None"
|
|
21909
|
+
|
|
21910
|
+
export interface LolTftSettingsResource {
|
|
21911
|
+
data: unknown
|
|
21912
|
+
}
|
|
21913
|
+
|
|
21914
|
+
export interface LolTftSkillTreeAccessTokenResource {
|
|
21915
|
+
token: string
|
|
21916
|
+
scopes: string[]
|
|
21917
|
+
/** @format uint64 */
|
|
21918
|
+
expiry: number
|
|
21919
|
+
}
|
|
21920
|
+
|
|
21921
|
+
export interface LolTftSkillTreeCreateLoadoutDTO {
|
|
21922
|
+
scope: string
|
|
21923
|
+
/** @format uint32 */
|
|
21924
|
+
itemId?: number
|
|
21925
|
+
name: string
|
|
21926
|
+
loadout: Record<string, LolTftSkillTreeItemKey>
|
|
21927
|
+
refreshTime: string
|
|
21928
|
+
}
|
|
21929
|
+
|
|
21930
|
+
export interface LolTftSkillTreeCreateLoadoutRequestDTO {
|
|
21931
|
+
serviceToJwtsMap: Record<string, unknown>
|
|
21932
|
+
loadout: LolTftSkillTreeCreateLoadoutDTO
|
|
21933
|
+
}
|
|
21934
|
+
|
|
21935
|
+
export interface LolTftSkillTreeCreateOrUpdateItemsRequest {
|
|
21936
|
+
/** @format uint32 */
|
|
21937
|
+
id: number
|
|
21938
|
+
items: Record<string, unknown>
|
|
21939
|
+
inventoryJWTs: string[]
|
|
21940
|
+
}
|
|
21941
|
+
|
|
21942
|
+
export interface LolTftSkillTreeEventSkill {
|
|
21943
|
+
id: string
|
|
21944
|
+
/** @format uint8 */
|
|
21945
|
+
itemId: number
|
|
21946
|
+
name: string
|
|
21947
|
+
description: string
|
|
21948
|
+
texture: string
|
|
21949
|
+
owned: boolean
|
|
21950
|
+
equipped: boolean
|
|
21951
|
+
}
|
|
21952
|
+
|
|
21953
|
+
export interface LolTftSkillTreeEventSkillPlayerProgression {
|
|
21954
|
+
/** @format uint8 */
|
|
21955
|
+
rank: number
|
|
21956
|
+
/** @format uint8 */
|
|
21957
|
+
currDivision: number
|
|
21958
|
+
/** @format uint32 */
|
|
21959
|
+
divisionEventPoints: number
|
|
21960
|
+
/** @format uint32 */
|
|
21961
|
+
totalEventPoints: number
|
|
21962
|
+
/** @format uint32 */
|
|
21963
|
+
lastViewedTotalEventPoints: number
|
|
21964
|
+
}
|
|
21965
|
+
|
|
21966
|
+
export interface LolTftSkillTreeEventSkillRankReward {
|
|
21967
|
+
id: string
|
|
21968
|
+
name: string
|
|
21969
|
+
description: string
|
|
21970
|
+
texture: string
|
|
21971
|
+
}
|
|
21972
|
+
|
|
21973
|
+
export type LolTftSkillTreeEventSkillRankState = "kError" | "kClaimed" | "kClaiming" | "kClaimable" | "kUnclaimable"
|
|
21974
|
+
|
|
21975
|
+
export interface LolTftSkillTreeEventSkillTree {
|
|
21976
|
+
name: string
|
|
21977
|
+
ranks: LolTftSkillTreeEventSkillTreeRank[]
|
|
21978
|
+
}
|
|
21979
|
+
|
|
21980
|
+
export interface LolTftSkillTreeEventSkillTreeData {
|
|
21981
|
+
eventSkillTree: LolTftSkillTreeEventSkillTree
|
|
21982
|
+
playerProgression: LolTftSkillTreeEventSkillPlayerProgression
|
|
21983
|
+
}
|
|
21984
|
+
|
|
21985
|
+
export interface LolTftSkillTreeEventSkillTreeRank {
|
|
21986
|
+
state: LolTftSkillTreeEventSkillRankState
|
|
21987
|
+
/** @format uint8 */
|
|
21988
|
+
numDivisions: number
|
|
21989
|
+
/** @format uint32 */
|
|
21990
|
+
totalEventPointsForRank: number
|
|
21991
|
+
rankId: string
|
|
21992
|
+
name: string
|
|
21993
|
+
texture: string
|
|
21994
|
+
skills: LolTftSkillTreeEventSkill[]
|
|
21995
|
+
rewards: LolTftSkillTreeEventSkillRankReward[]
|
|
21996
|
+
}
|
|
21997
|
+
|
|
21998
|
+
export interface LolTftSkillTreeFrontendInventoryResponse {
|
|
21999
|
+
entitlements: LolTftSkillTreeItemKey[]
|
|
22000
|
+
}
|
|
22001
|
+
|
|
22002
|
+
export interface LolTftSkillTreeGameflowGameData {
|
|
22003
|
+
queue: LolTftSkillTreeQueue
|
|
22004
|
+
}
|
|
22005
|
+
|
|
22006
|
+
export type LolTftSkillTreeGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
22007
|
+
|
|
22008
|
+
export interface LolTftSkillTreeGameflowSession {
|
|
22009
|
+
phase: LolTftSkillTreeGameflowPhase
|
|
22010
|
+
gameData: LolTftSkillTreeGameflowGameData
|
|
22011
|
+
}
|
|
22012
|
+
|
|
22013
|
+
export interface LolTftSkillTreeGetItemsRequest {
|
|
22014
|
+
/** @format uint32 */
|
|
22015
|
+
id: number
|
|
22016
|
+
inventoryTypes: string[]
|
|
22017
|
+
inventoryJWTs: string[]
|
|
22018
|
+
}
|
|
22019
|
+
|
|
22020
|
+
export interface LolTftSkillTreeInventoryDTO {
|
|
22021
|
+
puuid: string
|
|
22022
|
+
/** @format uint64 */
|
|
22023
|
+
accountId: number
|
|
22024
|
+
/** @format uint64 */
|
|
22025
|
+
summonerId: number
|
|
22026
|
+
items: Record<string, unknown>
|
|
22027
|
+
expires: string
|
|
22028
|
+
itemsJwt?: string
|
|
22029
|
+
}
|
|
22030
|
+
|
|
22031
|
+
export interface LolTftSkillTreeInventoryItemDTO {
|
|
22032
|
+
/** @format int32 */
|
|
22033
|
+
itemId: number
|
|
20672
22034
|
inventoryType: string
|
|
20673
|
-
|
|
20674
|
-
|
|
20675
|
-
|
|
20676
|
-
|
|
20677
|
-
|
|
20678
|
-
|
|
22035
|
+
expirationDate: string
|
|
22036
|
+
purchaseDate: string
|
|
22037
|
+
/** @format uint64 */
|
|
22038
|
+
quantity: number
|
|
22039
|
+
usedInGameDate: string
|
|
22040
|
+
entitlementId: string
|
|
22041
|
+
entitlementTypeId: string
|
|
22042
|
+
instanceId: string
|
|
22043
|
+
instanceTypeId: string
|
|
22044
|
+
"f2p": boolean
|
|
22045
|
+
rental: boolean
|
|
22046
|
+
lsb: boolean
|
|
22047
|
+
/** @format uint64 */
|
|
22048
|
+
wins: number
|
|
20679
22049
|
}
|
|
20680
22050
|
|
|
20681
|
-
export interface
|
|
20682
|
-
|
|
22051
|
+
export interface LolTftSkillTreeInventoryResponseDTO {
|
|
22052
|
+
data: LolTftSkillTreeInventoryDTO
|
|
20683
22053
|
}
|
|
20684
22054
|
|
|
20685
|
-
export interface
|
|
20686
|
-
|
|
20687
|
-
|
|
20688
|
-
|
|
20689
|
-
|
|
22055
|
+
export interface LolTftSkillTreeItemKey {
|
|
22056
|
+
inventoryType: string
|
|
22057
|
+
contentId: string
|
|
22058
|
+
/** @format int32 */
|
|
22059
|
+
itemId: number
|
|
20690
22060
|
}
|
|
20691
22061
|
|
|
20692
|
-
export interface
|
|
22062
|
+
export interface LolTftSkillTreeLoadout {
|
|
22063
|
+
/** @format uint32 */
|
|
22064
|
+
id: number
|
|
22065
|
+
name: string
|
|
20693
22066
|
items: Record<string, unknown>
|
|
20694
|
-
itemsJwt: string
|
|
20695
|
-
expires: string
|
|
20696
22067
|
}
|
|
20697
22068
|
|
|
20698
|
-
export interface
|
|
20699
|
-
|
|
22069
|
+
export interface LolTftSkillTreeLoadoutRequestDTOBase {
|
|
22070
|
+
serviceToJwtsMap: Record<string, unknown>
|
|
20700
22071
|
}
|
|
20701
22072
|
|
|
20702
|
-
export interface
|
|
20703
|
-
|
|
20704
|
-
|
|
22073
|
+
export interface LolTftSkillTreeLoginSession {
|
|
22074
|
+
state: LolTftSkillTreeLoginSessionStates
|
|
22075
|
+
/** @format uint64 */
|
|
22076
|
+
summonerId: number
|
|
22077
|
+
/** @format uint64 */
|
|
22078
|
+
accountId: number
|
|
22079
|
+
idToken: string
|
|
22080
|
+
puuid: string
|
|
20705
22081
|
}
|
|
20706
22082
|
|
|
20707
|
-
export
|
|
20708
|
-
internalName: string
|
|
20709
|
-
iconTexturePath: string
|
|
20710
|
-
iconNeedsFrame: boolean
|
|
20711
|
-
}
|
|
22083
|
+
export type LolTftSkillTreeLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
20712
22084
|
|
|
20713
|
-
export interface
|
|
20714
|
-
|
|
20715
|
-
eventPassId: string
|
|
20716
|
-
dailyLoginPassId: string
|
|
20717
|
-
skillTreePassId: string
|
|
22085
|
+
export interface LolTftSkillTreeQueue {
|
|
22086
|
+
isTeamBuilderManaged: boolean
|
|
20718
22087
|
}
|
|
20719
22088
|
|
|
20720
|
-
export interface
|
|
22089
|
+
export interface LolTftSkillTreeScopedLoadout {
|
|
22090
|
+
scope: string
|
|
22091
|
+
/** @format uint32 */
|
|
22092
|
+
itemId?: number
|
|
22093
|
+
name: string
|
|
22094
|
+
loadout: Record<string, LolTftSkillTreeItemKey>
|
|
22095
|
+
refreshTime: string
|
|
20721
22096
|
id: string
|
|
20722
|
-
counterID: string
|
|
20723
|
-
productID: string
|
|
20724
|
-
playerID: string
|
|
20725
|
-
title: string
|
|
20726
|
-
premiumTitle: string
|
|
20727
|
-
description: string
|
|
20728
|
-
/** @format int64 */
|
|
20729
|
-
activiationTimeMS: number
|
|
20730
|
-
/** @format int64 */
|
|
20731
|
-
deactivationTimeMS: number
|
|
20732
|
-
assetID: string
|
|
20733
|
-
/** @format int32 */
|
|
20734
|
-
currentLevel: number
|
|
20735
|
-
/** @format int32 */
|
|
20736
|
-
totalPointsEarned: number
|
|
20737
|
-
premiumEntitlementID: string
|
|
20738
|
-
storePurchaseIDs: Record<string, string>
|
|
20739
|
-
milestones: LolTftPassTFTPassMilestoneDTO[]
|
|
20740
|
-
status: string
|
|
20741
22097
|
}
|
|
20742
22098
|
|
|
20743
|
-
export interface
|
|
20744
|
-
|
|
20745
|
-
|
|
20746
|
-
description: string
|
|
20747
|
-
assetInternalName: string
|
|
20748
|
-
keystone: boolean
|
|
20749
|
-
bonus: boolean
|
|
20750
|
-
/** @format int32 */
|
|
20751
|
-
level: number
|
|
20752
|
-
/** @format int32 */
|
|
20753
|
-
pointsNeededForMilestone: number
|
|
20754
|
-
/** @format int32 */
|
|
20755
|
-
totalPointsNeededForMilestone: number
|
|
20756
|
-
/** @format int32 */
|
|
20757
|
-
pointsEarnedForMilestone: number
|
|
20758
|
-
status: string
|
|
20759
|
-
rewards: LolTftPassTFTPassRewardDTO[]
|
|
22099
|
+
export interface LolTftSkillTreeSignGCORequestDTO {
|
|
22100
|
+
serviceToJwtsMap: Record<string, unknown>
|
|
22101
|
+
loadout: Record<string, LolTftSkillTreeItemKey>
|
|
20760
22102
|
}
|
|
20761
22103
|
|
|
20762
|
-
export interface
|
|
20763
|
-
|
|
20764
|
-
|
|
20765
|
-
|
|
20766
|
-
|
|
22104
|
+
export interface LolTftSkillTreeTFTEventSkillData {
|
|
22105
|
+
ContentId: string
|
|
22106
|
+
/** @format uint8 */
|
|
22107
|
+
ItemId: number
|
|
22108
|
+
Name: string
|
|
22109
|
+
Description: string
|
|
22110
|
+
IconTexturePath: string
|
|
20767
22111
|
}
|
|
20768
22112
|
|
|
20769
|
-
export interface
|
|
20770
|
-
|
|
20771
|
-
|
|
20772
|
-
iconURL: string
|
|
20773
|
-
framedIcon: boolean
|
|
22113
|
+
export interface LolTftSkillTreeTFTEventSkillTreeData {
|
|
22114
|
+
Name: string
|
|
22115
|
+
Ranks: LolTftSkillTreeTFTEventSkillTreeRankData[]
|
|
20774
22116
|
}
|
|
20775
22117
|
|
|
20776
|
-
export interface
|
|
22118
|
+
export interface LolTftSkillTreeTFTEventSkillTreeRankData {
|
|
22119
|
+
Name: string
|
|
22120
|
+
IconTexturePath: string
|
|
22121
|
+
/** @format uint8 */
|
|
22122
|
+
NumDivisions: number
|
|
22123
|
+
Skills: LolTftSkillTreeTFTEventSkillData[]
|
|
22124
|
+
}
|
|
22125
|
+
|
|
22126
|
+
export interface LolTftSkillTreeTftBattlepass {
|
|
20777
22127
|
/** @format int32 */
|
|
20778
22128
|
totalPointsEarned: number
|
|
20779
|
-
milestones:
|
|
20780
|
-
bonuses:
|
|
20781
|
-
activeMilestone:
|
|
20782
|
-
info:
|
|
22129
|
+
milestones: LolTftSkillTreeTftBattlepassMilestone[]
|
|
22130
|
+
bonuses: LolTftSkillTreeTftBattlepassMilestone[]
|
|
22131
|
+
activeMilestone: LolTftSkillTreeTftBattlepassMilestone
|
|
22132
|
+
info: LolTftSkillTreeTftBattlepassInfo
|
|
20783
22133
|
/** @format int32 */
|
|
20784
22134
|
lastViewedProgress: number
|
|
20785
|
-
lastViewedMilestone:
|
|
22135
|
+
lastViewedMilestone: LolTftSkillTreeTftBattlepassMilestone
|
|
20786
22136
|
/** @format int32 */
|
|
20787
22137
|
currentLevel: number
|
|
20788
22138
|
}
|
|
20789
22139
|
|
|
20790
|
-
export interface
|
|
22140
|
+
export interface LolTftSkillTreeTftBattlepassInfo {
|
|
20791
22141
|
title: string
|
|
20792
22142
|
description: string
|
|
20793
22143
|
/** @format uint64 */
|
|
@@ -20802,7 +22152,7 @@ export interface LolTftPassTftBattlepassInfo {
|
|
|
20802
22152
|
media: Record<string, string>
|
|
20803
22153
|
}
|
|
20804
22154
|
|
|
20805
|
-
export interface
|
|
22155
|
+
export interface LolTftSkillTreeTftBattlepassMilestone {
|
|
20806
22156
|
milestoneId: string
|
|
20807
22157
|
title: string
|
|
20808
22158
|
description: string
|
|
@@ -20817,7 +22167,7 @@ export interface LolTftPassTftBattlepassMilestone {
|
|
|
20817
22167
|
level: number
|
|
20818
22168
|
iconImageUrl: string
|
|
20819
22169
|
iconNeedsFrame: boolean
|
|
20820
|
-
rewards:
|
|
22170
|
+
rewards: LolTftSkillTreeTftBattlepassReward[]
|
|
20821
22171
|
isPaid: boolean
|
|
20822
22172
|
isLocked: boolean
|
|
20823
22173
|
isKeystone: boolean
|
|
@@ -20825,103 +22175,111 @@ export interface LolTftPassTftBattlepassMilestone {
|
|
|
20825
22175
|
isClaimRequestPending: boolean
|
|
20826
22176
|
}
|
|
20827
22177
|
|
|
20828
|
-
export interface
|
|
22178
|
+
export interface LolTftSkillTreeTftBattlepassReward {
|
|
22179
|
+
name: string
|
|
20829
22180
|
description: string
|
|
22181
|
+
itemId: string
|
|
22182
|
+
itemTypeId: string
|
|
20830
22183
|
iconUrl: string
|
|
20831
22184
|
iconNeedsFrame: boolean
|
|
20832
22185
|
}
|
|
20833
22186
|
|
|
20834
|
-
export interface
|
|
20835
|
-
|
|
20836
|
-
|
|
20837
|
-
|
|
20838
|
-
triggerValue: number
|
|
22187
|
+
export interface LolTftSkillTreeUpdateLoadoutDTO {
|
|
22188
|
+
id: string
|
|
22189
|
+
name: string
|
|
22190
|
+
loadout: Record<string, LolTftSkillTreeItemKey>
|
|
20839
22191
|
}
|
|
20840
22192
|
|
|
20841
|
-
export interface
|
|
20842
|
-
|
|
20843
|
-
|
|
20844
|
-
/** @format int64 */
|
|
20845
|
-
rp: number
|
|
22193
|
+
export interface LolTftSkillTreeUpdateLoadoutRequestDTO {
|
|
22194
|
+
serviceToJwtsMap: Record<string, unknown>
|
|
22195
|
+
loadout: LolTftSkillTreeUpdateLoadoutDTO
|
|
20846
22196
|
}
|
|
20847
22197
|
|
|
20848
|
-
export interface
|
|
20849
|
-
|
|
20850
|
-
/** @format uint64 */
|
|
20851
|
-
expirationMS: number
|
|
20852
|
-
/** @format uint64 */
|
|
20853
|
-
issuedAtMS: number
|
|
20854
|
-
/** @format uint64 */
|
|
20855
|
-
receivedAtMS: number
|
|
20856
|
-
valid: boolean
|
|
22198
|
+
export interface LolTftTeamPlannerChampion {
|
|
22199
|
+
championId: string
|
|
20857
22200
|
}
|
|
20858
22201
|
|
|
20859
|
-
export interface
|
|
20860
|
-
|
|
20861
|
-
/** @format int64 */
|
|
20862
|
-
accountId: number
|
|
20863
|
-
expires: string
|
|
20864
|
-
balances: Record<string, number>
|
|
20865
|
-
balancesJwt: string
|
|
22202
|
+
export interface LolTftTeamPlannerGameDataTFTSets {
|
|
22203
|
+
LCTFTModeData: LolTftTeamPlannerTFTModeData
|
|
20866
22204
|
}
|
|
20867
22205
|
|
|
20868
|
-
export interface
|
|
20869
|
-
|
|
22206
|
+
export interface LolTftTeamPlannerGameflowGameData {
|
|
22207
|
+
queue: LolTftTeamPlannerQueue
|
|
20870
22208
|
}
|
|
20871
22209
|
|
|
20872
|
-
export
|
|
20873
|
-
active: string
|
|
20874
|
-
subscriptionId: string
|
|
20875
|
-
}
|
|
22210
|
+
export type LolTftTeamPlannerGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
20876
22211
|
|
|
20877
|
-
export interface
|
|
20878
|
-
|
|
22212
|
+
export interface LolTftTeamPlannerGameflowSession {
|
|
22213
|
+
phase: LolTftTeamPlannerGameflowPhase
|
|
22214
|
+
gameData: LolTftTeamPlannerGameflowGameData
|
|
20879
22215
|
}
|
|
20880
22216
|
|
|
20881
|
-
export interface
|
|
20882
|
-
|
|
20883
|
-
|
|
20884
|
-
/** @format
|
|
20885
|
-
|
|
20886
|
-
gameMode: string
|
|
20887
|
-
category: LolTftQueueGameCategory
|
|
22217
|
+
export interface LolTftTeamPlannerImportedTeamCodeChampionData {
|
|
22218
|
+
championId: string
|
|
22219
|
+
icon: string
|
|
22220
|
+
/** @format uint32 */
|
|
22221
|
+
price: number
|
|
20888
22222
|
}
|
|
20889
22223
|
|
|
20890
|
-
export
|
|
20891
|
-
|
|
20892
|
-
|
|
20893
|
-
data: unknown
|
|
22224
|
+
export interface LolTftTeamPlannerImportedTeamCodeData {
|
|
22225
|
+
teamCode: string
|
|
22226
|
+
teamPlan: LolTftTeamPlannerImportedTeamCodeChampionData[]
|
|
20894
22227
|
}
|
|
20895
22228
|
|
|
20896
|
-
export interface
|
|
20897
|
-
|
|
22229
|
+
export interface LolTftTeamPlannerNamecheckAuthorization {
|
|
22230
|
+
subject: string
|
|
20898
22231
|
}
|
|
20899
22232
|
|
|
20900
|
-
export interface
|
|
20901
|
-
|
|
22233
|
+
export interface LolTftTeamPlannerNamecheckLoginDataPacket {
|
|
22234
|
+
platformId: string
|
|
20902
22235
|
}
|
|
20903
22236
|
|
|
20904
|
-
export interface
|
|
20905
|
-
|
|
22237
|
+
export interface LolTftTeamPlannerNamecheckPayload {
|
|
22238
|
+
name: string
|
|
22239
|
+
nameValidationContext: string
|
|
22240
|
+
puuid: string
|
|
22241
|
+
shard: string
|
|
20906
22242
|
}
|
|
20907
22243
|
|
|
20908
|
-
export
|
|
22244
|
+
export interface LolTftTeamPlannerNamecheckResponse {
|
|
22245
|
+
errors: string[]
|
|
22246
|
+
}
|
|
20909
22247
|
|
|
20910
|
-
export interface
|
|
20911
|
-
|
|
20912
|
-
|
|
22248
|
+
export interface LolTftTeamPlannerPreviouslyUsedContext {
|
|
22249
|
+
optionalTeamId: string
|
|
22250
|
+
setId: string
|
|
22251
|
+
/** @format uint8 */
|
|
22252
|
+
sortOption: number
|
|
22253
|
+
/** @format uint8 */
|
|
22254
|
+
viewId: number
|
|
20913
22255
|
}
|
|
20914
22256
|
|
|
20915
22257
|
export interface LolTftTeamPlannerQueue {
|
|
20916
22258
|
gameMode: string
|
|
20917
22259
|
}
|
|
20918
22260
|
|
|
22261
|
+
export interface LolTftTeamPlannerSanitizeRequest {
|
|
22262
|
+
texts: string[]
|
|
22263
|
+
aggressiveScan?: boolean
|
|
22264
|
+
}
|
|
22265
|
+
|
|
22266
|
+
export interface LolTftTeamPlannerSanitizeResponse {
|
|
22267
|
+
modified: boolean
|
|
22268
|
+
}
|
|
22269
|
+
|
|
20919
22270
|
export interface LolTftTeamPlannerSettingsStorageContainer {
|
|
20920
22271
|
data: LolTftTeamPlannerTeamSettings
|
|
20921
22272
|
/** @format uint32 */
|
|
20922
22273
|
schemaVersion: number
|
|
20923
22274
|
}
|
|
20924
22275
|
|
|
22276
|
+
export interface LolTftTeamPlannerTFTChampionData {
|
|
22277
|
+
character_id: string
|
|
22278
|
+
squareIconPath: string
|
|
22279
|
+
/** @format uint32 */
|
|
22280
|
+
tier: number
|
|
22281
|
+
}
|
|
22282
|
+
|
|
20925
22283
|
export interface LolTftTeamPlannerTFTMapSetData {
|
|
20926
22284
|
SetCoreName: string
|
|
20927
22285
|
}
|
|
@@ -20929,12 +22287,16 @@ export interface LolTftTeamPlannerTFTMapSetData {
|
|
|
20929
22287
|
export interface LolTftTeamPlannerTFTModeData {
|
|
20930
22288
|
mDefaultSet: LolTftTeamPlannerTFTMapSetData
|
|
20931
22289
|
mEventSet: LolTftTeamPlannerTFTMapSetData
|
|
22290
|
+
mDefaultTeamName: string
|
|
22291
|
+
mDefaultTeamNameNumbered: string
|
|
20932
22292
|
}
|
|
20933
22293
|
|
|
20934
22294
|
export interface LolTftTeamPlannerTFTTeamPlannerConfig {
|
|
20935
22295
|
enabled: boolean
|
|
20936
22296
|
multipleSetsEnabled: boolean
|
|
20937
22297
|
multipleTeamsEnabled: boolean
|
|
22298
|
+
tencentNameCheckEnabled: boolean
|
|
22299
|
+
globalNameSanitizationEnabled: boolean
|
|
20938
22300
|
}
|
|
20939
22301
|
|
|
20940
22302
|
export interface LolTftTeamPlannerTeamPlan {
|
|
@@ -20945,21 +22307,34 @@ export interface LolTftTeamPlannerTeamPlan {
|
|
|
20945
22307
|
timeOfCreationInMs: number
|
|
20946
22308
|
/** @format uint64 */
|
|
20947
22309
|
timeOfLastViewInMs: number
|
|
22310
|
+
/** @format uint64 */
|
|
22311
|
+
timeOfLastReminderToggleInMs: number
|
|
20948
22312
|
setName: string
|
|
22313
|
+
teamIsImported: boolean
|
|
22314
|
+
editedByPlayer: boolean
|
|
20949
22315
|
}
|
|
20950
22316
|
|
|
20951
22317
|
export interface LolTftTeamPlannerTeamSettings {
|
|
20952
22318
|
teams: LolTftTeamPlannerTeamPlan[]
|
|
22319
|
+
teamMap: Record<string, LolTftTeamPlannerTeamsForSet>
|
|
20953
22320
|
remindersEnabled: boolean
|
|
20954
22321
|
/** @format uint64 */
|
|
20955
22322
|
registeredTeamIndex: number
|
|
20956
22323
|
hasViewedTeamPlanner: boolean
|
|
22324
|
+
eventSetLastViewed: boolean
|
|
22325
|
+
previouslyUsedContext: LolTftTeamPlannerPreviouslyUsedContext
|
|
20957
22326
|
}
|
|
20958
22327
|
|
|
20959
22328
|
export interface LolTftTeamPlannerTeamsForSet {
|
|
20960
22329
|
teams: LolTftTeamPlannerTeamPlan[]
|
|
20961
22330
|
/** @format uint64 */
|
|
20962
22331
|
registeredTeamIndex: number
|
|
22332
|
+
remindedTeamId: string
|
|
22333
|
+
}
|
|
22334
|
+
|
|
22335
|
+
export interface LolTftTeamPlannerValidateItemSetNameResponse {
|
|
22336
|
+
success: boolean
|
|
22337
|
+
nameCheckResponse: LolTftTeamPlannerNamecheckResponse
|
|
20963
22338
|
}
|
|
20964
22339
|
|
|
20965
22340
|
export interface LolTftTrovesCapCounterBalanceDto {
|
|
@@ -20982,6 +22357,9 @@ export interface LolTftTrovesCapDropsDropTableDisplayMetadata {
|
|
|
20982
22357
|
/** @format uint8 */
|
|
20983
22358
|
version: number
|
|
20984
22359
|
chaseContentId: string
|
|
22360
|
+
chaseContentIds: string[]
|
|
22361
|
+
prestigeContentIds: string[]
|
|
22362
|
+
bountyType: string
|
|
20985
22363
|
oddsTree: LolTftTrovesDropsOddsTreeNodeDTO
|
|
20986
22364
|
}
|
|
20987
22365
|
|
|
@@ -21053,10 +22431,12 @@ export interface LolTftTrovesDropsDropTableWithPityDTO {
|
|
|
21053
22431
|
export interface LolTftTrovesDropsOddsListEntryDTO {
|
|
21054
22432
|
contentId: string
|
|
21055
22433
|
nodeId: string
|
|
22434
|
+
sourceId: string
|
|
21056
22435
|
}
|
|
21057
22436
|
|
|
21058
22437
|
export interface LolTftTrovesDropsOddsTreeNodeDTO {
|
|
21059
22438
|
nodeId: string
|
|
22439
|
+
sourceId: string
|
|
21060
22440
|
/** @format float */
|
|
21061
22441
|
odds: number
|
|
21062
22442
|
children: LolTftTrovesDropsOddsTreeNodeDTO[]
|
|
@@ -21307,6 +22687,7 @@ export interface LolTftTrovesTrovesActiveBanner {
|
|
|
21307
22687
|
id: string
|
|
21308
22688
|
/** @format uint8 */
|
|
21309
22689
|
version: number
|
|
22690
|
+
videoId: string
|
|
21310
22691
|
}
|
|
21311
22692
|
|
|
21312
22693
|
export interface LolTftTrovesTrovesBanner {
|
|
@@ -21333,9 +22714,12 @@ export interface LolTftTrovesTrovesBanner {
|
|
|
21333
22714
|
maxTotalRolls: number
|
|
21334
22715
|
/** @format uint32 */
|
|
21335
22716
|
pullCost: number
|
|
21336
|
-
|
|
22717
|
+
chaseContentIds: string[]
|
|
22718
|
+
prestigeContentIds: string[]
|
|
21337
22719
|
celebrationTheme: LolTftTrovesTrovesCelebrationThemeData
|
|
21338
22720
|
status: LolTftTrovesTrovesStatus
|
|
22721
|
+
bountyType: string
|
|
22722
|
+
videoId: string
|
|
21339
22723
|
}
|
|
21340
22724
|
|
|
21341
22725
|
export interface LolTftTrovesTrovesCelebrationCurrencySegmentData {
|
|
@@ -21452,6 +22836,11 @@ export interface LolTftTrovesTrovesMilestones {
|
|
|
21452
22836
|
counter: LolTftTrovesTrovesMilestoneCounter
|
|
21453
22837
|
}
|
|
21454
22838
|
|
|
22839
|
+
export interface LolTftTrovesTrovesOwnedStatus {
|
|
22840
|
+
chaseContentId: string
|
|
22841
|
+
owned: boolean
|
|
22842
|
+
}
|
|
22843
|
+
|
|
21455
22844
|
export interface LolTftTrovesTrovesPCSpriteAnimation {
|
|
21456
22845
|
spritesheetPath: string
|
|
21457
22846
|
/** @format float */
|
|
@@ -21514,9 +22903,7 @@ export interface LolTftTrovesTrovesRollRequest {
|
|
|
21514
22903
|
}
|
|
21515
22904
|
|
|
21516
22905
|
export interface LolTftTrovesTrovesStatus {
|
|
21517
|
-
|
|
21518
|
-
/** @format uint32 */
|
|
21519
|
-
availableContents: number
|
|
22906
|
+
ownedStatus: LolTftTrovesTrovesOwnedStatus[]
|
|
21520
22907
|
/** @format uint8 */
|
|
21521
22908
|
pityCount: number
|
|
21522
22909
|
dropTableId: string
|
|
@@ -21610,8 +22997,16 @@ export interface LolUserExperienceGameflowSession {
|
|
|
21610
22997
|
phase: LolUserExperienceGameflowPhase
|
|
21611
22998
|
}
|
|
21612
22999
|
|
|
23000
|
+
export interface LolVanguardEntitlementsTokenResource {
|
|
23001
|
+
accessToken: string
|
|
23002
|
+
token: string
|
|
23003
|
+
entitlements: string[]
|
|
23004
|
+
}
|
|
23005
|
+
|
|
21613
23006
|
export type LolVanguardGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
21614
23007
|
|
|
23008
|
+
export type LolVanguardGameflowServiceErrorType = "PLAYER_LACKS_VANGUARD_SESSION"
|
|
23009
|
+
|
|
21615
23010
|
export interface LolVanguardGameflowSession {
|
|
21616
23011
|
phase: LolVanguardGameflowPhase
|
|
21617
23012
|
}
|
|
@@ -22556,6 +23951,9 @@ export interface PaymentsFrontEndRequest {
|
|
|
22556
23951
|
usePmcSessions: boolean
|
|
22557
23952
|
game: string
|
|
22558
23953
|
openedFrom: string
|
|
23954
|
+
/** @format int16 */
|
|
23955
|
+
minVirtualAmount: number
|
|
23956
|
+
orderDetailsJSON: string
|
|
22559
23957
|
}
|
|
22560
23958
|
|
|
22561
23959
|
export interface PaymentsFrontEndResult {
|
|
@@ -22570,6 +23968,10 @@ export interface PaymentsPMCStartUrlRequest {
|
|
|
22570
23968
|
gifteeAccountId: string
|
|
22571
23969
|
gifteeMessage: string
|
|
22572
23970
|
game: string
|
|
23971
|
+
openedFrom: string
|
|
23972
|
+
/** @format int16 */
|
|
23973
|
+
minVirtualAmount: number
|
|
23974
|
+
orderDetailsJSON: string
|
|
22573
23975
|
}
|
|
22574
23976
|
|
|
22575
23977
|
export interface PaymentsPMCStartUrlResult {
|
|
@@ -23128,11 +24530,6 @@ export interface RiotMessagingServiceEntitlementsToken {
|
|
|
23128
24530
|
entitlements: string[]
|
|
23129
24531
|
}
|
|
23130
24532
|
|
|
23131
|
-
export interface RiotMessagingServicePluginRegionLocaleChangedEvent {
|
|
23132
|
-
region: string
|
|
23133
|
-
locale: string
|
|
23134
|
-
}
|
|
23135
|
-
|
|
23136
24533
|
export interface RiotMessagingServiceSession {
|
|
23137
24534
|
state: RiotMessagingServiceState
|
|
23138
24535
|
token: string
|