|
1 | 1 | { |
2 | | - "name": "Auth Email", |
3 | | - "description": "[INTERNAL-ONLY: use auth_email_password/auth_email_passwordless/auth_email_link.] Authenticating users with email only or an email/password combination.", |
4 | | - "icon": "key", |
5 | | - "tags": [ |
6 | | - "core", |
7 | | - "auth", |
8 | | - "user" |
9 | | - ], |
10 | | - "authors": [ |
11 | | - "rivet-gg", |
12 | | - "NathanFlurry", |
13 | | - "Blckbrry-Pi" |
14 | | - ], |
15 | | - "status": "stable", |
16 | | - "dependencies": { |
17 | | - "email": {}, |
18 | | - "identities": {}, |
19 | | - "users": {}, |
20 | | - "tokens": {}, |
21 | | - "user_passwords": {}, |
22 | | - "rate_limit": {} |
23 | | - }, |
24 | | - "defaultConfig": { |
25 | | - "fromEmail": "hello@test.com", |
26 | | - "fromName": "Authentication Code" |
27 | | - }, |
28 | | - "scripts": { |
29 | | - "send_verification": { |
30 | | - "name": "Send Email Verification (No Password)", |
31 | | - "description": "Send a one-time verification code to an email address to verify ownership. Does not require a password." |
32 | | - }, |
33 | | - "verify_add_no_pass": { |
34 | | - "name": "Verify and Add Email to Existing User (No Password)", |
35 | | - "description": "Verify a user's email address and register it with an existing account. Does not require a password." |
36 | | - }, |
37 | | - "verify_login_or_create_no_pass": { |
38 | | - "name": "Verify and Login as (or Create) User (No Password)", |
39 | | - "description": "Verify the email address code and return a userToken to AN account (creates a new account if one doesn't exist). Does not require a password." |
40 | | - }, |
41 | | - "verify_link_email": { |
42 | | - "name": "Verify and Link Email Address to User", |
43 | | - "description": "Verify a user's email address and link it to an existing account without allowing login passwordless." |
44 | | - }, |
45 | | - |
46 | | - "verify_sign_up_email_pass": { |
47 | | - "name": "Verify and Sign Up with Email and Password", |
48 | | - "description": "Sign up a new user with an email and password." |
49 | | - }, |
50 | | - "sign_in_email_pass": { |
51 | | - "name": "Sign In with Email and Password", |
52 | | - "description": "Sign in a user with an email and password." |
53 | | - }, |
54 | | - "verify_add_email_pass": { |
55 | | - "name": "Verify and Add Email and Password to existing user", |
56 | | - "description": "Verify a user's email address and register it with an existing account. Requires a password." |
57 | | - } |
58 | | - }, |
59 | | - "errors": { |
60 | | - "verification_code_invalid": { |
61 | | - "name": "Verification Code Invalid" |
62 | | - }, |
63 | | - "verification_code_attempt_limit": { |
64 | | - "name": "Verification Code Attempt Limit" |
65 | | - }, |
66 | | - "verification_code_expired": { |
67 | | - "name": "Verification Code Expired" |
68 | | - }, |
69 | | - "verification_code_already_used": { |
70 | | - "name": "Verification Code Already Used" |
71 | | - }, |
72 | | - "email_already_used": { |
73 | | - "name": "Email Already Used" |
74 | | - } |
75 | | - }, |
| 2 | + "name": "Auth Email", |
| 3 | + "description": "[INTERNAL-ONLY: use auth_email_password/auth_email_passwordless/auth_email_link.] Authenticating users with email only or an email/password combination.", |
| 4 | + "icon": "key", |
| 5 | + "tags": [ |
| 6 | + "core", |
| 7 | + "auth", |
| 8 | + "user" |
| 9 | + ], |
| 10 | + "authors": [ |
| 11 | + "rivet-gg", |
| 12 | + "NathanFlurry", |
| 13 | + "Blckbrry-Pi" |
| 14 | + ], |
| 15 | + "status": "stable", |
| 16 | + "dependencies": { |
| 17 | + "email": {}, |
| 18 | + "identities": {}, |
| 19 | + "users": {}, |
| 20 | + "tokens": {}, |
| 21 | + "user_passwords": {}, |
| 22 | + "rate_limit": {} |
| 23 | + }, |
| 24 | + "defaultConfig": { |
| 25 | + "fromEmail": "hello@test.com", |
| 26 | + "fromName": "Authentication Code" |
| 27 | + }, |
| 28 | + "scripts": { |
| 29 | + "send_verification": { |
| 30 | + "name": "Send Email Verification (No Password)", |
| 31 | + "description": "Send a one-time verification code to an email address to verify ownership. Does not require a password." |
| 32 | + }, |
| 33 | + "verify_add_no_pass": { |
| 34 | + "name": "Verify and Add Email to Existing User (No Password)", |
| 35 | + "description": "Verify a user's email address and register it with an existing account. Does not require a password." |
| 36 | + }, |
| 37 | + "verify_login_or_create_no_pass": { |
| 38 | + "name": "Verify and Login as (or Create) User (No Password)", |
| 39 | + "description": "Verify the email address code and return a userToken to AN account (creates a new account if one doesn't exist). Does not require a password." |
| 40 | + }, |
| 41 | + "verify_link_email": { |
| 42 | + "name": "Verify and Link Email Address to User", |
| 43 | + "description": "Verify a user's email address and link it to an existing account without allowing login passwordless." |
| 44 | + }, |
| 45 | + "verify_sign_up_email_pass": { |
| 46 | + "name": "Verify and Sign Up with Email and Password", |
| 47 | + "description": "Sign up a new user with an email and password." |
| 48 | + }, |
| 49 | + "sign_in_email_pass": { |
| 50 | + "name": "Sign In with Email and Password", |
| 51 | + "description": "Sign in a user with an email and password." |
| 52 | + }, |
| 53 | + "verify_add_email_pass": { |
| 54 | + "name": "Verify and Add Email and Password to existing user", |
| 55 | + "description": "Verify a user's email address and register it with an existing account. Requires a password." |
| 56 | + } |
| 57 | + }, |
| 58 | + "errors": { |
| 59 | + "verification_code_invalid": { |
| 60 | + "name": "Verification Code Invalid" |
| 61 | + }, |
| 62 | + "verification_code_attempt_limit": { |
| 63 | + "name": "Verification Code Attempt Limit" |
| 64 | + }, |
| 65 | + "verification_code_expired": { |
| 66 | + "name": "Verification Code Expired" |
| 67 | + }, |
| 68 | + "verification_code_already_used": { |
| 69 | + "name": "Verification Code Already Used" |
| 70 | + }, |
| 71 | + "email_already_used": { |
| 72 | + "name": "Email Already Used" |
| 73 | + } |
| 74 | + }, |
76 | 75 | "enableConfig": { |
77 | 76 | "enable": true |
78 | 77 | } |
|
0 commit comments