@supernova-studio/client 1.60.1 → 1.60.2

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
@@ -3385,7 +3385,7 @@ var ThemeOriginSource = z93.object({
3385
3385
  var ThemeOrigin = z93.object({
3386
3386
  sources: z93.array(ThemeOriginSource)
3387
3387
  });
3388
- var Theme = DesignElementBase.extend(DesignElementBrandedPart.shape).extend({
3388
+ var Theme = DesignElementGroupableBase.extend(DesignElementBrandedPart.shape).extend({
3389
3389
  origin: ThemeOrigin.optional(),
3390
3390
  overrides: z93.array(ThemeOverride),
3391
3391
  codeName: z93.string()
@@ -3693,6 +3693,7 @@ var Collection = z99.object({
3693
3693
  name: z99.string(),
3694
3694
  description: z99.string(),
3695
3695
  backgroundColor: ColorTokenInlineData.optional(),
3696
+ parentPersistentId: z99.string().optional(),
3696
3697
  /**
3697
3698
  * ID of Select element property definition's option that corresponds to this collection.
3698
3699
  *
@@ -8145,6 +8146,7 @@ var DTOTokenCollection = z270.object({
8145
8146
  elementPropertyOptionId: z270.string(),
8146
8147
  createdAt: z270.coerce.date(),
8147
8148
  updatedAt: z270.coerce.date(),
8149
+ parentPersistentId: z270.string().optional(),
8148
8150
  origin: CollectionOrigin.optional()
8149
8151
  });
8150
8152
  var DTOTokenCollectionsListReponse = z270.object({
@@ -11342,6 +11344,9 @@ var DTOThemeOverrideCreatePayload = DesignTokenTypedData.and(
11342
11344
 
11343
11345
  // src/api/dto/themes/theme.ts
11344
11346
  import { z as z346 } from "zod";
11347
+ var DTOThemesListQuery = z346.object({
11348
+ brandId: z346.string().optional()
11349
+ });
11345
11350
  var DTOTheme = z346.object({
11346
11351
  id: z346.string(),
11347
11352
  persistentId: z346.string(),
@@ -11349,6 +11354,8 @@ var DTOTheme = z346.object({
11349
11354
  brandId: z346.string(),
11350
11355
  meta: ObjectMeta,
11351
11356
  codeName: z346.string(),
11357
+ parentPersistentId: z346.string().optional(),
11358
+ collectionPersistentIds: z346.string().array(),
11352
11359
  overrides: DTOThemeOverride.array()
11353
11360
  });
11354
11361
  var DTOThemeResponse = z346.object({
@@ -20654,6 +20661,7 @@ export {
20654
20661
  DTOThemeOverride,
20655
20662
  DTOThemeOverrideCreatePayload,
20656
20663
  DTOThemeResponse,
20664
+ DTOThemesListQuery,
20657
20665
  DTOThread,
20658
20666
  DTOThreadAgentResponseTracker,
20659
20667
  DTOThreadAgentType,