@supernova-studio/model 1.6.9 → 1.7.0

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
@@ -5645,6 +5645,14 @@ var ExportJobDocumentationContext = z177.object({
5645
5645
  versionSlug: z177.string(),
5646
5646
  environment: PublishedDocEnvironment
5647
5647
  });
5648
+ var ExportJobDebugContext = z177.object({
5649
+ debugMode: z177.boolean().optional(),
5650
+ concurrency: z177.number().optional(),
5651
+ preloadData: z177.string().optional(),
5652
+ concurrencyMode: z177.string().optional(),
5653
+ cacheSdk: z177.boolean().optional(),
5654
+ logSdkNetwork: z177.boolean().optional()
5655
+ });
5648
5656
  var ExportJobContext = z177.object({
5649
5657
  apiUrl: z177.string(),
5650
5658
  accessToken: z177.string(),
@@ -5657,7 +5665,8 @@ var ExportJobContext = z177.object({
5657
5665
  themePersistentIds: z177.string().array().optional(),
5658
5666
  previewMode: z177.boolean().optional(),
5659
5667
  exporterName: z177.string(),
5660
- documentation: ExportJobDocumentationContext.optional()
5668
+ documentation: ExportJobDocumentationContext.optional(),
5669
+ debug: ExportJobDebugContext.optional()
5661
5670
  });
5662
5671
  var ExportJobExporterConfiguration = z177.object({
5663
5672
  exporterPackageUrl: z177.string(),
@@ -5786,7 +5795,13 @@ var FlaggedFeature = z183.enum([
5786
5795
  "ShadowPropsKeepAliases",
5787
5796
  "NonCompatibleTypeChanges",
5788
5797
  "TypographyUseFontStyle",
5789
- "FigmaImporterV3"
5798
+ "FigmaImporterV3",
5799
+ "PulsarDebugMode",
5800
+ "PulsarLogSdkNetwork",
5801
+ "PulsarCacheSdk",
5802
+ "PulsarPreloadData",
5803
+ "PulsarConcurrencyMode",
5804
+ "PulsarConcurrency"
5790
5805
  ]);
5791
5806
  var FeatureFlagMap = z183.record(FlaggedFeature, z183.boolean());
5792
5807
  var FeatureFlag = z183.object({
@@ -6126,6 +6141,7 @@ export {
6126
6141
  ExportDestinationsMapUpdate,
6127
6142
  ExportJob,
6128
6143
  ExportJobContext,
6144
+ ExportJobDebugContext,
6129
6145
  ExportJobDestinationType,
6130
6146
  ExportJobDocsDestinationResult,
6131
6147
  ExportJobDocumentationChanges,