Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@atproto/oauth-types

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atproto/oauth-types - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

9

CHANGELOG.md
# @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

2

dist/oauth-authorization-server-metadata.js

@@ -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

4

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc