@connectedxm/admin 2.3.14 → 2.3.15
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.
- package/dist/index.cjs +10 -0
- package/dist/index.js +10 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -26969,6 +26969,16 @@ var UpdateEventSessionAccessResponses = async ({
|
|
|
26969
26969
|
queryClient.invalidateQueries({
|
|
26970
26970
|
queryKey: EVENT_SESSION_ACCESS_QUERY_KEY(eventId, sessionId, passId)
|
|
26971
26971
|
});
|
|
26972
|
+
for (const response of responses) {
|
|
26973
|
+
queryClient.invalidateQueries({
|
|
26974
|
+
queryKey: EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_KEY(
|
|
26975
|
+
eventId,
|
|
26976
|
+
passId,
|
|
26977
|
+
sessionId,
|
|
26978
|
+
response.questionId
|
|
26979
|
+
)
|
|
26980
|
+
});
|
|
26981
|
+
}
|
|
26972
26982
|
}
|
|
26973
26983
|
return data;
|
|
26974
26984
|
};
|
package/dist/index.js
CHANGED
|
@@ -24108,6 +24108,16 @@ var UpdateEventSessionAccessResponses = async ({
|
|
|
24108
24108
|
queryClient.invalidateQueries({
|
|
24109
24109
|
queryKey: EVENT_SESSION_ACCESS_QUERY_KEY(eventId, sessionId, passId)
|
|
24110
24110
|
});
|
|
24111
|
+
for (const response of responses) {
|
|
24112
|
+
queryClient.invalidateQueries({
|
|
24113
|
+
queryKey: EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_KEY(
|
|
24114
|
+
eventId,
|
|
24115
|
+
passId,
|
|
24116
|
+
sessionId,
|
|
24117
|
+
response.questionId
|
|
24118
|
+
)
|
|
24119
|
+
});
|
|
24120
|
+
}
|
|
24111
24121
|
}
|
|
24112
24122
|
return data;
|
|
24113
24123
|
};
|