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 639153c8d..81230b926 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 @@ -326,8 +326,6 @@ HystrixCommand updateRedemptionStatus( /** * Sends an announcement to the broadcaster’s chat room. - *

- * This endpoint is in open beta. * * @param authToken User access token (scope: moderator:manage:announcements) of the broadcaster or a moderator. * @param broadcasterId The ID of the broadcaster that owns the chat room to send the announcement to. @@ -337,7 +335,6 @@ HystrixCommand updateRedemptionStatus( * @return 204 No Content upon a successful call * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_CHAT_ANNOUNCEMENTS_MANAGE */ - @Unofficial // beta @RequestLine("POST /chat/announcements?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}") @Headers({ "Authorization: Bearer {token}", @@ -381,15 +378,12 @@ HystrixCommand getGlobalChatBadges( /** * Gets the color used for the user’s name in chat. - *

- * This endpoint is in open beta. * * @param authToken App access token or user access token. * @param userIds The ID of the users whose color you want to get. Maximum: 100. * @return UserChatColorList * @see ChatUserColor#getColor() */ - @Unofficial // beta @RequestLine("GET /chat/color?user_id={user_id}") @Headers("Authorization: Bearer {token}") HystrixCommand getUserChatColor( @@ -400,8 +394,6 @@ HystrixCommand getUserChatColor( /** * Updates the color used for the user’s name in chat. *

- * This endpoint is in open beta. - *

* All users may specify one of the following named color values in {@link NamedUserChatColor}. * Turbo and Prime users may specify a named color or a Hex color code like #9146FF. * @@ -411,7 +403,6 @@ HystrixCommand getUserChatColor( * @return 204 No Content upon a successful call * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_USER_COLOR_MANAGE */ - @Unofficial // beta @RequestLine("PUT /chat/color?user_id={user_id}&color={color}") @Headers("Authorization: Bearer {token}") HystrixCommand updateUserChatColor( @@ -1119,8 +1110,6 @@ HystrixCommand getChannelEditors( /** * Gets a list of the channel’s VIPs. - *

- * This endpoint is in open beta. * * @param authToken Broadcaster's user access token that includes the channel:read:vips scope. * @param broadcasterId The ID of the broadcaster whose list of VIPs you want to get. @@ -1130,7 +1119,6 @@ HystrixCommand getChannelEditors( * @return ChannelVipList * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_CHANNEL_VIPS_READ */ - @Unofficial // beta @RequestLine("GET /channels/vips?broadcaster_id={broadcaster_id}&user_id={user_id}&first={first}&after={after}") @Headers("Authorization: Bearer {token}") HystrixCommand getChannelVips( @@ -1143,8 +1131,6 @@ HystrixCommand getChannelVips( /** * Adds a VIP to the broadcaster’s chat room. - *

- * This endpoint is in open beta. * * @param authToken Broadcaster's user access token that includes the channel:manage:vips scope. * @param broadcasterId The ID of the broadcaster that’s granting VIP status to the user. @@ -1152,7 +1138,6 @@ HystrixCommand getChannelVips( * @return 204 No Content upon a successful call * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_CHANNEL_VIPS_MANAGE */ - @Unofficial // beta @RequestLine("POST /channels/vips?broadcaster_id={broadcaster_id}&user_id={user_id}") @Headers("Authorization: Bearer {token}") HystrixCommand addChannelVip( @@ -1163,8 +1148,6 @@ HystrixCommand addChannelVip( /** * Removes a VIP from the broadcaster’s chat room. - *

- * This endpoint is in open beta. * * @param authToken Broadcaster's user access token that includes the channel:manage:vips scope. * @param broadcasterId The ID of the broadcaster that’s removing VIP status from the user. @@ -1172,7 +1155,6 @@ HystrixCommand addChannelVip( * @return 204 No Content upon a successful call * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_CHANNEL_VIPS_MANAGE */ - @Unofficial // beta @RequestLine("DELETE /channels/vips?broadcaster_id={broadcaster_id}&user_id={user_id}") @Headers("Authorization: Bearer {token}") HystrixCommand removeChannelVip( @@ -1599,8 +1581,6 @@ HystrixCommand removeBlockedTerm( /** * Removes a single chat message or all chat messages from the broadcaster’s chat room. *

- * This endpoint is in open beta. - *

* The ID in the moderator_id query parameter must match the user ID in the access token. * If the broadcaster wants to remove messages themselves (instead of having the moderator do it), set this parameter to the broadcaster’s ID, too. *

@@ -1619,7 +1599,6 @@ HystrixCommand removeBlockedTerm( * @return 204 No Content upon a successful call * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_CHAT_MESSAGES_MANAGE */ - @Unofficial // beta @RequestLine("DELETE /moderation/chat?broadcaster_id={broadcaster_id}&moderator_id={moderator_id}&message_id={message_id}") @Headers("Authorization: Bearer {token}") HystrixCommand deleteChatMessages( @@ -1670,8 +1649,6 @@ HystrixCommand getModerators( /** * Adds a moderator to the broadcaster’s chat room. - *

- * This endpoint is in open beta. * * @param authToken Broadcaster's user access token that includes the channel:manage:moderators scope. * @param broadcasterId The ID of the broadcaster that owns the chat room. @@ -1679,7 +1656,6 @@ HystrixCommand getModerators( * @return 204 No Content upon a successful call * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_CHANNEL_MODS_MANAGE */ - @Unofficial // beta @RequestLine("POST /moderation/moderators?broadcaster_id={broadcaster_id}&user_id={user_id}") @Headers("Authorization: Bearer {token}") HystrixCommand addChannelModerator( @@ -1690,8 +1666,6 @@ HystrixCommand addChannelModerator( /** * Removes a moderator from the broadcaster’s chat room. - *

- * This endpoint is in open beta. * * @param authToken Broadcaster's user access token that includes the channel:manage:moderators scope. * @param broadcasterId The ID of the broadcaster that owns the chat room. @@ -1699,7 +1673,6 @@ HystrixCommand addChannelModerator( * @return 204 No Content upon a successful call * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_CHANNEL_MODS_MANAGE */ - @Unofficial // beta @RequestLine("DELETE /moderation/moderators?broadcaster_id={broadcaster_id}&user_id={user_id}") @Headers("Authorization: Bearer {token}") HystrixCommand removeChannelModerator( @@ -2681,8 +2654,6 @@ HystrixCommand requestWebhookSubscription( /** * Sends a whisper message to the specified user. *

- * This endpoint is in open beta. - *

* Note: The user sending the whisper must have a verified phone number. *

* Note: The API may silently drop whispers that it suspects of violating Twitch policies. @@ -2709,7 +2680,6 @@ HystrixCommand requestWebhookSubscription( * @return 204 No Content upon a successful call, even if the message was silently dropped * @see com.github.twitch4j.auth.domain.TwitchScopes#HELIX_USER_WHISPERS_MANAGE */ - @Unofficial // beta @RequestLine("POST /whispers?from_user_id={from_user_id}&to_user_id={to_user_id}") @Headers({ "Authorization: Bearer {token}",