1+ {
2+ "name" : " Identites" ,
3+ "description" : " Manage identities and identity data for users." ,
4+ "icon" : " key" ,
5+ "tags" : [
6+ " core" ,
7+ " user" ,
8+ " auth"
9+ ],
10+ "authors" : [
11+ " rivet-gg" ,
12+ " Blckbrry-Pi"
13+ ],
14+ "status" : " beta" ,
15+ "dependencies" : {
16+ "rate_limit" : {},
17+ "users" : {},
18+ "tokens" : {}
19+ },
20+ "scripts" : {
21+ "list" : {
22+ "name" : " List Identities" ,
23+ "description" : " List all identities the user is associated with." ,
24+ "public" : true
25+ },
26+ "get" : {
27+ "name" : " Get Identity Data" ,
28+ "description" : " Get the data associated with a specific identity for a user."
29+ },
30+ "set" : {
31+ "name" : " Set Identity Data" ,
32+ "description" : " Set the data associated with a specific identity for a user."
33+ },
34+
35+ "sign_in" : {
36+ "name" : " Sign In With Identity" ,
37+ "description" : " Sign in to a user with an identity."
38+ },
39+ "sign_up" : {
40+ "name" : " Sign Up With Identity" ,
41+ "description" : " Sign up with an identity. Creates a new user."
42+ },
43+ "sign_in_or_sign_up" : {
44+ "name" : " Sign In or Sign Up With Identity" ,
45+ "description" : " Sign in to a user with an identity, creating a new user if it fails."
46+ },
47+ "link" : {
48+ "name" : " Link Identity To User" ,
49+ "description" : " Link a new identity and its associated data to a user. This is used for login and non-login identites."
50+ }
51+ },
52+ "routes" : {},
53+ "errors" : {
54+ "identity_provider_not_found" : {
55+ "name" : " Identity Provider Not Found"
56+ },
57+ "identity_provider_already_added" : {
58+ "name" : " Identity Provider Already Added To User"
59+ },
60+ "identity_provider_already_used" : {
61+ "name" : " Identity Provider Already Used By Other User"
62+ }
63+ }
64+ }
0 commit comments