Skip to content

Commit 1b13b57

Browse files
committed
Update auth.ts
1 parent 95bbd60 commit 1b13b57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/lib/auth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ import { z } from "zod";
44

55
export const OAuthMetadataSchema = z.object({
66
authorization_endpoint: z.string(),
7-
token_endpoint: z.string()
7+
token_endpoint: z.string(),
88
});
99

1010
export type OAuthMetadata = z.infer<typeof OAuthMetadataSchema>;
1111

1212
export const OAuthTokensSchema = z.object({
1313
access_token: z.string(),
1414
refresh_token: z.string().optional(),
15-
expires_in: z.number().optional()
15+
expires_in: z.number().optional(),
1616
});
1717

1818
export type OAuthTokens = z.infer<typeof OAuthTokensSchema>;

0 commit comments

Comments
 (0)