@supernova-studio/model 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
@@ -3958,7 +3958,8 @@ var DataSourceUploadRemote = z95.object({
3958
3958
  lastImportMetadata: DataSourceUploadImportMetadata.optional(),
3959
3959
  warnings: nullishToOptional(ImportWarning.array()),
3960
3960
  isTokenTypeSplitEnabled: z95.boolean(),
3961
- isCollectionsMigrationCompleted: z95.boolean()
3961
+ isCollectionsMigrationCompleted: z95.boolean(),
3962
+ isCollectionKeysMigrationCompleted: z95.boolean()
3962
3963
  });
3963
3964
  var DataSourceStorybookRemote = z95.object({
3964
3965
  type: z95.literal(DataSourceRemoteType.Enum.Storybook),
@@ -4102,7 +4103,8 @@ import { z as z99 } from "zod";
4102
4103
  var CollectionOrigin = z99.object({
4103
4104
  id: z99.string(),
4104
4105
  parentId: z99.string().optional(),
4105
- sourceId: z99.string()
4106
+ sourceId: z99.string(),
4107
+ collectionKeyMigrated: z99.boolean()
4106
4108
  });
4107
4109
  var Collection = z99.object({
4108
4110
  id: z99.string(),
@@ -4137,7 +4139,8 @@ var CollectionImportModelInput = z100.object({
4137
4139
  name: z100.string(),
4138
4140
  parentId: z100.string().optional(),
4139
4141
  parentLegacyId: z100.string().optional(),
4140
- parentPersistentId: z100.string().optional()
4142
+ parentPersistentId: z100.string().optional(),
4143
+ collectionKeyMigrated: z100.boolean()
4141
4144
  });
4142
4145
  var CollectionImportModel = z100.object({
4143
4146
  id: z100.string(),