@connectedxm/client 7.10.2 → 8.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.
- package/dist/index.d.ts +380 -72
- package/dist/index.js +223 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -409,78 +409,10 @@ interface Event extends BaseEvent {
|
|
|
409
409
|
state: string | null;
|
|
410
410
|
country: string | null;
|
|
411
411
|
zip: string | null;
|
|
412
|
-
groupId: string | null;
|
|
413
|
-
group: Group | null;
|
|
414
|
-
groupOnly: boolean;
|
|
415
412
|
creatorId: string | null;
|
|
416
413
|
creator: BaseAccount;
|
|
417
|
-
registration: boolean;
|
|
418
|
-
registrationStart: string;
|
|
419
|
-
registrationEnd: string;
|
|
420
|
-
registrationHeaderImageId: string | null;
|
|
421
|
-
registrationHeaderImage: BaseImage | null;
|
|
422
|
-
registrationFooterImageId: string | null;
|
|
423
|
-
registrationFooterImage: BaseImage | null;
|
|
424
|
-
registrationHideTitle: boolean;
|
|
425
|
-
publicRegistrants: boolean;
|
|
426
|
-
activityFeedEnabled: boolean;
|
|
427
|
-
activationsDescription: string | null;
|
|
428
|
-
chatBotNumber: string | null;
|
|
429
|
-
sessionsVisibility: EventAgendaVisibility;
|
|
430
|
-
speakersVisibility: EventAgendaVisibility;
|
|
431
|
-
iosAppLink: string | null;
|
|
432
|
-
registrations: BaseRegistration[];
|
|
433
|
-
androidAppLink: string | null;
|
|
434
|
-
pages: BaseEventPage[];
|
|
435
|
-
streamReplay: BaseVideo | null;
|
|
436
|
-
createdAt: string;
|
|
437
|
-
updatedAt: string;
|
|
438
|
-
faqSections: BaseFaqSection[];
|
|
439
|
-
sponsorshipLevels: EventSponsorshipLevel[];
|
|
440
|
-
reservationDescription: string | null;
|
|
441
|
-
backgroundImage: BaseImage | null;
|
|
442
|
-
media: EventMediaItem[];
|
|
443
|
-
options: Record<string, any> | null;
|
|
444
|
-
meeting: BaseMeeting | null;
|
|
445
|
-
streams: BaseStreamInput[];
|
|
446
|
-
paymentIntegration: BasePaymentIntegration | null;
|
|
447
|
-
_count: {
|
|
448
|
-
activations: number;
|
|
449
|
-
sessions: number;
|
|
450
|
-
speakers: number;
|
|
451
|
-
sponsorshipLevels: number;
|
|
452
|
-
media: number;
|
|
453
|
-
roomTypes: number;
|
|
454
|
-
surveys: number;
|
|
455
|
-
};
|
|
456
414
|
}
|
|
457
415
|
declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
|
|
458
|
-
interface RegistrationEventDetails extends BaseEvent {
|
|
459
|
-
externalMeetingUrl: string | null;
|
|
460
|
-
reservationDescription: string | null;
|
|
461
|
-
externalUrl: string | null;
|
|
462
|
-
registration: boolean;
|
|
463
|
-
registrationCount: number;
|
|
464
|
-
registrationLimit: number;
|
|
465
|
-
registrationStart: string;
|
|
466
|
-
registrationEnd: string;
|
|
467
|
-
allowMultipleRegistrations: boolean;
|
|
468
|
-
allowSplitPayment: boolean;
|
|
469
|
-
splitPaymentPercentage: number;
|
|
470
|
-
splitPaymentNetDays: number | null;
|
|
471
|
-
splitPaymentDueDate: string | null;
|
|
472
|
-
paymentIntegration: BasePaymentIntegration | null;
|
|
473
|
-
tickets: {
|
|
474
|
-
enableCoupons: boolean;
|
|
475
|
-
}[];
|
|
476
|
-
_count: {
|
|
477
|
-
sections: number;
|
|
478
|
-
followups: number;
|
|
479
|
-
coupons: number;
|
|
480
|
-
addOns: number;
|
|
481
|
-
roomTypes: number;
|
|
482
|
-
};
|
|
483
|
-
}
|
|
484
416
|
declare enum RegistrationQuestionType {
|
|
485
417
|
text = "text",
|
|
486
418
|
textarea = "textarea",
|
|
@@ -588,6 +520,10 @@ interface RegistrationFollowup extends BaseRegistrationFollowup {
|
|
|
588
520
|
questions: RegistrationQuestion[];
|
|
589
521
|
}
|
|
590
522
|
interface EventListing extends Event {
|
|
523
|
+
registration: boolean;
|
|
524
|
+
publicRegistrants: boolean;
|
|
525
|
+
groupOnly: boolean;
|
|
526
|
+
group: BaseGroup | null;
|
|
591
527
|
visible: boolean;
|
|
592
528
|
externalMeetingUrl: string | null;
|
|
593
529
|
newActivityCreatorEmailNotification: boolean;
|
|
@@ -1395,19 +1331,58 @@ interface BaseRegistration {
|
|
|
1395
1331
|
announcementPushNotification: boolean;
|
|
1396
1332
|
}
|
|
1397
1333
|
interface Registration extends BaseRegistration {
|
|
1398
|
-
event: RegistrationEventDetails;
|
|
1399
|
-
account: BaseAccount;
|
|
1400
1334
|
passes: BasePass[];
|
|
1401
1335
|
packages: BaseAttendeePackage[];
|
|
1402
1336
|
createdAt: string;
|
|
1337
|
+
event: {
|
|
1338
|
+
externalMeetingUrl: string | null;
|
|
1339
|
+
meeting: BaseMeeting | null;
|
|
1340
|
+
streams: BaseStreamInput[];
|
|
1341
|
+
};
|
|
1403
1342
|
_count: {
|
|
1404
1343
|
payments: number;
|
|
1405
1344
|
coupons: number;
|
|
1406
1345
|
fromTransferLogs: number;
|
|
1407
1346
|
};
|
|
1408
1347
|
}
|
|
1348
|
+
interface RegistrationDraftPass {
|
|
1349
|
+
id: string;
|
|
1350
|
+
alternateId?: number;
|
|
1351
|
+
passTypeId: string;
|
|
1352
|
+
addOnIds: string[];
|
|
1353
|
+
coupon: {
|
|
1354
|
+
id: string;
|
|
1355
|
+
code: string;
|
|
1356
|
+
discountPercent: number | null;
|
|
1357
|
+
discountAmount: number | null;
|
|
1358
|
+
} | null;
|
|
1359
|
+
packageId: string | null;
|
|
1360
|
+
responses: {
|
|
1361
|
+
questionId: string;
|
|
1362
|
+
value: string;
|
|
1363
|
+
}[];
|
|
1364
|
+
createdAt: string;
|
|
1365
|
+
}
|
|
1366
|
+
interface RegistrationDraftReservation {
|
|
1367
|
+
id: string;
|
|
1368
|
+
roomTypeId: string;
|
|
1369
|
+
room: {
|
|
1370
|
+
id: string;
|
|
1371
|
+
roomName: string;
|
|
1372
|
+
} | null;
|
|
1373
|
+
start: string | null;
|
|
1374
|
+
end: string | null;
|
|
1375
|
+
}
|
|
1376
|
+
interface RegistrationDraftPackage {
|
|
1377
|
+
id: string;
|
|
1378
|
+
packageTypeId: string;
|
|
1379
|
+
}
|
|
1380
|
+
interface RegistrationDraft {
|
|
1381
|
+
passes: RegistrationDraftPass[];
|
|
1382
|
+
packages: RegistrationDraftPackage[];
|
|
1383
|
+
reservation: RegistrationDraftReservation | null;
|
|
1384
|
+
}
|
|
1409
1385
|
interface ListingRegistration extends BaseRegistration {
|
|
1410
|
-
event: RegistrationEventDetails;
|
|
1411
1386
|
account: BaseAccount & {
|
|
1412
1387
|
email: string | null;
|
|
1413
1388
|
phone: string | null;
|
|
@@ -2778,6 +2753,274 @@ interface SeriesRegistration extends BaseSeriesRegistration {
|
|
|
2778
2753
|
updatedAt: string;
|
|
2779
2754
|
passes: BasePass[];
|
|
2780
2755
|
}
|
|
2756
|
+
interface EventConfig {
|
|
2757
|
+
EVENT_ID: string;
|
|
2758
|
+
SLUG: string;
|
|
2759
|
+
NAME: string;
|
|
2760
|
+
SHORT_DESCRIPTION: string;
|
|
2761
|
+
LONG_DESCRIPTION: string | null;
|
|
2762
|
+
EVENT_START: string;
|
|
2763
|
+
EVENT_END: string;
|
|
2764
|
+
TIMEZONE: string | null;
|
|
2765
|
+
VENUE: string | null;
|
|
2766
|
+
LOCATION: string | null;
|
|
2767
|
+
ADDRESS1: string | null;
|
|
2768
|
+
ADDRESS2: string | null;
|
|
2769
|
+
CITY: string | null;
|
|
2770
|
+
STATE: string | null;
|
|
2771
|
+
COUNTRY: string | null;
|
|
2772
|
+
ZIP: string | null;
|
|
2773
|
+
IMAGE: {
|
|
2774
|
+
id: string;
|
|
2775
|
+
uri: string;
|
|
2776
|
+
width: number;
|
|
2777
|
+
height: number;
|
|
2778
|
+
} | null;
|
|
2779
|
+
SQUARE_IMAGE: {
|
|
2780
|
+
id: string;
|
|
2781
|
+
uri: string;
|
|
2782
|
+
width: number;
|
|
2783
|
+
height: number;
|
|
2784
|
+
} | null;
|
|
2785
|
+
CREATOR_ID: string | null;
|
|
2786
|
+
EXTERNAL_URL: string | null;
|
|
2787
|
+
REGISTRATION_HEADER_IMAGE: {
|
|
2788
|
+
id: string;
|
|
2789
|
+
uri: string;
|
|
2790
|
+
width: number;
|
|
2791
|
+
height: number;
|
|
2792
|
+
} | null;
|
|
2793
|
+
REGISTRATION_FOOTER_IMAGE: {
|
|
2794
|
+
id: string;
|
|
2795
|
+
uri: string;
|
|
2796
|
+
width: number;
|
|
2797
|
+
height: number;
|
|
2798
|
+
} | null;
|
|
2799
|
+
REGISTRATION: boolean;
|
|
2800
|
+
REGISTRATION_START: string | null;
|
|
2801
|
+
REGISTRATION_END: string | null;
|
|
2802
|
+
REGISTRATION_HIDE_TITLE: boolean;
|
|
2803
|
+
REGISTRATION_LIMIT: number | null;
|
|
2804
|
+
ALLOW_MULTIPLE_REGISTRATIONS: boolean;
|
|
2805
|
+
PUBLIC_REGISTRANTS: boolean;
|
|
2806
|
+
SERIES: {
|
|
2807
|
+
id: string;
|
|
2808
|
+
registration: boolean;
|
|
2809
|
+
name: string;
|
|
2810
|
+
slug: string;
|
|
2811
|
+
image: {
|
|
2812
|
+
id: string;
|
|
2813
|
+
uri: string;
|
|
2814
|
+
width: number;
|
|
2815
|
+
height: number;
|
|
2816
|
+
} | null;
|
|
2817
|
+
} | null;
|
|
2818
|
+
GROUP_ONLY: boolean;
|
|
2819
|
+
GROUP: {
|
|
2820
|
+
id: string;
|
|
2821
|
+
name: string;
|
|
2822
|
+
slug: string;
|
|
2823
|
+
image: {
|
|
2824
|
+
id: string;
|
|
2825
|
+
uri: string;
|
|
2826
|
+
width: number;
|
|
2827
|
+
height: number;
|
|
2828
|
+
} | null;
|
|
2829
|
+
} | null;
|
|
2830
|
+
RESERVATION_DESCRIPTION: string | null;
|
|
2831
|
+
CURRENCY: string;
|
|
2832
|
+
CURRENCY_DISPLAY: "symbol" | "code";
|
|
2833
|
+
ALLOW_SPLIT_PAYMENT: boolean;
|
|
2834
|
+
SPLIT_PAYMENT_PERCENTAGE: number;
|
|
2835
|
+
SPLIT_PAYMENT_NET_DAYS: number;
|
|
2836
|
+
SPLIT_PAYMENT_DUE_DATE: string | null;
|
|
2837
|
+
PASS_TYPES: {
|
|
2838
|
+
id: string;
|
|
2839
|
+
name: string;
|
|
2840
|
+
price: number;
|
|
2841
|
+
shortDescription: string;
|
|
2842
|
+
longDescription: string | null;
|
|
2843
|
+
image: {
|
|
2844
|
+
id: string;
|
|
2845
|
+
uri: string;
|
|
2846
|
+
width: number;
|
|
2847
|
+
height: number;
|
|
2848
|
+
} | null;
|
|
2849
|
+
visibility: TicketVisibility;
|
|
2850
|
+
limitPerAccount: number | null;
|
|
2851
|
+
countryCodes: string | null;
|
|
2852
|
+
groupPassDescription: string | null;
|
|
2853
|
+
minQuantityPerSale: number;
|
|
2854
|
+
maxQuantityPerSale: number;
|
|
2855
|
+
requiresApproval: boolean;
|
|
2856
|
+
requireCoupon: boolean;
|
|
2857
|
+
requiredPassTypeId: string | null;
|
|
2858
|
+
priceSchedules: {
|
|
2859
|
+
name: string | null;
|
|
2860
|
+
price: number;
|
|
2861
|
+
startDate: string;
|
|
2862
|
+
endDate: string;
|
|
2863
|
+
}[];
|
|
2864
|
+
allowedGroupPassTiersIds: string[];
|
|
2865
|
+
allowedTiersIds: string[];
|
|
2866
|
+
disallowedTiersIds: string[];
|
|
2867
|
+
soldout: boolean;
|
|
2868
|
+
}[];
|
|
2869
|
+
PACKAGES: {
|
|
2870
|
+
id: string;
|
|
2871
|
+
name: string;
|
|
2872
|
+
price: number;
|
|
2873
|
+
description: string;
|
|
2874
|
+
image: {
|
|
2875
|
+
id: string;
|
|
2876
|
+
uri: string;
|
|
2877
|
+
width: number;
|
|
2878
|
+
height: number;
|
|
2879
|
+
} | null;
|
|
2880
|
+
passes: {
|
|
2881
|
+
passTypeId: string;
|
|
2882
|
+
quantity: number;
|
|
2883
|
+
}[];
|
|
2884
|
+
}[];
|
|
2885
|
+
ADD_ONS: {
|
|
2886
|
+
id: string;
|
|
2887
|
+
name: string;
|
|
2888
|
+
shortDescription: string;
|
|
2889
|
+
price: number;
|
|
2890
|
+
image: {
|
|
2891
|
+
id: string;
|
|
2892
|
+
uri: string;
|
|
2893
|
+
width: number;
|
|
2894
|
+
height: number;
|
|
2895
|
+
} | null;
|
|
2896
|
+
pricePerNight: boolean;
|
|
2897
|
+
allowedPassTypesIds: string[];
|
|
2898
|
+
allowedTiersIds: string[];
|
|
2899
|
+
disallowedTiersIds: string[];
|
|
2900
|
+
soldout: boolean;
|
|
2901
|
+
}[];
|
|
2902
|
+
ROOM_TYPES: {
|
|
2903
|
+
id: string;
|
|
2904
|
+
name: string;
|
|
2905
|
+
description: string | null;
|
|
2906
|
+
image: {
|
|
2907
|
+
id: string;
|
|
2908
|
+
uri: string;
|
|
2909
|
+
width: number;
|
|
2910
|
+
height: number;
|
|
2911
|
+
} | null;
|
|
2912
|
+
minPasses: number | null;
|
|
2913
|
+
maxPasses: number | null;
|
|
2914
|
+
minStart: string | null;
|
|
2915
|
+
defaultStart: string | null;
|
|
2916
|
+
maxStart: string | null;
|
|
2917
|
+
minEnd: string | null;
|
|
2918
|
+
defaultEnd: string | null;
|
|
2919
|
+
maxEnd: string | null;
|
|
2920
|
+
price: number;
|
|
2921
|
+
pricePerNight: boolean;
|
|
2922
|
+
rooms: {
|
|
2923
|
+
id: string;
|
|
2924
|
+
roomName: string;
|
|
2925
|
+
}[];
|
|
2926
|
+
passTypes: {
|
|
2927
|
+
id: string;
|
|
2928
|
+
defaultEnd: string | null;
|
|
2929
|
+
defaultStart: string | null;
|
|
2930
|
+
maxEnd: string | null;
|
|
2931
|
+
maxStart: string | null;
|
|
2932
|
+
minEnd: string | null;
|
|
2933
|
+
minStart: string | null;
|
|
2934
|
+
includedNights: number;
|
|
2935
|
+
maxPasses: number | null;
|
|
2936
|
+
minPasses: number | null;
|
|
2937
|
+
premium: number;
|
|
2938
|
+
}[];
|
|
2939
|
+
addOns: {
|
|
2940
|
+
id: string;
|
|
2941
|
+
defaultEnd: string | null;
|
|
2942
|
+
defaultStart: string | null;
|
|
2943
|
+
maxEnd: string | null;
|
|
2944
|
+
maxStart: string | null;
|
|
2945
|
+
minEnd: string | null;
|
|
2946
|
+
minStart: string | null;
|
|
2947
|
+
}[];
|
|
2948
|
+
allowedTiersIds: string[];
|
|
2949
|
+
disallowedTiersIds: string[];
|
|
2950
|
+
soldout: boolean;
|
|
2951
|
+
}[];
|
|
2952
|
+
SECTIONS: {
|
|
2953
|
+
id: string;
|
|
2954
|
+
name: string;
|
|
2955
|
+
description: string | null;
|
|
2956
|
+
passTypeIds: string[];
|
|
2957
|
+
accountTiersIds: string[];
|
|
2958
|
+
disallowedTiersIds: string[];
|
|
2959
|
+
eventAddOnsIds: string[];
|
|
2960
|
+
questionIds: string[];
|
|
2961
|
+
}[];
|
|
2962
|
+
QUESTIONS: {
|
|
2963
|
+
id: string;
|
|
2964
|
+
name: string;
|
|
2965
|
+
type: RegistrationQuestionType;
|
|
2966
|
+
label?: string;
|
|
2967
|
+
placeholder?: string;
|
|
2968
|
+
description?: string;
|
|
2969
|
+
masked?: boolean;
|
|
2970
|
+
mutable?: boolean;
|
|
2971
|
+
default: string | null;
|
|
2972
|
+
min?: string;
|
|
2973
|
+
max?: string;
|
|
2974
|
+
sortOrder: number;
|
|
2975
|
+
featured: boolean;
|
|
2976
|
+
required: boolean;
|
|
2977
|
+
validation?: string;
|
|
2978
|
+
validationMessage?: string;
|
|
2979
|
+
choices?: {
|
|
2980
|
+
id: string;
|
|
2981
|
+
text?: string;
|
|
2982
|
+
value: string;
|
|
2983
|
+
description?: string;
|
|
2984
|
+
subQuestionIds?: string[];
|
|
2985
|
+
soldout: boolean;
|
|
2986
|
+
}[];
|
|
2987
|
+
}[];
|
|
2988
|
+
HAS_ADD_ONS_STEP: boolean;
|
|
2989
|
+
HAS_RESERVATIONS_STEP: boolean;
|
|
2990
|
+
HAS_QUESTIONS_STEP: boolean;
|
|
2991
|
+
HAS_COUPONS: boolean;
|
|
2992
|
+
ACTIVATIONS_DESCRIPTION: string | null;
|
|
2993
|
+
SHOW_ACTIVITIES: boolean;
|
|
2994
|
+
SHOW_ACTIVATIONS: boolean;
|
|
2995
|
+
SHOW_SESSIONS: boolean;
|
|
2996
|
+
SESSION_VISIBILITY: EventAgendaVisibility;
|
|
2997
|
+
SHOW_SPEAKERS: boolean;
|
|
2998
|
+
SPEAKER_VISIBILITY: EventAgendaVisibility;
|
|
2999
|
+
SHOW_FAQS: boolean;
|
|
3000
|
+
SHOW_MEDIA: boolean;
|
|
3001
|
+
SHOW_SPONSORS: boolean;
|
|
3002
|
+
SHOW_SURVEYS: boolean;
|
|
3003
|
+
SHOW_ATTENDEES: boolean;
|
|
3004
|
+
SHOW_PAGES: boolean;
|
|
3005
|
+
SHOW_FOLLOWUPS: boolean;
|
|
3006
|
+
SHOW_STREAMS: boolean;
|
|
3007
|
+
PAGES: {
|
|
3008
|
+
slug: string;
|
|
3009
|
+
title: string;
|
|
3010
|
+
content: string;
|
|
3011
|
+
}[];
|
|
3012
|
+
FAQ_SECTIONS: {
|
|
3013
|
+
id: string;
|
|
3014
|
+
name: string;
|
|
3015
|
+
questions: {
|
|
3016
|
+
id: string;
|
|
3017
|
+
slug: string;
|
|
3018
|
+
question: string;
|
|
3019
|
+
answer: string;
|
|
3020
|
+
}[];
|
|
3021
|
+
}[];
|
|
3022
|
+
OPTIONS: Record<string, any> | null;
|
|
3023
|
+
}
|
|
2781
3024
|
|
|
2782
3025
|
interface ClientApiParams {
|
|
2783
3026
|
apiUrl: "https://client-api.connected.dev" | "https://staging-client-api.connected.dev" | "http://localhost:4001";
|
|
@@ -3264,6 +3507,21 @@ interface UpdateEventSessionPassResponsesParams extends MutationParams {
|
|
|
3264
3507
|
declare const UpdateEventSessionPassResponses: ({ eventId, sessionId, passId, responses, clientApiParams, queryClient, }: UpdateEventSessionPassResponsesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3265
3508
|
declare const useUpdateEventSessionPassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventSessionPassResponses>>, Omit<UpdateEventSessionPassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventSessionPassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3266
3509
|
|
|
3510
|
+
interface UpdateEventRegistrationParams extends MutationParams {
|
|
3511
|
+
eventId: string;
|
|
3512
|
+
draft: RegistrationDraft;
|
|
3513
|
+
}
|
|
3514
|
+
declare const UpdateEventRegistration: ({ eventId, draft, clientApiParams, }: UpdateEventRegistrationParams) => Promise<ConnectedXMResponse<RegistrationDraft>>;
|
|
3515
|
+
declare const useUpdateEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateEventRegistration>>, Omit<UpdateEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationDraft>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3516
|
+
|
|
3517
|
+
interface ApplyEventRegistrationCouponParams extends MutationParams {
|
|
3518
|
+
eventId: string;
|
|
3519
|
+
draft: RegistrationDraft;
|
|
3520
|
+
code: string;
|
|
3521
|
+
}
|
|
3522
|
+
declare const ApplyEventRegistrationCoupon: ({ eventId, draft, code, clientApiParams, }: ApplyEventRegistrationCouponParams) => Promise<ConnectedXMResponse<RegistrationDraft>>;
|
|
3523
|
+
declare const useApplyEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof ApplyEventRegistrationCoupon>>, Omit<ApplyEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationDraft>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<ApplyEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3524
|
+
|
|
3267
3525
|
interface CapturePaymentIntentParams extends MutationParams {
|
|
3268
3526
|
intent: PaymentIntent;
|
|
3269
3527
|
paymentDetails?: {
|
|
@@ -4944,6 +5202,19 @@ interface GetSubscribedContentsParams extends InfiniteQueryParams {
|
|
|
4944
5202
|
declare const GetSubscribedContents: ({ type, interest, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSubscribedContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
4945
5203
|
declare const useGetSubscribedContents: (type?: "video" | "audio" | "article", interest?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscribedContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4946
5204
|
|
|
5205
|
+
interface ContentsExploreData {
|
|
5206
|
+
featuredChannels: Channel[];
|
|
5207
|
+
featuredContents: Content[];
|
|
5208
|
+
upcomingContents: Content[];
|
|
5209
|
+
pastContents: Content[];
|
|
5210
|
+
}
|
|
5211
|
+
declare const CONTENTS_EXPLORE_QUERY_KEY: () => QueryKey;
|
|
5212
|
+
declare const SET_CONTENTS_EXPLORE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENTS_EXPLORE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentsExplore>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5213
|
+
interface GetContentsExploreProps extends SingleQueryParams {
|
|
5214
|
+
}
|
|
5215
|
+
declare const GetContentsExplore: ({ clientApiParams, }: GetContentsExploreProps) => Promise<ConnectedXMResponse<ContentsExploreData>>;
|
|
5216
|
+
declare const useGetContentsExplore: (options?: SingleQueryOptions<ReturnType<typeof GetContentsExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ContentsExploreData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5217
|
+
|
|
4947
5218
|
declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
|
|
4948
5219
|
declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4949
5220
|
interface GetEventProps extends SingleQueryParams {
|
|
@@ -4952,6 +5223,14 @@ interface GetEventProps extends SingleQueryParams {
|
|
|
4952
5223
|
declare const GetEvent: ({ eventId, clientApiParams, }: GetEventProps) => Promise<ConnectedXMResponse<Event>>;
|
|
4953
5224
|
declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4954
5225
|
|
|
5226
|
+
declare const EVENT_CONFIG_QUERY_KEY: (eventId: string) => QueryKey;
|
|
5227
|
+
declare const SET_EVENT_CONFIG_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_CONFIG_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventConfig>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5228
|
+
interface GetEventConfigProps extends SingleQueryParams {
|
|
5229
|
+
eventId: string;
|
|
5230
|
+
}
|
|
5231
|
+
declare const GetEventConfig: ({ eventId, clientApiParams, }: GetEventConfigProps) => Promise<ConnectedXMResponse<EventConfig>>;
|
|
5232
|
+
declare const useGetEventConfig: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventConfig>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventConfig>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5233
|
+
|
|
4955
5234
|
declare const EVENT_ACTIVITIES_QUERY_KEY: (eventId: string, featured?: boolean) => QueryKey;
|
|
4956
5235
|
declare const SET_EVENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4957
5236
|
interface GetEventActivitiesProps extends InfiniteQueryParams {
|
|
@@ -5174,6 +5453,23 @@ interface GetEventsExploreProps extends SingleQueryParams {
|
|
|
5174
5453
|
declare const GetEventsExplore: ({ clientApiParams, }: GetEventsExploreProps) => Promise<ConnectedXMResponse<EventsExploreData>>;
|
|
5175
5454
|
declare const useGetEventsExplore: (options?: SingleQueryOptions<ReturnType<typeof GetEventsExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventsExploreData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5176
5455
|
|
|
5456
|
+
declare const EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => unknown[];
|
|
5457
|
+
interface GetEventRegistrationProps extends SingleQueryParams {
|
|
5458
|
+
eventId: string;
|
|
5459
|
+
}
|
|
5460
|
+
declare const GetEventRegistration: ({ eventId, clientApiParams, }: GetEventRegistrationProps) => Promise<Awaited<ConnectedXMResponse<RegistrationDraft>>>;
|
|
5461
|
+
declare const useGetEventRegistration: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationDraft>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5462
|
+
|
|
5463
|
+
declare const EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, draftHash: string, addressId?: string, split?: boolean) => unknown[];
|
|
5464
|
+
interface GetEventRegistrationIntentProps extends SingleQueryParams {
|
|
5465
|
+
eventId: string;
|
|
5466
|
+
draft: RegistrationDraft;
|
|
5467
|
+
addressId: string;
|
|
5468
|
+
split: boolean;
|
|
5469
|
+
}
|
|
5470
|
+
declare const GetEventRegistrationIntent: ({ eventId, draft, addressId, split, clientApiParams, }: GetEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
5471
|
+
declare const useGetEventRegistrationIntent: (eventId: string | undefined, draft: RegistrationDraft, draftHash: string, addressId?: string, split?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5472
|
+
|
|
5177
5473
|
declare const GROUPS_QUERY_KEY: (access?: "public" | "private") => QueryKey;
|
|
5178
5474
|
declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroups>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
5179
5475
|
interface GetGroupsProps extends InfiniteQueryParams {
|
|
@@ -5295,6 +5591,18 @@ interface GetGroupsRequestedProps extends InfiniteQueryParams {
|
|
|
5295
5591
|
declare const GetGroupsRequested: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetGroupsRequestedProps) => Promise<ConnectedXMResponse<Group[]>>;
|
|
5296
5592
|
declare const useGetGroupsRequested: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupsRequested>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5297
5593
|
|
|
5594
|
+
interface GroupsExploreData {
|
|
5595
|
+
featuredGroups: Group[];
|
|
5596
|
+
publicGroups: Group[];
|
|
5597
|
+
privateGroups: Group[];
|
|
5598
|
+
}
|
|
5599
|
+
declare const GROUPS_EXPLORE_QUERY_KEY: () => QueryKey;
|
|
5600
|
+
declare const SET_GROUPS_EXPLORE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUPS_EXPLORE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupsExplore>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5601
|
+
interface GetGroupsExploreProps extends SingleQueryParams {
|
|
5602
|
+
}
|
|
5603
|
+
declare const GetGroupsExplore: ({ clientApiParams, }: GetGroupsExploreProps) => Promise<ConnectedXMResponse<GroupsExploreData>>;
|
|
5604
|
+
declare const useGetGroupsExplore: (options?: SingleQueryOptions<ReturnType<typeof GetGroupsExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupsExploreData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5605
|
+
|
|
5298
5606
|
declare const INTEGRATION_QUERY_KEY: (integrationId: string) => QueryKey;
|
|
5299
5607
|
declare const SET_INTEGRATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTEGRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetIntegration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
5300
5608
|
interface GetIntegrationProps extends SingleQueryParams {
|
|
@@ -6270,4 +6578,4 @@ declare const GetSupportTicketActivityLog: ({ supportTicketId, pageParam, pageSi
|
|
|
6270
6578
|
*/
|
|
6271
6579
|
declare const useGetSupportTicketActivityLog: (supportTicketId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSupportTicketActivityLog>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SupportTicketActivityLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6272
6580
|
|
|
6273
|
-
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_QUESTIONS_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlock, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseBookingSpaceQuestionChoiceTranslation, type BaseBookingSpaceQuestionTranslation, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionSection, type BaseEventSessionTime, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrgMembership, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSelf, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSession, type BaseSessionBookmark, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type Block, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingQuestionResponse, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionTranslation, BookingSpaceQuestionType, type BookingSpaceSlot, BookmarkEventAttendeePassSession, type BookmarkEventAttendeePassSessionParams, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSelfEventSessionAccess, type CancelSelfEventSessionAccessParams, CancelSeriesRegistration, type CancelSeriesRegistrationParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckLogin, type CheckLoginParams, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMError, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateStreamChatMessage, type CreateStreamChatMessageParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteStreamChatMessage, type DeleteStreamChatMessageParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_ADDRESS_VALIDATION_REQUIRED, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_NO_ACCOUNT_SELECTED, ERR_NO_BOOKING_FOUND, ERR_NO_PASS_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTER_THROUGH_SERIES, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_EXPLORE_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_PASS_INTENT_QUERY_KEY, EVENT_SESSION_PASS_SECTIONS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, EventSessionQuestionType, type EventSessionSection, type EventSessionTime, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type EventsExploreData, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookingSpaceQuestions, type GetBookingSpaceQuestionsProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSessionPassIntent, type GetEventSessionPassIntentProps, GetEventSessionPassSections, type GetEventSessionPassSectionsProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, GetEventsExplore, type GetEventsExploreProps, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, GetInvoicePayments, type GetInvoicePaymentsProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, GetSelfEventAttendeePayments, type GetSelfEventAttendeePaymentsProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfLogins, type GetSelfLoginsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, GetSelfProfile, type GetSelfProfileProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSeriesRegistration, GetSeriesRegistrationIntent, type GetSeriesRegistrationIntentProps, type GetSeriesRegistrationProps, GetSeriesRegistrationQuestions, type GetSeriesRegistrationQuestionsProps, GetStreamChatMessages, type GetStreamChatMessagesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSupportTicket, GetSupportTicketActivityLog, GetSupportTicketMessages, GetSupportTickets, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetSurveys, type GetSurveysProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, JoinMeetingViaActivity, type JoinMeetingViaActivityParams, JoinMeetingViaBooking, type JoinMeetingViaBookingParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_LOGINS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PROFILE_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SERIES_REGISTRATION_INTENT_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_QUESTIONS_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUESTIONS_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_EXPLORE_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_PASS_SECTIONS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_PROFILE_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_QUESTIONS_QUERY_DATA, SET_STREAM_CHAT_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_CHAT_MESSAGES_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, type Series, type SeriesQuestion, SeriesQuestionType, type SeriesRegistration, type Session, SessionAccess, type SessionBookmark, type SessionLocation, SessionVisibility, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamChatMessage, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivityLogSource, SupportTicketActivityLogType, type SupportTicketMessage, SupportTicketMessageSource, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, SurveyStatus, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UnbookmarkEventAttendeePassSession, type UnbookmarkEventAttendeePassSessionParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateBookingResponses, type UpdateBookingResponsesParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateEventSessionPassResponses, type UpdateEventSessionPassResponsesParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistration, type UpdateSelfEventRegistrationParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventRegistrationSearchListResponse, type UpdateSelfEventRegistrationSearchListResponseParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateStreamChatMessage, type UpdateStreamChatMessageParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useBookmarkEventAttendeePassSession, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSelfEventSessionAccess, useCancelSeriesRegistration, useCapturePaymentIntent, useCheckLogin, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateStreamChatMessage, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteStreamChatMessage, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookingSpaceQuestions, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventRegistrants, useGetEventSessionPassIntent, useGetEventSessionPassSections, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetEventsExplore, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeePayments, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfProfile, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesRegistration, useGetSeriesRegistrationIntent, useGetSeriesRegistrationQuestions, useGetStreamChatMessages, useGetSubscribedChannels, useGetSubscribedContents, useGetSupportTicket, useGetSupportTicketActivityLog, useGetSupportTicketMessages, useGetSupportTickets, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetSurveys, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaActivity, useJoinMeetingViaBooking, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUnbookmarkEventAttendeePassSession, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateBookingResponses, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateEventSessionPassResponses, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistration, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventRegistrationSearchListResponse, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSeriesRegistrationResponses, useUpdateStreamChatMessage, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useUpsertLinkPreview, useVerifyLoginAccount };
|
|
6581
|
+
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_QUESTIONS_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlock, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseBookingSpaceQuestionChoiceTranslation, type BaseBookingSpaceQuestionTranslation, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionSection, type BaseEventSessionTime, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrgMembership, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSelf, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSession, type BaseSessionBookmark, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type Block, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingQuestionResponse, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionTranslation, BookingSpaceQuestionType, type BookingSpaceSlot, BookmarkEventAttendeePassSession, type BookmarkEventAttendeePassSessionParams, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_EXPLORE_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSelfEventSessionAccess, type CancelSelfEventSessionAccessParams, CancelSeriesRegistration, type CancelSeriesRegistrationParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckLogin, type CheckLoginParams, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMError, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type ContentsExploreData, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateStreamChatMessage, type CreateStreamChatMessageParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteStreamChatMessage, type DeleteStreamChatMessageParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_ADDRESS_VALIDATION_REQUIRED, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_NO_ACCOUNT_SELECTED, ERR_NO_BOOKING_FOUND, ERR_NO_PASS_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTER_THROUGH_SERIES, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_EXPLORE_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_CONFIG_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_REGISTRATION_INTENT_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_PASS_INTENT_QUERY_KEY, EVENT_SESSION_PASS_SECTIONS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventConfig, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, EventSessionQuestionType, type EventSessionSection, type EventSessionTime, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type EventsExploreData, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_EXPLORE_QUERY_KEY, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookingSpaceQuestions, type GetBookingSpaceQuestionsProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, GetContentsExplore, type GetContentsExploreProps, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventConfig, type GetEventConfigProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventRegistration, GetEventRegistrationIntent, type GetEventRegistrationIntentProps, type GetEventRegistrationProps, GetEventSessionPassIntent, type GetEventSessionPassIntentProps, GetEventSessionPassSections, type GetEventSessionPassSectionsProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, GetEventsExplore, type GetEventsExploreProps, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsExplore, type GetGroupsExploreProps, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, GetInvoicePayments, type GetInvoicePaymentsProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, GetSelfEventAttendeePayments, type GetSelfEventAttendeePaymentsProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfLogins, type GetSelfLoginsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, GetSelfProfile, type GetSelfProfileProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSeriesRegistration, GetSeriesRegistrationIntent, type GetSeriesRegistrationIntentProps, type GetSeriesRegistrationProps, GetSeriesRegistrationQuestions, type GetSeriesRegistrationQuestionsProps, GetStreamChatMessages, type GetStreamChatMessagesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSupportTicket, GetSupportTicketActivityLog, GetSupportTicketMessages, GetSupportTickets, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetSurveys, type GetSurveysProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, type GroupsExploreData, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, JoinMeetingViaActivity, type JoinMeetingViaActivityParams, JoinMeetingViaBooking, type JoinMeetingViaBookingParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationDraft, type RegistrationDraftPackage, type RegistrationDraftPass, type RegistrationDraftReservation, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_LOGINS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PROFILE_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SERIES_REGISTRATION_INTENT_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_QUESTIONS_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUESTIONS_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_EXPLORE_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_EXPLORE_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_CONFIG_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_PASS_SECTIONS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_EXPLORE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_PROFILE_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_QUESTIONS_QUERY_DATA, SET_STREAM_CHAT_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_CHAT_MESSAGES_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, type Series, type SeriesQuestion, SeriesQuestionType, type SeriesRegistration, type Session, SessionAccess, type SessionBookmark, type SessionLocation, SessionVisibility, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamChatMessage, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivityLogSource, SupportTicketActivityLogType, type SupportTicketMessage, SupportTicketMessageSource, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, SurveyStatus, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UnbookmarkEventAttendeePassSession, type UnbookmarkEventAttendeePassSessionParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateBookingResponses, type UpdateBookingResponsesParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateEventRegistration, type UpdateEventRegistrationParams, UpdateEventSessionPassResponses, type UpdateEventSessionPassResponsesParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistration, type UpdateSelfEventRegistrationParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventRegistrationSearchListResponse, type UpdateSelfEventRegistrationSearchListResponseParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateStreamChatMessage, type UpdateStreamChatMessageParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useApplyEventRegistrationCoupon, useBlockAccount, useBlockIntegration, useBookmarkEventAttendeePassSession, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSelfEventSessionAccess, useCancelSeriesRegistration, useCapturePaymentIntent, useCheckLogin, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateStreamChatMessage, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteStreamChatMessage, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookingSpaceQuestions, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetContentsExplore, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventConfig, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventRegistrants, useGetEventRegistration, useGetEventRegistrationIntent, useGetEventSessionPassIntent, useGetEventSessionPassSections, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetEventsExplore, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsExplore, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeePayments, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfProfile, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesRegistration, useGetSeriesRegistrationIntent, useGetSeriesRegistrationQuestions, useGetStreamChatMessages, useGetSubscribedChannels, useGetSubscribedContents, useGetSupportTicket, useGetSupportTicketActivityLog, useGetSupportTicketMessages, useGetSupportTickets, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetSurveys, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaActivity, useJoinMeetingViaBooking, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUnbookmarkEventAttendeePassSession, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateBookingResponses, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateEventRegistration, useUpdateEventSessionPassResponses, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistration, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventRegistrationSearchListResponse, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSeriesRegistrationResponses, useUpdateStreamChatMessage, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useUpsertLinkPreview, useVerifyLoginAccount };
|
package/dist/index.js
CHANGED
|
@@ -1849,6 +1849,32 @@ var useGetSubscribedContents = (type, interest, params = {}, options = {}) => {
|
|
|
1849
1849
|
);
|
|
1850
1850
|
};
|
|
1851
1851
|
|
|
1852
|
+
// src/queries/contents/useGetContentsExplore.ts
|
|
1853
|
+
var CONTENTS_EXPLORE_QUERY_KEY = () => ["CONTENTS_EXPLORE"];
|
|
1854
|
+
var SET_CONTENTS_EXPLORE_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
1855
|
+
client.setQueryData(
|
|
1856
|
+
[
|
|
1857
|
+
...CONTENTS_EXPLORE_QUERY_KEY(...keyParams),
|
|
1858
|
+
...GetBaseSingleQueryKeys(...baseKeys)
|
|
1859
|
+
],
|
|
1860
|
+
response
|
|
1861
|
+
);
|
|
1862
|
+
};
|
|
1863
|
+
var GetContentsExplore = async ({
|
|
1864
|
+
clientApiParams
|
|
1865
|
+
}) => {
|
|
1866
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
1867
|
+
const { data } = await clientApi.get(`/contents/explore`);
|
|
1868
|
+
return data;
|
|
1869
|
+
};
|
|
1870
|
+
var useGetContentsExplore = (options = {}) => {
|
|
1871
|
+
return useConnectedSingleQuery(
|
|
1872
|
+
CONTENTS_EXPLORE_QUERY_KEY(),
|
|
1873
|
+
(params) => GetContentsExplore({ ...params }),
|
|
1874
|
+
options
|
|
1875
|
+
);
|
|
1876
|
+
};
|
|
1877
|
+
|
|
1852
1878
|
// src/queries/events/useGetEvents.ts
|
|
1853
1879
|
var EVENTS_QUERY_KEY = (past, featured) => {
|
|
1854
1880
|
const keys = ["EVENTS"];
|
|
@@ -1930,6 +1956,39 @@ var useGetEvent = (eventId = "", options = {}) => {
|
|
|
1930
1956
|
);
|
|
1931
1957
|
};
|
|
1932
1958
|
|
|
1959
|
+
// src/queries/events/useGetEventConfig.ts
|
|
1960
|
+
var EVENT_CONFIG_QUERY_KEY = (eventId) => [
|
|
1961
|
+
...EVENT_QUERY_KEY(eventId),
|
|
1962
|
+
"CONFIG"
|
|
1963
|
+
];
|
|
1964
|
+
var SET_EVENT_CONFIG_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
1965
|
+
client.setQueryData(
|
|
1966
|
+
[
|
|
1967
|
+
...EVENT_CONFIG_QUERY_KEY(...keyParams),
|
|
1968
|
+
...GetBaseSingleQueryKeys(...baseKeys)
|
|
1969
|
+
],
|
|
1970
|
+
response
|
|
1971
|
+
);
|
|
1972
|
+
};
|
|
1973
|
+
var GetEventConfig = async ({
|
|
1974
|
+
eventId,
|
|
1975
|
+
clientApiParams
|
|
1976
|
+
}) => {
|
|
1977
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
1978
|
+
const { data } = await clientApi.get(`/events/${eventId}/config`);
|
|
1979
|
+
return data;
|
|
1980
|
+
};
|
|
1981
|
+
var useGetEventConfig = (eventId = "", options = {}) => {
|
|
1982
|
+
return useConnectedSingleQuery(
|
|
1983
|
+
EVENT_CONFIG_QUERY_KEY(eventId),
|
|
1984
|
+
(params) => GetEventConfig({ eventId, ...params }),
|
|
1985
|
+
{
|
|
1986
|
+
...options,
|
|
1987
|
+
enabled: !!eventId && (options?.enabled ?? true)
|
|
1988
|
+
}
|
|
1989
|
+
);
|
|
1990
|
+
};
|
|
1991
|
+
|
|
1933
1992
|
// src/queries/events/useGetEventActivities.ts
|
|
1934
1993
|
var EVENT_ACTIVITIES_QUERY_KEY = (eventId, featured) => {
|
|
1935
1994
|
const key = [...ACTIVITIES_QUERY_KEY(), ...EVENT_QUERY_KEY(eventId)];
|
|
@@ -2812,6 +2871,87 @@ var useGetEventsExplore = (options = {}) => {
|
|
|
2812
2871
|
);
|
|
2813
2872
|
};
|
|
2814
2873
|
|
|
2874
|
+
// src/queries/events/useGetEventRegistration.ts
|
|
2875
|
+
var EVENT_REGISTRATION_QUERY_KEY = (eventId) => {
|
|
2876
|
+
const key = [...EVENT_QUERY_KEY(eventId), "REGISTRATION"];
|
|
2877
|
+
return key;
|
|
2878
|
+
};
|
|
2879
|
+
var GetEventRegistration = async ({
|
|
2880
|
+
eventId,
|
|
2881
|
+
clientApiParams
|
|
2882
|
+
}) => {
|
|
2883
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
2884
|
+
const { data } = await clientApi.get(`/events/${eventId}/registration`, {});
|
|
2885
|
+
return data;
|
|
2886
|
+
};
|
|
2887
|
+
var useGetEventRegistration = (eventId = "", options = {}) => {
|
|
2888
|
+
const { authenticated } = useConnected();
|
|
2889
|
+
return useConnectedSingleQuery_default(
|
|
2890
|
+
EVENT_REGISTRATION_QUERY_KEY(eventId),
|
|
2891
|
+
(params) => GetEventRegistration({
|
|
2892
|
+
eventId,
|
|
2893
|
+
...params
|
|
2894
|
+
}),
|
|
2895
|
+
{
|
|
2896
|
+
staleTime: Infinity,
|
|
2897
|
+
retry: false,
|
|
2898
|
+
retryOnMount: false,
|
|
2899
|
+
...options,
|
|
2900
|
+
enabled: !!authenticated && !!eventId && (options?.enabled ?? true)
|
|
2901
|
+
}
|
|
2902
|
+
);
|
|
2903
|
+
};
|
|
2904
|
+
|
|
2905
|
+
// src/queries/events/useGetEventRegistrationIntent.ts
|
|
2906
|
+
var EVENT_REGISTRATION_INTENT_QUERY_KEY = (eventId, draftHash, addressId, split) => {
|
|
2907
|
+
const key = [...EVENT_REGISTRATION_QUERY_KEY(eventId), "INTENT", draftHash];
|
|
2908
|
+
if (addressId) {
|
|
2909
|
+
key.push(addressId);
|
|
2910
|
+
}
|
|
2911
|
+
if (split) {
|
|
2912
|
+
key.push("SPLIT");
|
|
2913
|
+
}
|
|
2914
|
+
return key;
|
|
2915
|
+
};
|
|
2916
|
+
var GetEventRegistrationIntent = async ({
|
|
2917
|
+
eventId,
|
|
2918
|
+
draft,
|
|
2919
|
+
addressId,
|
|
2920
|
+
split,
|
|
2921
|
+
clientApiParams
|
|
2922
|
+
}) => {
|
|
2923
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
2924
|
+
const { data } = await clientApi.post(
|
|
2925
|
+
`/events/${eventId}/registration/intent`,
|
|
2926
|
+
{
|
|
2927
|
+
draft,
|
|
2928
|
+
addressId,
|
|
2929
|
+
split: split ? "true" : "false"
|
|
2930
|
+
}
|
|
2931
|
+
);
|
|
2932
|
+
return data;
|
|
2933
|
+
};
|
|
2934
|
+
var useGetEventRegistrationIntent = (eventId = "", draft, draftHash, addressId = "", split = false, options = {}) => {
|
|
2935
|
+
const { authenticated } = useConnected();
|
|
2936
|
+
return useConnectedSingleQuery_default(
|
|
2937
|
+
EVENT_REGISTRATION_INTENT_QUERY_KEY(eventId, draftHash, addressId, split),
|
|
2938
|
+
(params) => GetEventRegistrationIntent({
|
|
2939
|
+
eventId,
|
|
2940
|
+
draft,
|
|
2941
|
+
addressId,
|
|
2942
|
+
split,
|
|
2943
|
+
...params
|
|
2944
|
+
}),
|
|
2945
|
+
{
|
|
2946
|
+
staleTime: Infinity,
|
|
2947
|
+
retry: false,
|
|
2948
|
+
retryOnMount: false,
|
|
2949
|
+
...options,
|
|
2950
|
+
enabled: !!authenticated && !!eventId && (options?.enabled ?? true)
|
|
2951
|
+
}
|
|
2952
|
+
);
|
|
2953
|
+
};
|
|
2954
|
+
|
|
2815
2955
|
// src/queries/groups/useGetGroups.ts
|
|
2816
2956
|
var GROUPS_QUERY_KEY = (access) => {
|
|
2817
2957
|
const keys = ["GROUPS"];
|
|
@@ -3438,6 +3578,32 @@ var useGetGroupsRequested = (params = {}, options = {}) => {
|
|
|
3438
3578
|
);
|
|
3439
3579
|
};
|
|
3440
3580
|
|
|
3581
|
+
// src/queries/groups/useGetGroupsExplore.ts
|
|
3582
|
+
var GROUPS_EXPLORE_QUERY_KEY = () => ["GROUPS_EXPLORE"];
|
|
3583
|
+
var SET_GROUPS_EXPLORE_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
3584
|
+
client.setQueryData(
|
|
3585
|
+
[
|
|
3586
|
+
...GROUPS_EXPLORE_QUERY_KEY(...keyParams),
|
|
3587
|
+
...GetBaseSingleQueryKeys(...baseKeys)
|
|
3588
|
+
],
|
|
3589
|
+
response
|
|
3590
|
+
);
|
|
3591
|
+
};
|
|
3592
|
+
var GetGroupsExplore = async ({
|
|
3593
|
+
clientApiParams
|
|
3594
|
+
}) => {
|
|
3595
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
3596
|
+
const { data } = await clientApi.get(`/groups/explore`);
|
|
3597
|
+
return data;
|
|
3598
|
+
};
|
|
3599
|
+
var useGetGroupsExplore = (options = {}) => {
|
|
3600
|
+
return useConnectedSingleQuery(
|
|
3601
|
+
GROUPS_EXPLORE_QUERY_KEY(),
|
|
3602
|
+
(params) => GetGroupsExplore({ ...params }),
|
|
3603
|
+
options
|
|
3604
|
+
);
|
|
3605
|
+
};
|
|
3606
|
+
|
|
3441
3607
|
// src/queries/integrations/useGetIntegrations.ts
|
|
3442
3608
|
var INTEGRATIONS_QUERY_KEY = () => {
|
|
3443
3609
|
const keys = ["INTEGRATIONS"];
|
|
@@ -9863,6 +10029,41 @@ var useUpdateEventSessionPassResponses = (options = {}) => {
|
|
|
9863
10029
|
return useConnectedMutation_default(UpdateEventSessionPassResponses, options);
|
|
9864
10030
|
};
|
|
9865
10031
|
|
|
10032
|
+
// src/mutations/events/useUpdateEventRegistration.ts
|
|
10033
|
+
var UpdateEventRegistration = async ({
|
|
10034
|
+
eventId,
|
|
10035
|
+
draft,
|
|
10036
|
+
clientApiParams
|
|
10037
|
+
}) => {
|
|
10038
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
10039
|
+
const { data } = await clientApi.put(
|
|
10040
|
+
`/events/${eventId}/registration`,
|
|
10041
|
+
draft
|
|
10042
|
+
);
|
|
10043
|
+
return data;
|
|
10044
|
+
};
|
|
10045
|
+
var useUpdateEventRegistration = (options = {}) => {
|
|
10046
|
+
return useConnectedMutation_default(UpdateEventRegistration, options);
|
|
10047
|
+
};
|
|
10048
|
+
|
|
10049
|
+
// src/mutations/events/useApplyEventRegistrationCoupon.ts
|
|
10050
|
+
var ApplyEventRegistrationCoupon = async ({
|
|
10051
|
+
eventId,
|
|
10052
|
+
draft,
|
|
10053
|
+
code,
|
|
10054
|
+
clientApiParams
|
|
10055
|
+
}) => {
|
|
10056
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
10057
|
+
const { data } = await clientApi.post(
|
|
10058
|
+
`/events/${eventId}/registration/coupon`,
|
|
10059
|
+
{ draft, code }
|
|
10060
|
+
);
|
|
10061
|
+
return data;
|
|
10062
|
+
};
|
|
10063
|
+
var useApplyEventRegistrationCoupon = (options = {}) => {
|
|
10064
|
+
return useConnectedMutation_default(ApplyEventRegistrationCoupon, options);
|
|
10065
|
+
};
|
|
10066
|
+
|
|
9866
10067
|
// src/mutations/organization/useCapturePaymentIntent.ts
|
|
9867
10068
|
var CapturePaymentIntent = async ({
|
|
9868
10069
|
intent,
|
|
@@ -13029,6 +13230,7 @@ export {
|
|
|
13029
13230
|
AddThreadMessageReaction,
|
|
13030
13231
|
AdvertisementType,
|
|
13031
13232
|
AppendInfiniteQuery,
|
|
13233
|
+
ApplyEventRegistrationCoupon,
|
|
13032
13234
|
BENEFITS_QUERY_KEY,
|
|
13033
13235
|
BOOKINGS_QUERY_KEY,
|
|
13034
13236
|
BOOKING_PLACES_QUERY_KEY,
|
|
@@ -13054,6 +13256,7 @@ export {
|
|
|
13054
13256
|
CHANNEL_INTERESTS_QUERY_KEY,
|
|
13055
13257
|
CHANNEL_QUERY_KEY,
|
|
13056
13258
|
CHANNEL_SUBSCRIBERS_QUERY_KEY,
|
|
13259
|
+
CONTENTS_EXPLORE_QUERY_KEY,
|
|
13057
13260
|
CONTENTS_QUERY_KEY,
|
|
13058
13261
|
CUSTOM_ERROR_CODES,
|
|
13059
13262
|
CancelBooking,
|
|
@@ -13142,6 +13345,7 @@ export {
|
|
|
13142
13345
|
EVENT_ACTIVATION_QUERY_KEY,
|
|
13143
13346
|
EVENT_ACTIVATION_SUMMARY_QUERY_KEY,
|
|
13144
13347
|
EVENT_ACTIVITIES_QUERY_KEY,
|
|
13348
|
+
EVENT_CONFIG_QUERY_KEY,
|
|
13145
13349
|
EVENT_FAQ_SECTIONS_QUERY_KEY,
|
|
13146
13350
|
EVENT_FAQ_SECTION_QUERY_KEY,
|
|
13147
13351
|
EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY,
|
|
@@ -13152,6 +13356,8 @@ export {
|
|
|
13152
13356
|
EVENT_PAGE_QUERY_KEY,
|
|
13153
13357
|
EVENT_QUERY_KEY,
|
|
13154
13358
|
EVENT_REGISTRANTS_QUERY_KEY,
|
|
13359
|
+
EVENT_REGISTRATION_INTENT_QUERY_KEY,
|
|
13360
|
+
EVENT_REGISTRATION_QUERY_KEY,
|
|
13155
13361
|
EVENT_SESSIONS_QUERY_KEY,
|
|
13156
13362
|
EVENT_SESSION_PASS_INTENT_QUERY_KEY,
|
|
13157
13363
|
EVENT_SESSION_PASS_SECTIONS_QUERY_KEY,
|
|
@@ -13168,6 +13374,7 @@ export {
|
|
|
13168
13374
|
EventSource,
|
|
13169
13375
|
EventType,
|
|
13170
13376
|
FollowAccount,
|
|
13377
|
+
GROUPS_EXPLORE_QUERY_KEY,
|
|
13171
13378
|
GROUPS_FEATURED_QUERY_KEY,
|
|
13172
13379
|
GROUPS_INVITED_QUERY_KEY,
|
|
13173
13380
|
GROUPS_QUERY_KEY,
|
|
@@ -13224,12 +13431,14 @@ export {
|
|
|
13224
13431
|
GetChannels,
|
|
13225
13432
|
GetClientAPI,
|
|
13226
13433
|
GetContents,
|
|
13434
|
+
GetContentsExplore,
|
|
13227
13435
|
GetErrorMessage,
|
|
13228
13436
|
GetEvent,
|
|
13229
13437
|
GetEventActivation,
|
|
13230
13438
|
GetEventActivationSummary,
|
|
13231
13439
|
GetEventActivations,
|
|
13232
13440
|
GetEventActivities,
|
|
13441
|
+
GetEventConfig,
|
|
13233
13442
|
GetEventFAQSection,
|
|
13234
13443
|
GetEventFAQSectionQuestion,
|
|
13235
13444
|
GetEventFaqSections,
|
|
@@ -13239,6 +13448,8 @@ export {
|
|
|
13239
13448
|
GetEventPage,
|
|
13240
13449
|
GetEventPages,
|
|
13241
13450
|
GetEventRegistrants,
|
|
13451
|
+
GetEventRegistration,
|
|
13452
|
+
GetEventRegistrationIntent,
|
|
13242
13453
|
GetEventSessionPassIntent,
|
|
13243
13454
|
GetEventSessionPassSections,
|
|
13244
13455
|
GetEventSessions,
|
|
@@ -13261,6 +13472,7 @@ export {
|
|
|
13261
13472
|
GetGroupRequests,
|
|
13262
13473
|
GetGroupSponsors,
|
|
13263
13474
|
GetGroups,
|
|
13475
|
+
GetGroupsExplore,
|
|
13264
13476
|
GetGroupsFeatured,
|
|
13265
13477
|
GetGroupsInvited,
|
|
13266
13478
|
GetGroupsRequested,
|
|
@@ -13549,6 +13761,7 @@ export {
|
|
|
13549
13761
|
SET_CHANNEL_CONTENT_QUERY_DATA,
|
|
13550
13762
|
SET_CHANNEL_QUERY_DATA,
|
|
13551
13763
|
SET_CHANNEL_SUBSCRIBERS_QUERY_DATA,
|
|
13764
|
+
SET_CONTENTS_EXPLORE_QUERY_DATA,
|
|
13552
13765
|
SET_CONTENTS_QUERY_DATA,
|
|
13553
13766
|
SET_CONTENT_ACTIVITIES_QUERY_DATA,
|
|
13554
13767
|
SET_EVENTS_EXPLORE_QUERY_DATA,
|
|
@@ -13556,6 +13769,7 @@ export {
|
|
|
13556
13769
|
SET_EVENT_ACTIVATIONS_QUERY_DATA,
|
|
13557
13770
|
SET_EVENT_ACTIVATION_QUERY_DATA,
|
|
13558
13771
|
SET_EVENT_ACTIVITIES_QUERY_DATA,
|
|
13772
|
+
SET_EVENT_CONFIG_QUERY_DATA,
|
|
13559
13773
|
SET_EVENT_FAQ_SECTIONS_QUERY_DATA,
|
|
13560
13774
|
SET_EVENT_FAQ_SECTION_QUERY_DATA,
|
|
13561
13775
|
SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA,
|
|
@@ -13573,6 +13787,7 @@ export {
|
|
|
13573
13787
|
SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA,
|
|
13574
13788
|
SET_EVENT_SPONSORSHIP_QUERY_DATA,
|
|
13575
13789
|
SET_EVENT_SPONSORS_QUERY_DATA,
|
|
13790
|
+
SET_GROUPS_EXPLORE_QUERY_DATA,
|
|
13576
13791
|
SET_GROUPS_QUERY_DATA,
|
|
13577
13792
|
SET_GROUP_ACTIVITIES_QUERY_DATA,
|
|
13578
13793
|
SET_GROUP_ANNOUNCEMENTS_QUERY_DATA,
|
|
@@ -13703,6 +13918,7 @@ export {
|
|
|
13703
13918
|
UpdateChannelContent,
|
|
13704
13919
|
UpdateChannelSubscriber,
|
|
13705
13920
|
UpdateContentGuest,
|
|
13921
|
+
UpdateEventRegistration,
|
|
13706
13922
|
UpdateEventSessionPassResponses,
|
|
13707
13923
|
UpdateGroup,
|
|
13708
13924
|
UpdateListing,
|
|
@@ -13793,6 +14009,7 @@ export {
|
|
|
13793
14009
|
useAddSelfInterests,
|
|
13794
14010
|
useAddThreadCircleAccount,
|
|
13795
14011
|
useAddThreadMessageReaction,
|
|
14012
|
+
useApplyEventRegistrationCoupon,
|
|
13796
14013
|
useBlockAccount,
|
|
13797
14014
|
useBlockIntegration,
|
|
13798
14015
|
useBookmarkEventAttendeePassSession,
|
|
@@ -13902,11 +14119,13 @@ export {
|
|
|
13902
14119
|
useGetChannelSubscribers,
|
|
13903
14120
|
useGetChannels,
|
|
13904
14121
|
useGetContents,
|
|
14122
|
+
useGetContentsExplore,
|
|
13905
14123
|
useGetEvent,
|
|
13906
14124
|
useGetEventActivation,
|
|
13907
14125
|
useGetEventActivationSummary,
|
|
13908
14126
|
useGetEventActivations,
|
|
13909
14127
|
useGetEventActivities,
|
|
14128
|
+
useGetEventConfig,
|
|
13910
14129
|
useGetEventFAQSection,
|
|
13911
14130
|
useGetEventFAQSectionQuestion,
|
|
13912
14131
|
useGetEventFaqSections,
|
|
@@ -13916,6 +14135,8 @@ export {
|
|
|
13916
14135
|
useGetEventPage,
|
|
13917
14136
|
useGetEventPages,
|
|
13918
14137
|
useGetEventRegistrants,
|
|
14138
|
+
useGetEventRegistration,
|
|
14139
|
+
useGetEventRegistrationIntent,
|
|
13919
14140
|
useGetEventSessionPassIntent,
|
|
13920
14141
|
useGetEventSessionPassSections,
|
|
13921
14142
|
useGetEventSessions,
|
|
@@ -13938,6 +14159,7 @@ export {
|
|
|
13938
14159
|
useGetGroupRequests,
|
|
13939
14160
|
useGetGroupSponsors,
|
|
13940
14161
|
useGetGroups,
|
|
14162
|
+
useGetGroupsExplore,
|
|
13941
14163
|
useGetGroupsFeatured,
|
|
13942
14164
|
useGetGroupsInvited,
|
|
13943
14165
|
useGetGroupsRequested,
|
|
@@ -14103,6 +14325,7 @@ export {
|
|
|
14103
14325
|
useUpdateChannelContent,
|
|
14104
14326
|
useUpdateChannelSubscriber,
|
|
14105
14327
|
useUpdateContentGuest,
|
|
14328
|
+
useUpdateEventRegistration,
|
|
14106
14329
|
useUpdateEventSessionPassResponses,
|
|
14107
14330
|
useUpdateGroup,
|
|
14108
14331
|
useUpdateListing,
|