@supernova-studio/model 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.mjs CHANGED
@@ -4389,6 +4389,8 @@ var FigmaNodeStructureV2 = z122.object({
4389
4389
  createdAt: z122.coerce.date(),
4390
4390
  updatedAt: z122.coerce.date(),
4391
4391
  importState: FigmaNodeStructureStateV2,
4392
+ error: z122.string().optional(),
4393
+ chunkSize: z122.number().optional(),
4392
4394
  // TODO Artem: remove after migration
4393
4395
  isFromLegacyStorage: z122.boolean()
4394
4396
  });
@@ -5462,6 +5464,7 @@ var ExportJobContext = z172.object({
5462
5464
  brandId: z172.string().optional(),
5463
5465
  themeId: z172.string().optional(),
5464
5466
  themePersistentIds: z172.string().array().optional(),
5467
+ previewMode: z172.boolean().optional(),
5465
5468
  exporterName: z172.string(),
5466
5469
  documentation: ExportJobDocumentationContext.optional()
5467
5470
  });
@@ -5540,6 +5543,7 @@ var ExportJob = z174.object({
5540
5543
  result: ExportJobResult.optional(),
5541
5544
  createdByUserId: z174.string().optional(),
5542
5545
  exporterPropertyValues: ExporterPropertyValueMap.optional(),
5546
+ previewMode: z174.boolean().optional(),
5543
5547
  // Destinations
5544
5548
  ...ExportDestinationsMap.shape
5545
5549
  });