Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding isFeatured property to ClipData. Fixing no backtick for tier in Twitch subscription triggers arguments. #115

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ variables:
value: False
- name: tier
type: string
description: The subscriptions tier<br>`tier 1`, `tier 2`, `tier 3
description: The subscriptions tier<br>`tier 1`, `tier 2`, `tier 3`
value: tier 1
commonVariables:
- TwitchUser
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ variables:
value: False
- name: tier
type: string
description: The subscription tier<br>`tier 1`, `tier 2`, `tier 3
description: The subscription tier<br>`tier 1`, `tier 2`, `tier 3`
value: tier 1
commonVariables:
- TwitchUser
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ twitchService: Chat Client
variables:
- name: tier
type: string
description: The subscription tier<br>`prime`, `tier 1`, `tier 2`, `tier 3
description: The subscription tier<br>`prime`, `tier 1`, `tier 2`, `tier 3`
value: tier 1
- name: monthStreak
type: number
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ twitchService: Chat Client
variables:
- name: tier
type: string
description: The subscription tier<br>`prime`, `tier 1`, `tier 2`, `tier 3
description: The subscription tier<br>`prime`, `tier 1`, `tier 2`, `tier 3`
value: tier 1
commonVariables:
- TwitchUser
Expand Down
1 change: 1 addition & 0 deletions streamerbot/3.api/3.csharp/_classes/ClipData.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ public class ClipData
public DateTime CreatedAt;
public string ThumbnailUrl;
public float Duration;
public bool isFeatured; //Available in 0.2.3+
}
```