@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.d.mts
CHANGED
|
@@ -125496,7 +125496,7 @@ declare const DTOFigmaExportNodeResponse: z.ZodObject<{
|
|
|
125496
125496
|
} | undefined;
|
|
125497
125497
|
pendingUpload?: boolean | undefined;
|
|
125498
125498
|
}>;
|
|
125499
|
-
|
|
125499
|
+
scene: z.ZodOptional<z.ZodAny>;
|
|
125500
125500
|
}, "strip", z.ZodTypeAny, {
|
|
125501
125501
|
file: {
|
|
125502
125502
|
id: string;
|
|
@@ -125514,7 +125514,7 @@ declare const DTOFigmaExportNodeResponse: z.ZodObject<{
|
|
|
125514
125514
|
} | undefined;
|
|
125515
125515
|
pendingUpload?: boolean | undefined;
|
|
125516
125516
|
};
|
|
125517
|
-
|
|
125517
|
+
scene?: any;
|
|
125518
125518
|
}, {
|
|
125519
125519
|
file: {
|
|
125520
125520
|
id: string;
|
|
@@ -125532,7 +125532,7 @@ declare const DTOFigmaExportNodeResponse: z.ZodObject<{
|
|
|
125532
125532
|
} | undefined;
|
|
125533
125533
|
pendingUpload?: boolean | undefined;
|
|
125534
125534
|
};
|
|
125535
|
-
|
|
125535
|
+
scene?: any;
|
|
125536
125536
|
}>;
|
|
125537
125537
|
type DTOFigmaExportNodeResponse = z.infer<typeof DTOFigmaExportNodeResponse>;
|
|
125538
125538
|
|
package/dist/index.d.ts
CHANGED
|
@@ -125496,7 +125496,7 @@ declare const DTOFigmaExportNodeResponse: z.ZodObject<{
|
|
|
125496
125496
|
} | undefined;
|
|
125497
125497
|
pendingUpload?: boolean | undefined;
|
|
125498
125498
|
}>;
|
|
125499
|
-
|
|
125499
|
+
scene: z.ZodOptional<z.ZodAny>;
|
|
125500
125500
|
}, "strip", z.ZodTypeAny, {
|
|
125501
125501
|
file: {
|
|
125502
125502
|
id: string;
|
|
@@ -125514,7 +125514,7 @@ declare const DTOFigmaExportNodeResponse: z.ZodObject<{
|
|
|
125514
125514
|
} | undefined;
|
|
125515
125515
|
pendingUpload?: boolean | undefined;
|
|
125516
125516
|
};
|
|
125517
|
-
|
|
125517
|
+
scene?: any;
|
|
125518
125518
|
}, {
|
|
125519
125519
|
file: {
|
|
125520
125520
|
id: string;
|
|
@@ -125532,7 +125532,7 @@ declare const DTOFigmaExportNodeResponse: z.ZodObject<{
|
|
|
125532
125532
|
} | undefined;
|
|
125533
125533
|
pendingUpload?: boolean | undefined;
|
|
125534
125534
|
};
|
|
125535
|
-
|
|
125535
|
+
scene?: any;
|
|
125536
125536
|
}>;
|
|
125537
125537
|
type DTOFigmaExportNodeResponse = z.infer<typeof DTOFigmaExportNodeResponse>;
|
|
125538
125538
|
|
package/dist/index.js
CHANGED
|
@@ -4179,6 +4179,13 @@ var FigmaExporterProcessedStylesSchema = _zod.z.object({
|
|
|
4179
4179
|
_zod.z.literal("center"),
|
|
4180
4180
|
_zod.z.literal("baseline")
|
|
4181
4181
|
]).optional(),
|
|
4182
|
+
justifySelf: _zod.z.union([
|
|
4183
|
+
_zod.z.literal("auto"),
|
|
4184
|
+
_zod.z.literal("stretch"),
|
|
4185
|
+
_zod.z.literal("flex-start"),
|
|
4186
|
+
_zod.z.literal("flex-end"),
|
|
4187
|
+
_zod.z.literal("center")
|
|
4188
|
+
]).optional(),
|
|
4182
4189
|
flexGrow: _zod.z.number().optional(),
|
|
4183
4190
|
flexShrink: _zod.z.number().optional(),
|
|
4184
4191
|
flexBasis: _zod.z.string().optional(),
|
|
@@ -11222,7 +11229,7 @@ var DTOFigmaExportNodePayload = _zod.z.object({
|
|
|
11222
11229
|
var DTOFigmaExportNodeResponse = _zod.z.object({
|
|
11223
11230
|
file: DTOFile,
|
|
11224
11231
|
// TODO (jovanblazek): Remove sceneNodes from response when done with development
|
|
11225
|
-
|
|
11232
|
+
scene: _zod.z.any().optional()
|
|
11226
11233
|
});
|
|
11227
11234
|
|
|
11228
11235
|
// src/api/dto/liveblocks/auth-response.ts
|