@supernova-studio/client 1.74.1 → 1.74.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
@@ -3566,7 +3566,8 @@ var DataSourceUploadRemote = z95.object({
3566
3566
  lastImportMetadata: DataSourceUploadImportMetadata.optional(),
3567
3567
  warnings: nullishToOptional(ImportWarning.array()),
3568
3568
  isTokenTypeSplitEnabled: z95.boolean(),
3569
- isCollectionsMigrationCompleted: z95.boolean()
3569
+ isCollectionsMigrationCompleted: z95.boolean(),
3570
+ isCollectionKeysMigrationCompleted: z95.boolean()
3570
3571
  });
3571
3572
  var DataSourceStorybookRemote = z95.object({
3572
3573
  type: z95.literal(DataSourceRemoteType.Enum.Storybook),
@@ -3690,7 +3691,8 @@ var FigmaImportContextWithDownloadScopes = FigmaImportContextWithSourcesState.ex
3690
3691
  var CollectionOrigin = z99.object({
3691
3692
  id: z99.string(),
3692
3693
  parentId: z99.string().optional(),
3693
- sourceId: z99.string()
3694
+ sourceId: z99.string(),
3695
+ collectionKeyMigrated: z99.boolean()
3694
3696
  });
3695
3697
  var Collection = z99.object({
3696
3698
  id: z99.string(),
@@ -3723,7 +3725,8 @@ var CollectionImportModelInput = z100.object({
3723
3725
  name: z100.string(),
3724
3726
  parentId: z100.string().optional(),
3725
3727
  parentLegacyId: z100.string().optional(),
3726
- parentPersistentId: z100.string().optional()
3728
+ parentPersistentId: z100.string().optional(),
3729
+ collectionKeyMigrated: z100.boolean()
3727
3730
  });
3728
3731
  var CollectionImportModel = z100.object({
3729
3732
  id: z100.string(),
@@ -6828,7 +6831,8 @@ var DTODataSourceFigmaVariablesPlugin = z230.object({
6828
6831
  lastImportedAt: z230.coerce.date().optional(),
6829
6832
  lastImportMetadata: DataSourceUploadImportMetadata.optional(),
6830
6833
  isTokenTypeSplitEnabled: z230.boolean(),
6831
- isCollectionsMigrationCompleted: z230.boolean().default(false)
6834
+ isCollectionsMigrationCompleted: z230.boolean().default(false),
6835
+ isCollectionKeysMigrationCompleted: z230.boolean().default(false)
6832
6836
  })
6833
6837
  });
6834
6838
  var DTODataSourceStorybook = z230.object({
@@ -6903,6 +6907,10 @@ var DTOFigmaSourceUpdatePayload = z230.object({
6903
6907
  scope: DataSourceFigmaScope.optional(),
6904
6908
  autoImportMode: DataSourceAutoImportMode.optional()
6905
6909
  });
6910
+ var DTOFVPMigrationsCollectionKeysPayload = z230.object({
6911
+ pluginFileId: z230.string(),
6912
+ collectionIdToKeyMap: z230.record(z230.string())
6913
+ });
6906
6914
 
6907
6915
  // src/api/dto/design-systems/design-system.ts
6908
6916
  import { z as z233 } from "zod";
@@ -20305,6 +20313,7 @@ export {
20305
20313
  DTOExporterSource,
20306
20314
  DTOExporterType,
20307
20315
  DTOExporterUpdateInput,
20316
+ DTOFVPMigrationsCollectionKeysPayload,
20308
20317
  DTOFeatureAgentResponseTracker,
20309
20318
  DTOFeatureAgentWorkFinalizeInput,
20310
20319
  DTOFeatureArtifact,