@supernova-studio/model 1.95.1 → 1.95.2

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.d.mts CHANGED
@@ -582,6 +582,32 @@ declare const FeaturesSummary: z$1.ZodObject<{
582
582
  noImportJobsErrorReason: string;
583
583
  max?: number | undefined;
584
584
  }>;
585
+ designSystemStorybookSources: z$1.ZodObject<{
586
+ max: z$1.ZodOptional<z$1.ZodNumber>;
587
+ errorMessage: z$1.ZodString;
588
+ errorReason: z$1.ZodString;
589
+ }, "strip", z$1.ZodTypeAny, {
590
+ errorMessage: string;
591
+ errorReason: string;
592
+ max?: number | undefined;
593
+ }, {
594
+ errorMessage: string;
595
+ errorReason: string;
596
+ max?: number | undefined;
597
+ }>;
598
+ documentationCustomCssAndJs: z$1.ZodObject<{
599
+ enabled: z$1.ZodBoolean;
600
+ errorMessage: z$1.ZodString;
601
+ errorReason: z$1.ZodString;
602
+ }, "strip", z$1.ZodTypeAny, {
603
+ errorMessage: string;
604
+ errorReason: string;
605
+ enabled: boolean;
606
+ }, {
607
+ errorMessage: string;
608
+ errorReason: string;
609
+ enabled: boolean;
610
+ }>;
585
611
  designSystemVersions: z$1.ZodObject<{
586
612
  max: z$1.ZodOptional<z$1.ZodNumber>;
587
613
  errorMessage: z$1.ZodString;
@@ -1086,6 +1112,16 @@ declare const FeaturesSummary: z$1.ZodObject<{
1086
1112
  noImportJobsErrorReason: string;
1087
1113
  max?: number | undefined;
1088
1114
  };
1115
+ designSystemStorybookSources: {
1116
+ errorMessage: string;
1117
+ errorReason: string;
1118
+ max?: number | undefined;
1119
+ };
1120
+ documentationCustomCssAndJs: {
1121
+ errorMessage: string;
1122
+ errorReason: string;
1123
+ enabled: boolean;
1124
+ };
1089
1125
  designSystemVersions: {
1090
1126
  errorMessage: string;
1091
1127
  errorReason: string;
@@ -1284,6 +1320,16 @@ declare const FeaturesSummary: z$1.ZodObject<{
1284
1320
  noImportJobsErrorReason: string;
1285
1321
  max?: number | undefined;
1286
1322
  };
1323
+ designSystemStorybookSources: {
1324
+ errorMessage: string;
1325
+ errorReason: string;
1326
+ max?: number | undefined;
1327
+ };
1328
+ documentationCustomCssAndJs: {
1329
+ errorMessage: string;
1330
+ errorReason: string;
1331
+ enabled: boolean;
1332
+ };
1287
1333
  designSystemVersions: {
1288
1334
  errorMessage: string;
1289
1335
  errorReason: string;
package/dist/index.d.ts CHANGED
@@ -582,6 +582,32 @@ declare const FeaturesSummary: z$1.ZodObject<{
582
582
  noImportJobsErrorReason: string;
583
583
  max?: number | undefined;
584
584
  }>;
585
+ designSystemStorybookSources: z$1.ZodObject<{
586
+ max: z$1.ZodOptional<z$1.ZodNumber>;
587
+ errorMessage: z$1.ZodString;
588
+ errorReason: z$1.ZodString;
589
+ }, "strip", z$1.ZodTypeAny, {
590
+ errorMessage: string;
591
+ errorReason: string;
592
+ max?: number | undefined;
593
+ }, {
594
+ errorMessage: string;
595
+ errorReason: string;
596
+ max?: number | undefined;
597
+ }>;
598
+ documentationCustomCssAndJs: z$1.ZodObject<{
599
+ enabled: z$1.ZodBoolean;
600
+ errorMessage: z$1.ZodString;
601
+ errorReason: z$1.ZodString;
602
+ }, "strip", z$1.ZodTypeAny, {
603
+ errorMessage: string;
604
+ errorReason: string;
605
+ enabled: boolean;
606
+ }, {
607
+ errorMessage: string;
608
+ errorReason: string;
609
+ enabled: boolean;
610
+ }>;
585
611
  designSystemVersions: z$1.ZodObject<{
586
612
  max: z$1.ZodOptional<z$1.ZodNumber>;
587
613
  errorMessage: z$1.ZodString;
@@ -1086,6 +1112,16 @@ declare const FeaturesSummary: z$1.ZodObject<{
1086
1112
  noImportJobsErrorReason: string;
1087
1113
  max?: number | undefined;
1088
1114
  };
1115
+ designSystemStorybookSources: {
1116
+ errorMessage: string;
1117
+ errorReason: string;
1118
+ max?: number | undefined;
1119
+ };
1120
+ documentationCustomCssAndJs: {
1121
+ errorMessage: string;
1122
+ errorReason: string;
1123
+ enabled: boolean;
1124
+ };
1089
1125
  designSystemVersions: {
1090
1126
  errorMessage: string;
1091
1127
  errorReason: string;
@@ -1284,6 +1320,16 @@ declare const FeaturesSummary: z$1.ZodObject<{
1284
1320
  noImportJobsErrorReason: string;
1285
1321
  max?: number | undefined;
1286
1322
  };
1323
+ designSystemStorybookSources: {
1324
+ errorMessage: string;
1325
+ errorReason: string;
1326
+ max?: number | undefined;
1327
+ };
1328
+ documentationCustomCssAndJs: {
1329
+ errorMessage: string;
1330
+ errorReason: string;
1331
+ enabled: boolean;
1332
+ };
1287
1333
  designSystemVersions: {
1288
1334
  errorMessage: string;
1289
1335
  errorReason: string;
package/dist/index.js CHANGED
@@ -133,6 +133,8 @@ var featureWithImportJobsSchema = featureLimitedSchema.extend({
133
133
  var FeaturesSummary = _zod.z.object({
134
134
  designSystems: featureLimitedSchema,
135
135
  designSystemSources: featureWithImportJobsSchema,
136
+ designSystemStorybookSources: featureLimitedSchema,
137
+ documentationCustomCssAndJs: featureToggleSchema,
136
138
  designSystemVersions: featureLimitedSchema,
137
139
  themes: featureLimitedSchema,
138
140
  brands: featureLimitedSchema,