@supernova-studio/client 1.81.2 → 1.81.4

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.mjs CHANGED
@@ -4471,6 +4471,7 @@ var FigmaExporterProcessedStylesSchema = z125.object({
4471
4471
  backgroundOrigin: z125.union([z125.literal("border-box"), z125.literal("padding-box"), z125.literal("content-box")]).optional(),
4472
4472
  opacity: z125.number().optional(),
4473
4473
  boxShadow: z125.string().optional(),
4474
+ textShadow: z125.string().optional(),
4474
4475
  filter: z125.string().optional(),
4475
4476
  backdropFilter: z125.string().optional(),
4476
4477
  mixBlendMode: z125.union([
@@ -4591,7 +4592,9 @@ var frameNodeObjectSchema = baseDesignNodeObjectSchema.extend({
4591
4592
  });
4592
4593
  var textNodeObjectSchema = baseDesignNodeObjectSchema.extend({
4593
4594
  type: z125.literal("TEXT"),
4594
- characters: z125.string()
4595
+ characters: z125.string(),
4596
+ lineTypes: z125.array(z125.union([z125.literal("NONE"), z125.literal("ORDERED"), z125.literal("UNORDERED")])).optional(),
4597
+ lineIndentations: z125.array(z125.number()).optional()
4595
4598
  });
4596
4599
  var svgNodeObjectSchema = baseDesignNodeObjectSchema.extend({
4597
4600
  type: z125.literal("SVG"),
@@ -10568,6 +10571,9 @@ var DTOForgeFigmaNodeCreateRequest = z319.object({
10568
10571
  var DTOForgeFigmaNodeResponse = z319.object({
10569
10572
  figmaNode: DTOForgeFigmaNode
10570
10573
  });
10574
+ var DTOForgeFigmaNodeValidateResponse = z319.object({
10575
+ isValid: z319.boolean()
10576
+ });
10571
10577
 
10572
10578
  // src/api/dto/forge/iteration-message-old.ts
10573
10579
  import { z as z321 } from "zod";
@@ -21183,6 +21189,7 @@ export {
21183
21189
  DTOForgeFigmaNodeOrigin,
21184
21190
  DTOForgeFigmaNodeResponse,
21185
21191
  DTOForgeFigmaNodeState,
21192
+ DTOForgeFigmaNodeValidateResponse,
21186
21193
  DTOForgeFileArtifact,
21187
21194
  DTOForgeIconSet,
21188
21195
  DTOForgeIconSetTypeV2,