@supernova-studio/model 1.92.1 → 1.92.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.d.mts CHANGED
@@ -868,6 +868,19 @@ declare const FeaturesSummary: z$1.ZodObject<{
868
868
  errorReason: string;
869
869
  enabled: boolean;
870
870
  }>;
871
+ designSystemAdoption: z$1.ZodObject<{
872
+ enabled: z$1.ZodBoolean;
873
+ errorMessage: z$1.ZodString;
874
+ errorReason: z$1.ZodString;
875
+ }, "strip", z$1.ZodTypeAny, {
876
+ errorMessage: string;
877
+ errorReason: string;
878
+ enabled: boolean;
879
+ }, {
880
+ errorMessage: string;
881
+ errorReason: string;
882
+ enabled: boolean;
883
+ }>;
871
884
  analytics: z$1.ZodObject<{
872
885
  max: z$1.ZodOptional<z$1.ZodNumber>;
873
886
  errorMessage: z$1.ZodString;
@@ -1178,6 +1191,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1178
1191
  errorReason: string;
1179
1192
  enabled: boolean;
1180
1193
  };
1194
+ designSystemAdoption: {
1195
+ errorMessage: string;
1196
+ errorReason: string;
1197
+ enabled: boolean;
1198
+ };
1181
1199
  designSystemFileSize: {
1182
1200
  errorMessage: string;
1183
1201
  errorReason: string;
@@ -1371,6 +1389,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1371
1389
  errorReason: string;
1372
1390
  enabled: boolean;
1373
1391
  };
1392
+ designSystemAdoption: {
1393
+ errorMessage: string;
1394
+ errorReason: string;
1395
+ enabled: boolean;
1396
+ };
1374
1397
  designSystemFileSize: {
1375
1398
  errorMessage: string;
1376
1399
  errorReason: string;
package/dist/index.d.ts CHANGED
@@ -868,6 +868,19 @@ declare const FeaturesSummary: z$1.ZodObject<{
868
868
  errorReason: string;
869
869
  enabled: boolean;
870
870
  }>;
871
+ designSystemAdoption: z$1.ZodObject<{
872
+ enabled: z$1.ZodBoolean;
873
+ errorMessage: z$1.ZodString;
874
+ errorReason: z$1.ZodString;
875
+ }, "strip", z$1.ZodTypeAny, {
876
+ errorMessage: string;
877
+ errorReason: string;
878
+ enabled: boolean;
879
+ }, {
880
+ errorMessage: string;
881
+ errorReason: string;
882
+ enabled: boolean;
883
+ }>;
871
884
  analytics: z$1.ZodObject<{
872
885
  max: z$1.ZodOptional<z$1.ZodNumber>;
873
886
  errorMessage: z$1.ZodString;
@@ -1178,6 +1191,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1178
1191
  errorReason: string;
1179
1192
  enabled: boolean;
1180
1193
  };
1194
+ designSystemAdoption: {
1195
+ errorMessage: string;
1196
+ errorReason: string;
1197
+ enabled: boolean;
1198
+ };
1181
1199
  designSystemFileSize: {
1182
1200
  errorMessage: string;
1183
1201
  errorReason: string;
@@ -1371,6 +1389,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1371
1389
  errorReason: string;
1372
1390
  enabled: boolean;
1373
1391
  };
1392
+ designSystemAdoption: {
1393
+ errorMessage: string;
1394
+ errorReason: string;
1395
+ enabled: boolean;
1396
+ };
1374
1397
  designSystemFileSize: {
1375
1398
  errorMessage: string;
1376
1399
  errorReason: string;
package/dist/index.js CHANGED
@@ -155,6 +155,7 @@ var FeaturesSummary = _zod.z.object({
155
155
  designSystemAccessModes: featureToggleSchema,
156
156
  designSystemRoles: featureToggleSchema,
157
157
  documentationPageRedirects: featureToggleSchema,
158
+ designSystemAdoption: featureToggleSchema,
158
159
  analytics: featureLimitedSchema,
159
160
  designSystemFileSize: featureLimitedSchema,
160
161
  forgeActiveProjects: featureLimitedSchema,
@@ -3235,7 +3236,6 @@ var GradientLayerValue = _zod.z.object({
3235
3236
  to: Point2D,
3236
3237
  type: GradientType,
3237
3238
  aspectRatio: nullishToOptional(_zod.z.number()),
3238
- // z.number(),
3239
3239
  stops: _zod.z.array(GradientStop).min(2)
3240
3240
  });
3241
3241
  var GradientLayerData = tokenAliasOrValue(GradientLayerValue);