@better-auth-ui/core 1.6.9 → 1.6.11

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.
Files changed (63) hide show
  1. package/dist/config/auth-config.d.ts +8 -8
  2. package/dist/config/index.d.ts +4 -4
  3. package/dist/create-auth-plugin-CnH7jMHA.js +199 -0
  4. package/dist/index.d.ts +11 -11
  5. package/dist/index.js +103 -11
  6. package/dist/lib/auth-plugin.d.ts +1 -1
  7. package/dist/lib/create-auth-plugin.d.ts +1 -1
  8. package/dist/lib/provider-names.d.ts +1 -1
  9. package/dist/lib/utils.d.ts +1 -1
  10. package/dist/plugins/api-key/api-key-plugin.d.ts +1 -1
  11. package/dist/plugins/delete-user/delete-user-plugin.d.ts +1 -1
  12. package/dist/plugins/magic-link/magic-link-plugin.d.ts +1 -1
  13. package/dist/plugins/multi-session/multi-session-plugin.d.ts +1 -1
  14. package/dist/plugins/organization/organization-plugin.d.ts +3 -3
  15. package/dist/plugins/passkey/passkey-plugin.d.ts +1 -1
  16. package/dist/plugins/theme/theme-plugin.d.ts +1 -1
  17. package/dist/plugins/username/username-plugin.d.ts +1 -1
  18. package/dist/plugins.d.ts +28 -28
  19. package/dist/plugins.js +360 -28
  20. package/package.json +2 -2
  21. package/dist/config/additional-fields-config.js +0 -39
  22. package/dist/config/auth-config.js +0 -34
  23. package/dist/config/avatar-config.js +0 -1
  24. package/dist/config/email-and-password-config.js +0 -1
  25. package/dist/config/index.js +0 -4
  26. package/dist/lib/auth-mutation-keys.js +0 -70
  27. package/dist/lib/auth-plugin.js +0 -1
  28. package/dist/lib/auth-query-keys.js +0 -42
  29. package/dist/lib/base-paths.js +0 -5
  30. package/dist/lib/create-auth-plugin.js +0 -23
  31. package/dist/lib/deep-partial.js +0 -1
  32. package/dist/lib/localization.js +0 -150
  33. package/dist/lib/provider-names.js +0 -50
  34. package/dist/lib/utils.js +0 -116
  35. package/dist/lib/view-paths.js +0 -13
  36. package/dist/plugins/api-key/api-key-localization.js +0 -24
  37. package/dist/plugins/api-key/api-key-mutation-keys.js +0 -11
  38. package/dist/plugins/api-key/api-key-plugin.js +0 -6
  39. package/dist/plugins/api-key/api-key-query-keys.js +0 -7
  40. package/dist/plugins/delete-user/delete-user-localization.js +0 -10
  41. package/dist/plugins/delete-user/delete-user-mutation-keys.js +0 -7
  42. package/dist/plugins/delete-user/delete-user-plugin.js +0 -6
  43. package/dist/plugins/magic-link/magic-link-localization.js +0 -8
  44. package/dist/plugins/magic-link/magic-link-mutation-keys.js +0 -17
  45. package/dist/plugins/magic-link/magic-link-plugin.js +0 -8
  46. package/dist/plugins/multi-session/multi-session-localization.js +0 -10
  47. package/dist/plugins/multi-session/multi-session-mutation-keys.js +0 -11
  48. package/dist/plugins/multi-session/multi-session-plugin.js +0 -5
  49. package/dist/plugins/multi-session/multi-session-query-keys.js +0 -7
  50. package/dist/plugins/organization/organization-localization.js +0 -114
  51. package/dist/plugins/organization/organization-mutation-keys.js +0 -40
  52. package/dist/plugins/organization/organization-plugin.js +0 -35
  53. package/dist/plugins/organization/organization-query-keys.js +0 -54
  54. package/dist/plugins/organization/organization-view-paths.js +0 -1
  55. package/dist/plugins/passkey/passkey-localization.js +0 -20
  56. package/dist/plugins/passkey/passkey-mutation-keys.js +0 -15
  57. package/dist/plugins/passkey/passkey-plugin.js +0 -5
  58. package/dist/plugins/passkey/passkey-query-keys.js +0 -7
  59. package/dist/plugins/theme/theme-localization.js +0 -12
  60. package/dist/plugins/theme/theme-plugin.js +0 -8
  61. package/dist/plugins/username/username-localization.js +0 -16
  62. package/dist/plugins/username/username-mutation-keys.js +0 -17
  63. package/dist/plugins/username/username-plugin.js +0 -36
