@connectedxm/admin 1.8.5 → 2.0.0

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.
@@ -849,6 +849,8 @@ interface BaseEvent {
849
849
  registration: boolean;
850
850
  registrationStart: string | null;
851
851
  registrationEnd: string | null;
852
+ createdAt: string;
853
+ updatedAt: string;
852
854
  }
853
855
  interface Event extends BaseEvent {
854
856
  passSupply: number | null;
@@ -879,8 +881,6 @@ interface Event extends BaseEvent {
879
881
  groupOnly: boolean;
880
882
  backgroundImageId: string | null;
881
883
  backgroundImage: BaseImage | null;
882
- createdAt: string;
883
- updatedAt: string;
884
884
  }
885
885
  interface EventTranslation {
886
886
  id: number;
@@ -5198,7 +5198,7 @@ declare const ACCOUNT_EMAILS_QUERY_KEY: (accountId: string, status?: keyof typeo
5198
5198
  * @category Setters
5199
5199
  * @group Accounts
5200
5200
  */
5201
- declare const SET_ACCOUNT_EMAILS_QUERY_DATA: (client: QueryClient, keyParams: [accountId: string, status?: "pending" | "delivered" | "bounced" | "complaint" | "opened" | undefined], response: Awaited<ReturnType<typeof GetAcccountEmailReceipts>>) => void;
5201
+ declare const SET_ACCOUNT_EMAILS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_EMAILS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAcccountEmailReceipts>>) => void;
5202
5202
  interface GetAcccountEmailReceiptsProps extends InfiniteQueryParams {
5203
5203
  accountId: string;
5204
5204
  status?: keyof typeof EmailReceiptStatus;
@@ -5223,7 +5223,7 @@ declare const ACCOUNT_EVENTS_QUERY_KEY: (accountId: string, past?: boolean) => s
5223
5223
  * @category Setters
5224
5224
  * @group Accounts
5225
5225
  */
5226
- declare const SET_ACCOUNT_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: [accountId: string, past?: boolean | undefined], response: Awaited<ReturnType<typeof GetAccountEvents>>) => void;
5226
+ declare const SET_ACCOUNT_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountEvents>>) => void;
5227
5227
  interface GetAccountEventsProps extends InfiniteQueryParams {
5228
5228
  accountId: string;
5229
5229
  past?: boolean;
@@ -5367,7 +5367,7 @@ declare const ACCOUNT_LEAD_QUERY_KEY: (accountId: string, leadId: string) => str
5367
5367
  * @category Setters
5368
5368
  * @group Accounts
5369
5369
  */
5370
- declare const SET_ACCOUNT_LEAD_QUERY_DATA: (client: QueryClient, keyParams: [accountId: string, leadId: string], response: Awaited<ReturnType<typeof GetAccountLead>>) => void;
5370
+ declare const SET_ACCOUNT_LEAD_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_LEAD_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountLead>>) => void;
5371
5371
  interface GetAccountLeadProps extends SingleQueryParams {
5372
5372
  accountId: string;
5373
5373
  leadId: string;
@@ -5392,7 +5392,7 @@ declare const ACCOUNT_LEADS_QUERY_KEY: (accountId: string, status?: keyof typeof
5392
5392
  * @category Setters
5393
5393
  * @group Accounts
5394
5394
  */
5395
- declare const SET_ACCOUNT_LEADS_QUERY_DATA: (client: QueryClient, keyParams: [accountId: string, status?: "new" | "favorited" | "archived" | "deleted" | undefined, eventId?: string | undefined], response: Awaited<ReturnType<typeof GetAccountLeads>>) => void;
5395
+ declare const SET_ACCOUNT_LEADS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_LEADS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountLeads>>) => void;
5396
5396
  interface GetAccountLeadsProps extends InfiniteQueryParams {
5397
5397
  accountId: string;
5398
5398
  status?: keyof typeof LeadStatus;
@@ -5529,7 +5529,7 @@ declare const ACCOUNT_PUSH_DEVICE_QUERY_KEY: (accountId: string, pushDeviceId: s
5529
5529
  * @category Setters
5530
5530
  * @group Accounts
5531
5531
  */
5532
- declare const SET_ACCOUNT_PUSH_DEVICE_QUERY_DATA: (client: QueryClient, keyParams: [accountId: string, pushDeviceId: string], response: Awaited<ReturnType<typeof GetAccountPushDevice>>) => void;
5532
+ declare const SET_ACCOUNT_PUSH_DEVICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_PUSH_DEVICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountPushDevice>>) => void;
5533
5533
  interface GetAccountPushDeviceProps extends SingleQueryParams {
5534
5534
  accountId: string;
5535
5535
  pushDeviceId: string;
@@ -5626,7 +5626,7 @@ declare const ACCOUNT_TIERS_QUERY_KEY: (accountId: string, type?: "external" | "
5626
5626
  * @category Setters
5627
5627
  * @group Accounts
5628
5628
  */
5629
- declare const SET_ACCOUNT_TIERS_QUERY_DATA: (client: QueryClient, keyParams: [accountId: string, type?: "external" | "internal" | undefined], response: Awaited<ReturnType<typeof GetAccountTiers>>) => void;
5629
+ declare const SET_ACCOUNT_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountTiers>>) => void;
5630
5630
  interface GetAccountTiersProps extends InfiniteQueryParams {
5631
5631
  accountId: string;
5632
5632
  type?: "external" | "internal";
@@ -5913,7 +5913,7 @@ declare const ANNOUNCEMENT_TRANSLATION_QUERY_KEY: (announcementId: string, local
5913
5913
  * @category Setters
5914
5914
  * @announcement Announcements
5915
5915
  */
5916
- declare const SET_ANNOUNCEMENT_TRANSLATION_QUERY_DATA: (client: any, keyParams: [announcementId: string, locale: string], response: Awaited<ReturnType<typeof GetAnnouncementTranslation>>) => void;
5916
+ declare const SET_ANNOUNCEMENT_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof ANNOUNCEMENT_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAnnouncementTranslation>>) => void;
5917
5917
  interface GetAnnouncementTranslationProps extends SingleQueryParams {
5918
5918
  announcementId: string;
5919
5919
  locale: string;
@@ -6010,7 +6010,7 @@ declare const ANNOUNCEMENT_EMAILS_QUERY_KEY: (announcementId: string, status?: k
6010
6010
  * @category Setters
6011
6011
  * @group Announcements
6012
6012
  */
6013
- declare const SET_ANNOUNCEMENT_EMAILS_QUERY_DATA: (client: QueryClient, keyParams: [announcementId: string, status?: "pending" | "delivered" | "bounced" | "complaint" | "opened" | undefined], response: Awaited<ReturnType<typeof GetAnnouncementEmailReceipts>>) => void;
6013
+ declare const SET_ANNOUNCEMENT_EMAILS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ANNOUNCEMENT_EMAILS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAnnouncementEmailReceipts>>) => void;
6014
6014
  interface GetAnnouncementEmailReceiptsProps extends InfiniteQueryParams {
6015
6015
  announcementId: string;
6016
6016
  status?: keyof typeof EmailReceiptStatus;
@@ -6090,7 +6090,7 @@ declare const API_LOGS_QUERY_KEY: (startDate?: string, endDate?: string, method?
6090
6090
  * @category Setters
6091
6091
  * @group Emails
6092
6092
  */
6093
- declare const SET_API_LOGS_QUERY_DATA: (client: QueryClient, keyParams: [startDate?: string | undefined, endDate?: string | undefined, method?: string | undefined, status?: "success" | "failed" | undefined, source?: string | undefined, userId?: string | undefined, accountId?: string | undefined], response: Awaited<ReturnType<typeof GetAPILogs>>) => void;
6093
+ declare const SET_API_LOGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof API_LOGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAPILogs>>) => void;
6094
6094
  interface GetAPILogsParams extends InfiniteQueryParams {
6095
6095
  startDate: string;
6096
6096
  endDate: string;
@@ -6167,7 +6167,7 @@ declare const BENEFIT_TRANSLATION_QUERY_KEY: (benefitId: string, locale: string)
6167
6167
  * @category Setters
6168
6168
  * @group Benefits
6169
6169
  */
6170
- declare const SET_BENEFIT_TRANSLATION_QUERY_DATA: (client: any, keyParams: [benefitId: string, locale: string], response: Awaited<ReturnType<typeof GetBenefitTranslation>>) => void;
6170
+ declare const SET_BENEFIT_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof BENEFIT_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBenefitTranslation>>) => void;
6171
6171
  interface GetBenefitTranslationProps extends SingleQueryParams {
6172
6172
  benefitId: string;
6173
6173
  locale: string;
@@ -6360,7 +6360,7 @@ declare const BOOKING_PLACE_BOOKINGS_QUERY_KEY: (placeId: string, past?: boolean
6360
6360
  * @category Setters
6361
6361
  * @group Bookings
6362
6362
  */
6363
- declare const SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, past?: boolean | undefined, status?: PurchaseStatus | undefined], response: Awaited<ReturnType<typeof GetBookingPlaceBookings>>) => void;
6363
+ declare const SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_PLACE_BOOKINGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingPlaceBookings>>) => void;
6364
6364
  interface GetBookingPlaceBookingsProps extends InfiniteQueryParams {
6365
6365
  placeId: string;
6366
6366
  past?: boolean;
@@ -6386,7 +6386,7 @@ declare const BOOKING_PLACE_TRANSLATION_QUERY_KEY: (placeId: string, locale: str
6386
6386
  * @category Setters
6387
6387
  * @group Bookings
6388
6388
  */
6389
- declare const SET_BOOKING_PLACE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [placeId: string, locale: string], response: Awaited<ReturnType<typeof GetBookingPlaceTranslation>>) => void;
6389
+ declare const SET_BOOKING_PLACE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof BOOKING_PLACE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingPlaceTranslation>>) => void;
6390
6390
  interface GetBookingPlaceTranslationProps extends SingleQueryParams {
6391
6391
  placeId: string;
6392
6392
  locale: string;
@@ -6458,7 +6458,7 @@ declare const BOOKING_SPACE_QUERY_KEY: (placeId: string, spaceId: string) => str
6458
6458
  * @category Setters
6459
6459
  * @group Bookings
6460
6460
  */
6461
- declare const SET_BOOKING_SPACE_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string], response: Awaited<ReturnType<typeof GetBookingSpace>>) => void;
6461
+ declare const SET_BOOKING_SPACE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_SPACE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpace>>) => void;
6462
6462
  interface GetBookingSpaceProps extends SingleQueryParams {
6463
6463
  placeId: string;
6464
6464
  spaceId: string;
@@ -6483,7 +6483,7 @@ declare const BOOKING_SPACE_AVAILABILITIES_QUERY_KEY: (placeId: string, spaceId:
6483
6483
  * @category Setters
6484
6484
  * @group Bookings
6485
6485
  */
6486
- declare const SET_BOOKING_SPACE_AVAILABILITIES_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string], response: Awaited<ReturnType<typeof GetBookingSpaceAvailabilities>>) => void;
6486
+ declare const SET_BOOKING_SPACE_AVAILABILITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_SPACE_AVAILABILITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpaceAvailabilities>>) => void;
6487
6487
  interface GetBookingSpaceAvailabilitiesProps extends SingleQueryParams {
6488
6488
  placeId: string;
6489
6489
  spaceId: string;
@@ -6508,7 +6508,7 @@ declare const BOOKING_SPACE_AVAILABILITY_QUERY_KEY: (placeId: string, spaceId: s
6508
6508
  * @category Setters
6509
6509
  * @group Bookings
6510
6510
  */
6511
- declare const SET_BOOKING_SPACE_AVAILABILITY_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, availabilityId: string], response: Awaited<ReturnType<typeof GetBookingSpaceAvailability>>) => void;
6511
+ declare const SET_BOOKING_SPACE_AVAILABILITY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_SPACE_AVAILABILITY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpaceAvailability>>) => void;
6512
6512
  interface GetBookingSpaceAvailabilityProps extends SingleQueryParams {
6513
6513
  placeId: string;
6514
6514
  spaceId: string;
@@ -6534,7 +6534,7 @@ declare const BOOKING_SPACE_BLACKOUT_QUERY_KEY: (placeId: string, spaceId: strin
6534
6534
  * @category Setters
6535
6535
  * @group Bookings
6536
6536
  */
6537
- declare const SET_BOOKING_SPACE_BLACKOUT_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, blackoutId: string], response: Awaited<ReturnType<typeof GetBookingSpaceBlackout>>) => void;
6537
+ declare const SET_BOOKING_SPACE_BLACKOUT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_SPACE_BLACKOUT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpaceBlackout>>) => void;
6538
6538
  interface GetBookingSpaceBlackoutProps extends SingleQueryParams {
6539
6539
  placeId: string;
6540
6540
  spaceId: string;
@@ -6560,7 +6560,7 @@ declare const BOOKING_SPACE_BLACKOUTS_QUERY_KEY: (placeId: string, spaceId: stri
6560
6560
  * @category Setters
6561
6561
  * @group Bookings
6562
6562
  */
6563
- declare const SET_BOOKING_SPACE_BLACKOUTS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, past?: boolean | undefined], response: Awaited<ReturnType<typeof GetBookingSpaceBlackouts>>) => void;
6563
+ declare const SET_BOOKING_SPACE_BLACKOUTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_SPACE_BLACKOUTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpaceBlackouts>>) => void;
6564
6564
  interface GetBookingSpaceBlackoutsProps extends InfiniteQueryParams {
6565
6565
  placeId: string;
6566
6566
  spaceId: string;
@@ -6586,7 +6586,7 @@ declare const BOOKING_SPACE_BOOKINGS_QUERY_KEY: (placeId: string, spaceId: strin
6586
6586
  * @category Setters
6587
6587
  * @group Bookings
6588
6588
  */
6589
- declare const SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, past?: boolean | undefined, status?: PurchaseStatus | undefined], response: Awaited<ReturnType<typeof GetBookingSpaceBookings>>) => void;
6589
+ declare const SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_SPACE_BOOKINGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpaceBookings>>) => void;
6590
6590
  interface GetBookingSpaceBookingsProps extends InfiniteQueryParams {
6591
6591
  placeId: string;
6592
6592
  spaceId: string;
@@ -6613,7 +6613,7 @@ declare const BOOKING_SPACE_SLOTS_QUERY_KEY: (placeId: string, spaceId: string,
6613
6613
  * @category Setters
6614
6614
  * @group Bookings
6615
6615
  */
6616
- declare const SET_BOOKING_SPACE_SLOTS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, firstDayOfMonth: string], response: Awaited<ReturnType<typeof GetBookingSpaceSlots>>) => void;
6616
+ declare const SET_BOOKING_SPACE_SLOTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_SPACE_SLOTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpaceSlots>>) => void;
6617
6617
  interface GetBookingSpaceSlotsProps extends SingleQueryParams {
6618
6618
  placeId: string;
6619
6619
  spaceId: string;
@@ -6645,7 +6645,7 @@ declare const BOOKING_SPACE_TRANSLATION_QUERY_KEY: (placeId: string, spaceId: st
6645
6645
  * @category Setters
6646
6646
  * @group Bookings
6647
6647
  */
6648
- declare const SET_BOOKING_SPACE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [placeId: string, spaceId: string, locale: string], response: Awaited<ReturnType<typeof GetBookingSpaceTranslation>>) => void;
6648
+ declare const SET_BOOKING_SPACE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof BOOKING_SPACE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpaceTranslation>>) => void;
6649
6649
  interface GetBookingSpaceTranslationProps extends SingleQueryParams {
6650
6650
  placeId: string;
6651
6651
  spaceId: string;
@@ -6671,7 +6671,7 @@ declare const BOOKING_SPACE_TRANSLATIONS_QUERY_KEY: (placeId: string, spaceId: s
6671
6671
  * @category Setters
6672
6672
  * @group Events
6673
6673
  */
6674
- declare const SET_BOOKING_SPACE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [placeId: string, spaceId: string], response: Awaited<ReturnType<typeof GetBookingSpaceTranslations>>) => void;
6674
+ declare const SET_BOOKING_SPACE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof BOOKING_SPACE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpaceTranslations>>) => void;
6675
6675
  interface GetBookingSpaceTranslationsProps extends InfiniteQueryParams {
6676
6676
  placeId: string;
6677
6677
  spaceId: string;
@@ -6720,7 +6720,7 @@ declare const CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_KEY: (channelId: string, c
6720
6720
  * @category Setters
6721
6721
  * @group Channels
6722
6722
  */
6723
- declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, guestId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelContentGuestTranslation>>) => void;
6723
+ declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentGuestTranslation>>) => void;
6724
6724
  interface GetChannelContentGuestTranslationProps extends SingleQueryParams {
6725
6725
  channelId: string;
6726
6726
  contentId: string;
@@ -6747,7 +6747,7 @@ declare const CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_KEY: (channelId: string,
6747
6747
  * @category Setters
6748
6748
  * @group Channels
6749
6749
  */
6750
- declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuestTranslations>>) => void;
6750
+ declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentGuestTranslations>>) => void;
6751
6751
  interface GetChannelContentGuestTranslationsProps extends InfiniteQueryParams {
6752
6752
  channelId: string;
6753
6753
  contentId: string;
@@ -6773,7 +6773,7 @@ declare const CHANNEL_CONTENT_TRANSLATION_QUERY_KEY: (channelId: string, content
6773
6773
  * @category Setters
6774
6774
  * @group Channels
6775
6775
  */
6776
- declare const SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelContentTranslation>>) => void;
6776
+ declare const SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof CHANNEL_CONTENT_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentTranslation>>) => void;
6777
6777
  interface GetChannelContentTranslationProps extends SingleQueryParams {
6778
6778
  contentId: string;
6779
6779
  locale: string;
@@ -6798,7 +6798,7 @@ declare const CHANNEL_CONTENT_TRANSLATIONS_QUERY_KEY: (channelId: string, conten
6798
6798
  * @category Setters
6799
6799
  * @group Channels
6800
6800
  */
6801
- declare const SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentTranslations>>) => void;
6801
+ declare const SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof CHANNEL_CONTENT_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentTranslations>>) => void;
6802
6802
  interface GetChannelContentTranslationsProps extends InfiniteQueryParams {
6803
6803
  contentId: string;
6804
6804
  }
