Skip to content

Commit 141f3f5

Browse files
committed
Don't need full OAuth client metadata in response
1 parent 8bff256 commit 141f3f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export const OAuthClientInformationSchema = z.object({
7171
client_secret: z.string().optional(),
7272
client_id_issued_at: z.number().optional(),
7373
client_secret_expires_at: z.number().optional(),
74-
}).merge(OAuthClientMetadataSchema);
74+
}).passthrough();
7575

7676
export type OAuthMetadata = z.infer<typeof OAuthMetadataSchema>;
7777
export type OAuthTokens = z.infer<typeof OAuthTokensSchema>;

0 commit comments

Comments
 (0)