@connectedxm/admin 2.11.1 → 2.11.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.cjs CHANGED
@@ -22096,6 +22096,9 @@ var AddAccountTier = async ({
22096
22096
  queryClient.invalidateQueries({
22097
22097
  queryKey: ACCOUNT_TIERS_QUERY_KEY(accountId)
22098
22098
  });
22099
+ queryClient.invalidateQueries({
22100
+ queryKey: TIER_ACCOUNTS_QUERY_KEY(tierId)
22101
+ });
22099
22102
  }
22100
22103
  return data;
22101
22104
  };
@@ -22522,6 +22525,9 @@ var RemoveAccountTier = async ({
22522
22525
  queryClient.invalidateQueries({
22523
22526
  queryKey: ACCOUNT_TIERS_QUERY_KEY(accountId)
22524
22527
  });
22528
+ queryClient.invalidateQueries({
22529
+ queryKey: TIER_ACCOUNTS_QUERY_KEY(tierId)
22530
+ });
22525
22531
  }
22526
22532
  return data;
22527
22533
  };
package/dist/index.js CHANGED
@@ -19058,6 +19058,9 @@ var AddAccountTier = async ({
19058
19058
  queryClient.invalidateQueries({
19059
19059
  queryKey: ACCOUNT_TIERS_QUERY_KEY(accountId)
19060
19060
  });
19061
+ queryClient.invalidateQueries({
19062
+ queryKey: TIER_ACCOUNTS_QUERY_KEY(tierId)
19063
+ });
19061
19064
  }
19062
19065
  return data;
19063
19066
  };
@@ -19484,6 +19487,9 @@ var RemoveAccountTier = async ({
19484
19487
  queryClient.invalidateQueries({
19485
19488
  queryKey: ACCOUNT_TIERS_QUERY_KEY(accountId)
19486
19489
  });
19490
+ queryClient.invalidateQueries({
19491
+ queryKey: TIER_ACCOUNTS_QUERY_KEY(tierId)
19492
+ });
19487
19493
  }
19488
19494
  return data;
19489
19495
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.11.1",
3
+ "version": "2.11.2",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",