@supernova-studio/client 0.54.9 → 0.54.11

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(),
@@ -4909,6 +4912,7 @@ function pipelineToDto(pipeline) {
4909
4912
  exporterId: pipeline.exporterId,
4910
4913
  brandPersistentId: pipeline.brandPersistentId,
4911
4914
  themePersistentId: pipeline.themePersistentId,
4915
+ themePersistentIds: pipeline.themePersistentIds,
4912
4916
  destinationAzure: pipeline.destinationAzure,
4913
4917
  destinationBitbucket: pipeline.destinationBitbucket,
4914
4918
  destinationSnDocs: pipeline.destinationSnDocs,
@@ -5220,6 +5224,7 @@ var DTOPipelineCreateBody = z185.object({
5220
5224
  eventType: PipelineEventType,
5221
5225
  brandPersistentId: z185.string().optional(),
5222
5226
  themePersistentId: z185.string().optional(),
5227
+ themePersistentIds: z185.string().array().optional(),
5223
5228
  destination: PipelineDestinationType.optional(),
5224
5229
  gitQuery: GitObjectsQuery,
5225
5230
  destinations: z185.object({
@@ -5653,7 +5658,8 @@ var DTOExportJob = z201.object({
5653
5658
  scheduleId: z201.string().optional(),
5654
5659
  result: DTOExportJobResult.optional(),
5655
5660
  brandPersistentId: z201.string().optional(),
5656
- themePersistentId: z201.string().optional()
5661
+ themePersistentId: z201.string().optional(),
5662
+ themePersistentIds: z201.string().array().optional()
5657
5663
  });
5658
5664
  var DTOExportJobResponse = z201.object({
5659
5665
  job: DTOExportJob
@@ -5671,6 +5677,7 @@ var DTOPipeline = z202.object({
5671
5677
  exporterId: z202.string(),
5672
5678
  brandPersistentId: z202.string().optional(),
5673
5679
  themePersistentId: z202.string().optional(),
5680
+ themePersistentIds: z202.string().array().optional(),
5674
5681
  ...ExportDestinationsMap.shape,
5675
5682
  latestJobs: DTOExportJob.array()
5676
5683
  });