@supernova-studio/client 1.73.0 → 1.73.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.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4179,6 +4179,13 @@ var FigmaExporterProcessedStylesSchema = z125.object({
|
|
|
4179
4179
|
z125.literal("center"),
|
|
4180
4180
|
z125.literal("baseline")
|
|
4181
4181
|
]).optional(),
|
|
4182
|
+
justifySelf: z125.union([
|
|
4183
|
+
z125.literal("auto"),
|
|
4184
|
+
z125.literal("stretch"),
|
|
4185
|
+
z125.literal("flex-start"),
|
|
4186
|
+
z125.literal("flex-end"),
|
|
4187
|
+
z125.literal("center")
|
|
4188
|
+
]).optional(),
|
|
4182
4189
|
flexGrow: z125.number().optional(),
|
|
4183
4190
|
flexShrink: z125.number().optional(),
|
|
4184
4191
|
flexBasis: z125.string().optional(),
|
|
@@ -11222,7 +11229,7 @@ var DTOFigmaExportNodePayload = z340.object({
|
|
|
11222
11229
|
var DTOFigmaExportNodeResponse = z340.object({
|
|
11223
11230
|
file: DTOFile,
|
|
11224
11231
|
// TODO (jovanblazek): Remove sceneNodes from response when done with development
|
|
11225
|
-
|
|
11232
|
+
scene: z340.any().optional()
|
|
11226
11233
|
});
|
|
11227
11234
|
|
|
11228
11235
|
// src/api/dto/liveblocks/auth-response.ts
|