@supernova-studio/model 1.82.4 → 1.83.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
@@ -712,6 +712,19 @@ declare const FeaturesSummary: z$1.ZodObject<{
712
712
  errorReason: string;
713
713
  enabled: boolean;
714
714
  }>;
715
+ customLogin: z$1.ZodObject<{
716
+ enabled: z$1.ZodBoolean;
717
+ errorMessage: z$1.ZodString;
718
+ errorReason: z$1.ZodString;
719
+ }, "strip", z$1.ZodTypeAny, {
720
+ errorMessage: string;
721
+ errorReason: string;
722
+ enabled: boolean;
723
+ }, {
724
+ errorMessage: string;
725
+ errorReason: string;
726
+ enabled: boolean;
727
+ }>;
715
728
  npmRegistry: z$1.ZodObject<{
716
729
  enabled: z$1.ZodBoolean;
717
730
  errorMessage: z$1.ZodString;
@@ -1092,6 +1105,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1092
1105
  errorReason: string;
1093
1106
  enabled: boolean;
1094
1107
  };
1108
+ customLogin: {
1109
+ errorMessage: string;
1110
+ errorReason: string;
1111
+ enabled: boolean;
1112
+ };
1095
1113
  npmRegistry: {
1096
1114
  errorMessage: string;
1097
1115
  errorReason: string;
@@ -1275,6 +1293,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1275
1293
  errorReason: string;
1276
1294
  enabled: boolean;
1277
1295
  };
1296
+ customLogin: {
1297
+ errorMessage: string;
1298
+ errorReason: string;
1299
+ enabled: boolean;
1300
+ };
1278
1301
  npmRegistry: {
1279
1302
  errorMessage: string;
1280
1303
  errorReason: string;
package/dist/index.d.ts CHANGED
@@ -712,6 +712,19 @@ declare const FeaturesSummary: z$1.ZodObject<{
712
712
  errorReason: string;
713
713
  enabled: boolean;
714
714
  }>;
715
+ customLogin: z$1.ZodObject<{
716
+ enabled: z$1.ZodBoolean;
717
+ errorMessage: z$1.ZodString;
718
+ errorReason: z$1.ZodString;
719
+ }, "strip", z$1.ZodTypeAny, {
720
+ errorMessage: string;
721
+ errorReason: string;
722
+ enabled: boolean;
723
+ }, {
724
+ errorMessage: string;
725
+ errorReason: string;
726
+ enabled: boolean;
727
+ }>;
715
728
  npmRegistry: z$1.ZodObject<{
716
729
  enabled: z$1.ZodBoolean;
717
730
  errorMessage: z$1.ZodString;
@@ -1092,6 +1105,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1092
1105
  errorReason: string;
1093
1106
  enabled: boolean;
1094
1107
  };
1108
+ customLogin: {
1109
+ errorMessage: string;
1110
+ errorReason: string;
1111
+ enabled: boolean;
1112
+ };
1095
1113
  npmRegistry: {
1096
1114
  errorMessage: string;
1097
1115
  errorReason: string;
@@ -1275,6 +1293,11 @@ declare const FeaturesSummary: z$1.ZodObject<{
1275
1293
  errorReason: string;
1276
1294
  enabled: boolean;
1277
1295
  };
1296
+ customLogin: {
1297
+ errorMessage: string;
1298
+ errorReason: string;
1299
+ enabled: boolean;
1300
+ };
1278
1301
  npmRegistry: {
1279
1302
  errorMessage: string;
1280
1303
  errorReason: string;
package/dist/index.js CHANGED
@@ -143,6 +143,7 @@ var FeaturesSummary = _zod.z.object({
143
143
  designSystemSourceAutoImport: featureToggleSchema,
144
144
  designSystemSlug: featureToggleSchema,
145
145
  ipWhitelisting: featureToggleSchema,
146
+ customLogin: featureToggleSchema,
146
147
  npmRegistry: featureToggleSchema,
147
148
  sso: featureToggleSchema,
148
149
  workspacePaidSeats: featureLimitedSchema,