@atproto/oauth-types
Advanced tools
Comparing version 0.1.0 to 0.1.1
# @atproto/oauth-types | ||
## 0.1.1 | ||
### Patch Changes | ||
- [#2633](https://github.com/bluesky-social/atproto/pull/2633) [`acc9093d2`](https://github.com/bluesky-social/atproto/commit/acc9093d2845eba02b68fb2f9db33e4f1b59bb10) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Add client_id_metadata_document_supported in metadata | ||
- Updated dependencies [[`acc9093d2`](https://github.com/bluesky-social/atproto/commit/acc9093d2845eba02b68fb2f9db33e4f1b59bb10)]: | ||
- @atproto/jwk@0.1.1 | ||
## 0.1.0 | ||
@@ -4,0 +13,0 @@ |
@@ -47,2 +47,3 @@ import { z } from 'zod'; | ||
protected_resources: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; | ||
client_id_metadata_document_supported: z.ZodOptional<z.ZodBoolean>; | ||
}, "strip", z.ZodTypeAny, { | ||
@@ -90,2 +91,3 @@ issuer: string; | ||
protected_resources?: string[] | undefined; | ||
client_id_metadata_document_supported?: boolean | undefined; | ||
}, { | ||
@@ -133,2 +135,3 @@ issuer: string; | ||
protected_resources?: string[] | undefined; | ||
client_id_metadata_document_supported?: boolean | undefined; | ||
}>; | ||
@@ -178,2 +181,3 @@ export type OAuthAuthorizationServerMetadata = z.infer<typeof oauthAuthorizationServerMetadataSchema>; | ||
protected_resources: z.ZodOptional<z.ZodArray<z.ZodString, "many">>; | ||
client_id_metadata_document_supported: z.ZodOptional<z.ZodBoolean>; | ||
}, "strip", z.ZodTypeAny, { | ||
@@ -221,2 +225,3 @@ issuer: string; | ||
protected_resources?: string[] | undefined; | ||
client_id_metadata_document_supported?: boolean | undefined; | ||
}, { | ||
@@ -264,2 +269,3 @@ issuer: string; | ||
protected_resources?: string[] | undefined; | ||
client_id_metadata_document_supported?: boolean | undefined; | ||
}>, { | ||
@@ -307,2 +313,3 @@ issuer: string; | ||
protected_resources?: string[] | undefined; | ||
client_id_metadata_document_supported?: boolean | undefined; | ||
}, { | ||
@@ -350,2 +357,3 @@ issuer: string; | ||
protected_resources?: string[] | undefined; | ||
client_id_metadata_document_supported?: boolean | undefined; | ||
}>, { | ||
@@ -393,2 +401,3 @@ issuer: string; | ||
protected_resources?: string[] | undefined; | ||
client_id_metadata_document_supported?: boolean | undefined; | ||
}, { | ||
@@ -436,3 +445,4 @@ issuer: string; | ||
protected_resources?: string[] | undefined; | ||
client_id_metadata_document_supported?: boolean | undefined; | ||
}>; | ||
//# sourceMappingURL=oauth-authorization-server-metadata.d.ts.map |
@@ -67,2 +67,4 @@ "use strict"; | ||
protected_resources: zod_1.z.array(zod_1.z.string().url()).optional(), | ||
// https://drafts.aaronpk.com/draft-parecki-oauth-client-id-metadata-document/draft-parecki-oauth-client-id-metadata-document.html | ||
client_id_metadata_document_supported: zod_1.z.boolean().optional(), | ||
}); | ||
@@ -69,0 +71,0 @@ exports.oauthAuthorizationServerMetadataValidator = exports.oauthAuthorizationServerMetadataSchema |
{ | ||
"name": "@atproto/oauth-types", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"license": "MIT", | ||
@@ -29,3 +29,3 @@ "description": "OAuth typing & validation library", | ||
"zod": "^3.23.8", | ||
"@atproto/jwk": "0.1.0" | ||
"@atproto/jwk": "0.1.1" | ||
}, | ||
@@ -32,0 +32,0 @@ "devDependencies": { |
@@ -77,2 +77,5 @@ import { z } from 'zod' | ||
protected_resources: z.array(z.string().url()).optional(), | ||
// https://drafts.aaronpk.com/draft-parecki-oauth-client-id-metadata-document/draft-parecki-oauth-client-id-metadata-document.html | ||
client_id_metadata_document_supported: z.boolean().optional(), | ||
}) | ||
@@ -79,0 +82,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
233045
4160
+ Added@atproto/jwk@0.1.1(transitive)
- Removed@atproto/jwk@0.1.0(transitive)
Updated@atproto/jwk@0.1.1