@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.
- package/dist/{chunk-T4ZRRNJA.mjs → chunk-IXPWY6CU.mjs} +2 -1
- package/dist/chunk-IXPWY6CU.mjs.map +1 -0
- package/dist/{chunk-6DQPQJ2R.mjs → chunk-O3WF2I56.mjs} +2 -2
- package/dist/enums/index.cjs +1 -0
- package/dist/enums/index.cjs.map +1 -1
- package/dist/enums/index.d.mts +1 -0
- package/dist/enums/index.d.ts +1 -0
- package/dist/enums/index.mjs +1 -1
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.mjs +2 -2
- package/dist/graphql/index.cjs +17 -0
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +6 -1
- package/dist/graphql/index.d.ts +6 -1
- package/dist/graphql/index.mjs +17 -1
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/index.cjs +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.mjs +17 -0
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.mjs +2 -2
- package/package.json +1 -1
- package/dist/chunk-T4ZRRNJA.mjs.map +0 -1
- /package/dist/{chunk-6DQPQJ2R.mjs.map → chunk-O3WF2I56.mjs.map} +0 -0
package/dist/hooks/index.mjs
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
dateFormat,
|
|
14
14
|
normalizeUrl,
|
|
15
15
|
timeFormat
|
|
16
|
-
} from "../chunk-
|
|
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-
|
|
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,
|