@bluebottle_gg/league-broadcast-client 1.0.0 → 1.1.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/index.d.ts CHANGED
@@ -1010,6 +1010,7 @@ declare class teamMember {
1010
1010
  familyName: string;
1011
1011
  givenName: string;
1012
1012
  displayName?: string;
1013
+ videoStreamUrl?: string;
1013
1014
  }
1014
1015
 
1015
1016
  /**
@@ -1286,6 +1287,7 @@ declare class pickSlot {
1286
1287
  summonerSpells: summonerSpellData[];
1287
1288
  champion?: championData;
1288
1289
  championStatistics?: championStatistics;
1290
+ videoStreamUrl?: string;
1289
1291
  }
1290
1292
 
1291
1293
  /**
@@ -2981,6 +2983,7 @@ interface IngameEventHandlers {
2981
2983
  onFirstTowerEvent?: (teamId: Team) => void;
2982
2984
  onAnnouncementEvent?: (event: announcerEvent) => void;
2983
2985
  onKillFeedEvent?: (event: killFeedEvent) => void;
2986
+ onSmiteReactionEvent?: (event: smiteReactionResult) => void;
2984
2987
  }
2985
2988
  interface ChampSelectEventHandlers {
2986
2989
  /** Fired for every pick/ban action (hover, lock, ban reveal, phase transition). */
@@ -5003,6 +5006,18 @@ declare class championUltimateStyle {
5003
5006
  layoutStyling: layoutStyle;
5004
5007
  }
5005
5008
 
5009
+ /**
5010
+ * This is an auto-generated file.
5011
+ * Any changes made to this file can be lost when this file is regenerated.
5012
+ */
5013
+
5014
+ declare class tabLevelUpStyle {
5015
+ background: string | colorStyle;
5016
+ text: textStyle;
5017
+ animationDuration: number;
5018
+ showOnlyMajorLevelUps: boolean;
5019
+ }
5020
+
5006
5021
  /**
5007
5022
  * This is an auto-generated file.
5008
5023
  * Any changes made to this file can be lost when this file is regenerated.
@@ -5016,17 +5031,7 @@ declare class championTabsStyle {
5016
5031
  championLevel: textStyle;
5017
5032
  championStatus: championStatusStyle;
5018
5033
  fullChampionTabContainer: championTabContainerStyle;
5019
- }
5020
-
5021
- /**
5022
- * This is an auto-generated file.
5023
- * Any changes made to this file can be lost when this file is regenerated.
5024
- */
5025
-
5026
- declare class tabLevelUpStyle {
5027
- background: string | colorStyle;
5028
- text: textStyle;
5029
- animationDuration: number;
5034
+ levelUpStyle?: tabLevelUpStyle;
5030
5035
  }
5031
5036
 
