@timardex/cluemart-shared 1.3.54 → 1.3.55

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.
@@ -13,7 +13,7 @@ import {
13
13
  dateFormat,
14
14
  normalizeUrl,
15
15
  timeFormat
16
- } from "../chunk-6DQPQJ2R.mjs";
16
+ } from "../chunk-O3WF2I56.mjs";
17
17
  import {
18
18
  EnumEventDateStatus,
19
19
  EnumEventType,
@@ -26,7 +26,7 @@ import {
26
26
  EnumUserLicence,
27
27
  EnumUserRole,
28
28
  EnumVendorType
29
- } from "../chunk-T4ZRRNJA.mjs";
29
+ } from "../chunk-IXPWY6CU.mjs";
30
30
 
31
31
  // src/hooks/useLocationSearch.ts
32
32
  var handleApiError = (error, message) => {
package/dist/index.cjs CHANGED
@@ -129,6 +129,7 @@ __export(index_exports, {
129
129
  useAddUserInterestResource: () => useAddUserInterestResource,
130
130
  useAddUserPresentResource: () => useAddUserPresentResource,
131
131
  useAdminResendTesterVerificationEmail: () => useAdminResendTesterVerificationEmail,
132
+ useAdminResendUserVerificationEmail: () => useAdminResendUserVerificationEmail,
132
133
  useAdminUpdateResourceType: () => useAdminUpdateResourceType,
133
134
  useAdminUpdateTester: () => useAdminUpdateTester,
134
135
  useAppSettingsForm: () => useAppSettingsForm,
@@ -390,6 +391,7 @@ var EnumNotificationResourceType = /* @__PURE__ */ ((EnumNotificationResourceTyp
390
391
  EnumNotificationResourceType2["EVENT_INVITE_VENDOR"] = "event_invite_vendor" /* EVENT_INVITE_VENDOR */;
391
392
  EnumNotificationResourceType2["EVENT_STARTING_SOON"] = "event_starting_soon";
392
393
  EnumNotificationResourceType2["NEW_CHAT_MESSAGE"] = "new_chat_message";
394
+ EnumNotificationResourceType2["SYSTEM_ALERT"] = "system_alert";
393
395
  EnumNotificationResourceType2["VENDOR_APPLICATION_TO_EVENT"] = "vendor_application_to_event" /* VENDOR_APPLICATION_TO_EVENT */;
394
396
  return EnumNotificationResourceType2;
395
397
  })(EnumNotificationResourceType || {});
@@ -2466,6 +2468,11 @@ var ADMIN_RESEND_TESTER_VERIFICATION_EMAIL_MUTATION = import_client.gql`
2466
2468
  adminResendTesterVerificationEmail(testerId: $testerId)
2467
2469
  }
2468
2470
  `;
2471
+ var ADMIN_RESEND_USER_VERIFICATION_EMAIL_MUTATION = import_client.gql`
2472
+ mutation adminResendUserVerificationEmail($userId: ID!) {
2473
+ adminResendUserVerificationEmail(userId: $userId)
2474
+ }
2475
+ `;
2469
2476
 
2470
2477
  // src/graphql/queries/event.ts
2471
2478
  var import_client3 = require("@apollo/client");
@@ -3229,6 +3236,16 @@ var useAdminResendTesterVerificationEmail = () => {
3229
3236
  loading
3230
3237
  };
3231
3238
  };
3239
+ var useAdminResendUserVerificationEmail = () => {
3240
+ const [adminResendUserVerificationEmail, { loading, error }] = (0, import_client6.useMutation)(
3241
+ ADMIN_RESEND_USER_VERIFICATION_EMAIL_MUTATION
3242
+ );
3243
+ return {
3244
+ adminResendUserVerificationEmail,
3245
+ error,
3246
+ loading
3247
+ };
3248
+ };
3232
3249
 
3233
3250
  // src/graphql/hooks/auth.ts
3234
3251
  var import_client8 = require("@apollo/client");
@@ -7758,6 +7775,7 @@ var EnumActivity = /* @__PURE__ */ ((EnumActivity2) => {
7758
7775
  useAddUserInterestResource,
7759
7776
  useAddUserPresentResource,
7760
7777
  useAdminResendTesterVerificationEmail,
7778
+ useAdminResendUserVerificationEmail,
7761
7779
  useAdminUpdateResourceType,
7762
7780
  useAdminUpdateTester,
7763
7781
  useAppSettingsForm,