Skip to content

Commit

Permalink
fix: Missing events in ITwitchPubSub
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaumanndev committed Jul 2, 2024
1 parent 3e25962 commit 74c9123
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions TwitchLib.PubSub/Interfaces/ITwitchPubSub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ public interface ITwitchPubSub
/// Occurs when [on bits received].
/// </summary>
event EventHandler<OnBitsReceivedArgs> OnBitsReceived;
/// <inheritdoc />
/// <summary>
/// Occurs when [on bits received v2].
/// </summary>
event EventHandler<OnBitsReceivedV2Args> OnBitsReceivedV2;
/// <summary>
/// Occurs when [on channel extension broadcast].
/// </summary>
Expand Down Expand Up @@ -164,6 +169,14 @@ public interface ITwitchPubSub
/// Occurs when [on prediction].
/// </summary>
event EventHandler<OnPredictionArgs> OnPrediction;
/// <summary>
///Occurs when [on automod caught message].
/// </summary>
event EventHandler<OnAutomodCaughtMessageArgs> OnAutomodCaughtMessage;
/// <summary>
/// Occurs when [on automod caught user message].
/// </summary>
event EventHandler<OnAutomodCaughtUserMessage> OnAutomodCaughtUserMessage;

/// <summary>
/// Connects this instance.
Expand Down

0 comments on commit 74c9123

Please sign in to comment.