@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 +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9499,7 +9499,8 @@ var CapturePaymentIntent = async ({
|
|
|
9499
9499
|
exact: false
|
|
9500
9500
|
});
|
|
9501
9501
|
queryClient.invalidateQueries({
|
|
9502
|
-
queryKey:
|
|
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}/
|
|
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:
|
|
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}/
|
|
9095
|
+
`/self/events/${eventId}/attendee/passes/${passId}/transfer`,
|
|
9095
9096
|
{
|
|
9096
9097
|
receiverId
|
|
9097
9098
|
}
|