@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.d.mts +262 -181
- package/dist/index.d.ts +262 -181
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -246,12 +246,13 @@ var PluginOAuthRequestSchema = z2.object({
|
|
|
246
246
|
createdAt: z2.coerce.date()
|
|
247
247
|
});
|
|
248
248
|
var AuthV2Request = z3.object({
|
|
249
|
-
code: z3.string().optional(),
|
|
250
249
|
state: z3.string(),
|
|
251
250
|
codeChallenge: z3.string(),
|
|
252
251
|
codeChallengeMethod: z3.string(),
|
|
253
252
|
redirectUri: z3.string(),
|
|
254
|
-
sessionId: z3.string()
|
|
253
|
+
sessionId: z3.string(),
|
|
254
|
+
code: z3.string().optional(),
|
|
255
|
+
codeVerifier: z3.string().optional()
|
|
255
256
|
});
|
|
256
257
|
var AuthV2Session = z4.object({
|
|
257
258
|
id: z4.string(),
|
|
@@ -351,6 +352,7 @@ var FeaturesSummary = z7.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 = z8.object({
|
|
@@ -4625,7 +4627,7 @@ var UserTest = z142.object({
|
|
|
4625
4627
|
id: z142.string(),
|
|
4626
4628
|
email: z142.string()
|
|
4627
4629
|
});
|
|
4628
|
-
var UserSource = z143.enum(["SignUp", "Invite", "SSO"]);
|
|
4630
|
+
var UserSource = z143.enum(["SignUp", "Invite", "SSO", "Google"]);
|
|
4629
4631
|
var UserEmailSettings = z143.object({
|
|
4630
4632
|
marketingEmails: z143.boolean()
|
|
4631
4633
|
});
|