@supernova-studio/client 1.74.0 → 1.74.1

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.js CHANGED
@@ -4240,6 +4240,8 @@ var FigmaExporterProcessedStylesSchema = _zod.z.object({
4240
4240
  backgroundSize: _zod.z.string().optional(),
4241
4241
  backgroundPosition: _zod.z.string().optional(),
4242
4242
  backgroundRepeat: _zod.z.string().optional(),
4243
+ // Typed as string to support multiple background blend modes
4244
+ backgroundBlendMode: _zod.z.string().optional(),
4243
4245
  backgroundClip: _zod.z.union([_zod.z.literal("border-box"), _zod.z.literal("padding-box"), _zod.z.literal("content-box"), _zod.z.literal("text")]).optional(),
4244
4246
  backgroundOrigin: _zod.z.union([_zod.z.literal("border-box"), _zod.z.literal("padding-box"), _zod.z.literal("content-box")]).optional(),
4245
4247
  opacity: _zod.z.number().optional(),
@@ -4315,6 +4317,8 @@ var FigmaExporterProcessedStylesSchema = _zod.z.object({
4315
4317
  ]).optional(),
4316
4318
  wordBreak: _zod.z.union([_zod.z.literal("normal"), _zod.z.literal("break-all"), _zod.z.literal("keep-all"), _zod.z.literal("break-word")]).optional(),
4317
4319
  textOverflow: _zod.z.union([_zod.z.literal("clip"), _zod.z.literal("ellipsis")]).optional(),
4320
+ WebkitBackgroundClip: _zod.z.literal("text").optional(),
4321
+ WebkitTextFillColor: _zod.z.string().optional(),
4318
4322
  WebkitLineClamp: _zod.z.number().optional(),
4319
4323
  WebkitBoxOrient: _zod.z.literal("vertical").optional(),
4320
4324
  fontFeatureSettings: _zod.z.string().optional(),
@@ -5838,7 +5842,6 @@ var FlaggedFeature = _zod.z.enum([
5838
5842
  "ForgeE2BTemplate",
5839
5843
  "ForgeOnDemandIterations",
5840
5844
  "ForgeAutoRetryOnErrors",
5841
- "ForgeAiBackendMigrated",
5842
5845
  "CustomForgeTemplate",
5843
5846
  "ForgeRestartPlaywright"
5844
5847
  ]);