We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95bbd60 commit 1b13b57Copy full SHA for 1b13b57
client/src/lib/auth.ts
@@ -4,15 +4,15 @@ import { z } from "zod";
4
5
export const OAuthMetadataSchema = z.object({
6
authorization_endpoint: z.string(),
7
- token_endpoint: z.string()
+ token_endpoint: z.string(),
8
});
9
10
export type OAuthMetadata = z.infer<typeof OAuthMetadataSchema>;
11
12
export const OAuthTokensSchema = z.object({
13
access_token: z.string(),
14
refresh_token: z.string().optional(),
15
- expires_in: z.number().optional()
+ expires_in: z.number().optional(),
16
17
18
export type OAuthTokens = z.infer<typeof OAuthTokensSchema>;
0 commit comments