@supernova-studio/client 0.57.13 → 0.57.15

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
@@ -1594,6 +1594,7 @@ var ShallowDesignElement = z39.object({
1594
1594
  designSystemVersionId: z39.string(),
1595
1595
  type: DesignElementType,
1596
1596
  brandPersistentId: z39.string().optional(),
1597
+ collectionPersistentId: z39.string().optional(),
1597
1598
  parentPersistentId: z39.string().optional(),
1598
1599
  shortPersistentId: z39.string().optional(),
1599
1600
  childType: DesignElementType.optional(),
@@ -2811,7 +2812,8 @@ var DesignTokenOriginPart = z85.object({
2811
2812
  });
2812
2813
  var DesignTokenOrigin = DesignElementOrigin.extend(DesignTokenOriginPart.shape);
2813
2814
  var DesignTokenBase = DesignElementBase.extend(DesignElementGroupableRequiredPart.shape).extend(DesignElementBrandedPart.shape).extend({
2814
- origin: DesignTokenOrigin.optional()
2815
+ origin: DesignTokenOrigin.optional(),
2816
+ collectionPersistentId: z85.string().optional()
2815
2817
  });
2816
2818
  var CreateDesignTokenBase = DesignTokenBase.omit(zodCreateInputOmit());
2817
2819
  var UpdateDesignTokenBase = DesignTokenBase.omit({
@@ -3260,6 +3262,7 @@ var Collection = z91.object({
3260
3262
  elementPropertyOptionId: z91.string(),
3261
3263
  createdAt: z91.coerce.date(),
3262
3264
  updatedAt: z91.coerce.date(),
3265
+ sortOrder: z91.string(),
3263
3266
  origin: CollectionOrigin.optional()
3264
3267
  });
3265
3268
  var CollectionImportModelInput = z92.object({
@@ -3399,7 +3402,7 @@ var ThemeUpdateImportModelInput = z98.object({
3399
3402
  overrides: z98.array(ThemeOverrideImportModelInput)
3400
3403
  });
3401
3404
  var DesignTokenImportModelPart = z99.object({
3402
- collection: z99.string().optional(),
3405
+ collectionId: z99.string().optional(),
3403
3406
  codeSyntax: z99.record(z99.coerce.string()).optional(),
3404
3407
  scopes: z99.array(z99.string()).optional()
3405
3408
  });
@@ -5906,6 +5909,7 @@ var DTODesignToken = DesignTokenTypedData.and(
5906
5909
  meta: ObjectMeta,
5907
5910
  originStyle: DesignTokenOrigin.optional(),
5908
5911
  brandId: z208.string(),
5912
+ collectionId: z208.string().optional(),
5909
5913
  updatedAt: z208.coerce.date()
5910
5914
  })
5911
5915
  );