@@ -6822,7 +6822,7 @@ declare const CHANNEL_TRANSLATION_QUERY_KEY: (channelId: string, locale: string)
6822
6822
  * @category Setters
6823
6823
  * @group Channels
6824
6824
  */
6825
- declare const SET_CHANNEL_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelTranslation>>) => void;
6825
+ declare const SET_CHANNEL_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof CHANNEL_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelTranslation>>) => void;
6826
6826
  interface GetChannelTranslationProps extends SingleQueryParams {
6827
6827
  channelId: string;
6828
6828
  locale: string;
@@ -6919,7 +6919,7 @@ declare const CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string)
6919
6919
  * @category Setters
6920
6920
  * @group Channels
6921
6921
  */
6922
- declare const SET_CHANNEL_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContent>>) => void;
6922
+ declare const SET_CHANNEL_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContent>>) => void;
6923
6923
  interface GetChannelContentProps extends SingleQueryParams {
6924
6924
  channelId: string;
6925
6925
  contentId: string;
@@ -6944,7 +6944,7 @@ declare const CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY: (channelId: string, contentI
6944
6944
  * @category Setters
6945
6945
  * @group Channels
6946
6946
  */
6947
- declare const SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentActivities>>) => void;
6947
+ declare const SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentActivities>>) => void;
6948
6948
  interface GetContentActivitiesProps extends InfiniteQueryParams {
6949
6949
  channelId: string;
6950
6950
  contentId: string;
@@ -6969,7 +6969,7 @@ declare const CHANNEL_CONTENT_GUEST_QUERY_KEY: (channelId: string, contentId: st
6969
6969
  * @category Setters
6970
6970
  * @group Channels
6971
6971
  */
6972
- declare const SET_CHANNEL_CONTENT_GUEST_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuest>>) => void;
6972
+ declare const SET_CHANNEL_CONTENT_GUEST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_GUEST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentGuest>>) => void;
6973
6973
  interface GetChannelContentGuestsProps$1 extends SingleQueryParams {
6974
6974
  channelId: string;
6975
6975
  contentId: string;
@@ -6996,7 +6996,7 @@ declare const CHANNEL_CONTENT_GUESTS_QUERY_KEY: (channelId: string, contentId: s
6996
6996
  * @category Setters
6997
6997
  * @group Channels
6998
6998
  */
6999
- declare const SET_CHANNEL_CONTENT_GUESTS_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentGuests>>) => void;
6999
+ declare const SET_CHANNEL_CONTENT_GUESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_GUESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentGuests>>) => void;
7000
7000
  interface GetChannelContentGuestsProps extends InfiniteQueryParams {
7001
7001
  channelId: string;
7002
7002
  contentId: string;
@@ -7022,7 +7022,7 @@ declare const CHANNEL_CONTENT_LIKES_QUERY_KEY: (channelId: string, contentId: st
7022
7022
  * @category Setters
7023
7023
  * @group Channels
7024
7024
  */
7025
- declare const SET_CHANNEL_CONTENT_LIKES_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentLikes>>) => void;
7025
+ declare const SET_CHANNEL_CONTENT_LIKES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_LIKES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentLikes>>) => void;
7026
7026
  interface GetContentLikesProps extends InfiniteQueryParams {
7027
7027
  channelId: string;
7028
7028
  contentId: string;
@@ -7047,7 +7047,7 @@ declare const CHANNEL_CONTENTS_QUERY_KEY: (channelId: string, featured?: boolean
7047
7047
  * @category Setters
7048
7048
  * @group Channels
7049
7049
  */
7050
- declare const SET_CHANNEL_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, featured?: boolean | undefined], response: Awaited<ReturnType<typeof GetChannelContents>>) => void;
7050
+ declare const SET_CHANNEL_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContents>>) => void;
7051
7051
  interface GetChannelContentsProps extends InfiniteQueryParams {
7052
7052
  channelId: string;
7053
7053
  featured?: boolean;
@@ -7072,7 +7072,7 @@ declare const CHANNEL_SUBSCRIBER_QUERY_KEY: (channelId: string, accountId: strin
7072
7072
  * @category Setters
7073
7073
  * @group Channels
7074
7074
  */
7075
- declare const SET_CHANNEL_SUBSCRIBER_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, accountId: string], response: Awaited<ReturnType<typeof GetChannelSubscriber>>) => void;
7075
+ declare const SET_CHANNEL_SUBSCRIBER_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_SUBSCRIBER_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelSubscriber>>) => void;
7076
7076
  interface GetChannelSubscriberProps extends SingleQueryParams {
7077
7077
  channelId: string;
7078
7078
  accountId: string;
@@ -7097,7 +7097,7 @@ declare const CHANNEL_SUBSCRIBERS_QUERY_KEY: (channelId: string, status?: string
7097
7097
  * @category Setters
7098
7098
  * @group ChannelSubscribers
7099
7099
  */
7100
- declare const SET_CHANNEL_SUBSCRIBERS_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, status?: string | undefined], response: Awaited<ReturnType<typeof GetChannelSubscribers>>) => void;
7100
+ declare const SET_CHANNEL_SUBSCRIBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_SUBSCRIBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelSubscribers>>) => void;
7101
7101
  interface GetChannelSubscribersProps extends InfiniteQueryParams {
7102
7102
  channelId: string;
7103
7103
  status?: string;
@@ -7145,7 +7145,7 @@ declare const CONTENTS_QUERY_KEY: (featured?: boolean, type?: "video" | "audio"
7145
7145
  * @category Setters
7146
7146
  * @group Channels
7147
7147
  */
7148
- declare const SET_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: [featured?: boolean | undefined, type?: "article" | "video" | "audio" | undefined, past?: boolean | undefined], response: Awaited<ReturnType<typeof GetContents>>) => void;
7148
+ declare const SET_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContents>>) => void;
7149
7149
  interface GetContentsProps extends InfiniteQueryParams {
7150
7150
  featured?: boolean;
7151
7151
  type?: "video" | "audio" | "article";
@@ -7218,7 +7218,7 @@ declare const DASHBOARD_WIDGETS_QUERY_KEY: (dashboardId: string, type?: string)
7218
7218
  * @category Setters
7219
7219
  * @group Dashboards
7220
7220
  */
7221
- declare const SET_DASHBOARD_WIDGETS_QUERY_DATA: (client: QueryClient, keyParams: [dashboardId: string, type?: string | undefined], response: Awaited<ReturnType<typeof GetDashboardWidgets>>) => void;
7221
+ declare const SET_DASHBOARD_WIDGETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof DASHBOARD_WIDGETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetDashboardWidgets>>) => void;
7222
7222
  interface GetDashboardWidgetsProps extends SingleQueryParams {
7223
7223
  dashboardId: string;
7224
7224
  type?: string;
@@ -7334,7 +7334,7 @@ declare const EVENT_ACTIVATION_TRANSLATION_QUERY_KEY: (eventId: string, activati
7334
7334
  * @category Setters
7335
7335
  * @group Events
7336
7336
  */
7337
- declare const SET_EVENT_ACTIVATION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, activationId: string, locale: string], response: Awaited<ReturnType<typeof GetEventActivationTranslation>>) => void;
7337
+ declare const SET_EVENT_ACTIVATION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ACTIVATION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivationTranslation>>) => void;
7338
7338
  interface GetEventActivationTranslationProps extends SingleQueryParams {
7339
7339
  eventId: string;
7340
7340
  activationId: string;
@@ -7360,7 +7360,7 @@ declare const EVENT_ACTIVATION_TRANSLATIONS_QUERY_KEY: (eventId: string, activat
7360
7360
  * @category Setters
7361
7361
  * @group Events
7362
7362
  */
7363
- declare const SET_EVENT_ACTIVATION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, activationId: string], response: Awaited<ReturnType<typeof GetEventActivationTranslations>>) => void;
7363
+ declare const SET_EVENT_ACTIVATION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ACTIVATION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivationTranslations>>) => void;
7364
7364
  interface GetEventActivationTranslationsProps extends InfiniteQueryParams {
7365
7365
  eventId: string;
7366
7366
  activationId: string;
@@ -7385,7 +7385,7 @@ declare const EVENT_ACTIVATION_QUERY_KEY: (eventId: string, activationId: string
7385
7385
  * @category Setters
7386
7386
  * @group Events
7387
7387
  */
7388
- declare const SET_EVENT_ACTIVATION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, activationId: string], response: Awaited<ReturnType<typeof GetEventActivation>>) => void;
7388
+ declare const SET_EVENT_ACTIVATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivation>>) => void;
7389
7389
  interface GetEventActivationProps extends SingleQueryParams {
7390
7390
  eventId: string;
7391
7391
  activationId: string;
@@ -7410,7 +7410,7 @@ declare const EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY: (eventId: string, activati
7410
7410
  * @category Setters
7411
7411
  * @group Events
7412
7412
  */
7413
- declare const SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, activationId: string], response: Awaited<ReturnType<typeof GetEventActivationCompletions>>) => void;
7413
+ declare const SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivationCompletions>>) => void;
7414
7414
  interface GetEventActivationCompletionsProps extends InfiniteQueryParams {
7415
7415
  eventId: string;
7416
7416
  activationId: string;
@@ -7459,7 +7459,7 @@ declare const EVENT_ADD_ON_TRANSLATION_QUERY_KEY: (eventId: string, addOnId: str
7459
7459
  * @category Setters
7460
7460
  * @group Events
7461
7461
  */
7462
- declare const SET_EVENT_ADD_ON_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string, locale: string], response: Awaited<ReturnType<typeof GetEventAddOnTranslation>>) => void;
7462
+ declare const SET_EVENT_ADD_ON_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ADD_ON_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAddOnTranslation>>) => void;
7463
7463
  interface GetEventAddOnTranslationProps extends SingleQueryParams {
7464
7464
  eventId: string;
7465
7465
  addOnId: string;
@@ -7485,7 +7485,7 @@ declare const EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY: (eventId: string, addOnId: st
7485
7485
  * @category Setters
7486
7486
  * @group Events
7487
7487
  */
7488
- declare const SET_EVENT_ADD_ON_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnTranslations>>) => void;
7488
+ declare const SET_EVENT_ADD_ON_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAddOnTranslations>>) => void;
7489
7489
  interface GetEventAddOnTranslationsProps extends InfiniteQueryParams {
7490
7490
  eventId: string;
7491
7491
  addOnId: string;
@@ -7534,7 +7534,7 @@ declare const EVENT_ADD_ON_QUERY_KEY: (eventId: string, addOnId: string) => stri
7534
7534
  * @category Setters
7535
7535
  * @group Events
7536
7536
  */
7537
- declare const SET_EVENT_ADD_ON_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOn>>) => void;
7537
+ declare const SET_EVENT_ADD_ON_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ADD_ON_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAddOn>>) => void;
7538
7538
  interface GetEventAddOnProps extends SingleQueryParams {
7539
7539
  eventId: string;
7540
7540
  addOnId: string;
@@ -7559,7 +7559,7 @@ declare const EVENT_ADD_ON_PASS_TYPES_QUERY_KEY: (eventId: string, addOnId: stri
7559
7559
  * @category Setters
7560
7560
  * @group Events
7561
7561
  */
7562
- declare const SET_EVENT_ADD_ON_PASS_TYPES_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnPassTypes>>) => void;
7562
+ declare const SET_EVENT_ADD_ON_PASS_TYPES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ADD_ON_PASS_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAddOnPassTypes>>) => void;
7563
7563
  interface GetEventAddOnPassTypesProps extends InfiniteQueryParams {
7564
7564
  eventId: string;
7565
7565
  addOnId: string;
@@ -7584,7 +7584,7 @@ declare const EVENT_ADD_ON_PASSES_QUERY_KEY: (eventId: string, addOnId: string)
7584
7584
  * @category Setters
7585
7585
  * @group Events
7586
7586
  */
7587
- declare const SET_EVENT_ADD_ON_PASSES_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnPasses>>) => void;
7587
+ declare const SET_EVENT_ADD_ON_PASSES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ADD_ON_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAddOnPasses>>) => void;
7588
7588
  interface GetEventAddOnPassesProps extends InfiniteQueryParams {
7589
7589
  eventId: string;
7590
7590
  addOnId: string;
@@ -7609,7 +7609,7 @@ declare const EVENT_ADD_ON_TIERS_QUERY_KEY: (allowed: boolean, eventId: string,
7609
7609
  * @category Setters
7610
7610
  * @group Events
7611
7611
  */
7612
- declare const SET_EVENT_ADD_ON_TIERS_QUERY_DATA: (client: any, keyParams: [allowed: boolean, eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnTiers>>) => void;
7612
+ declare const SET_EVENT_ADD_ON_TIERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ADD_ON_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAddOnTiers>>) => void;
7613
7613
  interface GetEventAddOnTiersProps extends InfiniteQueryParams {
7614
7614
  allowed: boolean;
7615
7615
  eventId: string;
@@ -7659,7 +7659,7 @@ declare const EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY: (eventId: string, accountId
7659
7659
  * @category Setters
7660
7660
  * @group Events
7661
7661
  */
7662
- declare const SET_EVENT_ATTENDEE_RESERVATIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, accountId: string], response: Awaited<ReturnType<typeof GetEventAttendeeReservations>>) => void;
7662
+ declare const SET_EVENT_ATTENDEE_RESERVATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeeReservations>>) => void;
7663
7663
  interface GetEventAttendeeReservationsProps extends InfiniteQueryParams {
7664
7664
  eventId: string;
7665
7665
  accountId: string;
@@ -7684,7 +7684,7 @@ declare const EVENT_RESERVATION_QUERY_KEY: (eventId: string, reservationId: stri
7684
7684
  * @category Setters
7685
7685
  * @group Events
7686
7686
  */
7687
- declare const SET_EVENT_RESERVATION_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationId: string], response: Awaited<ReturnType<typeof GetEventReservation>>) => void;
7687
+ declare const SET_EVENT_RESERVATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_RESERVATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventReservation>>) => void;
7688
7688
  interface GetEventReservationProps extends SingleQueryParams {
7689
7689
  eventId: string;
7690
7690
  reservationId: string;
@@ -7709,7 +7709,7 @@ declare const EVENT_RESERVATION_PASSES_QUERY_KEY: (eventId: string, reservationI
7709
7709
  * @category Setters
7710
7710
  * @group Events
7711
7711
  */
7712
- declare const SET_EVENT_RESERVATION_PASSES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, reservationId: string], response: Awaited<ReturnType<typeof GetEventReservationPasses>>) => void;
7712
+ declare const SET_EVENT_RESERVATION_PASSES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_RESERVATION_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventReservationPasses>>) => void;
7713
7713
  interface GetEventReservationPassesProps extends InfiniteQueryParams {
7714
7714
  eventId: string;
7715
7715
  reservationId: string;
@@ -7758,7 +7758,7 @@ declare const EVENT_ATTENDEE_QUERY_KEY: (eventId: string, accountId: string) =>
7758
7758
  * @category Setters
7759
7759
  * @group Events
7760
7760
  */
7761
- declare const SET_EVENT_ATTENDEE_QUERY_DATA: (client: any, keyParams: [eventId: string, accountId: string], response: Awaited<ReturnType<typeof GetEventAttendee>>) => void;
7761
+ declare const SET_EVENT_ATTENDEE_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ATTENDEE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendee>>) => void;
7762
7762
  interface GetEventAttendeeProps extends SingleQueryParams {
7763
7763
  eventId: string;
7764
7764
  accountId: string;
@@ -7783,7 +7783,7 @@ declare const EVENT_ATTENDEE_COUPONS_QUERY_KEY: (eventId: string, accountId: str
7783
7783
  * @category Setters
7784
7784
  * @group Events
7785
7785
  */
7786
- declare const SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, accountId: string, prePaid?: boolean | undefined], response: Awaited<ReturnType<typeof GetEventAttendeeCoupons>>) => void;
7786
+ declare const SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_COUPONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeeCoupons>>) => void;
7787
7787
  interface GetEventAttendeeCouponsProps extends InfiniteQueryParams {
7788
7788
  eventId: string;
7789
7789
  accountId: string;
@@ -7809,7 +7809,7 @@ declare const EVENT_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, accountId: stri
7809
7809
  * @category Setters
7810
7810
  * @group Events
7811
7811
  */
7812
- declare const SET_EVENT_ATTENDEE_PASSES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, accountId: string, status?: "draft" | "ready" | "canceled" | "needsInfo" | undefined], response: Awaited<ReturnType<typeof GetEventAttendeePasses>>) => void;
7812
+ declare const SET_EVENT_ATTENDEE_PASSES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePasses>>) => void;
7813
7813
  interface GetEventAttendeePassesProps extends InfiniteQueryParams {
7814
7814
  eventId: string;
7815
7815
  accountId: string;
@@ -7835,7 +7835,7 @@ declare const EVENT_ATTENDEE_PAYMENTS_QUERY_KEY: (eventId: string, accountId: st
7835
7835
  * @category Setters
7836
7836
  * @group Events
7837
7837
  */
7838
- declare const SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, accountId: string], response: Awaited<ReturnType<typeof GetEventAttendeePayments>>) => void;
7838
+ declare const SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_PAYMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeePayments>>) => void;
7839
7839
  interface GetEventAttendeePaymentsProps extends InfiniteQueryParams {
7840
7840
  eventId: string;
7841
7841
  accountId: string;
@@ -7860,7 +7860,7 @@ declare const EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY: (eventId: string, accountI
7860
7860
  * @category Setters
7861
7861
  * @group Events
7862
7862
  */
7863
- declare const SET_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, accountId: string], response: Awaited<ReturnType<typeof GetEventAttendeeTransfersLogs>>) => void;
7863
+ declare const SET_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendeeTransfersLogs>>) => void;
7864
7864
  interface GetEventAttendeeTransfersLogsProps extends InfiniteQueryParams {
7865
7865
  eventId: string;
7866
7866
  accountId: string;
@@ -7885,7 +7885,7 @@ declare const EVENT_ATTENDEES_QUERY_KEY: (eventId: string, status?: PurchaseStat
7885
7885
  * @category Setters
7886
7886
  * @group Events
7887
7887
  */
7888
- declare const SET_EVENT_ATTENDEES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, status?: PurchaseStatus | undefined], response: Awaited<ReturnType<typeof GetEventAttendees>>) => void;
7888
+ declare const SET_EVENT_ATTENDEES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ATTENDEES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAttendees>>) => void;
7889
7889
  interface GetEventAttendeesProps extends InfiniteQueryParams {
7890
7890
  eventId: string;
7891
7891
  status?: PurchaseStatus;
@@ -7910,7 +7910,7 @@ declare const EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, passId: st
7910
7910
  * @category Setters
7911
7911
  * @group Events
7912
7912
  */
7913
- declare const SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, passId: string, status?: "draft" | "ready" | "canceled" | "needsInfo" | undefined], response: Awaited<ReturnType<typeof GetEventPassAttendeePasses>>) => void;
7913
+ declare const SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassAttendeePasses>>) => void;
7914
7914
  interface GetEventPassAttendeePassesProps extends InfiniteQueryParams {
7915
7915
  eventId: string;
7916
7916
  passId: string;
@@ -7936,7 +7936,7 @@ declare const EVENT_REGISTRATION_BYPASS_QUERY_KEY: (eventId: string, bypassId: s
7936
7936
  * @category Setters
7937
7937
  * @group Events
7938
7938
  */
7939
- declare const SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, bypassId: string], response: Awaited<ReturnType<typeof GetEventRegistrationBypass>>) => void;
7939
+ declare const SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_REGISTRATION_BYPASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRegistrationBypass>>) => void;
7940
7940
  interface GetEventRegistrationBypassProps extends SingleQueryParams {
7941
7941
  eventId: string;
7942
7942
  bypassId: string;
@@ -8004,7 +8004,7 @@ declare const EVENT_COUPON_QUERY_KEY: (eventId: string, couponId: string) => str
8004
8004
  * @category Setters
8005
8005
  * @group Events
8006
8006
  */
8007
- declare const SET_EVENT_COUPON_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, couponId: string], response: Awaited<ReturnType<typeof GetEventCoupon>>) => void;
8007
+ declare const SET_EVENT_COUPON_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_COUPON_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventCoupon>>) => void;
8008
8008
  interface GetEventCouponProps extends SingleQueryParams {
8009
8009
  eventId: string;
8010
8010
  couponId: string;
@@ -8029,7 +8029,7 @@ declare const EVENT_COUPON_PASSES_QUERY_KEY: (eventId: string, couponId: string)
8029
8029
  * @category Setters
8030
8030
  * @group Events
8031
8031
  */
8032
- declare const SET_EVENT_COUPON_PASSES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, couponId: string], response: Awaited<ReturnType<typeof GetEventCouponPasses>>) => void;
8032
+ declare const SET_EVENT_COUPON_PASSES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_COUPON_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventCouponPasses>>) => void;
8033
8033
  interface GetEventCouponPassesProps extends InfiniteQueryParams {
8034
8034
  eventId: string;
8035
8035
  couponId: string;
@@ -8054,7 +8054,7 @@ declare const EVENT_COUPONS_QUERY_KEY: (eventId: string, prePaid?: boolean) => s
8054
8054
  * @category Setters
8055
8055
  * @group Events
8056
8056
  */
8057
- declare const SET_EVENT_COUPONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, prePaid?: boolean | undefined], response: Awaited<ReturnType<typeof GetEventCoupons>>) => void;
8057
+ declare const SET_EVENT_COUPONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_COUPONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventCoupons>>) => void;
8058
8058
  interface GetEventCouponsProps extends InfiniteQueryParams {
8059
8059
  eventId: string;
8060
8060
  prePaid?: boolean;
@@ -8079,7 +8079,7 @@ declare const EVENT_EMAIL_TRANSLATION_QUERY_KEY: (eventId: string, type: EventEm
8079
8079
  * @category Setters
8080
8080
  * @group Events
8081
8081
  */
8082
- declare const SET_EVENT_EMAIL_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, type: EventEmailType, locale: string], response: Awaited<ReturnType<typeof GetEventEmailTranslation>>) => void;
8082
+ declare const SET_EVENT_EMAIL_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_EMAIL_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventEmailTranslation>>) => void;
8083
8083
  interface GetEventEmailTranslationProps extends SingleQueryParams {
8084
8084
  eventId: string;
8085
8085
  type: string;
@@ -8105,7 +8105,7 @@ declare const EVENT_EMAIL_TRANSLATIONS_QUERY_KEY: (eventId: string, type: EventE
8105
8105
  * @category Setters
8106
8106
  * @group Events
8107
8107
  */
8108
- declare const SET_EVENT_EMAIL_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, type: EventEmailType], response: Awaited<ReturnType<typeof GetEventEmailTranslations>>) => void;
8108
+ declare const SET_EVENT_EMAIL_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_EMAIL_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventEmailTranslations>>) => void;
8109
8109
  interface GetEventEmailTranslationsProps extends InfiniteQueryParams {
8110
8110
  eventId: string;
8111
8111
  type: string;
@@ -8130,7 +8130,7 @@ declare const EVENT_EMAIL_QUERY_KEY: (eventId: string, type: EventEmailType) =>
8130
8130
  * @category Setters
8131
8131
  * @group Events
8132
8132
  */
8133
- declare const SET_EVENT_EMAIL_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, type: EventEmailType], response: Awaited<ReturnType<typeof GetEventEmail>>) => void;
8133
+ declare const SET_EVENT_EMAIL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_EMAIL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventEmail>>) => void;
8134
8134
  interface GetEventEmailProps extends SingleQueryParams {
8135
8135
  eventId: string;
8136
8136
  type: EventEmailType;
@@ -8155,7 +8155,7 @@ declare const EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_KEY: (eventId: string
8155
8155
  * @category Setters
8156
8156
  * @group Events
8157
8157
  */
8158
- declare const SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string, questionId: string, locale: string], response: Awaited<ReturnType<typeof GetEventFaqSectionQuestionTranslation>>) => void;
8158
+ declare const SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSectionQuestionTranslation>>) => void;
8159
8159
  interface GetEventFaqSectionQuestionTranslationProps extends SingleQueryParams {
8160
8160
  eventId: string;
8161
8161
  sectionId: string;
@@ -8182,7 +8182,7 @@ declare const EVENT_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_KEY: (eventId: strin
8182
8182
  * @category Setters
8183
8183
  * @group Events
8184
8184
  */
8185
- declare const SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventFaqSectionQuestionTranslations>>) => void;
8185
+ declare const SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSectionQuestionTranslations>>) => void;
8186
8186
  interface GetEventFaqSectionQuestionTranslationsProps extends InfiniteQueryParams {
8187
8187
  eventId: string;
8188
8188
  sectionId: string;
@@ -8208,7 +8208,7 @@ declare const EVENT_FAQ_SECTION_TRANSLATION_QUERY_KEY: (eventId: string, section
8208
8208
  * @category Setters
8209
8209
  * @group Events
8210
8210
  */
8211
- declare const SET_EVENT_FAQ_SECTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string, locale: string], response: Awaited<ReturnType<typeof GetEventFaqSectionTranslation>>) => void;
8211
+ declare const SET_EVENT_FAQ_SECTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_FAQ_SECTION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSectionTranslation>>) => void;
8212
8212
  interface GetEventFaqSectionTranslationProps extends SingleQueryParams {
8213
8213
  eventId: string;
8214
8214
  sectionId: string;
@@ -8234,7 +8234,7 @@ declare const EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_KEY: (eventId: string, sectio
8234
8234
  * @category Setters
8235
8235
  * @group Events
8236
8236
  */
8237
- declare const SET_EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventFaqSectionTranslations>>) => void;
8237
+ declare const SET_EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSectionTranslations>>) => void;
8238
8238
  interface GetEventFaqSectionTranslationsProps extends InfiniteQueryParams {
8239
8239
  eventId: string;
8240
8240
  sectionId: string;
@@ -8259,7 +8259,7 @@ declare const EVENT_FAQ_SECTION_QUERY_KEY: (eventId: string, sectionId: string)
8259
8259
  * @category Setters
8260
8260
  * @group Events
8261
8261
  */
8262
- declare const SET_EVENT_FAQ_SECTION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventFaqSection>>) => void;
8262
+ declare const SET_EVENT_FAQ_SECTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSection>>) => void;
8263
8263
  interface GetEventFaqSectionProps extends SingleQueryParams {
8264
8264
  eventId: string;
8265
8265
  sectionId: string;
@@ -8284,7 +8284,7 @@ declare const EVENT_FAQ_SECTION_QUESTION_QUERY_KEY: (eventId: string, sectionId:
8284
8284
  * @category Setters
8285
8285
  * @group Events
8286
8286
  */
8287
- declare const SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sectionId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventFaqSectionQuestion>>) => void;
8287
+ declare const SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSectionQuestion>>) => void;
8288
8288
  interface GetEventFaqSectionQuestionProps extends SingleQueryParams {
8289
8289
  eventId: string;
8290
8290
  sectionId: string;
@@ -8310,7 +8310,7 @@ declare const EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY: (eventId: string, sectionId
8310
8310
  * @category Setters
8311
8311
  * @group Events
8312
8312
  */
8313
- declare const SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventFaqSectionQuestions>>) => void;
8313
+ declare const SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSectionQuestions>>) => void;
8314
8314
  interface GetEventFaqSectionQuestionsProps extends InfiniteQueryParams {
8315
8315
  sectionId: string;
8316
8316
  eventId: string;
@@ -8359,7 +8359,7 @@ declare const EVENT_GALLERY_IMAGE_QUERY_KEY: (eventId: string, galleryImageId: s
8359
8359
  * @category Setters
8360
8360
  * @group Events
8361
8361
  */
8362
- declare const SET_EVENT_GALLERY_IMAGE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, galleryImageId: string], response: Awaited<ReturnType<typeof GetEventGalleryImage>>) => void;
8362
+ declare const SET_EVENT_GALLERY_IMAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_GALLERY_IMAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventGalleryImage>>) => void;
8363
8363
  interface GetEventGalleryImageProps extends SingleQueryParams {
8364
8364
  eventId: string;
8365
8365
  galleryImageId: string;
@@ -8481,7 +8481,7 @@ declare const EVENT_PACKAGE_PASS_QUERY_KEY: (eventId: string, packageId: string,
8481
8481
  * @category Setters
8482
8482
  * @group Events
8483
8483
  */
8484
- declare const SET_EVENT_PACKAGE_PASS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, packageId: string, passId: string], response: Awaited<ReturnType<typeof GetEventPackagePass>>) => void;
8484
+ declare const SET_EVENT_PACKAGE_PASS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PACKAGE_PASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPackagePass>>) => void;
8485
8485
  interface GetEventPackagePassProps extends SingleQueryParams {
8486
8486
  eventId: string;
8487
8487
  packageId: string;
@@ -8507,7 +8507,7 @@ declare const EVENT_PACKAGE_PASSES_QUERY_KEY: (eventId: string, packageId: strin
8507
8507
  * @category Setters
8508
8508
  * @group Events
8509
8509
  */
8510
- declare const SET_EVENT_PACKAGE_PASSES_QUERY_DATA: (client: any, keyParams: [eventId: string, packageId: string], response: Awaited<ReturnType<typeof GetEventPackagePasses>>) => void;
8510
+ declare const SET_EVENT_PACKAGE_PASSES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PACKAGE_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPackagePasses>>) => void;
8511
8511
  interface GetEventPackagePassesProps extends InfiniteQueryParams {
8512
8512
  eventId: string;
8513
8513
  packageId: string;
@@ -8532,7 +8532,7 @@ declare const EVENT_PACKAGE_TRANSLATION_QUERY_KEY: (eventId: string, packageId:
8532
8532
  * @category Setters
8533
8533
  * @group Events
8534
8534
  */
8535
- declare const SET_EVENT_PACKAGE_TRANSLATION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, packageId: string, locale: string], response: Awaited<ReturnType<typeof GetEventPackageTranslation>>) => void;
8535
+ declare const SET_EVENT_PACKAGE_TRANSLATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PACKAGE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPackageTranslation>>) => void;
8536
8536
  interface GetEventPackageTranslationProps extends SingleQueryParams {
8537
8537
  eventId: string;
8538
8538
  packageId: string;
@@ -8558,7 +8558,7 @@ declare const EVENT_PACKAGE_TRANSLATIONS_QUERY_KEY: (eventId: string, packageId:
8558
8558
  * @category Setters
8559
8559
  * @group Events
8560
8560
  */
8561
- declare const SET_EVENT_PACKAGE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, packageId: string], response: Awaited<ReturnType<typeof GetEventPackageTranslations>>) => void;
8561
+ declare const SET_EVENT_PACKAGE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PACKAGE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPackageTranslations>>) => void;
8562
8562
  interface GetEventPackageTranslationsProps extends InfiniteQueryParams {
8563
8563
  eventId: string;
8564
8564
  packageId: string;
@@ -8583,7 +8583,7 @@ declare const EVENT_PACKAGE_QUERY_KEY: (eventId: string, packageId: string) => s
8583
8583
  * @category Setters
8584
8584
  * @group Events
8585
8585
  */
8586
- declare const SET_EVENT_PACKAGE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, packageId: string], response: Awaited<ReturnType<typeof GetEventPackage>>) => void;
8586
+ declare const SET_EVENT_PACKAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PACKAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPackage>>) => void;
8587
8587
  interface GetEventPackageProps extends SingleQueryParams {
8588
8588
  eventId: string;
8589
8589
  packageId: string;
@@ -8632,7 +8632,7 @@ declare const EVENT_PAGE_TRANSLATION_QUERY_KEY: (eventId: string, pageId: string
8632
8632
  * @category Setters
8633
8633
  * @group Events
8634
8634
  */
8635
- declare const SET_EVENT_PAGE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, pageId: string, locale: string], response: Awaited<ReturnType<typeof GetEventPageTranslation>>) => void;
8635
+ declare const SET_EVENT_PAGE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PAGE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPageTranslation>>) => void;
8636
8636
  interface GetEventPageTranslationProps extends SingleQueryParams {
8637
8637
  eventId: string;
8638
8638
  pageId: string;
@@ -8658,7 +8658,7 @@ declare const EVENT_PAGE_TRANSLATIONS_QUERY_KEY: (eventId: string, pageId: strin
8658
8658
  * @category Setters
8659
8659
  * @group Events
8660
8660
  */
8661
- declare const SET_EVENT_PAGE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, pageId: string], response: Awaited<ReturnType<typeof GetEventPageTranslations>>) => void;
8661
+ declare const SET_EVENT_PAGE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PAGE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPageTranslations>>) => void;
8662
8662
  interface GetEventPageTranslationsProps extends InfiniteQueryParams {
8663
8663
  eventId: string;
8664
8664
  pageId: string;
@@ -8683,7 +8683,7 @@ declare const EVENT_PAGE_QUERY_KEY: (eventId: string, pageId: string) => string[
8683
8683
  * @category Setters
8684
8684
  * @group Events
8685
8685
  */
8686
- declare const SET_EVENT_PAGE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, pageId: string], response: Awaited<ReturnType<typeof GetEventPage>>) => void;
8686
+ declare const SET_EVENT_PAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPage>>) => void;
8687
8687
  interface GetEventPageProps extends SingleQueryParams {
8688
8688
  eventId: string;
8689
8689
  pageId: string;
@@ -8708,7 +8708,7 @@ declare const EVENT_PAGE_IMAGES_QUERY_KEY: (eventId: string, pageId: string) =>
8708
8708
  * @category Setters
8709
8709
  * @group Events
8710
8710
  */
8711
- declare const SET_EVENT_PAGE_IMAGES_QUERY_DATA: (client: any, keyParams: [eventId: string, pageId: string], response: Awaited<ReturnType<typeof GetEventPageImages>>) => void;
8711
+ declare const SET_EVENT_PAGE_IMAGES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PAGE_IMAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPageImages>>) => void;
8712
8712
  interface GetEventPageImagesProps extends InfiniteQueryParams {
8713
8713
  eventId: string;
8714
8714
  pageId: string;
@@ -8749,7 +8749,7 @@ declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, a
8749
8749
  declare const useGetEventPages: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventPage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
8750
8750
 
8751
8751
  declare const EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY: (eventId: string, passTypeId: string, scheduleId: string) => string[];
8752
- declare const SET_EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_DATA: (client: any, keyParams: [eventId: string, passTypeId: string, scheduleId: string], response: Awaited<ReturnType<typeof GetEventPassTypePriceSchedule>>) => void;
8752
+ declare const SET_EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypePriceSchedule>>) => void;
8753
8753
  interface GetEventPassTypePriceScheduleParams extends SingleQueryParams {
8754
8754
  eventId: string;
8755
8755
  passTypeId: string;
@@ -8767,7 +8767,7 @@ declare const EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_KEY: (eventId: string, passT
8767
8767
  * @category Setters
8768
8768
  * @group Events
8769
8769
  */
8770
- declare const SET_EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_DATA: (client: any, keyParams: [eventId: string, passTypeId: string], response: Awaited<ReturnType<typeof GetEventPassTypePriceSchedules>>) => void;
8770
+ declare const SET_EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypePriceSchedules>>) => void;
8771
8771
  interface GetEventPassTypePriceSchedulesParams extends InfiniteQueryParams {
8772
8772
  eventId: string;
8773
8773
  passTypeId: string;
@@ -8784,7 +8784,7 @@ declare const GetEventPassTypePriceSchedules: ({ pageParam, pageSize, orderBy, s
8784
8784
  declare const useGetEventPassTypePriceSchedules: (eventId?: string, passTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPassTypePriceSchedules>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventPassTypePriceSchedule[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
8785
8785
 
8786
8786
  declare const EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_KEY: (eventId: string, passTypeId: string, scheduleId: string) => string[];
8787
- declare const SET_EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_DATA: (client: any, keyParams: [eventId: string, passTypeId: string, scheduleId: string], response: Awaited<ReturnType<typeof GetEventPassTypeRefundSchedule>>) => void;
8787
+ declare const SET_EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypeRefundSchedule>>) => void;
8788
8788
  interface GetEventPassTypeRefundScheduleParams extends SingleQueryParams {
8789
8789
  eventId: string;
8790
8790
  passTypeId: string;
@@ -8802,7 +8802,7 @@ declare const EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_KEY: (eventId: string, pass
8802
8802
  * @category Setters
8803
8803
  * @group Events
8804
8804
  */
8805
- declare const SET_EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_DATA: (client: any, keyParams: [eventId: string, passTypeId: string], response: Awaited<ReturnType<typeof GetEventPassTypeRefundSchedules>>) => void;
8805
+ declare const SET_EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypeRefundSchedules>>) => void;
8806
8806
  interface GetEventPassTypeRefundSchedulesParams extends InfiniteQueryParams {
8807
8807
  eventId: string;
8808
8808
  passTypeId: string;
@@ -8827,7 +8827,7 @@ declare const EVENT_PASS_TYPE_TRANSLATION_QUERY_KEY: (eventId: string, passTypeI
8827
8827
  * @category Setters
8828
8828
  * @group Events
8829
8829
  */
8830
- declare const SET_EVENT_PASS_TYPE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, passTypeId: string, locale: string], response: Awaited<ReturnType<typeof GetEventPassTypeTranslation>>) => void;
8830
+ declare const SET_EVENT_PASS_TYPE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypeTranslation>>) => void;
8831
8831
  interface GetEventPassTypeTranslationProps extends SingleQueryParams {
8832
8832
  eventId: string;
8833
8833
  passTypeId: string;
@@ -8853,7 +8853,7 @@ declare const EVENT_PASS_TYPE_TRANSLATIONS_QUERY_KEY: (eventId: string, passType
8853
8853
  * @category Setters
8854
8854
  * @group Events
8855
8855
  */
8856
- declare const SET_EVENT_PASS_TYPE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, passTypeId: string], response: Awaited<ReturnType<typeof GetEventPassTypeTranslations>>) => void;
8856
+ declare const SET_EVENT_PASS_TYPE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypeTranslations>>) => void;
8857
8857
  interface GetEventPassTypeTranslationsProps extends InfiniteQueryParams {
8858
8858
  eventId: string;
8859
8859
  passTypeId: string;
@@ -8902,7 +8902,7 @@ declare const EVENT_PASS_TYPE_QUERY_KEY: (eventId: string, passTypeId: string) =
8902
8902
  * @category Setters
8903
8903
  * @group Events
8904
8904
  */
8905
- declare const SET_EVENT_PASS_TYPE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, passTypeId: string], response: Awaited<ReturnType<typeof GetEventPassType>>) => void;
8905
+ declare const SET_EVENT_PASS_TYPE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_TYPE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassType>>) => void;
8906
8906
  interface GetEventPassTypeParams extends SingleQueryParams {
8907
8907
  eventId: string;
8908
8908
  passTypeId: string;
@@ -8927,7 +8927,7 @@ declare const EVENT_PASS_TYPE_ADD_ONS_QUERY_KEY: (eventId: string, passTypeId: s
8927
8927
  * @category Setters
8928
8928
  * @group Events
8929
8929
  */
8930
- declare const SET_EVENT_PASS_TYPE_ADD_ONS_QUERY_DATA: (client: any, keyParams: [eventId: string, passTypeId: string], response: Awaited<ReturnType<typeof GetEventPassTypeAddOns>>) => void;
8930
+ declare const SET_EVENT_PASS_TYPE_ADD_ONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypeAddOns>>) => void;
8931
8931
  interface GetEventPassTypeAddOnsProps extends InfiniteQueryParams {
8932
8932
  eventId: string;
8933
8933
  passTypeId: string;
@@ -8952,7 +8952,7 @@ declare const EVENT_PASS_TYPE_COUPONS_QUERY_KEY: (eventId: string, passTypeId: s
8952
8952
  * @category Setters
8953
8953
  * @group Events
8954
8954
  */
8955
- declare const SET_PASS_TYPE_COUPONS_QUERY_DATA: (client: any, keyParams: [eventId: string, passTypeId: string], response: Awaited<ReturnType<typeof EventGetPassTypeCoupons>>) => void;
8955
+ declare const SET_PASS_TYPE_COUPONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_COUPONS_QUERY_KEY>, response: Awaited<ReturnType<typeof EventGetPassTypeCoupons>>) => void;
8956
8956
  interface EventGetPassTypeCouponsProps extends InfiniteQueryParams {
8957
8957
  eventId: string;
8958
8958
  passTypeId: string;
@@ -8977,7 +8977,7 @@ declare const EVENT_PASS_TYPE_PASSES_QUERY_KEY: (eventId: string, passTypeId: st
8977
8977
  * @category Setters
8978
8978
  * @group Events
8979
8979
  */
8980
- declare const SET_EVENT_PASS_TYPE_PASSES_QUERY_DATA: (client: any, keyParams: [eventId: string, passTypeId: string, checkedIn?: boolean | undefined], response: Awaited<ReturnType<typeof GetEventPassTypePasses>>) => void;
8980
+ declare const SET_EVENT_PASS_TYPE_PASSES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypePasses>>) => void;
8981
8981
  interface GetEventPassTypePassesProps extends InfiniteQueryParams {
8982
8982
  eventId: string;
8983
8983
  passTypeId: string;
@@ -9003,7 +9003,7 @@ declare const EVENT_PASS_TYPE_TIERS_QUERY_KEY: (allowed: boolean, eventId: strin
9003
9003
  * @category Setters
9004
9004
  * @group Events
9005
9005
  */
9006
- declare const SET_EVENT_PASS_TYPE_TIERS_QUERY_DATA: (client: any, keyParams: [allowed: boolean, eventId: string, passTypeId: string], response: Awaited<ReturnType<typeof GetEventPassTypeTiers>>) => void;
9006
+ declare const SET_EVENT_PASS_TYPE_TIERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypeTiers>>) => void;
9007
9007
  interface GetEventPassTypeTiersProps extends InfiniteQueryParams {
9008
9008
  allowed: boolean;
9009
9009
  eventId: string;
@@ -9053,7 +9053,7 @@ declare const EVENT_PASS_QUERY_KEY: (eventId: string, passId: string) => string[
9053
9053
  * @category Setters
9054
9054
  * @group Events
9055
9055
  */
9056
- declare const SET_EVENT_PASS_QUERY_DATA: (client: any, keyParams: [eventId: string, passId: string], response: Awaited<ReturnType<typeof GetEventPass>>) => void;
9056
+ declare const SET_EVENT_PASS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPass>>) => void;
9057
9057
  interface GetEventPassProps extends SingleQueryParams {
9058
9058
  eventId: string;
9059
9059
  passId: string;
@@ -9078,7 +9078,7 @@ declare const EVENT_PASS_ADD_ONS_QUERY_KEY: (eventId: string, passId: string) =>
9078
9078
  * @category Setters
9079
9079
  * @group Events
9080
9080
  */
9081
- declare const SET_EVENT_PASS_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, passId: string], response: Awaited<ReturnType<typeof GetEventPassAddOns>>) => void;
9081
+ declare const SET_EVENT_PASS_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassAddOns>>) => void;
9082
9082
  interface GetEventPassAddOnsProps extends InfiniteQueryParams {
9083
9083
  eventId: string;
9084
9084
  passId: string;
@@ -9103,7 +9103,7 @@ declare const EVENT_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId:
9103
9103
  * @category Setters
9104
9104
  * @group Events
9105
9105
  */
9106
- declare const SET_EVENT_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, passId: string], response: Awaited<ReturnType<typeof GetEventPassQuestionSections>>) => void;
9106
+ declare const SET_EVENT_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassQuestionSections>>) => void;
9107
9107
  interface GetEventPassQuestionSectionsProps extends InfiniteQueryParams {
9108
9108
  eventId: string;
9109
9109
  accountId: string;
@@ -9129,7 +9129,7 @@ declare const EVENT_PASS_RESPONSE_QUERY_KEY: (eventId: string, passId: string, q
9129
9129
  * @category Setters
9130
9130
  * @group Events
9131
9131
  */
9132
- declare const SET_EVENT_PASS_RESPONSE_QUERY_DATA: (client: any, keyParams: [eventId: string, passId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventPassResponse>>) => void;
9132
+ declare const SET_EVENT_PASS_RESPONSE_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_RESPONSE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassResponse>>) => void;
9133
9133
  interface GetEventPassResponseProps extends SingleQueryParams {
9134
9134
  eventId: string;
9135
9135
  passId: string;
@@ -9155,7 +9155,7 @@ declare const EVENT_PASS_RESPONSE_CHANGES_QUERY_KEY: (eventId: string, passId: s
9155
9155
  * @category Setters
9156
9156
  * @group Events
9157
9157
  */
9158
- declare const SET_EVENT_PASS_RESPONSE_CHANGES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, passId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventPassResponseChanges>>) => void;
9158
+ declare const SET_EVENT_PASS_RESPONSE_CHANGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_RESPONSE_CHANGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassResponseChanges>>) => void;
9159
9159
  interface GetEventPassResponseChangesProps extends InfiniteQueryParams {
9160
9160
  eventId: string;
9161
9161
  passId: string;
@@ -9184,7 +9184,7 @@ declare const EVENT_PASS_RESPONSES_QUERY_KEY: (eventId: string, passId: string)
9184
9184
  * @category Setters
9185
9185
  * @group Events
9186
9186
  */
9187
- declare const SET_EVENT_PASS_RESPONSES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, passId: string], response: Awaited<ReturnType<typeof GetEventPassResponses>>) => void;
9187
+ declare const SET_EVENT_PASS_RESPONSES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_RESPONSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassResponses>>) => void;
9188
9188
  interface GetEventPassResponsesProps extends InfiniteQueryParams {
9189
9189
  eventId: string;
9190
9190
  passId: string;
@@ -9209,7 +9209,7 @@ declare const EVENT_PASS_TRANSFER_LOGS_QUERY_KEY: (eventId: string, passId: stri
9209
9209
  * @category Setters
9210
9210
  * @group Events
9211
9211
  */
9212
- declare const SET_EVENT_PASS_TRANSFER_LOGS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, passId: string], response: Awaited<ReturnType<typeof GetEventPassTransferLogs>>) => void;
9212
+ declare const SET_EVENT_PASS_TRANSFER_LOGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_TRANSFER_LOGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTransferLogs>>) => void;
9213
9213
  interface GetEventPassTransferLogsProps extends InfiniteQueryParams {
9214
9214
  eventId: string;
9215
9215
  passId: string;
@@ -9254,7 +9254,7 @@ declare const EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_KEY: (eventId: string, que
9254
9254
  * @category Setters
9255
9255
  * @group Events
9256
9256
  */
9257
- declare const SET_EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, questionId: string, choiceId: string, locale: string], response: Awaited<ReturnType<typeof GetEventQuestionChoiceTranslation>>) => void;
9257
+ declare const SET_EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionChoiceTranslation>>) => void;
9258
9258
  interface GetEventQuestionChoiceTranslationProps extends SingleQueryParams {
9259
9259
  eventId: string;
9260
9260
  questionId: string;
@@ -9281,7 +9281,7 @@ declare const EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY: (eventId: string, qu
9281
9281
  * @category Setters
9282
9282
  * @group Events
9283
9283
  */
9284
- declare const SET_EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, questionId: string, choiceId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoiceTranslations>>) => void;
9284
+ declare const SET_EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionChoiceTranslations>>) => void;
9285
9285
  interface GetEventQuestionChoiceTranslationsProps extends InfiniteQueryParams {
9286
9286
  eventId: string;
9287
9287
  questionId: string;
@@ -9307,7 +9307,7 @@ declare const EVENT_QUESTION_TRANSLATION_QUERY_KEY: (eventId: string, questionId
9307
9307
  * @category Setters
9308
9308
  * @group Events
9309
9309
  */
9310
- declare const SET_EVENT_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, questionId: string, locale: string], response: Awaited<ReturnType<typeof GetEventQuestionTranslation>>) => void;
9310
+ declare const SET_EVENT_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_QUESTION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionTranslation>>) => void;
9311
9311
  interface GetEventQuestionTranslationProps extends SingleQueryParams {
9312
9312
  eventId: string;
9313
9313
  questionId: string;
@@ -9333,7 +9333,7 @@ declare const EVENT_QUESTION_TRANSLATIONS_QUERY_KEY: (eventId: string, questionI
9333
9333
  * @category Setters
9334
9334
  * @group Events
9335
9335
  */
9336
- declare const SET_EVENT_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventQuestionTranslations>>) => void;
9336
+ declare const SET_EVENT_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_QUESTION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionTranslations>>) => void;
9337
9337
  interface GetEventQuestionTranslationsProps extends InfiniteQueryParams {
9338
9338
  eventId: string;
9339
9339
  questionId: string;
@@ -9358,7 +9358,7 @@ declare const EVENT_QUESTION_QUERY_KEY: (eventId: string, questionId: string) =>
9358
9358
  * @category Setters
9359
9359
  * @group Events
9360
9360
  */
9361
- declare const SET_EVENT_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventQuestion>>) => void;
9361
+ declare const SET_EVENT_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUESTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestion>>) => void;
9362
9362
  interface GetEventQuestionProps extends SingleQueryParams {
9363
9363
  eventId: string;
9364
9364
  questionId: string;
@@ -9383,7 +9383,7 @@ declare const EVENT_QUESTION_CHOICE_QUERY_KEY: (eventId: string, questionId: str
9383
9383
  * @category Setters
9384
9384
  * @group Events
9385
9385
  */
9386
- declare const SET_EVENT_QUESTION_CHOICE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, questionId: string, choiceId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoice>>) => void;
9386
+ declare const SET_EVENT_QUESTION_CHOICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUESTION_CHOICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionChoice>>) => void;
9387
9387
  interface GetEventQuestionChoiceProps extends SingleQueryParams {
9388
9388
  eventId: string;
9389
9389
  questionId: string;
@@ -9409,7 +9409,7 @@ declare const EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_KEY: (eventId: string, quest
9409
9409
  * @category Setters
9410
9410
  * @group Events
9411
9411
  */
9412
- declare const SET_EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, questionId: string, choiceId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoiceSubQuestions>>) => void;
9412
+ declare const SET_EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionChoiceSubQuestions>>) => void;
9413
9413
  interface GetEventQuestionChoiceSubQuestionsProps extends InfiniteQueryParams {
9414
9414
  eventId: string;
9415
9415
  questionId: string;
@@ -9435,7 +9435,7 @@ declare const EVENT_QUESTION_CHOICES_QUERY_KEY: (eventId: string, questionId: st
9435
9435
  * @category Setters
9436
9436
  * @group Events
9437
9437
  */
9438
- declare const SET_EVENT_QUESTION_CHOICES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoices>>) => void;
9438
+ declare const SET_EVENT_QUESTION_CHOICES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUESTION_CHOICES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionChoices>>) => void;
9439
9439
  interface GetEventQuestionChoicesProps extends InfiniteQueryParams {
9440
9440
  eventId: string;
9441
9441
  questionId: string;
@@ -9460,7 +9460,7 @@ declare const EVENT_QUESTION_RESPONSES_QUERY_KEY: (eventId: string, questionId:
9460
9460
  * @category Setters
9461
9461
  * @group Events
9462
9462
  */
9463
- declare const SET_EVENT_QUESTION_RESPONSES_QUERY_DATA: (client: any, keyParams: [eventId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventQuestionResponses>>) => void;
9463
+ declare const SET_EVENT_QUESTION_RESPONSES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_QUESTION_RESPONSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionResponses>>) => void;
9464
9464
  interface GetEventQuestionResponsesProps extends InfiniteQueryParams {
9465
9465
  eventId: string;
9466
9466
  questionId: string;
@@ -9485,7 +9485,7 @@ declare const EVENT_QUESTION_SEARCH_VALUE_QUERY_KEY: (eventId: string, questionI
9485
9485
  * @category Setters
9486
9486
  * @group Events
9487
9487
  */
9488
- declare const SET_EVENT_QUESTION_SEARCH_VALUE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, questionId: string, searchValueId: string], response: Awaited<ReturnType<typeof GetEventQuestionSearchValue>>) => void;
9488
+ declare const SET_EVENT_QUESTION_SEARCH_VALUE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUESTION_SEARCH_VALUE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionSearchValue>>) => void;
9489
9489
  interface GetEventQuestionSearchValueProps extends SingleQueryParams {
9490
9490
  eventId: string;
9491
9491
  questionId: string;
@@ -9511,7 +9511,7 @@ declare const EVENT_QUESTION_SEARCH_VALUES_QUERY_KEY: (eventId: string, question
9511
9511
  * @category Setters
9512
9512
  * @group Events
9513
9513
  */
9514
- declare const SET_EVENT_QUESTION_SEARCH_VALUES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventQuestionSearchValues>>) => void;
9514
+ declare const SET_EVENT_QUESTION_SEARCH_VALUES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUESTION_SEARCH_VALUES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionSearchValues>>) => void;
9515
9515
  interface GetEventQuestionSearchValuesProps extends InfiniteQueryParams {
9516
9516
  eventId: string;
9517
9517
  questionId: string;
@@ -9569,7 +9569,7 @@ declare const EVENT_QUESTION_SUMMARY_QUERY_KEY: (eventId: string, questionId: st
9569
9569
  * @category Setters
9570
9570
  * @group Events
9571
9571
  */
9572
- declare const SET_EVENT_QUESTION_SUMMARY_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventQuestionSummary>>) => void;
9572
+ declare const SET_EVENT_QUESTION_SUMMARY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUESTION_SUMMARY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestionSummary>>) => void;
9573
9573
  interface GetEventQuestionSummaryProps extends SingleQueryParams {
9574
9574
  eventId: string;
9575
9575
  questionId: string;
@@ -9642,7 +9642,7 @@ declare const EVENT_ROOM_TYPE_TRANSLATION_QUERY_KEY: (eventId: string, roomTypeI
9642
9642
  * @category Setters
9643
9643
  * @group Events
9644
9644
  */
9645
- declare const SET_EVENT_ROOM_TYPE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, roomTypeId: string, locale: string], response: Awaited<ReturnType<typeof GetEventRoomTypeTranslation>>) => void;
9645
+ declare const SET_EVENT_ROOM_TYPE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypeTranslation>>) => void;
9646
9646
  interface GetEventRoomTypeTranslationProps extends SingleQueryParams {
9647
9647
  eventId: string;
9648
9648
  roomTypeId: string;
@@ -9668,7 +9668,7 @@ declare const EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY: (eventId: string, roomType
9668
9668
  * @category Setters
9669
9669
  * @group Events
9670
9670
  */
9671
- declare const SET_EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, roomTypeId: string], response: Awaited<ReturnType<typeof GetEventRoomTypeTranslations>>) => void;
9671
+ declare const SET_EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypeTranslations>>) => void;
9672
9672
  interface GetEventRoomTypeTranslationsProps extends InfiniteQueryParams {
9673
9673
  eventId: string;
9674
9674
  roomTypeId: string;
@@ -9693,7 +9693,7 @@ declare const EVENT_ROOM_TYPE_QUERY_KEY: (eventId: string, roomTypeId: string) =
9693
9693
  * @category Setters
9694
9694
  * @group Events
9695
9695
  */
9696
- declare const SET_EVENT_ROOM_TYPE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, roomTypeId: string], response: Awaited<ReturnType<typeof GetEventRoomType>>) => void;
9696
+ declare const SET_EVENT_ROOM_TYPE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ROOM_TYPE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomType>>) => void;
9697
9697
  interface GetEventRoomTypeProps extends SingleQueryParams {
9698
9698
  eventId: string;
9699
9699
  roomTypeId: string;
@@ -9718,7 +9718,7 @@ declare const EVENT_ROOM_TYPE_PASSES_QUERY_KEY: (eventId: string, roomTypeId: st
9718
9718
  * @category Setters
9719
9719
  * @group Events
9720
9720
  */
9721
- declare const SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA: (client: any, keyParams: [eventId: string, roomTypeId: string], response: Awaited<ReturnType<typeof GetEventRoomTypePasses>>) => void;
9721
+ declare const SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypePasses>>) => void;
9722
9722
  interface GetEventRoomTypePassesProps extends InfiniteQueryParams {
9723
9723
  eventId: string;
9724
9724
  roomTypeId: string;
@@ -9743,7 +9743,7 @@ declare const EVENT_ROOM_TYPE_TIERS_QUERY_KEY: (allowed: boolean, eventId: strin
9743
9743
  * @category Setters
9744
9744
  * @group Events
9745
9745
  */
9746
- declare const SET_EVENT_ROOM_TYPE_TIERS_QUERY_DATA: (client: any, keyParams: [allowed: boolean, eventId: string, roomTypeId: string], response: Awaited<ReturnType<typeof GetEventRoomTypeTiers>>) => void;
9746
+ declare const SET_EVENT_ROOM_TYPE_TIERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPE_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypeTiers>>) => void;
9747
9747
  interface GetEventRoomTypeTiersProps extends InfiniteQueryParams {
9748
9748
  allowed: boolean;
9749
9749
  eventId: string;
@@ -9793,7 +9793,7 @@ declare const EVENT_SECTION_TRANSLATION_QUERY_KEY: (eventId: string, sectionId:
9793
9793
  * @category Setters
9794
9794
  * @group Events
9795
9795
  */
9796
- declare const SET_EVENT_SECTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string, locale: string], response: Awaited<ReturnType<typeof GetEventSectionTranslation>>) => void;
9796
+ declare const SET_EVENT_SECTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SECTION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSectionTranslation>>) => void;
9797
9797
  interface GetEventSectionTranslationProps extends SingleQueryParams {
9798
9798
  eventId: string;
9799
9799
  sectionId: string;
@@ -9819,7 +9819,7 @@ declare const EVENT_SECTION_TRANSLATIONS_QUERY_KEY: (eventId: string, sectionId:
9819
9819
  * @category Setters
9820
9820
  * @group Events
9821
9821
  */
9822
- declare const SET_EVENT_SECTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionTranslations>>) => void;
9822
+ declare const SET_EVENT_SECTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SECTION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSectionTranslations>>) => void;
9823
9823
  interface GetEventSectionTranslationsProps extends InfiniteQueryParams {
9824
9824
  eventId: string;
9825
9825
  sectionId: string;
@@ -9844,7 +9844,7 @@ declare const EVENT_SECTION_QUERY_KEY: (eventId: string, sectionId: string) => s
9844
9844
  * @category Setters
9845
9845
  * @group Events
9846
9846
  */
9847
- declare const SET_EVENT_SECTION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSection>>) => void;
9847
+ declare const SET_EVENT_SECTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SECTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSection>>) => void;
9848
9848
  interface GetEventSectionProps extends SingleQueryParams {
9849
9849
  eventId: string;
9850
9850
  sectionId: string;
@@ -9869,7 +9869,7 @@ declare const EVENT_SECTION_ADDONS_QUERY_KEY: (eventId: string, sectionId: strin
9869
9869
  * @category Setters
9870
9870
  * @group Events
9871
9871
  */
9872
- declare const SET_EVENT_SECTION_ADDONS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionAddOns>>) => void;
9872
+ declare const SET_EVENT_SECTION_ADDONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SECTION_ADDONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSectionAddOns>>) => void;
9873
9873
  interface GetEventSectionAddOnsProps extends InfiniteQueryParams {
9874
9874
  eventId: string;
9875
9875
  sectionId: string;
@@ -9894,7 +9894,7 @@ declare const EVENT_SECTION_PASS_TYPES_QUERY_KEY: (eventId: string, sectionId: s
9894
9894
  * @category Setters
9895
9895
  * @group Events
9896
9896
  */
9897
- declare const SET_EVENT_SECTION_PASS_TYPES_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionPassTypes>>) => void;
9897
+ declare const SET_EVENT_SECTION_PASS_TYPES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SECTION_PASS_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSectionPassTypes>>) => void;
9898
9898
  interface GetEventSectionPassTypesProps extends InfiniteQueryParams {
9899
9899
  eventId: string;
9900
9900
  sectionId: string;
@@ -9919,7 +9919,7 @@ declare const EVENT_SECTION_QUESTIONS_QUERY_KEY: (eventId: string, sectionId: st
9919
9919
  * @category Setters
9920
9920
  * @group Events
9921
9921
  */
9922
- declare const SET_EVENT_SECTION_QUESTIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionQuestions>>) => void;
9922
+ declare const SET_EVENT_SECTION_QUESTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SECTION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSectionQuestions>>) => void;
9923
9923
  interface GetEventSectionQuestionsProps extends InfiniteQueryParams {
9924
9924
  eventId: string;
9925
9925
  sectionId: string;
@@ -9944,7 +9944,7 @@ declare const EVENT_SECTION_TIERS_QUERY_KEY: (allowed: boolean, eventId: string,
9944
9944
  * @category Setters
9945
9945
  * @group Events
9946
9946
  */
9947
- declare const SET_EVENT_SECTION_TIERS_QUERY_DATA: (client: any, keyParams: [allowed: boolean, eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionTiers>>) => void;
9947
+ declare const SET_EVENT_SECTION_TIERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SECTION_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSectionTiers>>) => void;
9948
9948
  interface GetEventSectionTiersProps extends InfiniteQueryParams {
9949
9949
  allowed: boolean;
9950
9950
  eventId: string;
@@ -9994,7 +9994,7 @@ declare const EVENT_SESSION_LOCATION_TRANSLATION_QUERY_KEY: (eventId: string, lo
9994
9994
  * @category Setters
9995
9995
  * @group Events
9996
9996
  */
9997
- declare const SET_EVENT_SESSION_LOCATION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, locationId: string, locale: string], response: Awaited<ReturnType<typeof GetEventSessionLocationTranslation>>) => void;
9997
+ declare const SET_EVENT_SESSION_LOCATION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_LOCATION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionLocationTranslation>>) => void;
9998
9998
  interface GetEventSessionLocationTranslationProps extends SingleQueryParams {
9999
9999
  eventId: string;
10000
10000
  locationId: string;
@@ -10020,7 +10020,7 @@ declare const EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_KEY: (eventId: string, l
10020
10020
  * @category Setters
10021
10021
  * @group Events
10022
10022
  */
10023
- declare const SET_EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, locationId: string], response: Awaited<ReturnType<typeof GetEventSessionLocationTranslations>>) => void;
10023
+ declare const SET_EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionLocationTranslations>>) => void;
10024
10024
  interface GetEventSessionLocationTranslationsProps extends InfiniteQueryParams {
10025
10025
  eventId: string;
10026
10026
  locationId: string;
@@ -10045,7 +10045,7 @@ declare const EVENT_SESSION_LOCATION_QUERY_KEY: (eventId: string, locationId: st
10045
10045
  * @category Setters
10046
10046
  * @group Events
10047
10047
  */
10048
- declare const SET_EVENT_SESSION_LOCATION_QUERY_DATA: (client: any, keyParams: [eventId: string, locationId: string], response: Awaited<ReturnType<typeof GetEventSessionLocation>>) => void;
10048
+ declare const SET_EVENT_SESSION_LOCATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_LOCATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionLocation>>) => void;
10049
10049
  interface GetEventSessionLocationProps extends SingleQueryParams {
10050
10050
  eventId: string;
10051
10051
  locationId: string;
@@ -10094,7 +10094,7 @@ declare const EVENT_SESSION_LOCATION_SESSIONS_QUERY_KEY: (eventId: string, locat
10094
10094
  * @category Setters
10095
10095
  * @group Events
10096
10096
  */
10097
- declare const SET_EVENT_SESSION_LOCATION_SESSIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, locationId: string], response: Awaited<ReturnType<typeof GetEventSessionLocationSessions>>) => void;
10097
+ declare const SET_EVENT_SESSION_LOCATION_SESSIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_LOCATION_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionLocationSessions>>) => void;
10098
10098
  interface GetEventSessionLocationSessionsProps extends InfiniteQueryParams {
10099
10099
  eventId: string;
10100
10100
  locationId: string;
@@ -10119,7 +10119,7 @@ declare const EVENT_SESSION_QUESTION_TRANSLATION_QUERY_KEY: (eventId: string, se
10119
10119
  * @category Setters
10120
10120
  * @group Events
10121
10121
  */
10122
- declare const SET_EVENT_SESSION_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string, questionId: string, locale: string], response: Awaited<ReturnType<typeof GetEventSessionQuestionTranslation>>) => void;
10122
+ declare const SET_EVENT_SESSION_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_QUESTION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionQuestionTranslation>>) => void;
10123
10123
  interface GetEventSessionQuestionTranslationProps extends SingleQueryParams {
10124
10124
  eventId: string;
10125
10125
  sessionId: string;
@@ -10146,7 +10146,7 @@ declare const EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_KEY: (eventId: string, s
10146
10146
  * @category Setters
10147
10147
  * @group Events
10148
10148
  */
10149
- declare const SET_EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventSessionQuestionTranslations>>) => void;
10149
+ declare const SET_EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionQuestionTranslations>>) => void;
10150
10150
  interface GetEventSessionQuestionTranslationsProps extends InfiniteQueryParams {
10151
10151
  eventId: string;
10152
10152
  sessionId: string;
@@ -10172,7 +10172,7 @@ declare const EVENT_SESSION_QUESTION_QUERY_KEY: (eventId: string, sessionId: str
10172
10172
  * @category Setters
10173
10173
  * @group Events
10174
10174
  */
10175
- declare const SET_EVENT_SESSION_QUESTION_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventSessionQuestion>>) => void;
10175
+ declare const SET_EVENT_SESSION_QUESTION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_QUESTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionQuestion>>) => void;
10176
10176
  interface GetEventSessionQuestionProps extends SingleQueryParams {
10177
10177
  eventId: string;
10178
10178
  sessionId: string;
@@ -10198,7 +10198,7 @@ declare const EVENT_SESSION_QUESTIONS_QUERY_KEY: (eventId: string, sessionId: st
10198
10198
  * @category Setters
10199
10199
  * @group Events
10200
10200
  */
10201
- declare const SET_EVENT_SESSION_QUESTIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionQuestions>>) => void;
10201
+ declare const SET_EVENT_SESSION_QUESTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionQuestions>>) => void;
10202
10202
  interface GetEventSessionQuestionsProps extends InfiniteQueryParams {
10203
10203
  eventId: string;
10204
10204
  sessionId: string;
@@ -10223,7 +10223,7 @@ declare const EVENT_SESSION_TRANSLATION_QUERY_KEY: (eventId: string, sessionId:
10223
10223
  * @category Setters
10224
10224
  * @group Events
10225
10225
  */
10226
- declare const SET_EVENT_SESSION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string, locale: string], response: Awaited<ReturnType<typeof GetEventSessionTranslation>>) => void;
10226
+ declare const SET_EVENT_SESSION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionTranslation>>) => void;
10227
10227
  interface GetEventSessionTranslationProps extends SingleQueryParams {
10228
10228
  eventId: string;
10229
10229
  sessionId: string;
@@ -10249,7 +10249,7 @@ declare const EVENT_SESSION_TRANSLATIONS_QUERY_KEY: (eventId: string, sessionId:
10249
10249
  * @category Setters
10250
10250
  * @group Events
10251
10251
  */
10252
- declare const SET_EVENT_SESSION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionTranslations>>) => void;
10252
+ declare const SET_EVENT_SESSION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionTranslations>>) => void;
10253
10253
  interface GetEventSessionTranslationsProps extends InfiniteQueryParams {
10254
10254
  eventId: string;
10255
10255
  sessionId: string;
@@ -10274,7 +10274,7 @@ declare const EVENT_SESSION_QUERY_KEY: (eventId: string, sessionId: string) => s
10274
10274
  * @category Setters
10275
10275
  * @group Events
10276
10276
  */
10277
- declare const SET_EVENT_SESSION_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSession>>) => void;
10277
+ declare const SET_EVENT_SESSION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSession>>) => void;
10278
10278
  interface GetEventSessionProps extends SingleQueryParams {
10279
10279
  eventId: string;
10280
10280
  sessionId: string;
@@ -10299,7 +10299,7 @@ declare const EVENT_SESSION_ACCOUNTS_QUERY_KEY: (eventId: string, sessionId: str
10299
10299
  * @category Setters
10300
10300
  * @group Events
10301
10301
  */
10302
- declare const SET_EVENT_SESSION_ACCOUNTS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionAccounts>>) => void;
10302
+ declare const SET_EVENT_SESSION_ACCOUNTS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionAccounts>>) => void;
10303
10303
  interface GetEventSessionAccountsProps extends InfiniteQueryParams {
10304
10304
  eventId: string;
10305
10305
  sessionId: string;
@@ -10324,7 +10324,7 @@ declare const EVENT_SESSION_SPEAKERS_QUERY_KEY: (eventId: string, sessionId: str
10324
10324
  * @category Setters
10325
10325
  * @group Events
10326
10326
  */
10327
- declare const SET_EVENT_SESSION_SPEAKERS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionSpeakers>>) => void;
10327
+ declare const SET_EVENT_SESSION_SPEAKERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionSpeakers>>) => void;
10328
10328
  interface GetEventSessionSpeakersProps extends InfiniteQueryParams {
10329
10329
  eventId: string;
10330
10330
  sessionId: string;
@@ -10349,7 +10349,7 @@ declare const EVENT_SESSION_SPONSORS_QUERY_KEY: (eventId: string, sessionId: str
10349
10349
  * @category Setters
10350
10350
  * @group Events
10351
10351
  */
10352
- declare const SET_EVENT_SESSION_SPONSORS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionSponsors>>) => void;
10352
+ declare const SET_EVENT_SESSION_SPONSORS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionSponsors>>) => void;
10353
10353
  interface GetEventSessionSponsorsProps extends InfiniteQueryParams {
10354
10354
  eventId: string;
10355
10355
  sessionId: string;
@@ -10374,7 +10374,7 @@ declare const EVENT_SESSION_TRACKS_QUERY_KEY: (eventId: string, sessionId: strin
10374
10374
  * @category Setters
10375
10375
  * @group Events
10376
10376
  */
10377
- declare const SET_EVENT_SESSION_TRACKS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionTracks>>) => void;
10377
+ declare const SET_EVENT_SESSION_TRACKS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSION_TRACKS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessionTracks>>) => void;
10378
10378
  interface GetEventSessionTracksProps extends InfiniteQueryParams {
10379
10379
  eventId: string;
10380
10380
  sessionId: string;
@@ -10423,7 +10423,7 @@ declare const EVENT_SPEAKER_TRANSLATION_QUERY_KEY: (eventId: string, speakerId:
10423
10423
  * @category Setters
10424
10424
  * @group Events
10425
10425
  */
10426
- declare const SET_EVENT_SPEAKER_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, speakerId: string, locale: string], response: Awaited<ReturnType<typeof GetEventSpeakerTranslation>>) => void;
10426
+ declare const SET_EVENT_SPEAKER_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SPEAKER_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakerTranslation>>) => void;
10427
10427
  interface GetEventSpeakerTranslationProps extends SingleQueryParams {
10428
10428
  eventId: string;
10429
10429
  speakerId: string;
@@ -10449,7 +10449,7 @@ declare const EVENT_SPEAKER_TRANSLATIONS_QUERY_KEY: (eventId: string, speakerId:
10449
10449
  * @category Setters
10450
10450
  * @group Events
10451
10451
  */
10452
- declare const SET_EVENT_SPEAKER_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, speakerId: string], response: Awaited<ReturnType<typeof GetEventSpeakerTranslations>>) => void;
10452
+ declare const SET_EVENT_SPEAKER_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SPEAKER_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakerTranslations>>) => void;
10453
10453
  interface GetEventSpeakerTranslationsProps extends InfiniteQueryParams {
10454
10454
  eventId: string;
10455
10455
  speakerId: string;
@@ -10474,7 +10474,7 @@ declare const EVENT_SPEAKER_QUERY_KEY: (eventId: string, speakerId: string) => s
10474
10474
  * @category Setters
10475
10475
  * @group Events
10476
10476
  */
10477
- declare const SET_EVENT_SPEAKER_QUERY_DATA: (client: any, keyParams: [eventId: string, speakerId: string], response: Awaited<ReturnType<typeof GetEventSpeaker>>) => void;
10477
+ declare const SET_EVENT_SPEAKER_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SPEAKER_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeaker>>) => void;
10478
10478
  interface GetEventSpeakerProps extends SingleQueryParams {
10479
10479
  eventId: string;
10480
10480
  speakerId: string;
@@ -10499,7 +10499,7 @@ declare const EVENT_SPEAKER_SESSIONS_QUERY_KEY: (eventId: string, speakerId: str
10499
10499
  * @category Setters
10500
10500
  * @group Events
10501
10501
  */
10502
- declare const SET_EVENT_SPEAKER_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, speakerId: string], response: Awaited<ReturnType<typeof GetEventSpeakerSessions>>) => void;
10502
+ declare const SET_EVENT_SPEAKER_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPEAKER_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakerSessions>>) => void;
10503
10503
  interface GetEventSpeakerSessionsProps extends InfiniteQueryParams {
10504
10504
  eventId: string;
10505
10505
  speakerId: string;
@@ -10596,7 +10596,7 @@ declare const EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_KEY: (eventId: string, l
10596
10596
  * @category Setters
10597
10597
  * @group Events
10598
10598
  */
10599
- declare const SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, levelId: string, locale: string], response: Awaited<ReturnType<typeof GetEventSponsorshipLevelTranslation>>) => void;
10599
+ declare const SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorshipLevelTranslation>>) => void;
10600
10600
  interface GetEventSponsorshipLevelTranslationProps extends SingleQueryParams {
10601
10601
  eventId: string;
10602
10602
  levelId: string;
@@ -10622,7 +10622,7 @@ declare const EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_KEY: (eventId: string,
10622
10622
  * @category Setters
10623
10623
  * @group Events
10624
10624
  */
10625
- declare const SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, levelId: string], response: Awaited<ReturnType<typeof GetEventSponsorshipLevelTranslations>>) => void;
10625
+ declare const SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorshipLevelTranslations>>) => void;
10626
10626
  interface GetEventSponsorshipLevelTranslationsProps extends InfiniteQueryParams {
10627
10627
  eventId: string;
10628
10628
  levelId: string;
@@ -10647,7 +10647,7 @@ declare const EVENT_SPONSORSHIP_LEVEL_QUERY_KEY: (eventId: string, levelId: stri
10647
10647
  * @category Setters
10648
10648
  * @group Events
10649
10649
  */
10650
- declare const SET_EVENT_SPONSORSHIP_LEVEL_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, levelId: string], response: Awaited<ReturnType<typeof GetEventSponsorshipLevel>>) => void;
10650
+ declare const SET_EVENT_SPONSORSHIP_LEVEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORSHIP_LEVEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorshipLevel>>) => void;
10651
10651
  interface GetEventSponsorshipLevelProps extends SingleQueryParams {
10652
10652
  eventId: string;
10653
10653
  levelId: string;
@@ -10696,7 +10696,7 @@ declare const EVENT_SPONSORSHIP_TRANSLATION_QUERY_KEY: (eventId: string, levelId
10696
10696
  * @category Setters
10697
10697
  * @group Events
10698
10698
  */
10699
- declare const SET_EVENT_SPONSORSHIP_TRANSLATION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, levelId: string, sponsorshipId: string, locale: string], response: Awaited<ReturnType<typeof GetEventSponsorshipTranslation>>) => void;
10699
+ declare const SET_EVENT_SPONSORSHIP_TRANSLATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORSHIP_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorshipTranslation>>) => void;
10700
10700
  interface GetEventSponsorshipTranslationProps extends SingleQueryParams {
10701
10701
  eventId: string;
10702
10702
  levelId: string;
@@ -10723,7 +10723,7 @@ declare const EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_KEY: (eventId: string, levelI
10723
10723
  * @category Setters
10724
10724
  * @group Events
10725
10725
  */
10726
- declare const SET_EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, levelId: string, sponsorshipId: string], response: Awaited<ReturnType<typeof GetEventSponsorshipTranslations>>) => void;
10726
+ declare const SET_EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorshipTranslations>>) => void;
10727
10727
  interface GetEventSponsorshipTranslationsProps extends InfiniteQueryParams {
10728
10728
  eventId: string;
10729
10729
  levelId: string;
@@ -10749,7 +10749,7 @@ declare const EVENT_SPONSORSHIP_QUERY_KEY: (eventId: string, levelId: string, sp
10749
10749
  * @category Setters
10750
10750
  * @group Events
10751
10751
  */
10752
- declare const SET_EVENT_SPONSORSHIP_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, levelId: string, sponsorshipId: string], response: Awaited<ReturnType<typeof GetEventSponsorship>>) => void;
10752
+ declare const SET_EVENT_SPONSORSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorship>>) => void;
10753
10753
  interface GetEventSponsorshipProps extends SingleQueryParams {
10754
10754
  eventId: string;
10755
10755
  levelId: string;
@@ -10775,7 +10775,7 @@ declare const EVENT_SPONSORSHIPS_QUERY_KEY: (eventId: string, levelId: string) =
10775
10775
  * @category Setters
10776
10776
  * @group Events
10777
10777
  */
10778
- declare const SET_EVENT_SPONSORSHIPS_QUERY_DATA: (client: any, keyParams: [eventId: string, levelId: string], response: Awaited<ReturnType<typeof GetEventSponsorships>>) => void;
10778
+ declare const SET_EVENT_SPONSORSHIPS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SPONSORSHIPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsorships>>) => void;
10779
10779
  interface GetEventSponsorshipsProps extends InfiniteQueryParams {
10780
10780
  eventId: string;
10781
10781
  levelId: string;
@@ -10800,7 +10800,7 @@ declare const EVENT_TRACK_TRANSLATION_QUERY_KEY: (eventId: string, trackId: stri
10800
10800
  * @category Setters
10801
10801
  * @group Events
10802
10802
  */
10803
- declare const SET_EVENT_TRACK_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string, locale: string], response: Awaited<ReturnType<typeof GetEventTrackTranslation>>) => void;
10803
+ declare const SET_EVENT_TRACK_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_TRACK_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTrackTranslation>>) => void;
10804
10804
  interface GetEventTrackTranslationProps extends SingleQueryParams {
10805
10805
  eventId: string;
10806
10806
  trackId: string;
@@ -10826,7 +10826,7 @@ declare const EVENT_TRACK_TRANSLATIONS_QUERY_KEY: (eventId: string, trackId: str
10826
10826
  * @category Setters
10827
10827
  * @group Events
10828
10828
  */
10829
- declare const SET_EVENT_TRACK_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrackTranslations>>) => void;
10829
+ declare const SET_EVENT_TRACK_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_TRACK_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTrackTranslations>>) => void;
10830
10830
  interface GetEventTrackTranslationsProps extends InfiniteQueryParams {
10831
10831
  eventId: string;
10832
10832
  trackId: string;
@@ -10851,7 +10851,7 @@ declare const EVENT_TRACK_QUERY_KEY: (eventId: string, trackId: string) => strin
10851
10851
  * @category Setters
10852
10852
  * @group Events
10853
10853
  */
10854
- declare const SET_EVENT_TRACK_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrack>>) => void;
10854
+ declare const SET_EVENT_TRACK_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_TRACK_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTrack>>) => void;
10855
10855
  interface GetEventTrackProps extends SingleQueryParams {
10856
10856
  eventId: string;
10857
10857
  trackId: string;
@@ -10876,7 +10876,7 @@ declare const EVENT_TRACK_SESSIONS_QUERY_KEY: (eventId: string, trackId: string)
10876
10876
  * @category Setters
10877
10877
  * @group Events
10878
10878
  */
10879
- declare const SET_EVENT_TRACK_SESSIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrackSessions>>) => void;
10879
+ declare const SET_EVENT_TRACK_SESSIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_TRACK_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTrackSessions>>) => void;
10880
10880
  interface GetEventTrackSessionsProps extends InfiniteQueryParams {
10881
10881
  eventId: string;
10882
10882
  trackId: string;
@@ -10901,7 +10901,7 @@ declare const EVENT_TRACK_SPONSORS_QUERY_KEY: (eventId: string, trackId: string)
10901
10901
  * @category Setters
10902
10902
  * @group Events
10903
10903
  */
10904
- declare const SET_EVENT_TRACK_SPONSORS_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrackSponsors>>) => void;
10904
+ declare const SET_EVENT_TRACK_SPONSORS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_TRACK_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTrackSponsors>>) => void;
10905
10905
  interface GetEventTrackSponsorsProps extends InfiniteQueryParams {
10906
10906
  eventId: string;
10907
10907
  trackId: string;
@@ -10950,7 +10950,7 @@ declare const EVENT_TRANSLATION_QUERY_KEY: (eventId: string, locale: string) =>
10950
10950
  * @category Setters
10951
10951
  * @group Events
10952
10952
  */
10953
- declare const SET_EVENT_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, locale: string], response: Awaited<ReturnType<typeof GetEventTranslation>>) => void;
10953
+ declare const SET_EVENT_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTranslation>>) => void;
10954
10954
  interface GetEventTranslationProps extends SingleQueryParams {
10955
10955
  eventId: string;
10956
10956
  locale: string;
@@ -11142,7 +11142,7 @@ declare const GROUP_TRANSLATION_QUERY_KEY: (groupId: string, locale: string) =>
11142
11142
  * @category Setters
11143
11143
  * @group Groups
11144
11144
  */
11145
- declare const SET_GROUP_TRANSLATION_QUERY_DATA: (client: any, keyParams: [groupId: string, locale: string], response: Awaited<ReturnType<typeof GetGroupTranslation>>) => void;
11145
+ declare const SET_GROUP_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof GROUP_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupTranslation>>) => void;
11146
11146
  interface GetGroupTranslationProps extends SingleQueryParams {
11147
11147
  groupId: string;
11148
11148
  locale: string;
@@ -11239,7 +11239,7 @@ declare const GROUP_EVENTS_QUERY_KEY: (groupId: string, past?: boolean) => strin
11239
11239
  * @category Setters
11240
11240
  * @group Groups
11241
11241
  */
11242
- declare const SET_GROUP_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, past?: boolean | undefined], response: Awaited<ReturnType<typeof GetGroupEvents>>) => void;
11242
+ declare const SET_GROUP_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupEvents>>) => void;
11243
11243
  interface GetGroupEventsProps extends InfiniteQueryParams {
11244
11244
  groupId: string;
11245
11245
  past?: boolean;
@@ -11288,7 +11288,7 @@ declare const GROUP_INVITATION_QUERY_KEY: (groupId: string, invitationId: string
11288
11288
  * @category Setters
11289
11289
  * @group Groups
11290
11290
  */
11291
- declare const SET_GROUP_INVITATION_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, invitationId: string], response: Awaited<ReturnType<typeof GetGroupInvitation>>) => void;
11291
+ declare const SET_GROUP_INVITATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_INVITATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupInvitation>>) => void;
11292
11292
  interface GetGroupInvitationProps extends SingleQueryParams {
11293
11293
  groupId: string;
11294
11294
  invitationId: string;
@@ -11313,7 +11313,7 @@ declare const GROUP_INVITATIONS_QUERY_KEY: (groupId: string, status?: keyof type
11313
11313
  * @category Setters
11314
11314
  * @group Groups
11315
11315
  */
11316
- declare const SET_GROUP_INVITATIONS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, status?: "invited" | "rejected" | "canceled" | undefined], response: Awaited<ReturnType<typeof GetGroupInvitations>>) => void;
11316
+ declare const SET_GROUP_INVITATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_INVITATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupInvitations>>) => void;
11317
11317
  interface GetGroupInvitationsProps extends InfiniteQueryParams {
11318
11318
  groupId: string;
11319
11319
  status: keyof typeof GroupInvitationStatus;
@@ -11386,7 +11386,7 @@ declare const GROUP_REQUEST_QUERY_KEY: (groupId: string, requestId: string) => s
11386
11386
  * @category Setters
11387
11387
  * @group Groups
11388
11388
  */
11389
- declare const SET_GROUP_REQUEST_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, requestId: string], response: Awaited<ReturnType<typeof GetGroupRequest>>) => void;
11389
+ declare const SET_GROUP_REQUEST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_REQUEST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupRequest>>) => void;
11390
11390
  interface GetGroupRequestProps extends SingleQueryParams {
11391
11391
  groupId: string;
11392
11392
  requestId: string;
@@ -11411,7 +11411,7 @@ declare const GROUP_REQUESTS_QUERY_KEY: (groupId: string, status?: keyof typeof
11411
11411
  * @category Setters
11412
11412
  * @group Groups
11413
11413
  */
11414
- declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: [groupId: string, status?: "rejected" | "requested" | undefined], response: Awaited<ReturnType<typeof GetGroupRequests>>) => void;
11414
+ declare const SET_GROUP_REQUESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_REQUESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupRequests>>) => void;
11415
11415
  interface GetGroupRequestsProps extends InfiniteQueryParams {
11416
11416
  groupId: string;
11417
11417
  status: keyof typeof GroupRequestStatus;
@@ -11460,7 +11460,7 @@ declare const GROUPS_QUERY_KEY: (access?: "public" | "private", featured?: boole
11460
11460
  * @category Setters
11461
11461
  * @group Groups
11462
11462
  */
11463
- declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: [access?: "public" | "private" | undefined, featured?: boolean | undefined], response: Awaited<ReturnType<typeof GetGroups>>) => void;
11463
+ declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>) => void;
11464
11464
  interface GetGroupsProps extends InfiniteQueryParams {
11465
11465
  access?: "public" | "private";
11466
11466
  featured?: boolean;
@@ -11848,7 +11848,7 @@ declare const INVOICE_LINE_ITEM_QUERY_KEY: (invoiceId: string, lineItemId: strin
11848
11848
  * @category Setters
11849
11849
  * @group Invoices
11850
11850
  */
11851
- declare const SET_INVOICE_LINE_ITEM_QUERY_DATA: (client: QueryClient, keyParams: [invoiceId: string, lineItemId: string], response: Awaited<ReturnType<typeof GetInvoiceLineItem>>) => void;
11851
+ declare const SET_INVOICE_LINE_ITEM_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INVOICE_LINE_ITEM_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInvoiceLineItem>>) => void;
11852
11852
  interface GetInvoiceLineItemProps extends SingleQueryParams {
11853
11853
  invoiceId: string;
11854
11854
  lineItemId: string;
@@ -11897,7 +11897,7 @@ declare const INVOICE_PAYMENT_QUERY_KEY: (invoiceId: string, paymentId: string)
11897
11897
  * @category Setters
11898
11898
  * @group Invoices
11899
11899
  */
11900
- declare const SET_INVOICE_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: [invoiceId: string, paymentId: string], response: Awaited<ReturnType<typeof GetInvoicePayment>>) => void;
11900
+ declare const SET_INVOICE_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INVOICE_PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInvoicePayment>>) => void;
11901
11901
  interface GetInvoicePaymentProps extends SingleQueryParams {
11902
11902
  invoiceId: string;
11903
11903
  paymentId: string;
@@ -11969,7 +11969,7 @@ declare const LEVEL_TRANSLATION_QUERY_KEY: (levelId: string, locale: string) =>
11969
11969
  * @category Setters
11970
11970
  * @group Levels
11971
11971
  */
11972
- declare const SET_LEVEL_TRANSLATION_QUERY_DATA: (client: any, keyParams: [levelId: string, locale: string], response: Awaited<ReturnType<typeof GetLevelTranslation>>) => void;
11972
+ declare const SET_LEVEL_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof LEVEL_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevelTranslation>>) => void;
11973
11973
  interface GetLevelTranslationProps extends SingleQueryParams {
11974
11974
  levelId: string;
11975
11975
  locale: string;
@@ -12231,7 +12231,7 @@ declare const ORGANIZATION_PAGE_TRANSLATION_QUERY_KEY: (type: PageType, locale:
12231
12231
  * @category Setters
12232
12232
  * @group Organization
12233
12233
  */
12234
- declare const SET_ORGANIZATION_PAGE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [type: PageType, locale: string], response: Awaited<ReturnType<typeof GetOrganizationPageTranslation>>) => void;
12234
+ declare const SET_ORGANIZATION_PAGE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof ORGANIZATION_PAGE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetOrganizationPageTranslation>>) => void;
12235
12235
  interface GetOrganizationPageTranslationProps extends SingleQueryParams {
12236
12236
  type: PageType;
12237
12237
  locale: string;
@@ -12729,7 +12729,7 @@ declare const REPORT_QUERY_KEY: (standard: string, filters?: ReportFilters) => a
12729
12729
  * @category Setters
12730
12730
  * @group Reports
12731
12731
  */
12732
- declare const SET_REPORT_QUERY_DATA: (client: QueryClient, keyParams: [standard: string, filters?: ReportFilters | undefined], response: Awaited<ReturnType<typeof GetReport>>) => void;
12732
+ declare const SET_REPORT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof REPORT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetReport>>) => void;
12733
12733
  interface GetReportProps extends SingleQueryParams {
12734
12734
  standard: string;
12735
12735
  filters?: ReportFilters;
@@ -12989,7 +12989,7 @@ declare const STREAM_INPUT_OUTPUT_QUERY_KEY: (streamId: string, output: string)
12989
12989
  * @category Setters
12990
12990
  * @group Streams
12991
12991
  */
12992
- declare const SET_STREAM_INPUT_OUTPUT_QUERY_DATA: (client: QueryClient, keyParams: [streamId: string, output: string], response: Awaited<ReturnType<typeof GetStreamInputOutput>>) => void;
12992
+ declare const SET_STREAM_INPUT_OUTPUT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof STREAM_INPUT_OUTPUT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetStreamInputOutput>>) => void;
12993
12993
  interface GetStreamInputOutputParams extends SingleQueryParams {
12994
12994
  streamId: string;
12995
12995
  output: string;
@@ -13133,7 +13133,7 @@ declare const SUBSCRIPTION_PRODUCT_PRICE_QUERY_KEY: (subscriptionProductId: stri
13133
13133
  * @category Setters
13134
13134
  * @group Subscriptions
13135
13135
  */
13136
- declare const SET_SUBSCRIPTION_PRODUCT_PRICE_QUERY_DATA: (client: QueryClient, keyParams: [subscriptionProductId: string, subscriptionProductPriceId: string], response: Awaited<ReturnType<typeof GetSubscriptionProductPrice>>) => void;
13136
+ declare const SET_SUBSCRIPTION_PRODUCT_PRICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_PRODUCT_PRICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptionProductPrice>>) => void;
13137
13137
  interface GetSubscriptionProductPriceProps extends SingleQueryParams {
13138
13138
  subscriptionProductId: string;
13139
13139
  subscriptionProductPriceId: string;
@@ -13182,7 +13182,7 @@ declare const SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY: (subscriptionProduct
13182
13182
  * @category Setters
13183
13183
  * @group Subscriptions
13184
13184
  */
13185
- declare const SET_SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_DATA: (client: QueryClient, keyParams: [subscriptionProductId: string, status?: SubscriptionStatus | undefined], response: Awaited<ReturnType<typeof GetSubscriptionProductSubscriptions>>) => void;
13185
+ declare const SET_SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptionProductSubscriptions>>) => void;
13186
13186
  interface GetSubscriptionProductSubscriptionsProps extends InfiniteQueryParams {
13187
13187
  subscriptionProductId: string;
13188
13188
  status?: SubscriptionStatus;
@@ -13303,7 +13303,7 @@ declare const SUPPORT_TICKETS_QUERY_KEY: (status?: string, type?: string) => (st
13303
13303
  * @category Setters
13304
13304
  * @group Support Tickets
13305
13305
  */
13306
- declare const SET_SUPPORT_TICKETS_QUERY_DATA: (client: QueryClient, keyParams: [status?: string | undefined, type?: string | undefined], response: Awaited<ReturnType<typeof GetSupportTickets>>) => void;
13306
+ declare const SET_SUPPORT_TICKETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUPPORT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSupportTickets>>) => void;
13307
13307
  interface GetSupportTicketsProps extends InfiniteQueryParams {
13308
13308
  status: string;
13309
13309
  type: string;
@@ -13328,7 +13328,7 @@ declare const SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY: (surveyId: string, q
13328
13328
  * @category Setters
13329
13329
  * @group Surveys
13330
13330
  */
13331
- declare const SET_SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [surveyId: string, questionId: string, choiceId: string, locale: string], response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => void;
13331
+ declare const SET_SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => void;
13332
13332
  interface GetSurveyQuestionChoiceTranslationProps extends SingleQueryParams {
13333
13333
  surveyId: string;
13334
13334
  questionId: string;
@@ -13355,7 +13355,7 @@ declare const SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY: (surveyId: string,
13355
13355
  * @category Setters
13356
13356
  * @group Surveys
13357
13357
  */
13358
- declare const SET_SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [surveyId: string, questionId: string, choiceId: string], response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslations>>) => void;
13358
+ declare const SET_SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceTranslations>>) => void;
13359
13359
  interface GetSurveyQuestionChoiceTranslationsProps extends InfiniteQueryParams {
13360
13360
  surveyId: string;
13361
13361
  questionId: string;
@@ -13381,7 +13381,7 @@ declare const SURVEY_QUESTION_TRANSLATION_QUERY_KEY: (surveyId: string, question
13381
13381
  * @category Setters
13382
13382
  * @group Surveys
13383
13383
  */
13384
- declare const SET_SURVEY_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [surveyId: string, questionId: string, locale: string], response: Awaited<ReturnType<typeof GetSurveyQuestionTranslation>>) => void;
13384
+ declare const SET_SURVEY_QUESTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionTranslation>>) => void;
13385
13385
  interface GetSurveyQuestionTranslationProps extends SingleQueryParams {
13386
13386
  surveyId: string;
13387
13387
  questionId: string;
@@ -13407,7 +13407,7 @@ declare const SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY: (surveyId: string, questio
13407
13407
  * @category Setters
13408
13408
  * @group Surveys
13409
13409
  */
13410
- declare const SET_SURVEY_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [surveyId: string, questionId: string], response: Awaited<ReturnType<typeof GetSurveyQuestionTranslations>>) => void;
13410
+ declare const SET_SURVEY_QUESTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionTranslations>>) => void;
13411
13411
  interface GetSurveyQuestionTranslationsProps extends InfiniteQueryParams {
13412
13412
  surveyId: string;
13413
13413
  questionId: string;
@@ -13432,7 +13432,7 @@ declare const SURVEY_QUESTION_QUERY_KEY: (surveyId: string, questionId: string)
13432
13432
  * @category Setters
13433
13433
  * @group Surveys
13434
13434
  */
13435
- declare const SET_SURVEY_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: [surveyId: string, questionId: string], response: Awaited<ReturnType<typeof GetSurveyQuestion>>) => void;
13435
+ declare const SET_SURVEY_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_QUESTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestion>>) => void;
13436
13436
  interface GetSurveyQuestionProps extends SingleQueryParams {
13437
13437
  surveyId: string;
13438
13438
  questionId: string;
@@ -13457,7 +13457,7 @@ declare const SURVEY_QUESTION_CHOICE_QUERY_KEY: (surveyId: string, questionId: s
13457
13457
  * @category Setters
13458
13458
  * @group Surveys
13459
13459
  */
13460
- declare const SET_SURVEY_QUESTION_CHOICE_QUERY_DATA: (client: QueryClient, keyParams: [surveyId: string, questionId: string, choiceId: string], response: Awaited<ReturnType<typeof GetSurveyQuestionChoice>>) => void;
13460
+ declare const SET_SURVEY_QUESTION_CHOICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_QUESTION_CHOICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionChoice>>) => void;
13461
13461
  interface GetSurveyQuestionChoiceProps extends SingleQueryParams {
13462
13462
  surveyId: string;
13463
13463
  questionId: string;
@@ -13483,7 +13483,7 @@ declare const SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_KEY: (surveyId: string, que
13483
13483
  * @category Setters
13484
13484
  * @group Surveys
13485
13485
  */
13486
- declare const SET_SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_DATA: (client: any, keyParams: [surveyId: string, questionId: string, choiceId: string], response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceSubQuestions>>) => void;
13486
+ declare const SET_SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionChoiceSubQuestions>>) => void;
13487
13487
  interface GetSurveyQuestionChoiceSubQuestionsProps extends InfiniteQueryParams {
13488
13488
  surveyId: string;
13489
13489
  questionId: string;
@@ -13509,7 +13509,7 @@ declare const SURVEY_QUESTION_CHOICES_QUERY_KEY: (surveyId: string, questionId:
13509
13509
  * @category Setters
13510
13510
  * @group Surveys
13511
13511
  */
13512
- declare const SET_SURVEY_QUESTION_CHOICES_QUERY_DATA: (client: QueryClient, keyParams: [surveyId: string, questionId: string], response: Awaited<ReturnType<typeof GetSurveyQuestionChoices>>) => void;
13512
+ declare const SET_SURVEY_QUESTION_CHOICES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_QUESTION_CHOICES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionChoices>>) => void;
13513
13513
  interface GetSurveyQuestionChoicesProps extends InfiniteQueryParams {
13514
13514
  surveyId: string;
13515
13515
  questionId: string;
@@ -13534,7 +13534,7 @@ declare const SURVEY_QUESTION_RESPONSES_QUERY_KEY: (surveyId: string, questionId
13534
13534
  * @category Setters
13535
13535
  * @group Surveys
13536
13536
  */
13537
- declare const SET_SURVEY_QUESTION_RESPONSES_QUERY_DATA: (client: any, keyParams: [surveyId: string, questionId: string], response: Awaited<ReturnType<typeof GetSurveyQuestionResponses>>) => void;
13537
+ declare const SET_SURVEY_QUESTION_RESPONSES_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_QUESTION_RESPONSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionResponses>>) => void;
13538
13538
  interface GetSurveyQuestionResponsesProps extends InfiniteQueryParams {
13539
13539
  surveyId: string;
13540
13540
  questionId: string;
@@ -13559,7 +13559,7 @@ declare const SURVEY_QUESTION_SEARCH_VALUE_QUERY_KEY: (surveyId: string, questio
13559
13559
  * @category Setters
13560
13560
  * @group Surveys
13561
13561
  */
13562
- declare const SET_SURVEY_QUESTION_SEARCH_VALUE_QUERY_DATA: (client: QueryClient, keyParams: [surveyId: string, questionId: string, searchValueId: string], response: Awaited<ReturnType<typeof GetSurveyQuestionSearchValue>>) => void;
13562
+ declare const SET_SURVEY_QUESTION_SEARCH_VALUE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_QUESTION_SEARCH_VALUE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionSearchValue>>) => void;
13563
13563
  interface GetSurveyQuestionSearchValueProps extends SingleQueryParams {
13564
13564
  surveyId: string;
13565
13565
  questionId: string;
@@ -13585,7 +13585,7 @@ declare const SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY: (surveyId: string, questi
13585
13585
  * @category Setters
13586
13586
  * @group Surveys
13587
13587
  */
13588
- declare const SET_SURVEY_QUESTION_SEARCH_VALUES_QUERY_DATA: (client: QueryClient, keyParams: [surveyId: string, questionId: string], response: Awaited<ReturnType<typeof GetSurveyQuestionSearchValues>>) => void;
13588
+ declare const SET_SURVEY_QUESTION_SEARCH_VALUES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyQuestionSearchValues>>) => void;
13589
13589
  interface GetSurveyQuestionSearchValuesProps extends InfiniteQueryParams {
13590
13590
  surveyId: string;
13591
13591
  questionId: string;
@@ -13634,7 +13634,7 @@ declare const SURVEY_SECTION_TRANSLATION_QUERY_KEY: (surveyId: string, sectionId
13634
13634
  * @category Setters
13635
13635
  * @group Surveys
13636
13636
  */
13637
- declare const SET_SURVEY_SECTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [surveyId: string, sectionId: string, locale: string], response: Awaited<ReturnType<typeof GetSurveySectionTranslation>>) => void;
13637
+ declare const SET_SURVEY_SECTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_SECTION_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySectionTranslation>>) => void;
13638
13638
  interface GetSurveySectionTranslationProps extends SingleQueryParams {
13639
13639
  surveyId: string;
13640
13640
  sectionId: string;
@@ -13660,7 +13660,7 @@ declare const SURVEY_SECTION_TRANSLATIONS_QUERY_KEY: (surveyId: string, sectionI
13660
13660
  * @category Setters
13661
13661
  * @group Surveys
13662
13662
  */
13663
- declare const SET_SURVEY_SECTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [surveyId: string, sectionId: string], response: Awaited<ReturnType<typeof GetSurveySectionTranslations>>) => void;
13663
+ declare const SET_SURVEY_SECTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_SECTION_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySectionTranslations>>) => void;
13664
13664
  interface GetSurveySectionTranslationsProps extends InfiniteQueryParams {
13665
13665
  surveyId: string;
13666
13666
  sectionId: string;
@@ -13685,7 +13685,7 @@ declare const SURVEY_SECTION_QUERY_KEY: (surveyId: string, sectionId: string) =>
13685
13685
  * @category Setters
13686
13686
  * @group Surveys
13687
13687
  */
13688
- declare const SET_SURVEY_SECTION_QUERY_DATA: (client: QueryClient, keyParams: [surveyId: string, sectionId: string], response: Awaited<ReturnType<typeof GetSurveySection>>) => void;
13688
+ declare const SET_SURVEY_SECTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_SECTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySection>>) => void;
13689
13689
  interface GetSurveySectionProps extends SingleQueryParams {
13690
13690
  surveyId: string;
13691
13691
  sectionId: string;
@@ -13710,7 +13710,7 @@ declare const SURVEY_SECTION_QUESTIONS_QUERY_KEY: (surveyId: string, sectionId:
13710
13710
  * @category Setters
13711
13711
  * @group Surveys
13712
13712
  */
13713
- declare const SET_SURVEY_SECTION_QUESTIONS_QUERY_DATA: (client: any, keyParams: [surveyId: string, sectionId: string], response: Awaited<ReturnType<typeof GetSurveySectionQuestions>>) => void;
13713
+ declare const SET_SURVEY_SECTION_QUESTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_SECTION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySectionQuestions>>) => void;
13714
13714
  interface GetSurveySectionQuestionsProps extends InfiniteQueryParams {
13715
13715
  surveyId: string;
13716
13716
  sectionId: string;
@@ -13759,7 +13759,7 @@ declare const SURVEY_SUBMISSION_QUERY_KEY: (surveyId: string, submissionId: stri
13759
13759
  * @category Setters
13760
13760
  * @group Surveys
13761
13761
  */
13762
- declare const SET_SURVEY_SUBMISSION_QUERY_DATA: (client: any, keyParams: [surveyId: string, submissionId: string], response: Awaited<ReturnType<typeof GetSurveySubmission>>) => void;
13762
+ declare const SET_SURVEY_SUBMISSION_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_SUBMISSION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySubmission>>) => void;
13763
13763
  interface GetSurveySubmissionProps extends SingleQueryParams {
13764
13764
  surveyId: string;
13765
13765
  submissionId: string;
@@ -13784,7 +13784,7 @@ declare const SURVEY_QUESTION_SECTIONS_QUERY_KEY: (surveyId: string, submissionI
13784
13784
  * @category Setters
13785
13785
  * @group Surveys
13786
13786
  */
13787
- declare const SET_SURVEY_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: [surveyId: string, submissionId: string], response: Awaited<ReturnType<typeof GetSurveySubmissionQuestionSections>>) => void;
13787
+ declare const SET_SURVEY_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySubmissionQuestionSections>>) => void;
13788
13788
  interface GetSurveySubmissionQuestionSectionsProps extends InfiniteQueryParams {
13789
13789
  surveyId: string;
13790
13790
  submissionId: string;
@@ -13809,7 +13809,7 @@ declare const SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_KEY: (surveyId: string, s
13809
13809
  * @category Setters
13810
13810
  * @group Surveys
13811
13811
  */
13812
- declare const SET_SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_DATA: (client: QueryClient, keyParams: [surveyId: string, submissionId: string, questionId: string], response: Awaited<ReturnType<typeof GetSurveySubmissionResponseChanges>>) => void;
13812
+ declare const SET_SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveySubmissionResponseChanges>>) => void;
13813
13813
  interface GetSurveySubmissionResponseChangesProps extends InfiniteQueryParams {
13814
13814
  surveyId: string;
13815
13815
  submissionId: string;
@@ -13854,7 +13854,7 @@ declare const SURVEY_TRANSLATION_QUERY_KEY: (surveyId: string, locale: string) =
13854
13854
  * @category Setters
13855
13855
  * @group Surveys
13856
13856
  */
13857
- declare const SET_SURVEY_TRANSLATION_QUERY_DATA: (client: any, keyParams: [surveyId: string, locale: string], response: Awaited<ReturnType<typeof GetSurveyTranslation>>) => void;
13857
+ declare const SET_SURVEY_TRANSLATION_QUERY_DATA: (client: any, keyParams: Parameters<typeof SURVEY_TRANSLATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSurveyTranslation>>) => void;
13858
13858
  interface GetSurveyTranslationProps extends SingleQueryParams {
13859
13859
  surveyId: string;
13860
13860
  locale: string;
@@ -13950,7 +13950,7 @@ declare const THREAD_QUERY_KEY: (threadId: string, messageId?: string) => (strin
13950
13950
  * @category Setters
13951
13951
  * @thread Threads
13952
13952
  */
13953
- declare const SET_THREAD_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId?: string | undefined], response: Updater<any, Awaited<ReturnType<typeof GetThread>>>, options?: SetDataOptions) => void;
13953
+ declare const SET_THREAD_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetThread>>>, options?: SetDataOptions) => void;
13954
13954
  interface GetThreadProps extends SingleQueryParams {
13955
13955
  threadId: string;
13956
13956
  }
@@ -14006,7 +14006,7 @@ declare const GetThreadMembers: ({ threadId, pageParam, pageSize, orderBy, searc
14006
14006
  declare const useGetThreadMembers: (threadId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadMembers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ThreadMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
14007
14007
 
14008
14008
  declare const THREAD_MESSAGE_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
14009
- declare const SET_THREAD_MESSAGE_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId: string], response: Awaited<ReturnType<typeof GetThreadMessage>>, options?: SetDataOptions) => void;
14009
+ declare const SET_THREAD_MESSAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MESSAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadMessage>>, options?: SetDataOptions) => void;
14010
14010
  interface GetThreadMessageProps {
14011
14011
  threadId: string;
14012
14012
  messageId: string;
@@ -14016,7 +14016,7 @@ declare const GetThreadMessage: ({ threadId, messageId, adminApiParams, }: GetTh
14016
14016
  declare const useGetThreadMessage: (threadId: string, messageId: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14017
14017
 
14018
14018
  declare const THREAD_MESSAGE_REPLIES_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
14019
- declare const SET_THREAD_MESSAGE_REPLIES_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId: string], response: Awaited<ReturnType<typeof GetThreadMessageReplies>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
14019
+ declare const SET_THREAD_MESSAGE_REPLIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MESSAGE_REPLIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadMessageReplies>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
14020
14020
  interface GetThreadMessageRepliesProps extends InfiniteQueryParams {
14021
14021
  threadId: string;
14022
14022
  messageId: string;
@@ -14025,7 +14025,7 @@ declare const GetThreadMessageReplies: ({ threadId, messageId, pageParam, pageSi
14025
14025
  declare const useGetThreadMessageReplies: (threadId?: string, messageId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetThreadMessageReplies>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ThreadMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
14026
14026
 
14027
14027
  declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string, messageId?: string) => QueryKey;
14028
- declare const SET_THREAD_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: [threadId: string, messageId?: string | undefined], response: Awaited<ReturnType<typeof GetThreadMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
14028
+ declare const SET_THREAD_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
14029
14029
  interface GetThreadMessagesProps extends InfiniteQueryParams {
14030
14030
  threadId: string;
14031
14031
  }
@@ -14065,7 +14065,7 @@ declare const THREADS_QUERY_KEY: (access?: "public" | "private", groupId?: strin
14065
14065
  * @category Setters
14066
14066
  * @group Threads
14067
14067
  */
14068
- declare const SET_THREADS_QUERY_DATA: (client: QueryClient, keyParams: [access?: "public" | "private" | undefined, groupId?: string | undefined, eventId?: string | undefined], response: Awaited<ReturnType<typeof GetThreads>>) => void;
14068
+ declare const SET_THREADS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREADS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreads>>) => void;
14069
14069
  interface GetThreadsProps extends InfiniteQueryParams {
14070
14070
  access?: "public" | "private";
14071
14071
  groupId?: string;
@@ -14139,7 +14139,7 @@ declare const TIER_IMPORT_QUERY_KEY: (tierId: string, importId: string) => strin
14139
14139
  * @category Setters
14140
14140
  * @group Imports
14141
14141
  */
14142
- declare const SET_TIER_IMPORT_QUERY_DATA: (client: QueryClient, keyParams: [tierId: string, importId: string], response: Awaited<ReturnType<typeof GetTierImport>>) => void;
14142
+ declare const SET_TIER_IMPORT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof TIER_IMPORT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetTierImport>>) => void;
14143
14143
  interface GetTierImportProps extends SingleQueryParams {
14144
14144
  tierId: string;
14145
14145
  importId: string;