Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 157x 157x 157x | /**
* OAuth Types
*
* Types and Zod schemas for OAuth authentication flow (RFC 8628).
*/
import { z } from "zod";
// Device Code Response (Step 1 of Device Flow)
export const DeviceCodeResponseSchema = z
.object({
device_code: z.string(),
user_code: z.string(),
verification_uri: z.string(),
verification_uri_complete: z.string().optional(),
expires_in: z.number(),
interval: z.number(),
})
.passthrough();
export type DeviceCodeResponse = z.infer<typeof DeviceCodeResponseSchema>;
// Token Response (Successful authorization)
export const TokenResponseSchema = z
.object({
access_token: z.string(),
token_type: z.string(),
expires_in: z.number(),
expires_at: z.string().optional(),
refresh_token: z.string().optional(),
scope: z.string().optional(),
user: z
.object({
id: z.string(),
name: z.string().nullable(),
email: z.string().nullable(),
})
.passthrough()
.optional(),
})
.passthrough();
export type TokenResponse = z.infer<typeof TokenResponseSchema>;
// Token Error Response (OAuth error during polling)
export const TokenErrorResponseSchema = z
.object({
error: z.string(),
error_description: z.string().optional(),
})
.passthrough();
export type TokenErrorResponse = z.infer<typeof TokenErrorResponseSchema>;
|