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 3b4f0ee commit a947448Copy full SHA for a947448
1 file changed
shared/schemas/oauth.ts
@@ -1,5 +1,4 @@
1
import { object, string, pipe, url, array, minLength, boolean } from 'valibot'
2
-import type { InferOutput } from 'valibot'
3
4
export const OAuthMetadataSchema = object({
5
client_id: pipe(string(), url()),
@@ -12,5 +11,3 @@ export const OAuthMetadataSchema = object({
12
11
token_endpoint_auth_method: string(),
13
dpop_bound_access_tokens: boolean(),
14
})
15
-
16
-export type OAuthMetadata = InferOutput<typeof OAuthMetadataSchema>
0 commit comments