@supernova-studio/client 0.55.27 → 0.55.28

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.js CHANGED
@@ -552,7 +552,8 @@ var Asset = _zod.z.object({
552
552
  properties: AssetProperties.nullish(),
553
553
  state: AssetProcessStatus.optional(),
554
554
  origin: AssetOrigin.optional(),
555
- originKey: _zod.z.string().optional()
555
+ originKey: _zod.z.string().optional(),
556
+ createdByImportJobId: _zod.z.string().optional()
556
557
  });
557
558
  var ResolvedAsset = Asset.extend({
558
559
  url: _zod.z.string()
@@ -3126,7 +3127,8 @@ var DataSourceUploadRemote = _zod.z.object({
3126
3127
  remoteId: _zod.z.string(),
3127
3128
  remoteSourceType: DataSourceUploadRemoteSource,
3128
3129
  lastImportMetadata: DataSourceUploadImportMetadata.optional(),
3129
- warnings: nullishToOptional(ImportWarning.array())
3130
+ warnings: nullishToOptional(ImportWarning.array()),
3131
+ isTokenTypeSplitEnabled: _zod.z.boolean()
3130
3132
  });
3131
3133
  var DataSourceRemote = _zod.z.discriminatedUnion("type", [
3132
3134
  DataSourceFigmaRemote,
@@ -5816,13 +5818,13 @@ var DTODocumentationPageV2 = _zod.z.object({
5816
5818
  });
5817
5819
  var DTOCreateDocumentationPageInputV2 = _zod.z.object({
5818
5820
  // Identifier
5819
- persistentId: _zod.z.string().uuid(),
5821
+ persistentId: _zod.z.string(),
5820
5822
  // Page properties
5821
5823
  title: _zod.z.string(),
5822
5824
  configuration: DTODocumentationItemConfigurationV2.partial().optional(),
5823
5825
  // Page placement properties
5824
- parentPersistentId: _zod.z.string().uuid(),
5825
- afterPersistentId: _zod.z.string().uuid().nullish()
5826
+ parentPersistentId: _zod.z.string(),
5827
+ afterPersistentId: _zod.z.string().nullish()
5826
5828
  });
5827
5829
  var DTOUpdateDocumentationPageInputV2 = _zod.z.object({
5828
5830
  // Identifier of the group to update
@@ -5835,17 +5837,17 @@ var DTOMoveDocumentationPageInputV2 = _zod.z.object({
5835
5837
  // Identifier of the group to update
5836
5838
  id: _zod.z.string(),
5837
5839
  // Page placement properties
5838
- parentPersistentId: _zod.z.string().uuid(),
5839
- afterPersistentId: _zod.z.string().uuid().nullish()
5840
+ parentPersistentId: _zod.z.string(),
5841
+ afterPersistentId: _zod.z.string().nullish()
5840
5842
  });
5841
5843
  var DTODuplicateDocumentationPageInputV2 = _zod.z.object({
5842
5844
  // Identifier of the page to duplicate from
5843
5845
  id: _zod.z.string(),
5844
5846
  // New page persistent id
5845
- persistentId: _zod.z.string().uuid(),
5847
+ persistentId: _zod.z.string(),
5846
5848
  // Page placement properties
5847
- parentPersistentId: _zod.z.string().uuid(),
5848
- afterPersistentId: _zod.z.string().uuid().nullish()
5849
+ parentPersistentId: _zod.z.string(),
5850
+ afterPersistentId: _zod.z.string().nullish()
5849
5851
  });
5850
5852
  var DTODeleteDocumentationPageInputV2 = _zod.z.object({
5851
5853
  // Identifier
@@ -6071,13 +6073,13 @@ var DTODocumentationGroupV2 = ElementGroup.omit({
6071
6073
  });
6072
6074
  var DTOCreateDocumentationGroupInput = _zod.z.object({
6073
6075
  // Identifier
6074
- persistentId: _zod.z.string().uuid(),
6076
+ persistentId: _zod.z.string(),
6075
6077
  // Group properties
6076
6078
  title: _zod.z.string(),
6077
6079
  configuration: DTODocumentationItemConfigurationV2.partial().optional(),
6078
6080
  // Group placement properties
6079
- afterPersistentId: _zod.z.string().uuid().nullish(),
6080
- parentPersistentId: _zod.z.string().uuid()
6081
+ afterPersistentId: _zod.z.string().nullish(),
6082
+ parentPersistentId: _zod.z.string()
6081
6083
  });
6082
6084
  var DTOUpdateDocumentationGroupInput = _zod.z.object({
6083
6085
  // Identifier of the group to update
@@ -6090,21 +6092,21 @@ var DTOMoveDocumentationGroupInput = _zod.z.object({
6090
6092
  // Identifier of the group to update
6091
6093
  id: _zod.z.string(),
6092
6094
  // Group placement properties
6093
- parentPersistentId: _zod.z.string().uuid(),
6094
- afterPersistentId: _zod.z.string().uuid().nullish()
6095
+ parentPersistentId: _zod.z.string(),
6096
+ afterPersistentId: _zod.z.string().nullish()
6095
6097
  });
6096
6098
  var DTODuplicateDocumentationGroupInput = _zod.z.object({
6097
6099
  // Identifier of the group to duplicate from
6098
6100
  id: _zod.z.string(),
6099
6101
  // New group persistent id
6100
- persistentId: _zod.z.string().uuid(),
6102
+ persistentId: _zod.z.string(),
6101
6103
  // Group placement properties
6102
- afterPersistentId: _zod.z.string().uuid().nullish(),
6103
- parentPersistentId: _zod.z.string().uuid()
6104
+ afterPersistentId: _zod.z.string().nullish(),
6105
+ parentPersistentId: _zod.z.string()
6104
6106
  });
6105
6107
  var DTOCreateDocumentationTabInput = _zod.z.object({
6106
6108
  // New group persistent id
6107
- persistentId: _zod.z.string().uuid(),
6109
+ persistentId: _zod.z.string(),
6108
6110
  // If this is page, we will attempt to convert it to tab
6109
6111
  // If this is tab group, we will add a new tab to it
6110
6112
  fromItemPersistentId: _zod.z.string(),