-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathidentity.zod.ts
More file actions
338 lines (277 loc) · 7.85 KB
/
identity.zod.ts
File metadata and controls
338 lines (277 loc) · 7.85 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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
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
*/
import { lazySchema } from '../shared/lazy-schema';
export const UserSchema = lazySchema(() => 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 = lazySchema(() => 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 = lazySchema(() => 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 = lazySchema(() => 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>;
/**
* API Key Schema
*
* Aligns with better-auth's API key plugin capabilities.
* Provides programmatic access to ObjectStack APIs (CI/CD, service-to-service, CLI).
*
* @see https://www.better-auth.com/docs/plugins/api-key
*/
export const ApiKeySchema = lazySchema(() => z.object({
/**
* Unique API key identifier
*/
id: z.string().describe('API key identifier'),
/**
* Human-readable name for the key
*/
name: z.string().describe('API key display name'),
/**
* Key prefix (visible portion for identification, e.g., "os_pk_ab")
*/
start: z.string().optional().describe('Key prefix for identification'),
/**
* Custom prefix for the key (e.g., "os_pk_")
*/
prefix: z.string().optional().describe('Custom key prefix'),
/**
* User ID of the key owner
*/
userId: z.string().describe('Owner user ID'),
/**
* Organization ID the key is scoped to (optional)
*/
organizationId: z.string().optional().describe('Scoped organization ID'),
/**
* Key expiration timestamp (null = never expires)
*/
expiresAt: z.string().datetime().optional().describe('Expiration timestamp'),
/**
* Creation timestamp
*/
createdAt: z.string().datetime().describe('Creation timestamp'),
/**
* Last update timestamp
*/
updatedAt: z.string().datetime().describe('Last update timestamp'),
/**
* Last used timestamp
*/
lastUsedAt: z.string().datetime().optional().describe('Last used timestamp'),
/**
* Last refetch timestamp (for cached permission checks)
*/
lastRefetchAt: z.string().datetime().optional().describe('Last refetch timestamp'),
/**
* Whether this key is enabled
*/
enabled: z.boolean().default(true).describe('Whether the key is active'),
/**
* Rate limiting: enabled flag
*/
rateLimitEnabled: z.boolean().optional().describe('Whether rate limiting is enabled'),
/**
* Rate limiting: time window in milliseconds
*/
rateLimitTimeWindow: z.number().int().min(0).optional().describe('Rate limit window (ms)'),
/**
* Rate limiting: max requests per window
*/
rateLimitMax: z.number().int().min(0).optional().describe('Max requests per window'),
/**
* Rate limiting: remaining requests in current window
*/
remaining: z.number().int().min(0).optional().describe('Remaining requests'),
/**
* Permissions assigned to this key (granular access control)
*/
permissions: z.record(z.string(), z.boolean()).optional()
.describe('Granular permission flags'),
/**
* Scopes assigned to this key (high-level access categories)
*/
scopes: z.array(z.string()).optional()
.describe('High-level access scopes'),
/**
* Custom metadata
*/
metadata: z.record(z.string(), z.unknown()).optional().describe('Custom metadata'),
}));
export type ApiKey = z.infer<typeof ApiKeySchema>;