@connectedxm/admin 1.4.6 → 1.4.8

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.mjs CHANGED
@@ -3691,6 +3691,177 @@ var useGetEventAttendee = (eventId, accountId = "", options = {}) => {
3691
3691
  );
3692
3692
  };
3693
3693
 
3694
+ // src/queries/events/attendees/reservations/useGetEventAttendeeReservations.ts
3695
+ var EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY = (eventId, accountId) => [...EVENT_ATTENDEE_QUERY_KEY(eventId, accountId), "RESERVATIONS"];
3696
+ var SET_EVENT_ATTENDEE_RESERVATIONS_QUERY_DATA = (client, keyParams, response) => {
3697
+ client.setQueryData(
3698
+ EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY(...keyParams),
3699
+ response
3700
+ );
3701
+ };
3702
+ var GetEventAttendeeReservations = async ({
3703
+ eventId,
3704
+ accountId,
3705
+ pageParam,
3706
+ pageSize,
3707
+ orderBy,
3708
+ search,
3709
+ adminApiParams
3710
+ }) => {
3711
+ const adminApi = await GetAdminAPI(adminApiParams);
3712
+ const { data } = await adminApi.get(
3713
+ `/events/${eventId}/attendees/${accountId}/reservations`,
3714
+ {
3715
+ params: {
3716
+ page: pageParam || void 0,
3717
+ pageSize: pageSize || void 0,
3718
+ orderBy: orderBy || void 0,
3719
+ search: search || void 0
3720
+ }
3721
+ }
3722
+ );
3723
+ return data;
3724
+ };
3725
+ var useGetEventAttendeeReservations = (eventId, accountId, params = {}, options = {}) => {
3726
+ return useConnectedInfiniteQuery(
3727
+ EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY(eventId, accountId),
3728
+ (params2) => GetEventAttendeeReservations({
3729
+ ...params2,
3730
+ eventId,
3731
+ accountId
3732
+ }),
3733
+ params,
3734
+ {
3735
+ ...options,
3736
+ enabled: !!eventId && !!accountId && (options.enabled ?? true)
3737
+ },
3738
+ "events"
3739
+ );
3740
+ };
3741
+
3742
+ // src/queries/events/attendees/reservations/useGetEventReservations.ts
3743
+ var EVENT_RESERVATIONS_QUERY_KEY = (eventId) => [
3744
+ ...EVENT_QUERY_KEY(eventId),
3745
+ "RESERVATIONS"
3746
+ ];
3747
+ var SET_EVENT_RESERVATIONS_QUERY_DATA = (client, keyParams, response) => {
3748
+ client.setQueryData(EVENT_RESERVATIONS_QUERY_KEY(...keyParams), response);
3749
+ };
3750
+ var GetEventReservations = async ({
3751
+ eventId,
3752
+ pageParam,
3753
+ pageSize,
3754
+ orderBy,
3755
+ search,
3756
+ adminApiParams
3757
+ }) => {
3758
+ const adminApi = await GetAdminAPI(adminApiParams);
3759
+ const { data } = await adminApi.get(`/events/${eventId}/reservations`, {
3760
+ params: {
3761
+ page: pageParam || void 0,
3762
+ pageSize: pageSize || void 0,
3763
+ orderBy: orderBy || void 0,
3764
+ search: search || void 0
3765
+ }
3766
+ });
3767
+ return data;
3768
+ };
3769
+ var useGetEventReservations = (eventId, params = {}, options = {}) => {
3770
+ return useConnectedInfiniteQuery(
3771
+ EVENT_RESERVATIONS_QUERY_KEY(eventId),
3772
+ (params2) => GetEventReservations({
3773
+ ...params2,
3774
+ eventId
3775
+ }),
3776
+ params,
3777
+ {
3778
+ ...options,
3779
+ enabled: !!eventId && (options.enabled ?? true)
3780
+ },
3781
+ "events"
3782
+ );
3783
+ };
3784
+
3785
+ // src/queries/events/attendees/reservations/useGetEventReservation.ts
3786
+ var EVENT_RESERVATION_QUERY_KEY = (eventId, reservationId) => [...EVENT_RESERVATIONS_QUERY_KEY(eventId), reservationId];
3787
+ var SET_EVENT_RESERVATION_QUERY_DATA = (client, keyParams, response) => {
3788
+ client.setQueryData(EVENT_RESERVATION_QUERY_KEY(...keyParams), response);
3789
+ };
3790
+ var GetEventReservation = async ({
3791
+ eventId,
3792
+ reservationId,
3793
+ adminApiParams
3794
+ }) => {
3795
+ const adminApi = await GetAdminAPI(adminApiParams);
3796
+ const { data } = await adminApi.get(
3797
+ `/events/${eventId}/reservations/${reservationId}`
3798
+ );
3799
+ return data;
3800
+ };
3801
+ var useGetEventReservation = (eventId, reservationId = "", options = {}) => {
3802
+ return useConnectedSingleQuery(
3803
+ EVENT_RESERVATION_QUERY_KEY(eventId, reservationId),
3804
+ (params) => GetEventReservation({
3805
+ eventId,
3806
+ reservationId,
3807
+ ...params
3808
+ }),
3809
+ {
3810
+ ...options,
3811
+ enabled: !!eventId && !!reservationId && (options?.enabled ?? true)
3812
+ },
3813
+ "events"
3814
+ );
3815
+ };
3816
+
3817
+ // src/queries/events/attendees/reservations/useGetEventReservationPasses.ts
3818
+ var EVENT_RESERVATION_PASSES_QUERY_KEY = (eventId, reservationId) => [...EVENT_RESERVATION_QUERY_KEY(eventId, reservationId), "PASSES"];
3819
+ var SET_EVENT_RESERVATION_PASSES_QUERY_DATA = (client, keyParams, response) => {
3820
+ client.setQueryData(
3821
+ EVENT_RESERVATION_PASSES_QUERY_KEY(...keyParams),
3822
+ response
3823
+ );
3824
+ };
3825
+ var GetEventReservationPasses = async ({
3826
+ eventId,
3827
+ reservationId,
3828
+ pageParam,
3829
+ pageSize,
3830
+ orderBy,
3831
+ search,
3832
+ adminApiParams
3833
+ }) => {
3834
+ const adminApi = await GetAdminAPI(adminApiParams);
3835
+ const { data } = await adminApi.get(
3836
+ `/events/${eventId}/reservations/${reservationId}/passes`,
3837
+ {
3838
+ params: {
3839
+ page: pageParam || void 0,
3840
+ pageSize: pageSize || void 0,
3841
+ orderBy: orderBy || void 0,
3842
+ search: search || void 0
3843
+ }
3844
+ }
3845
+ );
3846
+ return data;
3847
+ };
3848
+ var useGetEventReservationPasses = (eventId = "", reservationId = "", params = {}, options = {}) => {
3849
+ return useConnectedInfiniteQuery(
3850
+ EVENT_RESERVATION_PASSES_QUERY_KEY(eventId, reservationId),
3851
+ (params2) => GetEventReservationPasses({
3852
+ ...params2,
3853
+ eventId,
3854
+ reservationId
3855
+ }),
3856
+ params,
3857
+ {
3858
+ ...options,
3859
+ enabled: !!eventId && !!reservationId && (options.enabled ?? true)
3860
+ },
3861
+ "events"
3862
+ );
3863
+ };
3864
+
3694
3865
  // src/queries/events/attendees/useGetEventAttendeeCoupons.ts
3695
3866
  var EVENT_ATTENDEE_COUPONS_QUERY_KEY = (eventId, accountId, prePaid) => {
3696
3867
  const key = [...EVENT_ATTENDEE_QUERY_KEY(eventId, accountId), "COUPONS"];
@@ -11178,12 +11349,38 @@ var GetReport = async ({
11178
11349
  adminApiParams
11179
11350
  }) => {
11180
11351
  const adminApi = await GetAdminAPI(adminApiParams);
11181
- const { data } = await adminApi.get(`/reports/${reportId}`, {
11182
- params: {
11183
- eventId
11352
+ let nextCursor = null;
11353
+ const rowData = [];
11354
+ const { data } = await adminApi.get(
11355
+ `/reports/${reportId}`,
11356
+ {
11357
+ params: {
11358
+ eventId
11359
+ }
11184
11360
  }
11185
- });
11186
- return data;
11361
+ );
11362
+ rowData.push(...data.data.rowData);
11363
+ nextCursor = data.data.nextCursor;
11364
+ while (nextCursor) {
11365
+ const { data: nextData } = await adminApi.get(
11366
+ `/reports/${reportId}`,
11367
+ {
11368
+ params: {
11369
+ eventId,
11370
+ cursor: nextCursor
11371
+ }
11372
+ }
11373
+ );
11374
+ rowData.push(...nextData.data.rowData);
11375
+ nextCursor = nextData.data.nextCursor;
11376
+ }
11377
+ return {
11378
+ ...data,
11379
+ data: {
11380
+ ...data.data,
11381
+ rowData
11382
+ }
11383
+ };
11187
11384
  };
11188
11385
  var useGetReport = (reportId = "", eventId, options = {}) => {
11189
11386
  return useConnectedSingleQuery(
@@ -11195,6 +11392,7 @@ var useGetReport = (reportId = "", eventId, options = {}) => {
11195
11392
  refetchOnWindowFocus: false,
11196
11393
  refetchOnMount: false,
11197
11394
  refetchOnReconnect: false,
11395
+ retry: false,
11198
11396
  staleTime: Infinity
11199
11397
  },
11200
11398
  "reports"
@@ -15538,6 +15736,181 @@ var useUpdateEventAddOn = (options = {}) => {
15538
15736
  });
15539
15737
  };
15540
15738
 
15739
+ // src/mutations/event/attendees/reservations/useAddEventReservationPass.ts
15740
+ var AddEventReservationPass = async ({
15741
+ eventId,
15742
+ reservationId,
15743
+ passId,
15744
+ accountId,
15745
+ adminApiParams,
15746
+ queryClient
15747
+ }) => {
15748
+ const connectedXM = await GetAdminAPI(adminApiParams);
15749
+ const { data } = await connectedXM.post(`/events/${eventId}/reservations/${reservationId}/passes/${passId}`);
15750
+ if (queryClient && data.status === "ok") {
15751
+ queryClient.invalidateQueries({
15752
+ queryKey: EVENT_RESERVATION_PASSES_QUERY_KEY(eventId, reservationId)
15753
+ });
15754
+ queryClient.invalidateQueries({
15755
+ queryKey: EVENT_RESERVATIONS_QUERY_KEY(eventId)
15756
+ });
15757
+ if (accountId) {
15758
+ queryClient.invalidateQueries({
15759
+ queryKey: EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY(eventId, accountId)
15760
+ });
15761
+ }
15762
+ }
15763
+ return data;
15764
+ };
15765
+ var useAddEventReservationPass = (options = {}) => {
15766
+ return useConnectedMutation(AddEventReservationPass, options, {
15767
+ domain: "events",
15768
+ type: "update"
15769
+ });
15770
+ };
15771
+
15772
+ // src/mutations/event/attendees/reservations/useCreateEventReservation.ts
15773
+ var CreateEventReservation = async ({
15774
+ eventId,
15775
+ reservation,
15776
+ accountId,
15777
+ adminApiParams,
15778
+ queryClient
15779
+ }) => {
15780
+ const connectedXM = await GetAdminAPI(adminApiParams);
15781
+ const { data } = await connectedXM.post(
15782
+ `/events/${eventId}/reservations`,
15783
+ reservation
15784
+ );
15785
+ if (queryClient && data.status === "ok") {
15786
+ SET_EVENT_RESERVATION_QUERY_DATA(
15787
+ queryClient,
15788
+ [eventId, data.data.id],
15789
+ data
15790
+ );
15791
+ queryClient.invalidateQueries({
15792
+ queryKey: EVENT_RESERVATIONS_QUERY_KEY(eventId)
15793
+ });
15794
+ if (accountId) {
15795
+ queryClient.invalidateQueries({
15796
+ queryKey: EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY(eventId, accountId)
15797
+ });
15798
+ }
15799
+ }
15800
+ return data;
15801
+ };
15802
+ var useCreateEventReservation = (options = {}) => {
15803
+ return useConnectedMutation(CreateEventReservation, options, {
15804
+ domain: "events",
15805
+ type: "update"
15806
+ });
15807
+ };
15808
+
15809
+ // src/mutations/event/attendees/reservations/useDeleteEventReservation.ts
15810
+ var DeleteEventReservation = async ({
15811
+ eventId,
15812
+ reservationId,
15813
+ accountId,
15814
+ adminApiParams,
15815
+ queryClient
15816
+ }) => {
15817
+ const connectedXM = await GetAdminAPI(adminApiParams);
15818
+ const { data } = await connectedXM.delete(
15819
+ `/events/${eventId}/reservations/${reservationId}`
15820
+ );
15821
+ if (queryClient && data.status === "ok") {
15822
+ queryClient.removeQueries({
15823
+ queryKey: EVENT_RESERVATION_QUERY_KEY(eventId, reservationId)
15824
+ });
15825
+ queryClient.invalidateQueries({
15826
+ queryKey: EVENT_RESERVATIONS_QUERY_KEY(eventId)
15827
+ });
15828
+ if (accountId) {
15829
+ queryClient.invalidateQueries({
15830
+ queryKey: EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY(eventId, accountId)
15831
+ });
15832
+ }
15833
+ }
15834
+ return data;
15835
+ };
15836
+ var useDeleteEventReservation = (options = {}) => {
15837
+ return useConnectedMutation(DeleteEventReservation, options, {
15838
+ domain: "events",
15839
+ type: "update"
15840
+ });
15841
+ };
15842
+
15843
+ // src/mutations/event/attendees/reservations/useRemoveEventReservationPass.ts
15844
+ var RemoveEventReservationPass = async ({
15845
+ eventId,
15846
+ reservationId,
15847
+ passId,
15848
+ accountId,
15849
+ adminApiParams,
15850
+ queryClient
15851
+ }) => {
15852
+ const connectedXM = await GetAdminAPI(adminApiParams);
15853
+ const { data } = await connectedXM.delete(`/events/${eventId}/reservations/${reservationId}/passes/${passId}`);
15854
+ if (queryClient && data.status === "ok") {
15855
+ queryClient.invalidateQueries({
15856
+ queryKey: EVENT_RESERVATION_PASSES_QUERY_KEY(eventId, reservationId)
15857
+ });
15858
+ queryClient.invalidateQueries({
15859
+ queryKey: EVENT_RESERVATIONS_QUERY_KEY(eventId)
15860
+ });
15861
+ if (accountId) {
15862
+ queryClient.invalidateQueries({
15863
+ queryKey: EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY(eventId, accountId)
15864
+ });
15865
+ }
15866
+ }
15867
+ return data;
15868
+ };
15869
+ var useRemoveEventReservationPass = (options = {}) => {
15870
+ return useConnectedMutation(RemoveEventReservationPass, options, {
15871
+ domain: "events",
15872
+ type: "update"
15873
+ });
15874
+ };
15875
+
15876
+ // src/mutations/event/attendees/reservations/useUpdateEventReservation.ts
15877
+ var UpdateEventReservation = async ({
15878
+ eventId,
15879
+ reservationId,
15880
+ reservation,
15881
+ accountId,
15882
+ adminApiParams,
15883
+ queryClient
15884
+ }) => {
15885
+ const connectedXM = await GetAdminAPI(adminApiParams);
15886
+ const { data } = await connectedXM.put(
15887
+ `/events/${eventId}/reservations/${reservationId}`,
15888
+ reservation
15889
+ );
15890
+ if (queryClient && data.status === "ok") {
15891
+ SET_EVENT_RESERVATION_QUERY_DATA(
15892
+ queryClient,
15893
+ [eventId, reservationId],
15894
+ data
15895
+ );
15896
+ queryClient.invalidateQueries({
15897
+ queryKey: EVENT_RESERVATIONS_QUERY_KEY(eventId)
15898
+ });
15899
+ if (accountId) {
15900
+ queryClient.invalidateQueries({
15901
+ queryKey: EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY(eventId, accountId)
15902
+ });
15903
+ }
15904
+ }
15905
+ return data;
15906
+ };
15907
+ var useUpdateEventReservation = (options = {}) => {
15908
+ return useConnectedMutation(UpdateEventReservation, options, {
15909
+ domain: "events",
15910
+ type: "update"
15911
+ });
15912
+ };
15913
+
15541
15914
  // src/mutations/event/attendees/useCheckinAllAttendeePasses.ts
15542
15915
  var CheckinAllAttendeePasses = async ({
15543
15916
  eventId,
@@ -24416,6 +24789,7 @@ export {
24416
24789
  AddEventPassTypeAddOn,
24417
24790
  AddEventPassTypeTier,
24418
24791
  AddEventQuestionChoiceSubQuestion,
24792
+ AddEventReservationPass,
24419
24793
  AddEventRoomTypeTier,
24420
24794
  AddEventSectionAddOn,
24421
24795
  AddEventSectionPassType,
@@ -24526,6 +24900,7 @@ export {
24526
24900
  CreateEventQuestionSearchValues,
24527
24901
  CreateEventQuestionTranslation,
24528
24902
  CreateEventRegistrationBypass,
24903
+ CreateEventReservation,
24529
24904
  CreateEventRoomType,
24530
24905
  CreateEventRoomTypeTranslation,
24531
24906
  CreateEventSection,
@@ -24612,6 +24987,7 @@ export {
24612
24987
  DeleteEventQuestionSearchValues,
24613
24988
  DeleteEventQuestionTranslation,
24614
24989
  DeleteEventRegistrationBypass,
24990
+ DeleteEventReservation,
24615
24991
  DeleteEventRoomType,
24616
24992
  DeleteEventRoomTypeTranslation,
24617
24993
  DeleteEventSection,
@@ -24682,6 +25058,7 @@ export {
24682
25058
  EVENT_ATTENDEE_PASSES_QUERY_KEY,
24683
25059
  EVENT_ATTENDEE_PAYMENTS_QUERY_KEY,
24684
25060
  EVENT_ATTENDEE_QUERY_KEY,
25061
+ EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY,
24685
25062
  EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY,
24686
25063
  EVENT_COUPONS_QUERY_KEY,
24687
25064
  EVENT_COUPON_PASSES_QUERY_KEY,
@@ -24742,6 +25119,9 @@ export {
24742
25119
  EVENT_QUESTION_TRANSLATION_QUERY_KEY,
24743
25120
  EVENT_REGISTRATION_BYPASS_LIST_QUERY_KEY,
24744
25121
  EVENT_REGISTRATION_BYPASS_QUERY_KEY,
25122
+ EVENT_RESERVATIONS_QUERY_KEY,
25123
+ EVENT_RESERVATION_PASSES_QUERY_KEY,
25124
+ EVENT_RESERVATION_QUERY_KEY,
24745
25125
  EVENT_ROOM_TYPES_QUERY_KEY,
24746
25126
  EVENT_ROOM_TYPE_PASSES_QUERY_KEY,
24747
25127
  EVENT_ROOM_TYPE_QUERY_KEY,
@@ -24911,6 +25291,7 @@ export {
24911
25291
  GetEventAttendeeCoupons,
24912
25292
  GetEventAttendeePasses,
24913
25293
  GetEventAttendeePayments,
25294
+ GetEventAttendeeReservations,
24914
25295
  GetEventAttendeeTransfersLogs,
24915
25296
  GetEventAttendees,
24916
25297
  GetEventCoHosts,
@@ -24970,6 +25351,9 @@ export {
24970
25351
  GetEventQuestions,
24971
25352
  GetEventRegistrationBypass,
24972
25353
  GetEventRegistrationBypassList,
25354
+ GetEventReservation,
25355
+ GetEventReservationPasses,
25356
+ GetEventReservations,
24973
25357
  GetEventRoomType,
24974
25358
  GetEventRoomTypePasses,
24975
25359
  GetEventRoomTypeTiers,
@@ -25227,6 +25611,7 @@ export {
25227
25611
  RemoveEventPassTypeAddOn,
25228
25612
  RemoveEventPassTypeTier,
25229
25613
  RemoveEventQuestionChoiceSubQuestion,
25614
+ RemoveEventReservationPass,
25230
25615
  RemoveEventRoomTypeTier,
25231
25616
  RemoveEventSectionAddOn,
25232
25617
  RemoveEventSectionPassType,
@@ -25359,6 +25744,7 @@ export {
25359
25744
  SET_EVENT_ATTENDEE_PASSES_QUERY_DATA,
25360
25745
  SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA,
25361
25746
  SET_EVENT_ATTENDEE_QUERY_DATA,
25747
+ SET_EVENT_ATTENDEE_RESERVATIONS_QUERY_DATA,
25362
25748
  SET_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_DATA,
25363
25749
  SET_EVENT_COUPONS_QUERY_DATA,
25364
25750
  SET_EVENT_COUPON_PASSES_QUERY_DATA,
@@ -25417,6 +25803,9 @@ export {
25417
25803
  SET_EVENT_QUESTION_TRANSLATION_QUERY_DATA,
25418
25804
  SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA,
25419
25805
  SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA,
25806
+ SET_EVENT_RESERVATIONS_QUERY_DATA,
25807
+ SET_EVENT_RESERVATION_PASSES_QUERY_DATA,
25808
+ SET_EVENT_RESERVATION_QUERY_DATA,
25420
25809
  SET_EVENT_ROOM_TYPES_QUERY_DATA,
25421
25810
  SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA,
25422
25811
  SET_EVENT_ROOM_TYPE_QUERY_DATA,
@@ -25673,6 +26062,7 @@ export {
25673
26062
  UpdateEventQuestionSearchValue,
25674
26063
  UpdateEventQuestionTranslation,
25675
26064
  UpdateEventRegistrationBypass,
26065
+ UpdateEventReservation,
25676
26066
  UpdateEventRoomType,
25677
26067
  UpdateEventRoomTypeAddOnDetails,
25678
26068
  UpdateEventRoomTypePassTypeDetails,
@@ -25753,6 +26143,7 @@ export {
25753
26143
  useAddEventPassTypeAddOn,
25754
26144
  useAddEventPassTypeTier,
25755
26145
  useAddEventQuestionChoiceSubQuestion,
26146
+ useAddEventReservationPass,
25756
26147
  useAddEventRoomTypeTier,
25757
26148
  useAddEventSectionAddOn,
25758
26149
  useAddEventSectionPassType,
@@ -25834,6 +26225,7 @@ export {
25834
26225
  useCreateEventQuestionSearchValues,
25835
26226
  useCreateEventQuestionTranslation,
25836
26227
  useCreateEventRegistrationBypass,
26228
+ useCreateEventReservation,
25837
26229
  useCreateEventRoomType,
25838
26230
  useCreateEventRoomTypeTranslation,
25839
26231
  useCreateEventSection,
@@ -25917,6 +26309,7 @@ export {
25917
26309
  useDeleteEventQuestionSearchValues,
25918
26310
  useDeleteEventQuestionTranslation,
25919
26311
  useDeleteEventRegistrationBypass,
26312
+ useDeleteEventReservation,
25920
26313
  useDeleteEventRoomType,
25921
26314
  useDeleteEventRoomTypeTranslation,
25922
26315
  useDeleteEventSection,
@@ -26058,6 +26451,7 @@ export {
26058
26451
  useGetEventAttendeeCoupons,
26059
26452
  useGetEventAttendeePasses,
26060
26453
  useGetEventAttendeePayments,
26454
+ useGetEventAttendeeReservations,
26061
26455
  useGetEventAttendeeTransfersLogs,
26062
26456
  useGetEventAttendees,
26063
26457
  useGetEventCoHosts,
@@ -26117,6 +26511,9 @@ export {
26117
26511
  useGetEventQuestions,
26118
26512
  useGetEventRegistrationBypass,
26119
26513
  useGetEventRegistrationBypassList,
26514
+ useGetEventReservation,
26515
+ useGetEventReservationPasses,
26516
+ useGetEventReservations,
26120
26517
  useGetEventRoomType,
26121
26518
  useGetEventRoomTypePasses,
26122
26519
  useGetEventRoomTypeTiers,
@@ -26300,6 +26697,7 @@ export {
26300
26697
  useRemoveEventPassTypeAddOn,
26301
26698
  useRemoveEventPassTypeTier,
26302
26699
  useRemoveEventQuestionChoiceSubQuestion,
26700
+ useRemoveEventReservationPass,
26303
26701
  useRemoveEventRoomTypeTier,
26304
26702
  useRemoveEventSectionAddOn,
26305
26703
  useRemoveEventSectionPassType,
@@ -26391,6 +26789,7 @@ export {
26391
26789
  useUpdateEventQuestionSearchValue,
26392
26790
  useUpdateEventQuestionTranslation,
26393
26791
  useUpdateEventRegistrationBypass,
26792
+ useUpdateEventReservation,
26394
26793
  useUpdateEventRoomType,
26395
26794
  useUpdateEventRoomTypeAddOnDetails,
26396
26795
  useUpdateEventRoomTypePassTypeDetails,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.4.6",
3
+ "version": "1.4.8",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {