From 493337bf8228850be063f65a243e4cba1e42cee5 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 28 Nov 2025 21:59:47 -0700 Subject: [PATCH] Remove addResponse and userActivity from the public API --- module/utils/QueryManager.mjs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/module/utils/QueryManager.mjs b/module/utils/QueryManager.mjs index abf1096..dddea73 100644 --- a/module/utils/QueryManager.mjs +++ b/module/utils/QueryManager.mjs @@ -24,9 +24,9 @@ import { QueryStatus } from "../apps/QueryStatus.mjs"; */ /** - * This internal API is used in order to prevent the query.notify event - * from being fired off in situations where the user hasn't responded, - * wasn't part of the query, or has already been notified. + * This internal data store is used in order to prevent the query.notify + * event from being fired off in situations where the user hasn't + * responded, wasn't part of the query, or has already been notified. * @type {Set} */ export const respondedToQueries = new Set(); @@ -281,9 +281,7 @@ export async function userActivity(userID, connected) { export const QueryManager = { has, get, query, requery, - addResponse, notify, finish, cancel, setApplication, - userActivity, };