@connectedxm/admin 1.0.1 → 1.0.2
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.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18047,6 +18047,9 @@ var UpdateEventPass = async ({
|
|
|
18047
18047
|
});
|
|
18048
18048
|
}
|
|
18049
18049
|
if (data.data.registrationId) {
|
|
18050
|
+
queryClient.invalidateQueries({
|
|
18051
|
+
queryKey: EVENT_ATTENDEE_QUERY_KEY(eventId, data.data.registrationId)
|
|
18052
|
+
});
|
|
18050
18053
|
queryClient.invalidateQueries({
|
|
18051
18054
|
queryKey: EVENT_ATTENDEE_PASSES_QUERY_KEY(
|
|
18052
18055
|
eventId,
|
package/dist/index.mjs
CHANGED
|
@@ -16105,6 +16105,9 @@ var UpdateEventPass = async ({
|
|
|
16105
16105
|
});
|
|
16106
16106
|
}
|
|
16107
16107
|
if (data.data.registrationId) {
|
|
16108
|
+
queryClient.invalidateQueries({
|
|
16109
|
+
queryKey: EVENT_ATTENDEE_QUERY_KEY(eventId, data.data.registrationId)
|
|
16110
|
+
});
|
|
16108
16111
|
queryClient.invalidateQueries({
|
|
16109
16112
|
queryKey: EVENT_ATTENDEE_PASSES_QUERY_KEY(
|
|
16110
16113
|
eventId,
|