@hasagi/types 15.17.1 → 15.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lcu-endpoints.d.ts +75 -18
- package/dist/lcu-events.d.ts +42 -50
- package/dist/lcu-types.d.ts +1379 -104
- package/package.json +9 -11
package/dist/lcu-endpoints.d.ts
CHANGED
|
@@ -77,6 +77,10 @@ export interface LCUEndpoints {
|
|
|
77
77
|
put: { path: never, params: never, body: number, response: unknown }
|
|
78
78
|
delete: { path: never, params: never, body: never, response: unknown }
|
|
79
79
|
},
|
|
80
|
+
"/lol-cosmetics/v1/selection/tft-augment-pillar": {
|
|
81
|
+
put: { path: never, params: never, body: number, response: unknown }
|
|
82
|
+
delete: { path: never, params: never, body: never, response: unknown }
|
|
83
|
+
},
|
|
80
84
|
"/lol-cosmetics/v1/selection/tft-damage-skin": {
|
|
81
85
|
put: { path: never, params: never, body: number, response: unknown }
|
|
82
86
|
delete: { path: never, params: never, body: never, response: unknown }
|
|
@@ -322,9 +326,6 @@ export interface LCUEndpoints {
|
|
|
322
326
|
"/Exit": {
|
|
323
327
|
post: { path: never, params: never, body: never, response: unknown }
|
|
324
328
|
},
|
|
325
|
-
"/anti-addiction/v1/policies/{policyType}/anti-addiction-state": {
|
|
326
|
-
get: { path: [policyType: LCUTypes.LolAntiAddictionPolicyType], params: never, body: never, response: LCUTypes.LolAntiAddictionAntiAddictionState }
|
|
327
|
-
},
|
|
328
329
|
"/{plugin}/assets/{+path}": {
|
|
329
330
|
get: { path: [plugin: string, path: string], params: { "if-none-match"?: string }, body: never, response: unknown }
|
|
330
331
|
head: { path: [plugin: string, path: string], params: { "if-none-match"?: string }, body: never, response: unknown }
|
|
@@ -394,9 +395,6 @@ export interface LCUEndpoints {
|
|
|
394
395
|
"/lol-activity-center/v1/ready": {
|
|
395
396
|
get: { path: never, params: never, body: never, response: boolean }
|
|
396
397
|
},
|
|
397
|
-
"/lol-anti-addiction/v1/anti-addiction-token": {
|
|
398
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolAntiAddictionAntiAddictionToken }
|
|
399
|
-
},
|
|
400
398
|
"/lol-banners/v1/current-summoner/flags": {
|
|
401
399
|
get: { path: never, params: never, body: never, response: LCUTypes.LolBannersBannerFlag[] }
|
|
402
400
|
},
|
|
@@ -425,6 +423,9 @@ export interface LCUEndpoints {
|
|
|
425
423
|
"/lol-catalog/v1/items/{inventoryType}": {
|
|
426
424
|
get: { path: [inventoryType: string], params: never, body: never, response: LCUTypes.LolCatalogCatalogPluginItem[] }
|
|
427
425
|
},
|
|
426
|
+
"/lol-catalog/v1/items/{skinId}/related-bundles": {
|
|
427
|
+
get: { path: [skinId: number], params: never, body: never, response: LCUTypes.LolCatalogCatalogPluginItemWithDetails[] }
|
|
428
|
+
},
|
|
428
429
|
"/lol-catalog/v1/items-list-details": {
|
|
429
430
|
get: { path: never, params: { "catalogItemsKeys": LCUTypes.LolCatalogItemKey[] }, body: never, response: LCUTypes.LolCatalogCatalogPluginItemWithDetails[] }
|
|
430
431
|
},
|
|
@@ -589,8 +590,8 @@ export interface LCUEndpoints {
|
|
|
589
590
|
"/lol-champion-mastery/v1/{puuid}/champion-mastery": {
|
|
590
591
|
get: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMastery[] }
|
|
591
592
|
},
|
|
592
|
-
"/lol-champion-mastery/v1/
|
|
593
|
-
get: { path:
|
|
593
|
+
"/lol-champion-mastery/v1/champion-mastery-view-enabled": {
|
|
594
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
594
595
|
},
|
|
595
596
|
"/lol-champion-mastery/v1/local-player/champion-mastery": {
|
|
596
597
|
get: { path: never, params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMastery[] }
|
|
@@ -607,6 +608,9 @@ export interface LCUEndpoints {
|
|
|
607
608
|
"/lol-champion-mastery/v1/reward-grants": {
|
|
608
609
|
get: { path: never, params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMasteryRewardGrantNotification[] }
|
|
609
610
|
},
|
|
611
|
+
"/lol-champions/v1/inventories/{summonerId}/{queueId}/champions-minimal-per-queue": {
|
|
612
|
+
get: { path: [summonerId: number, queueId: number], params: never, body: never, response: LCUTypes.LolChampionsCollectionsChampionMinimal[] }
|
|
613
|
+
},
|
|
610
614
|
"/lol-champions/v1/inventories/{summonerId}/champions": {
|
|
611
615
|
get: { path: [summonerId: number], params: never, body: never, response: LCUTypes.LolChampionsCollectionsChampion[] }
|
|
612
616
|
},
|
|
@@ -844,6 +848,9 @@ export interface LCUEndpoints {
|
|
|
844
848
|
"/lol-cosmetics/v1/favorites/tft/zoom-skins": {
|
|
845
849
|
get: { path: never, params: never, body: never, response: LCUTypes.LolCosmeticsTFTZoomSkinFavoritesViewModel }
|
|
846
850
|
},
|
|
851
|
+
"/lol-cosmetics/v1/inventories/{setName}/augment-pillars": {
|
|
852
|
+
get: { path: [setName: string], params: never, body: never, response: LCUTypes.LolCosmeticsTFTAugmentPillarGroupedViewModel }
|
|
853
|
+
},
|
|
847
854
|
"/lol-cosmetics/v1/inventories/{setName}/companions": {
|
|
848
855
|
get: { path: [setName: string], params: never, body: never, response: LCUTypes.LolCosmeticsCompanionsGroupedViewModel }
|
|
849
856
|
},
|
|
@@ -1333,9 +1340,6 @@ export interface LCUEndpoints {
|
|
|
1333
1340
|
"/lol-license-agreement/v1/privacy-policy": {
|
|
1334
1341
|
get: { path: never, params: never, body: never, response: string }
|
|
1335
1342
|
},
|
|
1336
|
-
"/lol-license-agreement/v1/serve-location": {
|
|
1337
|
-
get: { path: never, params: never, body: never, response: LCUTypes.LolLicenseAgreementLicenseServeLocation }
|
|
1338
|
-
},
|
|
1339
1343
|
"/lol-loadouts/v1/loadouts-ready": {
|
|
1340
1344
|
get: { path: never, params: never, body: never, response: boolean }
|
|
1341
1345
|
},
|
|
@@ -1360,9 +1364,6 @@ export interface LCUEndpoints {
|
|
|
1360
1364
|
"/lol-lobby-team-builder/champ-select/v1/disabled-champion-ids": {
|
|
1361
1365
|
get: { path: never, params: never, body: never, response: number[] }
|
|
1362
1366
|
},
|
|
1363
|
-
"/lol-lobby-team-builder/champ-select/v1/f2p-rotation-for-current-queue": {
|
|
1364
|
-
get: { path: never, params: never, body: never, response: number[] }
|
|
1365
|
-
},
|
|
1366
1367
|
"/lol-lobby-team-builder/champ-select/v1/has-auto-assigned-smite": {
|
|
1367
1368
|
get: { path: never, params: never, body: never, response: boolean }
|
|
1368
1369
|
},
|
|
@@ -1968,6 +1969,9 @@ export interface LCUEndpoints {
|
|
|
1968
1969
|
"/lol-purchase-widget/v1/configuration": {
|
|
1969
1970
|
get: { path: never, params: never, body: never, response: LCUTypes.LolPurchaseWidgetPurchaseWidgetConfig }
|
|
1970
1971
|
},
|
|
1972
|
+
"/lol-purchase-widget/v1/items/{skinId}/related-bundles": {
|
|
1973
|
+
get: { path: [skinId: number], params: never, body: never, response: LCUTypes.LolPurchaseWidgetCatalogPluginItemWithDetails[] }
|
|
1974
|
+
},
|
|
1971
1975
|
"/lol-purchase-widget/v1/order-notifications": {
|
|
1972
1976
|
get: { path: never, params: never, body: never, response: LCUTypes.LolPurchaseWidgetOrderNotificationResource[] }
|
|
1973
1977
|
},
|
|
@@ -2304,16 +2308,15 @@ export interface LCUEndpoints {
|
|
|
2304
2308
|
"/lol-suggested-players/v1/suggested-players": {
|
|
2305
2309
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSuggestedPlayersSuggestedPlayersSuggestedPlayer[] }
|
|
2306
2310
|
},
|
|
2307
|
-
"/lol-summoner-profiles/v1/{puuid}/champion-mastery-view": {
|
|
2308
|
-
get: { path: [puuid: string], params: never, body: never, response: {
|
|
2309
|
-
} }
|
|
2310
|
-
},
|
|
2311
2311
|
"/lol-summoner-profiles/v1/get-champion-mastery-view": {
|
|
2312
2312
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesChampionMasteryView }
|
|
2313
2313
|
},
|
|
2314
2314
|
"/lol-summoner-profiles/v1/get-honor-view": {
|
|
2315
2315
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesHonorView }
|
|
2316
2316
|
},
|
|
2317
|
+
"/lol-summoner-profiles/v1/get-privacy-view": {
|
|
2318
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesPrivacyView }
|
|
2319
|
+
},
|
|
2317
2320
|
"/lol-summoner-profiles/v1/get-summoner-level-view": {
|
|
2318
2321
|
get: { path: never, params: never, body: never, response: LCUTypes.LolSummonerProfilesSummonerLevel }
|
|
2319
2322
|
},
|
|
@@ -2404,6 +2407,30 @@ export interface LCUEndpoints {
|
|
|
2404
2407
|
"/lol-tastes/v1/tft-overview-model": {
|
|
2405
2408
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTastesDataModelResponse }
|
|
2406
2409
|
},
|
|
2410
|
+
"/lol-tft-event-pve/v1/buddies": {
|
|
2411
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftEventPveTFTEventBuddy[] }
|
|
2412
|
+
},
|
|
2413
|
+
"/lol-tft-event-pve/v1/buddy": {
|
|
2414
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftEventPveTFTEventBuddy }
|
|
2415
|
+
},
|
|
2416
|
+
"/lol-tft-event-pve/v1/difficulty": {
|
|
2417
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftEventPveTFTEventPVELevel }
|
|
2418
|
+
},
|
|
2419
|
+
"/lol-tft-event-pve/v1/enabled": {
|
|
2420
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
2421
|
+
},
|
|
2422
|
+
"/lol-tft-event-pve/v1/eogmissionrewards": {
|
|
2423
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftEventPveTFTEventPVEEoGMissionReward[] }
|
|
2424
|
+
},
|
|
2425
|
+
"/lol-tft-event-pve/v1/eventpvehub": {
|
|
2426
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftEventPveTFTEventPVEHub }
|
|
2427
|
+
},
|
|
2428
|
+
"/lol-tft-event-pve/v1/journeytrack/bonuses": {
|
|
2429
|
+
get: { path: never, params: never, body: never, response: LCUTypes.LolTftEventPveTFTEventPVEJourneyTrackBonuses }
|
|
2430
|
+
},
|
|
2431
|
+
"/lol-tft-event-pve/v1/ready": {
|
|
2432
|
+
get: { path: never, params: never, body: never, response: boolean }
|
|
2433
|
+
},
|
|
2407
2434
|
"/lol-tft-pass/v1/active-passes": {
|
|
2408
2435
|
get: { path: never, params: never, body: never, response: LCUTypes.LolTftPassTftBattlepass[] }
|
|
2409
2436
|
},
|
|
@@ -2902,6 +2929,12 @@ export interface LCUEndpoints {
|
|
|
2902
2929
|
"/lol-champion-mastery/v1/{puuid}/champion-mastery/top": {
|
|
2903
2930
|
post: { path: [puuid: string], params: never, body: number, response: LCUTypes.LolChampionMasteryTopChampionMasteries }
|
|
2904
2931
|
},
|
|
2932
|
+
"/lol-champion-mastery/v1/{puuid}/champion-mastery-view": {
|
|
2933
|
+
post: { path: [puuid: string], params: never, body: never, response: LCUTypes.LolChampionMasteryChampionMasteryViewData[] }
|
|
2934
|
+
},
|
|
2935
|
+
"/lol-champion-mastery/v1/{puuid}/champion-mastery-view/top": {
|
|
2936
|
+
post: { path: [puuid: string], params: never, body: number, response: LCUTypes.LolChampionMasteryTopChampionMasteries }
|
|
2937
|
+
},
|
|
2905
2938
|
"/lol-champion-mastery/v1/notifications/ack": {
|
|
2906
2939
|
post: { path: never, params: never, body: never, response: void }
|
|
2907
2940
|
},
|
|
@@ -3523,6 +3556,9 @@ export interface LCUEndpoints {
|
|
|
3523
3556
|
"/lol-settings/v2/reload/{ppType}": {
|
|
3524
3557
|
post: { path: [ppType: string], params: never, body: never, response: void }
|
|
3525
3558
|
},
|
|
3559
|
+
"/lol-shoppefront/v1/bulk-purchases": {
|
|
3560
|
+
post: { path: never, params: never, body: LCUTypes.LolShoppefrontBulkPurchaseRequest, response: string }
|
|
3561
|
+
},
|
|
3526
3562
|
"/lol-shoppefront/v1/purchases": {
|
|
3527
3563
|
post: { path: never, params: never, body: LCUTypes.LolShoppefrontPurchaseRequest, response: string }
|
|
3528
3564
|
},
|
|
@@ -3580,6 +3616,9 @@ export interface LCUEndpoints {
|
|
|
3580
3616
|
"/lol-summoner/v2/summoners/puuid": {
|
|
3581
3617
|
post: { path: never, params: never, body: string[], response: LCUTypes.LolSummonerSummoner[] }
|
|
3582
3618
|
},
|
|
3619
|
+
"/lol-tft-event-pve/v1/eogmissionrewards/clear": {
|
|
3620
|
+
post: { path: never, params: never, body: never, response: void }
|
|
3621
|
+
},
|
|
3583
3622
|
"/lol-tft-pass/v1/pass/{id}": {
|
|
3584
3623
|
post: { path: [id: string], params: never, body: never, response: void }
|
|
3585
3624
|
},
|
|
@@ -3871,6 +3910,24 @@ export interface LCUEndpoints {
|
|
|
3871
3910
|
"/lol-summoner/v1/current-summoner/icon": {
|
|
3872
3911
|
put: { path: never, params: never, body: LCUTypes.LolSummonerSummonerIcon, response: LCUTypes.LolSummonerSummoner }
|
|
3873
3912
|
},
|
|
3913
|
+
"/lol-tft-event-pve/v1/buddy/{id}/equip": {
|
|
3914
|
+
put: { path: [id: number], params: never, body: never, response: void }
|
|
3915
|
+
},
|
|
3916
|
+
"/lol-tft-event-pve/v1/difficulty/{id}/equip": {
|
|
3917
|
+
put: { path: [id: number], params: never, body: never, response: void }
|
|
3918
|
+
},
|
|
3919
|
+
"/lol-tft-event-pve/v1/seenBuddies": {
|
|
3920
|
+
put: { path: never, params: never, body: never, response: void }
|
|
3921
|
+
},
|
|
3922
|
+
"/lol-tft-event-pve/v1/seenBuddies/{id}": {
|
|
3923
|
+
put: { path: [id: number], params: never, body: never, response: void }
|
|
3924
|
+
},
|
|
3925
|
+
"/lol-tft-event-pve/v1/seenLevels": {
|
|
3926
|
+
put: { path: never, params: never, body: never, response: void }
|
|
3927
|
+
},
|
|
3928
|
+
"/lol-tft-event-pve/v1/seenUltimateVictory": {
|
|
3929
|
+
put: { path: never, params: never, body: never, response: void }
|
|
3930
|
+
},
|
|
3874
3931
|
"/lol-tft-pass/v1/pass/{id}/milestone/{milestoneId}/reward": {
|
|
3875
3932
|
put: { path: [id: string, milestoneId: string], params: never, body: never, response: void }
|
|
3876
3933
|
},
|
package/dist/lcu-events.d.ts
CHANGED
|
@@ -24,10 +24,12 @@ export interface LCUWebSocketEvents {
|
|
|
24
24
|
"OnJsonApiEvent_entitlements_v1_token": LCUTypes.PluginResourceEvent,
|
|
25
25
|
"OnJsonApiEvent_entitlements_v2_token": LCUTypes.PluginResourceEvent,
|
|
26
26
|
"OnJsonApiEvent_ga-restriction_v1_penalty-notifications": LCUTypes.PluginResourceEvent,
|
|
27
|
+
"OnJsonApiEvent_lol-account-verification_v1_is-verified": LCUTypes.PluginResourceEvent,
|
|
27
28
|
"OnJsonApiEvent_lol-active-boosts_v1_active-boosts": LCUTypes.PluginResourceEvent,
|
|
28
29
|
"OnJsonApiEvent_lol-activity-center_v1_ready": LCUTypes.PluginResourceEvent,
|
|
29
30
|
"OnJsonApiEvent_lol-anti-addiction_v1_anti-addiction-token": LCUTypes.PluginResourceEvent,
|
|
30
31
|
"OnJsonApiEvent_lol-cap-missions_v1_ready": LCUTypes.PluginResourceEvent,
|
|
32
|
+
"OnJsonApiEvent_lol-catalog_v1_items": LCUTypes.PluginResourceEvent,
|
|
31
33
|
"OnJsonApiEvent_lol-challenges_v1_client-state": LCUTypes.PluginResourceEvent,
|
|
32
34
|
"OnJsonApiEvent_lol-challenges_v1_seasons": LCUTypes.PluginResourceEvent,
|
|
33
35
|
"OnJsonApiEvent_lol-champ-select-legacy_v1_bannable-champion-ids": LCUTypes.PluginResourceEvent,
|
|
@@ -43,6 +45,7 @@ export interface LCUWebSocketEvents {
|
|
|
43
45
|
"OnJsonApiEvent_lol-champ-select_v1_muted-players": LCUTypes.PluginResourceEvent,
|
|
44
46
|
"OnJsonApiEvent_lol-champ-select_v1_session": LCUTypes.PluginResourceEvent,
|
|
45
47
|
"OnJsonApiEvent_lol-champ-select_v1_team-boost": LCUTypes.PluginResourceEvent,
|
|
48
|
+
"OnJsonApiEvent_lol-champion-mastery_v1_champion-mastery-view-enabled": LCUTypes.PluginResourceEvent,
|
|
46
49
|
"OnJsonApiEvent_lol-champion-mastery_v1_local-player": LCUTypes.PluginResourceEvent,
|
|
47
50
|
"OnJsonApiEvent_lol-champion-mastery_v1_ready": LCUTypes.PluginResourceEvent,
|
|
48
51
|
"OnJsonApiEvent_lol-champions_v1_inventories": LCUTypes.PluginResourceEvent,
|
|
@@ -134,7 +137,6 @@ export interface LCUWebSocketEvents {
|
|
|
134
137
|
"OnJsonApiEvent_lol-leaver-buster_v1_ranked-restriction": LCUTypes.PluginResourceEvent,
|
|
135
138
|
"OnJsonApiEvent_lol-license-agreement_v1_agreements": LCUTypes.PluginResourceEvent,
|
|
136
139
|
"OnJsonApiEvent_lol-license-agreement_v1_all-agreements": LCUTypes.PluginResourceEvent,
|
|
137
|
-
"OnJsonApiEvent_lol-license-agreement_v1_serve-location": LCUTypes.PluginResourceEvent,
|
|
138
140
|
"OnJsonApiEvent_lol-loadouts_v1_enabled": LCUTypes.PluginResourceEvent,
|
|
139
141
|
"OnJsonApiEvent_lol-loadouts_v1_loadouts-ready": LCUTypes.PluginResourceEvent,
|
|
140
142
|
"OnJsonApiEvent_lol-loadouts_v4_loadout": LCUTypes.PluginResourceEvent,
|
|
@@ -186,7 +188,6 @@ export interface LCUWebSocketEvents {
|
|
|
186
188
|
"OnJsonApiEvent_lol-patch_v1_environment": LCUTypes.PluginResourceEvent,
|
|
187
189
|
"OnJsonApiEvent_lol-patch_v1_game-version": LCUTypes.PluginResourceEvent,
|
|
188
190
|
"OnJsonApiEvent_lol-patch_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
189
|
-
"OnJsonApiEvent_lol-patch_v1_product-integration": LCUTypes.PluginResourceEvent,
|
|
190
191
|
"OnJsonApiEvent_lol-patch_v1_products": LCUTypes.PluginResourceEvent,
|
|
191
192
|
"OnJsonApiEvent_lol-patch_v1_status": LCUTypes.PluginResourceEvent,
|
|
192
193
|
"OnJsonApiEvent_lol-perks_v1_inventory": LCUTypes.PluginResourceEvent,
|
|
@@ -294,7 +295,6 @@ export interface LCUWebSocketEvents {
|
|
|
294
295
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_PremiumTicketsEnabled": LCUTypes.PluginResourceEvent,
|
|
295
296
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ScoutingEnabled": LCUTypes.PluginResourceEvent,
|
|
296
297
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_StorePageLink": LCUTypes.PluginResourceEvent,
|
|
297
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_SubstitutionEnabled": LCUTypes.PluginResourceEvent,
|
|
298
298
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_ThirdPartyInvitesEnabled": LCUTypes.PluginResourceEvent,
|
|
299
299
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_TutorialEnabled": LCUTypes.PluginResourceEvent,
|
|
300
300
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ClashConfig_Visibility": LCUTypes.PluginResourceEvent,
|
|
@@ -366,6 +366,7 @@ export interface LCUWebSocketEvents {
|
|
|
366
366
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame": LCUTypes.PluginResourceEvent,
|
|
367
367
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_BotsAvailableInAram": LCUTypes.PluginResourceEvent,
|
|
368
368
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_CustomGame_MinorRestrictionsEnabled": LCUTypes.PluginResourceEvent,
|
|
369
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampion": LCUTypes.PluginResourceEvent,
|
|
369
370
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
|
|
370
371
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChampionSkins": LCUTypes.PluginResourceEvent,
|
|
371
372
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampionSkins_DisabledChromas": LCUTypes.PluginResourceEvent,
|
|
@@ -393,6 +394,7 @@ export interface LCUWebSocketEvents {
|
|
|
393
394
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_GAMEMODEX": LCUTypes.PluginResourceEvent,
|
|
394
395
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_HEXAKILL": LCUTypes.PluginResourceEvent,
|
|
395
396
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO": LCUTypes.PluginResourceEvent,
|
|
397
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KINGPORO-5X5": LCUTypes.PluginResourceEvent,
|
|
396
398
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_KING_PORO": LCUTypes.PluginResourceEvent,
|
|
397
399
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY23_TFT": LCUTypes.PluginResourceEvent,
|
|
398
400
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_LNY24_TFT": LCUTypes.PluginResourceEvent,
|
|
@@ -403,14 +405,20 @@ export interface LCUWebSocketEvents {
|
|
|
403
405
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_3x3": LCUTypes.PluginResourceEvent,
|
|
404
406
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_NORMAL_TFT": LCUTypes.PluginResourceEvent,
|
|
405
407
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN": LCUTypes.PluginResourceEvent,
|
|
408
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT": LCUTypes.PluginResourceEvent,
|
|
409
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT-5x5": LCUTypes.PluginResourceEvent,
|
|
410
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODINBOT_5x5": LCUTypes.PluginResourceEvent,
|
|
406
411
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODIN_UNRANKED": LCUTypes.PluginResourceEvent,
|
|
407
412
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ODYSSEY": LCUTypes.PluginResourceEvent,
|
|
408
413
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ONEFORALL": LCUTypes.PluginResourceEvent,
|
|
409
414
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_ONEFORALL_5x5": LCUTypes.PluginResourceEvent,
|
|
410
415
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_PRACTICETOOL": LCUTypes.PluginResourceEvent,
|
|
416
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_PROMETHIUM_TFT": LCUTypes.PluginResourceEvent,
|
|
411
417
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_PVE_PUZZLE_TFT": LCUTypes.PluginResourceEvent,
|
|
412
418
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_SR": LCUTypes.PluginResourceEvent,
|
|
413
419
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_FLEX_TT": LCUTypes.PluginResourceEvent,
|
|
420
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_PREMADE_3x3": LCUTypes.PluginResourceEvent,
|
|
421
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_PREMADE_5x5": LCUTypes.PluginResourceEvent,
|
|
414
422
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_SOLO_5x5": LCUTypes.PluginResourceEvent,
|
|
415
423
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_3x3": LCUTypes.PluginResourceEvent,
|
|
416
424
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TEAM_5x5": LCUTypes.PluginResourceEvent,
|
|
@@ -419,6 +427,10 @@ export interface LCUWebSocketEvents {
|
|
|
419
427
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TFT_PAIRS": LCUTypes.PluginResourceEvent,
|
|
420
428
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RANKED_TFT_TURBO": LCUTypes.PluginResourceEvent,
|
|
421
429
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RIOTSCRIPT_BOT": LCUTypes.PluginResourceEvent,
|
|
430
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RUBY": LCUTypes.PluginResourceEvent,
|
|
431
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RUBY_TRIAL_1": LCUTypes.PluginResourceEvent,
|
|
432
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RUBY_TRIAL_2": LCUTypes.PluginResourceEvent,
|
|
433
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_RUBY_TRIAL_3": LCUTypes.PluginResourceEvent,
|
|
422
434
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SET_REVIVAL_5_5_TFT": LCUTypes.PluginResourceEvent,
|
|
423
435
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SET_REVIVAL_TFT": LCUTypes.PluginResourceEvent,
|
|
424
436
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_DisabledChampions_SF_TFT": LCUTypes.PluginResourceEvent,
|
|
@@ -480,14 +492,14 @@ export interface LCUWebSocketEvents {
|
|
|
480
492
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes": LCUTypes.PluginResourceEvent,
|
|
481
493
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmotePanelEnabled": LCUTypes.PluginResourceEvent,
|
|
482
494
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Emotes_IsEmoteTutorialModalEnabled": LCUTypes.PluginResourceEvent,
|
|
495
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings": LCUTypes.PluginResourceEvent,
|
|
496
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
|
|
497
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
|
|
498
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
|
|
499
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
500
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
483
501
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting": LCUTypes.PluginResourceEvent,
|
|
484
502
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndOfGameGifting_Enabled": LCUTypes.PluginResourceEvent,
|
|
485
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings": LCUTypes.PluginResourceEvent,
|
|
486
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftRecipientLevelMin": LCUTypes.PluginResourceEvent,
|
|
487
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderLevelMin": LCUTypes.PluginResourceEvent,
|
|
488
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_GiftSenderRPMax": LCUTypes.PluginResourceEvent,
|
|
489
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_RecipientGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
490
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EndofGameGiftSettings_SenderGiftDailyMax": LCUTypes.PluginResourceEvent,
|
|
491
503
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting": LCUTypes.PluginResourceEvent,
|
|
492
504
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_EoGReporting_GameAgnosticReportingTrinary": LCUTypes.PluginResourceEvent,
|
|
493
505
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Esports_NotificationsAssetMagickURL": LCUTypes.PluginResourceEvent,
|
|
@@ -519,6 +531,8 @@ export interface LCUWebSocketEvents {
|
|
|
519
531
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync": LCUTypes.PluginResourceEvent,
|
|
520
532
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_Enabled": LCUTypes.PluginResourceEvent,
|
|
521
533
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GameTimerSync_PercentOfTotalTimerToSyncAt": LCUTypes.PluginResourceEvent,
|
|
534
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow": LCUTypes.PluginResourceEvent,
|
|
535
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ForceGameLocaleAsEnglish": LCUTypes.PluginResourceEvent,
|
|
522
536
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Gameflow_ShouldSendRiotClientHeartBeat": LCUTypes.PluginResourceEvent,
|
|
523
537
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GeoInfo": LCUTypes.PluginResourceEvent,
|
|
524
538
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_GuestSlots": LCUTypes.PluginResourceEvent,
|
|
@@ -529,6 +543,8 @@ export interface LCUWebSocketEvents {
|
|
|
529
543
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Enabled": LCUTypes.PluginResourceEvent,
|
|
530
544
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_Honor2018Enabled": LCUTypes.PluginResourceEvent,
|
|
531
545
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Honor_SecondsToVote": LCUTypes.PluginResourceEvent,
|
|
546
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig": LCUTypes.PluginResourceEvent,
|
|
547
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_IconConfig_EnabledState": LCUTypes.PluginResourceEvent,
|
|
532
548
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory": LCUTypes.PluginResourceEvent,
|
|
533
549
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_BaseServiceUrl": LCUTypes.PluginResourceEvent,
|
|
534
550
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Inventory_Enabled": LCUTypes.PluginResourceEvent,
|
|
@@ -544,20 +560,14 @@ export interface LCUWebSocketEvents {
|
|
|
544
560
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS": LCUTypes.PluginResourceEvent,
|
|
545
561
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_Endpoint": LCUTypes.PluginResourceEvent,
|
|
546
562
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUACS_UseIdTokens": LCUTypes.PluginResourceEvent,
|
|
547
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
|
|
548
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
|
|
549
563
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections": LCUTypes.PluginResourceEvent,
|
|
550
564
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_Enabled": LCUTypes.PluginResourceEvent,
|
|
551
565
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUAugmentsVisible": LCUTypes.PluginResourceEvent,
|
|
552
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesChromasEnabled": LCUTypes.PluginResourceEvent,
|
|
553
566
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUCollectiblesFinishersEnabled": LCUTypes.PluginResourceEvent,
|
|
554
567
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUMasteriesVisible": LCUTypes.PluginResourceEvent,
|
|
555
568
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUPerksVisible": LCUTypes.PluginResourceEvent,
|
|
556
569
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCURunesVisible": LCUTypes.PluginResourceEvent,
|
|
557
570
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUCollections_LCUSkinsViewerEnabled": LCUTypes.PluginResourceEvent,
|
|
558
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory": LCUTypes.PluginResourceEvent,
|
|
559
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_Enabled": LCUTypes.PluginResourceEvent,
|
|
560
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUMatchHistory_MatchHistoryWebURL": LCUTypes.PluginResourceEvent,
|
|
561
571
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore": LCUTypes.PluginResourceEvent,
|
|
562
572
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_CanQueryInactiveItems": LCUTypes.PluginResourceEvent,
|
|
563
573
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_DisableCapRMS": LCUTypes.PluginResourceEvent,
|
|
@@ -573,10 +583,9 @@ export interface LCUWebSocketEvents {
|
|
|
573
583
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCUStore_UseRsoAccessToken": LCUTypes.PluginResourceEvent,
|
|
574
584
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteEnabled": LCUTypes.PluginResourceEvent,
|
|
575
585
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LCU_AirClientAlphaInviteURL": LCUTypes.PluginResourceEvent,
|
|
586
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown": LCUTypes.PluginResourceEvent,
|
|
587
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Countdown": LCUTypes.PluginResourceEvent,
|
|
576
588
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAlphaShutdown_Enabled": LCUTypes.PluginResourceEvent,
|
|
577
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout": LCUTypes.PluginResourceEvent,
|
|
578
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleExitAfterWarningMinutes": LCUTypes.PluginResourceEvent,
|
|
579
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuAutoLogout_IdleWarningMinutes": LCUTypes.PluginResourceEvent,
|
|
580
589
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate": LCUTypes.PluginResourceEvent,
|
|
581
590
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuBuddySpectate_Enabled": LCUTypes.PluginResourceEvent,
|
|
582
591
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuChampionDetails": LCUTypes.PluginResourceEvent,
|
|
@@ -702,7 +711,6 @@ export interface LCUWebSocketEvents {
|
|
|
702
711
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_HubEnabled": LCUTypes.PluginResourceEvent,
|
|
703
712
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_MatchHistoryEnabled": LCUTypes.PluginResourceEvent,
|
|
704
713
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_OrbEnabled": LCUTypes.PluginResourceEvent,
|
|
705
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_PatchNotesUrl": LCUTypes.PluginResourceEvent,
|
|
706
714
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_PlayButtonEnabled": LCUTypes.PluginResourceEvent,
|
|
707
715
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_SeriesInternalName": LCUTypes.PluginResourceEvent,
|
|
708
716
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LcuTft_TftHomeEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -729,6 +737,7 @@ export interface LCUWebSocketEvents {
|
|
|
729
737
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_EosNotificationsEnabled": LCUTypes.PluginResourceEvent,
|
|
730
738
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_FlexRestrictionModalEnabled": LCUTypes.PluginResourceEvent,
|
|
731
739
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsGlobalNotificationsEnabled": LCUTypes.PluginResourceEvent,
|
|
740
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_IsSplitStartModalEnabled": LCUTypes.PluginResourceEvent,
|
|
732
741
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_JWTEnabled": LCUTypes.PluginResourceEvent,
|
|
733
742
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_LeagueServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
734
743
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LeagueConfig_MasterTierEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -806,11 +815,6 @@ export interface LCUWebSocketEvents {
|
|
|
806
815
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount3": LCUTypes.PluginResourceEvent,
|
|
807
816
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount4": LCUTypes.PluginResourceEvent,
|
|
808
817
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestBundleDiscount5": LCUTypes.PluginResourceEvent,
|
|
809
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId1": LCUTypes.PluginResourceEvent,
|
|
810
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId2": LCUTypes.PluginResourceEvent,
|
|
811
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId3": LCUTypes.PluginResourceEvent,
|
|
812
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId4": LCUTypes.PluginResourceEvent,
|
|
813
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_ChestsBundleId5": LCUTypes.PluginResourceEvent,
|
|
814
818
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EnableMythicEssenceDisplay": LCUTypes.PluginResourceEvent,
|
|
815
819
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Enabled": LCUTypes.PluginResourceEvent,
|
|
816
820
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_EventChestBundleId1": LCUTypes.PluginResourceEvent,
|
|
@@ -832,11 +836,6 @@ export interface LCUWebSocketEvents {
|
|
|
832
836
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
|
|
833
837
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_Visible": LCUTypes.PluginResourceEvent,
|
|
834
838
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootConfig_WorldsTokensEnabled": LCUTypes.PluginResourceEvent,
|
|
835
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService": LCUTypes.PluginResourceEvent,
|
|
836
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Enabled": LCUTypes.PluginResourceEvent,
|
|
837
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_NewPlayerChestEnabled": LCUTypes.PluginResourceEvent,
|
|
838
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_PurchaseChestsEnabled": LCUTypes.PluginResourceEvent,
|
|
839
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_LootService_Visible": LCUTypes.PluginResourceEvent,
|
|
840
839
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries": LCUTypes.PluginResourceEvent,
|
|
841
840
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Masteries_ShowPointsResetMessage": LCUTypes.PluginResourceEvent,
|
|
842
841
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Missions": LCUTypes.PluginResourceEvent,
|
|
@@ -869,12 +868,6 @@ export interface LCUWebSocketEvents {
|
|
|
869
868
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro": LCUTypes.PluginResourceEvent,
|
|
870
869
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_IntroUrl": LCUTypes.PluginResourceEvent,
|
|
871
870
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerIntro_NewSummonerIconIds": LCUTypes.PluginResourceEvent,
|
|
872
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage": LCUTypes.PluginResourceEvent,
|
|
873
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_ChampDisplayList": LCUTypes.PluginResourceEvent,
|
|
874
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_Enabled": LCUTypes.PluginResourceEvent,
|
|
875
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_LikeUsURL": LCUTypes.PluginResourceEvent,
|
|
876
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_MaxLevel": LCUTypes.PluginResourceEvent,
|
|
877
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerLandingPage_SubscribeURL": LCUTypes.PluginResourceEvent,
|
|
878
871
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter": LCUTypes.PluginResourceEvent,
|
|
879
872
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_ABDisablingOfTutorial": LCUTypes.PluginResourceEvent,
|
|
880
873
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_NewPlayerRouter_QueueID": LCUTypes.PluginResourceEvent,
|
|
@@ -971,29 +964,31 @@ export interface LCUWebSocketEvents {
|
|
|
971
964
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId470": LCUTypes.PluginResourceEvent,
|
|
972
965
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize1QueueId9": LCUTypes.PluginResourceEvent,
|
|
973
966
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2": LCUTypes.PluginResourceEvent,
|
|
974
|
-
"OnJsonApiEvent_lol-platform-
|
|
967
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId410": LCUTypes.PluginResourceEvent,
|
|
975
968
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId420": LCUTypes.PluginResourceEvent,
|
|
976
969
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId440": LCUTypes.PluginResourceEvent,
|
|
977
970
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId470": LCUTypes.PluginResourceEvent,
|
|
978
971
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize2QueueId9": LCUTypes.PluginResourceEvent,
|
|
979
972
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3": LCUTypes.PluginResourceEvent,
|
|
973
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId410": LCUTypes.PluginResourceEvent,
|
|
980
974
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId420": LCUTypes.PluginResourceEvent,
|
|
981
975
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId440": LCUTypes.PluginResourceEvent,
|
|
982
976
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId470": LCUTypes.PluginResourceEvent,
|
|
983
977
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize3QueueId9": LCUTypes.PluginResourceEvent,
|
|
984
978
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4": LCUTypes.PluginResourceEvent,
|
|
979
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId410": LCUTypes.PluginResourceEvent,
|
|
985
980
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId420": LCUTypes.PluginResourceEvent,
|
|
986
981
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId440": LCUTypes.PluginResourceEvent,
|
|
987
982
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId470": LCUTypes.PluginResourceEvent,
|
|
988
983
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize4QueueId9": LCUTypes.PluginResourceEvent,
|
|
989
984
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5": LCUTypes.PluginResourceEvent,
|
|
985
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId410": LCUTypes.PluginResourceEvent,
|
|
990
986
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId420": LCUTypes.PluginResourceEvent,
|
|
991
987
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId440": LCUTypes.PluginResourceEvent,
|
|
992
988
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId470": LCUTypes.PluginResourceEvent,
|
|
993
989
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_MaxTierAndRankForPremadeSize5QueueId9": LCUTypes.PluginResourceEvent,
|
|
994
990
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_QueuesRequiringTwentyChampions": LCUTypes.PluginResourceEvent,
|
|
995
991
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTier": LCUTypes.PluginResourceEvent,
|
|
996
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId4": LCUTypes.PluginResourceEvent,
|
|
997
992
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId410": LCUTypes.PluginResourceEvent,
|
|
998
993
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId420": LCUTypes.PluginResourceEvent,
|
|
999
994
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedDuoQueueDefaultUnseededTierQueueId440": LCUTypes.PluginResourceEvent,
|
|
@@ -1006,35 +1001,30 @@ export interface LCUWebSocketEvents {
|
|
|
1006
1001
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeRestrictionEnabled": LCUTypes.PluginResourceEvent,
|
|
1007
1002
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighMmrPremadeTier": LCUTypes.PluginResourceEvent,
|
|
1008
1003
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTier": LCUTypes.PluginResourceEvent,
|
|
1009
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId4": LCUTypes.PluginResourceEvent,
|
|
1010
1004
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId410": LCUTypes.PluginResourceEvent,
|
|
1011
1005
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId420": LCUTypes.PluginResourceEvent,
|
|
1012
1006
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId440": LCUTypes.PluginResourceEvent,
|
|
1013
1007
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId470": LCUTypes.PluginResourceEvent,
|
|
1014
1008
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillLowestTierQueueId9": LCUTypes.PluginResourceEvent,
|
|
1015
1009
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
1016
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
|
|
1017
1010
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
|
|
1018
1011
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
|
|
1019
1012
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
|
|
1020
1013
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
|
|
1021
1014
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
|
|
1022
1015
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionMode": LCUTypes.PluginResourceEvent,
|
|
1023
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
|
|
1024
1016
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
|
|
1025
1017
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
|
|
1026
1018
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
|
|
1027
1019
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId470": LCUTypes.PluginResourceEvent,
|
|
1028
1020
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedHighSkillRestrictionModeQueueId9": LCUTypes.PluginResourceEvent,
|
|
1029
1021
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDelta": LCUTypes.PluginResourceEvent,
|
|
1030
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId4": LCUTypes.PluginResourceEvent,
|
|
1031
1022
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId410": LCUTypes.PluginResourceEvent,
|
|
1032
1023
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId420": LCUTypes.PluginResourceEvent,
|
|
1033
1024
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId440": LCUTypes.PluginResourceEvent,
|
|
1034
1025
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId470": LCUTypes.PluginResourceEvent,
|
|
1035
1026
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMaxDeltaQueueId9": LCUTypes.PluginResourceEvent,
|
|
1036
1027
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionMode": LCUTypes.PluginResourceEvent,
|
|
1037
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId4": LCUTypes.PluginResourceEvent,
|
|
1038
1028
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId410": LCUTypes.PluginResourceEvent,
|
|
1039
1029
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId420": LCUTypes.PluginResourceEvent,
|
|
1040
1030
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_QueueRestriction_RankedLowSkillRestrictionModeQueueId440": LCUTypes.PluginResourceEvent,
|
|
@@ -1047,6 +1037,9 @@ export interface LCUWebSocketEvents {
|
|
|
1047
1037
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Replays_ThirdPersonAccessibleGameQueues": LCUTypes.PluginResourceEvent,
|
|
1048
1038
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards": LCUTypes.PluginResourceEvent,
|
|
1049
1039
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Rewards_Enabled": LCUTypes.PluginResourceEvent,
|
|
1040
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring": LCUTypes.PluginResourceEvent,
|
|
1041
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitInterval": LCUTypes.PluginResourceEvent,
|
|
1042
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SLcuChampionSelecttring_RandomChampionRateLimitMaxActions": LCUTypes.PluginResourceEvent,
|
|
1050
1043
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer": LCUTypes.PluginResourceEvent,
|
|
1051
1044
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Sanitizer_Level1Unfilter": LCUTypes.PluginResourceEvent,
|
|
1052
1045
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SeasonReward": LCUTypes.PluginResourceEvent,
|
|
@@ -1069,14 +1062,12 @@ export interface LCUWebSocketEvents {
|
|
|
1069
1062
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_MatchHistoryUrlTemplate": LCUTypes.PluginResourceEvent,
|
|
1070
1063
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareEndOfGameEnabled": LCUTypes.PluginResourceEvent,
|
|
1071
1064
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareGameUrlTemplate": LCUTypes.PluginResourceEvent,
|
|
1072
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ShareMatchHistory_ShareMatchHistory": LCUTypes.PluginResourceEvent,
|
|
1073
1065
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals": LCUTypes.PluginResourceEvent,
|
|
1074
1066
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinRentals_Enabled": LCUTypes.PluginResourceEvent,
|
|
1075
1067
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer": LCUTypes.PluginResourceEvent,
|
|
1076
1068
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SkinsViewer_VintageSkinSummonerIconConfig": LCUTypes.PluginResourceEvent,
|
|
1077
1069
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard": LCUTypes.PluginResourceEvent,
|
|
1078
1070
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_IsSocialLeaderboardEnabled": LCUTypes.PluginResourceEvent,
|
|
1079
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_LeaguesPuuidPageSize": LCUTypes.PluginResourceEvent,
|
|
1080
1071
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_MinsTillCacheExpiry": LCUTypes.PluginResourceEvent,
|
|
1081
1072
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_SecsTillAvailabilityCacheExpiry": LCUTypes.PluginResourceEvent,
|
|
1082
1073
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SocialLeaderboard_UseSocialLeaderboardLeaguesEndpoint": LCUTypes.PluginResourceEvent,
|
|
@@ -1094,7 +1085,9 @@ export interface LCUWebSocketEvents {
|
|
|
1094
1085
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_OnlineFriendsLimit": LCUTypes.PluginResourceEvent,
|
|
1095
1086
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_PreviousPremadesLimit": LCUTypes.PluginResourceEvent,
|
|
1096
1087
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_SuggestedPlayers_VictoriousComradesLimit": LCUTypes.PluginResourceEvent,
|
|
1088
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner": LCUTypes.PluginResourceEvent,
|
|
1097
1089
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_ConfigRefreshIntervalSeconds": LCUTypes.PluginResourceEvent,
|
|
1090
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTEnabled": LCUTypes.PluginResourceEvent,
|
|
1098
1091
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMaxTimeoutSeconds": LCUTypes.PluginResourceEvent,
|
|
1099
1092
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_JWTMinTimeoutSeconds": LCUTypes.PluginResourceEvent,
|
|
1100
1093
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Summoner_SummonerProfileCacheEnabled": LCUTypes.PluginResourceEvent,
|
|
@@ -1102,7 +1095,6 @@ export interface LCUWebSocketEvents {
|
|
|
1102
1095
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_AllSkinEnabled": LCUTypes.PluginResourceEvent,
|
|
1103
1096
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBoost_RandomSkinEnabled": LCUTypes.PluginResourceEvent,
|
|
1104
1097
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft": LCUTypes.PluginResourceEvent,
|
|
1105
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ActionTimeoutRecoveryEnabled": LCUTypes.PluginResourceEvent,
|
|
1106
1098
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EnableChampionSelectPreferences": LCUTypes.PluginResourceEvent,
|
|
1107
1099
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_EstimatedWaitAdjustmentEnabled": LCUTypes.PluginResourceEvent,
|
|
1108
1100
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_FillPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
|
|
@@ -1110,6 +1102,7 @@ export interface LCUWebSocketEvents {
|
|
|
1110
1102
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_LogAllLCDSMessages": LCUTypes.PluginResourceEvent,
|
|
1111
1103
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_MidPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
|
|
1112
1104
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendAfkCheckMetricsEnabled": LCUTypes.PluginResourceEvent,
|
|
1105
|
+
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SendSummonerIconJwt": LCUTypes.PluginResourceEvent,
|
|
1113
1106
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_ServiceCallTimeoutMillis": LCUTypes.PluginResourceEvent,
|
|
1114
1107
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SkinPurchaseEnabled": LCUTypes.PluginResourceEvent,
|
|
1115
1108
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_SupportPrimaryWaitFactor": LCUTypes.PluginResourceEvent,
|
|
@@ -1118,8 +1111,6 @@ export interface LCUWebSocketEvents {
|
|
|
1118
1111
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_TakeoverEnabled": LCUTypes.PluginResourceEvent,
|
|
1119
1112
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TeamBuilderDraft_UnlockLockInButtonTimeoutEnabled": LCUTypes.PluginResourceEvent,
|
|
1120
1113
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_TencentAntiAddiction_Enabled": LCUTypes.PluginResourceEvent,
|
|
1121
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing": LCUTypes.PluginResourceEvent,
|
|
1122
|
-
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Testing_Rcarter": LCUTypes.PluginResourceEvent,
|
|
1123
1114
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification": LCUTypes.PluginResourceEvent,
|
|
1124
1115
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_ThirdPartyVerification_CAHServiceEnabled": LCUTypes.PluginResourceEvent,
|
|
1125
1116
|
"OnJsonApiEvent_lol-platform-config_v1_namespaces_Trophies": LCUTypes.PluginResourceEvent,
|
|
@@ -1149,7 +1140,6 @@ export interface LCUWebSocketEvents {
|
|
|
1149
1140
|
"OnJsonApiEvent_lol-purchase-widget_v3_purchase-offer-order-statuses": LCUTypes.PluginResourceEvent,
|
|
1150
1141
|
"OnJsonApiEvent_lol-ranked_v1_challenger-ladders-enabled": LCUTypes.PluginResourceEvent,
|
|
1151
1142
|
"OnJsonApiEvent_lol-ranked_v1_current-ranked-stats": LCUTypes.PluginResourceEvent,
|
|
1152
|
-
"OnJsonApiEvent_lol-ranked_v1_eos-notifications": LCUTypes.PluginResourceEvent,
|
|
1153
1143
|
"OnJsonApiEvent_lol-ranked_v1_global-notifications": LCUTypes.PluginResourceEvent,
|
|
1154
1144
|
"OnJsonApiEvent_lol-ranked_v1_notifications": LCUTypes.PluginResourceEvent,
|
|
1155
1145
|
"OnJsonApiEvent_lol-ranked_v1_ranked-stats": LCUTypes.PluginResourceEvent,
|
|
@@ -1165,7 +1155,6 @@ export interface LCUWebSocketEvents {
|
|
|
1165
1155
|
"OnJsonApiEvent_lol-rewards_v1_groups": LCUTypes.PluginResourceEvent,
|
|
1166
1156
|
"OnJsonApiEvent_lol-rso-auth_configuration_v3": LCUTypes.PluginResourceEvent,
|
|
1167
1157
|
"OnJsonApiEvent_lol-rso-auth_v1_authorization": LCUTypes.PluginResourceEvent,
|
|
1168
|
-
"OnJsonApiEvent_lol-service-status_v1_ticker-messages": LCUTypes.PluginResourceEvent,
|
|
1169
1158
|
"OnJsonApiEvent_lol-settings_v1_account": LCUTypes.PluginResourceEvent,
|
|
1170
1159
|
"OnJsonApiEvent_lol-settings_v1_local": LCUTypes.PluginResourceEvent,
|
|
1171
1160
|
"OnJsonApiEvent_lol-settings_v2_account": LCUTypes.PluginResourceEvent,
|
|
@@ -1182,16 +1171,20 @@ export interface LCUWebSocketEvents {
|
|
|
1182
1171
|
"OnJsonApiEvent_lol-suggested-players_v1_suggested-players": LCUTypes.PluginResourceEvent,
|
|
1183
1172
|
"OnJsonApiEvent_lol-summoner-profiles_v1_get-champion-mastery-view": LCUTypes.PluginResourceEvent,
|
|
1184
1173
|
"OnJsonApiEvent_lol-summoner-profiles_v1_get-honor-view": LCUTypes.PluginResourceEvent,
|
|
1174
|
+
"OnJsonApiEvent_lol-summoner-profiles_v1_get-privacy-view": LCUTypes.PluginResourceEvent,
|
|
1185
1175
|
"OnJsonApiEvent_lol-summoner-profiles_v1_get-summoner-level-view": LCUTypes.PluginResourceEvent,
|
|
1186
1176
|
"OnJsonApiEvent_lol-summoner_v1_current-summoner": LCUTypes.PluginResourceEvent,
|
|
1187
1177
|
"OnJsonApiEvent_lol-summoner_v1_player-alias-state": LCUTypes.PluginResourceEvent,
|
|
1188
1178
|
"OnJsonApiEvent_lol-summoner_v1_player-name-mode": LCUTypes.PluginResourceEvent,
|
|
1189
1179
|
"OnJsonApiEvent_lol-summoner_v1_status": LCUTypes.PluginResourceEvent,
|
|
1190
1180
|
"OnJsonApiEvent_lol-summoner_v1_summoner-requests-ready": LCUTypes.PluginResourceEvent,
|
|
1181
|
+
"OnJsonApiEvent_lol-summoner_v1_summoners": LCUTypes.PluginResourceEvent,
|
|
1191
1182
|
"OnJsonApiEvent_lol-tastes_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1192
1183
|
"OnJsonApiEvent_lol-tft-pass_v1_active-passes": LCUTypes.PluginResourceEvent,
|
|
1193
1184
|
"OnJsonApiEvent_lol-tft-pass_v1_battle-pass": LCUTypes.PluginResourceEvent,
|
|
1194
1185
|
"OnJsonApiEvent_lol-tft-pass_v1_config-fetched": LCUTypes.PluginResourceEvent,
|
|
1186
|
+
"OnJsonApiEvent_lol-tft-pass_v1_event-pass": LCUTypes.PluginResourceEvent,
|
|
1187
|
+
"OnJsonApiEvent_lol-tft-pass_v1_pm-ultimate-victory-pass": LCUTypes.PluginResourceEvent,
|
|
1195
1188
|
"OnJsonApiEvent_lol-tft-pass_v1_ready": LCUTypes.PluginResourceEvent,
|
|
1196
1189
|
"OnJsonApiEvent_lol-tft-pass_v1_skill-tree-pass": LCUTypes.PluginResourceEvent,
|
|
1197
1190
|
"OnJsonApiEvent_lol-tft-team-planner_v1_config": LCUTypes.PluginResourceEvent,
|
|
@@ -1220,7 +1213,6 @@ export interface LCUWebSocketEvents {
|
|
|
1220
1213
|
"OnJsonApiEvent_plugin-manager_v1_external-plugins": LCUTypes.PluginResourceEvent,
|
|
1221
1214
|
"OnJsonApiEvent_plugin-manager_v1_status": LCUTypes.PluginResourceEvent,
|
|
1222
1215
|
"OnJsonApiEvent_process-control_v1_process": LCUTypes.PluginResourceEvent,
|
|
1223
|
-
"OnJsonApiEvent_product-integration_v1_app-update": LCUTypes.PluginResourceEvent,
|
|
1224
1216
|
"OnJsonApiEvent_product-metadata_v2_products": LCUTypes.PluginResourceEvent,
|
|
1225
1217
|
"OnJsonApiEvent_product-session_v1_external-sessions": LCUTypes.PluginResourceEvent,
|
|
1226
1218
|
"OnJsonApiEvent_riot-messaging-service_v1_message": LCUTypes.PluginResourceEvent,
|