@supernova-studio/client 1.4.16 → 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 +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4740,6 +4740,7 @@ var ExportJobContext = z172.object({
|
|
|
4740
4740
|
brandId: z172.string().optional(),
|
|
4741
4741
|
themeId: z172.string().optional(),
|
|
4742
4742
|
themePersistentIds: z172.string().array().optional(),
|
|
4743
|
+
previewMode: z172.boolean().optional(),
|
|
4743
4744
|
exporterName: z172.string(),
|
|
4744
4745
|
documentation: ExportJobDocumentationContext.optional()
|
|
4745
4746
|
});
|
|
@@ -4812,6 +4813,7 @@ var ExportJob = z174.object({
|
|
|
4812
4813
|
result: ExportJobResult.optional(),
|
|
4813
4814
|
createdByUserId: z174.string().optional(),
|
|
4814
4815
|
exporterPropertyValues: ExporterPropertyValueMap.optional(),
|
|
4816
|
+
previewMode: z174.boolean().optional(),
|
|
4815
4817
|
// Destinations
|
|
4816
4818
|
...ExportDestinationsMap.shape
|
|
4817
4819
|
});
|
|
@@ -6840,7 +6842,8 @@ var DTOExportJobCreateInput = z239.object({
|
|
|
6840
6842
|
themeId: z239.string().optional(),
|
|
6841
6843
|
themePersistentIds: z239.string().array().optional(),
|
|
6842
6844
|
destinations: DTOExportJobDestinations,
|
|
6843
|
-
exporterPropertyValues: DTOExporterPropertyValueMap.optional()
|
|
6845
|
+
exporterPropertyValues: DTOExporterPropertyValueMap.optional(),
|
|
6846
|
+
previewMode: z239.boolean().optional()
|
|
6844
6847
|
});
|
|
6845
6848
|
|
|
6846
6849
|
// src/api/dto/export/pipeline.ts
|