@supernova-studio/model 1.54.0 → 1.55.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.d.mts +49 -46
- package/dist/index.d.ts +49 -46
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -30,12 +30,13 @@ var PluginOAuthRequestSchema = z2.object({
|
|
|
30
30
|
// src/auth/request.ts
|
|
31
31
|
import { z as z3 } from "zod";
|
|
32
32
|
var AuthV2Request = z3.object({
|
|
33
|
-
code: z3.string().optional(),
|
|
34
33
|
state: z3.string(),
|
|
35
34
|
codeChallenge: z3.string(),
|
|
36
35
|
codeChallengeMethod: z3.string(),
|
|
37
36
|
redirectUri: z3.string(),
|
|
38
|
-
sessionId: z3.string()
|
|
37
|
+
sessionId: z3.string(),
|
|
38
|
+
code: z3.string().optional(),
|
|
39
|
+
codeVerifier: z3.string().optional()
|
|
39
40
|
});
|
|
40
41
|
|
|
41
42
|
// src/auth/session.ts
|
|
@@ -5262,7 +5263,7 @@ var UserTest = z142.object({
|
|
|
5262
5263
|
|
|
5263
5264
|
// src/users/user.ts
|
|
5264
5265
|
import { z as z143 } from "zod";
|
|
5265
|
-
var UserSource = z143.enum(["SignUp", "Invite", "SSO"]);
|
|
5266
|
+
var UserSource = z143.enum(["SignUp", "Invite", "SSO", "Google"]);
|
|
5266
5267
|
var UserEmailSettings = z143.object({
|
|
5267
5268
|
marketingEmails: z143.boolean()
|
|
5268
5269
|
});
|