@connectedxm/admin 2.11.1 → 2.11.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.js CHANGED
@@ -12593,6 +12593,12 @@ var PassTypeAccessLevel = /* @__PURE__ */ ((PassTypeAccessLevel2) => {
12593
12593
  PassTypeAccessLevel2["vip"] = "vip";
12594
12594
  return PassTypeAccessLevel2;
12595
12595
  })(PassTypeAccessLevel || {});
12596
+ var EventAgendaVisibility = /* @__PURE__ */ ((EventAgendaVisibility2) => {
12597
+ EventAgendaVisibility2["everyone"] = "everyone";
12598
+ EventAgendaVisibility2["registered"] = "registered";
12599
+ EventAgendaVisibility2["hidden"] = "hidden";
12600
+ return EventAgendaVisibility2;
12601
+ })(EventAgendaVisibility || {});
12596
12602
  var GroupAccess = /* @__PURE__ */ ((GroupAccess2) => {
12597
12603
  GroupAccess2["public"] = "public";
12598
12604
  GroupAccess2["private"] = "private";
@@ -19058,6 +19064,9 @@ var AddAccountTier = async ({
19058
19064
  queryClient.invalidateQueries({
19059
19065
  queryKey: ACCOUNT_TIERS_QUERY_KEY(accountId)
19060
19066
  });
19067
+ queryClient.invalidateQueries({
19068
+ queryKey: TIER_ACCOUNTS_QUERY_KEY(tierId)
19069
+ });
19061
19070
  }
19062
19071
  return data;
19063
19072
  };
@@ -19484,6 +19493,9 @@ var RemoveAccountTier = async ({
19484
19493
  queryClient.invalidateQueries({
19485
19494
  queryKey: ACCOUNT_TIERS_QUERY_KEY(accountId)
19486
19495
  });
19496
+ queryClient.invalidateQueries({
19497
+ queryKey: TIER_ACCOUNTS_QUERY_KEY(tierId)
19498
+ });
19487
19499
  }
19488
19500
  return data;
19489
19501
  };
@@ -36771,6 +36783,7 @@ export {
36771
36783
  EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_KEY,
36772
36784
  EmailReceiptStatus,
36773
36785
  EventActivationType,
36786
+ EventAgendaVisibility,
36774
36787
  EventEmailType,
36775
36788
  EventGetPassTypeCoupons,
36776
36789
  EventReportDateType,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "2.11.1",
3
+ "version": "2.11.3",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",