@supernova-studio/model 1.81.3 → 1.81.5
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 +42 -3
- package/dist/index.d.ts +42 -3
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4771,6 +4771,7 @@ var FigmaExporterProcessedStylesSchema = z125.object({
|
|
|
4771
4771
|
backgroundOrigin: z125.union([z125.literal("border-box"), z125.literal("padding-box"), z125.literal("content-box")]).optional(),
|
|
4772
4772
|
opacity: z125.number().optional(),
|
|
4773
4773
|
boxShadow: z125.string().optional(),
|
|
4774
|
+
textShadow: z125.string().optional(),
|
|
4774
4775
|
filter: z125.string().optional(),
|
|
4775
4776
|
backdropFilter: z125.string().optional(),
|
|
4776
4777
|
mixBlendMode: z125.union([
|
|
@@ -4891,7 +4892,9 @@ var frameNodeObjectSchema = baseDesignNodeObjectSchema.extend({
|
|
|
4891
4892
|
});
|
|
4892
4893
|
var textNodeObjectSchema = baseDesignNodeObjectSchema.extend({
|
|
4893
4894
|
type: z125.literal("TEXT"),
|
|
4894
|
-
characters: z125.string()
|
|
4895
|
+
characters: z125.string(),
|
|
4896
|
+
lineTypes: z125.array(z125.union([z125.literal("NONE"), z125.literal("ORDERED"), z125.literal("UNORDERED")])).optional(),
|
|
4897
|
+
lineIndentations: z125.array(z125.number()).optional()
|
|
4895
4898
|
});
|
|
4896
4899
|
var svgNodeObjectSchema = baseDesignNodeObjectSchema.extend({
|
|
4897
4900
|
type: z125.literal("SVG"),
|
|
@@ -6571,8 +6574,7 @@ var ExporterFunctionPayload = z203.object({
|
|
|
6571
6574
|
exportContextId: z203.string(),
|
|
6572
6575
|
designSystemId: z203.string(),
|
|
6573
6576
|
workspaceId: z203.string(),
|
|
6574
|
-
exporterId: z203.string()
|
|
6575
|
-
runnerType: z203.enum(["High", "Low"])
|
|
6577
|
+
exporterId: z203.string()
|
|
6576
6578
|
});
|
|
6577
6579
|
|
|
6578
6580
|
// src/export/export-jobs.ts
|