@connectedxm/admin 1.4.28 → 1.5.0
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 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -16605,10 +16605,10 @@ var DeleteAccountPushDevice = async ({
|
|
|
16605
16605
|
);
|
|
16606
16606
|
if (queryClient && data.status === "ok") {
|
|
16607
16607
|
queryClient.invalidateQueries({
|
|
16608
|
-
queryKey:
|
|
16608
|
+
queryKey: ACCOUNT_PUSH_DEVICES_QUERY_KEY(accountId)
|
|
16609
16609
|
});
|
|
16610
16610
|
queryClient.invalidateQueries({
|
|
16611
|
-
queryKey:
|
|
16611
|
+
queryKey: ACCOUNT_PUSH_DEVICE_QUERY_KEY(accountId, pushDeviceId)
|
|
16612
16612
|
});
|
|
16613
16613
|
}
|
|
16614
16614
|
return data;
|
package/dist/index.mjs
CHANGED
|
@@ -14327,10 +14327,10 @@ var DeleteAccountPushDevice = async ({
|
|
|
14327
14327
|
);
|
|
14328
14328
|
if (queryClient && data.status === "ok") {
|
|
14329
14329
|
queryClient.invalidateQueries({
|
|
14330
|
-
queryKey:
|
|
14330
|
+
queryKey: ACCOUNT_PUSH_DEVICES_QUERY_KEY(accountId)
|
|
14331
14331
|
});
|
|
14332
14332
|
queryClient.invalidateQueries({
|
|
14333
|
-
queryKey:
|
|
14333
|
+
queryKey: ACCOUNT_PUSH_DEVICE_QUERY_KEY(accountId, pushDeviceId)
|
|
14334
14334
|
});
|
|
14335
14335
|
}
|
|
14336
14336
|
return data;
|