@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.
- package/dist/config/auth-config.d.ts +8 -8
- package/dist/config/index.d.ts +4 -4
- package/dist/create-auth-plugin-CnH7jMHA.js +199 -0
- package/dist/index.d.ts +11 -11
- package/dist/index.js +103 -11
- package/dist/lib/auth-plugin.d.ts +1 -1
- package/dist/lib/create-auth-plugin.d.ts +1 -1
- package/dist/lib/provider-names.d.ts +1 -1
- package/dist/lib/utils.d.ts +1 -1
- package/dist/plugins/api-key/api-key-plugin.d.ts +1 -1
- package/dist/plugins/delete-user/delete-user-plugin.d.ts +1 -1
- package/dist/plugins/magic-link/magic-link-plugin.d.ts +1 -1
- package/dist/plugins/multi-session/multi-session-plugin.d.ts +1 -1
- package/dist/plugins/organization/organization-plugin.d.ts +3 -3
- package/dist/plugins/passkey/passkey-plugin.d.ts +1 -1
- package/dist/plugins/theme/theme-plugin.d.ts +1 -1
- package/dist/plugins/username/username-plugin.d.ts +1 -1
- package/dist/plugins.d.ts +28 -28
- package/dist/plugins.js +360 -28
- package/package.json +2 -2
- package/dist/config/additional-fields-config.js +0 -39
- package/dist/config/auth-config.js +0 -34
- package/dist/config/avatar-config.js +0 -1
- package/dist/config/email-and-password-config.js +0 -1
- package/dist/config/index.js +0 -4
- package/dist/lib/auth-mutation-keys.js +0 -70
- package/dist/lib/auth-plugin.js +0 -1
- package/dist/lib/auth-query-keys.js +0 -42
- package/dist/lib/base-paths.js +0 -5
- package/dist/lib/create-auth-plugin.js +0 -23
- package/dist/lib/deep-partial.js +0 -1
- package/dist/lib/localization.js +0 -150
- package/dist/lib/provider-names.js +0 -50
- package/dist/lib/utils.js +0 -116
- package/dist/lib/view-paths.js +0 -13
- package/dist/plugins/api-key/api-key-localization.js +0 -24
- package/dist/plugins/api-key/api-key-mutation-keys.js +0 -11
- package/dist/plugins/api-key/api-key-plugin.js +0 -6
- package/dist/plugins/api-key/api-key-query-keys.js +0 -7
- package/dist/plugins/delete-user/delete-user-localization.js +0 -10
- package/dist/plugins/delete-user/delete-user-mutation-keys.js +0 -7
- package/dist/plugins/delete-user/delete-user-plugin.js +0 -6
- package/dist/plugins/magic-link/magic-link-localization.js +0 -8
- package/dist/plugins/magic-link/magic-link-mutation-keys.js +0 -17
- package/dist/plugins/magic-link/magic-link-plugin.js +0 -8
- package/dist/plugins/multi-session/multi-session-localization.js +0 -10
- package/dist/plugins/multi-session/multi-session-mutation-keys.js +0 -11
- package/dist/plugins/multi-session/multi-session-plugin.js +0 -5
- package/dist/plugins/multi-session/multi-session-query-keys.js +0 -7
- package/dist/plugins/organization/organization-localization.js +0 -114
- package/dist/plugins/organization/organization-mutation-keys.js +0 -40
- package/dist/plugins/organization/organization-plugin.js +0 -35
- package/dist/plugins/organization/organization-query-keys.js +0 -54
- package/dist/plugins/organization/organization-view-paths.js +0 -1
- package/dist/plugins/passkey/passkey-localization.js +0 -20
- package/dist/plugins/passkey/passkey-mutation-keys.js +0 -15
- package/dist/plugins/passkey/passkey-plugin.js +0 -5
- package/dist/plugins/passkey/passkey-query-keys.js +0 -7
- package/dist/plugins/theme/theme-localization.js +0 -12
- package/dist/plugins/theme/theme-plugin.js +0 -8
- package/dist/plugins/username/username-localization.js +0 -16
- package/dist/plugins/username/username-mutation-keys.js +0 -17
- package/dist/plugins/username/username-plugin.js +0 -36
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
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
|
*
|
package/dist/config/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
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
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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 };
|
package/dist/lib/utils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
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 {
|
|
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,6 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
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 {
|
package/dist/plugins.d.ts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
16
|
-
export * from
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
22
|
-
export * from
|
|
23
|
-
export * from
|
|
24
|
-
export * from
|
|
25
|
-
export * from
|
|
26
|
-
export * from
|
|
27
|
-
export * from
|
|
28
|
-
export * from
|
|
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';
|