@supernova-studio/model 0.59.15 → 0.59.17

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
@@ -3702,7 +3702,7 @@ var ImportJob = Entity.extend({
3702
3702
  var ImportFunctionInput = z91.object({
3703
3703
  importJobId: z91.string(),
3704
3704
  importContextId: z91.string(),
3705
- designSystemId: z91.string().optional()
3705
+ designSystemId: z91.string()
3706
3706
  });
3707
3707
  var ImportedFigmaSourceData = z91.object({
3708
3708
  sourceId: z91.string(),
@@ -3903,11 +3903,7 @@ var DataSourceImportModel = z97.object({
3903
3903
 
3904
3904
  // src/dsm/import/figma-frames.ts
3905
3905
  import { z as z98 } from "zod";
3906
- var FigmaFileStructureNodeImportModelBase = FigmaFileStructureNodeBase.extend({
3907
- png: FigmaPngRenderImportModel,
3908
- svg: FigmaSvgRenderImportModel
3909
- });
3910
- var FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModelBase.extend({
3906
+ var FigmaFileStructureNodeImportModel = FigmaFileStructureNodeBase.extend({
3911
3907
  children: z98.lazy(() => FigmaFileStructureNodeImportModel.array())
3912
3908
  });
3913
3909
  var FigmaFileStructureImportModelPart = z98.object({
@@ -4982,6 +4978,15 @@ var ExportDestinationsMap = z148.object({
4982
4978
  destinationGitlab: ExporterDestinationGitlab.optional(),
4983
4979
  destinationBitbucket: ExporterDestinationBitbucket.optional()
4984
4980
  });
4981
+ var ExportDestinationsMapUpdate = z148.object({
4982
+ webhookUrl: z148.string().nullish(),
4983
+ destinationSnDocs: ExporterDestinationDocs.nullish(),
4984
+ destinationS3: ExporterDestinationS3.nullish(),
4985
+ destinationGithub: ExporterDestinationGithub.nullish(),
4986
+ destinationAzure: ExporterDestinationAzure.nullish(),
4987
+ destinationGitlab: ExporterDestinationGitlab.nullish(),
4988
+ destinationBitbucket: ExporterDestinationBitbucket.nullish()
4989
+ });
4985
4990
 
4986
4991
  // src/export/pipeline.ts
4987
4992
  var PipelineEventType = z149.enum(["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]);
@@ -5813,6 +5818,7 @@ export {
5813
5818
  EventDataSourceImported,
5814
5819
  EventVersionReleased,
5815
5820
  ExportDestinationsMap,
5821
+ ExportDestinationsMapUpdate,
5816
5822
  ExportJob,
5817
5823
  ExportJobContext,
5818
5824
  ExportJobDestinationType,