@supernova-studio/client 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/dist/index.mjs CHANGED
@@ -3840,6 +3840,7 @@ var Pipeline = z125.object({
3840
3840
  exporterId: z125.string(),
3841
3841
  brandPersistentId: z125.string().optional(),
3842
3842
  themePersistentId: z125.string().optional(),
3843
+ themePersistentIds: z125.string().array().optional(),
3843
3844
  // Destinations
3844
3845
  ...ExportDestinationsMap.shape
3845
3846
  });
@@ -4295,6 +4296,7 @@ var ExportJobContext = z153.object({
4295
4296
  versionId: z153.string(),
4296
4297
  brandId: z153.string().optional(),
4297
4298
  themeId: z153.string().optional(),
4299
+ themePersistentIds: z153.string().array().optional(),
4298
4300
  exporterName: z153.string(),
4299
4301
  exporterPackageUrl: z153.string(),
4300
4302
  exporterPropertyValues: ExporterPropertyValue.array(),
@@ -4358,6 +4360,7 @@ var ExportJob = z155.object({
4358
4360
  exporterId: z155.string(),
4359
4361
  brandId: z155.string().optional(),
4360
4362
  themeId: z155.string().optional(),
4363
+ themePersistentIds: z155.string().array().optional(),
4361
4364
  estimatedExecutionTime: z155.number().optional(),
4362
4365
  status: ExportJobStatus,
4363
4366
  result: ExportJobResult.optional(),
@@ -5653,7 +5656,8 @@ var DTOExportJob = z201.object({
5653
5656
  scheduleId: z201.string().optional(),
5654
5657
  result: DTOExportJobResult.optional(),
5655
5658
  brandPersistentId: z201.string().optional(),
5656
- themePersistentId: z201.string().optional()
5659
+ themePersistentId: z201.string().optional(),
5660
+ themePersistentIds: z201.string().array().optional()
5657
5661
  });
5658
5662
  var DTOExportJobResponse = z201.object({
5659
5663
  job: DTOExportJob