authverse 1.1.7-beta.1 → 1.1.7
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/index.cjs
CHANGED
|
@@ -3446,7 +3446,7 @@ program.command("init").description("Select project template and configuration")
|
|
|
3446
3446
|
await initCmd(cmd);
|
|
3447
3447
|
}
|
|
3448
3448
|
});
|
|
3449
|
-
program.command("
|
|
3449
|
+
program.command("oauth <oauth>").description("Add a new authentication OAuth").action(async (oauth) => {
|
|
3450
3450
|
await Oauth({ oauth });
|
|
3451
3451
|
});
|
|
3452
3452
|
program.command("forget").description("Forget stored configurations").action(async () => {
|
package/dist/index.js
CHANGED
|
@@ -3396,7 +3396,7 @@ program.command("init").description("Select project template and configuration")
|
|
|
3396
3396
|
await initCmd(cmd);
|
|
3397
3397
|
}
|
|
3398
3398
|
});
|
|
3399
|
-
program.command("
|
|
3399
|
+
program.command("oauth <oauth>").description("Add a new authentication OAuth").action(async (oauth) => {
|
|
3400
3400
|
await Oauth({ oauth });
|
|
3401
3401
|
});
|
|
3402
3402
|
program.command("forget").description("Forget stored configurations").action(async () => {
|
|
@@ -16,13 +16,11 @@ const AppleOAuthButton = () => {
|
|
|
16
16
|
>
|
|
17
17
|
{/* Apple SVG Icon */}
|
|
18
18
|
<svg
|
|
19
|
-
|
|
20
|
-
height="20"
|
|
19
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
21
20
|
viewBox="0 0 24 24"
|
|
22
21
|
fill="currentColor"
|
|
23
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
24
22
|
>
|
|
25
|
-
<path d="
|
|
23
|
+
<path d="M16.365 1.43c0 1.14-.46 2.22-1.22 3.03-.8.84-2.1 1.49-3.2 1.4-.14-1.11.4-2.29 1.17-3.09.79-.83 2.14-1.44 3.25-1.34zM21.54 17.21c-.56 1.3-.83 1.88-1.55 3.02-1 1.56-2.4 3.5-4.13 3.52-1.54.02-1.94-1-4.03-.99-2.09.01-2.53 1.01-4.07.99-1.73-.02-3.05-1.78-4.05-3.34-2.8-4.33-3.09-9.4-1.36-12.02 1.23-1.86 3.18-2.96 5.02-2.96 1.87 0 3.05 1.03 4.6 1.03 1.5 0 2.42-1.03 4.59-1.03 1.64 0 3.38.9 4.61 2.44-4.05 2.22-3.39 8.01.37 9.34z" />
|
|
26
24
|
</svg>
|
|
27
25
|
|
|
28
26
|
<span>Sign in with Apple</span>
|
|
@@ -18,13 +18,11 @@ const AppleOAuthButton = () => {
|
|
|
18
18
|
>
|
|
19
19
|
{/* Apple SVG Icon */}
|
|
20
20
|
<svg
|
|
21
|
-
|
|
22
|
-
height="20"
|
|
21
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
23
22
|
viewBox="0 0 24 24"
|
|
24
23
|
fill="currentColor"
|
|
25
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
26
24
|
>
|
|
27
|
-
<path d="
|
|
25
|
+
<path d="M16.365 1.43c0 1.14-.46 2.22-1.22 3.03-.8.84-2.1 1.49-3.2 1.4-.14-1.11.4-2.29 1.17-3.09.79-.83 2.14-1.44 3.25-1.34zM21.54 17.21c-.56 1.3-.83 1.88-1.55 3.02-1 1.56-2.4 3.5-4.13 3.52-1.54.02-1.94-1-4.03-.99-2.09.01-2.53 1.01-4.07.99-1.73-.02-3.05-1.78-4.05-3.34-2.8-4.33-3.09-9.4-1.36-12.02 1.23-1.86 3.18-2.96 5.02-2.96 1.87 0 3.05 1.03 4.6 1.03 1.5 0 2.42-1.03 4.59-1.03 1.64 0 3.38.9 4.61 2.44-4.05 2.22-3.39 8.01.37 9.34z" />
|
|
28
26
|
</svg>
|
|
29
27
|
|
|
30
28
|
<span>Sign in with Apple</span>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "authverse",
|
|
3
|
-
"version": "1.1.7
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "Authverse Fast modern CLI to generate full auth systems with OAuth Prisma Drizzle better auth and ready-to-use ShadCN UI screens",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "git+https://github.com/abdirahmanmahamoud/authverse.git",
|