@connectedxm/client 1.4.5 → 1.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.js CHANGED
@@ -9499,7 +9499,8 @@ var CapturePaymentIntent = async ({
9499
9499
  exact: false
9500
9500
  });
9501
9501
  queryClient.invalidateQueries({
9502
- queryKey: SELF_EVENT_ATTENDEE_QUERY_KEY(intent.eventId)
9502
+ queryKey: ["SELF", "ATTENDEE"],
9503
+ exact: false
9503
9504
  });
9504
9505
  ADD_SELF_RELATIONSHIP(
9505
9506
  queryClient,
@@ -10082,7 +10083,7 @@ var TransferPass = async ({
10082
10083
  }) => {
10083
10084
  const clientApi = await GetClientAPI(clientApiParams);
10084
10085
  const { data } = await clientApi.post(
10085
- `/self/events/${eventId}/registration/passes/${passId}/transfer`,
10086
+ `/self/events/${eventId}/attendee/passes/${passId}/transfer`,
10086
10087
  {
10087
10088
  receiverId
10088
10089
  }
package/dist/index.mjs CHANGED
@@ -8508,7 +8508,8 @@ var CapturePaymentIntent = async ({
8508
8508
  exact: false
8509
8509
  });
8510
8510
  queryClient.invalidateQueries({
8511
- queryKey: SELF_EVENT_ATTENDEE_QUERY_KEY(intent.eventId)
8511
+ queryKey: ["SELF", "ATTENDEE"],
8512
+ exact: false
8512
8513
  });
8513
8514
  ADD_SELF_RELATIONSHIP(
8514
8515
  queryClient,
@@ -9091,7 +9092,7 @@ var TransferPass = async ({
9091
9092
  }) => {
9092
9093
  const clientApi = await GetClientAPI(clientApiParams);
9093
9094
  const { data } = await clientApi.post(
9094
- `/self/events/${eventId}/registration/passes/${passId}/transfer`,
9095
+ `/self/events/${eventId}/attendee/passes/${passId}/transfer`,
9095
9096
  {
9096
9097
  receiverId
9097
9098
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "1.4.5",
3
+ "version": "1.4.7",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {