@connectedxm/admin 1.2.3 → 1.2.4

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
@@ -3452,11 +3452,16 @@ var useGetEventAddOnPasses = (eventId = "", addOnId = "", params = {}, options =
3452
3452
  };
3453
3453
 
3454
3454
  // src/queries/events/addOns/useGetEventAddOnTiers.ts
3455
- var EVENT_ADD_ON_TIERS_QUERY_KEY = (eventId, addOnId) => [...EVENT_ADD_ON_QUERY_KEY(eventId, addOnId), "TIERS"];
3455
+ var EVENT_ADD_ON_TIERS_QUERY_KEY = (allowed, eventId, addOnId) => [
3456
+ ...EVENT_ADD_ON_QUERY_KEY(eventId, addOnId),
3457
+ "TIERS",
3458
+ allowed ? "ALLOWED" : "DISALLOWED"
3459
+ ];
3456
3460
  var SET_EVENT_ADD_ON_TIERS_QUERY_DATA = (client, keyParams, response) => {
3457
3461
  client.setQueryData(EVENT_ADD_ON_TIERS_QUERY_KEY(...keyParams), response);
3458
3462
  };
3459
3463
  var GetEventAddOnTiers = async ({
3464
+ allowed,
3460
3465
  eventId,
3461
3466
  addOnId,
3462
3467
  pageParam,
@@ -3470,6 +3475,7 @@ var GetEventAddOnTiers = async ({
3470
3475
  `/events/${eventId}/addOns/${addOnId}/tiers`,
3471
3476
  {
3472
3477
  params: {
3478
+ allowed,
3473
3479
  page: pageParam || void 0,
3474
3480
  pageSize: pageSize || void 0,
3475
3481
  orderBy: orderBy || void 0,
@@ -3479,18 +3485,19 @@ var GetEventAddOnTiers = async ({
3479
3485
  );
3480
3486
  return data;
3481
3487
  };
3482
- var useGetEventAddOnTiers = (eventId = "", addOnId = "", params = {}, options = {}) => {
3488
+ var useGetEventAddOnTiers = (allowed, eventId = "", addOnId = "", params = {}, options = {}) => {
3483
3489
  return useConnectedInfiniteQuery(
3484
- EVENT_ADD_ON_TIERS_QUERY_KEY(eventId, addOnId),
3490
+ EVENT_ADD_ON_TIERS_QUERY_KEY(allowed, eventId, addOnId),
3485
3491
  (params2) => GetEventAddOnTiers({
3486
3492
  ...params2,
3493
+ allowed,
3487
3494
  eventId,
3488
3495
  addOnId
3489
3496
  }),
3490
3497
  params,
3491
3498
  {
3492
3499
  ...options,
3493
- enabled: !!eventId && !!addOnId && (options.enabled ?? true)
3500
+ enabled: typeof allowed === "boolean" && !!eventId && !!addOnId && (options.enabled ?? true)
3494
3501
  },
3495
3502
  "events"
3496
3503
  );
@@ -5633,11 +5640,16 @@ var useGetEventPassTypePasses = (eventId = "", passTypeId = "", checkedIn, param
5633
5640
  };
5634
5641
 
5635
5642
  // src/queries/events/passTypes/useGetEventPassTypeTiers.ts
5636
- var EVENT_PASS_TYPE_TIERS_QUERY_KEY = (eventId, passTypeId) => [...EVENT_PASS_TYPE_QUERY_KEY(eventId, passTypeId), "TIERS"];
5643
+ var EVENT_PASS_TYPE_TIERS_QUERY_KEY = (allowed, eventId, passTypeId) => [
5644
+ ...EVENT_PASS_TYPE_QUERY_KEY(eventId, passTypeId),
5645
+ "TIERS",
5646
+ allowed ? "ALLOWED" : "DISALLOWED"
5647
+ ];
5637
5648
  var SET_EVENT_PASS_TYPE_TIERS_QUERY_DATA = (client, keyParams, response) => {
5638
5649
  client.setQueryData(EVENT_PASS_TYPE_TIERS_QUERY_KEY(...keyParams), response);
5639
5650
  };
5640
5651
  var GetEventPassTypeTiers = async ({
5652
+ allowed,
5641
5653
  eventId,
5642
5654
  passTypeId,
5643
5655
  pageParam,
@@ -5651,6 +5663,7 @@ var GetEventPassTypeTiers = async ({
5651
5663
  `/events/${eventId}/passTypes/${passTypeId}/tiers`,
5652
5664
  {
5653
5665
  params: {
5666
+ allowed,
5654
5667
  page: pageParam || void 0,
5655
5668
  pageSize: pageSize || void 0,
5656
5669
  orderBy: orderBy || void 0,
@@ -5660,18 +5673,19 @@ var GetEventPassTypeTiers = async ({
5660
5673
  );
5661
5674
  return data;
5662
5675
  };
5663
- var useGetEventPassTypeTiers = (eventId = "", passTypeId = "", params = {}, options = {}) => {
5676
+ var useGetEventPassTypeTiers = (allowed, eventId = "", passTypeId = "", params = {}, options = {}) => {
5664
5677
  return useConnectedInfiniteQuery(
5665
- EVENT_PASS_TYPE_TIERS_QUERY_KEY(eventId, passTypeId),
5678
+ EVENT_PASS_TYPE_TIERS_QUERY_KEY(allowed, eventId, passTypeId),
5666
5679
  (params2) => GetEventPassTypeTiers({
5667
5680
  ...params2,
5681
+ allowed,
5668
5682
  eventId,
5669
5683
  passTypeId
5670
5684
  }),
5671
5685
  params,
5672
5686
  {
5673
5687
  ...options,
5674
- enabled: !!eventId && !!passTypeId && (options.enabled ?? true)
5688
+ enabled: typeof allowed === "boolean" && !!eventId && !!passTypeId && (options.enabled ?? true)
5675
5689
  },
5676
5690
  "events"
5677
5691
  );
@@ -6728,10 +6742,62 @@ var useGetReservationSectionPassTypes = (eventId = "", reservationSectionId = ""
6728
6742
  );
6729
6743
  };
6730
6744
 
6745
+ // src/queries/events/reservations/useGetReservationSectionPasses.ts
6746
+ var EVENT_RESERVATION_SECTION_PASSES_QUERY_KEY = (eventId, reservationSectionId) => [
6747
+ ...EVENT_RESERVATION_SECTION_QUERY_KEY(eventId, reservationSectionId),
6748
+ "PASSES"
6749
+ ];
6750
+ var SET_EVENT_RESERVATION_SECTION_PASSES_QUERY_DATA = (client, keyParams, response) => {
6751
+ client.setQueryData(
6752
+ EVENT_RESERVATION_SECTION_PASSES_QUERY_KEY(...keyParams),
6753
+ response
6754
+ );
6755
+ };
6756
+ var GetReservationSectionPasses = async ({
6757
+ eventId,
6758
+ reservationSectionId,
6759
+ pageParam,
6760
+ pageSize,
6761
+ orderBy,
6762
+ search,
6763
+ adminApiParams
6764
+ }) => {
6765
+ const adminApi = await GetAdminAPI(adminApiParams);
6766
+ const { data } = await adminApi.get(
6767
+ `/events/${eventId}/reservationSections/${reservationSectionId}/passes`,
6768
+ {
6769
+ params: {
6770
+ page: pageParam || void 0,
6771
+ pageSize: pageSize || void 0,
6772
+ orderBy: orderBy || void 0,
6773
+ search: search || void 0
6774
+ }
6775
+ }
6776
+ );
6777
+ return data;
6778
+ };
6779
+ var useGetReservationSectionPasses = (eventId = "", reservationSectionId = "", params = {}, options = {}) => {
6780
+ return useConnectedInfiniteQuery(
6781
+ EVENT_RESERVATION_SECTION_PASSES_QUERY_KEY(eventId, reservationSectionId),
6782
+ (params2) => GetReservationSectionPasses({
6783
+ ...params2,
6784
+ eventId,
6785
+ reservationSectionId
6786
+ }),
6787
+ params,
6788
+ {
6789
+ ...options,
6790
+ enabled: !!reservationSectionId && (options.enabled ?? true)
6791
+ },
6792
+ "events"
6793
+ );
6794
+ };
6795
+
6731
6796
  // src/queries/events/reservations/useGetReservationSectionTiers.ts
6732
- var EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY = (eventId, reservationSectionId) => [
6797
+ var EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY = (allowed, eventId, reservationSectionId) => [
6733
6798
  ...EVENT_RESERVATION_SECTION_QUERY_KEY(eventId, reservationSectionId),
6734
- "TIERS"
6799
+ "TIERS",
6800
+ allowed ? "ALLOWED" : "DISALLOWED"
6735
6801
  ];
6736
6802
  var SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA = (client, keyParams, response) => {
6737
6803
  client.setQueryData(
@@ -6740,6 +6806,7 @@ var SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA = (client, keyParams, respons
6740
6806
  );
6741
6807
  };
6742
6808
  var GetReservationSectionTiers = async ({
6809
+ allowed,
6743
6810
  eventId,
6744
6811
  reservationSectionId,
6745
6812
  pageParam,
@@ -6753,6 +6820,7 @@ var GetReservationSectionTiers = async ({
6753
6820
  `/events/${eventId}/reservationSections/${reservationSectionId}/tiers`,
6754
6821
  {
6755
6822
  params: {
6823
+ allowed,
6756
6824
  page: pageParam || void 0,
6757
6825
  pageSize: pageSize || void 0,
6758
6826
  orderBy: orderBy || void 0,
@@ -6762,18 +6830,23 @@ var GetReservationSectionTiers = async ({
6762
6830
  );
6763
6831
  return data;
6764
6832
  };
6765
- var useGetReservationSectionTiers = (eventId = "", reservationSectionId = "", params = {}, options = {}) => {
6833
+ var useGetReservationSectionTiers = (allowed, eventId = "", reservationSectionId = "", params = {}, options = {}) => {
6766
6834
  return useConnectedInfiniteQuery(
6767
- EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY(eventId, reservationSectionId),
6835
+ EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY(
6836
+ allowed,
6837
+ eventId,
6838
+ reservationSectionId
6839
+ ),
6768
6840
  (params2) => GetReservationSectionTiers({
6769
6841
  ...params2,
6842
+ allowed,
6770
6843
  eventId,
6771
6844
  reservationSectionId
6772
6845
  }),
6773
6846
  params,
6774
6847
  {
6775
6848
  ...options,
6776
- enabled: !!eventId && !!reservationSectionId && (options.enabled ?? true)
6849
+ enabled: typeof allowed === "boolean" && !!eventId && !!reservationSectionId && (options.enabled ?? true)
6777
6850
  },
6778
6851
  "events"
6779
6852
  );
@@ -7087,11 +7160,16 @@ var useGetEventSectionQuestions = (eventId = "", sectionId = "", params = {}, op
7087
7160
  };
7088
7161
 
7089
7162
  // src/queries/events/sections/useGetEventSectionTiers.ts
7090
- var EVENT_SECTION_TIERS_QUERY_KEY = (eventId, sectionId) => [...EVENT_SECTION_QUERY_KEY(eventId, sectionId), "TIERS"];
7163
+ var EVENT_SECTION_TIERS_QUERY_KEY = (allowed, eventId, sectionId) => [
7164
+ ...EVENT_SECTION_QUERY_KEY(eventId, sectionId),
7165
+ "TIERS",
7166
+ allowed ? "ALLOWED" : "DISALLOWED"
7167
+ ];
7091
7168
  var SET_EVENT_SECTION_TIERS_QUERY_DATA = (client, keyParams, response) => {
7092
7169
  client.setQueryData(EVENT_SECTION_TIERS_QUERY_KEY(...keyParams), response);
7093
7170
  };
7094
7171
  var GetEventSectionTiers = async ({
7172
+ allowed,
7095
7173
  eventId,
7096
7174
  sectionId,
7097
7175
  pageParam,
@@ -7105,6 +7183,7 @@ var GetEventSectionTiers = async ({
7105
7183
  `/events/${eventId}/sections/${sectionId}/tiers`,
7106
7184
  {
7107
7185
  params: {
7186
+ allowed,
7108
7187
  page: pageParam || void 0,
7109
7188
  pageSize: pageSize || void 0,
7110
7189
  orderBy: orderBy || void 0,
@@ -7114,18 +7193,19 @@ var GetEventSectionTiers = async ({
7114
7193
  );
7115
7194
  return data;
7116
7195
  };
7117
- var useGetEventSectionTiers = (eventId = "", sectionId = "", params = {}, options = {}) => {
7196
+ var useGetEventSectionTiers = (allowed, eventId = "", sectionId = "", params = {}, options = {}) => {
7118
7197
  return useConnectedInfiniteQuery(
7119
- EVENT_SECTION_TIERS_QUERY_KEY(eventId, sectionId),
7198
+ EVENT_SECTION_TIERS_QUERY_KEY(allowed, eventId, sectionId),
7120
7199
  (params2) => GetEventSectionTiers({
7121
7200
  ...params2,
7201
+ allowed,
7122
7202
  eventId,
7123
7203
  sectionId
7124
7204
  }),
7125
7205
  params,
7126
7206
  {
7127
7207
  ...options,
7128
- enabled: !!eventId && !!sectionId && (options.enabled ?? true)
7208
+ enabled: typeof allowed === "boolean" && !!eventId && !!sectionId && (options.enabled ?? true)
7129
7209
  },
7130
7210
  "events"
7131
7211
  );
@@ -15289,6 +15369,7 @@ var useAddEventAddOnPassType = (options = {}) => {
15289
15369
 
15290
15370
  // src/mutations/event/addOns/useAddEventAddOnTier.ts
15291
15371
  var AddEventAddOnTier = async ({
15372
+ allowed,
15292
15373
  eventId,
15293
15374
  addOnId,
15294
15375
  tierId,
@@ -15297,11 +15378,14 @@ var AddEventAddOnTier = async ({
15297
15378
  }) => {
15298
15379
  const connectedXM = await GetAdminAPI(adminApiParams);
15299
15380
  const { data } = await connectedXM.post(
15300
- `/events/${eventId}/addOns/${addOnId}/tiers/${tierId}`
15381
+ `/events/${eventId}/addOns/${addOnId}/tiers/${tierId}`,
15382
+ {
15383
+ allowed
15384
+ }
15301
15385
  );
15302
15386
  if (queryClient && data.status === "ok") {
15303
15387
  queryClient.invalidateQueries({
15304
- queryKey: EVENT_ADD_ON_TIERS_QUERY_KEY(eventId, addOnId)
15388
+ queryKey: EVENT_ADD_ON_TIERS_QUERY_KEY(allowed, eventId, addOnId)
15305
15389
  });
15306
15390
  SET_EVENT_ADD_ON_QUERY_DATA(queryClient, [eventId, addOnId], data);
15307
15391
  }
@@ -15398,6 +15482,7 @@ var useRemoveEventAddOnPassType = (options = {}) => {
15398
15482
 
15399
15483
  // src/mutations/event/addOns/useRemoveEventAddOnTier.ts
15400
15484
  var RemoveEventAddOnTier = async ({
15485
+ allowed,
15401
15486
  eventId,
15402
15487
  addOnId,
15403
15488
  tierId,
@@ -15406,11 +15491,16 @@ var RemoveEventAddOnTier = async ({
15406
15491
  }) => {
15407
15492
  const connectedXM = await GetAdminAPI(adminApiParams);
15408
15493
  const { data } = await connectedXM.delete(
15409
- `/events/${eventId}/addOns/${addOnId}/tiers/${tierId}`
15494
+ `/events/${eventId}/addOns/${addOnId}/tiers/${tierId}`,
15495
+ {
15496
+ params: {
15497
+ allowed
15498
+ }
15499
+ }
15410
15500
  );
15411
15501
  if (queryClient && data.status === "ok") {
15412
15502
  queryClient.invalidateQueries({
15413
- queryKey: EVENT_ADD_ON_TIERS_QUERY_KEY(eventId, addOnId)
15503
+ queryKey: EVENT_ADD_ON_TIERS_QUERY_KEY(allowed, eventId, addOnId)
15414
15504
  });
15415
15505
  SET_EVENT_ADD_ON_QUERY_DATA(queryClient, [eventId, addOnId], data);
15416
15506
  }
@@ -17078,6 +17168,7 @@ var useAddEventPassTypeAddOn = (options = {}) => {
17078
17168
 
17079
17169
  // src/mutations/event/passTypes/useAddEventPassTypeTier.ts
17080
17170
  var AddEventPassTypeTier = async ({
17171
+ allowed,
17081
17172
  eventId,
17082
17173
  passTypeId,
17083
17174
  tierId,
@@ -17086,11 +17177,14 @@ var AddEventPassTypeTier = async ({
17086
17177
  }) => {
17087
17178
  const connectedXM = await GetAdminAPI(adminApiParams);
17088
17179
  const { data } = await connectedXM.post(
17089
- `/events/${eventId}/passTypes/${passTypeId}/tiers/${tierId}`
17180
+ `/events/${eventId}/passTypes/${passTypeId}/tiers/${tierId}`,
17181
+ {
17182
+ allowed
17183
+ }
17090
17184
  );
17091
17185
  if (queryClient && data.status === "ok") {
17092
17186
  queryClient.invalidateQueries({
17093
- queryKey: EVENT_PASS_TYPE_TIERS_QUERY_KEY(eventId, passTypeId)
17187
+ queryKey: EVENT_PASS_TYPE_TIERS_QUERY_KEY(allowed, eventId, passTypeId)
17094
17188
  });
17095
17189
  SET_EVENT_PASS_TYPE_QUERY_DATA(queryClient, [eventId, passTypeId], data);
17096
17190
  }
@@ -17187,6 +17281,7 @@ var useRemoveEventPassTypeAddOn = (options = {}) => {
17187
17281
 
17188
17282
  // src/mutations/event/passTypes/useRemoveEventPassTypeTier.ts
17189
17283
  var RemoveEventPassTypeTier = async ({
17284
+ allowed,
17190
17285
  eventId,
17191
17286
  passTypeId,
17192
17287
  tierId,
@@ -17195,11 +17290,16 @@ var RemoveEventPassTypeTier = async ({
17195
17290
  }) => {
17196
17291
  const connectedXM = await GetAdminAPI(adminApiParams);
17197
17292
  const { data } = await connectedXM.delete(
17198
- `/events/${eventId}/passTypes/${passTypeId}/tiers/${tierId}`
17293
+ `/events/${eventId}/passTypes/${passTypeId}/tiers/${tierId}`,
17294
+ {
17295
+ params: {
17296
+ allowed
17297
+ }
17298
+ }
17199
17299
  );
17200
17300
  if (queryClient && data.status === "ok") {
17201
17301
  queryClient.invalidateQueries({
17202
- queryKey: EVENT_PASS_TYPE_TIERS_QUERY_KEY(eventId, passTypeId)
17302
+ queryKey: EVENT_PASS_TYPE_TIERS_QUERY_KEY(allowed, eventId, passTypeId)
17203
17303
  });
17204
17304
  SET_EVENT_PASS_TYPE_QUERY_DATA(queryClient, [eventId, passTypeId], data);
17205
17305
  }
@@ -18728,6 +18828,7 @@ var useAddEventReservationSectionPassType = (options = {}) => {
18728
18828
 
18729
18829
  // src/mutations/event/reservations/useAddEventReservationSectionTier.ts
18730
18830
  var AddEventReservationSectionTier = async ({
18831
+ allowed,
18731
18832
  eventId,
18732
18833
  reservationSectionId,
18733
18834
  tierId,
@@ -18736,11 +18837,15 @@ var AddEventReservationSectionTier = async ({
18736
18837
  }) => {
18737
18838
  const connectedXM = await GetAdminAPI(adminApiParams);
18738
18839
  const { data } = await connectedXM.post(
18739
- `/events/${eventId}/reservationSections/${reservationSectionId}/tiers/${tierId}`
18840
+ `/events/${eventId}/reservationSections/${reservationSectionId}/tiers/${tierId}`,
18841
+ {
18842
+ allowed
18843
+ }
18740
18844
  );
18741
18845
  if (queryClient && data.status === "ok") {
18742
18846
  queryClient.invalidateQueries({
18743
18847
  queryKey: EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY(
18848
+ allowed,
18744
18849
  eventId,
18745
18850
  reservationSectionId
18746
18851
  )
@@ -18858,6 +18963,7 @@ var useRemoveEventReservationSectionPassType = (options = {}) => {
18858
18963
 
18859
18964
  // src/mutations/event/reservations/useRemoveEventReservationSectionTier.ts
18860
18965
  var RemoveEventReservationSectionTier = async ({
18966
+ allowed,
18861
18967
  eventId,
18862
18968
  reservationSectionId,
18863
18969
  tierId,
@@ -18866,11 +18972,17 @@ var RemoveEventReservationSectionTier = async ({
18866
18972
  }) => {
18867
18973
  const connectedXM = await GetAdminAPI(adminApiParams);
18868
18974
  const { data } = await connectedXM.delete(
18869
- `/events/${eventId}/reservationSections/${reservationSectionId}/tiers/${tierId}`
18975
+ `/events/${eventId}/reservationSections/${reservationSectionId}/tiers/${tierId}`,
18976
+ {
18977
+ params: {
18978
+ allowed
18979
+ }
18980
+ }
18870
18981
  );
18871
18982
  if (queryClient && data.status === "ok") {
18872
18983
  queryClient.invalidateQueries({
18873
18984
  queryKey: EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY(
18985
+ allowed,
18874
18986
  eventId,
18875
18987
  reservationSectionId
18876
18988
  )
@@ -19106,6 +19218,7 @@ var useAddEventSectionQuestion = (options = {}) => {
19106
19218
 
19107
19219
  // src/mutations/event/sections/useAddEventSectionTier.ts
19108
19220
  var AddEventSectionTier = async ({
19221
+ allowed,
19109
19222
  eventId,
19110
19223
  sectionId,
19111
19224
  tierId,
@@ -19114,11 +19227,14 @@ var AddEventSectionTier = async ({
19114
19227
  }) => {
19115
19228
  const connectedXM = await GetAdminAPI(adminApiParams);
19116
19229
  const { data } = await connectedXM.post(
19117
- `/events/${eventId}/sections/${sectionId}/tiers/${tierId}`
19230
+ `/events/${eventId}/sections/${sectionId}/tiers/${tierId}`,
19231
+ {
19232
+ allowed
19233
+ }
19118
19234
  );
19119
19235
  if (queryClient && data.status === "ok") {
19120
19236
  queryClient.invalidateQueries({
19121
- queryKey: EVENT_SECTION_TIERS_QUERY_KEY(eventId, sectionId)
19237
+ queryKey: EVENT_SECTION_TIERS_QUERY_KEY(allowed, eventId, sectionId)
19122
19238
  });
19123
19239
  SET_EVENT_SECTION_QUERY_DATA(queryClient, [eventId, sectionId], data);
19124
19240
  }
@@ -19264,6 +19380,7 @@ var useRemoveEventSectionQuestion = (options = {}) => {
19264
19380
 
19265
19381
  // src/mutations/event/sections/useRemoveEventSectionTier.ts
19266
19382
  var RemoveEventSectionTier = async ({
19383
+ allowed,
19267
19384
  eventId,
19268
19385
  sectionId,
19269
19386
  tierId,
@@ -19271,10 +19388,14 @@ var RemoveEventSectionTier = async ({
19271
19388
  queryClient
19272
19389
  }) => {
19273
19390
  const connectedXM = await GetAdminAPI(adminApiParams);
19274
- const { data } = await connectedXM.delete(`/events/${eventId}/sections/${sectionId}/tiers/${tierId}`);
19391
+ const { data } = await connectedXM.delete(`/events/${eventId}/sections/${sectionId}/tiers/${tierId}`, {
19392
+ params: {
19393
+ allowed
19394
+ }
19395
+ });
19275
19396
  if (queryClient && data.status === "ok") {
19276
19397
  queryClient.invalidateQueries({
19277
- queryKey: EVENT_SECTION_TIERS_QUERY_KEY(eventId, sectionId)
19398
+ queryKey: EVENT_SECTION_TIERS_QUERY_KEY(allowed, eventId, sectionId)
19278
19399
  });
19279
19400
  SET_EVENT_SECTION_QUERY_DATA(queryClient, [eventId, sectionId], data);
19280
19401
  }
@@ -24878,6 +24999,7 @@ export {
24878
24999
  EVENT_RESERVATION_SECTION_LOCATION_QUERY_KEY,
24879
25000
  EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_KEY,
24880
25001
  EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_KEY,
25002
+ EVENT_RESERVATION_SECTION_PASSES_QUERY_KEY,
24881
25003
  EVENT_RESERVATION_SECTION_PASS_TYPES_QUERY_KEY,
24882
25004
  EVENT_RESERVATION_SECTION_QUERY_KEY,
24883
25005
  EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY,
@@ -25220,6 +25342,7 @@ export {
25220
25342
  GetReservationSectionLocationTranslations,
25221
25343
  GetReservationSectionLocations,
25222
25344
  GetReservationSectionPassTypes,
25345
+ GetReservationSectionPasses,
25223
25346
  GetReservationSectionTiers,
25224
25347
  GetReservationSectionTranslation,
25225
25348
  GetReservationSectionTranslations,
@@ -25552,6 +25675,7 @@ export {
25552
25675
  SET_EVENT_RESERVATION_SECTION_LOCATION_QUERY_DATA,
25553
25676
  SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_DATA,
25554
25677
  SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_DATA,
25678
+ SET_EVENT_RESERVATION_SECTION_PASSES_QUERY_DATA,
25555
25679
  SET_EVENT_RESERVATION_SECTION_PASS_TYPES_QUERY_DATA,
25556
25680
  SET_EVENT_RESERVATION_SECTION_QUERY_DATA,
25557
25681
  SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA,
@@ -26360,6 +26484,7 @@ export {
26360
26484
  useGetReservationSectionLocationTranslations,
26361
26485
  useGetReservationSectionLocations,
26362
26486
  useGetReservationSectionPassTypes,
26487
+ useGetReservationSectionPasses,
26363
26488
  useGetReservationSectionTiers,
26364
26489
  useGetReservationSectionTranslation,
26365
26490
  useGetReservationSectionTranslations,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "repository": {