@supernova-studio/client 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.js CHANGED
@@ -246,12 +246,13 @@ var PluginOAuthRequestSchema = _zod.z.object({
246
246
  createdAt: _zod.z.coerce.date()
247
247
  });
248
248
  var AuthV2Request = _zod.z.object({
249
- code: _zod.z.string().optional(),
250
249
  state: _zod.z.string(),
251
250
  codeChallenge: _zod.z.string(),
252
251
  codeChallengeMethod: _zod.z.string(),
253
252
  redirectUri: _zod.z.string(),
254
- sessionId: _zod.z.string()
253
+ sessionId: _zod.z.string(),
254
+ code: _zod.z.string().optional(),
255
+ codeVerifier: _zod.z.string().optional()
255
256
  });
256
257
  var AuthV2Session = _zod.z.object({
257
258
  id: _zod.z.string(),
@@ -351,6 +352,7 @@ var FeaturesSummary = _zod.z.object({
351
352
  forgeActiveDocumentsPerProject: featureLimitedSchema,
352
353
  forgePrivateProjects: featureToggleSchema,
353
354
  forgeActiveProjectContexts: featureLimitedSchema,
355
+ documentationPages: featureLimitedSchema,
354
356
  sandboxTemplates: featureToggleSchema
355
357
  });
356
358
  var InvoiceSchema = _zod.z.object({
@@ -4625,7 +4627,7 @@ var UserTest = _zod.z.object({
4625
4627
  id: _zod.z.string(),
4626
4628
  email: _zod.z.string()
4627
4629
  });
4628
- var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO"]);
4630
+ var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO", "Google"]);
4629
4631
  var UserEmailSettings = _zod.z.object({
4630
4632
  marketingEmails: _zod.z.boolean()
4631
4633
  });