@supernova-studio/model 1.53.0 → 1.54.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.d.mts CHANGED
@@ -953,6 +953,19 @@ declare const FeaturesSummary: z$1.ZodObject<{
953
953
  errorReason: string;
954
954
  max?: number | undefined;
955
955
  }>;
956
+ documentationPages: z$1.ZodObject<{
957
+ max: z$1.ZodOptional<z$1.ZodNumber>;
958
+ errorMessage: z$1.ZodString;
959
+ errorReason: z$1.ZodString;
960
+ }, "strip", z$1.ZodTypeAny, {
961
+ errorMessage: string;
962
+ errorReason: string;
963
+ max?: number | undefined;
964
+ }, {
965
+ errorMessage: string;
966
+ errorReason: string;
967
+ max?: number | undefined;
968
+ }>;
956
969
  sandboxTemplates: z$1.ZodObject<{
957
970
  enabled: z$1.ZodBoolean;
958
971
  errorMessage: z$1.ZodString;
@@ -1124,6 +1137,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1124
1137
  errorReason: string;
1125
1138
  max?: number | undefined;
1126
1139
  };
1140
+ documentationPages: {
1141
+ errorMessage: string;
1142
+ errorReason: string;
1143
+ max?: number | undefined;
1144
+ };
1127
1145
  sandboxTemplates: {
1128
1146
  errorMessage: string;
1129
1147
  errorReason: string;
@@ -1287,6 +1305,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1287
1305
  errorReason: string;
1288
1306
  max?: number | undefined;
1289
1307
  };
1308
+ documentationPages: {
1309
+ errorMessage: string;
1310
+ errorReason: string;
1311
+ max?: number | undefined;
1312
+ };
1290
1313
  sandboxTemplates: {
1291
1314
  errorMessage: string;
1292
1315
  errorReason: string;
package/dist/index.d.ts CHANGED
@@ -953,6 +953,19 @@ declare const FeaturesSummary: z$1.ZodObject<{
953
953
  errorReason: string;
954
954
  max?: number | undefined;
955
955
  }>;
956
+ documentationPages: z$1.ZodObject<{
957
+ max: z$1.ZodOptional<z$1.ZodNumber>;
958
+ errorMessage: z$1.ZodString;
959
+ errorReason: z$1.ZodString;
960
+ }, "strip", z$1.ZodTypeAny, {
961
+ errorMessage: string;
962
+ errorReason: string;
963
+ max?: number | undefined;
964
+ }, {
965
+ errorMessage: string;
966
+ errorReason: string;
967
+ max?: number | undefined;
968
+ }>;
956
969
  sandboxTemplates: z$1.ZodObject<{
957
970
  enabled: z$1.ZodBoolean;
958
971
  errorMessage: z$1.ZodString;
@@ -1124,6 +1137,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1124
1137
  errorReason: string;
1125
1138
  max?: number | undefined;
1126
1139
  };
1140
+ documentationPages: {
1141
+ errorMessage: string;
1142
+ errorReason: string;
1143
+ max?: number | undefined;
1144
+ };
1127
1145
  sandboxTemplates: {
1128
1146
  errorMessage: string;
1129
1147
  errorReason: string;
@@ -1287,6 +1305,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1287
1305
  errorReason: string;
1288
1306
  max?: number | undefined;
1289
1307
  };
1308
+ documentationPages: {
1309
+ errorMessage: string;
1310
+ errorReason: string;
1311
+ max?: number | undefined;
1312
+ };
1290
1313
  sandboxTemplates: {
1291
1314
  errorMessage: string;
1292
1315
  errorReason: string;
package/dist/index.js CHANGED
@@ -160,6 +160,7 @@ var FeaturesSummary = _zod.z.object({
160
160
  forgeActiveDocumentsPerProject: featureLimitedSchema,
161
161
  forgePrivateProjects: featureToggleSchema,
162
162
  forgeActiveProjectContexts: featureLimitedSchema,
163
+ documentationPages: featureLimitedSchema,
163
164
  sandboxTemplates: featureToggleSchema
164
165
  });
165
166