@supernova-studio/client 1.92.1 → 1.92.3
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 +83 -2
- package/dist/index.d.ts +83 -2
- package/dist/index.js +15 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -148,6 +148,7 @@ var FeaturesSummary = z7.object({
|
|
|
148
148
|
designSystemAccessModes: featureToggleSchema,
|
|
149
149
|
designSystemRoles: featureToggleSchema,
|
|
150
150
|
documentationPageRedirects: featureToggleSchema,
|
|
151
|
+
designSystemAdoption: featureToggleSchema,
|
|
151
152
|
analytics: featureLimitedSchema,
|
|
152
153
|
designSystemFileSize: featureLimitedSchema,
|
|
153
154
|
forgeActiveProjects: featureLimitedSchema,
|
|
@@ -3020,7 +3021,6 @@ var GradientLayerValue = z68.object({
|
|
|
3020
3021
|
to: Point2D,
|
|
3021
3022
|
type: GradientType,
|
|
3022
3023
|
aspectRatio: nullishToOptional(z68.number()),
|
|
3023
|
-
// z.number(),
|
|
3024
3024
|
stops: z68.array(GradientStop).min(2)
|
|
3025
3025
|
});
|
|
3026
3026
|
var GradientLayerData = tokenAliasOrValue(GradientLayerValue);
|
|
@@ -10766,8 +10766,20 @@ var DTOForgeFeatureRoomResponse = z326.object({
|
|
|
10766
10766
|
// src/api/dto/forge/figma-node.ts
|
|
10767
10767
|
import z327 from "zod";
|
|
10768
10768
|
var DTOForgeFigmaNodeState = z327.enum(["Optimizing", "Success", "Failed"]);
|
|
10769
|
-
var DTOForgeFigmaNodeConversionVersion = z327.enum([
|
|
10770
|
-
|
|
10769
|
+
var DTOForgeFigmaNodeConversionVersion = z327.enum([
|
|
10770
|
+
"V1",
|
|
10771
|
+
"V2",
|
|
10772
|
+
"V3",
|
|
10773
|
+
"V4",
|
|
10774
|
+
"V5",
|
|
10775
|
+
"V6",
|
|
10776
|
+
"V7",
|
|
10777
|
+
"V8",
|
|
10778
|
+
"V9",
|
|
10779
|
+
"V10",
|
|
10780
|
+
"V11"
|
|
10781
|
+
]);
|
|
10782
|
+
var ForgeFigmaNodeLatestVersion = DTOForgeFigmaNodeConversionVersion.enum.V11;
|
|
10771
10783
|
var DTOForgeFigmaNodeOrigin = z327.object({
|
|
10772
10784
|
/**
|
|
10773
10785
|
* Figma file ID that was passed into the create request as a part of the Figma node URL
|