-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathidentity.zod.ts
More file actions
226 lines (186 loc) · 4.86 KB
/
identity.zod.ts
File metadata and controls
226 lines (186 loc) · 4.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
import { z } from 'zod';
/**
* Identity & User Model Specification
*
* Defines the standard user, account, and session data models for ObjectStack.
* These schemas represent "who is logged in" and their associated data.
*
* This is separate from authentication configuration (auth.zod.ts) which
* defines "how to login".
*/
/**
* User Schema
* Core user identity data model
*/
export const UserSchema = z.object({
/**
* Unique user identifier
*/
id: z.string().describe('Unique user identifier'),
/**
* User's email address (primary identifier)
*/
email: z.string().email().describe('User email address'),
/**
* Email verification status
*/
emailVerified: z.boolean().default(false).describe('Whether email is verified'),
/**
* User's display name
*/
name: z.string().optional().describe('User display name'),
/**
* User's profile image URL
*/
image: z.string().url().optional().describe('Profile image URL'),
/**
* Account creation timestamp
*/
createdAt: z.string().datetime().describe('Account creation timestamp'),
/**
* Last update timestamp
*/
updatedAt: z.string().datetime().describe('Last update timestamp'),
});
export type User = z.infer<typeof UserSchema>;
/**
* Account Schema
* Links external OAuth/OIDC/SAML accounts to a user
*/
export const AccountSchema = z.object({
/**
* Unique account identifier
*/
id: z.string().describe('Unique account identifier'),
/**
* Associated user ID
*/
userId: z.string().describe('Associated user ID'),
/**
* Account type/provider
*/
type: z.enum([
'oauth',
'oidc',
'email',
'credentials',
'saml',
'ldap',
]).describe('Account type'),
/**
* Provider name (e.g., 'google', 'github', 'okta')
*/
provider: z.string().describe('Provider name'),
/**
* Provider account ID
*/
providerAccountId: z.string().describe('Provider account ID'),
/**
* OAuth refresh token
*/
refreshToken: z.string().optional().describe('OAuth refresh token'),
/**
* OAuth access token
*/
accessToken: z.string().optional().describe('OAuth access token'),
/**
* Token expiry timestamp
*/
expiresAt: z.number().optional().describe('Token expiry timestamp (Unix)'),
/**
* OAuth token type
*/
tokenType: z.string().optional().describe('OAuth token type'),
/**
* OAuth scope
*/
scope: z.string().optional().describe('OAuth scope'),
/**
* OAuth ID token
*/
idToken: z.string().optional().describe('OAuth ID token'),
/**
* Session state
*/
sessionState: z.string().optional().describe('Session state'),
/**
* Account creation timestamp
*/
createdAt: z.string().datetime().describe('Account creation timestamp'),
/**
* Last update timestamp
*/
updatedAt: z.string().datetime().describe('Last update timestamp'),
});
export type Account = z.infer<typeof AccountSchema>;
/**
* Session Schema
* User session data model
*/
export const SessionSchema = z.object({
/**
* Unique session identifier
*/
id: z.string().describe('Unique session identifier'),
/**
* Session token
*/
sessionToken: z.string().describe('Session token'),
/**
* Associated user ID
*/
userId: z.string().describe('Associated user ID'),
/**
* Active organization ID for this session
* Used for context switching in multi-tenant applications
*/
activeOrganizationId: z.string().optional().describe('Active organization ID for context switching'),
/**
* Session expiry timestamp
*/
expires: z.string().datetime().describe('Session expiry timestamp'),
/**
* Session creation timestamp
*/
createdAt: z.string().datetime().describe('Session creation timestamp'),
/**
* Last update timestamp
*/
updatedAt: z.string().datetime().describe('Last update timestamp'),
/**
* IP address of the session
*/
ipAddress: z.string().optional().describe('IP address'),
/**
* User agent string
*/
userAgent: z.string().optional().describe('User agent string'),
/**
* Device fingerprint
*/
fingerprint: z.string().optional().describe('Device fingerprint'),
});
export type Session = z.infer<typeof SessionSchema>;
/**
* Verification Token Schema
* Email verification and password reset tokens
*/
export const VerificationTokenSchema = z.object({
/**
* Token identifier (email or phone)
*/
identifier: z.string().describe('Token identifier (email or phone)'),
/**
* Verification token
*/
token: z.string().describe('Verification token'),
/**
* Token expiry timestamp
*/
expires: z.string().datetime().describe('Token expiry timestamp'),
/**
* Token creation timestamp
*/
createdAt: z.string().datetime().describe('Token creation timestamp'),
});
export type VerificationToken = z.infer<typeof VerificationTokenSchema>;