@connectedxm/client 0.0.56 → 0.0.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -288,18 +288,20 @@ var useConnectedXM = function() {
288
288
  };
289
289
  // src/hooks/useClientAPI.ts
290
290
  import axios from "axios";
291
- var useClientAPI = function(locale) {
292
- var _useConnectedXM = useConnectedXM(), apiUrl = _useConnectedXM.apiUrl, token = _useConnectedXM.token, organizationId = _useConnectedXM.organizationId, executeAs = _useConnectedXM.executeAs, _locale = _useConnectedXM.locale;
293
- var api = axios.create({
291
+ var getClientAPI = function(apiUrl, organizationId, token, executeAs, locale) {
292
+ return axios.create({
294
293
  baseURL: apiUrl,
295
294
  headers: {
296
295
  authorization: token,
297
296
  organization: organizationId,
298
297
  executeAs: executeAs,
299
- locale: locale || _locale
298
+ locale: locale
300
299
  }
301
300
  });
302
- return api;
301
+ };
302
+ var useClientAPI = function(locale) {
303
+ var _useConnectedXM = useConnectedXM(), apiUrl = _useConnectedXM.apiUrl, token = _useConnectedXM.token, organizationId = _useConnectedXM.organizationId, executeAs = _useConnectedXM.executeAs, _locale = _useConnectedXM.locale;
304
+ return getClientAPI(apiUrl, organizationId, token, executeAs, locale || _locale);
303
305
  };
304
306
  // src/interfaces.ts
305
307
  var RegistrationStatus = /* @__PURE__ */ function(RegistrationStatus2) {
@@ -716,7 +718,7 @@ var useConnectedInfiniteQuery = function(queryKeys, queryFn) {
716
718
  queryFn: function(param) {
717
719
  var pageParam = param.pageParam;
718
720
  return queryFn(_object_spread_props(_object_spread({}, params), {
719
- pageSize: params.pageSize || 10,
721
+ pageSize: params.pageSize || 25,
720
722
  locale: params.locale || locale,
721
723
  pageParam: pageParam,
722
724
  queryClient: queryClient,
@@ -3358,6 +3360,78 @@ var useGetOrganizationPage = function(type) {
3358
3360
  enabled: !!type && ((_options_enabled = options.enabled) !== null && _options_enabled !== void 0 ? _options_enabled : true)
3359
3361
  }));
3360
3362
  };
3363
+ // src/queries/organization/useGetOrganizationSubscriptionProducts.tsx
3364
+ var ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY = function() {
3365
+ return _to_consumable_array(ORGANIZATION_QUERY_KEY()).concat([
3366
+ "SUBSCRIPTIONS"
3367
+ ]);
3368
+ };
3369
+ var GetOrganizationSubscriptionProducts = function() {
3370
+ var _ref = _async_to_generator(function(param) {
3371
+ var clientApi, data;
3372
+ return _ts_generator(this, function(_state) {
3373
+ switch(_state.label){
3374
+ case 0:
3375
+ clientApi = param.clientApi;
3376
+ return [
3377
+ 4,
3378
+ clientApi.get("/organization/subscriptions")
3379
+ ];
3380
+ case 1:
3381
+ data = _state.sent().data;
3382
+ return [
3383
+ 2,
3384
+ data
3385
+ ];
3386
+ }
3387
+ });
3388
+ });
3389
+ return function GetOrganizationSubscriptionProducts(_) {
3390
+ return _ref.apply(this, arguments);
3391
+ };
3392
+ }();
3393
+ var useGetOrganizationSubscriptionProducts = function() {
3394
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
3395
+ return useConnectedInfiniteQuery(ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY(), function(params2) {
3396
+ return GetOrganizationSubscriptionProducts(_object_spread({}, params2));
3397
+ }, params, options);
3398
+ };
3399
+ // src/queries/organization/useGetOrganizationPaymentIntegration.tsx
3400
+ var ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY = function() {
3401
+ return _to_consumable_array(ORGANIZATION_QUERY_KEY()).concat([
3402
+ "PAYMENT_INTEGRATION"
3403
+ ]);
3404
+ };
3405
+ var GetOrganizationPaymentIntegration = function() {
3406
+ var _ref = _async_to_generator(function(param) {
3407
+ var clientApi, data;
3408
+ return _ts_generator(this, function(_state) {
3409
+ switch(_state.label){
3410
+ case 0:
3411
+ clientApi = param.clientApi;
3412
+ return [
3413
+ 4,
3414
+ clientApi.get("/organization/payment-integration")
3415
+ ];
3416
+ case 1:
3417
+ data = _state.sent().data;
3418
+ return [
3419
+ 2,
3420
+ data
3421
+ ];
3422
+ }
3423
+ });
3424
+ });
3425
+ return function GetOrganizationPaymentIntegration(_) {
3426
+ return _ref.apply(this, arguments);
3427
+ };
3428
+ }();
3429
+ var useGetOrganizationPaymentIntegration = function() {
3430
+ var options = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
3431
+ return useConnectedSingleQuery_default(ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY(), function(params) {
3432
+ return GetOrganizationPaymentIntegration(_object_spread({}, params));
3433
+ }, options);
3434
+ };
3361
3435
  // src/queries/self/chat/useGetSelfChatChannels.ts
3362
3436
  var SELF_CHAT_CHANNELS_QUERY_KEY = function() {
3363
3437
  return [
@@ -3751,6 +3825,153 @@ var useGetSelfEventRegistrationCheckout = function(eventId) {
3751
3825
  enabled: !!token && !!eventId && !!registrationId
3752
3826
  }));
3753
3827
  };
3828
+ // src/queries/self/subscriptions/useGetSelfSubscriptions.ts
3829
+ var SELF_SUBSCRIPTIONS_QUERY_KEY = function(status) {
3830
+ var key = _to_consumable_array(SELF_QUERY_KEY()).concat([
3831
+ "SUBSCRIPTIONS"
3832
+ ]);
3833
+ if (status) {
3834
+ key.push(status);
3835
+ }
3836
+ return key;
3837
+ };
3838
+ var GetSelfSubscriptions = function() {
3839
+ var _ref = _async_to_generator(function(param) {
3840
+ var status, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, data;
3841
+ return _ts_generator(this, function(_state) {
3842
+ switch(_state.label){
3843
+ case 0:
3844
+ status = param.status, pageParam = param.pageParam, pageSize = param.pageSize, orderBy = param.orderBy, search = param.search, queryClient = param.queryClient, clientApi = param.clientApi, locale = param.locale;
3845
+ return [
3846
+ 4,
3847
+ clientApi.get("/self/subscriptions", {
3848
+ params: {
3849
+ page: pageParam || void 0,
3850
+ pageSize: pageSize || void 0,
3851
+ orderBy: orderBy || void 0,
3852
+ search: search || void 0,
3853
+ status: status || void 0
3854
+ }
3855
+ })
3856
+ ];
3857
+ case 1:
3858
+ data = _state.sent().data;
3859
+ if (queryClient) {
3860
+ CacheIndividualQueries(data, queryClient, function(subscriptionId) {
3861
+ return SELF_SUBSCRIPTION_QUERY_KEY(subscriptionId);
3862
+ }, locale);
3863
+ }
3864
+ return [
3865
+ 2,
3866
+ data
3867
+ ];
3868
+ }
3869
+ });
3870
+ });
3871
+ return function GetSelfSubscriptions(_) {
3872
+ return _ref.apply(this, arguments);
3873
+ };
3874
+ }();
3875
+ var useGetSelfSubscriptions = function(status) {
3876
+ var params = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, options = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
3877
+ var token = useConnectedXM().token;
3878
+ return useConnectedInfiniteQuery(SELF_SUBSCRIPTIONS_QUERY_KEY(status), function(params2) {
3879
+ return GetSelfSubscriptions(_object_spread({
3880
+ status: status
3881
+ }, params2));
3882
+ }, params, _object_spread_props(_object_spread({}, options), {
3883
+ enabled: !!token
3884
+ }));
3885
+ };
3886
+ // src/queries/self/subscriptions/useGetSelfSubscription.ts
3887
+ var SELF_SUBSCRIPTION_QUERY_KEY = function(subscriptionId) {
3888
+ return _to_consumable_array(SELF_SUBSCRIPTIONS_QUERY_KEY()).concat([
3889
+ subscriptionId
3890
+ ]);
3891
+ };
3892
+ var GetSelfSubcription = function() {
3893
+ var _ref = _async_to_generator(function(param) {
3894
+ var subscriptionId, clientApi, data;
3895
+ return _ts_generator(this, function(_state) {
3896
+ switch(_state.label){
3897
+ case 0:
3898
+ subscriptionId = param.subscriptionId, clientApi = param.clientApi;
3899
+ return [
3900
+ 4,
3901
+ clientApi.get("/self/subscriptions/".concat(subscriptionId))
3902
+ ];
3903
+ case 1:
3904
+ data = _state.sent().data;
3905
+ return [
3906
+ 2,
3907
+ data
3908
+ ];
3909
+ }
3910
+ });
3911
+ });
3912
+ return function GetSelfSubcription(_) {
3913
+ return _ref.apply(this, arguments);
3914
+ };
3915
+ }();
3916
+ var useGetSelfSubcription = function() {
3917
+ var subscriptionId = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "", options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
3918
+ var token = useConnectedXM().token;
3919
+ return useConnectedSingleQuery(SELF_SUBSCRIPTION_QUERY_KEY(subscriptionId), function(params) {
3920
+ return GetSelfSubcription(_object_spread({
3921
+ subscriptionId: subscriptionId
3922
+ }, params));
3923
+ }, _object_spread_props(_object_spread({}, options), {
3924
+ enabled: !!token && !!subscriptionId
3925
+ }));
3926
+ };
3927
+ // src/queries/self/subscriptions/useGetSelfSubscriptionPayments.ts
3928
+ var SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY = function(subscriptionId) {
3929
+ return _to_consumable_array(SELF_SUBSCRIPTION_QUERY_KEY(subscriptionId)).concat([
3930
+ "PAYMENTS"
3931
+ ]);
3932
+ };
3933
+ var GetSelfSubscriptionPayments = function() {
3934
+ var _ref = _async_to_generator(function(param) {
3935
+ var subscriptionId, pageParam, pageSize, orderBy, search, clientApi, data;
3936
+ return _ts_generator(this, function(_state) {
3937
+ switch(_state.label){
3938
+ case 0:
3939
+ subscriptionId = param.subscriptionId, pageParam = param.pageParam, pageSize = param.pageSize, orderBy = param.orderBy, search = param.search, clientApi = param.clientApi;
3940
+ return [
3941
+ 4,
3942
+ clientApi.get("/self/subscriptions/".concat(subscriptionId, "/payments"), {
3943
+ params: {
3944
+ page: pageParam || void 0,
3945
+ pageSize: pageSize || void 0,
3946
+ orderBy: orderBy || void 0,
3947
+ search: search || void 0
3948
+ }
3949
+ })
3950
+ ];
3951
+ case 1:
3952
+ data = _state.sent().data;
3953
+ return [
3954
+ 2,
3955
+ data
3956
+ ];
3957
+ }
3958
+ });
3959
+ });
3960
+ return function GetSelfSubscriptionPayments(_) {
3961
+ return _ref.apply(this, arguments);
3962
+ };
3963
+ }();
3964
+ var useGetSelfSubscriptionPayments = function(subscriptionId) {
3965
+ var params = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, options = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
3966
+ var token = useConnectedXM().token;
3967
+ return useConnectedInfiniteQuery(SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY(subscriptionId), function(params2) {
3968
+ return GetSelfSubscriptionPayments(_object_spread_props(_object_spread({}, params2), {
3969
+ subscriptionId: subscriptionId
3970
+ }));
3971
+ }, params, _object_spread_props(_object_spread({}, options), {
3972
+ enabled: !!token
3973
+ }));
3974
+ };
3754
3975
  // src/queries/self/useGetSelfActivities.ts
3755
3976
  var SELF_ACTIVITIES_QUERY_KEY = function() {
3756
3977
  return _to_consumable_array(SELF_QUERY_KEY()).concat([
@@ -6108,6 +6329,78 @@ var useCaptureSelfEventRegistrationPayment = function() {
6108
6329
  var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6109
6330
  return useConnectedMutation_default(CaptureSelfEventRegistrationPayment, params, options);
6110
6331
  };
6332
+ // src/mutations/self/events/registration/draft/useCreateSelfEventRegistrationGuest.tsx
6333
+ var CreateSelfEventRegistrationGuest = function() {
6334
+ var _ref = _async_to_generator(function(param) {
6335
+ var eventId, registrationId, guest, clientApi, queryClient, _param_locale, locale, data;
6336
+ return _ts_generator(this, function(_state) {
6337
+ switch(_state.label){
6338
+ case 0:
6339
+ eventId = param.eventId, registrationId = param.registrationId, guest = param.guest, clientApi = param.clientApi, queryClient = param.queryClient, _param_locale = param.locale, locale = _param_locale === void 0 ? "en" : _param_locale;
6340
+ return [
6341
+ 4,
6342
+ clientApi.post("/self/events/".concat(eventId, "/registration/").concat(registrationId, "/draft/guests"), guest)
6343
+ ];
6344
+ case 1:
6345
+ data = _state.sent().data;
6346
+ if (queryClient && data.status === "ok") {
6347
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [
6348
+ eventId
6349
+ ], data, [
6350
+ locale
6351
+ ]);
6352
+ }
6353
+ return [
6354
+ 2,
6355
+ data
6356
+ ];
6357
+ }
6358
+ });
6359
+ });
6360
+ return function CreateSelfEventRegistrationGuest(_) {
6361
+ return _ref.apply(this, arguments);
6362
+ };
6363
+ }();
6364
+ var useCreateSelfEventRegistrationGuest = function() {
6365
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6366
+ return useConnectedMutation_default(CreateSelfEventRegistrationGuest, params, options);
6367
+ };
6368
+ // src/mutations/self/events/registration/draft/useDeleteSelfEventRegistrationGuest.tsx
6369
+ var DeleteSelfEventRegistrationGuest = function() {
6370
+ var _ref = _async_to_generator(function(param) {
6371
+ var eventId, registrationId, guestId, clientApi, queryClient, _param_locale, locale, data;
6372
+ return _ts_generator(this, function(_state) {
6373
+ switch(_state.label){
6374
+ case 0:
6375
+ eventId = param.eventId, registrationId = param.registrationId, guestId = param.guestId, clientApi = param.clientApi, queryClient = param.queryClient, _param_locale = param.locale, locale = _param_locale === void 0 ? "en" : _param_locale;
6376
+ return [
6377
+ 4,
6378
+ clientApi.delete("/self/events/".concat(eventId, "/registration/").concat(registrationId, "/draft/guests/").concat(guestId))
6379
+ ];
6380
+ case 1:
6381
+ data = _state.sent().data;
6382
+ if (queryClient && data.status === "ok") {
6383
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [
6384
+ eventId
6385
+ ], data, [
6386
+ locale
6387
+ ]);
6388
+ }
6389
+ return [
6390
+ 2,
6391
+ data
6392
+ ];
6393
+ }
6394
+ });
6395
+ });
6396
+ return function DeleteSelfEventRegistrationGuest(_) {
6397
+ return _ref.apply(this, arguments);
6398
+ };
6399
+ }();
6400
+ var useDeleteSelfEventRegistrationGuest = function() {
6401
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6402
+ return useConnectedMutation_default(DeleteSelfEventRegistrationGuest, params, options);
6403
+ };
6111
6404
  // src/mutations/self/events/registration/draft/useRemoveSelfEventRegistrationCoupon.ts
6112
6405
  var RemoveSelfEventRegistrationCoupon = function() {
6113
6406
  var _ref = _async_to_generator(function(param) {
@@ -6300,7 +6593,139 @@ var useSubmitSelfEventRegistration = function() {
6300
6593
  var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6301
6594
  return useConnectedMutation_default(SubmitSelfEventRegistration, params, options);
6302
6595
  };
6303
- // src/mutations/self/events/registration/draft/useUpdateSelfEventRegistrationResponses.ts
6596
+ // src/mutations/self/events/registration/draft/useUpdateSelfEventRegistrationGuest.tsx
6597
+ var UpdateSelfEventRegistrationGuest = function() {
6598
+ var _ref = _async_to_generator(function(param) {
6599
+ var eventId, registrationId, guestId, guest, clientApi, queryClient, _param_locale, locale, data;
6600
+ return _ts_generator(this, function(_state) {
6601
+ switch(_state.label){
6602
+ case 0:
6603
+ eventId = param.eventId, registrationId = param.registrationId, guestId = param.guestId, guest = param.guest, clientApi = param.clientApi, queryClient = param.queryClient, _param_locale = param.locale, locale = _param_locale === void 0 ? "en" : _param_locale;
6604
+ return [
6605
+ 4,
6606
+ clientApi.put("/self/events/".concat(eventId, "/registration/").concat(registrationId, "/draft/guests/").concat(guestId), guest)
6607
+ ];
6608
+ case 1:
6609
+ data = _state.sent().data;
6610
+ if (queryClient && data.status === "ok") {
6611
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [
6612
+ eventId
6613
+ ], data, [
6614
+ locale
6615
+ ]);
6616
+ }
6617
+ return [
6618
+ 2,
6619
+ data
6620
+ ];
6621
+ }
6622
+ });
6623
+ });
6624
+ return function UpdateSelfEventRegistrationGuest(_) {
6625
+ return _ref.apply(this, arguments);
6626
+ };
6627
+ }();
6628
+ var useUpdateSelfEventRegistrationGuest = function() {
6629
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6630
+ return useConnectedMutation_default(UpdateSelfEventRegistrationGuest, params, options);
6631
+ };
6632
+ // src/mutations/self/events/registration/draft/useUpdateSelfEventRegistrationGuestResponseFile.tsx
6633
+ var UpdateSelfEventRegistrationGuestResponseFile = function() {
6634
+ var _ref = _async_to_generator(function(param) {
6635
+ var eventId, registrationId, questionId, guestId, dataUrl, name, clientApi, data;
6636
+ return _ts_generator(this, function(_state) {
6637
+ switch(_state.label){
6638
+ case 0:
6639
+ eventId = param.eventId, registrationId = param.registrationId, questionId = param.questionId, guestId = param.guestId, dataUrl = param.dataUrl, name = param.name, clientApi = param.clientApi;
6640
+ if (!guestId) throw new Error("Guest ID is required");
6641
+ return [
6642
+ 4,
6643
+ clientApi.put("/self/events/".concat(eventId, "/registration/").concat(registrationId, "/draft/guests/").concat(guestId, "/responses/file"), {
6644
+ dataUrl: dataUrl,
6645
+ name: name,
6646
+ questionId: questionId
6647
+ })
6648
+ ];
6649
+ case 1:
6650
+ data = _state.sent().data;
6651
+ return [
6652
+ 2,
6653
+ data
6654
+ ];
6655
+ }
6656
+ });
6657
+ });
6658
+ return function UpdateSelfEventRegistrationGuestResponseFile(_) {
6659
+ return _ref.apply(this, arguments);
6660
+ };
6661
+ }();
6662
+ var useUpdateSelfEventRegistrationGuestResponseFile = function() {
6663
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6664
+ return useConnectedMutation_default(UpdateSelfEventRegistrationGuestResponseFile, params, options);
6665
+ };
6666
+ // src/mutations/self/events/registration/draft/useUpdateSelfEventRegistrationGuestResponses.tsx
6667
+ var UpdateSelfEventRegistrationGuestResponses = function() {
6668
+ var _ref = _async_to_generator(function(param) {
6669
+ var eventId, registrationId, guestId, responses, clientApi, data;
6670
+ return _ts_generator(this, function(_state) {
6671
+ switch(_state.label){
6672
+ case 0:
6673
+ eventId = param.eventId, registrationId = param.registrationId, guestId = param.guestId, responses = param.responses, clientApi = param.clientApi;
6674
+ return [
6675
+ 4,
6676
+ clientApi.put("/self/events/".concat(eventId, "/registration/").concat(registrationId, "/draft/guests/").concat(guestId, "/responses"), responses)
6677
+ ];
6678
+ case 1:
6679
+ data = _state.sent().data;
6680
+ return [
6681
+ 2,
6682
+ data
6683
+ ];
6684
+ }
6685
+ });
6686
+ });
6687
+ return function UpdateSelfEventRegistrationGuestResponses(_) {
6688
+ return _ref.apply(this, arguments);
6689
+ };
6690
+ }();
6691
+ var useUpdateSelfEventRegistrationGuestResponses = function() {
6692
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6693
+ return useConnectedMutation_default(UpdateSelfEventRegistrationGuestResponses, params, options);
6694
+ };
6695
+ // src/mutations/self/events/registration/draft/useUpdateSelfEventRegistrationResponseFile.tsx
6696
+ var UpdateSelfEventRegistrationResponseFile = function() {
6697
+ var _ref = _async_to_generator(function(param) {
6698
+ var eventId, registrationId, dataUrl, name, questionId, clientApi, data;
6699
+ return _ts_generator(this, function(_state) {
6700
+ switch(_state.label){
6701
+ case 0:
6702
+ eventId = param.eventId, registrationId = param.registrationId, dataUrl = param.dataUrl, name = param.name, questionId = param.questionId, clientApi = param.clientApi;
6703
+ return [
6704
+ 4,
6705
+ clientApi.put("/self/events/".concat(eventId, "/registration/").concat(registrationId, "/draft/responses/file"), {
6706
+ dataUrl: dataUrl,
6707
+ name: name,
6708
+ questionId: questionId
6709
+ })
6710
+ ];
6711
+ case 1:
6712
+ data = _state.sent().data;
6713
+ return [
6714
+ 2,
6715
+ data
6716
+ ];
6717
+ }
6718
+ });
6719
+ });
6720
+ return function UpdateSelfEventRegistrationResponseFile(_) {
6721
+ return _ref.apply(this, arguments);
6722
+ };
6723
+ }();
6724
+ var useUpdateSelfEventRegistrationResponseFile = function() {
6725
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6726
+ return useConnectedMutation_default(UpdateSelfEventRegistrationResponseFile, params, options);
6727
+ };
6728
+ // src/mutations/self/events/registration/draft/useUpdateSelfEventRegistrationResponses.tsx
6304
6729
  var UpdateSelfEventRegistrationResponses = function() {
6305
6730
  var _ref = _async_to_generator(function(param) {
6306
6731
  var eventId, registrationId, responses, clientApi, queryClient, _param_locale, locale, data;
@@ -6497,6 +6922,154 @@ var useUpdateSelfEventRegistrationResponse = function() {
6497
6922
  var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6498
6923
  return useConnectedMutation_default(UpdateSelfEventRegistrationResponse, params, options);
6499
6924
  };
6925
+ // src/mutations/self/events/registration/registered/useUpdateSelfEventRegistrationGuestResponse.tsx
6926
+ var UpdateSelfEventRegistrationGuestResponse = function() {
6927
+ var _ref = _async_to_generator(function(param) {
6928
+ var eventId, registrationId, questionId, guestId, response, clientApi, queryClient, _param_locale, locale, data;
6929
+ return _ts_generator(this, function(_state) {
6930
+ switch(_state.label){
6931
+ case 0:
6932
+ eventId = param.eventId, registrationId = param.registrationId, questionId = param.questionId, guestId = param.guestId, response = param.response, clientApi = param.clientApi, queryClient = param.queryClient, _param_locale = param.locale, locale = _param_locale === void 0 ? "en" : _param_locale;
6933
+ return [
6934
+ 4,
6935
+ clientApi.put("/self/events/".concat(eventId, "/registration/").concat(registrationId, "/registered/guests/").concat(guestId, "/response"), {
6936
+ response: response
6937
+ }, {
6938
+ params: {
6939
+ questionId: questionId
6940
+ }
6941
+ })
6942
+ ];
6943
+ case 1:
6944
+ data = _state.sent().data;
6945
+ if (queryClient && data.status === "ok") {
6946
+ SET_SELF_EVENT_REGISTRATION_QUERY_DATA(queryClient, [
6947
+ eventId
6948
+ ], data, [
6949
+ locale
6950
+ ]);
6951
+ }
6952
+ return [
6953
+ 2,
6954
+ data
6955
+ ];
6956
+ }
6957
+ });
6958
+ });
6959
+ return function UpdateSelfEventRegistrationGuestResponse(_) {
6960
+ return _ref.apply(this, arguments);
6961
+ };
6962
+ }();
6963
+ var useUpdateSelfEventRegistrationGuestResponse = function() {
6964
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
6965
+ return useConnectedMutation_default(UpdateSelfEventRegistrationGuestResponse, params, options);
6966
+ };
6967
+ // src/mutations/self/subscriptions/useCancelSubscription.ts
6968
+ var CancelSubscription = function() {
6969
+ var _ref = _async_to_generator(function(param) {
6970
+ var subscriptionId, clientApi, queryClient, data;
6971
+ return _ts_generator(this, function(_state) {
6972
+ switch(_state.label){
6973
+ case 0:
6974
+ subscriptionId = param.subscriptionId, clientApi = param.clientApi, queryClient = param.queryClient;
6975
+ return [
6976
+ 4,
6977
+ clientApi.delete("/self/subscriptions/".concat(subscriptionId))
6978
+ ];
6979
+ case 1:
6980
+ data = _state.sent().data;
6981
+ if (queryClient && data.status === "ok") {
6982
+ queryClient.invalidateQueries({
6983
+ queryKey: SELF_SUBSCRIPTIONS_QUERY_KEY()
6984
+ });
6985
+ queryClient.invalidateQueries({
6986
+ queryKey: SELF_SUBSCRIPTION_QUERY_KEY(subscriptionId)
6987
+ });
6988
+ }
6989
+ return [
6990
+ 2,
6991
+ data
6992
+ ];
6993
+ }
6994
+ });
6995
+ });
6996
+ return function CancelSubscription(_) {
6997
+ return _ref.apply(this, arguments);
6998
+ };
6999
+ }();
7000
+ var useCancelSubscription = function() {
7001
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
7002
+ return useConnectedMutation_default(CancelSubscription, params, options);
7003
+ };
7004
+ // src/mutations/self/subscriptions/useCreateSubscription.ts
7005
+ var CreateSubscription = function() {
7006
+ var _ref = _async_to_generator(function(param) {
7007
+ var productId, priceId, clientApi, data;
7008
+ return _ts_generator(this, function(_state) {
7009
+ switch(_state.label){
7010
+ case 0:
7011
+ productId = param.productId, priceId = param.priceId, clientApi = param.clientApi;
7012
+ return [
7013
+ 4,
7014
+ clientApi.post("/self/subscriptions", {
7015
+ productId: productId,
7016
+ priceId: priceId,
7017
+ quantity: 1
7018
+ })
7019
+ ];
7020
+ case 1:
7021
+ data = _state.sent().data;
7022
+ return [
7023
+ 2,
7024
+ data
7025
+ ];
7026
+ }
7027
+ });
7028
+ });
7029
+ return function CreateSubscription(_) {
7030
+ return _ref.apply(this, arguments);
7031
+ };
7032
+ }();
7033
+ var useCreateSubscription = function() {
7034
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
7035
+ return useConnectedMutation_default(CreateSubscription, params, options);
7036
+ };
7037
+ // src/mutations/self/subscriptions/useUpdateSubscriptionPaymentMethod.ts
7038
+ var UpdateSubscriptionPaymentMethod = function() {
7039
+ var _ref = _async_to_generator(function(param) {
7040
+ var subscriptionId, paymentMethodId, clientApi, queryClient, data;
7041
+ return _ts_generator(this, function(_state) {
7042
+ switch(_state.label){
7043
+ case 0:
7044
+ subscriptionId = param.subscriptionId, paymentMethodId = param.paymentMethodId, clientApi = param.clientApi, queryClient = param.queryClient;
7045
+ return [
7046
+ 4,
7047
+ clientApi.put("/self/subscriptions/".concat(subscriptionId, "/payment-method"), {
7048
+ paymentMethodId: paymentMethodId
7049
+ })
7050
+ ];
7051
+ case 1:
7052
+ data = _state.sent().data;
7053
+ if (queryClient && data.status === "ok") {
7054
+ queryClient.invalidateQueries({
7055
+ queryKey: SELF_SUBSCRIPTION_QUERY_KEY(subscriptionId)
7056
+ });
7057
+ }
7058
+ return [
7059
+ 2,
7060
+ data
7061
+ ];
7062
+ }
7063
+ });
7064
+ });
7065
+ return function UpdateSubscriptionPaymentMethod(_) {
7066
+ return _ref.apply(this, arguments);
7067
+ };
7068
+ }();
7069
+ var useUpdateSubscriptionPaymentMethod = function() {
7070
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
7071
+ return useConnectedMutation_default(UpdateSubscriptionPaymentMethod, params, options);
7072
+ };
6500
7073
  // src/mutations/self/useAcceptTransfer.ts
6501
7074
  var AcceptTransfer = function() {
6502
7075
  var _ref = _async_to_generator(function(param) {
@@ -7220,6 +7793,43 @@ var useRemoveSelfEventSession = function() {
7220
7793
  var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
7221
7794
  return useConnectedMutation_default(RemoveSelfEventSession, params, options);
7222
7795
  };
7796
+ // src/mutations/self/useSelfCheckinRegistration.tsx
7797
+ var SelfCheckinRegistration = function() {
7798
+ var _ref = _async_to_generator(function(param) {
7799
+ var accountId, eventId, clientApi, queryClient, data;
7800
+ return _ts_generator(this, function(_state) {
7801
+ switch(_state.label){
7802
+ case 0:
7803
+ accountId = param.accountId, eventId = param.eventId, clientApi = param.clientApi, queryClient = param.queryClient;
7804
+ return [
7805
+ 4,
7806
+ clientApi.post("/self/events/listings/".concat(eventId, "/registrations/").concat(accountId))
7807
+ ];
7808
+ case 1:
7809
+ data = _state.sent().data;
7810
+ if (queryClient && data.status === "ok") {
7811
+ queryClient.invalidateQueries({
7812
+ queryKey: SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY(eventId, true)
7813
+ });
7814
+ queryClient.invalidateQueries({
7815
+ queryKey: SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY(eventId, false)
7816
+ });
7817
+ }
7818
+ return [
7819
+ 2,
7820
+ data
7821
+ ];
7822
+ }
7823
+ });
7824
+ });
7825
+ return function SelfCheckinRegistration(_) {
7826
+ return _ref.apply(this, arguments);
7827
+ };
7828
+ }();
7829
+ var useSelfCheckinRegistration = function() {
7830
+ var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
7831
+ return useConnectedMutation_default(SelfCheckinRegistration, params, options);
7832
+ };
7223
7833
  // src/mutations/activities/optimistic/UpdateComments.ts
7224
7834
  var UpdateCommentsSingle = function(increment, queryClient, KEY) {
7225
7835
  queryClient.setQueryData(KEY, function(data) {
@@ -7291,11 +7901,11 @@ var UpdateCommentsInfinite = function(increment, queryClient, KEY, activityId) {
7291
7901
  // src/mutations/self/useSelfCreateActivity.ts
7292
7902
  var SelfCreateActivity = function() {
7293
7903
  var _ref = _async_to_generator(function(param) {
7294
- var activity, base64Image, clientApi, queryClient, _param_locale, locale, data, _data_data_commented, _data_data_content, _data_data, _data_data_event, _data_data1, _data_data_community, _data_data2;
7904
+ var activity, base64Image, videoUri, clientApi, queryClient, _param_locale, locale, data, _data_data_commented, _data_data_content, _data_data, _data_data_event, _data_data1, _data_data_community, _data_data2;
7295
7905
  return _ts_generator(this, function(_state) {
7296
7906
  switch(_state.label){
7297
7907
  case 0:
7298
- activity = param.activity, base64Image = param.base64Image, clientApi = param.clientApi, queryClient = param.queryClient, _param_locale = param.locale, locale = _param_locale === void 0 ? "en" : _param_locale;
7908
+ activity = param.activity, base64Image = param.base64Image, videoUri = param.videoUri, clientApi = param.clientApi, queryClient = param.queryClient, _param_locale = param.locale, locale = _param_locale === void 0 ? "en" : _param_locale;
7299
7909
  if (queryClient) {
7300
7910
  if (activity.commentedId) {
7301
7911
  UpdateCommentsSingle(true, queryClient, _to_consumable_array(ACTIVITY_QUERY_KEY(activity.commentedId)).concat([
@@ -7310,7 +7920,8 @@ var SelfCreateActivity = function() {
7310
7920
  4,
7311
7921
  clientApi.post("/self/activities", {
7312
7922
  activity: activity,
7313
- buffer: base64Image ? "data:image/jpeg;base64,".concat(base64Image) : void 0
7923
+ buffer: base64Image ? "data:image/jpeg;base64,".concat(base64Image) : void 0,
7924
+ videoUri: videoUri || void 0
7314
7925
  })
7315
7926
  ];
7316
7927
  case 1:
@@ -7956,4 +8567,4 @@ var useCreateTeamAccount = function() {
7956
8567
  var params = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
7957
8568
  return useConnectedMutation_default(CreateTeamAccount, params, options);
7958
8569
  };
7959
- export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, AccountType, AddCommunityEvent, AddSelfChatChannelMember, AddSelfDelegate, AddSelfEventListingSession, AddSelfEventListingSpeaker, AddSelfEventListingSponsor, AddSelfEventSession, AdvertisementType, AppendInfiniteQuery, BENEFITS_QUERY_KEY, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, CancelTransfer, CaptureSelfEventRegistrationPayment, CommunityAccess, CommunityMembershipRole, CompleteEventActivation, ConnectedXMProvider, ContentTypeFormat, CouponType, CreateCommunityAnnouncement, CreateEventLead, CreateSelfChatChannel, CreateSelfChatChannelMessage, CreateSelfEventListing, CreateSupportTicket, CreateTeamAccount, Currency, DeleteActivity, DeleteReshare, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, DeleteSelfPushDevice, EVENTS_FEATURED_QUERY_KEY, EVENTS_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_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, EventSource, EventType, FollowAccount, GetAccount, GetAccountActivities, GetAccountByShareCode, GetAccountCommunities, GetAccountFollowers, GetAccountFollowings, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetAdvertisement, GetBenefits, GetCommunities, GetCommunity, GetCommunityActivities, GetCommunityAnnouncements, GetCommunityEvents, GetCommunityMembers, GetCommunityModerators, GetCommunitySponsors, GetContent, GetContentActivities, GetContentType, GetContentTypeContents, GetContentTypes, GetContents, GetErrorMessage, GetEvent, GetEventActivities, GetEventFAQSection, GetEventFAQSectionQuestion, GetEventFaqSections, GetEventFaqs, GetEventPage, GetEventPages, GetEventQuestionSearchValues, GetEventRegistrants, GetEventSession, GetEventSessions, GetEventSpeaker, GetEventSpeakers, GetEventSponsors, GetEventTickets, GetEvents, GetFeaturedEvents, GetLevel, GetLevelSponsors, GetLevels, GetOrganization, GetOrganizationExplore, GetOrganizationPage, GetSelf, GetSelfActivities, GetSelfAnnouncement, GetSelfChatChannel, GetSelfChatChannelMembers, GetSelfChatChannelMessages, GetSelfChatChannels, GetSelfCommunityMembership, GetSelfCommunityMemberships, GetSelfDelegateOf, GetSelfDelegates, GetSelfEventListing, GetSelfEventListingRegistrations, GetSelfEventListings, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, GetSelfEventSessions, GetSelfEvents, GetSelfFeed, GetSelfInterests, GetSelfNewNotificationsCount, GetSelfNotificationPreferences, GetSelfNotifications, GetSelfPushDevice, GetSelfPushDevices, GetSelfRecommendations, GetSelfTransfer, GetSelfTransfers, GetSeries, GetSeriesEvents, GetSeriesList, GetSponsor, GetSponsors, ImageType, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LeaveSelfChatChannel, LikeActivity, MergeInfinitePages, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, PushDeviceAppType, PushService, RegisterCancelledEventRegistration, RegistrationQuestionType, RegistrationStatus, RejectTransfer, RemoveCommunityEvent, RemoveSelfDelegate, RemoveSelfEventListingSession, RemoveSelfEventListingSpeaker, RemoveSelfEventListingSponsor, RemoveSelfEventRegistrationCoupon, RemoveSelfEventRegistrationTicket, RemoveSelfEventSession, ReshareActivity, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_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_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_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_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_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, SelectSelfEventRegistrationCoupon, SelectSelfEventRegistrationTicket, SelfCreateActivity, SelfJoinCommunity, SelfLeaveCommunity, SelfUpdateCommunityMembership, SubmitSelfEventRegistration, SubscriptionStatus, SupportTicketType, TicketEventAccessLevel, TicketVisibility, TransferPurchase, UnfollowAccount, UnlikeActivity, UpdateCommunity, UpdateSelf, UpdateSelfChatChannelNotifications, UpdateSelfEventListing, UpdateSelfEventListingSession, UpdateSelfEventListingSpeaker, UpdateSelfEventRegistrationResponse, UpdateSelfEventRegistrationResponses, UpdateSelfImage, UpdateSelfLead, UpdateSelfNotificationPreferences, UpdateSelfPushDevice, isListing, isManagedCoupon, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventSession, useCancelEventRegistration, useCancelTransfer, useCaptureSelfEventRegistrationPayment, useClientAPI, useCompleteEventActivation, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationTicket, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationResponse, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice };
8570
+ export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, AccountType, AddCommunityEvent, AddSelfChatChannelMember, AddSelfDelegate, AddSelfEventListingSession, AddSelfEventListingSpeaker, AddSelfEventListingSponsor, AddSelfEventSession, AdvertisementType, AppendInfiniteQuery, BENEFITS_QUERY_KEY, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, CancelSubscription, CancelTransfer, CaptureSelfEventRegistrationPayment, CommunityAccess, CommunityMembershipRole, CompleteEventActivation, ConnectedXMProvider, ContentTypeFormat, CouponType, CreateCommunityAnnouncement, CreateEventLead, CreateSelfChatChannel, CreateSelfChatChannelMessage, CreateSelfEventListing, CreateSelfEventRegistrationGuest, CreateSubscription, CreateSupportTicket, CreateTeamAccount, Currency, DeleteActivity, DeleteReshare, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, DeleteSelfEventRegistrationGuest, DeleteSelfPushDevice, EVENTS_FEATURED_QUERY_KEY, EVENTS_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_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, EventSource, EventType, FollowAccount, GetAccount, GetAccountActivities, GetAccountByShareCode, GetAccountCommunities, GetAccountFollowers, GetAccountFollowings, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetAdvertisement, GetBenefits, GetCommunities, GetCommunity, GetCommunityActivities, GetCommunityAnnouncements, GetCommunityEvents, GetCommunityMembers, GetCommunityModerators, GetCommunitySponsors, GetContent, GetContentActivities, GetContentType, GetContentTypeContents, GetContentTypes, GetContents, GetErrorMessage, GetEvent, GetEventActivities, GetEventFAQSection, GetEventFAQSectionQuestion, GetEventFaqSections, GetEventFaqs, GetEventPage, GetEventPages, GetEventQuestionSearchValues, GetEventRegistrants, GetEventSession, GetEventSessions, GetEventSpeaker, GetEventSpeakers, GetEventSponsors, GetEventTickets, GetEvents, GetFeaturedEvents, GetLevel, GetLevelSponsors, GetLevels, GetOrganization, GetOrganizationExplore, GetOrganizationPage, GetOrganizationPaymentIntegration, GetOrganizationSubscriptionProducts, GetSelf, GetSelfActivities, GetSelfAnnouncement, GetSelfChatChannel, GetSelfChatChannelMembers, GetSelfChatChannelMessages, GetSelfChatChannels, GetSelfCommunityMembership, GetSelfCommunityMemberships, GetSelfDelegateOf, GetSelfDelegates, GetSelfEventListing, GetSelfEventListingRegistrations, GetSelfEventListings, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, GetSelfEventSessions, GetSelfEvents, GetSelfFeed, GetSelfInterests, GetSelfNewNotificationsCount, GetSelfNotificationPreferences, GetSelfNotifications, GetSelfPushDevice, GetSelfPushDevices, GetSelfRecommendations, GetSelfSubcription, GetSelfSubscriptionPayments, GetSelfSubscriptions, GetSelfTransfer, GetSelfTransfers, GetSeries, GetSeriesEvents, GetSeriesList, GetSponsor, GetSponsors, ImageType, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LeaveSelfChatChannel, LikeActivity, MergeInfinitePages, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, PushDeviceAppType, PushService, RegisterCancelledEventRegistration, RegistrationQuestionType, RegistrationStatus, RejectTransfer, RemoveCommunityEvent, RemoveSelfDelegate, RemoveSelfEventListingSession, RemoveSelfEventListingSpeaker, RemoveSelfEventListingSponsor, RemoveSelfEventRegistrationCoupon, RemoveSelfEventRegistrationTicket, RemoveSelfEventSession, ReshareActivity, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_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_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_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_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_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, SelectSelfEventRegistrationCoupon, SelectSelfEventRegistrationTicket, SelfCheckinRegistration, SelfCreateActivity, SelfJoinCommunity, SelfLeaveCommunity, SelfUpdateCommunityMembership, SubmitSelfEventRegistration, SubscriptionStatus, SupportTicketType, TicketEventAccessLevel, TicketVisibility, TransferPurchase, UnfollowAccount, UnlikeActivity, UpdateCommunity, UpdateSelf, UpdateSelfChatChannelNotifications, UpdateSelfEventListing, UpdateSelfEventListingSession, UpdateSelfEventListingSpeaker, UpdateSelfEventRegistrationGuest, UpdateSelfEventRegistrationGuestResponse, UpdateSelfEventRegistrationGuestResponseFile, UpdateSelfEventRegistrationGuestResponses, UpdateSelfEventRegistrationResponse, UpdateSelfEventRegistrationResponseFile, UpdateSelfEventRegistrationResponses, UpdateSelfImage, UpdateSelfLead, UpdateSelfNotificationPreferences, UpdateSelfPushDevice, UpdateSubscriptionPaymentMethod, getClientAPI, isListing, isManagedCoupon, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureSelfEventRegistrationPayment, useClientAPI, useCompleteEventActivation, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSelfEventRegistrationGuest, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfEventRegistrationGuest, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationTicket, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationGuest, useUpdateSelfEventRegistrationGuestResponse, useUpdateSelfEventRegistrationGuestResponseFile, useUpdateSelfEventRegistrationGuestResponses, useUpdateSelfEventRegistrationResponse, useUpdateSelfEventRegistrationResponseFile, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };