@avallon-labs/mcp 33.1.0-staging.853 → 34.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -5681,8 +5681,10 @@ var SignInBody = zod.union([
|
|
|
5681
5681
|
}),
|
|
5682
5682
|
zod.object({
|
|
5683
5683
|
type: zod.literal("oauth"),
|
|
5684
|
-
code: zod.string(),
|
|
5685
|
-
verifier: zod.string()
|
|
5684
|
+
code: zod.string().min(1),
|
|
5685
|
+
verifier: zod.string().min(1).optional().describe(
|
|
5686
|
+
"PKCE verifier. Required only when the flow was started with a code_challenge."
|
|
5687
|
+
),
|
|
5686
5688
|
provider: zod.enum(["google", "microsoft", "sso"]).optional()
|
|
5687
5689
|
}),
|
|
5688
5690
|
zod.object({
|
|
@@ -5709,8 +5711,12 @@ var RefreshTokenResponse = zod.object({
|
|
|
5709
5711
|
var GetOAuthUrlQueryParams = zod.object({
|
|
5710
5712
|
provider: zod.enum(["google", "microsoft", "sso"]),
|
|
5711
5713
|
redirect_uri: zod.string().url(),
|
|
5712
|
-
code_challenge_method: zod.enum(["plain", "s256"])
|
|
5713
|
-
|
|
5714
|
+
code_challenge_method: zod.enum(["plain", "s256"]).optional().describe(
|
|
5715
|
+
"How code_challenge was derived. Required whenever code_challenge is sent."
|
|
5716
|
+
),
|
|
5717
|
+
code_challenge: zod.string().min(1).optional().describe(
|
|
5718
|
+
"PKCE challenge derived from a verifier you keep until sign-in. Omit, together with code_challenge_method, to run the flow without PKCE."
|
|
5719
|
+
),
|
|
5714
5720
|
email: zod.string().email().optional()
|
|
5715
5721
|
});
|
|
5716
5722
|
var GetOAuthUrlResponse = zod.object({
|
|
@@ -8871,4 +8877,4 @@ var transport = new StdioServerTransport();
|
|
|
8871
8877
|
server.connect(transport).then(() => {
|
|
8872
8878
|
console.error("MCP server running on stdio");
|
|
8873
8879
|
}).catch(console.error);
|
|
8874
|
-
//# sourceMappingURL=server-
|
|
8880
|
+
//# sourceMappingURL=server-6E7KTMB7.js.map
|