@@ -1,11 +1,11 @@
1
- import type { SocialProvider } from "better-auth/social-providers";
2
- import type { AuthPlugin } from "../lib/auth-plugin";
3
- import { type BasePaths } from "../lib/base-paths";
4
- import { type Localization } from "../lib/localization";
5
- import { type ViewPaths } from "../lib/view-paths";
6
- import type { AdditionalFields } from "./additional-fields-config";
7
- import type { AvatarConfig } from "./avatar-config";
8
- import type { EmailAndPasswordConfig } from "./email-and-password-config";
1
+ import { SocialProvider } from 'better-auth/social-providers';
2
+ import { AuthPlugin } from '../lib/auth-plugin';
3
+ import { BasePaths } from '../lib/base-paths';
4
+ import { Localization } from '../lib/localization';
5
+ import { ViewPaths } from '../lib/view-paths';
6
+ import { AdditionalFields } from './additional-fields-config';
7
+ import { AvatarConfig } from './avatar-config';
8
+ import { EmailAndPasswordConfig } from './email-and-password-config';
9
9
  /**
10
10
  * Core authentication configuration interface.
11
11
  *
@@ -1,4 +1,4 @@
1
- export * from "./additional-fields-config";
2
- export * from "./auth-config";
3
- export * from "./avatar-config";
4
- export * from "./email-and-password-config";
1
+ export * from './additional-fields-config';
2
+ export * from './auth-config';
3
+ export * from './avatar-config';
4
+ export * from './email-and-password-config';
@@ -0,0 +1,199 @@
1
+ //#region src/lib/base-paths.ts
2
+ var e = {
3
+ auth: "/auth",
4
+ settings: "/settings",
5
+ organization: "/organization"
6
+ }, t = {
7
+ auth: {
8
+ account: "Account",
9
+ alreadyHaveAnAccount: "Already have an account?",
10
+ confirmPassword: "Confirm password",
11
+ confirmPasswordPlaceholder: "Confirm your password",
12
+ continueWith: "Continue with {{provider}}",
13
+ email: "Email",
14
+ emailPlaceholder: "Enter your email",
15
+ forgotPassword: "Forgot Password",
16
+ forgotPasswordLink: "Forgot password?",
17
+ hidePassword: "Hide password",
18
+ invalidResetPasswordToken: "Invalid reset password token",
19
+ name: "Name",
20
+ namePlaceholder: "Enter your name",
21
+ needToCreateAnAccount: "Need to create an account?",
22
+ newPassword: "New password",
23
+ newPasswordPlaceholder: "Enter your new password",
24
+ or: "OR",
25
+ password: "Password",
26
+ passwordPlaceholder: "Enter your password",
27
+ passwordResetEmailSent: "Password reset email sent",
28
+ passwordResetSuccess: "Password reset successfully",
29
+ passwordsDoNotMatch: "Passwords do not match",
30
+ rememberMe: "Remember me",
31
+ rememberYourPassword: "Remember your password?",
32
+ resend: "Resend",
33
+ resetPassword: "Reset Password",
34
+ sendResetLink: "Send reset link",
35
+ showPassword: "Show password",
36
+ signIn: "Sign In",
37
+ signOut: "Sign Out",
38
+ signUp: "Sign Up",
39
+ verificationEmailSent: "Verification email sent!",
40
+ verifyYourEmail: "Verify your email"
41
+ },
42
+ settings: {
43
+ account: "Account",
44
+ accountUnlinked: "Account unlinked",
45
+ active: "Active",
46
+ activeSessions: "Active sessions",
47
+ avatar: "Avatar",
48
+ currentSession: "Current session",
49
+ avatarChangedSuccess: "Avatar changed successfully",
50
+ avatarDeletedSuccess: "Avatar deleted successfully",
51
+ changeAvatar: "Change avatar",
52
+ deleteAvatar: "Delete avatar",
53
+ link: "Link",
54
+ linkedAccounts: "Linked accounts",
55
+ linkProvider: "Link your {{provider}} account",
56
+ cancel: "Cancel",
57
+ copyToClipboard: "Copy to clipboard",
58
+ changeEmail: "Change email",
59
+ changeEmailSuccess: "Check your email to confirm the change",
60
+ changePassword: "Change password",
61
+ changePasswordSuccess: "Password changed successfully",
62
+ currentPassword: "Current password",
63
+ currentPasswordPlaceholder: "Enter your current password",
64
+ dangerZone: "Danger zone",
65
+ delete: "Delete",
66
+ optional: "Optional",
67
+ profileUpdatedSuccess: "Profile updated successfully",
68
+ revoke: "Revoke",
69
+ revokeSession: "Revoke session",
70
+ revokeSessionSuccess: "Session revoked successfully",
71
+ saveChanges: "Save changes",
72
+ setPassword: "Set password",
73
+ setPasswordDescription: "You don't have a password yet. Request a reset link to set one up.",
74
+ security: "Security",
75
+ settings: "Settings",
76
+ time: "Time",
77
+ unlinkProvider: "Unlink {{provider}}",
78
+ updateEmail: "Update email",
79
+ updatePassword: "Update password",
80
+ uploadAvatar: "Upload avatar",
81
+ userProfile: "User profile"
82
+ }
83
+ };
84
+ //#endregion
85
+ //#region src/lib/utils.ts
86
+ function n(e) {
87
+ return typeof e == "object" && !!e && !Array.isArray(e);
88
+ }
89
+ function r(e) {
90
+ return !(!n(e) || e instanceof Date || e instanceof RegExp);
91
+ }
92
+ function i(e, t = 256, n = "png") {
93
+ let r = t, i = n === "inherit" ? e.name.split(".").pop() : n, a = n === "inherit" ? e.type : `image/${n === "jpg" ? "jpeg" : n}`;
94
+ return new Promise((t, n) => {
95
+ let o = new Image(), s = URL.createObjectURL(e);
96
+ o.onload = () => {
97
+ URL.revokeObjectURL(s);
98
+ let { naturalWidth: c, naturalHeight: l } = o, u = Math.min(c, l), d = (c - u) / 2, f = (l - u) / 2, p = Math.min(u, r), m = document.createElement("canvas");
99
+ m.width = p, m.height = p;
100
+ let h = m.getContext("2d");
101
+ if (!h) {
102
+ n(/* @__PURE__ */ Error("Could not get canvas context"));
103
+ return;
104
+ }
105
+ h.drawImage(o, d, f, u, u, 0, 0, p, p), m.toBlob((r) => {
106
+ if (!r) {
107
+ n(/* @__PURE__ */ Error("Could not create blob from canvas"));
108
+ return;
109
+ }
110
+ t(new File([r], e.name.replace(/\.[^.]+$/, `.${i}`), { type: a }));
111
+ }, a, 1);
112
+ }, o.onerror = () => {
113
+ URL.revokeObjectURL(s), n(/* @__PURE__ */ Error("Failed to load image"));
114
+ }, o.src = s;
115
+ });
116
+ }
117
+ function a(e) {
118
+ return new Promise((t, n) => {
119
+ let r = new FileReader();
120
+ r.onload = () => t(r.result), r.onerror = () => n(/* @__PURE__ */ Error("Failed to read file")), r.readAsDataURL(e);
121
+ });
122
+ }
123
+ function o(e, t) {
124
+ if (r(e) && r(t)) {
125
+ let n = { ...e };
126
+ for (let [r, i] of Object.entries(t)) i !== void 0 && (r in e ? n[r] = o(e[r], i) : n[r] = i);
127
+ return n;
128
+ }
129
+ return t;
130
+ }
131
+ //#endregion
132
+ //#region src/lib/view-paths.ts
133
+ var s = {
134
+ auth: {
135
+ signIn: "sign-in",
136
+ signUp: "sign-up",
137
+ forgotPassword: "forgot-password",
138
+ resetPassword: "reset-password",
139
+ signOut: "sign-out"
140
+ },
141
+ settings: {
142
+ account: "account",
143
+ security: "security"
144
+ }
145
+ }, c = {
146
+ avatar: {
147
+ enabled: !0,
148
+ resize: i,
149
+ size: 256,
150
+ extension: "png"
151
+ },
152
+ basePaths: e,
153
+ baseURL: "",
154
+ emailAndPassword: {
155
+ enabled: !0,
156
+ forgotPassword: !0,
157
+ name: !0,
158
+ rememberMe: !1,
159
+ minPasswordLength: 8,
160
+ maxPasswordLength: 128
161
+ },
162
+ plugins: [],
163
+ redirectTo: "/",
164
+ viewPaths: s,
165
+ localization: t,
166
+ navigate: ({ to: e, replace: t }) => {
167
+ t ? window.location.replace(e) : window.location.href = e;
168
+ }
169
+ }, l = {
170
+ all: ["auth"],
171
+ session: ["auth", "getSession"],
172
+ users: () => [...l.all, "user"],
173
+ user: (e) => [...l.users(), e],
174
+ accountInfo: (e, t) => [
175
+ ...l.user(e),
176
+ "accountInfo",
177
+ t ?? null
178
+ ],
179
+ listAccounts: (e, t) => [
180
+ ...l.user(e),
181
+ "listAccounts",
182
+ t ?? null
183
+ ],
184
+ listSessions: (e, t) => [
185
+ ...l.user(e),
186
+ "listSessions",
187
+ t ?? null
188
+ ]
189
+ };
190
+ //#endregion
191
+ //#region src/lib/create-auth-plugin.ts
192
+ function u(e, t) {
193
+ return Object.assign((...n) => ({
194
+ ...t(...n),
195
+ id: e
196
+ }), { id: e });
197
+ }
198
+ //#endregion
199
+ export { o as a, t as c, s as i, e as l, l as n, a as o, c as r, i as s, u as t };
package/dist/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- export * from "./config";
2
- export * from "./lib/auth-mutation-keys";
3
- export * from "./lib/auth-plugin";
4
- export * from "./lib/auth-query-keys";
5
- export * from "./lib/base-paths";
6
- export * from "./lib/create-auth-plugin";
7
- export * from "./lib/deep-partial";
8
- export * from "./lib/localization";
9
- export * from "./lib/provider-names";
10
- export * from "./lib/utils";
11
- export * from "./lib/view-paths";
1
+ export * from './config';
2
+ export * from './lib/auth-mutation-keys';
3
+ export * from './lib/auth-plugin';
4
+ export * from './lib/auth-query-keys';
5
+ export * from './lib/base-paths';
6
+ export * from './lib/create-auth-plugin';
7
+ export * from './lib/deep-partial';
8
+ export * from './lib/localization';
9
+ export * from './lib/provider-names';
10
+ export * from './lib/utils';
11
+ export * from './lib/view-paths';
package/dist/index.js CHANGED
@@ -1,11 +1,103 @@
1
- export * from "./config";
2
- export * from "./lib/auth-mutation-keys";
3
- export * from "./lib/auth-plugin";
4
- export * from "./lib/auth-query-keys";
5
- export * from "./lib/base-paths";
6
- export * from "./lib/create-auth-plugin";
7
- export * from "./lib/deep-partial";
8
- export * from "./lib/localization";
9
- export * from "./lib/provider-names";
10
- export * from "./lib/utils";
11
- export * from "./lib/view-paths";
1
+ import { a as e, c as t, i as n, l as r, n as i, o as a, r as o, s, t as c } from "./create-auth-plugin-CnH7jMHA.js";
2
+ //#region src/config/additional-fields-config.ts
3
+ function l(e, t) {
4
+ if (e.type === "boolean") return t === "on" || t === "true";
5
+ if (t != null) {
6
+ if (t === "") return null;
7
+ if (e.type === "number") {
8
+ let e = Number(t);
9
+ return Number.isNaN(e) ? void 0 : e;
10
+ }
11
+ if (e.type === "date") {
12
+ let e = new Date(t);
13
+ return Number.isNaN(e.getTime()) ? void 0 : e;
14
+ }
15
+ return t;
16
+ }
17
+ }
18
+ function u(e) {
19
+ if (e.inputType) return e.inputType;
20
+ switch (e.type) {
21
+ case "number": return "number";
22
+ case "boolean": return "switch";
23
+ case "date": return "date";
24
+ default: return "input";
25
+ }
26
+ }
27
+ //#endregion
28
+ //#region src/lib/auth-mutation-keys.ts
29
+ var d = {
30
+ all: ["auth"],
31
+ signIn: {
32
+ all: ["auth", "signIn"],
33
+ email: [
34
+ "auth",
35
+ "signIn",
36
+ "email"
37
+ ],
38
+ social: [
39
+ "auth",
40
+ "signIn",
41
+ "social"
42
+ ]
43
+ },
44
+ signUp: {
45
+ all: ["auth", "signUp"],
46
+ email: [
47
+ "auth",
48
+ "signUp",
49
+ "email"
50
+ ]
51
+ },
52
+ signOut: ["auth", "signOut"],
53
+ requestPasswordReset: ["auth", "requestPasswordReset"],
54
+ resetPassword: ["auth", "resetPassword"],
55
+ sendVerificationEmail: ["auth", "sendVerificationEmail"],
56
+ changeEmail: ["auth", "changeEmail"],
57
+ changePassword: ["auth", "changePassword"],
58
+ linkSocial: ["auth", "linkSocial"],
59
+ revokeSession: ["auth", "revokeSession"],
60
+ unlinkAccount: ["auth", "unlinkAccount"],
61
+ updateUser: ["auth", "updateUser"]
62
+ }, f = {
63
+ apple: "Apple",
64
+ atlassian: "Atlassian",
65
+ cognito: "Cognito",
66
+ discord: "Discord",
67
+ dropbox: "Dropbox",
68
+ facebook: "Facebook",
69
+ figma: "Figma",
70
+ github: "GitHub",
71
+ gitlab: "GitLab",
72
+ google: "Google",
73
+ huggingface: "Hugging Face",
74
+ kakao: "Kakao",
75
+ kick: "Kick",
76
+ line: "LINE",
77
+ linear: "Linear",
78
+ linkedin: "LinkedIn",
79
+ microsoft: "Microsoft",
80
+ naver: "Naver",
81
+ notion: "Notion",
82
+ paybin: "Paybin",
83
+ paypal: "PayPal",
84
+ polar: "Polar",
85
+ railway: "Railway",
86
+ reddit: "Reddit",
87
+ roblox: "Roblox",
88
+ salesforce: "Salesforce",
89
+ slack: "Slack",
90
+ spotify: "Spotify",
91
+ tiktok: "TikTok",
92
+ twitch: "Twitch",
93
+ twitter: "X",
94
+ vercel: "Vercel",
95
+ vk: "VK",
96
+ wechat: "WeChat",
97
+ zoom: "Zoom"
98
+ };
99
+ function p(e) {
100
+ return f[e] || e.charAt(0).toUpperCase() + e.slice(1);
101
+ }
102
+ //#endregion
103
+ export { d as authMutationKeys, i as authQueryKeys, r as basePaths, c as createAuthPlugin, e as deepmerge, o as defaultAuthConfig, a as fileToBase64, p as getProviderName, t as localization, l as parseAdditionalFieldValue, f as providerNames, s as resizeAvatar, u as resolveInputType, n as viewPaths };
@@ -1,4 +1,4 @@
1
- import type { AdditionalFields } from "../config/additional-fields-config";
1
+ import { AdditionalFields } from '../config/additional-fields-config';
2
2
  /**
3
3
  * View-path contributions kept on the plugin object.
4
4
  *
@@ -1,4 +1,4 @@
1
- import type { AuthPlugin } from "./auth-plugin";
1
+ import { AuthPlugin } from './auth-plugin';
2
2
  /**
3
3
  * Creates a plugin factory and attaches its `id` as a static property so
4
4
  * consumers (e.g. `useAuthPlugin`) can look it up without invoking the
@@ -1,4 +1,4 @@
1
- import type { SocialProvider } from "better-auth/social-providers";
1
+ import { SocialProvider } from 'better-auth/social-providers';
2
2
  /**
3
3
  * Mapping of social authentication provider identifiers to their human-readable display names.
4
4
  */
@@ -1,4 +1,4 @@
1
- import type { DeepPartial } from "./deep-partial";
1
+ import { DeepPartial } from './deep-partial';
2
2
  /**
3
3
  * Resize and square-crop an image file for use as an avatar.
4
4
  *
@@ -1,4 +1,4 @@
1
- import { type ApiKeyLocalization } from "./api-key-localization";
1
+ import { ApiKeyLocalization } from './api-key-localization';
2
2
  export type ApiKeyPluginOptions = {
3
3
  /**
4
4
  * Override the plugin's default localization strings.
@@ -1,4 +1,4 @@
1
- import { type DeleteUserLocalization } from "./delete-user-localization";
1
+ import { DeleteUserLocalization } from './delete-user-localization';
2
2
  export type DeleteUserPluginOptions = {
3
3
  /**
4
4
  * When `true`, matches server `sendDeleteAccountVerification`: deletion starts by sending a
@@ -1,4 +1,4 @@
1
- import { type MagicLinkLocalization } from "./magic-link-localization";
1
+ import { MagicLinkLocalization } from './magic-link-localization';
2
2
  declare module "../../lib/view-paths" {
3
3
  /** Widens `AuthViewPaths` by adding the `"magicLink"` path when this plugin is imported. */
4
4
  interface AuthViewPaths {
@@ -1,4 +1,4 @@
1
- import { type MultiSessionLocalization } from "./multi-session-localization";
1
+ import { MultiSessionLocalization } from './multi-session-localization';
2
2
  export type MultiSessionPluginOptions = {
3
3
  /**
4
4
  * Override the plugin's default localization strings.
@@ -1,6 +1,6 @@
1
- import type { AvatarConfig } from "../../config/avatar-config";
2
- import { type OrganizationLocalization } from "./organization-localization";
3
- import type { OrganizationViewPaths } from "./organization-view-paths";
1
+ import { AvatarConfig } from '../../config/avatar-config';
2
+ import { OrganizationLocalization } from './organization-localization';
3
+ import { OrganizationViewPaths } from './organization-view-paths';
4
4
  declare module "../../lib/view-paths" {
5
5
  /** Widens `SettingsViewPaths` by adding the `"organizations"` path when this plugin is imported. */
6
6
  interface SettingsViewPaths {
@@ -1,4 +1,4 @@
1
- import { type PasskeyLocalization } from "./passkey-localization";
1
+ import { PasskeyLocalization } from './passkey-localization';
2
2
  export type PasskeyPluginOptions = {
3
3
  /**
4
4
  * Override the plugin's default localization strings.
@@ -1,4 +1,4 @@
1
- import { type ThemeLocalization } from "./theme-localization";
1
+ import { ThemeLocalization } from './theme-localization';
2
2
  export type ThemePluginOptions = {
3
3
  /**
4
4
  * Override the plugin's default localization strings.
@@ -1,4 +1,4 @@
1
- import { type UsernameLocalization } from "./username-localization";
1
+ import { UsernameLocalization } from './username-localization';
2
2
  export type UsernamePluginOptions = {
3
3
  /**
4
4
  * Whether to use displayUsername for the visible username field in the profile.
package/dist/plugins.d.ts CHANGED
@@ -1,28 +1,28 @@
1
- export * from "./plugins/api-key/api-key-localization";
2
- export * from "./plugins/api-key/api-key-mutation-keys";
3
- export * from "./plugins/api-key/api-key-plugin";
4
- export * from "./plugins/api-key/api-key-query-keys";
5
- export * from "./plugins/delete-user/delete-user-localization";
6
- export * from "./plugins/delete-user/delete-user-mutation-keys";
7
- export * from "./plugins/delete-user/delete-user-plugin";
8
- export * from "./plugins/magic-link/magic-link-localization";
9
- export * from "./plugins/magic-link/magic-link-mutation-keys";
10
- export * from "./plugins/magic-link/magic-link-plugin";
11
- export * from "./plugins/multi-session/multi-session-localization";
12
- export * from "./plugins/multi-session/multi-session-mutation-keys";
13
- export * from "./plugins/multi-session/multi-session-plugin";
14
- export * from "./plugins/multi-session/multi-session-query-keys";
15
- export * from "./plugins/organization/organization-localization";
16
- export * from "./plugins/organization/organization-mutation-keys";
17
- export * from "./plugins/organization/organization-plugin";
18
- export * from "./plugins/organization/organization-query-keys";
19
- export * from "./plugins/organization/organization-view-paths";
20
- export * from "./plugins/passkey/passkey-localization";
21
- export * from "./plugins/passkey/passkey-mutation-keys";
22
- export * from "./plugins/passkey/passkey-plugin";
23
- export * from "./plugins/passkey/passkey-query-keys";
24
- export * from "./plugins/theme/theme-localization";
25
- export * from "./plugins/theme/theme-plugin";
26
- export * from "./plugins/username/username-localization";
27
- export * from "./plugins/username/username-mutation-keys";
28
- export * from "./plugins/username/username-plugin";
1
+ export * from './plugins/api-key/api-key-localization';
2
+ export * from './plugins/api-key/api-key-mutation-keys';
3
+ export * from './plugins/api-key/api-key-plugin';
4
+ export * from './plugins/api-key/api-key-query-keys';
5
+ export * from './plugins/delete-user/delete-user-localization';
6
+ export * from './plugins/delete-user/delete-user-mutation-keys';
7
+ export * from './plugins/delete-user/delete-user-plugin';
8
+ export * from './plugins/magic-link/magic-link-localization';
9
+ export * from './plugins/magic-link/magic-link-mutation-keys';
10
+ export * from './plugins/magic-link/magic-link-plugin';
11
+ export * from './plugins/multi-session/multi-session-localization';
12
+ export * from './plugins/multi-session/multi-session-mutation-keys';
13
+ export * from './plugins/multi-session/multi-session-plugin';
14
+ export * from './plugins/multi-session/multi-session-query-keys';
15
+ export * from './plugins/organization/organization-localization';
16
+ export * from './plugins/organization/organization-mutation-keys';
17
+ export * from './plugins/organization/organization-plugin';
18
+ export * from './plugins/organization/organization-query-keys';
19
+ export * from './plugins/organization/organization-view-paths';
20
+ export * from './plugins/passkey/passkey-localization';
21
+ export * from './plugins/passkey/passkey-mutation-keys';
22
+ export * from './plugins/passkey/passkey-plugin';
23
+ export * from './plugins/passkey/passkey-query-keys';
24
+ export * from './plugins/theme/theme-localization';
25
+ export * from './plugins/theme/theme-plugin';
26
+ export * from './plugins/username/username-localization';
27
+ export * from './plugins/username/username-mutation-keys';
28
+ export * from './plugins/username/username-plugin';