@connectedxm/admin 6.9.6 → 6.9.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -74,6 +74,7 @@ __export(index_exports, {
74
74
  AUTH_SESSION_QUERY_KEY: () => AUTH_SESSION_QUERY_KEY,
75
75
  AcceptGroupRequest: () => AcceptGroupRequest,
76
76
  AccountAccess: () => AccountAccess,
77
+ AccountAttributeType: () => AccountAttributeType,
77
78
  ActivityEntityType: () => ActivityEntityType,
78
79
  ActivityPreference: () => ActivityPreference,
79
80
  ActivityStatus: () => ActivityStatus,
@@ -3675,6 +3676,16 @@ var SessionAccess = /* @__PURE__ */ ((SessionAccess2) => {
3675
3676
  SessionAccess2["private"] = "PRIVATE";
3676
3677
  return SessionAccess2;
3677
3678
  })(SessionAccess || {});
3679
+ var AccountAttributeType = /* @__PURE__ */ ((AccountAttributeType2) => {
3680
+ AccountAttributeType2["text"] = "text";
3681
+ AccountAttributeType2["number"] = "number";
3682
+ AccountAttributeType2["date"] = "date";
3683
+ AccountAttributeType2["boolean"] = "boolean";
3684
+ AccountAttributeType2["search"] = "search";
3685
+ AccountAttributeType2["select"] = "select";
3686
+ AccountAttributeType2["location"] = "location";
3687
+ return AccountAttributeType2;
3688
+ })(AccountAttributeType || {});
3678
3689
  var EventActivationType = /* @__PURE__ */ ((EventActivationType2) => {
3679
3690
  EventActivationType2["public"] = "public";
3680
3691
  EventActivationType2["private"] = "private";
@@ -33347,15 +33358,11 @@ var CloneEventSession = async ({
33347
33358
  queryClient
33348
33359
  }) => {
33349
33360
  const connectedXM = await GetAdminAPI(adminApiParams);
33350
- const { data } = await connectedXM.post(
33351
- `/events/${eventId}/sessions/${sessionId}/clone`,
33352
- options
33353
- );
33361
+ const { data } = await connectedXM.post(`/events/${eventId}/sessions/${sessionId}/clone`, options);
33354
33362
  if (queryClient && data.status === "ok") {
33355
33363
  queryClient.invalidateQueries({
33356
33364
  queryKey: EVENT_SESSIONS_QUERY_KEY(eventId)
33357
33365
  });
33358
- SET_EVENT_SESSION_QUERY_DATA(queryClient, [eventId, data.data.id], data);
33359
33366
  }
33360
33367
  return data;
33361
33368
  };
@@ -40320,6 +40327,7 @@ var useUpdateTier = (options = {}) => {
40320
40327
  AUTH_SESSION_QUERY_KEY,
40321
40328
  AcceptGroupRequest,
40322
40329
  AccountAccess,
40330
+ AccountAttributeType,
40323
40331
  ActivityEntityType,
40324
40332
  ActivityPreference,
40325
40333
  ActivityStatus,