@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supernova-studio/model",
3
- "version": "0.57.3",
3
+ "version": "0.57.5",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,11 +20,15 @@ export const ExportJobContext = z.object({
20
20
  themePersistentIds: z.string().array().optional(),
21
21
 
22
22
  exporterName: z.string(),
23
- exporterPackageUrl: z.string(),
24
- exporterPropertyValues: ExporterPropertyValue.array(),
25
23
 
26
24
  documentation: ExportJobDocumentationContext.optional(),
27
25
  });
28
26
 
27
+ export const ExportJobExporterConfiguration = z.object({
28
+ exporterPackageUrl: z.string(),
29
+ exporterPropertyValues: ExporterPropertyValue.array(),
30
+ });
31
+
29
32
  export type ExportJobDocumentationContext = z.infer<typeof ExportJobDocumentationContext>;
33
+ export type ExportJobExporterConfiguration = z.infer<typeof ExportJobExporterConfiguration>;
30
34
  export type ExportJobContext = z.infer<typeof ExportJobContext>;