@supernova-studio/client 1.81.3 → 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"),