@supernova-studio/model 0.54.9 → 0.54.10

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.54.9",
3
+ "version": "0.54.10",
4
4
  "description": "Supernova Data Models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -134,7 +134,6 @@ export const DataSource = z.object({
134
134
 
135
135
  designSystemId: z.string(),
136
136
  brandPersistentId: z.string(),
137
-
138
137
  autoImportMode: DataSourceAutoImportMode,
139
138
  stats: DataSourceStats,
140
139
 
@@ -84,6 +84,7 @@ export const ExportJob = z.object({
84
84
  exporterId: z.string(),
85
85
  brandId: z.string().optional(),
86
86
  themeId: z.string().optional(),
87
+ themePersistentIds: z.string().array().optional(),
87
88
  estimatedExecutionTime: z.number().optional(),
88
89
  status: ExportJobStatus,
89
90
  result: ExportJobResult.optional(),
@@ -17,6 +17,7 @@ export const ExportJobContext = z.object({
17
17
  versionId: z.string(),
18
18
  brandId: z.string().optional(),
19
19
  themeId: z.string().optional(),
20
+ themePersistentIds: z.string().array().optional(),
20
21
 
21
22
  exporterName: z.string(),
22
23
  exporterPackageUrl: z.string(),
@@ -20,6 +20,7 @@ export const Pipeline = z.object({
20
20
 
21
21
  brandPersistentId: z.string().optional(),
22
22
  themePersistentId: z.string().optional(),
23
+ themePersistentIds: z.string().array().optional(),
23
24
 
24
25
  // Destinations
25
26
  ...ExportDestinationsMap.shape,