@connectedxm/admin 2.7.4 → 2.7.5

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
@@ -194,7 +194,6 @@ __export(index_exports, {
194
194
  CancelGroupInvitation: () => CancelGroupInvitation,
195
195
  CancelSubscription: () => CancelSubscription,
196
196
  ChannelFormat: () => ChannelFormat,
197
- CheckinAllAttendeePasses: () => CheckinAllAttendeePasses,
198
197
  CloneEvent: () => CloneEvent,
199
198
  ConfirmAccountLogin: () => ConfirmAccountLogin,
200
199
  ConnectedXMProvider: () => ConnectedXMProvider,
@@ -2030,7 +2029,6 @@ __export(index_exports, {
2030
2029
  useCancelEventPass: () => useCancelEventPass,
2031
2030
  useCancelGroupInvitation: () => useCancelGroupInvitation,
2032
2031
  useCancelSubscription: () => useCancelSubscription,
2033
- useCheckinAllAttendeePasses: () => useCheckinAllAttendeePasses,
2034
2032
  useCloneEvent: () => useCloneEvent,
2035
2033
  useConfirmAccountLogin: () => useConfirmAccountLogin,
2036
2034
  useConnectedInfiniteQuery: () => useConnectedInfiniteQuery,
@@ -25039,34 +25037,6 @@ var useUpdateEventReservation = (options = {}) => {
25039
25037
  });
25040
25038
  };
25041
25039
 
25042
- // src/mutations/event/attendees/useCheckinAllAttendeePasses.ts
25043
- var CheckinAllAttendeePasses = async ({
25044
- eventId,
25045
- accountId,
25046
- adminApiParams,
25047
- queryClient
25048
- }) => {
25049
- const connectedXM = await GetAdminAPI(adminApiParams);
25050
- const { data } = await connectedXM.put(
25051
- `/events/${eventId}/attendees/${accountId}/passes/checkin/all`
25052
- );
25053
- if (queryClient && data.status === "ok") {
25054
- queryClient.invalidateQueries({
25055
- queryKey: EVENT_ATTENDEE_PASSES_QUERY_KEY(eventId, accountId)
25056
- });
25057
- queryClient.invalidateQueries({
25058
- queryKey: EVENT_PASSES_QUERY_KEY(eventId)
25059
- });
25060
- }
25061
- return data;
25062
- };
25063
- var useCheckinAllAttendeePasses = (options = {}) => {
25064
- return useConnectedMutation(CheckinAllAttendeePasses, options, {
25065
- domain: "events",
25066
- type: "update"
25067
- });
25068
- };
25069
-
25070
25040
  // src/mutations/event/attendees/useCreateEventAttendee.ts
25071
25041
  var CreateEventAttendee = async ({
25072
25042
  eventId,
@@ -38463,7 +38433,6 @@ var useUpdateVideo = (options = {}) => {
38463
38433
  CancelGroupInvitation,
38464
38434
  CancelSubscription,
38465
38435
  ChannelFormat,
38466
- CheckinAllAttendeePasses,
38467
38436
  CloneEvent,
38468
38437
  ConfirmAccountLogin,
38469
38438
  ConnectedXMProvider,
@@ -40299,7 +40268,6 @@ var useUpdateVideo = (options = {}) => {
40299
40268
  useCancelEventPass,
40300
40269
  useCancelGroupInvitation,
40301
40270
  useCancelSubscription,
40302
- useCheckinAllAttendeePasses,
40303
40271
  useCloneEvent,
40304
40272
  useConfirmAccountLogin,
40305
40273
  useConnectedInfiniteQuery,