@supernova-studio/model 1.43.5 → 1.43.7
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 +1110 -820
- package/dist/index.d.ts +1110 -820
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5193,11 +5193,11 @@ var UserOnboarding = _zod.z.object({
|
|
|
5193
5193
|
});
|
|
5194
5194
|
var UserProfile = _zod.z.object({
|
|
5195
5195
|
name: _zod.z.string(),
|
|
5196
|
-
avatar: _zod.z.string()
|
|
5197
|
-
nickname: _zod.z.string()
|
|
5198
|
-
onboarding: UserOnboarding
|
|
5199
|
-
theme: UserTheme
|
|
5200
|
-
portalTheme: PortalTheme
|
|
5196
|
+
avatar: nullishToOptional(_zod.z.string()),
|
|
5197
|
+
nickname: nullishToOptional(_zod.z.string()),
|
|
5198
|
+
onboarding: nullishToOptional(UserOnboarding),
|
|
5199
|
+
theme: nullishToOptional(UserTheme),
|
|
5200
|
+
portalTheme: nullishToOptional(PortalTheme)
|
|
5201
5201
|
});
|
|
5202
5202
|
var UserProfileUpdate = UserProfile.partial().omit({
|
|
5203
5203
|
avatar: true
|