@supernova-studio/client 1.4.15 → 1.4.17
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 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3858,6 +3858,8 @@ var FigmaNodeStructureV2 = z122.object({
|
|
|
3858
3858
|
createdAt: z122.coerce.date(),
|
|
3859
3859
|
updatedAt: z122.coerce.date(),
|
|
3860
3860
|
importState: FigmaNodeStructureStateV2,
|
|
3861
|
+
error: z122.string().optional(),
|
|
3862
|
+
chunkSize: z122.number().optional(),
|
|
3861
3863
|
// TODO Artem: remove after migration
|
|
3862
3864
|
isFromLegacyStorage: z122.boolean()
|
|
3863
3865
|
});
|
|
@@ -4738,6 +4740,7 @@ var ExportJobContext = z172.object({
|
|
|
4738
4740
|
brandId: z172.string().optional(),
|
|
4739
4741
|
themeId: z172.string().optional(),
|
|
4740
4742
|
themePersistentIds: z172.string().array().optional(),
|
|
4743
|
+
previewMode: z172.boolean().optional(),
|
|
4741
4744
|
exporterName: z172.string(),
|
|
4742
4745
|
documentation: ExportJobDocumentationContext.optional()
|
|
4743
4746
|
});
|
|
@@ -4810,6 +4813,7 @@ var ExportJob = z174.object({
|
|
|
4810
4813
|
result: ExportJobResult.optional(),
|
|
4811
4814
|
createdByUserId: z174.string().optional(),
|
|
4812
4815
|
exporterPropertyValues: ExporterPropertyValueMap.optional(),
|
|
4816
|
+
previewMode: z174.boolean().optional(),
|
|
4813
4817
|
// Destinations
|
|
4814
4818
|
...ExportDestinationsMap.shape
|
|
4815
4819
|
});
|
|
@@ -6838,7 +6842,8 @@ var DTOExportJobCreateInput = z239.object({
|
|
|
6838
6842
|
themeId: z239.string().optional(),
|
|
6839
6843
|
themePersistentIds: z239.string().array().optional(),
|
|
6840
6844
|
destinations: DTOExportJobDestinations,
|
|
6841
|
-
exporterPropertyValues: DTOExporterPropertyValueMap.optional()
|
|
6845
|
+
exporterPropertyValues: DTOExporterPropertyValueMap.optional(),
|
|
6846
|
+
previewMode: z239.boolean().optional()
|
|
6842
6847
|
});
|
|
6843
6848
|
|
|
6844
6849
|
// src/api/dto/export/pipeline.ts
|