@supernova-studio/client 1.82.4 → 1.84.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
@@ -136,6 +136,7 @@ var FeaturesSummary = z7.object({
136
136
  designSystemSourceAutoImport: featureToggleSchema,
137
137
  designSystemSlug: featureToggleSchema,
138
138
  ipWhitelisting: featureToggleSchema,
139
+ customLogin: featureToggleSchema,
139
140
  npmRegistry: featureToggleSchema,
140
141
  sso: featureToggleSchema,
141
142
  workspacePaidSeats: featureLimitedSchema,
@@ -8066,7 +8067,12 @@ var DTOLoginScreenSettings = z249.object({
8066
8067
  // Flag for SSO login
8067
8068
  });
8068
8069
  var DTOLoginScreenSettingsUpdate = DTOLoginScreenSettings.extend({
8069
- logoFileId: z249.string().nullish()
8070
+ logoFileId: z249.string().nullish(),
8071
+ title: z249.string().nullish(),
8072
+ color: z249.string().refine(
8073
+ (val) => val === null || /^#([0-9A-Fa-f]{3}|[0-9A-Fa-f]{6})$/.test(val),
8074
+ "Must be a valid hex color (e.g. #FF0000) or null"
8075
+ ).nullish()
8070
8076
  }).omit({ logoUrl: true }).partial();
8071
8077
  var DTOLoginScreenSettingsResponse = z249.object({
8072
8078
  loginScreenSettings: DTOLoginScreenSettings
@@ -10369,7 +10375,7 @@ var DTOProvisionFeatureSandboxInput = z318.object({
10369
10375
  parentMessageId: z318.string().optional()
10370
10376
  });
10371
10377
  var DTOProvisionFeatureSandboxResponse = z318.object({
10372
- iterationId: z318.string()
10378
+ ok: z318.boolean()
10373
10379
  });
10374
10380
  var DTOKeepAliveFeatureSandboxResponse = z318.object({
10375
10381
  sandbox: DTOFeatureSandbox