@discordjs/core 3.0.0-dev.1777075897-40ce0791a → 3.0.0-dev.1779528402-e721e51b0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2715,16 +2715,18 @@ var ThreadsAPI = class {
2715
2715
  });
2716
2716
  }
2717
2717
  /**
2718
- * Fetches all members of a thread
2718
+ * Fetches members of a thread
2719
2719
  *
2720
2720
  * @see {@link https://discord.com/developers/docs/resources/channel#list-thread-members}
2721
2721
  * @param threadId - The id of the thread to fetch the members from
2722
+ * @param query - The query for fetching the members
2722
2723
  * @param options - The options for fetching the members
2723
2724
  */
2724
- async getAllMembers(threadId, { auth, signal } = {}) {
2725
+ async getMembers(threadId, query = {}, { auth, signal } = {}) {
2725
2726
  return this.rest.get(Routes15.threadMembers(threadId), {
2726
2727
  auth,
2727
- signal
2728
+ signal,
2729
+ query: makeURLSearchParams9(query)
2728
2730
  });
2729
2731
  }
2730
2732
  };
@@ -3186,7 +3188,7 @@ __name(withFiles, "withFiles");
3186
3188
 
3187
3189
  // src/http-only/index.ts
3188
3190
  export * from "discord-api-types/v10";
3189
- var version = "3.0.0-dev.1777075897-40ce0791a";
3191
+ var version = "3.0.0-dev.1779528402-e721e51b0";
3190
3192
  export {
3191
3193
  API,
3192
3194
  ApplicationCommandsAPI,