@connectedxm/client 7.4.5 → 7.4.7

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.ts CHANGED
@@ -925,6 +925,7 @@ interface Session extends BaseSession {
925
925
  meeting: BaseMeeting | null;
926
926
  streams: BaseStreamInput[];
927
927
  surveys: BaseSurvey[];
928
+ activation: BaseEventActivation | null;
928
929
  _count: {
929
930
  sections: number;
930
931
  };
@@ -1610,6 +1611,7 @@ interface EventActivation extends BaseEventActivation {
1610
1611
  longDescription: string | null;
1611
1612
  completions?: BaseEventActivationCompletion[];
1612
1613
  survey: BaseSurvey | null;
1614
+ session: BaseSession | null;
1613
1615
  createdAt: string;
1614
1616
  updatedAt: string;
1615
1617
  }
package/dist/index.js CHANGED
@@ -10628,6 +10628,12 @@ var UpdateSelfEventAttendeeAccessResponses = async ({
10628
10628
  sessionId
10629
10629
  )
10630
10630
  });
10631
+ queryClient.invalidateQueries({
10632
+ queryKey: SELF_EVENT_ATTENDEE_QUERY_KEY(eventId)
10633
+ });
10634
+ queryClient.invalidateQueries({
10635
+ queryKey: SELF_EVENT_ATTENDEE_PASS_QUERY_KEY(eventId, passId)
10636
+ });
10631
10637
  }
10632
10638
  return data;
10633
10639
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "7.4.5",
3
+ "version": "7.4.7",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",