@connectedxm/admin 1.0.1 → 1.0.3
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2320,7 +2320,7 @@ declare const useConnectedXM: () => ConnectedXMClientContextState;
|
|
|
2320
2320
|
interface AccountCreateInputs {
|
|
2321
2321
|
accountType: keyof typeof AccountType;
|
|
2322
2322
|
email: string;
|
|
2323
|
-
username
|
|
2323
|
+
username?: string | null;
|
|
2324
2324
|
featured?: boolean | null;
|
|
2325
2325
|
firstName?: string | null;
|
|
2326
2326
|
lastName?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2320,7 +2320,7 @@ declare const useConnectedXM: () => ConnectedXMClientContextState;
|
|
|
2320
2320
|
interface AccountCreateInputs {
|
|
2321
2321
|
accountType: keyof typeof AccountType;
|
|
2322
2322
|
email: string;
|
|
2323
|
-
username
|
|
2323
|
+
username?: string | null;
|
|
2324
2324
|
featured?: boolean | null;
|
|
2325
2325
|
firstName?: string | null;
|
|
2326
2326
|
lastName?: string | null;
|
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,
|