@supernova-studio/model 1.6.9 → 1.8.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,15 @@ 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
+ profilerMode: z177.string().optional()
5656
+ });
5648
5657
  var ExportJobContext = z177.object({
5649
5658
  apiUrl: z177.string(),
5650
5659
  accessToken: z177.string(),
@@ -5657,7 +5666,8 @@ var ExportJobContext = z177.object({
5657
5666
  themePersistentIds: z177.string().array().optional(),
5658
5667
  previewMode: z177.boolean().optional(),
5659
5668
  exporterName: z177.string(),
5660
- documentation: ExportJobDocumentationContext.optional()
5669
+ documentation: ExportJobDocumentationContext.optional(),
5670
+ debug: ExportJobDebugContext.optional()
5661
5671
  });
5662
5672
  var ExportJobExporterConfiguration = z177.object({
5663
5673
  exporterPackageUrl: z177.string(),
@@ -5786,7 +5796,14 @@ var FlaggedFeature = z183.enum([
5786
5796
  "ShadowPropsKeepAliases",
5787
5797
  "NonCompatibleTypeChanges",
5788
5798
  "TypographyUseFontStyle",
5789
- "FigmaImporterV3"
5799
+ "FigmaImporterV3",
5800
+ "PulsarDebugMode",
5801
+ "PulsarLogSdkNetwork",
5802
+ "PulsarCacheSdk",
5803
+ "PulsarPreloadData",
5804
+ "PulsarConcurrencyMode",
5805
+ "PulsarConcurrency",
5806
+ "PulsarProfilerMode"
5790
5807
  ]);
5791
5808
  var FeatureFlagMap = z183.record(FlaggedFeature, z183.boolean());
5792
5809
  var FeatureFlag = z183.object({
@@ -5794,7 +5811,8 @@ var FeatureFlag = z183.object({
5794
5811
  feature: FlaggedFeature,
5795
5812
  createdAt: z183.coerce.date(),
5796
5813
  enabled: z183.boolean(),
5797
- designSystemId: z183.string().optional()
5814
+ designSystemId: z183.string().optional(),
5815
+ data: z183.record(z183.any()).nullable().optional()
5798
5816
  });
5799
5817
 
5800
5818
  // src/integrations/external-oauth-request.ts
@@ -6126,6 +6144,7 @@ export {
6126
6144
  ExportDestinationsMapUpdate,
6127
6145
  ExportJob,
6128
6146
  ExportJobContext,
6147
+ ExportJobDebugContext,
6129
6148
  ExportJobDestinationType,
6130
6149
  ExportJobDocsDestinationResult,
6131
6150
  ExportJobDocumentationChanges,