@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/graphql/index.cjs
CHANGED
|
@@ -26,6 +26,7 @@ __export(graphql_exports, {
|
|
|
26
26
|
useAddUserInterestResource: () => useAddUserInterestResource,
|
|
27
27
|
useAddUserPresentResource: () => useAddUserPresentResource,
|
|
28
28
|
useAdminResendTesterVerificationEmail: () => useAdminResendTesterVerificationEmail,
|
|
29
|
+
useAdminResendUserVerificationEmail: () => useAdminResendUserVerificationEmail,
|
|
29
30
|
useAdminUpdateResourceType: () => useAdminUpdateResourceType,
|
|
30
31
|
useAdminUpdateTester: () => useAdminUpdateTester,
|
|
31
32
|
useCancelSubscription: () => useCancelSubscription,
|
|
@@ -163,6 +164,11 @@ var ADMIN_RESEND_TESTER_VERIFICATION_EMAIL_MUTATION = import_client.gql`
|
|
|
163
164
|
adminResendTesterVerificationEmail(testerId: $testerId)
|
|
164
165
|
}
|
|
165
166
|
`;
|
|
167
|
+
var ADMIN_RESEND_USER_VERIFICATION_EMAIL_MUTATION = import_client.gql`
|
|
168
|
+
mutation adminResendUserVerificationEmail($userId: ID!) {
|
|
169
|
+
adminResendUserVerificationEmail(userId: $userId)
|
|
170
|
+
}
|
|
171
|
+
`;
|
|
166
172
|
|
|
167
173
|
// src/graphql/queries/event.ts
|
|
168
174
|
var import_client3 = require("@apollo/client");
|
|
@@ -926,6 +932,16 @@ var useAdminResendTesterVerificationEmail = () => {
|
|
|
926
932
|
loading
|
|
927
933
|
};
|
|
928
934
|
};
|
|
935
|
+
var useAdminResendUserVerificationEmail = () => {
|
|
936
|
+
const [adminResendUserVerificationEmail, { loading, error }] = (0, import_client6.useMutation)(
|
|
937
|
+
ADMIN_RESEND_USER_VERIFICATION_EMAIL_MUTATION
|
|
938
|
+
);
|
|
939
|
+
return {
|
|
940
|
+
adminResendUserVerificationEmail,
|
|
941
|
+
error,
|
|
942
|
+
loading
|
|
943
|
+
};
|
|
944
|
+
};
|
|
929
945
|
|
|
930
946
|
// src/graphql/hooks/auth.ts
|
|
931
947
|
var import_client8 = require("@apollo/client");
|
|
@@ -3430,6 +3446,7 @@ var useGetAppSettings = () => {
|
|
|
3430
3446
|
useAddUserInterestResource,
|
|
3431
3447
|
useAddUserPresentResource,
|
|
3432
3448
|
useAdminResendTesterVerificationEmail,
|
|
3449
|
+
useAdminResendUserVerificationEmail,
|
|
3433
3450
|
useAdminUpdateResourceType,
|
|
3434
3451
|
useAdminUpdateTester,
|
|
3435
3452
|
useCancelSubscription,
|