@supernova-studio/client 1.61.0 → 1.62.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 +250 -116
- package/dist/index.d.ts +250 -116
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -354,6 +354,8 @@ var FeaturesSummary = z7.object({
|
|
|
354
354
|
forgeActiveDocumentsPerProject: featureLimitedSchema,
|
|
355
355
|
forgePrivateProjects: featureToggleSchema,
|
|
356
356
|
forgeActiveProjectContexts: featureLimitedSchema,
|
|
357
|
+
forgeFeatureWorkspacePublishing: featureToggleSchema,
|
|
358
|
+
forgeFeatureHideSupernovaUI: featureToggleSchema,
|
|
357
359
|
documentationPages: featureLimitedSchema,
|
|
358
360
|
sandboxTemplates: featureToggleSchema
|
|
359
361
|
});
|
|
@@ -4758,7 +4760,6 @@ var ProjectFeatureStatus = z151.enum(["Draft", "ReadyForDevelopment"]);
|
|
|
4758
4760
|
var FeaturePublishedStateVisibility = z151.enum(["Public", "WorkspaceMembers"]);
|
|
4759
4761
|
var FeaturePublishedState = z151.object({
|
|
4760
4762
|
userId: z151.string().optional(),
|
|
4761
|
-
userName: z151.string().optional(),
|
|
4762
4763
|
lastPublishedAt: z151.coerce.date(),
|
|
4763
4764
|
iterationId: z151.string().nullable(),
|
|
4764
4765
|
hideSupernovaUI: z151.boolean(),
|
|
@@ -11461,14 +11462,14 @@ var DTOTrailEventProjectCreatedPayload = z347.object({
|
|
|
11461
11462
|
var DTOTrailEventFeaturePublishedPayload = z347.object({
|
|
11462
11463
|
featureId: z347.string().uuid(),
|
|
11463
11464
|
featureName: z347.string(),
|
|
11464
|
-
iterationId: z347.string().uuid(),
|
|
11465
|
-
iterationName: z347.string()
|
|
11465
|
+
iterationId: z347.string().uuid().nullish(),
|
|
11466
|
+
iterationName: z347.string().nullish()
|
|
11466
11467
|
});
|
|
11467
11468
|
var DTOTrailEventFeatureUnpublishedPayload = z347.object({
|
|
11468
11469
|
featureId: z347.string().uuid(),
|
|
11469
11470
|
featureName: z347.string(),
|
|
11470
|
-
iterationId: z347.string().uuid(),
|
|
11471
|
-
iterationName: z347.string()
|
|
11471
|
+
iterationId: z347.string().uuid().nullish(),
|
|
11472
|
+
iterationName: z347.string().nullish()
|
|
11472
11473
|
});
|
|
11473
11474
|
var DTOTrailEventProjectArchivedPayload = z347.object({
|
|
11474
11475
|
name: z347.string()
|