@supernova-studio/client 0.54.8 → 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
@@ -1627,6 +1627,7 @@ var PageBlockTypeV1 = z40.enum([
1627
1627
  "Custom",
1628
1628
  "FigmaFrames",
1629
1629
  "ComponentAssets",
1630
+ "ComponentAssetGroup",
1630
1631
  "RenderCode",
1631
1632
  "Tabs",
1632
1633
  "TabItem",
@@ -2165,7 +2166,8 @@ var PageBlockColorV2 = z44.object({
2165
2166
  var PageBlockAssetEntityMeta = z44.object({
2166
2167
  title: z44.string().optional(),
2167
2168
  description: z44.string().optional(),
2168
- backgroundColor: PageBlockColorV2.optional()
2169
+ backgroundColor: PageBlockColorV2.optional(),
2170
+ showNestedGroups: z44.boolean().optional()
2169
2171
  });
2170
2172
  var PageBlockFigmaComponentEntityMeta = z44.object({
2171
2173
  title: z44.string().optional(),
@@ -3838,6 +3840,7 @@ var Pipeline = z125.object({
3838
3840
  exporterId: z125.string(),
3839
3841
  brandPersistentId: z125.string().optional(),
3840
3842
  themePersistentId: z125.string().optional(),
3843
+ themePersistentIds: z125.string().array().optional(),
3841
3844
  // Destinations
3842
3845
  ...ExportDestinationsMap.shape
3843
3846
  });
@@ -4293,6 +4296,7 @@ var ExportJobContext = z153.object({
4293
4296
  versionId: z153.string(),
4294
4297
  brandId: z153.string().optional(),
4295
4298
  themeId: z153.string().optional(),
4299
+ themePersistentIds: z153.string().array().optional(),
4296
4300
  exporterName: z153.string(),
4297
4301
  exporterPackageUrl: z153.string(),
4298
4302
  exporterPropertyValues: ExporterPropertyValue.array(),
@@ -4356,6 +4360,7 @@ var ExportJob = z155.object({
4356
4360
  exporterId: z155.string(),
4357
4361
  brandId: z155.string().optional(),
4358
4362
  themeId: z155.string().optional(),
4363
+ themePersistentIds: z155.string().array().optional(),
4359
4364
  estimatedExecutionTime: z155.number().optional(),
4360
4365
  status: ExportJobStatus,
4361
4366
  result: ExportJobResult.optional(),
@@ -5651,7 +5656,8 @@ var DTOExportJob = z201.object({
5651
5656
  scheduleId: z201.string().optional(),
5652
5657
  result: DTOExportJobResult.optional(),
5653
5658
  brandPersistentId: z201.string().optional(),
5654
- themePersistentId: z201.string().optional()
5659
+ themePersistentId: z201.string().optional(),
5660
+ themePersistentIds: z201.string().array().optional()
5655
5661
  });
5656
5662
  var DTOExportJobResponse = z201.object({
5657
5663
  job: DTOExportJob