5032
5037
  /**
@@ -5494,6 +5499,7 @@ declare class websocketMessageTypes {
5494
5499
  static readonly fontsChanged = "fonts-changed";
5495
5500
  static readonly matchDatabaseUpdate = "match-database-update";
5496
5501
  static readonly gameDatabaseUpdate = "game-database-update";
5502
+ static readonly gameTeamSidesSwapped = "game-team-sides-swapped";
5497
5503
  static readonly teamDatabaseUpdate = "team-database-update";
5498
5504
  static readonly seasonDatabaseUpdate = "season-database-update";
5499
5505
  static readonly appNotification = "app-notification";
@@ -5524,6 +5530,176 @@ declare class websocketMessageTypes {
5524
5530
  static readonly userFeaturesUpdated = "user-features-updated";
5525
5531
  static readonly damageEventHistoryUpdate = "damage-event-history-update";
5526
5532
  static readonly customOverlayUpdate = "custom-overlay-update";
5533
+ static readonly brushPresetsUpdate = "brush-presets-update";
5534
+ static readonly telestratorConfigUpdate = "telestrator-config-update";
5535
+ static readonly telestratorHotkeyFired = "telestrator-hotkey-fired";
5536
+ static readonly scriptEditorSwitch = "script-editor-switch";
5537
+ }
5538
+
5539
+ /**
5540
+ * This is an auto-generated file.
5541
+ * Any changes made to this file can be lost when this file is regenerated.
5542
+ */
5543
+ declare class authHelloMessage {
5544
+ type: string;
5545
+ token?: string;
5546
+ clientType: string;
5547
+ clientName?: string;
5548
+ protocolVersion: number;
5549
+ }
5550
+
5551
+ /**
5552
+ * This is an auto-generated file.
5553
+ * Any changes made to this file can be lost when this file is regenerated.
5554
+ */
5555
+ declare class authHelloOkMessage {
5556
+ type: string;
5557
+ clientId: string;
5558
+ capabilities: string[];
5559
+ serverVersion: string;
5560
+ }
5561
+
5562
+ /**
5563
+ * This is an auto-generated file.
5564
+ * Any changes made to this file can be lost when this file is regenerated.
5565
+ */
5566
+ declare class drawingEventMessage {
5567
+ type: string;
5568
+ roomId: string;
5569
+ eventType: string;
5570
+ strokeId?: string;
5571
+ color?: string;
5572
+ width?: number;
5573
+ layer?: string;
5574
+ points?: number[];
5575
+ }
5576
+
5577
+ /**
5578
+ * This is an auto-generated file.
5579
+ * Any changes made to this file can be lost when this file is regenerated.
5580
+ */
5581
+ declare class drawingStrokeDto {
5582
+ strokeId: string;
5583
+ color: string;
5584
+ width: number;
5585
+ layer?: string;
5586
+ points: number[];
5587
+ }
5588
+
5589
+ /**
5590
+ * This is an auto-generated file.
5591
+ * Any changes made to this file can be lost when this file is regenerated.
5592
+ */
5593
+
5594
+ declare class drawingStateMessage {
5595
+ type: string;
5596
+ roomId: string;
5597
+ targetClientId: string;
5598
+ strokes: drawingStrokeDto[];
5599
+ }
5600
+
5601
+ /**
5602
+ * This is an auto-generated file.
5603
+ * Any changes made to this file can be lost when this file is regenerated.
5604
+ */
5605
+ declare class drawingStateRequestMessage {
5606
+ type: string;
5607
+ roomId: string;
5608
+ targetClientId: string;
5609
+ targetMemberId: string;
5610
+ }
5611
+
5612
+ /**
5613
+ * This is an auto-generated file.
5614
+ * Any changes made to this file can be lost when this file is regenerated.
5615
+ */
5616
+ declare class hubErrorMessage {
5617
+ type: string;
5618
+ code: number;
5619
+ message: string;
5620
+ requestType?: string;
5621
+ }
5622
+
5623
+ /**
5624
+ * This is an auto-generated file.
5625
+ * Any changes made to this file can be lost when this file is regenerated.
5626
+ */
5627
+ declare class hubMemberDto {
5628
+ id: string;
5629
+ clientType: string;
5630
+ clientName?: string;
5631
+ }
5632
+
5633
+ /**
5634
+ * This is an auto-generated file.
5635
+ * Any changes made to this file can be lost when this file is regenerated.
5636
+ */
5637
+ declare class hubPingMessage {
5638
+ type: string;
5639
+ }
5640
+
5641
+ /**
5642
+ * This is an auto-generated file.
5643
+ * Any changes made to this file can be lost when this file is regenerated.
5644
+ */
5645
+ declare class hubPongMessage {
5646
+ type: string;
5647
+ }
5648
+
5649
+ /**
5650
+ * This is an auto-generated file.
5651
+ * Any changes made to this file can be lost when this file is regenerated.
5652
+ */
5653
+
5654
+ declare class roomJoinedMessage {
5655
+ type: string;
5656
+ roomId: string;
5657
+ roomType: string;
5658
+ roomKey: string;
5659
+ slug?: string;
5660
+ memberId: string;
5661
+ members: hubMemberDto[];
5662
+ }
5663
+
5664
+ /**
5665
+ * This is an auto-generated file.
5666
+ * Any changes made to this file can be lost when this file is regenerated.
5667
+ */
5668
+ declare class roomJoinMessage {
5669
+ type: string;
5670
+ roomType: string;
5671
+ roomKey: string;
5672
+ slug?: string;
5673
+ }
5674
+
5675
+ /**
5676
+ * This is an auto-generated file.
5677
+ * Any changes made to this file can be lost when this file is regenerated.
5678
+ */
5679
+ declare class roomLeaveMessage {
5680
+ type: string;
5681
+ roomId: string;
5682
+ }
5683
+
5684
+ /**
5685
+ * This is an auto-generated file.
5686
+ * Any changes made to this file can be lost when this file is regenerated.
5687
+ */
5688
+
5689
+ declare class roomMemberJoinedMessage {
5690
+ type: string;
5691
+ roomId: string;
5692
+ member: hubMemberDto;
5693
+ }
5694
+
5695
+ /**
5696
+ * This is an auto-generated file.
5697
+ * Any changes made to this file can be lost when this file is regenerated.
5698
+ */
5699
+ declare class roomMemberLeftMessage {
5700
+ type: string;
5701
+ roomId: string;
5702
+ memberId: string;
5527
5703
  }
5528
5704
 
