@supernova-studio/client 0.54.10 → 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
@@ -4912,6 +4912,7 @@ function pipelineToDto(pipeline) {
4912
4912
  exporterId: pipeline.exporterId,
4913
4913
  brandPersistentId: pipeline.brandPersistentId,
4914
4914
  themePersistentId: pipeline.themePersistentId,
4915
+ themePersistentIds: pipeline.themePersistentIds,
4915
4916
  destinationAzure: pipeline.destinationAzure,
4916
4917
  destinationBitbucket: pipeline.destinationBitbucket,
4917
4918
  destinationSnDocs: pipeline.destinationSnDocs,
@@ -5223,6 +5224,7 @@ var DTOPipelineCreateBody = z185.object({
5223
5224
  eventType: PipelineEventType,
5224
5225
  brandPersistentId: z185.string().optional(),
5225
5226
  themePersistentId: z185.string().optional(),
5227
+ themePersistentIds: z185.string().array().optional(),
5226
5228
  destination: PipelineDestinationType.optional(),
5227
5229
  gitQuery: GitObjectsQuery,
5228
5230
  destinations: z185.object({
@@ -5675,6 +5677,7 @@ var DTOPipeline = z202.object({
5675
5677
  exporterId: z202.string(),
5676
5678
  brandPersistentId: z202.string().optional(),
5677
5679
  themePersistentId: z202.string().optional(),
5680
+ themePersistentIds: z202.string().array().optional(),
5678
5681
  ...ExportDestinationsMap.shape,
5679
5682
  latestJobs: DTOExportJob.array()
5680
5683
  });