@supernova-studio/model 0.57.3 → 0.57.5
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 +52 -47
- package/dist/index.d.ts +52 -47
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/export/export-runner/export-context.ts +6 -2
package/dist/index.mjs
CHANGED
|
@@ -5090,10 +5090,12 @@ var ExportJobContext = z161.object({
|
|
|
5090
5090
|
themeId: z161.string().optional(),
|
|
5091
5091
|
themePersistentIds: z161.string().array().optional(),
|
|
5092
5092
|
exporterName: z161.string(),
|
|
5093
|
-
exporterPackageUrl: z161.string(),
|
|
5094
|
-
exporterPropertyValues: ExporterPropertyValue.array(),
|
|
5095
5093
|
documentation: ExportJobDocumentationContext.optional()
|
|
5096
5094
|
});
|
|
5095
|
+
var ExportJobExporterConfiguration = z161.object({
|
|
5096
|
+
exporterPackageUrl: z161.string(),
|
|
5097
|
+
exporterPropertyValues: ExporterPropertyValue.array()
|
|
5098
|
+
});
|
|
5097
5099
|
|
|
5098
5100
|
// src/export/export-runner/exporter-payload.ts
|
|
5099
5101
|
import { z as z162 } from "zod";
|
|
@@ -5528,6 +5530,7 @@ export {
|
|
|
5528
5530
|
ExportJobDocumentationChanges,
|
|
5529
5531
|
ExportJobDocumentationContext,
|
|
5530
5532
|
ExportJobDump,
|
|
5533
|
+
ExportJobExporterConfiguration,
|
|
5531
5534
|
ExportJobFindByFilter,
|
|
5532
5535
|
ExportJobLogEntry,
|
|
5533
5536
|
ExportJobLogEntryType,
|