@supernova-studio/model 0.59.13 → 0.59.15
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 +56 -56
- package/dist/index.d.ts +56 -56
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/users/user-profile.ts +11 -1
package/dist/index.mjs
CHANGED
|
@@ -4522,7 +4522,17 @@ import { z as z132 } from "zod";
|
|
|
4522
4522
|
var UserOnboardingDepartment = z132.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
|
|
4523
4523
|
var UserOnboardingJobLevel = z132.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
|
|
4524
4524
|
var UserTheme = z132.object({
|
|
4525
|
-
preset: z132.enum([
|
|
4525
|
+
preset: z132.enum([
|
|
4526
|
+
"Custom",
|
|
4527
|
+
"Default",
|
|
4528
|
+
"HighContrast",
|
|
4529
|
+
"DefaultDark",
|
|
4530
|
+
"HighContrastDark",
|
|
4531
|
+
"SpaceBlue",
|
|
4532
|
+
"DarkGrey",
|
|
4533
|
+
"SystemPreference",
|
|
4534
|
+
"Sepia"
|
|
4535
|
+
]).optional(),
|
|
4526
4536
|
backgroundColor: z132.string().optional(),
|
|
4527
4537
|
accentColor: z132.string().optional(),
|
|
4528
4538
|
contrast: z132.number().min(16).max(100).optional(),
|