@@ -347,8 +347,9 @@ default WebhookMessageCreateAction<T> sendMessageEmbeds(@Nonnull MessageEmbed em
347347 *
348348 * @param components
349349 * The {@link MessageTopLevelComponent MessageTopLevelComponents} to send,
350- * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total,
351- * or {@value Message#MAX_COMPONENT_COUNT_COMPONENTS_V2} in total for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
350+ * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total.
351+ * There are no limits for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
352+ * outside the {@linkplain Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE total tree size} ({@value Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE}).
352353 *
353354 * @throws IllegalArgumentException
354355 * <ul>
@@ -386,8 +387,9 @@ default WebhookMessageCreateAction<T> sendMessageEmbeds(@Nonnull MessageEmbed em
386387 * The {@link MessageTopLevelComponent} to send
387388 * @param other
388389 * Additional {@link MessageTopLevelComponent MessageTopLevelComponents} to send,
389- * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total,
390- * or {@value Message#MAX_COMPONENT_COUNT_COMPONENTS_V2} in total for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
390+ * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total.
391+ * There are no limits for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
392+ * outside the {@linkplain Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE total tree size} ({@value Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE}).
391393 *
392394 * @throws IllegalArgumentException
393395 * <ul>
@@ -428,8 +430,9 @@ default WebhookMessageCreateAction<T> sendMessageComponents(@Nonnull MessageTopL
428430 *
429431 * @param tree
430432 * The {@link ComponentTree} to send,
431- * containing up to {@value Message#MAX_COMPONENT_COUNT} V1 components,
432- * or {@value Message#MAX_COMPONENT_COUNT_COMPONENTS_V2} for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
433+ * containing up to {@value Message#MAX_COMPONENT_COUNT} V1 components.
434+ * There are no limits for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
435+ * outside the {@linkplain Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE total tree size} ({@value Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE}).
433436 *
434437 * @throws IllegalArgumentException
435438 * <ul>
@@ -890,8 +893,9 @@ default WebhookMessageEditAction<T> editMessageEmbedsById(long messageId, @Nonnu
890893 * The message id. For interactions this supports {@code "@original"} to edit the source message of the interaction.
891894 * @param components
892895 * The {@link MessageTopLevelComponent MessageTopLevelComponents} to set, can be empty to remove components,
893- * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total,
894- * or {@value Message#MAX_COMPONENT_COUNT_COMPONENTS_V2} in total for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
896+ * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total.
897+ * There are no limits for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
898+ * outside the {@linkplain Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE total tree size} ({@value Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE}).
895899 *
896900 * @throws IllegalArgumentException
897901 * <ul>
@@ -922,8 +926,9 @@ default WebhookMessageEditAction<T> editMessageEmbedsById(long messageId, @Nonnu
922926 * The message id. For interactions this supports {@code "@original"} to edit the source message of the interaction.
923927 * @param components
924928 * The {@link MessageTopLevelComponent MessageTopLevelComponents} to set, can be empty to remove components,
925- * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total,
926- * or {@value Message#MAX_COMPONENT_COUNT_COMPONENTS_V2} in total for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
929+ * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total.
930+ * There are no limits for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
931+ * outside the {@linkplain Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE total tree size} ({@value Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE}).
927932 *
928933 * @throws IllegalArgumentException
929934 * <ul>
@@ -957,8 +962,9 @@ default WebhookMessageEditAction<T> editMessageComponentsById(long messageId, @N
957962 * The message id. For interactions this supports {@code "@original"} to edit the source message of the interaction.
958963 * @param components
959964 * The {@link MessageTopLevelComponent MessageTopLevelComponents} to set, can be empty to remove components,
960- * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total,
961- * or {@value Message#MAX_COMPONENT_COUNT_COMPONENTS_V2} in total for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
965+ * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total.
966+ * There are no limits for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
967+ * outside the {@linkplain Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE total tree size} ({@value Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE}).
962968 *
963969 * @throws IllegalArgumentException
964970 * <ul>
@@ -993,8 +999,9 @@ default WebhookMessageEditAction<T> editMessageComponentsById(@Nonnull String me
993999 * The message id. For interactions this supports {@code "@original"} to edit the source message of the interaction.
9941000 * @param components
9951001 * The {@link MessageTopLevelComponent MessageTopLevelComponents} to set, can be empty to remove components,
996- * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total,
997- * or {@value Message#MAX_COMPONENT_COUNT_COMPONENTS_V2} in total for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
1002+ * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total.
1003+ * There are no limits for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
1004+ * outside the {@linkplain Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE total tree size} ({@value Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE}).
9981005 *
9991006 * @throws IllegalArgumentException
10001007 * <ul>
@@ -1028,8 +1035,9 @@ default WebhookMessageEditAction<T> editMessageComponentsById(long messageId, @N
10281035 * The message id. For interactions this supports {@code "@original"} to edit the source message of the interaction.
10291036 * @param tree
10301037 * The {@link ComponentTree} to set, can be empty to remove components,
1031- * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total,
1032- * or {@value Message#MAX_COMPONENT_COUNT_COMPONENTS_V2} in total for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
1038+ * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total.
1039+ * There are no limits for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
1040+ * outside the {@linkplain Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE total tree size} ({@value Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE}).
10331041 *
10341042 * @throws IllegalArgumentException
10351043 * <ul>
@@ -1064,8 +1072,9 @@ default WebhookMessageEditAction<T> editMessageComponentsById(@Nonnull String me
10641072 * The message id. For interactions this supports {@code "@original"} to edit the source message of the interaction.
10651073 * @param tree
10661074 * The {@link ComponentTree} to set, can be empty to remove components,
1067- * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total,
1068- * or {@value Message#MAX_COMPONENT_COUNT_COMPONENTS_V2} in total for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
1075+ * can contain up to {@value Message#MAX_COMPONENT_COUNT} V1 components in total.
1076+ * There are no limits for {@linkplain MessageRequest#isUsingComponentsV2() V2 components}
1077+ * outside the {@linkplain Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE total tree size} ({@value Message#MAX_COMPONENT_COUNT_IN_COMPONENT_TREE}).
10691078 *
10701079 * @throws IllegalArgumentException
10711080 * <ul>
0 commit comments