@supernova-studio/model 1.53.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.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
@@ -160,6 +161,7 @@ var FeaturesSummary = z7.object({
160
161
  forgeActiveDocumentsPerProject: featureLimitedSchema,
161
162
  forgePrivateProjects: featureToggleSchema,
162
163
  forgeActiveProjectContexts: featureLimitedSchema,
164
+ documentationPages: featureLimitedSchema,
163
165
  sandboxTemplates: featureToggleSchema
164
166
  });
165
167
 
@@ -5261,7 +5263,7 @@ var UserTest = z142.object({
5261
5263
 
5262
5264
  // src/users/user.ts
5263
5265
  import { z as z143 } from "zod";
5264
- var UserSource = z143.enum(["SignUp", "Invite", "SSO"]);
5266
+ var UserSource = z143.enum(["SignUp", "Invite", "SSO", "Google"]);
5265
5267
  var UserEmailSettings = z143.object({
5266
5268
  marketingEmails: z143.boolean()
5267
5269
  });