@supernova-studio/client 1.60.3 → 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 +830 -160
- package/dist/index.d.ts +830 -160
- package/dist/index.js +20 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -11
- 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(),
|
|
@@ -7018,6 +7019,7 @@ var Variable = z235.object({
|
|
|
7018
7019
|
name: z235.string(),
|
|
7019
7020
|
key: z235.string(),
|
|
7020
7021
|
variableCollectionId: z235.string(),
|
|
7022
|
+
variableCollectionKey: z235.string().optional(),
|
|
7021
7023
|
resolvedType: ResolvedVariableType,
|
|
7022
7024
|
valuesByMode: z235.record(VariableValue),
|
|
7023
7025
|
remote: z235.boolean(),
|
|
@@ -7028,27 +7030,34 @@ var Variable = z235.object({
|
|
|
7028
7030
|
});
|
|
7029
7031
|
var VariableMode = z235.object({
|
|
7030
7032
|
modeId: z235.string(),
|
|
7031
|
-
name: z235.string()
|
|
7033
|
+
name: z235.string(),
|
|
7034
|
+
parentModeId: z235.string().optional()
|
|
7032
7035
|
});
|
|
7033
7036
|
var Collection2 = z235.object({
|
|
7034
7037
|
id: z235.string(),
|
|
7035
7038
|
name: z235.string(),
|
|
7039
|
+
key: z235.string().optional(),
|
|
7036
7040
|
modes: z235.array(VariableMode),
|
|
7037
7041
|
defaultModeId: z235.string(),
|
|
7038
7042
|
remote: z235.boolean(),
|
|
7039
|
-
hiddenFromPublishing: z235.boolean()
|
|
7043
|
+
hiddenFromPublishing: z235.boolean(),
|
|
7044
|
+
isExtension: z235.boolean().optional(),
|
|
7045
|
+
parentVariableCollectionId: z235.string().optional(),
|
|
7046
|
+
parentVariableCollectionKey: z235.string().optional(),
|
|
7047
|
+
variableOverrides: z235.record(z235.string(), z235.record(z235.string(), VariableValue)).optional()
|
|
7040
7048
|
});
|
|
7041
7049
|
var VariablesMapping = z235.object({
|
|
7042
7050
|
variableCollections: z235.array(z235.string()).min(1),
|
|
7051
|
+
variableCollectionKeys: z235.array(z235.string()).optional(),
|
|
7043
7052
|
variableMode: z235.string().min(1),
|
|
7044
7053
|
supernovaBrand: z235.string().min(1),
|
|
7045
|
-
supernovaTheme: z235.string().min(1).
|
|
7054
|
+
supernovaTheme: z235.string().min(1).nullable().optional()
|
|
7046
7055
|
});
|
|
7047
7056
|
var FormattedCollections = z235.object({
|
|
7048
|
-
variables: z235.record(z235.string(), Variable),
|
|
7049
7057
|
variableCollections: z235.record(z235.string(), Collection2),
|
|
7050
|
-
|
|
7051
|
-
variablesOrder: z235.string().array().optional()
|
|
7058
|
+
variables: z235.record(z235.string(), Variable),
|
|
7059
|
+
variablesOrder: z235.string().array().optional(),
|
|
7060
|
+
mappings: z235.array(VariablesMapping).optional()
|
|
7052
7061
|
});
|
|
7053
7062
|
|
|
7054
7063
|
// src/api/dto/design-systems/file.ts
|
|
@@ -11453,14 +11462,14 @@ var DTOTrailEventProjectCreatedPayload = z347.object({
|
|
|
11453
11462
|
var DTOTrailEventFeaturePublishedPayload = z347.object({
|
|
11454
11463
|
featureId: z347.string().uuid(),
|
|
11455
11464
|
featureName: z347.string(),
|
|
11456
|
-
iterationId: z347.string().uuid(),
|
|
11457
|
-
iterationName: z347.string()
|
|
11465
|
+
iterationId: z347.string().uuid().nullish(),
|
|
11466
|
+
iterationName: z347.string().nullish()
|
|
11458
11467
|
});
|
|
11459
11468
|
var DTOTrailEventFeatureUnpublishedPayload = z347.object({
|
|
11460
11469
|
featureId: z347.string().uuid(),
|
|
11461
11470
|
featureName: z347.string(),
|
|
11462
|
-
iterationId: z347.string().uuid(),
|
|
11463
|
-
iterationName: z347.string()
|
|
11471
|
+
iterationId: z347.string().uuid().nullish(),
|
|
11472
|
+
iterationName: z347.string().nullish()
|
|
11464
11473
|
});
|
|
11465
11474
|
var DTOTrailEventProjectArchivedPayload = z347.object({
|
|
11466
11475
|
name: z347.string()
|