@supernova-studio/model 1.2.1 → 1.2.3

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
@@ -449,7 +449,10 @@ var Exporter = z18.object({
449
449
  details: ExporterDetails,
450
450
  exporterType: nullishToOptional(ExporterType).default("code"),
451
451
  storagePath: nullishToOptional(z18.string()).default(""),
452
- properties: nullishToOptional(ExporterPropertyDefinition.array())
452
+ properties: nullishToOptional(ExporterPropertyDefinition.array()),
453
+ isDeprecated: z18.boolean().default(false),
454
+ deprecationNote: nullishToOptional(z18.string()),
455
+ replacementExporterId: nullishToOptional(z18.string())
453
456
  });
454
457
 
455
458
  // src/export/pipeline.ts
@@ -5020,6 +5023,7 @@ var Pipeline = z149.object({
5020
5023
  themePersistentId: z149.string().optional(),
5021
5024
  themePersistentIds: z149.string().array().optional(),
5022
5025
  exporterPropertyValues: ExporterPropertyValueMap.optional(),
5026
+ isExporterDeprecated: z149.boolean(),
5023
5027
  // Destinations
5024
5028
  ...ExportDestinationsMap.shape
5025
5029
  });