5529
5705
  /**
@@ -5660,6 +5836,31 @@ declare enum AssetType {
5660
5836
  Unknown = 10
5661
5837
  }
5662
5838
 
5839
+ /**
5840
+ * This is an auto-generated file.
5841
+ * Any changes made to this file can be lost when this file is regenerated.
5842
+ */
5843
+ declare class brushPreset {
5844
+ id: string;
5845
+ name: string;
5846
+ color?: string;
5847
+ width?: number;
5848
+ layer?: string;
5849
+ startTip?: string;
5850
+ endTip?: string;
5851
+ lineStyle?: string;
5852
+ }
5853
+
5854
+ /**
5855
+ * This is an auto-generated file.
5856
+ * Any changes made to this file can be lost when this file is regenerated.
5857
+ */
5858
+
5859
+ declare class brushPresetsChangedMessage {
5860
+ type: string;
5861
+ presets: brushPreset[];
5862
+ }
5863
+
5663
5864
  /**
5664
5865
  * This is an auto-generated file.
5665
5866
  * Any changes made to this file can be lost when this file is regenerated.
@@ -5799,6 +6000,16 @@ declare class gameStatusMessage {
5799
6000
  isTestingEnvironment?: boolean;
5800
6001
  }
5801
6002
 
6003
+ /**
6004
+ * This is an auto-generated file.
6005
+ * Any changes made to this file can be lost when this file is regenerated.
6006
+ */
6007
+
6008
+ declare class gameTeamSidesSwappedMessage {
6009
+ type: string;
6010
+ game: gameWithTeams$1;
6011
+ }
6012
+
5802
6013
  /**
5803
6014
  * This is an auto-generated file.
5804
6015
  * Any changes made to this file can be lost when this file is regenerated.
@@ -6767,6 +6978,7 @@ declare class playerSlotStyle {
6767
6978
  backgroundColor: string | colorStyle;
6768
6979
  textStyle: textStyle;
6769
6980
  layout: layoutStyle;
6981
+ useVideoBackground: boolean;
6770
6982
  }
6771
6983
 
6772
6984
  /**
@@ -7651,7 +7863,67 @@ declare enum WindowType {
7651
7863
  Startup = 1,
7652
7864
  Login = 2,
7653
7865
  Settings = 3,
7654
- Drawing = 4
7866
+ Drawing = 4,
7867
+ ScriptEditor = 5
7868
+ }
7869
+
7870
+ /**
7871
+ * This is an auto-generated file.
7872
+ * Any changes made to this file can be lost when this file is regenerated.
7873
+ */
7874
+ declare class pollChoice {
7875
+ id?: string;
7876
+ title?: string;
7877
+ votes: number;
7878
+ channel_points_votes: number;
7879
+ bits_votes: number;
7880
+ }
7881
+
7882
+ /**
7883
+ * This is an auto-generated file.
7884
+ * Any changes made to this file can be lost when this file is regenerated.
7885
+ */
7886
+ declare class predictionOutcome {
7887
+ id?: string;
7888
+ title?: string;
7889
+ users: number;
7890
+ channel_points: number;
7891
+ color?: string;
7892
+ }
7893
+
7894
+ /**
7895
+ * This is an auto-generated file.
7896
+ * Any changes made to this file can be lost when this file is regenerated.
7897
+ */
7898
+
7899
+ declare class twitchPollDto {
7900
+ id?: string;
7901
+ broadcaster_id?: string;
7902
+ title?: string;
7903
+ choices?: pollChoice[];
7904
+ bits_voting_enabled: boolean;
7905
+ bits_per_vote: number;
7906
+ channel_points_voting_enabled: boolean;
7907
+ channel_points_per_vote: number;
7908
+ status?: string;
7909
+ duration: number;
7910
+ started_at: Date;
7911
+ }
7912
+
7913
+ /**
7914
+ * This is an auto-generated file.
7915
+ * Any changes made to this file can be lost when this file is regenerated.
7916
+ */
7917
+
7918
+ declare class twitchPredictionDto {
7919
+ id?: string;
7920
+ broadcaster_id?: string;
7921
+ title?: string;
7922
+ winning_outcome_id?: string;
7923
+ outcomes?: predictionOutcome[];
7924
+ prediction_window: number;
7925
+ status?: string;
7926
+ created_at: Date;
7655
7927
  }
7656
7928
 
7657
7929
  /**
@@ -7832,4 +8104,4 @@ interface NormalizedDamageEntry {
7832
8104
  */
7833
8105
  declare function normalizeDamageEntries(entries: damageRecapEntry[], limit?: number): NormalizedDamageEntry[];
7834
8106
 
