@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.cjs CHANGED
@@ -678,6 +678,7 @@ __export(index_exports, {
678
678
  EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_KEY: () => EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_KEY,
679
679
  EmailReceiptStatus: () => EmailReceiptStatus,
680
680
  EventActivationType: () => EventActivationType,
681
+ EventAgendaVisibility: () => EventAgendaVisibility,
681
682
  EventEmailType: () => EventEmailType,
682
683
  EventGetPassTypeCoupons: () => EventGetPassTypeCoupons,
683
684
  EventReportDateType: () => EventReportDateType,
@@ -15636,6 +15637,12 @@ var PassTypeAccessLevel = /* @__PURE__ */ ((PassTypeAccessLevel2) => {
15636
15637
  PassTypeAccessLevel2["vip"] = "vip";
15637
15638
  return PassTypeAccessLevel2;
15638
15639
  })(PassTypeAccessLevel || {});
15640
+ var EventAgendaVisibility = /* @__PURE__ */ ((EventAgendaVisibility2) => {
15641
+ EventAgendaVisibility2["everyone"] = "everyone";
15642
+ EventAgendaVisibility2["registered"] = "registered";
15643
+ EventAgendaVisibility2["hidden"] = "hidden";
15644
+ return EventAgendaVisibility2;
15645
+ })(EventAgendaVisibility || {});
15639
15646
  var GroupAccess = /* @__PURE__ */ ((GroupAccess2) => {
15640
15647
  GroupAccess2["public"] = "public";
15641
15648
  GroupAccess2["private"] = "private";
@@ -22096,6 +22103,9 @@ var AddAccountTier = async ({
22096
22103
  queryClient.invalidateQueries({
22097
22104
  queryKey: ACCOUNT_TIERS_QUERY_KEY(accountId)
22098
22105
  });
22106
+ queryClient.invalidateQueries({
22107
+ queryKey: TIER_ACCOUNTS_QUERY_KEY(tierId)
22108
+ });
22099
22109
  }
22100
22110
  return data;
22101
22111
  };
@@ -22522,6 +22532,9 @@ var RemoveAccountTier = async ({
22522
22532
  queryClient.invalidateQueries({
22523
22533
  queryKey: ACCOUNT_TIERS_QUERY_KEY(accountId)
22524
22534
  });
22535
+ queryClient.invalidateQueries({
22536
+ queryKey: TIER_ACCOUNTS_QUERY_KEY(tierId)
22537
+ });
22525
22538
  }
22526
22539
  return data;
22527
22540
  };
@@ -39810,6 +39823,7 @@ var useUploadVideoCaptions = (options = {}) => {
39810
39823
  EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_KEY,
39811
39824
  EmailReceiptStatus,
39812
39825
  EventActivationType,
39826
+ EventAgendaVisibility,
39813
39827
  EventEmailType,
39814
39828
  EventGetPassTypeCoupons,
39815
39829
  EventReportDateType,