From d16a90f920bf55377116d1f0947ae2292af92d20 Mon Sep 17 00:00:00 2001 From: Sidd Date: Sat, 29 Jan 2022 10:02:55 -0800 Subject: [PATCH] chore: promote helix moderation api out of beta (#524) --- .../main/java/com/github/twitch4j/helix/TwitchHelix.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/rest-helix/src/main/java/com/github/twitch4j/helix/TwitchHelix.java b/rest-helix/src/main/java/com/github/twitch4j/helix/TwitchHelix.java index aa3cffd88..43a1a919e 100644 --- a/rest-helix/src/main/java/com/github/twitch4j/helix/TwitchHelix.java +++ b/rest-helix/src/main/java/com/github/twitch4j/helix/TwitchHelix.java @@ -366,7 +366,6 @@ HystrixCommand getEmoteSets( * @return ChatSettingsWrapper * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_CHAT_SETTINGS_READ */ - @Unofficial // beta @RequestLine("GET /chat/settings?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}") @Headers("Authorization: Bearer {token}") HystrixCommand getChatSettings( @@ -385,7 +384,6 @@ HystrixCommand getChatSettings( * @return ChatSettingsWrapper * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_CHAT_SETTINGS_MANAGE */ - @Unofficial // beta @RequestLine("PATCH /chat/settings?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}") @Headers({ "Authorization: Bearer {token}", @@ -881,7 +879,6 @@ HystrixCommand manageAutoModHeldMessage( * @return AutoModSettingsWrapper * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_AUTOMOD_SETTINGS_READ */ - @Unofficial // beta @RequestLine("GET /moderation/automod/settings?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}") @Headers("Authorization: Bearer {token}") HystrixCommand getAutoModSettings( @@ -914,7 +911,6 @@ HystrixCommand getAutoModSettings( * @return AutoModSettingsWrapper * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_AUTOMOD_SETTINGS_MANAGE */ - @Unofficial // beta @RequestLine("PUT /moderation/automod/settings?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}") @Headers({ "Authorization: Bearer {token}", @@ -1007,7 +1003,6 @@ HystrixCommand getBannedEvents( * @return BanUsersList * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_BANNED_USERS_MANAGE */ - @Unofficial // beta @RequestLine("POST /moderation/bans?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}") @Headers({ "Authorization: Bearer {token}", @@ -1031,7 +1026,6 @@ HystrixCommand banUser( * @return 204 No Content upon a successful unban or untimeout * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_BANNED_USERS_MANAGE */ - @Unofficial // beta @RequestLine("DELETE /moderation/bans?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}&user_id={user_id}") @Headers("Authorization: Bearer {token}") HystrixCommand unbanUser( @@ -1053,7 +1047,6 @@ HystrixCommand unbanUser( * @return BlockedTermList * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_BLOCKED_TERMS_READ */ - @Unofficial // beta @RequestLine("GET /moderation/blocked_terms?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}&after={after}&first={first}") @Headers("Authorization: Bearer {token}") HystrixCommand getBlockedTerms( @@ -1081,7 +1074,6 @@ HystrixCommand getBlockedTerms( * @return BlockedTermList * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_BLOCKED_TERMS_MANAGE */ - @Unofficial // beta @RequestLine("POST /moderation/blocked_terms?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}") @Headers({ "Authorization: Bearer {token}", @@ -1105,7 +1097,6 @@ HystrixCommand addBlockedTerm( * @return 204 No Content upon a successful request * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_BLOCKED_TERMS_MANAGE */ - @Unofficial // beta @RequestLine("DELETE /moderation/blocked_terms?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}&id={id}") @Headers("Authorization: Bearer {token}") HystrixCommand removeBlockedTerm(