@supernova-studio/model 1.75.0 → 1.76.1

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
@@ -4135,18 +4135,14 @@ var Collection = z99.object({
4135
4135
  // src/dsm/import/collection.ts
4136
4136
  var CollectionImportModelInput = z100.object({
4137
4137
  id: z100.string(),
4138
- legacyId: z100.string(),
4139
4138
  name: z100.string(),
4140
4139
  parentId: z100.string().optional(),
4141
- parentLegacyId: z100.string().optional(),
4142
4140
  parentPersistentId: z100.string().optional(),
4143
4141
  collectionKeyMigrated: z100.boolean()
4144
4142
  });
4145
4143
  var CollectionImportModel = z100.object({
4146
4144
  id: z100.string(),
4147
- legacyId: z100.string(),
4148
4145
  parentId: z100.string().optional(),
4149
- parentLegacyId: z100.string().optional(),
4150
4146
  name: z100.string(),
4151
4147
  origin: CollectionOrigin,
4152
4148
  parentPersistentId: z100.string().optional()
@@ -4299,8 +4295,7 @@ var ThemeImportModel = z106.object({
4299
4295
  originSource: ThemeOriginSource,
4300
4296
  overrides: z106.array(ThemeOverrideImportModel),
4301
4297
  sortOrder: z106.number(),
4302
- collectionIds: z106.array(z106.string()).optional(),
4303
- collectionLegacyIds: z106.array(z106.string()).optional()
4298
+ collectionIds: z106.array(z106.string()).optional()
4304
4299
  });
4305
4300
  var ThemeImportModelInput = z106.object({
4306
4301
  id: z106.string(),
@@ -4308,8 +4303,7 @@ var ThemeImportModelInput = z106.object({
4308
4303
  meta: ObjectMeta,
4309
4304
  originObjects: z106.array(ThemeOriginObject),
4310
4305
  overrides: z106.array(ThemeOverrideImportModelInput),
4311
- collectionIds: z106.array(z106.string()).optional(),
4312
- collectionLegacyIds: z106.array(z106.string()).optional()
4306
+ collectionIds: z106.array(z106.string()).optional()
4313
4307
  });
4314
4308
  var ThemeUpdateImportModel = z106.object({
4315
4309
  themePersistentId: z106.string(),
@@ -4324,7 +4318,6 @@ var ThemeUpdateImportModelInput = z106.object({
4324
4318
  import { z as z107 } from "zod";
4325
4319
  var DesignTokenImportModelPart = z107.object({
4326
4320
  collectionId: z107.string().optional(),
4327
- collectionLegacyId: z107.string().optional(),
4328
4321
  codeSyntax: z107.record(z107.coerce.string()).optional(),
4329
4322
  scopes: z107.array(z107.string()).optional()
4330
4323
  });