7835
- export { ActionSubType, ActionType, type AggregatedSpellEntry, AnnouncementType, ApiClient, ApiError, AppTheme, AssetType, BestOfType$1 as BestOfType, type BoundIngameTimerUtils, CacheOperation, CampLocation, type ChampSelectEventHandlers, type ChampSelectSnapshot, ChampSelectStateStore, ChampionIconType, CombinedViewTransitionType, ContentAlign, CustomOverlayMode, type DamageBarSegment, DamageEventType, DamageSplitMode, DamageType, DatabaseUpdateType, DevServerStatus, type EntityType, type EqualityFn, Feature, GameApi, GameState$1 as GameState, GameStateApi, type GameStateSnapshot, GameStateStore, GradientType, HeroStatsDisplayMode, IngameApi, type IngameEventHandlers, IngameObjectiveType, IngameSideInfoPageType, Interval, Lane, LeagueBroadcastClient, type LeagueBroadcastClientConfig, MAGIC_COLOR, MatchApi, MatchRuleSet$1 as MatchRuleSet, type NormalizedDamageEntry, ObjectFit, ObjectiveEventType, ObjectiveRecapDisplayMode, PHYS_COLOR, PaymentInterval, PickBanPhase, PostGameApi, PostGameDataType, damageBarStyle as PostgameDamageBarStyle, PreGameApi, divider as PregameDivider, ResourceType, RestApi, ScoreDisplayMode, ScoreDotBorderMode, SeasonApi, SetPhaseType, SpellClassification, SpellSlotIndex, StrokeLayer, StrokeLineStyle, StrokeTipStyle, type Subscribable, TRUE_COLOR, Team$1 as Team, TeamColorType, TeamMemberRole, TextOrientation, Tier, TimeLineActionType, TransitionType, WebSocketManager, WindowType, WritingMode, activeComponentChangedEventArgs, activeComponentChangedMessage, addMatchRequestArgs, aggregateSpellEntries, announcementParameter, announcerColors, announcerEvent, announcerUniversalStyle, applicationLifetimeMessage, applicationNotificationCompletedMessage, applicationNotificationMessage, banSlot, banSlotLayoutStyling, banStyle, barStyle, billingCycle, borderStyle, bottomRowPickBanStyle, bottomRowSizeStyle, bottomRowTeamStyle, bottomRowTournamentData, cDragonPerkInfo, casterModeConfigDto, centerContent, centerContentLayoutStyling, centerContentStyling, champSelectActionMessage, champSelectStateData, champSelectStateMessage, champSelectStateMetaData, champSelectStatePerformanceData, championAbilityData, championContainer, championData, championIamgeStyle, championIconStyle, championImage, championImageStyle, championSelectEUStyle, championSelectTeam, championSkinInfo, championSlot, championStackStyle, championStatistics, championStats, championStatsContainer, championStatusStyle, championTabContainerStyle, championTabNameStyle, championTabsStyle, championUltimateStyle, championsSlot, changeDetectionResponse, changeEmailRequest, changeEmailResponse, changePasswordRequest, chatVoteOption, chatVoteResultDto, checkoutCompleteResponse, checkoutRequestDTO, choiceBar, choiceTitel, choiceVotes, cloudOverlayDownloadResponse, cloudOverlayMetadata, cloudOverlayUploadRequest, cloudOverlayUploadResponse, cloudOverlaysResponse, cloudStyleSetDownloadResponse, cloudStyleSetMetadata, cloudStyleSetUploadRequest, cloudStyleSetUploadResponse, cloudStyleSetsResponse, cloudSyncConfig, cloudSyncResult, coachSlot, colorByDamageType, colorComponentStyling, colorGradientData, colorImageData, colorRGBA, colorStop, colorStyle, colorStyling, combinedViewStyle, combinedViewTransitionStyle, communityDragonCacheProgressMessage, communityDragonV2ProgressMessage, communityDragonV2StatusMessage, componentStyle, contentContainerStyle, createChoice, createIngameTimerUtils, createPollDto, createPredictionDto, creepScore, curveStyle, customOverlay, customOverlayDescriptor, customOverlayUpdateMessage, damageBarSegments, damageBarStyle$1 as damageBarStyle, damageCompositionBarStyle, damageCompositionColors, damageCompositionDonutStyle, damageCompositionPlayer, damageCompositionStyle, damageCompositionTeam, damageDealtStyle, damageEventHistoryEntry, damageEventHistoryUpdateMessage, damageFlow, damageFlowEdge, damageFlowNode, damageFlowNodeStyle, damageFlowRibbonStyle, damageGraphEntry, damageGraphSide, damageRecapDamageBarStyle, damageRecapEntry, damageRecapEntryStyle, damageRecapSpellEntry, damageRecapStyle, damageRecapTimelineEntry, damageSplitBarStyle, damageSplitEntryStyle, damageSplitSpellEntry, damageSplitStyle, damageSplitTargetEntry, damageStatsStyle, devServerState, displayColorData, divider$1 as divider, dmgTypeColor, emailConfirmRequest, emailForgotPasswordRequest, emailLoginRequest, emailResendCodeRequest, emailResetPasswordRequest, emailSignUpRequest, endPollDto, endPredictionDto, fearLessByGame, fearLessSingleRow, fearlessChampionImage, fearlessDraftStyle, fearlessDraftStylePregame, fearlessTree, fearlessTreeBanRowStyle, fearlessTreeConnectorStyle, fearlessTreeGameNodeStyle, fearlessTreeHeaderStyle, fontsChangedMessage, formatDamage, frontendRouteUpdateMessage, fullPlayerScoreboardSlots, gameAnalysis, gameDatabaseUpdateMessage, gameInfoRotation, gameStatusMessage, gameTimer, gameTimerStyle, gameWithTeams$1 as gameWithTeams, getAbilityCooldownFraction, getAbilityCooldownRemaining, getDamageByType, getItemCooldownFraction, getItemCooldownRemaining, getRemaining, getRespawnRemaining, getRoleQuest, getSortedInventory, getTrinket, globalPosition, globalScoreboard, globalScoreboardBooleanIndicator, globalScoreboardSection, globalStyleProperties, goldAdvantage, goldEfficiencyEntry, goldEfficiencyHeaderStyle, goldEfficiencyHeatStyle, goldEfficiencyPlayerRowStyle, goldEfficiencyStyle, goldGraph, goldGraphStyle, gridLineStyle, headline, healthBarStyle, hotkeyFiredMessage, type iApplicationNotification, type iApplicationNotificationResponse, type iHeroNamed, type iObjectiveRespawnData, type iSpellObjectResource, type iWebsocketMessage, imageComponentStyle, imageStyle, infoContentColorStyling, infoContentLayoutStyling, infoContentTextStyle, infoRow, ingameAbilityInfo, ingameDamageCompositionData, ingameDamageFlowData, ingameDamageGraphData, ingameDamageRecapData, ingameDamageSplitData, ingameExperienceData, ingameFrontendData, ingameGoldEfficiencyData, ingameGoldGraphData, ingameHealthData, ingameKillParticipationData, ingameObjectiveDpsData, ingameObjectiveEvent, ingameObjectivePowerPlay, ingameResourceData, ingameRewindMessage, ingameRuneData, ingameScoreboardBottomData, ingameScoreboardBottomPlayerData, ingameScoreboardBottomTeamData, ingameScoreboardData, ingameScoreboardTeamData, ingameSideInfoPage, ingameSideInfoPageDisplayData, ingameSideInfoPageRow, ingameSingleRuneData, ingameSkinDisplayData, ingameSkinDisplayPlayerData, ingameSkinDisplayTeamData, ingameStateMessage, ingameStateSettingsWrapper, ingameTeamfightTimelineData, ingameTelemetry, ingameTelemetryMessage, inhibitorRespawnData, inhibitorTimer, inhibitorTimerContainer, inhibitorTimerDual, inhibitorTimerIconContainer, inhibitorTimerSingle, inhibitorTimerTimerContainer, isAbilityOnCooldown, isActive, isItemOnCooldown, isPlayerDead, itemAsset, itemIcon, itemSlot, itemStats, itemWithAsset, killFeed, killFeedAssistersStyle, killFeedContainerStyle, killFeedEntryStyle, killFeedEvent, killFeedIconStyle, killFeedKillIconStyle, killParticipationLink, killParticipationPlayer, killParticipationStyle, lFrameRotation, laneIconStyle, laneRowLayoutStyle, layoutComponentStyling, layoutStyle, legacyPickBanStyle, levelXpTrackerStyle, lineStyle, localSyncState, localizedPriceData, matchCardStyle, matchData$1 as matchData, matchDatabaseUpdateMessage, matchOverviewData, matchOverviewGameSummary, matchOverviewTeamSummary, matchSummaryStyle, matchWithGamesAndTeams, matchupGridStyle, matchupHeaderStyle, matchupOverview, matchupOverviewGameRowStyle, matchupOverviewHeaderStyle, matchupOverviewTeamBarStyle, matchupScoreStyle, matchupTable, matchupTableContentStyle, matchupVersusStyle, normalizeDamageEntries, numberContainerStyle, objectiveDamagePerTeamStyle, objectiveDpsBarStyle, objectiveDpsHeaderStyle, objectiveDpsSample, objectiveDpsSmiteStrip, objectiveDpsTeamNumbersStyle, objectiveList, objectiveRecapCardStyle, objectiveRecapHeaderStyle, objectiveRecapSmiteBarStyle, objectiveRecapStyle, objectiveTimer, optionBar, optionTitel, optionVotes, optionalGameData, optionalMatchData, optionalTextStyle, partialStrokeProperties, perkData, perkInfoV2, perkStyleInfoV2, phaseTimer, phaseTimerColorStyling, phaseTimerLayoutStyling, pickBanActionEventArgs, pickBanTimer, pickBans, pickSlot, planDescriptorRecord, planDetails, playerDeath, playerHotkeyDto, playerKDA, playerScoreboard, playerScoreboardContainer, playerScoreboardGoldComparison, playerScoreboardSlot, playerSlot, playerSlotColorStyling, playerSlotLayoutStyling, playerSlotPickingStyle, playerSlotStyle, playerUpdateEvent, playerXpLevelStyle, pollWrapper, portalSessionResponse, postGameDamageGraph, postGameDamageGraphByTeam, postGameDamageGraphEntry, postGameGoldGraph, postGameOverview, postGamePlayerInfo, postGamePlayerPage, postGamePlayerRunesAndItems, postGamePlayerStats, postGameTeamInfo, postGameTeamOverview, predictionBar, predictionOutcomeRequest, predictionPoints, predictionWrapper, profileResponse, progressBarStyle, registerOverlayRequest, respawnTimer, roleQuestSlot, runeContainer, runeDisplayPerkStyle, runeDisplayStyle, runeDisplayTeamStyle, runeIcon, runeStyle, scoreStyle, scoreboardChampionSlot, scoreboardDamageGraphStyle, seasonData, seasonDatabaseUpdateMessage, shallowEqual, simpleChampionData$1 as simpleChampionData, singleGameGoldGraph, singleGameGoldGraphData, singleIngameHotkeyConfigDto, singlePostgameHotkeyConfigDto, skinDisplayInfoStyle, skinDisplayPoweredByStyle, skinDisplayRoleIconStyle, skinDisplayStyle, smiteReactionBadgeStyle, smiteReactionPoweredByStyle, smiteReactionResult, smiteReactionRingStyle, smiteReactionStyle, smiteReactionTextStyle, spawnTimer, spawnTimerIconContainerStyle, spawnTimerInfoContainerStyle, spawnTimerStyle, startChatVoteDto, startCheckoutResponse, strokePropertiesChangedMessage, styleSet, styleSetEntry, styleSetNameCollection, styleSetUpdatedMessage, styleVariantUpdateMessage, styleVariantUpdatedEventArgs, summonerSpellData, summonerSpellInfoV2, tabLevelUpStyle, tabPlayer$1 as tabPlayer, tabTeam, tabsStyle, teamColorStyling, teamDamageStyle, teamData, teamDatabaseUpdateMessage, teamFightDamageStyle, teamIconStyle, teamInfo, teamInfoStyle, teamInhibitorData, teamLayoutStyling, teamMember, teamName, teamScore, teamScores, teamSummaryStyle, teamTextStyle, teamUpdateResults, teamWithMembers$1 as teamWithMembers, teamfightDamageEntryStyle, teamfightDeathIconStyle, teamfightKillEvent, teamfightTimelinePlayer, teamfightTimelineSample, teamfightTimelineStyle, teamsAndTimerStyle, textComponentStyling, textContentWithStyle, textOutline, textStyle, textStyleWithBorder, textWithContent, timelineEntry, timerBadgePoll, timerBadgePrediction, timerBarStyle, timerTeamStyle, totalBadge, totalVotes, tournamentData, tournamentLogo, transitionEvents, transitionStyle, turretPlatingFallEvent, twitchChatVote, twitchPoll, twitchPrediction, twitchStatusDTO, ultiAbilityStyle, updateNameRequest, updateOverlayRequest, userFeaturesUpdatedMessage, userTierUpdatedMessage, vector3, verifyEmailRequest, voteWrapper, websocketMessageTypes };
8107
+ export { ActionSubType, ActionType, type AggregatedSpellEntry, AnnouncementType, ApiClient, ApiError, AppTheme, AssetType, BestOfType$1 as BestOfType, type BoundIngameTimerUtils, CacheOperation, CampLocation, type ChampSelectEventHandlers, type ChampSelectSnapshot, ChampSelectStateStore, ChampionIconType, CombinedViewTransitionType, ContentAlign, CustomOverlayMode, type DamageBarSegment, DamageEventType, DamageSplitMode, DamageType, DatabaseUpdateType, DevServerStatus, type EntityType, type EqualityFn, Feature, GameApi, GameState$1 as GameState, GameStateApi, type GameStateSnapshot, GameStateStore, GradientType, HeroStatsDisplayMode, IngameApi, type IngameEventHandlers, IngameObjectiveType, IngameSideInfoPageType, Interval, Lane, LeagueBroadcastClient, type LeagueBroadcastClientConfig, MAGIC_COLOR, MatchApi, MatchRuleSet$1 as MatchRuleSet, type NormalizedDamageEntry, ObjectFit, ObjectiveEventType, ObjectiveRecapDisplayMode, PHYS_COLOR, PaymentInterval, PickBanPhase, PostGameApi, PostGameDataType, damageBarStyle as PostgameDamageBarStyle, PreGameApi, divider as PregameDivider, ResourceType, RestApi, ScoreDisplayMode, ScoreDotBorderMode, SeasonApi, SetPhaseType, SpellClassification, SpellSlotIndex, StrokeLayer, StrokeLineStyle, StrokeTipStyle, type Subscribable, TRUE_COLOR, Team$1 as Team, TeamColorType, TeamMemberRole, TextOrientation, Tier, TimeLineActionType, TransitionType, WebSocketManager, WindowType, WritingMode, activeComponentChangedEventArgs, activeComponentChangedMessage, addMatchRequestArgs, aggregateSpellEntries, announcementParameter, announcerColors, announcerEvent, announcerUniversalStyle, applicationLifetimeMessage, applicationNotificationCompletedMessage, applicationNotificationMessage, authHelloMessage, authHelloOkMessage, banSlot, banSlotLayoutStyling, banStyle, barStyle, billingCycle, borderStyle, bottomRowPickBanStyle, bottomRowSizeStyle, bottomRowTeamStyle, bottomRowTournamentData, brushPresetsChangedMessage, cDragonPerkInfo, casterModeConfigDto, centerContent, centerContentLayoutStyling, centerContentStyling, champSelectActionMessage, champSelectStateData, champSelectStateMessage, champSelectStateMetaData, champSelectStatePerformanceData, championAbilityData, championContainer, championData, championIamgeStyle, championIconStyle, championImage, championImageStyle, championSelectEUStyle, championSelectTeam, championSkinInfo, championSlot, championStackStyle, championStatistics, championStats, championStatsContainer, championStatusStyle, championTabContainerStyle, championTabNameStyle, championTabsStyle, championUltimateStyle, championsSlot, changeDetectionResponse, changeEmailRequest, changeEmailResponse, changePasswordRequest, chatVoteOption, chatVoteResultDto, checkoutCompleteResponse, checkoutRequestDTO, choiceBar, choiceTitel, choiceVotes, cloudOverlayDownloadResponse, cloudOverlayMetadata, cloudOverlayUploadRequest, cloudOverlayUploadResponse, cloudOverlaysResponse, cloudStyleSetDownloadResponse, cloudStyleSetMetadata, cloudStyleSetUploadRequest, cloudStyleSetUploadResponse, cloudStyleSetsResponse, cloudSyncConfig, cloudSyncResult, coachSlot, colorByDamageType, colorComponentStyling, colorGradientData, colorImageData, colorRGBA, colorStop, colorStyle, colorStyling, combinedViewStyle, combinedViewTransitionStyle, communityDragonCacheProgressMessage, communityDragonV2ProgressMessage, communityDragonV2StatusMessage, componentStyle, contentContainerStyle, createChoice, createIngameTimerUtils, createPollDto, createPredictionDto, creepScore, curveStyle, customOverlay, customOverlayDescriptor, customOverlayUpdateMessage, damageBarSegments, damageBarStyle$1 as damageBarStyle, damageCompositionBarStyle, damageCompositionColors, damageCompositionDonutStyle, damageCompositionPlayer, damageCompositionStyle, damageCompositionTeam, damageDealtStyle, damageEventHistoryEntry, damageEventHistoryUpdateMessage, damageFlow, damageFlowEdge, damageFlowNode, damageFlowNodeStyle, damageFlowRibbonStyle, damageGraphEntry, damageGraphSide, damageRecapDamageBarStyle, damageRecapEntry, damageRecapEntryStyle, damageRecapSpellEntry, damageRecapStyle, damageRecapTimelineEntry, damageSplitBarStyle, damageSplitEntryStyle, damageSplitSpellEntry, damageSplitStyle, damageSplitTargetEntry, damageStatsStyle, devServerState, displayColorData, divider$1 as divider, dmgTypeColor, drawingEventMessage, drawingStateMessage, drawingStateRequestMessage, drawingStrokeDto, emailConfirmRequest, emailForgotPasswordRequest, emailLoginRequest, emailResendCodeRequest, emailResetPasswordRequest, emailSignUpRequest, endPollDto, endPredictionDto, fearLessByGame, fearLessSingleRow, fearlessChampionImage, fearlessDraftStyle, fearlessDraftStylePregame, fearlessTree, fearlessTreeBanRowStyle, fearlessTreeConnectorStyle, fearlessTreeGameNodeStyle, fearlessTreeHeaderStyle, fontsChangedMessage, formatDamage, frontendRouteUpdateMessage, fullPlayerScoreboardSlots, gameAnalysis, gameDatabaseUpdateMessage, gameInfoRotation, gameStatusMessage, gameTeamSidesSwappedMessage, gameTimer, gameTimerStyle, gameWithTeams$1 as gameWithTeams, getAbilityCooldownFraction, getAbilityCooldownRemaining, getDamageByType, getItemCooldownFraction, getItemCooldownRemaining, getRemaining, getRespawnRemaining, getRoleQuest, getSortedInventory, getTrinket, globalPosition, globalScoreboard, globalScoreboardBooleanIndicator, globalScoreboardSection, globalStyleProperties, goldAdvantage, goldEfficiencyEntry, goldEfficiencyHeaderStyle, goldEfficiencyHeatStyle, goldEfficiencyPlayerRowStyle, goldEfficiencyStyle, goldGraph, goldGraphStyle, gridLineStyle, headline, healthBarStyle, hotkeyFiredMessage, hubErrorMessage, hubMemberDto, hubPingMessage, hubPongMessage, type iApplicationNotification, type iApplicationNotificationResponse, type iHeroNamed, type iObjectiveRespawnData, type iSpellObjectResource, type iWebsocketMessage, imageComponentStyle, imageStyle, infoContentColorStyling, infoContentLayoutStyling, infoContentTextStyle, infoRow, ingameAbilityInfo, ingameDamageCompositionData, ingameDamageFlowData, ingameDamageGraphData, ingameDamageRecapData, ingameDamageSplitData, ingameExperienceData, ingameFrontendData, ingameGoldEfficiencyData, ingameGoldGraphData, ingameHealthData, ingameKillParticipationData, ingameObjectiveDpsData, ingameObjectiveEvent, ingameObjectivePowerPlay, ingameResourceData, ingameRewindMessage, ingameRuneData, ingameScoreboardBottomData, ingameScoreboardBottomPlayerData, ingameScoreboardBottomTeamData, ingameScoreboardData, ingameScoreboardTeamData, ingameSideInfoPage, ingameSideInfoPageDisplayData, ingameSideInfoPageRow, ingameSingleRuneData, ingameSkinDisplayData, ingameSkinDisplayPlayerData, ingameSkinDisplayTeamData, ingameStateMessage, ingameStateSettingsWrapper, ingameTeamfightTimelineData, ingameTelemetry, ingameTelemetryMessage, inhibitorRespawnData, inhibitorTimer, inhibitorTimerContainer, inhibitorTimerDual, inhibitorTimerIconContainer, inhibitorTimerSingle, inhibitorTimerTimerContainer, isAbilityOnCooldown, isActive, isItemOnCooldown, isPlayerDead, itemAsset, itemIcon, itemSlot, itemStats, itemWithAsset, killFeed, killFeedAssistersStyle, killFeedContainerStyle, killFeedEntryStyle, killFeedEvent, killFeedIconStyle, killFeedKillIconStyle, killParticipationLink, killParticipationPlayer, killParticipationStyle, lFrameRotation, laneIconStyle, laneRowLayoutStyle, layoutComponentStyling, layoutStyle, legacyPickBanStyle, levelXpTrackerStyle, lineStyle, localSyncState, localizedPriceData, matchCardStyle, matchData$1 as matchData, matchDatabaseUpdateMessage, matchOverviewData, matchOverviewGameSummary, matchOverviewTeamSummary, matchSummaryStyle, matchWithGamesAndTeams, matchupGridStyle, matchupHeaderStyle, matchupOverview, matchupOverviewGameRowStyle, matchupOverviewHeaderStyle, matchupOverviewTeamBarStyle, matchupScoreStyle, matchupTable, matchupTableContentStyle, matchupVersusStyle, normalizeDamageEntries, numberContainerStyle, objectiveDamagePerTeamStyle, objectiveDpsBarStyle, objectiveDpsHeaderStyle, objectiveDpsSample, objectiveDpsSmiteStrip, objectiveDpsTeamNumbersStyle, objectiveList, objectiveRecapCardStyle, objectiveRecapHeaderStyle, objectiveRecapSmiteBarStyle, objectiveRecapStyle, objectiveTimer, optionBar, optionTitel, optionVotes, optionalGameData, optionalMatchData, optionalTextStyle, partialStrokeProperties, perkData, perkInfoV2, perkStyleInfoV2, phaseTimer, phaseTimerColorStyling, phaseTimerLayoutStyling, pickBanActionEventArgs, pickBanTimer, pickBans, pickSlot, planDescriptorRecord, planDetails, playerDeath, playerHotkeyDto, playerKDA, playerScoreboard, playerScoreboardContainer, playerScoreboardGoldComparison, playerScoreboardSlot, playerSlot, playerSlotColorStyling, playerSlotLayoutStyling, playerSlotPickingStyle, playerSlotStyle, playerUpdateEvent, playerXpLevelStyle, pollChoice, pollWrapper, portalSessionResponse, postGameDamageGraph, postGameDamageGraphByTeam, postGameDamageGraphEntry, postGameGoldGraph, postGameOverview, postGamePlayerInfo, postGamePlayerPage, postGamePlayerRunesAndItems, postGamePlayerStats, postGameTeamInfo, postGameTeamOverview, predictionBar, predictionOutcome, predictionOutcomeRequest, predictionPoints, predictionWrapper, profileResponse, progressBarStyle, registerOverlayRequest, respawnTimer, roleQuestSlot, roomJoinMessage, roomJoinedMessage, roomLeaveMessage, roomMemberJoinedMessage, roomMemberLeftMessage, runeContainer, runeDisplayPerkStyle, runeDisplayStyle, runeDisplayTeamStyle, runeIcon, runeStyle, scoreStyle, scoreboardChampionSlot, scoreboardDamageGraphStyle, seasonData, seasonDatabaseUpdateMessage, shallowEqual, simpleChampionData$1 as simpleChampionData, singleGameGoldGraph, singleGameGoldGraphData, singleIngameHotkeyConfigDto, singlePostgameHotkeyConfigDto, skinDisplayInfoStyle, skinDisplayPoweredByStyle, skinDisplayRoleIconStyle, skinDisplayStyle, smiteReactionBadgeStyle, smiteReactionPoweredByStyle, smiteReactionResult, smiteReactionRingStyle, smiteReactionStyle, smiteReactionTextStyle, spawnTimer, spawnTimerIconContainerStyle, spawnTimerInfoContainerStyle, spawnTimerStyle, startChatVoteDto, startCheckoutResponse, strokePropertiesChangedMessage, styleSet, styleSetEntry, styleSetNameCollection, styleSetUpdatedMessage, styleVariantUpdateMessage, styleVariantUpdatedEventArgs, summonerSpellData, summonerSpellInfoV2, tabLevelUpStyle, tabPlayer$1 as tabPlayer, tabTeam, tabsStyle, teamColorStyling, teamDamageStyle, teamData, teamDatabaseUpdateMessage, teamFightDamageStyle, teamIconStyle, teamInfo, teamInfoStyle, teamInhibitorData, teamLayoutStyling, teamMember, teamName, teamScore, teamScores, teamSummaryStyle, teamTextStyle, teamUpdateResults, teamWithMembers$1 as teamWithMembers, teamfightDamageEntryStyle, teamfightDeathIconStyle, teamfightKillEvent, teamfightTimelinePlayer, teamfightTimelineSample, teamfightTimelineStyle, teamsAndTimerStyle, textComponentStyling, textContentWithStyle, textOutline, textStyle, textStyleWithBorder, textWithContent, timelineEntry, timerBadgePoll, timerBadgePrediction, timerBarStyle, timerTeamStyle, totalBadge, totalVotes, tournamentData, tournamentLogo, transitionEvents, transitionStyle, turretPlatingFallEvent, twitchChatVote, twitchPoll, twitchPollDto, twitchPrediction, twitchPredictionDto, twitchStatusDTO, ultiAbilityStyle, updateNameRequest, updateOverlayRequest, userFeaturesUpdatedMessage, userTierUpdatedMessage, vector3, verifyEmailRequest, voteWrapper, websocketMessageTypes };