@avallon-labs/mcp 27.12.0-staging.804 → 28.0.0-staging.806
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
|
@@ -5487,7 +5487,9 @@ var SignUpBody = zod.object({
|
|
|
5487
5487
|
email: zod.string().email(),
|
|
5488
5488
|
password: zod.string()
|
|
5489
5489
|
});
|
|
5490
|
-
var SignUpResponse = zod.object({
|
|
5490
|
+
var SignUpResponse = zod.object({
|
|
5491
|
+
pending_authentication_token: zod.string().optional()
|
|
5492
|
+
});
|
|
5491
5493
|
var SignInBody = zod.union([
|
|
5492
5494
|
zod.object({
|
|
5493
5495
|
type: zod.literal("password"),
|
|
@@ -5497,12 +5499,14 @@ var SignInBody = zod.union([
|
|
|
5497
5499
|
zod.object({
|
|
5498
5500
|
type: zod.literal("oauth"),
|
|
5499
5501
|
code: zod.string(),
|
|
5500
|
-
verifier: zod.string()
|
|
5502
|
+
verifier: zod.string(),
|
|
5503
|
+
provider: zod.enum(["google", "microsoft"]).optional()
|
|
5501
5504
|
}),
|
|
5502
5505
|
zod.object({
|
|
5503
5506
|
type: zod.literal("email_otp"),
|
|
5504
5507
|
email: zod.string().email(),
|
|
5505
|
-
token: zod.string().min(1)
|
|
5508
|
+
token: zod.string().min(1),
|
|
5509
|
+
pending_authentication_token: zod.string().min(1).optional()
|
|
5506
5510
|
})
|
|
5507
5511
|
]);
|
|
5508
5512
|
var SignInResponse = zod.object({
|
|
@@ -8394,4 +8398,4 @@ var transport = new StdioServerTransport();
|
|
|
8394
8398
|
server.connect(transport).then(() => {
|
|
8395
8399
|
console.error("MCP server running on stdio");
|
|
8396
8400
|
}).catch(console.error);
|
|
8397
|
-
//# sourceMappingURL=server-
|
|
8401
|
+
//# sourceMappingURL=server-3QDSMEKR.js.map
|